diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/Lab2Question3.m b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/Lab2Question3.m new file mode 100644 index 0000000..66b251d --- /dev/null +++ b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/Lab2Question3.m @@ -0,0 +1,56 @@ +% Signal (a) +% n_a = 0:12; +% x_a = zeros(size(n_a)); +% x_a(n_a == 5) = 1; +% x_a(n_a == 8) = -2; +% x_a(n_a == 11) = 6; +% figure; +% stem(n_a, x_a); +% xlabel('n'); +% ylabel('Amplitude'); +% title('\delta(n-5) - 2\delta(n-8) + 6\delta(n-11)'); +% grid on; + +% % Signal (b) +% n_b = 0:15; +% x_b = zeros(size(n_b)); +% x_b(n_b >= 3) = 1; +% x_b(n_b >= 8) = x_b(n_b >= 8) - 2; +% x_b(n_b >= 12) = x_b(n_b >= 12) + 1; +% figure; +% stem(n_b, x_b); +% xlabel('n'); +% clc; +% ylabel('Amplitude'); +% title('u(n-3) - 2u(n-8) + u(n-12)'); +% grid on; + +% % Signal (c) +% n_c = 0:20; +% x_c = n_c .* (n_c >= 0); +% figure; +% stem(n_c, x_c); +% xlabel('n'); +% ylabel('Amplitude'); +% title('nu(n)'); +% grid on; +% +% % Signal (d) +% n_d = 0:10; +% x_d = n_d.^2 .* (n_d >= 0); +% figure; +% stem(n_d, x_d); +% xlabel('n'); +% ylabel('Amplitude'); +% title('n^2u(n)'); +% grid on; +% +% % Signal (e) +n_e = 0:30; +x_e = 3 .* (n_e - 3).^2 .* exp(-0.3 * n_e) .* sin(2 * n_e / 3) .* (n_e >= 0); +figure; +stem(n_e, x_e); +xlabel('n'); +ylabel('Amplitude'); +title('3(n-3)^2 e^{-0.3n} sin(2n/3)u(n)'); +grid on; diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/Lab2Question4.m b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/Lab2Question4.m new file mode 100644 index 0000000..af959de --- /dev/null +++ b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/Lab2Question4.m @@ -0,0 +1,23 @@ +% 4a +% % Define the signal +% n = 0:50; +% a = pi/4; +% a^2 +% x = 5*cos(a^2 * n).*heaviside(n); +% +% % Plot +% stem(n, x); +% xlabel('n'); +% ylabel('x(n)'); +% title('Signal x(n) = 5cos(\pi^2n/16)u(n)'); +% 4b +% Define the signal +A = 5; +b = (1 + 1j) / 2; +x = A * abs(b).^n .* heaviside(n); + +% Plot +stem(n, x); +xlabel('n'); +ylabel('x(n)'); +title('Signal x(n) = 5|b|^n u(n)'); \ No newline at end of file diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.aux b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.aux index 22f9773..8bb790a 100644 --- a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.aux +++ b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.aux @@ -1,11 +1,37 @@ \relax -\@writefile{toc}{\contentsline {section}{\numberline {I}Introduction}{1}{}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {II}Results \& Discussion}{1}{}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {\mbox {II-A}}Analysis of Amplitude Modulation}{1}{}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces The Fourier transform of a white noise signal carried at 10[kHz]}}{1}{}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Results \& Discussion}{1}{}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Analysis of Amplitude Modulation}{1}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces The Fourier transform of a white noise signal carried at 10[kHz]\relax }}{1}{}\protected@file@percent } +\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} \newlabel{fig:AM_Fourier_Whitenoise}{{1}{1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {\mbox {II-B}}Periodicity and Sampling Frequency}{1}{}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces The Fourier transform of a signal with a triangular spectrum carried at 10[kHz]}}{1}{}\protected@file@percent } -\newlabel{fig:carried_triangle}{{2}{1}} -\@writefile{toc}{\contentsline {section}{\numberline {III}Conclusions}{1}{}\protected@file@percent } -\gdef \@abspage@last{1} +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces The Fourier transform of a signal with a triangular spectrum carried at 10[kHz]\relax }}{2}{}\protected@file@percent } +\newlabel{fig:carried_triangle}{{2}{2}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Periodicity and Sampling Frequency}{2}{}\protected@file@percent } +\newlabel{eqn:periodicity_condition}{{2}{2}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Plotting Discrete Time Signals}{2}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Sampling a periodic signal at different frequencies\relax }}{3}{}\protected@file@percent } +\newlabel{fig:periodic_sample}{{3}{3}} +\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Shifted and scaled impulses\relax }}{3}{}\protected@file@percent } +\newlabel{fig:various_impulses}{{4}{3}} +\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Shifted and scaled unit steps\relax }}{4}{}\protected@file@percent } +\newlabel{fig:various_steps}{{5}{4}} +\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces A discrete ramp function\relax }}{4}{}\protected@file@percent } +\newlabel{fig:discrete_ramp}{{6}{4}} +\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces Discrete quadratic signal\relax }}{5}{}\protected@file@percent } +\newlabel{fig:discrete_quadratic}{{7}{5}} +\@writefile{lof}{\contentsline {figure}{\numberline {8}{\ignorespaces Oscillating exponential decay\relax }}{5}{}\protected@file@percent } +\newlabel{fig:osc_exp_decay}{{8}{5}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Bounded Signals}{5}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {9}{\ignorespaces Boundedness of a cosine\relax }}{6}{}\protected@file@percent } +\newlabel{fig:cosine_boundedness}{{9}{6}} +\@writefile{lof}{\contentsline {figure}{\numberline {10}{\ignorespaces More complex boundedness\relax }}{6}{}\protected@file@percent } +\newlabel{fig:complex_boundedness}{{10}{6}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.5}Energy of an Aperiodic Signal}{6}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {11}{\ignorespaces First 100 samples of $x[n]$ and its energy\relax }}{7}{}\protected@file@percent } +\newlabel{fig:aperiodic_energy}{{11}{7}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.6}The Modulo Operation}{7}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {12}{\ignorespaces Applying the modulo operation to $x[n]$.\relax }}{8}{}\protected@file@percent } +\newlabel{fig:modulo}{{12}{8}} +\@writefile{toc}{\contentsline {section}{\numberline {3}Conclusions}{8}{}\protected@file@percent } +\gdef \@abspage@last{9} diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fdb_latexmk b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fdb_latexmk index a448866..29cfc06 100644 --- a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fdb_latexmk +++ b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fdb_latexmk @@ -1,57 +1,87 @@ # Fdb version 4 -["pdflatex"] 1708619918.39325 "dsp-lab-02.tex" "dsp-lab-02.pdf" "dsp-lab-02" 1708619919.22491 0 - "/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc" 1684972800 4850 80dc9bab7f31fb78a000ccfed0e27cab "" +["pdflatex"] 1708742449.93216 "dsp-lab-02.tex" "dsp-lab-02.pdf" "dsp-lab-02" 1708742451.45685 0 + "/usr/share/texlive/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc" 1136849721 2900 1537cc8184ad1792082cd229ecc269f4 "" "/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm" 1136768653 2172 fd0c924230362ff848a33632ed45dc23 "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm" 1136768653 4524 6bce29db5bc272ba5f332261583fee9c "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm" 1136768653 2228 e564491c42a4540b5ebb710a75ff306c "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi8r.tfm" 1136768653 4480 10409ed8bab5aea9ec9a78028b763919 "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm" 1136768653 2124 2601a75482e9426d33db523edf23570a "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm" 1136768653 4408 25b74d011a4c66b7f212c0cc3c90061b "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmrc7t.tfm" 1136768653 2680 312a2d12b1f1df8ee0212e7ba1962402 "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm" 1136768653 2288 f478fc8fed18759effb59f3dad7f3084 "" - "/usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri8r.tfm" 1136768653 4640 532ca3305aad10cc01d769f3f91f1029 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/tcrm0500.tfm" 1136768653 1536 b3387106d9afecbfe14bde2de6eadf47 "" "/usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm" 1246382020 1004 54797486969f23fa377b128694d548df "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm" 1246382020 988 bdf658c3bfc2d96d3c8b02cfc1c94c20 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm" 1246382020 996 a18840b13b499c08ac2de96a99eda4bc "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1136768653 1324 c910af8c371558dc20f2d7822f66fe64 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx9.tfm" 1136768653 1328 5442e22a7072966dbaf88ca900acf3f0 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmex10.tfm" 1136768653 992 662f679a0b3d2d53c1b94050fdaa3f50 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm" 1136768653 1524 4414a8315f39513458b80dfc63bff03a "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1136768653 1512 f21f83efb36853c0b70002322c1ab3ad "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm" 1136768653 1520 eccf95517727cb11801f4f1aee3a21b4 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm" 1136768653 1524 d89e2d087a9828407a196f428428ef4a "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1136768653 1288 655e228510b4c2a1abe905c368440826 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr17.tfm" 1136768653 1292 296a67155bdbfc32aa9c636f21e91433 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1136768653 1300 b62933e007d01cfd073f79b963c01526 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr8.tfm" 1136768653 1292 21c1c5bfeaebccffdb478fd231a0997d "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr9.tfm" 1136768653 1292 6b21b9c2c7bebb38aa2273f7ca0fb3af "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm" 1136768653 1124 6c73e740cf17375f03eec0ee63599741 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1136768653 1116 933a60c408fc0a863a92debe84b2d294 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm" 1136768653 1120 8b7d695260f3cff42e636090a8002094 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm" 1136768653 1116 25a7bf822c58caf309a702ef79f4afbb "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmtt10.tfm" 1136768653 768 1321e9409b4137d6fb428ac9dc956269 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1248133631 32080 340ef9bf63678554ee606688e7b5339d "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb" 1248133631 32298 c6d25bb16d1eac01ebdc6d7084126a1e "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb" 1248133631 30251 6afa5cb1d0204815a708a080681d4674 "" "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1248133631 36299 5f9df58c2139e7edcf37c8fca4bd384d "" "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb" 1248133631 36281 c355509802a035cadc5f15869451dcee "" "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1248133631 35752 024fb6c41858982481f6968b5fc26508 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1248133631 32722 d7379af29a190c3f453aba36302ff5a9 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1248133631 32362 179c33bbf43f19adbb3825bb4e36e57a "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfb" 1248133631 31809 8670ca339bf94e56da1fc21c80635e2a "" "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb" 1248133631 32762 224316ccc9ad3ca0423a14971cfa7fc1 "" - "/usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmb8a.pfb" 1136849748 44729 811d6c62865936705a31c797a1d5dada "" - "/usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmbi8a.pfb" 1136849748 44656 0cbca70e0534538582128f6b54593cca "" - "/usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmr8a.pfb" 1136849748 46026 6dab18b61c907687b520c72847215a68 "" - "/usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmri8a.pfb" 1136849748 45458 a3faba884469519614ca56ba5f6b1de1 "" - "/usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmb7t.vf" 1136768653 1372 788387fea833ef5963f4c5bffe33eb89 "" - "/usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmbi7t.vf" 1136768653 1384 6ac0f8b839230f5d9389287365b243c0 "" - "/usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmr7t.vf" 1136768653 1380 0ea3a3370054be6da6acd929ec569f06 "" - "/usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmrc7t.vf" 1136768653 1948 7330aeef3af211edff3b35fb2c12a0fd "" - "/usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmri7t.vf" 1136768653 1384 a9d8adaf491ce34e5fba99dc7bbe5f39 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb" 1248133631 33993 9b89b85fd2d9df0482bd47194d1d3bf3 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1248133631 32569 5e5ddc8df908dea60932f3c484a54c0d "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb" 1248133631 32716 08e384dc442464e7285e891af9f45947 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb" 1248133631 31099 c85edf1dd5b9e826d67c9c7293b6786c "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/cm-super/sfrm0500.pfb" 1215737283 180418 5fa231fda2d05a9c0eca9fd483cc7254 "" "/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1684972800 71627 94eb9990bed73c364d7f53f960cc8c5b "" + "/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty" 1644112042 7237 bdd120a32c8fdb4b433cf9ca2e7cd98a "" + "/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty" 1572645307 1057 525c2192b5febbd8c1f662c9468335bb "" "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty" 1654720880 2222 78b930a5a6e3dc2ac69b78c2057b94d7 "" "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty" 1654720880 4173 c989ee3ced31418e3593916ab26c793a "" "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty" 1654720880 88393 1adf6fa3f245270d06e3d4f8910f7fc5 "" "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty" 1654720880 4474 f04cd1cc7bd76eb033e6fb12eb6a0d77 "" "/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty" 1654720880 2444 70065bddd85997dc1fd0bb7ae634e5fa "" + "/usr/share/texlive/texmf-dist/tex/latex/base/article.cls" 1684972800 20144 7555b7429d80bef287ebb82117811acc "" + "/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo" 1684972800 8448 e0391042ca0932ede1098ae14ada60ba "" + "/usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty" 1647548653 54291 b8e5c600d4aa37b48a740dd2a6c26163 "" + "/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty" 1647548653 71241 d2cd3a1c5acef9cb31f945b93c0bb6e3 "" + "/usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty" 1645391520 11546 6c5257d230d8c5626812b45bc2f31212 "" "/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1579991033 13886 d1306dcf79a944f6988e688c1785f9ce "" + "/usr/share/texlive/texmf-dist/tex/latex/float/float.sty" 1137110151 6749 16d2656a1984957e674b149555f1ea1d "" + "/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty" 1578002852 41601 9cf6c5257b1bc7af01a58859749dd37a "" "/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1465944070 1224 978390e9c2234eab29404bc21b268d1e "" "/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def" 1663965824 19448 1e988b341dda20961a6b931bcde55519 "" "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty" 1654720880 18387 8f900a490197ebaf93c02ae9476d4b09 "" "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty" 1654720880 8010 a8d949cbdbc5c983593827c9eec252e1 "" "/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty" 1654720880 2671 7e67d78d9b88c845599a85b2d41f2e39 "" "/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty" 1654720880 4023 293ea1c16429fc0c4cf605f4da1791a9 "" - "/usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls" 1440712899 281957 5b2e4fa15b0f7eabb840ebf67df4c0f7 "" "/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def" 1666901542 30426 f2fb69fcda4dc35ed0b7dee211bce679 "" "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af "" "/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg" 1585170648 1830 e31effa752c61538383451ae21332364 "" "/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty" 1585170648 80964 64e57373f36316e4a09b517cbf1aba2e "" "/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty" 1585170648 77022 ee25ce086f4a79d8cf73bac6f94c02a5 "" - "/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd" 1137110629 961 15056f4a61917ceed3a44e4ac11fcc52 "" "/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1684972800 40326 aba987258e6d6b6da5dec3a727ea174b "" "/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1695741510.34335 4547801 12750a1f41d88f5207b57129561a9960 "" "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1706540581 7862978 fdecdc3eb245d10d03b24652f2a7b5cd "" - "dsp-lab-02.aux" 1708619919.14467 1049 05a62a4e1290a42c6fdee7ff2bdd79a1 "pdflatex" - "dsp-lab-02.tex" 1708619915.95465 2114 41e2f6e8a9f7c49c34bf7d309284ac05 "" + "dsp-lab-02.aux" 1708742451.34141 3422 dd7305c901fb5ee738c689c649519199 "pdflatex" + "dsp-lab-02.tex" 1708742449.89641 10828 7a0cf805722367653c4cd60766b8a73e "" "lab2_1a.png" 1708614340.95349 19479 091c2a63f8c991ef1a7fa107bd9fe3c6 "" "lab2_1b.png" 1708615961.51104 32538 c6f32098747fb77df0124e35af17b98f "" + "lab_2_2.png" 1708731890.89235 69177 01018abffac7cb1e8518d2d5d910f113 "" + "lab_2_3a.png" 1708730849.02247 10520 b1ce4d638c0d950d069f2329af19fff0 "" + "lab_2_3b.png" 1708730932.47488 13184 6a2579087bb3ca29c9035ceb02da66c6 "" + "lab_2_3c.png" 1708730958.40301 14473 ffc5cb1a7304619b54250727c4e883a3 "" + "lab_2_3d.png" 1708730997.7642 13338 47b9cd8853b0aed5900c75f7ed433954 "" + "lab_2_3e.png" 1708731041.18542 16214 9c9164997228e1081af4eb8c28e7cf48 "" + "lab_2_4a.png" 1708731426.42622 20420 30164f52d277f48effa49ce39ecb7620 "" + "lab_2_4b.png" 1708731468.94342 16390 4536d78c5f23a900e77b57140a5a9771 "" + "lab_2_5.png" 1708731791.92489 21584 1916e226186dd2356b163b6be298c20c "" + "lab_2_6.png" 1708739129.74986 27935 907930b03a993290b33307035a4fadc2 "" (generated) "dsp-lab-02.aux" "dsp-lab-02.log" diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fls b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fls index 57279b0..833fc65 100644 --- a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fls +++ b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.fls @@ -4,62 +4,21 @@ INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt INPUT dsp-lab-02.tex OUTPUT dsp-lab-02.log -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd -INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd -INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd -INPUT /usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd -INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri7t.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi7t.tfm +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty INPUT /usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty @@ -191,6 +150,86 @@ INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def @@ -225,43 +264,111 @@ INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmrc7t.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmex10.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/tcrm0500.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm +OUTPUT dsp-lab-02.pdf +INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr9.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx9.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi9.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy9.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm INPUT ./lab2_1a.png INPUT ./lab2_1a.png INPUT lab2_1a.png INPUT ./lab2_1a.png -OUTPUT dsp-lab-02.pdf INPUT ./lab2_1a.png INPUT ./lab2_1b.png INPUT ./lab2_1b.png INPUT lab2_1b.png INPUT ./lab2_1b.png INPUT ./lab2_1b.png -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmr7t.vf -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm -INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmr7t.vf -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmbi7t.vf -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmbi8r.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmb7t.vf -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmb8r.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmrc7t.vf -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmr8r.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmri7t.vf -INPUT /usr/share/texlive/texmf-dist/fonts/tfm/adobe/times/ptmri8r.tfm -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmr7t.vf -INPUT /usr/share/texlive/texmf-dist/fonts/vf/adobe/times/ptmr7t.vf +INPUT ./lab_2_2.png +INPUT ./lab_2_2.png +INPUT lab_2_2.png +INPUT ./lab_2_2.png +INPUT ./lab_2_2.png +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmtt10.tfm +INPUT ./lab_2_3a.png +INPUT ./lab_2_3a.png +INPUT lab_2_3a.png +INPUT ./lab_2_3a.png +INPUT ./lab_2_3a.png +INPUT ./lab_2_3b.png +INPUT ./lab_2_3b.png +INPUT lab_2_3b.png +INPUT ./lab_2_3b.png +INPUT ./lab_2_3b.png +INPUT ./lab_2_3c.png +INPUT ./lab_2_3c.png +INPUT lab_2_3c.png +INPUT ./lab_2_3c.png +INPUT ./lab_2_3c.png +INPUT ./lab_2_3d.png +INPUT ./lab_2_3d.png +INPUT lab_2_3d.png +INPUT ./lab_2_3d.png +INPUT ./lab_2_3d.png +INPUT ./lab_2_3e.png +INPUT ./lab_2_3e.png +INPUT lab_2_3e.png +INPUT ./lab_2_3e.png +INPUT ./lab_2_3e.png +INPUT ./lab_2_4a.png +INPUT ./lab_2_4a.png +INPUT lab_2_4a.png +INPUT ./lab_2_4a.png +INPUT ./lab_2_4a.png +INPUT ./lab_2_4b.png +INPUT ./lab_2_4b.png +INPUT lab_2_4b.png +INPUT ./lab_2_4b.png +INPUT ./lab_2_4b.png +INPUT ./lab_2_5.png +INPUT ./lab_2_5.png +INPUT lab_2_5.png +INPUT ./lab_2_5.png +INPUT ./lab_2_5.png +INPUT ./lab_2_6.png +INPUT ./lab_2_6.png +INPUT lab_2_6.png +INPUT ./lab_2_6.png +INPUT ./lab_2_6.png INPUT dsp-lab-02.aux -INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc +INPUT /usr/share/texlive/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfb INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb -INPUT /usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmb8a.pfb -INPUT /usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmbi8a.pfb -INPUT /usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmr8a.pfb -INPUT /usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmri8a.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/cm-super/sfrm0500.pfb diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.log b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.log index eb5f34a..0f80910 100644 --- a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.log +++ b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.log @@ -1,4 +1,4 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.24 (TeX Live 2022/CVE-2023-32700 patched) (preloaded format=pdflatex 2024.1.29) 22 FEB 2024 11:38 +This is pdfTeX, Version 3.141592653-2.6-1.40.24 (TeX Live 2022/CVE-2023-32700 patched) (preloaded format=pdflatex 2024.1.29) 23 FEB 2024 21:40 entering extended mode restricted \write18 enabled. file:line:error style messages enabled. @@ -6,171 +6,91 @@ entering extended mode **dsp-lab-02.tex (./dsp-lab-02.tex LaTeX2e <2022-06-01> patch level 5 -L3 programming layer <2022-12-17> (/usr/share/texlive/texmf-dist/tex/latex/ieeetran/IEEEtran.cls -Document Class: IEEEtran 2015/08/26 V1.8b by Michael Shell --- See the "IEEEtran_HOWTO" manual for usage information. --- http://www.michaelshell.org/tex/ieeetran/ -\@IEEEtrantmpdimenA=\dimen140 -\@IEEEtrantmpdimenB=\dimen141 -\@IEEEtrantmpdimenC=\dimen142 -\@IEEEtrantmpcountA=\count185 -\@IEEEtrantmpcountB=\count186 -\@IEEEtrantmpcountC=\count187 -\@IEEEtrantmptoksA=\toks16 -LaTeX Font Info: Trying to load font information for OT1+ptm on input line 503. -(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd -File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm. +L3 programming layer <2022-12-17> (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls +Document Class: article 2021/10/04 v1.4n Standard LaTeX document class +(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2021/10/04 v1.4n Standard LaTeX file (size option) ) --- Using 8.5in x 11in (letter) paper. --- Using PDF output. -\@IEEEnormalsizeunitybaselineskip=\dimen143 --- This is a 10 point document. -\CLASSINFOnormalsizebaselineskip=\dimen144 -\CLASSINFOnormalsizeunitybaselineskip=\dimen145 -\IEEEnormaljot=\dimen146 -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <5> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <5> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <7> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <8> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <8> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <9> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <9> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <10> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <11> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <11> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <12> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <12> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <17> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <17> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <20> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <20> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <24> not available -(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1090. -LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <24> not available -(Font) Font shape `OT1/ptm/b/it' tried instead on input line 1090. -\IEEEquantizedlength=\dimen147 -\IEEEquantizedlengthdiff=\dimen148 -\IEEEquantizedtextheightdiff=\dimen149 -\IEEEilabelindentA=\dimen150 -\IEEEilabelindentB=\dimen151 -\IEEEilabelindent=\dimen152 -\IEEEelabelindent=\dimen153 -\IEEEdlabelindent=\dimen154 -\IEEElabelindent=\dimen155 -\IEEEiednormlabelsep=\dimen156 -\IEEEiedmathlabelsep=\dimen157 -\IEEEiedtopsep=\skip47 -\c@section=\count188 -\c@subsection=\count189 -\c@subsubsection=\count190 -\c@paragraph=\count191 -\c@IEEEsubequation=\count192 -\abovecaptionskip=\skip48 -\belowcaptionskip=\skip49 -\c@figure=\count193 -\c@table=\count194 -\@IEEEeqnnumcols=\count195 -\@IEEEeqncolcnt=\count196 -\@IEEEsubeqnnumrollback=\count197 -\@IEEEquantizeheightA=\dimen158 -\@IEEEquantizeheightB=\dimen159 -\@IEEEquantizeheightC=\dimen160 -\@IEEEquantizeprevdepth=\dimen161 -\@IEEEquantizemultiple=\count198 -\@IEEEquantizeboxA=\box51 -\@IEEEtmpitemindent=\dimen162 -\IEEEPARstartletwidth=\dimen163 -\c@IEEEbiography=\count199 -\@IEEEtranrubishbin=\box52 +\c@part=\count185 +\c@section=\count186 +\c@subsection=\count187 +\c@subsubsection=\count188 +\c@paragraph=\count189 +\c@subparagraph=\count190 +\c@figure=\count191 +\c@table=\count192 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen140 ) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty Package: amsmath 2022/04/08 v2.17n AMS math features -\@mathmargin=\skip50 +\@mathmargin=\skip49 For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty Package: amstext 2021/08/26 v2.01 AMS text (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty File: amsgen.sty 1999/11/30 v2.0 generic functions -\@emptytoks=\toks17 -\ex@=\dimen164 +\@emptytoks=\toks16 +\ex@=\dimen141 )) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen165 +\pmbraise@=\dimen142 ) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty Package: amsopn 2022/04/08 v2.04 operator names ) -\inf@bad=\count266 +\inf@bad=\count193 LaTeX Info: Redefining \frac on input line 234. -\uproot@=\count267 -\leftroot@=\count268 +\uproot@=\count194 +\leftroot@=\count195 LaTeX Info: Redefining \overline on input line 399. LaTeX Info: Redefining \colon on input line 410. -\classnum@=\count269 -\DOTSCASE@=\count270 +\classnum@=\count196 +\DOTSCASE@=\count197 LaTeX Info: Redefining \ldots on input line 496. LaTeX Info: Redefining \dots on input line 499. LaTeX Info: Redefining \cdots on input line 620. -\Mathstrutbox@=\box53 -\strutbox@=\box54 +\Mathstrutbox@=\box51 +\strutbox@=\box52 LaTeX Info: Redefining \big on input line 722. LaTeX Info: Redefining \Big on input line 723. LaTeX Info: Redefining \bigg on input line 724. LaTeX Info: Redefining \Bigg on input line 725. -\big@size=\dimen166 +\big@size=\dimen143 LaTeX Font Info: Redeclaring font encoding OML on input line 743. LaTeX Font Info: Redeclaring font encoding OMS on input line 744. -\macc@depth=\count271 +\macc@depth=\count198 LaTeX Info: Redefining \bmod on input line 905. LaTeX Info: Redefining \pmod on input line 910. LaTeX Info: Redefining \smash on input line 940. LaTeX Info: Redefining \relbar on input line 970. LaTeX Info: Redefining \Relbar on input line 971. -\c@MaxMatrixCols=\count272 +\c@MaxMatrixCols=\count199 \dotsspace@=\muskip16 -\c@parentequation=\count273 -\dspbrk@lvl=\count274 -\tag@help=\toks18 -\row@=\count275 -\column@=\count276 -\maxfields@=\count277 -\andhelp@=\toks19 -\eqnshift@=\dimen167 -\alignsep@=\dimen168 -\tagshift@=\dimen169 -\tagwidth@=\dimen170 -\totwidth@=\dimen171 -\lineht@=\dimen172 -\@envbody=\toks20 -\multlinegap=\skip51 -\multlinetaggap=\skip52 -\mathdisplay@stack=\toks21 +\c@parentequation=\count266 +\dspbrk@lvl=\count267 +\tag@help=\toks17 +\row@=\count268 +\column@=\count269 +\maxfields@=\count270 +\andhelp@=\toks18 +\eqnshift@=\dimen144 +\alignsep@=\dimen145 +\tagshift@=\dimen146 +\tagwidth@=\dimen147 +\totwidth@=\dimen148 +\lineht@=\dimen149 +\@envbody=\toks19 +\multlinegap=\skip50 +\multlinetaggap=\skip51 +\mathdisplay@stack=\toks20 LaTeX Info: Redefining \[ on input line 2953. LaTeX Info: Redefining \] on input line 2954. ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks22 +\KV@toks@=\toks21 ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty @@ -182,83 +102,169 @@ Package graphics Info: Driver file: pdftex.def on input line 107. (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def File: pdftex.def 2022/09/22 v1.2b Graphics/color driver for pdftex )) -\Gin@req@height=\dimen173 -\Gin@req@width=\dimen174 +\Gin@req@height=\dimen150 +\Gin@req@width=\dimen151 ) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty -\lst@mode=\count278 -\lst@gtempboxa=\box55 -\lst@token=\toks23 -\lst@length=\count279 -\lst@currlwidth=\dimen175 -\lst@column=\count280 -\lst@pos=\count281 -\lst@lostspace=\dimen176 -\lst@width=\dimen177 -\lst@newlines=\count282 -\lst@lineno=\count283 -\lst@maxwidth=\dimen178 +\lst@mode=\count271 +\lst@gtempboxa=\box53 +\lst@token=\toks22 +\lst@length=\count272 +\lst@currlwidth=\dimen152 +\lst@column=\count273 +\lst@pos=\count274 +\lst@lostspace=\dimen153 +\lst@width=\dimen154 +\lst@newlines=\count275 +\lst@lineno=\count276 +\lst@maxwidth=\dimen155 (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz) -\c@lstnumber=\count284 -\lst@skipnumbers=\count285 -\lst@framebox=\box56 +\c@lstnumber=\count277 +\lst@skipnumbers=\count278 +\lst@framebox=\box54 ) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg File: listings.cfg 2020/03/24 1.8d listings configuration )) Package: listings 2020/03/24 1.8d (Carsten Heinz) - (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def + (/usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty +Package: caption 2022/03/01 v3.6b Customizing captions (AR) + (/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +Package: caption3 2022/03/17 v2.3b caption3 kernel (AR) +\caption@tempdima=\dimen156 +\captionmargin=\dimen157 +\caption@leftmargin=\dimen158 +\caption@rightmargin=\dimen159 +\caption@width=\dimen160 +\caption@indent=\dimen161 +\caption@parindent=\dimen162 +\caption@hangindent=\dimen163 +Package caption Info: Standard document class detected. +) +\c@caption@flags=\count279 +\c@continuedfloat=\count280 +Package caption Info: listings package is loaded. +) (/usr/share/texlive/texmf-dist/tex/latex/caption/subcaption.sty +Package: subcaption 2022/01/07 v1.5 Sub-captions (AR) +\c@subfigure=\count281 +\c@subtable=\count282 +) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count283 +\float@exts=\toks23 +\float@box=\box55 +\@float@everytoks=\toks24 +\@floatcapt=\box56 +) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. + (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2022/02/03 v1.0f TeX engine tests +)) +\Gm@cnth=\count284 +\Gm@cntv=\count285 +\c@Gm@tempcnt=\count286 +\Gm@bindingoffset=\dimen164 +\Gm@wd@mp=\dimen165 +\Gm@odd@mp=\dimen166 +\Gm@even@mp=\dimen167 +\Gm@layoutwidth=\dimen168 +\Gm@layoutheight=\dimen169 +\Gm@layouthoffset=\dimen170 +\Gm@layoutvoffset=\dimen171 +\Gm@dimlist=\toks25 +) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def File: l3backend-pdftex.def 2022-10-26 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count286 +\l__color_backend_stack_int=\count287 \l__pdf_internal_box=\box57 ) (./dsp-lab-02.aux) \openout1 = `dsp-lab-02.aux'. -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 12. -LaTeX Font Info: ... okay on input line 12. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 12. -LaTeX Font Info: ... okay on input line 12. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 12. -LaTeX Font Info: ... okay on input line 12. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 12. -LaTeX Font Info: ... okay on input line 12. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 12. -LaTeX Font Info: ... okay on input line 12. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 12. -LaTeX Font Info: ... okay on input line 12. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 12. -LaTeX Font Info: ... okay on input line 12. - --- Lines per column: 58 (exact). -(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 18. +LaTeX Font Info: ... okay on input line 18. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 18. +LaTeX Font Info: ... okay on input line 18. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 18. +LaTeX Font Info: ... okay on input line 18. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 18. +LaTeX Font Info: ... okay on input line 18. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 18. +LaTeX Font Info: ... okay on input line 18. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 18. +LaTeX Font Info: ... okay on input line 18. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 18. +LaTeX Font Info: ... okay on input line 18. + (/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count287 -\scratchdimen=\dimen179 +\scratchcounter=\count288 +\scratchdimen=\dimen172 \scratchbox=\box58 -\nofMPsegments=\count288 -\nofMParguments=\count289 -\everyMPshowfont=\toks24 -\MPscratchCnt=\count290 -\MPscratchDim=\dimen180 -\MPnumerator=\count291 -\makeMPintoPDFobject=\count292 -\everyMPtoPDFconversion=\toks25 +\nofMPsegments=\count289 +\nofMParguments=\count290 +\everyMPshowfont=\toks26 +\MPscratchCnt=\count291 +\MPscratchDim=\dimen173 +\MPnumerator=\count292 +\makeMPintoPDFobject=\count293 +\everyMPtoPDFconversion=\toks27 ) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 485. (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live )) -\c@lstlisting=\count293 - +\c@lstlisting=\count294 +Package caption Info: Begin \AtBeginDocument code. +Package caption Info: float package is loaded. +Package caption Info: End \AtBeginDocument code. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(72.26999pt, 469.75502pt, 72.26999pt) +* v-part:(T,H,B)=(72.26999pt, 650.43001pt, 72.26999pt) +* \paperwidth=614.295pt +* \paperheight=794.96999pt +* \textwidth=469.75502pt +* \textheight=650.43001pt +* \oddsidemargin=0.0pt +* \evensidemargin=0.0pt +* \topmargin=-37.0pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=10.0pt +* \footskip=30.0pt +* \marginparwidth=65.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=9.0pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +[1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] + File: lab2_1a.png Graphic file (type png) -Package pdftex.def Info: lab2_1a.png used on input line 25. -(pdftex.def) Requested size: 247.6778pt x 257.38132pt. - +Package pdftex.def Info: lab2_1a.png used on input line 36. +(pdftex.def) Requested size: 234.8775pt x 244.08601pt. + File: lab2_1b.png Graphic file (type png) -Package pdftex.def Info: lab2_1b.png used on input line 33. -(pdftex.def) Requested size: 247.6778pt x 257.38132pt. +Package pdftex.def Info: lab2_1b.png used on input line 45. +(pdftex.def) Requested size: 234.8775pt x 244.08601pt. LaTeX Warning: `h' float specifier changed to `ht'. @@ -266,25 +272,82 @@ LaTeX Warning: `h' float specifier changed to `ht'. Package amsmath Warning: Foreign command \over; (amsmath) \frac or \genfrac should be used instead -(amsmath) on input line 39. +(amsmath) on input line 51. -[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} +[1 <./lab2_1a.png>] + +File: lab_2_2.png Graphic file (type png) + +Package pdftex.def Info: lab_2_2.png used on input line 62. +(pdftex.def) Requested size: 469.75502pt x 242.53905pt. - <./lab2_1a.png> <./lab2_1b.png>] (./dsp-lab-02.aux) ) +LaTeX Warning: `h' float specifier changed to `ht'. + + +File: lab_2_3a.png Graphic file (type png) + +Package pdftex.def Info: lab_2_3a.png used on input line 71. +(pdftex.def) Requested size: 234.8775pt x 176.1581pt. +[2 <./lab2_1b.png>] + +File: lab_2_3b.png Graphic file (type png) + +Package pdftex.def Info: lab_2_3b.png used on input line 79. +(pdftex.def) Requested size: 234.8775pt x 176.1581pt. + [3 <./lab_2_2.png> <./lab_2_3a.png (PNG copy)>] + +File: lab_2_3c.png Graphic file (type png) + +Package pdftex.def Info: lab_2_3c.png used on input line 87. +(pdftex.def) Requested size: 234.8775pt x 176.1581pt. + +File: lab_2_3d.png Graphic file (type png) + +Package pdftex.def Info: lab_2_3d.png used on input line 95. +(pdftex.def) Requested size: 234.8775pt x 176.1581pt. + [4 <./lab_2_3b.png (PNG copy)> <./lab_2_3c.png (PNG copy)>] + +File: lab_2_3e.png Graphic file (type png) + +Package pdftex.def Info: lab_2_3e.png used on input line 103. +(pdftex.def) Requested size: 234.8775pt x 176.1581pt. + +File: lab_2_4a.png Graphic file (type png) + +Package pdftex.def Info: lab_2_4a.png used on input line 112. +(pdftex.def) Requested size: 234.8775pt x 176.1581pt. + [5 <./lab_2_3d.png (PNG copy)> <./lab_2_3e.png (PNG copy)>] + +File: lab_2_4b.png Graphic file (type png) + +Package pdftex.def Info: lab_2_4b.png used on input line 120. +(pdftex.def) Requested size: 234.8775pt x 176.1581pt. + +File: lab_2_5.png Graphic file (type png) + +Package pdftex.def Info: lab_2_5.png used on input line 133. +(pdftex.def) Requested size: 234.8775pt x 244.08601pt. + [6 <./lab_2_4a.png (PNG copy)> <./lab_2_4b.png (PNG copy)>] + +File: lab_2_6.png Graphic file (type png) + +Package pdftex.def Info: lab_2_6.png used on input line 142. +(pdftex.def) Requested size: 469.75502pt x 242.53905pt. + [7 <./lab_2_5.png>] [8 <./lab_2_6.png>] (./dsp-lab-02.aux) ) Here is how much of TeX's memory you used: - 4207 strings out of 476182 - 67741 string characters out of 5796581 - 1855793 words of memory out of 6000000 - 24519 multiletter control sequences out of 15000+600000 - 542108 words of font info for 82 fonts, out of 8000000 for 9000 + 5549 strings out of 476182 + 90093 string characters out of 5796581 + 1857793 words of memory out of 6000000 + 25823 multiletter control sequences out of 15000+600000 + 520153 words of font info for 60 fonts, out of 8000000 for 9000 1137 hyphenation exceptions out of 8191 - 55i,6n,62p,680b,261s stack positions out of 10000i,1000n,20000p,200000b,200000s -{/usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc} -Output written on dsp-lab-02.pdf (1 page, 134656 bytes). + 55i,7n,63p,1078b,332s stack positions out of 10000i,1000n,20000p,200000b,200000s +{/usr/share/texlive/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc} +Output written on dsp-lab-02.pdf (9 pages, 457200 bytes). PDF statistics: - 54 PDF objects out of 1000 (max. 8388607) - 30 compressed objects within 1 object stream + 128 PDF objects out of 1000 (max. 8388607) + 69 compressed objects within 1 object stream 0 named destinations out of 1000 (max. 500000) - 11 words of extra memory for PDF output out of 10000 (max. 10000000) + 61 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.pdf b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.pdf index fbbd276..b396b0a 100644 Binary files a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.pdf and b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.pdf differ diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.synctex.gz b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.synctex.gz index b505070..d90a8eb 100644 Binary files a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.synctex.gz and b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.synctex.gz differ diff --git a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.tex b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.tex index c7297e5..be5f81f 100644 --- a/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.tex +++ b/6th-Semester-Spring-2024/DSP/Labs/Lab-02/dsp-lab-02.tex @@ -1,46 +1,150 @@ -\documentclass{IEEEtran}[journal] +\documentclass{article} \usepackage{amsmath} \usepackage{graphicx} \usepackage{listings} +\usepackage{caption} +\usepackage{subcaption} +\usepackage{float} +\usepackage[margin=1in]{geometry} + + +\title{Analyzing and Operating on Discrete Time Signals in MATLAB\textsuperscript{\tiny\textregistered}} -\title{} \author{Aidan Sharpe \& Elise Heim} \DeclareMathOperator{\sinc}{sinc} \begin{document} +\begin{titlepage} \maketitle +\end{titlepage} \begin{abstract} + This lab includes a variety of exercises to enhance knowledge and understanding of digital signal responses. The first couple of exercises involved mathematically deducing the responses of signals. Then MATLAB\textsuperscript{\tiny\textregistered} was utilized to visually confirm calculated behavior. \end{abstract} \section{Introduction} +MATLAB\textsuperscript{\tiny\textregistered} is a very helpful tool for visualizing different signals and better understanding their behavior. The first two tasks include modulating amplitude, and determining periodicity mathematically. Then MATLAB\textsuperscript{\tiny\textregistered} was used to plot different signals in order to verify their periodicity, and if applicable, their period. MATLAB\textsuperscript{\tiny\textregistered} was also used to plot discrete time signals in order to better understand their behavior. In addition, the boundedness of a signal was checked using MATLAB\textsuperscript{\tiny\textregistered} to plot the signal. The energy of an aperiodic signal was also observed using MATLAB\textsuperscript{\tiny\textregistered}, and plotted as a function of time. Finally, this lab utilized MATLAB\textsuperscript{\tiny\textregistered} to explore the functionality of the modulo operator. \section{Results \& Discussion} \subsection{Analysis of Amplitude Modulation} A message, $m(t)$, with a bandwidth, $B=2[\text{kHz}]$ modulates a cosine carrier with a frequency of 10[kHz]. The combined signal is $s(t) = m(t)\cos(20000\pi t)$. Using a Fourier transform on $s(t)$ reveals a maximum frequency at 12[kHz]. In fact, as seen in figure \ref{fig:AM_Fourier_Whitenoise}, by filling the band that $m(t)$ occupies with white noise, the Fourier transform of $s(t)$ contains white noise centered on the carrier frequency with twice the bandwidth of the original signal. The spike that occurs at 10[kHz] is the result of the original signal having a DC term and the carrier frequency having a value of 10[kHz]. \begin{figure}[h] - \includegraphics[width=0.48\textwidth]{lab2_1a.png} + \center + \includegraphics[width=0.5\textwidth]{lab2_1a.png} \caption{The Fourier transform of a white noise signal carried at 10[kHz]} \label{fig:AM_Fourier_Whitenoise} \end{figure} -If instead, $m(t)$ had a triangular spectrum of amplitude 1, the spectrum of $s(t)$ will be two triangles touching at the base at 10[kHz] as seen in figure \ref{fig:carried_triangle}. +When instead, $m(t)$ had a triangular spectrum of amplitude 1, the spectrum of $s(t)$ was two triangles touching at the base at 10[kHz] as seen in figure \ref{fig:carried_triangle}. \begin{figure}[h] - \includegraphics[width=0.48\textwidth]{lab2_1b.png} + \center + \includegraphics[width=0.5\textwidth]{lab2_1b.png} \caption{The Fourier transform of a signal with a triangular spectrum carried at 10[kHz]} \label{fig:carried_triangle} \end{figure} \subsection{Periodicity and Sampling Frequency} -Consider the signal $x(t) = \cos(2\pi t/7)$. Given the standard forms, $\cos(2\pi f t)$ and $\cos(\omega t)$, where f is linear frequency and $\omega$ is angular frequency, $f = {1\over7}$ and $\omega = {2\pi \over 7}$. Given a sampling frequency of 1[Hz], the sampling theorem is satisfied. To determine if a sampled signal is periodic, the condition $\omega N = 2 \pi r$, where $r$ is the smallest integer such that $N$ is an integer, must be satisfied. +Consider the signal $x(t) = \cos(2\pi t/7)$. Given the standard forms, $\cos(2\pi f t)$ and $\cos(\omega t)$, where f is linear frequency and $\omega$ is angular frequency, $f = {1\over7}$ and $\omega = {2\pi \over 7}$. Given sampling frequencies of 1[Hz], 2.5[Hz], 3[Hz], and $\pi$[Hz], the sampling theorem is satisfied. To determine if the sampled signal is periodic, the fundamental time period must be determined by +\begin{equation} + N = {2\pi \over \omega} +\end{equation} +where $N$ is the fundamental time period and $\omega$ is the angular frequency of the signal. Given $\omega = {2\pi \over 7}$, the fundamental time period is 7[s]. With sampling frequencies of 1[Hz], 2.5[Hz], and 3[Hz], the discrete signal is periodic. However, with a sampling frequency of $\pi$[Hz], the discrete signal is aperiodic. Determining whether a sampled periodic signal is periodic can be done by satisfying the condition: +\begin{equation} + aN = bT_s + \label{eqn:periodicity_condition} +\end{equation} +where $a$ and $b$ are integers, $N$ is the fundamental time period, and $T_s$ is the sampling period. The period of the discrete signal if the condition is satisfied is the product of $a$ and $b$. Therefore, for $f_s=1$[Hz], there will be 7 samples per period, for $f_s =2.5$[Hz], there will be 35 samples per period, and for $f_s = 3$[Hz], there will be 21 samples per period. Seen in figure \ref{fig:periodic_sample}, the periodicity and samples per period for $f_s = 1$, 2.5, and 3[Hz] can be determined simply by counting the samples. For $f_s=\pi$[Hz], the aperiodic nature only becomes apparent after observing many samples. +\begin{figure}[h] + \includegraphics[width=\textwidth]{lab_2_2.png} + \caption{Sampling a periodic signal at different frequencies} + \label{fig:periodic_sample} +\end{figure} +\subsection{Plotting Discrete Time Signals} +MATLAB\textsuperscript{\tiny\textregistered} can be very helpful for plotting complicated signals over specific intervals. Using the impulse, unit step, and the \verb|stem| command, one can plot a variety of signals. One such signal is $ \delta(n-5) - 2\delta(n-8) +6\delta(n-11)$ over the interval $0> +endobj +2 0 obj +<< +/BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font +>> +endobj +3 0 obj +<< +/BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 370 /Length 31112 /SMask 4 0 R + /Subtype /Image /Type /XObject /Width 800 +>> +stream +Gb"07H(6-]Fm!!/F_>:Y<`F3QA7Tg!D..7Ljhhd"e*>)s)q@YM$P3rL,r"gR"q5+17]^3Tr;\&r(h!hba'\uRbl`lT6"'1l'Dj8p*XmkD+H'f5"D2Sc(D3'8PnalKEUGu6M2;(X5Nee;X1Kk@`f7U#3;4s[1B7CTJ8L;u/-s!2HEDbU$G>%X2j/@VhdH3aIl=X%Q5^KZB+].iz.E'AfeJ+Zf')#pUr2fpJ^=9bsm*>UZjU^)2W+#('bHnA/'`\46!34?0C:,n!U"ni)F-1JXa^74qm=P#0]C5R=a1:fblHTT_qtPW)irK,[!'h$lcC,'PWgj9jjHB-.%/$[q]l#:l:N*aPiNFkTWF(Y'TC!_R/IMOY!!"6=cW%kqQ0V`kabqdB+6lqb^!=CUXg^F[f9^-R^XiFsB.l5_q+sJg[<>r=lh:\c!!!#>KY7`GXR:Mk\]K+_/$TC2qX8RYFJHVHhK?MQ&).R;/Fc>>%46b3%>MjL$MkC[^.J>NoZ/GI#S9pb!,]tO3VassReZ\uBY89iM=pZ9&(pX,A!.^LOG,cB)30_1+k/=o4j1ahIq4eT`M&jUt8JgeXEM*rBLSB^R63$ucTU$Q]4B$6eTajqjfriXor%[L'@VX!3/djm5)Ru3VRK_3:pL[aObfWp^B#36R6Sq6,%g@Yk?i0rabp/Q_(t4q=>BCM*q/F%ibQL!!)(&AnIS!$*s,m:W5rUA'RZXV@.nIL/1J+=!)g"cM?CNf62T6j7,RPnq$5)b0eb%24PB_!!!!6,KUtk?:g6D:VS,,/GRnBGjF,WTDRIg>na,6\a-F>BkX\tqSYY<8kIZ$0c^5o!2(ftDT23^:6bLcAne1F^&2U!K);/8;!A[h06u!s'eVLbcd6\iP_ZB-Ui*,k#S6?*!!!"LHg9V8?E@L^rsQLfgjA*+(%u6(q2_,KIWa]6rT?CWrmLE3]`"](UT882rHCHe=9!5YRu2pd=9&=$J5_%L,U@$DVr#.a8)Sc[AU'%Z[W]-eQ(3G$ig8-Qnea;$33`9hX!=1[bnH423\n@@K)u_mCN3]HgcELqZiH#Z/U)"!<<*";a]JC4ZE6`\]=0I++)>ic[=BZ:VKQ7_B;c0J+-e-O09ZrH`fjX!!!!Q"]W.7@&Z9Urd2EZ&W,:D>3([hSXA?KqLX>d!!!#7.!7`i*6S)dS,:9,p?Yj&Ie2"Xja&GR_Y(\H!!!"f9&S=o=>26Q&%2H5oh-'bX)EC0^Yk,0:15ji+5,HN!!!#te3+O6<_fa'2tLAoP4*moGNjCH,(8`1iXrt>b6B#UIhSiJ@&)lg?3d,!WW3#ojco?ho*'Gs!)U:?I^4un<5KSF%Z3LTCG_WQX,h;?N,HA]l8,[-Qd]]h(Sel3r-[cG!/4o!!%Oq&_8O;0_ZRVJih7H$I@c#7NqA?um=38I>K;QO]R&g2s/dpIX-'n5VZ6\s5],_/lJVn'/h_T=Nb/nQ?'3"qWOI3t/U>s%X1N9I/1[%U>G(ERp,aO\Y>_oFhsb@[lG"Cjc2#hDm/+U8Hd@#j53G'X-Q_i=!WW3#,R1W[]1U0MhmdcW-=6/D[qlT**hjHO,d4e,JYQSck"ceL2u8HQbXXl>ku?'6]^t7^UH_0Hql!HdMq2/-G.Ja!!!!!aeJWV>$lFB4bP&^5cZ4,sl`Z<8;)`mV^Z\EPej$ouM:gNe/(st#Rr)#Xa-YO&I+-O>\#[>JD;`5B$NL/,aQM1Wok^[\15u3Zj)Z#8IinX6V?0-W*e2tYp8I4Wc[QAfqN&>QmdFMLoBVH"\a=A*Q2c9kMsp2+G:Zbl3S3:-!!!"t,4>2=L>;COmI,Ou([3L^?JBW5Gfb58b0l9ApFdSPT+[_tM*90"oW(KP-pPnei/Vlhj`oY]dV[")5JGmDkZLe!XbtB8hPhfeDqfApHsNDulspTUTMs8"o4qYO?#?71Z*5e7."!!$C8Z(b.?V.t%i,NjjIb$/2Vm?DSfLbP!-?G0=,Y2SZ\Q7eNq^$C!`jUTVM:&B##oQ#G*4PtM8[VK20EWH".LY"(_6dS9X)uos=@"e-"R3S2)brpNbID]\eVQ)."flDdm^g6)Wfafte2puYMhYilh=oIX_?g&6'D&3GhZ2oTIZDg>_cgphVflDLjlof+q4ICR18idZ+=D0!o,,Gj_Ps(L;eig20^h'_o4^\;U.Y'K[u^$a[n2$b6s8^KoG;#gRre'@5n]o?*G7)+&a@n4\iGj+&ZXrHUWK-Ye2rhnpld!!%PKB$dYk2URc%mr_8Vs-$ZW37(Es:un)fpRh!6]bfL=f>WAJ=$1MpU0/5PHiKD#9rim*H<^OP!!(=.+,mYFH63V,j[$q1h=u9q)^"afo;V@:gl7rthtj)G`Q*%,qBtb3\T7_>T""Ko\**X\4-<'6F5F1E,!;6s!!!!m.Dka1XAN;O=j@=]IH?[mkRk/G=&r'K\K9W.!!%OlK]ddlegMmU[Qj^T.qF(faHtcL?*m5(Q<8-H4iRL&!!(b1j(*+6,+[ea+'1#<>TNY$gH+NR[XMY;\KZF>&cr%5Qm.-f"Ih96a.L!,`m<7=`VLZXmN54ghZ.XZdK'=J!.-]_G0S-?pYB%D'e=%j'osW*LTZtsh-I/g3rf6\@"X$^[$/=j4T8Z6DZ"=A<31RpYBP!5"Ga%Z#c&CC!!"\n38\fMb/m"2#AR&GE:8"SX+uT*Tmp1UG>fKaEWt\s!<<*VT!34SX,$=k4o/,QS\D!d?sfr#?j5X6raPEmE`t\droO_[r@/=Q(?eg"!!!ptl`J`o>k=uoIrll)+aMbi.\.:>Pu#^T1O]8ikPj_R9=^l-lRRNFkBc%g!!!"r&<3WCPEj1YZhrWEiBQVqHW#>Hr7Q;.I(s_c.TbL,pRS7.W>;t6T)#-'7"98GK-q*+D1??T7"7>itU#TBV;NU?RkN?HFBT`KX+p7lGcn(Vec$>JB]OgurYGm)\C0Z5W`SRpBQM/O@UkBa6C&e56ck(f.;6GYZ^-):mb872Ce"/'CHpZ9p1/&Am7t^jB!#gId?.FWklL):!qOt'5h5OLoppC'cMjbM;3(Zl9ja')j!!!"8lTAL#$/b]MV%X*2p[,J^)#sX:J3(Nr*tFll]=DQbop>&_J+,rP\udRS,A"AJPj!T%hJ>fY^E!7=^hY=4P.Ir@r,U.)[NW4oo\Wr0&%h6t!!(ZsoOMS/_\5N]IeR=]PB1WTjLeu^MX1'm'f7._3**EGYJlgklu_'Y!!(B-V6s9sL%dO@q=Xd>31g&@q`+%KUCq`o\Xk"i8'K3LHa..]8RG\a\eY(JX'O>J$NQPdef(ocQ:`CpX%P+WL\$N`.`+Q="p^YZCF8DlKoq\\[fatT0]5Mao\-3KG:q^X"jC^FM`3hM!T1>Ncm_!%h$=)@:JnTh4k1NCKXud6r0GQQSmVL$)^[bsfg5pb93qE0n44^dKSg@ctAm^/Bl$[a5cNW1\nbm;ZG,)GIH\N_j4(>C<0/fS>]_0tk*4,\GAoYP-g6@Zuo6X_X6^miP#@0onjQtuY6Ih=$ET4'JYu_cDf*^Hl#66HnT]:LeZmj=Ibf-_",0ddtW]*!-nu8@gi@1O$W0NY,17;YQ'JqSOb.&]?>&]GGuTC1-b5R\ptXsOkdb(YK<1Kf:+c"`LoLFTa>2"qK:DG72ufFa>tLLRI,f!dqjdoR?0=\=!ilCl'-LCmWg9iV,OM2ui:@rB9Y]E'g?XgD2GlA7n*0^8W^%+8OguX1*-+)c[PNh/s4V^KoKodsYbU?H^,O,'O"eOf9r#9U*a"i8!Yuoh/%:X.T=Zs1J-t-a"QDmCX)^."O>?HKn0c@>F#qAN`VdT!?n`&Kq.)"T5Gq-!];L`?gT?c8WIL9sa]L9fN%,Mk5-Rht*@&HY"M1)gqpr"?k=mS,J4#R`6E81_M[5[^>U)9\rCU2$5jB56*XnqH!#!R9au[\o+*p0=qUO@#ma]UTX%%^460G?@8se8`OL5KZUi6P=&95E]ekr/;mk9(J,8uiJTE"8UpV#VU3.J)7$1oag"PhKZ[FDBVjV\%``:Y`c=,GG#s7k/(Zm]"jrq3HI\aUU%:K/tR435b+Quua7/'IXeP=p5Q\t_EXXTedT)!;iLIH:LMDZ@8.IYat.h>$AU4mh5:SNfd76s,N<#:YZbZehA:6rN?o>4RTgC'js6id@N&]=dlTDcToAIWj19_B-1BgN6%0DD84*MnIOlG4W0Rf[UUi@^F;ZJ6Lu\UTD)?ql2S)lW6=LacE"%^SVWeOC-KlB.pMHQGBXJPFb*K81k7"@87frkILuRE5#3#?(bObOeB2$p!fCQ7!BI=-/*1;Q;InM.fde5EbQlsm#'tpNfUBODC^[aCIM<_7!S*Mf*]*qd9Wj4I&!dT5eh=`lc:aERc?S)^TsBESNl3%-gUnBHK`E>10Z@9C*s]ck2uh2;5d*bF0'Jk:7\6[3O[moUTD'm^N(Nqk638FmD'dg)ml#(MV6LQoQr4`X/!?GYr!8CZdC/2kdH6ZD+UGY?h_k>`8Cj,OD#IB[h0/#&%lh3jO@Z[j[SunDjKrTDUF!1eDYQ#E7nn$?`,IZ"pl:bSS@pbGgPhs,F7BG4f'i]/U2M;4<)N2qPoG]SI`@EN1nsCQnO91,[5KZZh.q8akV'9E>5(K\)ZK6i1#k0.]euNE73i>8X&ThP;:NUJq>#W^;m%6DEXZ;+nMI.D%/=aR\cqqq'@AlLJ-'2BBDo7R5BsQU[F,[#biVmtr8+5P00ML8![_YZYd-dEu&QmfESM%II>4__RErknSlTGT^*4=pp:XGZ.Ned')dDC;8@=K_JqMJ2YVZ-CGTqhi(_Ag\VR.D$GE,rG)3(R!d<9,<t5mHor*+cp'dUr@nQ'1P`=pgWca';f$-?TA\"8)uppeQ(2K@DSpWL@$dl]fjg0XisX2?TsQD@411!4_)8$U^oK*1fFK0Uc%)__?0C^V.uLO&nQu0&F!@j]i:ZQdtt2S$3oQRkKNVo60oX.YO(BFJB\9W:S;&T&D^2)5_7D.V8I\7DW6+(8[Q*8om7.+U,b/n+jBQjg+tHUH&OP=H_I6m'kmiW#q.c]X!Q.).r<%(7Y5*oP@uNV#pGgI8+%64fU_N&c7kd+@j6Wb6/up<+>s45&`n+Lh?eH7XJ-W[D]L6gfge>B1X+)qJ*gW'8RHm,-GE@u+^Vns!^O#S3B.VY5Ja%nuFXJL$:i3jAMPUaf02$XMO3LpH_,AZ(j!Z3i*%`qI(mQA*NLs(GS!I5(`3ITR$?pWDIUuZ@m`Rj&k,U>g.\UajC2#Vdb&0@g6ed:lg0X%t]a6'H:X@KEChR9H9,#`I?F@otR6F6nS#85'8qr#mKF,O)p.6MucLcsG--MJ5`[+,dC'GC^'j`6J34FY1rg=gYIUuX`>BuDt.BHTb`eGW)HF2?HrHc);2AbRqK>JDQVtj_A!ZXP\/^-)f6kj&qZD/Z9o>SI;=&Cq/YWTLI>Kd?UiHKY]V?Aft^&*q>*apa*a2dgA(qNYUuH8m"J$EWu8TK\BN[]B,5JV[9>>Ci2o6#,g<`"3PNnp*C`NH3TE'/^mZ^%'Na"hJ=\1Gb<%7OgJcMU1rf-.[uP6d'BsB1n>GW6G[UGS'K7dk&kL/.7%7WrqZfl;f9scN6dn9+3lP"5DIZWLDH/aeePY.n6?]U?0f!*VHXb/I`P0;EktEoS#%].c33GkBX4*,5TZPmgt,LhIeA#%O/KTW/gsR2FD&hRWo65AYH3VL1DHL:o2dBj@^l<%..`M]&?&!2RIr%/h,VX&V&hh(BeDJ3UDu$(M-6h?i@#ga+P2sbcU0$0\lg/b,0udOTQVs#54*/^+O[nuAqj"43c>U\\8jhi?&?AbTh<&riu<(b[B-CqpfLCG^Y\DT;':lP`W1F7&5/&!d,H$4s5K^/<&Aq>DB;m_mE!urkY>EtOuoEfn]fq-Ge/L;)e_%%&g/Z:LLN0>VTbG-*Fm8gj2Y+?H?`iHD'46\BjfqbEN.@\LS9FAbbTAePc=dYTep//j/%Q-WbdGr4bq9c]qVN,j.m[_?EkRi?JW0KoeGm?*8=Kkq+g.sn"cC`1TUq]Sfn>&]>\b,%/9Z6FD2pT*`9RO0o4O.(@[8X74#D3et8C^of;3!XU6[o;uM2j#2#L@t>Con8Y>GBsGhPr6tN/-0kOHq4s.?#-?9:54m5CSZ8?,!oolCH/A#9i%\\B^C.0pBZ^eQ]hjCeFUAH>Z=6giDC)U1Q_Z\L>dU$D\'-1-j]Gq>LHsr.0/)Lq0mINYt0`9TY0YtiOB^H"\-JHD@I`atYW8TfiQ,:Gk?][hP@X/A8R!mrVp#rh*jljOcKa*a.K;`!3F29/Y&"?`CCuh=&G/JtJ9eI89"A?.lEiFH?R_"briLf!jWj+@($J^7KX.faqlnp+=_ALT]=QtL1Q9DkJT\05J\(jfWO;$UQ*fXn=1Z"Io$"2k;Y@CU)F_MY`ts[:4^(^$AA&YaTPhMB%7WAlq".GLsD-,AkYEo]E/NlFC%`i]ftr*hokkH%5O?nCD#U.*17bE-;:Ale5/mDUZLoI,,;&+TO4*&6]"V>'1O7-b%p)uAe4N&W+BBUr!g'6W55"57Q@@`Mp@=g9qQlPHd']\-`1HoMu'JUI6+dj2:DM>#h.cr<U#lU'G_rKBYSSU"a>_$WAmTRrQ;(g_PL[%&W=Y)RSp6WoICSb8[+DOC2[!qS'<$gEmB]q*pREW\!@2QQnBVq8,!PF@&9T1N6dB%V?k^6RaP9&4eOX?6-EB$#(_57<.r7G%CC.l@=e)lQ+g%^_b#3\oMDs.g1Y`C#`N=a0F:o(De1GMR[I#SrCTZoq7N.LPr;s*pe5F_Gq>d3I@tgTF7q,^rp<)L3l^GA#kTX";?q^!WJ+2P9`=&WW^VS"7;k@cAp^%II:Be>L9u@e<3EYVh^:F]<)jkX`U,%nKupB)Fc"aSV(^SdEYWCJ:#"IFL%>#jgC.BVV:bqKb+'kjU]K%K40XM3Eg?T)q9_,>4+Z-'(LI`t2Uc$'nh&-nOu$NX*V0Eom]3D:cR%+Fe#^TH,P3>a&?>+pCeSpKYD/]N%Rm$tR1m9o)Am*/ajVq&0/u=:g8hX'p0eb%p7Zc$$Uq/m\pd+fn@E_5+dk37tU&6s9)da2,nkGA?^DU`Zlt(`H_MJ?m9"TnJA3ul.ep6",-W>6-BcZ'(@ZfCOb`o"-(\Xn[BtprTR(MEK,%Ja:>&9E^pRr8P3&q![k)EG6d3$dR,Ng@OH5@Q>abifPb-f8l84!C]qNZ5TnZ!Ao$c+V<&?;?$C^NC]6Eo!&Aci_QfgcZQ[gSMOe[aZiB7<$7@orBfc@4kdbt"M/?7iDr0lgNs$tG,O;cVe`?FS!XlB7%c^Y2)WlrBW"N>Le[H6of]cN'2+o>d7Q$P4_Hfes7RG$U&>k4PNrC0V2km`LlXP.s]N"0c]V@)rG]jbjf"2,s-([Y,TkJ-EJ(-4E6ZSEHJW%urk/XdE*O@1[l&qNAC-CrNelk/>B@>Vd#KBjYO,SOahfol,q-C$BT@nV\Y3oDNnq8mMSfu7ie80\bV,<0]@%`iDIg>.BCH3Jq=C5YtA(2@8WAN'7Xae^kYd^fCEGd8s'T&'_;g_'3HpkJY[)lW?DrBgKrGC6e;-(jThh$:VX/>&u:SB(BVg/@B8s`AkYsELD]_nK+II!/a!$(+4B5B#;1+e"p@Rrd=%8f/rsjd7sjJ`L_9a"g/X3'lZ^cX"^M;&eM:4eAn26V@=4[d!^:l99Tq1nb1SoRE2cdS:4oZ=ee:PV$g&jC't@2)Jr1/PK?BoUbX&m16-Ch3]Vt5ZA:rU"T_9ac>``Nan$LIhcfi3:jXS6`,eGR+-_hj8,$#U'[?0_;Ei>iHc].getAdHTJf01?a7P\o*NctEoiEX1!qKMQjio$JtiLi)bjD6$47^3p_48ZlTrNJ-1'tL^#M(UQ7RJ4bd\$h)lT@mLQ"hjDS%rf>b84j&SSGXM"2^$_Z]fN6X$D5Z8Q*AAsD,:2oS1cR+W*3D,\08/q7RBN9"&d2Ac%.XJrNpq%G9-&-VTLDTHg)h1qDDCLruVYU$-hNhcNVfb3%C:i=StUD%/u1-a))X3D4>=3;-m-nk\'_)^gQ`72h8^omPsfUf^EH=+Z>VholD73Nhi:eiY-B`P'doC`tG4aoA'UI3EAk,`rfc.BjuS^>q8(P42,\[OS]Os\mm[%)?+&bZ3YNcT^cGa&CP`Gga7Fj&J;[%nc+-8gsKfVB83!"u^_8Ej`->*NP)n9fP3VATAC*BV?:TiIZII"&QS5aXUO=Mr/`/fB:rL896US42C?L_+Bg[@afjcKml;pFpMXlcmDW.MQ&;"#&:9D@,>.JLfUc=ZR`&=Q,[M/PZ.O>MaH-4AHsRrSWI`YP%#YXVl*0c5I#A@jc^q7&Y[SDpl*VA*@/e*_oesNq?K$ec\Ms[EdL.=V6";$SYnD6TO3tAc"JP6%Xuqmdk0)/^^s*V%@#+`g=;R\[OE6@R:lmSj#tl!5YV:1Plk0n/?@S)?2<(:c`.)?YIO-p)QBTq2g'9Ve!NBTT84pGc#RV'mnB7LN:s*>.kEheL]W[64!g0*m0_%*h_@nkD,Yo*niE?1gDqW)s/c=+t,I4<6D4Dmd$>[p7,??!W`*UU"mc=']M=c5(-C3^$6B2EhkJ#*8NB+%-B]aA'\NP73d`\q>?k;E02FF-E9bM!KC)@kDKZ,VM^:2`[EbcUBV;Vd+S;@O9a);udT/Y/\XX5XBn%>*P]#aaDlO@Cb(a>41!&??rW97f$gf,F%>q)\Bf&(!>',L5@>S1#Rc[eeIN!d2_Q&aBdmK9mAro=FJVsQnIb.\Hnhe9j>WVT#79NcNFIQX9TK-iNTP5;1TkrmsBIrX[;gSb(Fd(&,TYBLftUYb"W[8%q/Y'hdYKRcfU1\OMtVC!UR^beC:R]TRa$5^1a=G%(#GYsQ.UH;@?1,kZh#%(hpDkUqS)A*>;jW0TN!iIk!Ui;#V9acD?;X%gm03V3(tY6_$q&Tp5XJJ%YZ_l3J),l!'l6cmJ%.QsQqA4/=IKban@,#Z_CHLn_pNC_cu>QoKB6t<_`[lH[pfXRYE$Pl)N[b*U6HbAOFIt/_f,Jkj#>-Q%XBMBW1R3]K9B$['K?9='+E,V#1<\^SM]E0H0PNBU#G+O7+_>V5snY?nZ!RS<_L*Au6oYqtbm"htl'AaXU@(2rB#S6go=;kNt4_3@PiMCL,(c*?Da12K=j6-p3%0184U)89eWACsi7ZE1DbcCRTu#rMA9%AM$=;VX&MD]7ok!Ameq)^Z$]ULSK]7$P;Hd`XPrE7_CVT,bh(=r\'tl1fIGNr6>OdKSV73WKfMh:,ba*&5G&C)jD\.P7"`&KRiK[3N6s7;$kkhN&hL7h$..&gh#eJ#Is.JCJ_N;7OaZ9T^'pW/ZWD=86.//iFG`EH8\C,F($&-Tp?e[R"nRpH/K1DiqUX6q)QmL[5)\;bPr!]F_;W_Xg0b6r`jNeqB0P14JI90e;]_s0F[[mc'$`=YfBtfN#[aF*Blm-VD`0'k@:/u)ar^5l_XYpZ4dGJ5QL"fo-/orihDVI)d'RIg.,$0kj;2A)6HBdcS<0">7(ZRPu!2[,ta-Yg2+FB.2^"9fjbBt-G!'6U7O:]'OPD7ZP&3=l'?Y1<^u)6(RO)bZ2.tfd3;Fq7']X&WCW;"U?Jnh@:s5X]2skIIn/KIgs9/_(39\6'#K:S5G[b9Wn$j%=RMY;@K`peR6#A`b&b_h'VTq>J/17e-&PHqN]P#t/]SP!<-O#rVDH`4p.=_r(]`>Vh4:dJh'nL/GI(2V(^"+.3JppF#BePCYd_rbMJ[@'#[(rH(saq^C/&A'bQ54-nK#XfcgB)BrINRUq$\Z9g-WTC"b_+FBtkO?tfW98u7/R-ar`HpZ`A^WN#2[YPRjEo`rn[A$rT(7jZ>Om@M8UL-A#B_FL/r\@UZsfW81#H"B4O-Sjg46kNH(,+6'b*'@/R`a?i?9@2[tU#3^o6*r0H*[Gu4C/3Vqu<.\JYXIb,NBDh`>A*?S!&kAem[cVFMJV4@c&IA)`%r1F^10MH;>nR^`LC#e^1T3/5XfQ*.T,6!-oErOf7/hCGZ]Mt)hn!]CdD1;oONLI5"3^:cJOb?^qpO7%bMC&2oM_BS>YCHMO@ccmgDgV(9\*c4oX^4;b/'q6>m8<,`[*>]O'5a)Pcu6j@jroJXSeZRZ.Q?@1ucX$NZ^"F22$rV2XWr,^"4,<)\DQr=+2.6&B8"GAe(N8?/>n1&z#9uh5Xii",Soa&(?nn3"6aE)r?rULbgoW,`Pk0oj0:gVj8'*J:8!#e,LgJQjSck!ngYoCFQoos'2o?B5/jtE=j]PZ*V/rq^e!!!!m:e.GXo59'I1Y7'uf6Hth?iK$g:O\i*(6YMBim9m@6N@+Z:=tsJIOjpJ!d!\a:>+XAZG`_.rDp\b(;78oCP=C@ph^X,Hg%jAr`n[-'eR[qR5ioYT3B0WM2Q)*78l,H5VHTOX]55AR=+kKmk=1F3cjH-6e:_e]TK$7OF[F_q@cO2)G8O:Cl`+oTds7H`[099?p")"A%t+YC"D7L(V90tg)l8<:@`q7#9RIu]WAVIFis"M5bTg(Kb%G#6\088jJDnN;k:D(BQ<7EU5r+N5Qbt1l.)bWJZG[a]c@TT)?9r$p>WAb'e`_b\GMdIeZW402=/tT\$inYunbo`OAYT7"YpImqerZU$X"o-nlb-?W`F^Mc%_X(p@ALqeAt)Y/)b_j(Q=m7g^u9mq>F"JTJ,4s+3H&P26kAMu!14Ns*823aBm[16mgJ+#MU"uK%n%^in<$29[#Y?=Uo)/H)g6BGpNO/s)?BCC.0Ij1P"G63YCErF\bai0IrXr3*H9lVmF#0DFo=c1!02lA%a#k<2P[q^)U5FMr/u%_WH?s.I7`M:49+0PI-))0TD#0Hp]>XkBj!?6+'XccM/`G"5`M.Or@1\IEZ_W;Y\?mJR]+8IZJ'U>9%a6P+OYOiD9LaaBAj:QIf:W0T&Z[KhQ5s^(n3p#-pq8mdfpZ6!2op=CJ,n(#KJhfTa+i3X(DKg)fFTC:V1Kfd#7,T8Bb5%3&e2e_YR,;=B6d>lm3q/!hdt4jb!o/k\L7tMM$^HY^DX'nXu`l/FE"9t'ADQm">:b/?m_a^MVb.9O)?5Sg?gH"AJ#@oj'YRlh$HED9@5PD3_GPr6fVgXk."l\t]5\6'_Kc6n7j?BR/7b*,2L\=%H/$<(bllm3TJ+uTbUsGCB,(8Bp6cRNQXbZ4ZXs+K6D7\"32=fF+RC@g`[,66:BVYILoK`408FI.k&+X6:Oi09D&O"[GM=W\rAKA9teh\ZQlO"%qUCEqFDp&PldBZ.KOrNN4(9.2AS.]d\#GA))J'=Jp@`b>Ub)Difa0+cOh.cqib=4fq.K'SqK)ejbWO^eTs-^eOA,DGN@EBuHm)jcmUK7IE6.Z(Y=u(@'J1OT>3UdsN5Ek]7Y[>e>1Oc'"!@U=V3Q,B%!Dm&+10uf3\&3?8ool.?@b%1rTp_ZK!?fbXbgE='9&otKA`VhU3t4m"SWluERHYW7$u-'jpkb4cZ08cm!7Z[`p<>*aEsdG4,B_dKfq^>BZH3X91+Iu+/*Cp;/D!T!TN7:X7^2]fgHUM<^]:;u=0A!,Nm>WTi\4#kj87jN7[ZqZXg$9i!<[iUU9B_R(=r81K:^WD8Sj([TL:jAZ:NZPedh%dh-U%j4jZNc%fua.*jN6J!KQ22!+_5`Df;?d:"FqfoO)eB!),JjQu?_ipg4"HOfEEY84T*g$Qf5L!!(K-80nIV@WH/_N0;Gg=WjVJ\(1[J-@W1]C$G^!J51DjKNBW'P*?0#NJm,B)BgJWY_d8q!!#80kIV[6I/kN!VI%$[5%`0[1o^NU5U#W;Eh'9c@oWXs%]TB#XrD/0*&mjDVGRKsJ5XBs#05h=Dn#&0!DkSF?fgKQY_3)YV@PCA,@VmgDZMPL<&mh-NAX&R^KiB7dgH.`lBo$!*rr'HEc+7ZRMFXaXr@NE!*74;Mf8US%tIO@b#MB<=LPs8M*q/6gurEipZec8$NgA/MmC;D/e\4U,?5i+F^pDmm=CHoqX5%*o=.PfB32i(-^&*YaT"BALlFO:XrGdl6sOqGBPH)&Sd7q(6qgnej:TbB1-M9h:&To9qgt^>i?SV;ffrBR4E$;eHeRIU<`dc/8-*X'(,EkVF?Kd-dmI^\S@U/8eZ\UN3M!%.\K1t&lC-5_Nd$o]B)D+`j&bKa`MlqN\t20pSU&6b6*H^:a"iMI@V>V5j/ob\W?3#h%,jW"U_S,q_Hf7`*0kf[M^>Nfo5kk,DW,B6[LgcjW;!m*6GlQ63";W)4#0%([fO&3HgTV^W*N+g.T`@E10!JJCi1qe;J!c=?7S%UPunP%8JWtQj[ito966i18M>g@Ep2I"$4JU";BJRGmS;44[j-`na<$lg3U=QAB>pWo"?nV$@bLkhEn$hEa)Z<1ZbrWfL8[UX\1N[$=Xm5YZ$b/>9cZ&B3PAZ=]q$$.8RE`NkoqVYm[,o"\$Ik`$!/jWAbEY`$UL8E[93#QNfbr*bL=XM0>^+ZGa[`;VA!fuGp@aFct^rl[]DIc9(a80:ZFDm:nJP](?gZ-T3;LWI34W+Kj4#E/R#TN3-+]**'3Ep@j_R9THdq)CWcU9N)5hCS^R?hVU_`u.T.V]i/a^,IcR$,CX$"LYD2.D>/Ce$iNWhG\-;p$S*Q!]j%\ru*n@[J%m)jV-jP3]`U+0:!amNXEJh0ETZdU,kA5`W?g3X[r)1"LM79gW2k5IF`c`1;WSg'A?oFP9cot"K0ld&5dQr%Y2W1?E(rle6err\O)h#"\Mo3-8F$.]NoR8#*-5m2+90;0a;h(1bNO&Pmiri<8jnSguCtA=B_BdZKr3DK(5d@^F8Xl*#N([eL]Sm.(<^3(u!;/\$54?(f7`]>3PC>:RaR/Ys*LKH;-'EAsZL(F;Lrj?pS2Bfa\uOn>U[/u>l!^@J.NA#o/TkRPRrGe-XjL@E"?FcMlLs7J48)iOrBT6/L_%mDDG^t;CNRe=.96!+;8cf`p8A%6!QIB=PWN>9AC)ms2UXfX'LGBc>.SJn\J9Ym-C:2EU5@FgDFf2=qYZ/JsnVa;eZbqP+mm=b-Ue+PDjs3&PLHF2L/Hm4>WRZ5QOdXIkfWUZB^#[n2W@:jjeljpel(D[(lH')bUiI9`DQFGGoW&[G9au.3NN]hOB#?l4qon$Q8bD0@s,,H6WBl9.,pAApIeuqX-(O!1l\i&>VhTjm\:bpaUBh$7dn%,bnaI;4%Y>A&;0DEWLlYrNI2c:h>8^j,"GC9u=Fa/O1T#pCiBqDKUVWc-d%Fe3lT4?'?%[7E(UlL":W5kU;)^gnKk-@nHE)Li"@P<',&_j``N\)U#3<\ONKc85A$2:`>^RC96O/Vg/'p'.0b"U6f:H1;"ZAEo"TODM*^KbR&.u``o'BL`nI,0kniZiJaM7bh6aMoZ0p(D:F)GX9@I?[q1Y#KRV-A2T1KZTMn@hWC*h^Lj16$IL"Y,Nj.EFm.lbq:X:QKoC&8PrUgE3u^F1o#S/ZR]RDhkctUFihPVSCZ,+`4V!Z8biQo&+oLDU1VMrZk>M&^m$)*U$B4o7`aj`C=eRT?-hX7dKmB$HJ1WsSO.eQECr/^RfbPFXsqAkdM1%1o1'ifO4]5.c&bXT@*N[;/F2p,6-Z1$^QB4s@tu?+S+/]h82&8B(UrKp9XZ\AqV:d0K98bKm(0Gkd']63S@#T:3f=;j,aW"HFroXAo=q]tA$n9;NCfY66@R,iog=B!:08lJ#,EkE?UL!-B?r*<4I!Xs#0gCEB':=PCs=?#kZJ^l^q;gs/4p*t*B5*h9h1QlN.6#KgM0oL@E5Hl#_j/NNce1^<;nXUlDJ^Ici=Nd?bMd>f25aDF&alL%-VU'(p>>fS1R4[M#P44#6n,9r]e@om45/&fK'Iur6@*?3g*X>HX6?F7N^GT&dBk_U4F23B7E+B,I6&8VUd[Er(k4F+ZakZ9SsG\HVXE7?SaaK/_H39maM]B'aE,$Z6.1DX2*7TA)L\ddL=)U"C9dKNro@_@-%1T[dm*(LQ_k[_\WNGA&>0o^e9Pc*I[,@UL,12ohm]l6P_MmAKisXQ#Vj<=g6.24&2Wt*.Pji1l+7KR"YjQ6[%$J1jS:Ej;M41mD"P8Y+m6VBf&B0c:]=fi;./0+dNjiQ6P6<^O-/^q3^K$naXYZ]Tqu`FTQHsKH5m*AZmm"uEc;V=U=OI_gR=8HApNYm/N;IZT/iIXrD-ZNQWkeca'j?&oC78UI"&dg@-u^;^DU4)_`"=2XBo]3\ioqC9"DAM)01k*3"9#0t>-bF6+U2IjY##6Z.7V"Gmtl%%5%"K998`)QI.U2f%MJdFN7Ur`;*?RW:>`*G9O`'7j98p45g-EY#N\,dI`Xc6g'LdHd]#5IhrB0@itZisC3Y;j+n0O+_D=)-pT=dmt`0lW6K(Cu-+-JJdUUD4k'V_Tuq>LRA$sSY)U%oprE#-^"+`Pa$60W5G)+9GNa`H<"L$Zp76uie3EBZ;0*BoH:#g>$ok=F&'(hC%:lMKXt6fm+$7!Zl9`sdg7;-TLoOHl^J_RbNOCDL^3#jTduF`aG-hY$NEq]1-PflG+3#"ZX*GN<=I](O_`;PaRq=D/<:Q;\N4]H\4B9%Q&e4?'ggSU2*^kq?N_WG/BOk@:&p/7Z2od?I,pk!+M1^)2IaT#?eG(l6;@^VDcSl_\D.=JMg>3,s2"Su-`SAhjaV-H5gMJ+4ZXj9'#/#'&=2[#^W``c/V+78GrQjZT=D6$H&CSiM[8a'[ISK+)7\!NW.!t-5Q+a!,Dnhci.`o9JY[VGX,\pR!n[t-:E_!2!>RBeL38_,'\>HjVIbb%O$tSp92:G$`mK&&jM:RY$d]`;mXJ+l[-MAeG\7OMC<;"T_HD[*$h.%=;)@C[KoHXdG(5a,D\DJIkBAb_'P\@*9qUH#QK8"fMD'.S6H$iFMLlN,fe%(#Y7T9-ubC2l`X=@1]:.n9QTXgZbDj5rhPj%`,T#qmGG9S6&BS?&f$kqIU[)B!p6S=g$=:#H*\]9-PZHOq58umnRQ"?Rkk)sq)RL1[?'GpurQZZITL=&1r-24o\dZ8+pIT<@&^06C;#4D+6U>$4A"'hpDlU`O0'6.25TOKH,WP0-p.0h;CI@7GE9dL+O:^8m_bnHm+Pc?;3fc5,0_i/4>:+qb\RT^6!&#*K^A"TdD7+4\QDDIM/dct*as7W+`iR:$ackkg($KP82iu/&d0$ha:BY9?a>a:B?Q2^6ik[(K?UKeb%mW$l^5S4K(UG='G;Z@Uagd`8-]KBe@$`PFo[d?Xh^?`(tQH/f%1CSQt\YL7`d8u!u7Uoc:KP@$2bJ[T_08E)5#a6A"/RrhX$*'uK2nr&o6noe&%/)GrX)lk9")#'`+6K0XpG@]9d->WhFKUFl.S?#MQCMV%RC&=HU`]1.b7kE#.ZmU:`mCSG7i"o%n'"s#]`u64O5bA7T"aU5P\d0;c,K:+1N9rugH-pasP;\"6l)cD%Kibn@eo9f+JNs=!>!6+L<\rFjKlsdQ);?TYP8RI]\rh(4MHHrSI_FQd"hD6`gc*Ys!tg47Cc%pO3%HqA/pn0k.H*N1uYJ?3+j@tU4I6FXq^+*j@+*OVS'%UeCoB72L]TN0h6mrrbuKHUQ8dI[&X-\"OXutJiiWb@RXpiX>NIU-=ZlqJ,[k_Su_Y;Li7in_:3[<2/TIgFsMjgjE75\F%r(HqJTWRWg*OKQ@riN/V9%5UB68EXQ_oJ.IBYLN(D;G,Z\.8TKqjnI_@iOS2dl/BeB5/crWG>U+5@(r1]GG=iiOnBQ']EYh56^\rr*_C5UNPiOZ;J&/jYSAh@EMWiN3!-&j(X-tokT3m?JFNo&0aV=E"jVc$Z"-V9:1]YkP"BER#-S$eTtST:&hk%>p9>b`6n;[]JM`e16W:^1[p#%#mM_Rq#=lV^C99\[`X:ks;_.=)t2k5]h4t17V,S[2:`8rB^/!18XtXAP^I)gD2(9CatNO<%QB2e/I^Dr?MJqU^k4CI,]%>j_`k0dn,a=Z-@$2LtT9m7Onbo7D`F"L:O&/^Pl>1JJPgW3A=4M'c]`T_feJp`Be4hrmc7E!SJoRl?$rS"]cVHMfG(ef2W"eLs?BM`-B+#s8nefkWn^rMbDnO)N3U"\M%?fKMZ[\'[ALmUWAaNPToI7OWoEa\pK">)f61p@D3a=UE"5,G?9]rIEWqg"a<_a\/X3-Bh%F=+@?,"[=QoaNlR.s!g0H+<-G71fb?Hngs35CWg89+o!0t@NR^C"i"Wp\djH3G"tK#..J;M@NW!#-ZS?\RhLHHn7=!*%,@MR;9Gl^,k,<[Y@P:%FT!gm(cDc()f#;`*!0nK:neX6r_W8'5%YA&ubd1h'3?48MsrhqEUH^[^C5`%.X*ArCL2dfM\gFL#0$gOblX%T17[&UTRg,79YGD(YDc7A[@`>2mA.b7iVdm]Om[f.eN1K!i24]Tl,XQfqgRmr`-(3:rRrlph.L;A!*1jWrpQ*N1jfj^M&-O5.[=@[jIp4#C3.YaJZFED'L/HWouuOp2?p7QT9[@27U!PZc$u/j9'4eg;rJVfA:+Y>WHkn!5$p6)O'tY41a]d>D..>32F.%[bUEgDB73kl7<-aOT7LZO&/RmA]8O-tfX3b29A^bHs>0mJQ[:%h-2BC.?2HX4D&J1#B%`3b0!T'hdi7CUWjcMZ-u][mhp"RXL8sh#T*+*e7LKU^9[SDVZmIQUkCBeP3-P7N8,A^V(!IEQ00A?=adYV&%hG^'5rPC)4`U'E\(\K!fj4W^/b;OraQjD[d0LX"'C1=,'mR.&/s0gO6Q,l=U,?Mj3O>"m`0eaF:FceoYJ$^Ju_3:l@%[T_XrFDa[*4bM2/-X%sD%:T4-DKSf5:2Y4Bc>;8+UQRh0)\)rnH/&#SO@WJY@66>,j86)_s[!!br`=O9L2s&]/K'Oc,OnND:)BGT]XW)l#TkfLRXIO`.4Rl(@iW:Sd6FX/"/$^kcCirq!u=4R"_+$tA`@j\;,TWLY&9Mfp7WOS>,l294)d!-s+lni"We'XQFeAiFs:sF2gO2&,OZ.7SMqLkmJ=\LHdGW1P5^MWXeKG5_1(F7SPZ(taW`%-\3@VBU'cXA::9245J5eT/2POlWulVjf4WsS"?%r"1-+oc^;.jo=>j53B78n#,IoA-j:#Mj8a`"ZWI3SN5ip[/e>H?rfe^Y6mLU8:1B.=l[@MHER$;Z'ocFFI@;lM/4BCkWl15Yp*t8@p!e>BS!n+nrBi?4A(OR+?Vi)AD=+5u=8QhLla)^6o7BRi8N0\M;L0Z-7m$a*'?N23#&Hj?ieSIkWr*?Qm5h;JFPLXECNGf6$Vr%CHIr`eMjX?heT*A2bED[2m$^cKEDqb=&+Ejja.d2r*S/eMQ&YnDug/HMqa_+7WHil7n,:^>=/!0+SF.esU;jPQET9YNgUcXf%H9?c`+?NE-q"*\q2cN#cjHejo&#$;eY"&>LP:_]Y$ZSIRP!!e^[ddo5YhqXWOB-8;:fGDr`>m7XW,W$9-NG3Zo3$*Fo&O);#S]5"`-S7[:HDO2THcE8_`uBUIbZIF4r$e8J)WGnb#mtM+hb128sXS7nD3D-_"h-8O;m$DV$6XrNDWMBd28&[!]ItNu0FX),FoeFmHLMCGq8:,og#9gEF!C@ANdOr[\9-Skks'A*X".VLVUU.=(o5#6m>sQ$FUDaAjC'h-)Mo;"KR?G:R<)o!lFb?b%rfWBtatNI/Zijc4kk<+r6q8:5/2.X.k1bgp[>A1<]]0dH"oKI2JW=DX&EE(AlYq*+=TlcVBbpTalaeAtC>IfP@';mE(aS"B^WQH9^n/Yg9TW%PeFZ3$=NL)c\u^DD;\nF*2=o[6=UZ[5B=1n/)%7E@_e[])__.3u$I@pn;A]r,"k0$ooL^G1RRI9O?nM>&dmR]%%^L/fJ51=0i.$*eP!B)M==@r@1Gc7OVCb&6iIpqSgPWGV'Ie9eatF!,q*>Af_kChi4?Iu<<`CqI3W4bVJ*",k2S"Y!&#VND[K'43ajRD-'!++`Y8*m'ks11@;f`eV!G1?t'tNSo'cWWY1PF09bikR5I.kZmX*R'_0hLZH=PNN:.K*,1,R9XZf2=B%V(51[Mld\oYPdH,"X,JAE(,(jB.Xk4ke7K.q*E$6rfU8L^)+?d=:Nf+jLVNYK\4rcjh.TIX1+cq7(/g011LA74*s('d ^UP#;Aer8U2A&*_4A/.$%G>+lcFp"dAd7\g:_Y7`GJDQQAjFAp4%n3`e65l0\4]"u0JfhZMRhV37]-0QqpMJp/k0P5cXksK`5?/F:sSPL+)g_M=.N[Yf4nOnJ.kMJ:-ljnU[PZf@UPDm4c+rDhm0u/CU289SU5]b0hJgdF8)*n$VAgj9O,d964NSkJeZWOkN8>5FGZZa$j2\Q!Dg'bb>9OX3_Dp"F5?XX'C#PW,Z?s?FCo^?AXtrUW#rLHH;=BBk*@ZbAjMCPJI^+I>i,i_RYhA/YF+p=Ol(8ZZtAIV2q'S=il5dNDkf#jehDShh3PSA`(ija'@AVJmUc,MZ*N!F*B>BKFA(5%8ea1KDiiaVP)Z&4*WoWLPm%7lH^Da?]iE@co0rF+L&MK.C!J"t#AmXU\l$:Edm(nmBqDaID-G$SZg/A-^`o5@7a5)R;_"8:%`RFdKm;J<(+0UZ,IM/qYA)f8g5I4M05?Z(K&&rZkD9_p+mY1tqMna8G,m=RZP7&pJ/oaMN<)D7lZ,"VgsL4Plf9:e?(0RqUB8D?b$5:J?ajuh(@5=R1^QCj"pkO)87K$0L@2@Ihh7f.BC*s"@A1cZfim5VPkV(Y,Vp5s.9lJA*WC/iEq/pUgQ)?;9!.YE>MZ(q#;$[.%!!$Dq8KVD6HM[dE!!!"LEPbD0IFg%PzW&IiiI+KqOzW&H1(C2+t-z!43kHBc16Fp+!!#i*6@X>c#'dQYzn44G#KSQ!Uz!:#BZG"TMih')h!!!%OqP>\Of?H[JLz!,Ba"V6k\og3&SZzC/$1Ukb&=D'`\46!.[+#Hb34rX4=B=2?OHonI!!!!aSUj"l;Qfj$TjIg#!!!!IZFZLHGm34Cz!/%@n-%'rD!<<*"!,U]fbfndl4ctt@#7YunjU+#Oz!&chm5^A+t!'uX+AF+9j*pos'3!<<*"!2p)&7Cal]!RE7r!!!"LKRpUrY?W4u!rr<$!5KpA54.o]A:ED.ErZ1?!!#t%Olr\r-(tS('`\46!5K@Dr@7$nB5[bM!!!"d=os_5KiIF>z)&WA?8B:c2!!!"\:Z/^YPq-eHjHAhP!rr<$!*#4@q'/5b]$13T!!!!6Vr*mU?'5p1%da5r!!!"@6>q&*:!g3D\@ga6f.Btars(.()Z9~>endstream +endobj +4 0 obj +<< +/BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [ 0 1 ] /Filter [ /ASCII85Decode /FlateDecode ] /Height 370 /Length 25149 + /Subtype /Image /Type /XObject /Width 800 +>> +stream +Gb"/lH(7X[)o1?6/7Td-mt2gY)G*JW6mZ'5"]8!P8rN6jQ&1Bs6r?lSBUr%!;@O54,,'_5Rd?!(@@$e;n%J2\S9(9CmWiI5qqh4aF2!.raa9Y$m^ZuU\bDWW4H%7T:rlK4r4W]$Sbi>;+9131H%39J[`t;n/GeGPkPmK>I1<)YVbf?Ah&[e+6uCglh$Ah'K/m*q!reO-AT^OaW9B2INX?]0&jLh3Fgh)0_shuMG?C$6=C*N-L\3bEYt=lm#g5uUF?mGUr-j=XfH,a+0$#YMC>?Dg:FL_%YMZ_CH;?P$:Wo%OgZ^OZUVa:tVV2"FEs6S)mSPdl#B2p?H,9^o.A7gVBnaX^r5HdBc!Z/&!h!ED@HUk`tO/u/KP4D%PB8=dPCRfigKgLOBUQ.inH?dQ5n+;eo'UE"3eWJPDj]$OtV]T6=&5kC7WS*uO^9,l1Y>>Mg]?A=\TkV'`-TTud$3c4-F.AdA3a44V\ec%fPfs&KH?/61VCPZM_L7Z=>i>8(nF9e$Vu&fSTW#HKl"L`?%0X><-A]N9#3@j.#D@Jt6GG#jj>M3X%o)qq[*ri=JB35Vh]Y5SE]B^O"#quV7q/"^k^'po:55)7IafTe&+=jr_a5)M?o@,oO'<\=XkA[+sOD'45"4VGhVD2;\TV>\g#?ukS3Z4]&sdHJG?=<*pA=>J-teK#Wn)-4j4;[.V5WY#W$>R(,5,."oVf3Zj)pm[9LZ%&[F9c^:>U0*2\e&:gb2E`BfjEua6ES&`"p%W*n'cQY1*?KLah>5GBu[39>3G4<7j`KV['Tb]^Ks'.Un4DohLQ\].%FUFIt$lLFu=4BDZu!krr+c%L\dJc1Z4Y]$m4ML_X)R4da,Q]$n?mL_\cgH7Xi(4Y!e?_A:G>EI'0kKu$OYX!0HH_!-t$*gSnDYDS\iDM-C_3D;8R\n;b_5WbmaEO^88l(1nn!]->fa5Q#C.AsdY&cIqSk4CVC)nhd0>=J1*K@?STHt5:o[u0B^Nmja_I%4$Z7&l/#E.4#]/_L;V-2:A:n8gA/\O0cWq`W(9.1,#RX8dpkA=>j"qm-9%up/0Dm:@`+E<;c?VaVkg7:mOk9@dj$ib9QR.:2sWCe^1[$ZX-[FHQ8q)Q,NFLJj2XA=Eob;gdgYXb3V'HFYKk55qI.:U4OE$8s/l5\A&NLa901RA"j'/f#&]+Hl;4th>h"M#rpf(h)`Z>l7?HEn(kjT^Tg1i!/I,&KG'd(2;Z?:12.`:l^VZe5:JiRe&X;Ys8(IoV)aO&4%ha9BSk#Q*5Fs`?WS`e8R.M/]L10p(hYRd!TAZ$4.HHE9KHNH`7D6^[f,1^:YcAo+=9m:Q5e",jqr.$]l&Rh)_Yp+J&8#XB6SLS%gQnI>mVgI+WR>3]e7WG,'YVQ#(2fAi`'\7j"&mf^lQT^q.BZ%E=$^LVr/!PZ:]bKF5GZY3J93CJ$07,gbTabdS;(CZQ2^@3(^fiLnZ5m.%`=2QVI0Z,b7$5:_)^8?jk=j3fe145J/Q0ke0MIA)gIUZLp%7$A?l2MH3S\qUT_mUjd9XB>_sQK=]'TBB>4#W,]CnKaV2laV$Ec5UBNLGeCNFh&uH@!ri)*/XoB_`B>S_a@2nZY(];XSib85=Q_CVcMGSXROXmXM`ID9Q@Y9nJFmQ,RX7_TBM\^2cuaee"NssI-,N8H`kDXot*W.MKr;qD6"&7>)E@"iqUD#H#g(*Re;kNH6KpP6e*0i.NMUNSo1"N?b1*t9/4Aq/X2d,,0X:F9XF;'[=oNd!Tl9gu&'f_9(0&00%`.%&@5L#_dkiQ!JAk>dnrnOKnSX]!ffehE+U2poY0N_[Do,o9a6(]Hs>@;`?ebKb&:8f-Hrb?Y4O0sZJRNH$_TVpt%S@Pbg$+O"O1"6VWM5otO]-OTMA;YhD9R!rdiFDd8l(NuH3/RA/)OTc%I=DaTQCd43Si)jYuZjN.9RF9U:d:@2d,,0C_,^%F:iA\mc[hVX2`8GCkP%#?f>n-_Fr93[mUaeLZPUg[H^n_P*b3)jA]=%il*"u*0`(M\^MR)%;XKrR?I=):Sa!UXf,ocMp/B`*0`(M8^Y/MBUjdaC5bhX4Fba%[J^Y8p,-\NDO"D/IG[-7DWuR8=c$>OYctB&D0n?/FO3"MkqXRTr'bWr-cME1\n)/ZC8fL/Ag#W0_*>-t/nIo)kM[;=Y/@7]_G2l;WmNR*dEEa;/Z%p+e0;;KQS)RtZqASu_T`4mM4a'95of\8PVH@7>+h4:YZ>Z&j=bDCT,?H;^JF+7t+JOh,7ZJQ!A&#Pl1GY+.MPCG]R9CNB1H0Vdm8L$=qh%&*GVB&)CY7,lhPDkBLFnp%_oJ+eQ4Nk":^CSC`"G#BAsegQB,mpQCkXR2-Copg^TVW=nKF9T'+D`N$uN#*O2ldI:?277Er9!)WV.OceqNP*$5mW)%:g[5sXb/`DSU'nI+@d`mO7gur2I;3LIY='+(\=-2Q[8WE@"4HU3J+^^\ahHJIbK?@GjILq+n']L.\PYsk?*crtPa'\I2EgJ%J)cG_M3iJQ8Q^/H"&gk9l=fW)C3$I[A-`%?F?1>`fZU]rq/rB>rF1gfP$K"jb$iP@gq$`']co.tA6#_[4(s($5MO17L=1&3#cA(=rLHkVai%/tW5[^6Bd`7YI8g!liUj&4qbP,:uE](ElqEDri49+,fc,fR-]c02Tj)Si=B8sFl*-On\XnSC,I+nj5R:B_1^\%a`cb"GVcmJSm-^\93Be4/P4NY8)ccZ9it\QR3sp)lr3TD`$8H!cC@=L0'W/@Gs9opHp>9@>ZV&%[Y@]\%sBG\,c-T.sE`]WptDQ6^8c/N+"&Gq:ASR`nc[c.9[q`SH,AfTDT+R@N=ceXiPFC3Q$]l3k$A!Oc(HCFpS3]E/O2KLinI`Ei36l%p*X-J3^Q,RtIq`[B19#nQ3^[=(AS<6+XQhr/dk&eR8Qf#%]EH0lr=Cb&0i>W=p3R'TB.B*u%/CG:Hb"#-MD[uerIG^16HYk=nA(8ujMHj#;DRO)96HagkJL3AR7Ztpisaru6G-I_c5=l0EUEhF:(B,_L*flD@APSDfQA\20cFq(BHIOVA&cD"-^qoqnJtuqGj+HZ3LXoiYq/-Zr02$fBP+sID\a3E1D0.Zo%_HTpm,4r"c7S_'RcT$GWD%0k9T:s)3q#%(Z>[U]H7^7`k+1=p))dpiSQ1Aj_2%MK;Y4>1,3]-.el1C\b;ZX7rKh"DNdPW&QPM\]SDTYs4nr7Z$s4L-HH.?]"Z-!T[[6pAoMdRKEUq@PJ#nn&aqYQuZ1A3Un-C@cf"rjZrrW6`,?`:Z$oXLtWlDP7r.9M^bsfOGaO*dW7KGq!=iAA8Xk:;<=(O;"B*m'09*&AcT+27^Bo#:6==F7JX2ag&TG1'$\'/d-SUmGR0&1j+&0O8F2H7a,L$68'H%/GRCu+-;M=>hhM20Xg2`n"n+AlnQ37Il2Ocmk+We%JemOIo?G.n(U-oEsZ8q:@J4J^f&s2a(]O7nm9U"@d60/i`9&>C@m*FO@r@f?tKq/:SlG9P]Y&BAH(\H1Z#k`2e\tKQ05J!VU7+L=bK%AW&mpaH#!1cs'!qf/q:ZA4iB)7NFU;]5=Pg3)V56N-VAC%Z(q'#A_Y@^SjX8e_aGMqCheDe"VDJm/9*M2a=uQT2iHFrHM)3g3M*7>>RjM>KD^HlZ$&Z6!NQaLEUd():$IVt.9+u3k">VRcuu!=(7?7\BI"iirWAl)31lICM[Br)"_3D"U/$RcR/PRplGfZ`c0nhl)E^QuI2,u1_CjK6"L:5q(@cCG&KbqHhLKJ?&4EU[.7P.oe0K?oqm=HB?k7LD#\/pO3hQs5^B#(NMZ7O&"lUX^EaTsqnGR9WL<[h)f1-aE^4Q<%`4SV5e!c5e$@lk!C6W#4"%dYK0fEOKh)3o653!)3pP`j2_c5`O)Bb\3bKj>8\e>;L5,TdohVI(OT,q'f+T&%;FH&'TSA8B"2R`4f$=cN=9\6r!GGho(L`Vg%`'XXVI$0sj5CQLk\mZKr"gVJCiljitr"h^]XeqKBK4OM%@r?/eq:E!lk_n9+R"#FJ:+Jrpj:bHbe#hC[-+'c$Y/-do7NhI*uij#rJ7>N356QK7M""GJ[[bXh5\cfRu&)]KhkeKh?bsl\bhb'a])UYro\n,]to64.M2&2N$Li5GWLDB!UUMW%LD%fG1-`!eP"A;C`#_BuKTb[r9+X22+nbW/+VoIF/W>8n[8b0\6!n#d%_Pq9&>8(iq'k]MJju5WM>Ck"Z!NZtS!KqY;A&;t'2KL.+]i_A?U/6=Nqa'7Ld1I)D,;L#VOQV`Mhhm?e_(2$mL4_2,la=;)D(b'c0Gd5K/1k&o]cW;tBuM#A'/<5JiSGYM<+05RD/U0&P5Qls`F`)/_Fpq-/N2@20N5U(LSYS`*:a>F9n>/V#k(X1u>4d`fq5@HEb4#]Gn6TZ2O)0n`4=+%e3lVG+pY$I5"^3K`5^Ec_3LRK5%E*KPBFcb#W.#FHbPD!is:[_0?3'5dG/D3XUGfa@PW;D'3!/>qTh][*G?3ldBHsVLaai?iY@Y2%mEB5.;LYW#h,'Y*aZb'^U\n$4\BtDZnFCAd1?[VFt4mt?XpLl]D05tR0YsJohor?1k0@'.u.k3pi.(Sit&,rT-!n1SVdfn=rs6;7b(tX[;JTIc,]M[0.Ffi$X&r*WIJ7j5@4o+0\FGPM$%g01@g$L<@.uj/F[@eIunVI)/C>[jF\!,/p*I]R'6.c5Nk^P1M]'QG-?1Jr?>-]p061/d+a+P-(&%pq;YnaVY@ADAOV"EmtN4j2!eZ):W/-Le$(@c^3D9Oc+4-khbSeuNR2q%YS1kk:12Eiab$:lT'HaIhBcEe`(V5t[W+0D/j5[sO68^GAbMIk)0jWYSX9+!a`p[.Aq.E?e18XF]CC_-8Y1;nUJO8>$QqA$H#>Z*KVM3-+WrO4ZVc`_0Nsj2E@f39#uu?,B.LKI1D#3<,i5X89d4@Ce$GX,4eHV:bUK9R%d_^V*Dc?!]:I8/-X-+?2h"XF]#:T`gglS@;BapZF?nRWKuZQ3q>Ve5%JeNK`aHqG%,a"Q3@aS!1@a9UfcZZn>0;n!fepf"O@(g5q@P("8kKn'%0:jerhu-BS8SD8L6l.RU4:MbI%<[9-YpdkcF8=9W(ss@Dhc59VrOr]3s(iYm1jra`@B_BeCMtWp_e2ac%uS#cJq[=Uklcs*!bN#'SM;StH$0]Hn60?99EsY7t21-N1o5O9gKQkg=qWSiFru*E\K*/C:P\a_J[9X&s+[-!SaMaqW'[#93+lH?!s'$K8]dCij867M6lP[o\hd1>K&-(=XcJiJfiQ)i36$!Fmt>nIW\"UK-1W-2KBL+S^@[GM&O,]66nQgCh_8f&&pkY!%S_=n7Lb:#b4AiqU5?=.A#cEE]IDYTZ0[B^L@Cgp;_K&?n5/VZ,-#:1jOq?5:VnYXUds0nZt]R'Wd;,3*"k1:G`b!`M/[Aq4D.odC&q3<(SEteESA)*)cenZ0\^l>,,"iZL=u,$?!$llah(/8Pd$i^6C@9gA9VoHWsk21h"[14n9?b]An&h!b^7:qMGaf\C)@K<_(]XT,iH?GqIVgL+&4"R'i(1a73u*'$gtkug.5np"&N/FN*^6k0T3aMP*p2=1T9%P_6HI""TOrs*%C+\.2%RR,]=*l"iAeJn3jLh#8UDaMBED\_5V+7fBO'?]XZ82?8/PqAUb_B:!]7![I*F4"9LHRn4^-th,W#.W(gC*7O-Z>t8Og*HWFSHlQ;A_<*@kuE^e5L3'++oT\NJd&tCb;K?I;mGOG&%3@WGK%jisJEhe"a0OSkIX>k`dJh`Vr<[Be"RkhDJ,Fge!7&2?)'r<_HS:L^B4cD6,H]oP?X'J^.`(dXmu$2kNPiOVE8Cg[Q;:uLL=5ZVL,B@Ru&E1eSp3-c["X!#Od_t962LMA"XNge08:;j7H0m4@_>58#Ohn6@R0cIt`auFI6j^Ub"lnpH'^IIU8[Gu(T=![=FL+SU&ars'AE32SgMkUuP%65E[TC-CabhY('!'[Hr!NS%U*[BRsnFoW/*R!/Hq\;6c:,$JrH=)AMufg6CcNjHT+_CUhSSINW.OasL!@Rt%E1^-U5?2J2tjJQ[\H1;kWI2@@hkKD=&$f[&*g1.#d1;iDi^!9=lO(*U_NF?E&X8D'W.p&FqX$fYoTiHVJ)=P%TK@0??!@R9f%;`%ot,hB\8.e%iif$5eGaM1($+X>8a=Aq6U-@GGOUKZe7\Mjc"6KgV&Ji3#RbKD0U$Xh9H(t,o]DknCY15&oRu%6Z8l@l+K@%Is00Z_Ck4I!;^i[YSJ/47aWQ@@"",;%(@JY7s)Y<=83Xh!BQ$9F.pNbYM?#Y)^oX(4iYS7`pbb2cO\Cu:U$efsA%95pG;7L]Pm'^o"jH+kGPHaa\R_@b@p$R)XAfAaf#%ADP-O;?3$OVL.IrG7)J`mp=.N(EU;Q'K@tOhcHg@p[AT-Z,`][2l..VlAS2M('XX&7b+ZXRqR/2AMh@+1qE*V.Tp+-->M+GMo6*!'F5)1*&]b^DOb(*2U1EfoL^=RFV$X=W6+=_0LK%iM2q?]b/TW4c+6a2^LR_aT7&=`VM9U<"):`sgeXUI^F_`DS^/8sMo/7D@H]n[E49A@8`aGPFC+*,Eblq35?L1M$]q50bH$$/ORPl<3[>)"O?K[-P-p9:1)nlbp#N[SjMM*b%@>1"r>]!]"uW!!e)-S+k+YK4\8iNKWG)GgaeX0iA(86m$t"_,7^YQ]8>B@+7)+YjdkbW*J-9BnJ[q%b\,]=ji+DaZCM+;k&_%uIDqt"&H"\FY,(l>#XtEGie4,\,3lm]rFoj2:GM!=d7fjn+)1jflXaKCtUNQWQ>cNEen\uE)]rH,;#S_A/[iFi$,*gqOs3'(f&FVskY"Isb(]q6)q"?@mH4>Z27G7\T*&t7Q(Ec1,JMYI@('dc%C=8M,4e=.Urkr2t]Bt-Y(_Im:7@9(6X,CHsDVE9TFmA]N6:LN^7gr%t@jb@LK)t)a[$GX4[?h>!Y2,\kA*^]HGd%3J,DM'DeQUc/]fDiaj\QaX%0.=B9$sQ4&qLlPX`uX`/5H>mI^PB,jm&i&:JL!u$?``E#dm"qJ5kTb``O3f2l^TrmQhI>%$d_J;[o1[,?f$eh[qjcJD\pRJM,P%NUbe1m_[MF$"7CP@@Iqo/--FuEo7dh0ZhVu5pLK%0&_'ehY^E'AG.s5@M6S^5:D]NB&)(8TC)_C':+7mg(2)B%O53Y-Z8_mR@K0Ek\CNPFeZ-;l!QY@(:6B]%3-AT9Z4UI=\)^Qs=Ug*88p,@du!+'Uq9`sJiU2iC[i\,59k/-I45QO(1bVkA<+4I\LMb@046,OsPq,Mkjo?qa/SHVN01I74c';7M.s'1q_#me0!:[sK>R=PH*:7$JV7hTC:>[AI1mB5NhYT6hPYMrm;Ni\,H$COD*6@gs!6(8>;JA:l7)K&15S+PVgb4B'ko5u"Dh$^=!=ERGCYd'"Jhd_,X'9QCG)!k.U15J>%f""@a=Y#E$L;8m=7r6bq,Kmm8.L)3J2*DJ+!=XTe0RTd@h>*C)B:cZ]i+_g>0%>l^*nqEoa`En'9+N/Oh^!*6pP#rI]c_MS!EC@f4cfBkAGYPqJ'b5R\+]#4W^F,K<\"V=1qX\L>R$IeghUOdiV/nWFm$B^tHO*Xn7+PmaC^HZq!SMT90`&:-E$S%HBEAXE4-H7sMOc2Jkms'_Mkdfl#G8F4UYL;XIf\hO*US@Qa0o@]Y7j/A4l\S#1\%aOZj-iVD#QCV_gA]K)2m*OaOt*t5DAMk4_EWq7ofTGBdFi,`5GN>SSai/ajKoSR()A,-J^]^NlZa[NZm8FsR[2bQQR^?%$:E\XpDY@Ur3m+8H<`JlHS`o:d0e-UE\'Rm3*BCa=sY0&I9=\'V#(<4`4(YK\E#Os9G1?sam'LE#a#d%IaF'X_:pKV%T96!R=$,66i_&U'%a>&-#J3"P-gmXDo;h=$pKgnOWmuT9hCPtR;hU?4),UbOZK0hQd$9L&>Pj8ZFjQM,]a>q0&&]JP_Vhb]&]4?o/ensY1'afTZ?'$;E@'Ws?.9oIY/1aF^g#(-?5#9dc>Ys<-i)Q1+/N`VsQ*7O_jfRg*N>[oESDU^r5=U%e:h,f4e)Saa:-X1!Zd@pX]R>;.R$G'%1\66XN+q$d^ccl;F`lP$q5ZoZX]Q][U]Ug("g_GTKct30IcZBEmreuJqT.!h7eMkb%!Q0n"]pm%j4B?@2u?\TnFNbpgGe08]&IA+Rl:e4KUnI?R>jHJ2AUVZMJq2NAC"i3ieLa?NbOeu_\G[Q[N,,*COVR/Pjh&0Pi_.(9h^I2OSm!lD;^4X;I\Pup?jOBG?h,i@C[aZ);FN=l70"0XB=f*?@'H0"fn1n3_mHprkTImQ?2iT0E_9)*'M_<-b0q?0\YI@;EWV%HBD/orHD4kFQg9/]&kGe&HR*J'>hNKr0N3CbsXhP2PRCBu/%&^L][=o/V[0Y8%\#r!F:4+T)6-LM3]4BV;_I7;MPnA\9;YM`bdBrg_"'qJs_o5H'Z9h.q_o7tTluXNP-ugI69'Su#N^qIkRD8-Z*/EC5>$,nW,\HnH#_?cK1K:6s:f<5Y0Q$HjfMe3"7$u)%5,t(c1`X6bT#n6aEX0-6cWsrOr+e#JS[B%Z_")pIe7tSNs(kJB6:dFg[t\AcF8fZBW!N8DZf1"`Z3mWr`#69P97u4.'d9#@.8i^\"-A61<$n=ag&*M@J&e9]^?7b2FU<)'/ik8cCp!.U9NN0MV(Vr9od/3]7OW%fngjtZkY=5W%8"tJ>m(;f7a0adDL47DdIRt4])NNU#RoL`StMkD'"k;+/r%Y]"\5"-^Uk4?5VEfMh,%7V+O5;ji^RT^g3`6hm;c\13l'?JBh@[Ch+Q=`SuDPcsLTUU!F,#icuq+11-(F0CG46Z`a(-SB0W+^Qrc:0/[_e)^G2kp&=DW%9^\[FIc!5GB1pj`u(4q0&'%K0S6tE9coV;L+J/0/tjn*!d?/]88mF8M0SSj,HG`8.72Qbo^>tl\n.T8`gZ/35tYtnNDn-D$=Cg+\?B2g4KiE>,%Fn>sDG<"CcfC9tD5A]o+)f&CgXi;F$On^L+0@nV:B"3j+aSB7C1^l1U:CDM!;ac-@eJB<=3&s3>Wn#UV26j,=7G)X@[i_]E`o)X]/++Ac^ATmRh+,PMZ;8un[r&A7dXlfQ>+3%C[;U^*!l!Agbmu8CcTgm3^D-I/3fCUHIa.`'ji6SU^0,a1'k/U&_C,PBO\D!%AHA&Y$Cq>s)]Zs[pGiJGWf^b)EY.G?MN]m-[L89O[dP*]+c+%r88Wn>eXR[r!IVHm_H;ur3e,&n)i^f+7Bn1[c79JNV6#uESJH8Qeq7!B'-R*=eC2*nP&spdU@Bh/N2>Z2">)2:#?38.HE(pS6rjF^PR$`*QZOOhQhULHVY/eBC/^UdL?"7KtWX/i\^2gIn02EM@XnB*H]N&>0#lmS`*h$fSoM'3-1ee'4d'nSBn@))g!ZtqFYidrd!2!f=#NI)E3MpeXKohr>emp+8apC/[[2l-*(=u@gJoHW&c&RNlR`TPu\VM9i5MmDbLe;.bdh:gh,NJ8hHY1K=\+L\,M@1o`Y#i1mPT[/cupInMX6s$eeV]U-O5fM(b%]_9TR'>4#_Lh[lVWeQIhUc&8RX8<_;`k=C7?0$po/sI.Yb0?dE7q+7tHilKce][q6S_L]8p:aYhjCoZn,=C)tX&XRUW:]uY/soflja=pA-(Q_ToB>ulI1k\FXGOJ]D5?%S6@adm)Wfp[h@+:nQor4iY.O5lZO@AAaC<"?-kb1_-/l6,=TGbF`Sm+hJd>(?a(315.*:im"L$dEYUruVB<+C9eaOHGOP4l+0]B_eQScSX^u?:*T&>XJ`0H?RE(o)N8gpku"H,nU]Heoi-Y['V6:qeD\N;8T@'HG<[h]Sps=UcOCT5@N/7T>M`bg/0/JpW&>r@N\JOH4IbY0.@56Agr0V7915VsAZFd_[E(86\9i.=&>M5J@O&d\s9Fm=:r'bZ!.A,ec>XCHdh/\2u'f-P8MCV0Us^6qE\++FAM`F2.%>e.quO8!W^R7D2DN*n6Q6n/-:jKg\1]aq#O'(76"_nL\Z**Z07c(C"Aum%f(]!IG1+MT.einbLI"UXg_roe,i*CJDp8>YPOGljMic#/hs?](3'%560TI\H_%?#)[iSlt2_M\".9U)W-f!GR8FH5k/aS*'-Kc=R6gEr:q:WTuD]bkkb5)?>&ahRY>"2oqL$QDcq:]QSsCmDbJ3aMS[45+0__FA#O2gIZ!SaWF#Mr,tV&AH%`TL8Rooaq*u"4MeT`ae1+\fJA%.RqAJkuAfLXaAtd4!irZ^cUH801C$\J3?DnA0/jddA#6Icbrej7kHZK+IH9-bC!9o<2k(b-ZVJs3FKDPkt]O(Xqn;Gl6`UqtpqI%qHLRq9ZX;8hX>!bR7CsdO18Fhp>"Vs0=6oq%CH72TBrd)>B.B\Wi"=np]ThBrM-*i-PXg7AG(d5iR@J/OSJNk"!dkU%:s$)!it1[F!M+V_\PX7=".Cn'Sc?'=98]M4PA^+R3>m+*^0DrVX3"lV6\;mF9h-YBL5;$"*6uAZ>q*h5g\hFN*GIm+uocI\iY+CAh^c[k>AC.E-i2]"`L/Xl^.,)IW:jl,s(X558(2;=foakPlCMDH1%.bUK/h/LBNVe<*#Uqdb?E.EtaPoLaJijnHJtG5[XeG%ZZgo[NO?^F:Do2Js\0GE5J+)Y("[p]'P7p5c%artq*VH:Lr[bB<(?Pp]JQ%d^F5qVB@N!ngnA!U?Lf!'cpXUPU)]%8;gIq+$L]g2en:nO`#R80]#8rO%<-TX!@?<4(Eh;W(T*=oY4N1UkPpqsYZFO%I$`h77euQ5b@m\(p-R:uY9F:8sbU]hR1D+f:$9#@rQ,],UfWdOSN@pueK_5P5LLQ@I:8FS3@L=.G3!d!ccSI2"c!oos`Yg+X^o)%B+M$43@"Zcis/%V"si(:[;'+RDLq*Pjh6;qLjZiM)=T\f,()0H9CmGlS!2pAbggi_n5.J\ciC%H^a@ISfG4XL[0`!6r2s#e5FJ[o9lNU8#fZa\r[kfa0k6cJ!+-k9)@-T0X7m,qg$.Pm8SRQ*L@\bG=:.$%1F@#GDAo#l@1L))=qo"n@&A8e)@f[6sutYh^4h_k+q&'7^O7#hY,7c>[oYY7HEVRi.F7H#a"b(Er"uR-+^FHV7`3(-<`O`B_iB<]?R3VNVj!:3b1'e[iCr'-bG8G"GX[5]pQlr!Yb2$,B8ES!@u!I:<7Sl5_Y58p4.G$A&jUH-tAW-$jeq)Vtrg)MS0c+%ru]91N+M8ZRdebmgrPjJmAFf+WY>/N2-ob`@&9mqq"-XOZ\WJb5!C)8\l9!`UG5YQ2'*BUM@-]tl?u`A<6Qc::!:&kJj_-\CmM8NAk-%i/Q3#QUXHoUA8GA1Rt3g@ZAW(:JId4%gW8U2)P%([t%iD)cf9-9'hD6Qm'CWp)ND0]W;>apptDS`8]\u"$Uo6QR"pI5mNa+6e.=9qf,A#i@AT-Cq[bL(FqV,pk)eG2m.'P@Xe5d;ls!kb%@roa5qrCiL:"l`NX3Li!8;89F@[A_TVq$Nf\g#00TI8!#8CE,gnI]g)WfE%!T/WXfKknU-O)KAkLg_E'-q_ATNbr6lAq>Y"]Pm0YO]b`D#0"_^u[[?h/<%W!(3)Ea-iZp$,&8]h6(fn(Ji/TlUHnD*#E:f8Wh)X3dDQah2^\0C1[9KL%FBZ&=\TFIo+Ek"sJY%EF1-X'A,8a`M`opo?fa)gGoGD2,Y^)eiH(r.)L!YV]Yf:37:+YDc4)@Uom#QW!(58/%N36(Ndl#$Oo7u8I-`-iWIL2[5dja9G7'I:DJ(?bIAR$_grDcO+rAHKVJSE$KEJ-:&6aQ#_A,45]Q=SrX;Tj$&6c4ugB,Z,`^o7H*WABYcR\QMZSJUV%jl6Y[db`[QhY8YX<$3WL-PoE)rDZtU+a6s=^rJqX"'@S`M!rKBQ&318;!sfj7LF6hhP11lY&n6\kOWANJnP'/f8m?V-2CPO7gjR%]"6L0RZ$FkoKGdeu`BkPM60&&ZkZ4DQjsEhn[X[+Uis'#CmO)VT>>Y:qA_"^1b0*&!T0mp(^,N!Bu?KG,C5cnoPF-D<(f%n_N=FYgr`?Ugq=Kb=4t45X-Mme*5q4YS8qa*&I-Qk6/3r=DM/Iabn"<^-=[-gW:i&5F9c9#94bL/@A+3dP^pKq-Jh!O:Ou@TW=KmJF[^e@CNg[C9VK-gJ;58aPon"WAZA=B>=7Ysq5,3ldLqXALJf5UV6T6>Q-Y36?RQ+DRkc;,"KPr&F3Gu6,%a*_0Q^<7kHDh8Sg#<:01'??RqilcON6<@R7.WadWQ`E8oV'[P?p^ateeLJ`DE;%#&%MYD8m_XJqrm\4HI5IcK18rc4<2m;PgosF7o0![saH-25HZZfW?YU%LRejJgniSO&*iuH1osCqecS[tQdB9XaEj.35KDpl1u#qnA;M_B)\enTY8F\oU53)P_`L7>n$6BE)mAm>kTr4H-)Mm9qK(Z;5l3(Tq*DM&&g&CTE:QK,!'IG6\p&T@=BcBm,0h*fbn*oW7+bl*k:Nk>#t>)0%EumY36kdkr?8pAkS:Z>1':'\a&Y1+om2_`6==j1"kIh4rAc6l0FUr.0g@8qid$*6Wk)=M*_llBJ8%M?ME]!Gpn'@QP=)7aAo`?ZV68FZSf^cj,88plJVX?mO$RE3fo*jlk9sL&&[_^0gkD1_?TI!&0YS&^/5-'-DTGBS!-]+ifph$2!dXftU650ZYo/U_rW:J+Kf[Zj;@V2WjO6RONOBGDUYe$?iC2Nc#KEC2X_X^TZ4HomdsgQd'S"0?iJ.H%"/MmMW]>AG90!gIVK.N9?-llJj-h_S[.uujlr``R9okaaEM4^<+;IY]aS`5=\-jm(e?+=nnVAI)o=Bbif:eWAEh))C8\dUMpOYhC=CRG9m:J9a>_:=4Sp%#<;[DD5m-_(94/grSA@)RB_#Xn]6E\lsg-+[\aOZ$j*5"S'OdRV/]XVIq$Z8!_YDrC6I,9TiSN>g1GrD:Zk9e<)cR6,ss=LB>)NK(F=?LBQOY2iCa&JDSnj6Rg/%X!4GrWc'Z7j,D'i%KJ'kbD-Gqp"uAVCC*e6Y+Dh5Y)aG^\D("q2kt/$=R:N!"[HI;G9lmk`2*&P6ApbVWETugD42$;>rKAF_K)JOfSnEdH@%f4pj\gp)dhd-iF<=cQFEf2$=Fl1i7_>E`itA\e$m*6i^4pt^Z2_A,L;5AtYEkmP4Y-kn>E\VM_Ql)@6C:88A2A!GP7nL<=J[eT'5Ku53!*t=$9P,A0CmL_7b0%a[$bSRJTBRoVbkP%pb.WDr&?Z(I^OgZ'uKa?*:N(t5XZUL-NJ8LIaeX=,'66s1+6f>4Oor)7(tX;CuYu<'A,'c#)Eg`];-&]ROCVfdbJk_W"g/)Fr>ouX,2kG".:f")iLuY$iL7ua:JbG!UYgT6S7]mRBjD39)-:GfleS+CoE6l\o5A\KVRXqSXs:2`\g%!@PJk<)UkOB>@<;_oRb!.Hg_+6O<^_.AGt?+&d_H8bRbfPC/QeTMSrg/g&?D8p9[kq=J??ItsK8;tGe$U:&PDS?d4$/46TP`!Bk@c:&LU#29XM\R>q1n\k^C>VSm2k@J!9fFT-52Pm0Ho@08FJ4?'/1X--DT"hGXt)<*mS6+GB&6a'03HI,Ofs0u0Fl>!==''Ek!olKks8j^)GjVX7me.E$Je.FCo>E\p:Nag=_a`'!qdUZ)/2p0Q+"+AY2a!_!`1JIu([K]o,c@;6WmM`=QA.0fSG5]SMA0LtHicE>du&-li>q1e]IkPsg0_)!AeE3]ED4=*f[/5F_HM-H"=C8_hn+*^)eN4oklbl[+Q'#*i+LN?fZGph8tIc?8+?0lEmH'7Hri/gi8.TS;9SA?M2?&s4`,'6,*Z$qgA8fZ,Tm,AmA[_kK^sWq[HRc^YimYo\kmAOL5uoEk#i>/%p!,f05l3l6lFOm)NVfRg%2U%>?D(U)a@.!$#DgF4l"q@p\.LghK8GT*]Sa!R6'=?K-QB^5)@J%,<8j^4N7'ZMp=!u=8g>h"&&,`u;&,%RYZ36C#hWFe%ZJ=].U3?MSL=pic-bk(q*LNLO@U:B+`'YpnO4Mj1FoXdm?`mP*?")l6-#K.5JASVkei'j\X6BqR7aZ\5';+m1XR:2b&8)G908\B67k^Z0KrYXtGapb"JX*=VaHO+UBJgT^`'Z(/qd&Kl"?q]9',gG#93Hqq=Cbl\Bp3>P/T?tX2VfWAFp3_^d#-=!r`hLqlNA&#k8MlSXo[_NPENFWW+r[kHf#_1d6%QJ1iuA.-*lGo]:hg%$l$0YK%3LPogDmq5.U75Mm&e+i4"lr!S5^Y-[ue=cC]UOm,])MJ6W.WZFTMo:1GZ.RPMVfD*;e@cPa/XqogWej:QLea8=k;"gP.)GE_MmGUlbaam)S:%e]o-@Rd4H7HIfQN2#4H[:q1ed$6;PoNA6^Bgn.tPaG_au$E_Yd`W;tEn9bRt,;SiC-:^[ENG'@Oqq&6j-Ka$B3E]QbV@.-5U>iob4IfDi"o-[oQ)?SGWE2&d*'VA(4.I<6&cBYP<$CG!$L?HN]SP:F$!$Ghn,Aic3B1A;YuKltdbWlCeE8Lt#Rr._7-T=k6p&"f*MNGh[JENMaQ<-DIEb84:$6QoJplh\I9EaGV]j7aF;_HuC[l>p%r(+3e8URH_8ZGXAMmrVrmgjUlUWV&:j!h$rWq^qfmAR"']^UI6P6Yl-lj)42(r-9f:]PHeI,jTZjk"hV[m0_Z50Ku?14VPTe`JS>S)aAXpn>4^B`2C),E7,qWAr9U7m(J[UoOi:dSGpoj4@D)?e)HeA4`F?_`nV&_]8$Y%nCO%cNOO1BlNb2qI>kWiBrA";G3bO>^T_;?cEASMI8pC3V=YHGC3"(%HpX4PbT\fk_pM86iB+Q?7e5^b$hK;`>Ne>%2#k5ira_iig2/!^lL4htfD+bEXB#MeAi]LN:UMRt@G)e'hG4TZ$?PrE[FIqi;&!B0QKoD$&ECKK^$F#+-b0E$%b60#k'C>\1(hgM*00n6kDrc@L^%oG0>]FTIV!c^Y"OD?$Y%R1Sg&#jaQ?CBb_JY^Jo!baSGt=C`RW#E[la=WAp65P%)Jfg(IPB7k^&hI!"NXk.9ZBE">dDn;1q=h.=!an%RoD8udWDc]74SZh'X*c/NQ51M?i>WBNFN@b5uh@81;9+^a]9aLc%]c1LLW=4\$p9@'rf<@/#&hM6nqSPe/D0^M/OIGr=Ia6R=\[6+^nZtHM*G>1M;[bd]%Zu7Y;nr0N;mXc9\@)`$RsXIbDN)l'Q]kmQWL9/]gAF^-"Ym[k:!'$'K:t)N.m=AU/8cbH6e=%qG+LdTl;;IMD^;OW!Yt5`Gfn\`op;KMD[85(H76t&ILsHj_=\bdG*nd-krh[X<..dX7?No-npUd5u.8nKqar5=c\;W5[!M)'Gs:@p2Nj:6D8?EBBc%L1R>Se'T-AA9`=Q;e`g*_'X$M;4_iuu_WQSR-t8PV7^.A^<`XpK\7.j;35s"2Uehaa&s?[Fd]8?m`6rAe'T-"i_NScKgPmG!3rAo)NY0G55[f7l.ho6XgH`W@?[M#T.GF5JrXjI:#_aJrBRU?m./tlIfZ.TUY76f6oG*89-gjJMNk_IQGAt-%$AAkt'V-:ig/Nd#\FD+24gnCq/u_[c54;t0,:D%+AgnFs!1b2VSSj]Zi=Mm3FE8-'Q]_-ml4a$TfKZ90dGk!"*u'\fk5~>endstream +endobj +5 0 obj +<< +/BaseFont /Helvetica-Bold /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font +>> +endobj +6 0 obj +<< +/BitsPerComponent 8 /ColorSpace /DeviceRGB /Filter [ /ASCII85Decode /FlateDecode ] /Height 246 /Length 4344 /SMask 7 0 R + /Subtype /Image /Type /XObject /Width 302 +>> +stream +Gb"/gd>f6P%7Bae5J763k[L%:OYsQm;DQR&MjlGH,W.m&^-iffrX1c@&6JJdJ"VE"EA)h@+*8JG0'1DDTG%WO,J$8di;@qV3^t:Xd3T,#kNNCtM*b191DGEA?(qm4o^>[$(sj--_14.8#WOk4+W/QD$3h_A+Xhn24Q2_:09aVD6nE%2R^0^VX35Pc4@t3#YITmo4l9@r'C]YU:*Q"r)G4/d^idVfJEM(GTjL-iM:AV'`i]BH@/4o&d>t3Q7*;5N4bUCujh(Gc^O\l7W6(I=U6$m-52'KB2pc"Ln@^DuU9]n%K5^j'dq')%+lNqHQg1jVj(U4RP,5:+W4nLYKPCt9_`n3cN@fK0r5IbJAP'fRr;J2[f%[,`J`SE%&(pSa.fAifj411Yo=o[l8A_\AZQV87)%WI9B)e2n(bmud@i4:DMrR*&e?$@T#pTl/@a'J[H#Ya,LOtuo-]F>K=cAKig+Eki?+bcerD0M4O^^K9_bn4?:Z=G&)#^OpMhDm_mYMTcn-LUM1jCH-Qdj7ZO@3t"#dE_0I.::a)UZio+7$G1BTP?W$EVmZ=e1PI:HKcCGPr?V5P6l"p1!YJ)=?FTXOquR7)b&g8NLTk9#2f5J4SYn7]`e+d)7K8RS-O009XUm'%][!jSMr>,9Y%;'1;a%Z/)`0\D!g&K[Sr9^Kfl^;chN(F8;();kO]@06%RJ)%\'YfoSPV(p1(*afj40Mf^_bq$^_jbL[>1),L8qYnrV)3j[of*)[M'r*ZS=%M?GX5TiBQVn`tFbR`%`)73n)W8NodPH&XOONOUkUtCH3l93L_k=J[>"?;>&'4fdO@Z!<&S**?HT1IC7Su3J(6`;h,/t=:kAJ06'@k2eIUO^M`jL0>c*J7u=TCu$L>ku`34C3(ZHE)_8J4@!0GK"o!Dc]_=^QW_,RGVK8@fa33-Q^2ZEjC#)E"`(%_K*9W[t-R9"n81iIh+>t_#(%%fU/L!b'6>F,Up97EQY%T1o/.tt.'Cnb<1^4B4Y[boK1An@Fh&rmu;cgcY%)s,>(d,b^N;AjQ3_`&:16^oGM=JM_4O1=;8?1-?&Lo\q0p3A3`mSl3p5m[u[3%qU.U>/.%#c4%c"rS@UpV15Car^i@18)PUWmTd?D4tH89-1i<+0U%AKt"M0*uR=.Jlr#6)JB+f$6e1"p#2(`UPg5:UWmmSA(2KQJK+7N9Re:eKRg,\jsB2Tlk5*Qa9qB/?d$Og[\Le6\E,/;lpH,aZN@c,NjVg*5]W]/91jf847bmu9Q*J[*jt71M\.WVHn5:.WhLhMdOq3M3PIZaDbdaBrlg]@;,Z(5q]WUSo7ho!9&kM+:lh)nXUF?iI2&_2(^Np*4_aSeg)6aEsIcpH#D"^CnZo`!X<*dPg:Db=lp3II.0Rj^)a-5LW]a^I@]uI!WYJRMtcbl]lf=eT'f&8i&1d^k]Q%UN.2GZ3>%8[L^K@]!G@S?o&c(BP7ErebZNVWaiFjL("A#8MG3A^.-Y/)O`f"_]:""J]:QqhW_:B6unA_<:H#0*S\:uNWH_lZMi9O!ghT&kos&ghlC;rhe*Up5@S6_spF`UPcP;S.BK"8JRE_>VSLK:TlFXV+0HQDtB;[G(0.T1*PTeTd]WFI!V212%gFkD?&YnQi,/_S_jjO5Y0fHE,&'-hZ`/9ipEa-Ih*]&8BAhC.+%1-f?TQrL(2I`s)IrMJqkTpa/6C3:Zkh1msJWUfnXIIG'pA&>p^ILZ*La4(_F?Q[+K[E%9jHQP#1bC_AVsD6ZiC)f68rO!81GYrNa<%j\c0];;OJUPRf-@,Rmdc:Mm/GI;0fqWZuh2KiF<-_seW;lLF7:+oJLiOdjs,IR2u5+U?[gUW1Nhcdu*8]A;[=!"fbj:Mg&O1!^(,J79=a5mR"@=/O![V$M[KGh,S^pmR"@=/ZpmW`;j3&q$/n4,I"K@E43bL#.P#dJ+F$3&qRE5PqhTo="'m8ndNQSgnV9XN:>H%:fM5$i?!Dijj!YI7>e*mVnI0J9$9kVk:VHf[ag@]GX>>1WDgNPMaI7mDfE/&':QL)Sar>0FC'.TD775IR^u+NIHMfFQX+nVD"!mS\dG<^gFf$U>oqp3HQfcF.*Zp-rZ,K(!lW/NJd#2r6@EI)=ZrY9m6"e"l>1#;j5_m6*:STerf84IOrbTG5##;\MX$f@A2(^0q8n2NOHA:1;S1bba\J5qfkchAGhO0%4dbT8SNP.N]>/[:^8[nhnMC[]0U77C]m>fUE6aRE7eP7:ECu,u1CX$ia[c%S2AMK8SAm<.c(Jm;n.g8mX2$h_SG:X2`p6:B=EtZ20IITS7=LG3;&`@d?d'd.Xi%/KW7m-ro12#PCT]\b2E2/0*=*O$-=.Jn]KDXP12aqY/XdBnQ3A_f:l4KrgCdpc,7.jhgq_Qqti!W.iDU:+E'DPQ`&u2_^$*7l3dq))=*Eo1VfpU!(k;=lNeO52l(Iu+CRCis7q_R#1H`]::b@:=g2"*Ia4.8(f+QTr;+nNSOa$EO_=I6Ub6+=K.lba0h'#s`a>GO/^PdN6%U^d#R5C*685'*'S6QqU(AU6#)*?G5J:@N?2~>endstream +endobj +7 0 obj +<< +/BitsPerComponent 8 /ColorSpace /DeviceGray /Decode [ 0 1 ] /Filter [ /ASCII85Decode /FlateDecode ] /Height 246 /Length 12272 + /Subtype /Image /Type /XObject /Width 302 +>> +stream +Gb"/,$(Mu(\XuU%3QNNjKH$(j6@]21jG4-D6b!X/#p>"R)A'gH&-S-5-O:%tN$q(Z'RbKo'bqkp!L6RniJA`5#s$YnHd'e%cIHQMIBVt;lIe2oW:&opm%FC9%t<3rlKYRRX1nGq3tmHfMF$:3mIM57B>a!,-D>G+P(pi<=2^"7sl:jf:i$L/1BW\6m*K>V'Jo2)7q+JEcBE[[bLV/`QF.[aldL]LdPc_iil:jcYi&(mFr+G:h7mgZKK7XHdT<'slNIe434gTIseXMN;^nE0D_Sc&DUEM<$(lu/i0C)>'6f86-K'DUoVP>m8,0hdg<,Xf9![DekN$lbNoqnK=E"HijVj>&D^$029ZuG+/N35)_%=t9JHU"l-lT],L)-fbK(:VB1oqnK=cu./[Zg]'uK++1X1XES^fQn4Z&@gU!C+mO!U%Kb.+cs$5QHcr5W](q-JK'u*R6n(5F>O,T)O:]:$iXY_Qbd1IA?GL*HIL7Q(lc*3kcHcagBa!Xdi6NI_(q@t6qntn/RNZg5BRtQkJN=fgqLlO/)?qD`^NW?-F<<.\T6U6E[.ZNDq?bVEboJ&fKM3F8muDcqo!sJ4:9fMD"=1][m,`3C%I4TG'f4Qs#5%=\B_#<>d\#.(Ql;]0gBN]kX2*$h-9qpc`X_YRZ4!-RDN-j=1+C@%5EuL`Fo\tc\dicNWMU\Ue=D20]1mEBY2mf:dgU#P4!ac`]%-p#E%`G1P23ZGk8F_!1UA5dsPB59q`7J]QUJhs,Rq6H7'njnR?JdXC\%nC^m[JUVZ3tskD%cBE0Y;mi.jN\d`lE:\>.-!5&J%&2H[E7Tj/fc\;XMbE+r\p#(hTi1J!Nd/BYX2$RYeC?R(JMSq77QpP!ZRgA`\u&I)U\KW=[4-mZfkDt,K/7$N&oMa3V9S'PrZO5+n'Z?F7?`'*oq.1=>%%fAjnM#jK./UBjZ0imZ8=0t/iJb"s3Y0r0?f9t.WQ1*PIh_l_WPZmP>9U0S#Ig&!q]]+#Y<4OacOn%FS^-(hDE9e24(ePS:3DnR1fdsRerm_:-`X"1K(W&hC,;h;R5NUATYA?0I=lOaI@[E0=5J"c,3Gi4Knkh2=$;G3(\.?>Zm_I1.^5LJookC[@4&1W,*hK9O4UP,DWV\:c;TlbHk9&g&[/Se8:g[8OSRdoJa2sRt+KWk3cpS1a6P$[\Ej[X,b)26",qeV63Io'6Fj26u1/IG]*[)$>u#)gl!I%$#?Z1lcImaK,6LOo@OT/L%FIoc/oKX31a1aQZPe%PK0fjL*(2^KQOpG&[Z>C;m`'-#e#T/J(]3*\*a'(>G3o]c34RBt9b6j\-LmGOncbC,h<;!acrGh9Es5OnhO>J6NmP$u\b$hcf)LUDL-8iU;?__-3t:JH.4\@[dbA9;Gn^G[kc5>7IG;8ZVKhtT:i/ssljRt/(^J'Z0+NH'B;oF]iW0&LPNJ,>5"5F\bU\kH;LEe"4UF#G&U3[GrNjLLD_#jD*j.H@7;Sbirf1e(0hgHVJ#E.Vu!jDTTg--,'=3)oKLRI>Z6]P-CGf0Ub5Ocl?b:OOPNDWEh2EfX8V^;JLBBh3qDN*=_3Xf:9bRDAcPLc6Vp]5ZMHTbLH%0oC(V/M.>O*(Z76+'`/:YS1r58A7/eX#SR5Wpe$.-\2r"D.k4C(>:inDik/cIFVM;QL*`(b8/a+[A]BjmP0*?X6,%/R"$G?_L`dOjQGIgTiDms22*cQ[;8c7ZY[1O?X7:&b$bOt*l/oF9:FeCkV`ll_KPm]'/k,-C199Do<\l[*5d7V.DpCr61mlY']Ga1S#MRKhFtImLCTD/<>l?Oe"2_ccc*X;KR/-b,LgEJVb*LiU2h1gLAnA:rYn@_lpVaLnl?EJi#Q(%Qj*m='l[nl<4q0Apd:WTMojlY^4cDl_4n`"qC.EY"!/GOS$4+IDi]%CUWXmMjf=FL#5f-J.L28cR37)k51LY$K2!1e_LpA)sTC//IPH>lScK^H>=\.jL,OCLJ%aUU!]V6*Ahugq`-aF"CdqATkI^r5p;r9*M/Agc2?cC3a0'>T)B#C+9iXBG4SsVK>SGPt6VoV2%&==/o,;/f=L4/u<=V(]9$KK5/>gChd[uMQ.:OJ=G!g&hOJ(LSI$qbh;pN*g^MOM-Fn^2h6ErV/,WYQ:3/7,(7^@-!3F"iM'&`o4eig_oR/l>fV453umVkTlg>MqCQAZ7=fOP[I!RCCkK^2f%Ton,r7f`+6?,7SgH!!uANNT]hs>\L:[ouQ5h=Ye!@qi4_:mjRA/H6E1rS]!)]`9RBA8D,>VO_VH\Zf,$UJP=h1E>Oi$>]riHt(kr2YG.i-p_n$t]Oqeq2Tp\4X^d^QSVh<+H)uDOmITPGoeE'`@I1eq+k9KV:@-8s5+8:]6AdIf;"srR\:Ce%ge"p9Ci@ak%q8Lm9F%'/A=2nM;k=U&)^JU5EU>(,bSMk.Z&n\PEne=-"gp0hgn-FI3c?4c"'uG"2uoF2B5M>?N9G>DYGOJ[^Uk'G,.C"n6g4IT0po\Pi*1b?:XNcC[<<<`R"$R'lQBU5#+9`\,@K2\/kD$=G=#I$dt164hMd?nJ?,bod/.CaL1PA$?PCq,N5c(SBt"'-1Jo`S\W=CZE,r\1!J)j^fD/Dou,#\$2u(p;e1q0?Ps_@HN-<"k*A]EejON<&MG8MoaX`X7Tr6*9Cp+j1s7dd=RfOj3N:)mG-gA]#:30E@N%.N&,l$>mFV;F_Z_moBbR\=]=lOCbsQ=%kX<$9DE@p$!aX2TH5]\HqE+,;:`5FTm@D!TpQAmj%W2h(Uc*S$h)_Hf3a$@KS`TIIV(U_j*[j29A__N8aiHq)AhS_hdH\CWc6h=;MZ8Hs2FSN=*Z.f=haLTh`a1SdIgo\L5)"]f^HhD/p"Q`l=e.sjWAGU'ILj3rZ5G!`14N/1WJPitQf42l[=kr@E3>/-l#ihA$)3V\+m.4X&%W>j(*@L4rV&Jg;!Pc[Y".Go]a-+k>(7iG3R1LZraW9D"0TeH_GP7Sf1YN+:-C&8\E'bbhAZt9%k15&phmNj=AVH<+H#EW4(%Zja4+]1MV1W?VchD.j5*AN:T+9KCE$p*$"r^IiF=8@6,m5fg!@dIIFtEJ!:cQ:*;:#a%,7V8GS=H0+BmAh0=,OE*0$^hG4E0CP'tlP>ZPNNlR$Am(,L#j9\UQOYt$;b>]k$U3t&Q^:CG"0V:!d0Mj)cc2W(m?jV^t4jSWCWaRr=*47od`^(D.+HQ\q^]>Q3Lm#]T0!39C:P.%1$f:L_l1Gs*4d3PG',`E%%qq=2a1bW@\_-/6mu7Nt@omW;,QbUSm@oC[BoL?ut1=KVom+)Iok_`.*r#3FJlbDL5RT0gus1W,VdS[E.'a0X/kW:#sZi-qh7L'SZ$(tPs?/f2$GNTC2]MI`oDTHcd*@P6ka%,%[rLc]B`>I)M4h>EkS_`oCk)DYZ1gIJJlj3KG20-@!kEU]hWod`=C6Pk-Ha'nZ,U=WME/q359#ApuC17!f?Xcr,GO]L;B6.!u.HMdtS4MGUC9SC.!R1#Bb-_t)+UZ&J*et*=(VB/$#`EQKpp/Krs0tinDmgl_OdP:%W/bW%HOp[c*7]S\JU@&A9gW-$#[DrX!hWL@!lZl=$VJrp69>/n$\ome@.JSL&UoYJtL[1VH,?oY$OG:ql!mbbQ!?hAM8/7LF@JZIjJr>32Q0T"Qr)K_.]A38ZQT-#TduI&&KC+c&Yl,;%7,V_P#piM;P1bOQ"KHnRJ%%,6m;2[*Ko?Lf%UsJXhfh>r&Pk$4C0H$4\$bmt<0h$="KU&90(4;[D\Pt(WkkJbS81YWWV&.-4N1OY,Q7YJRP+hT8W:[X/gs(2%-2ZtJelBH?8ShX\nH`1*`5lSf.UuFe4gWl\<_Z"ORPLCMgAdL>4jR_HCnNal@e4Dp)5^6:Q'1*2FP+s\-N4%r^4iqL(a8kH.e.fCeuj=RLmI'nJ.sH(ng]cU)Wpj?+tkjV]C2l>kH3\#TgY)=G4+mD_FARiAhSAJltMVPELCW]lh]U0Op8;tZ6AI&mg;@cmdDF^U6m&(FnU[J[_EdBa=h,-b%BuL^;fQl8VU,a$7j1k^XqJpS,Sb&CO+HTm6Ai!s`091qkj^f/IbjpWG4[Ho8&#dPqLRCp:RlUK85,I#^C&S\+f5*[?d$Sl/m?U(?r2jeJ-79G$.E_\n(fl<=jaA9>PDd;2_qir)l0S*p84Z;b8FjeO>Po-IS7sX1A7=P(d'7t'j:]ZX(g=_Y5ZtOe!ts'Rhi^p_Z;IlKjc-+_[_;8(l:fgLA29Q'N[".p(k)o9c*6W6*b`IJo"KrU&r@+LBN^?A[^%:f'Asun\7(QK&k61__fD5Jr:mc(-?jHM7im]W+.G;`p-.\Fj3%),Ul6s96J)UctDJ,*M$d[//2g6N5;"f9)?Y:P)()C?s36I0*mU/3^l_5aS^!$:`n-XN3eR$B4"ZK;b7YT[)_d&Q_9\@=hCReZ6Y,L;hc$4i:aW`Ku3X*,<]nC`6cCPrL_)K$/.qV^XO_c'V$rr6$N%l=E)-VKhZe^kdh<-p,]g?9:#\3QiRt_#LRKdd1dZ21"?V@?MjVS`kP$+K@H>'f#,*!7R0q_=CBdj+/0=:;&]rb3gGXahM;5-jZ\\H$Bb\_:1"_=Hi_U55XTPV1TN)FEe'eg1aOl3HF)D&r8-!omMEg%qYc*nI/:qZX5\>iej"t>Uru"]CTcTL$BZN]S_Gl0Sh8m&(&f%&76Y8',FI;:UV"r4$NBLS%:.=j2Qj>&,=g']V57[B?t7#Pkc6WDNE;(p'!](9EGHbL!mgaD\4*UYU^Y/f4:m#7_rO9paMH4/U;9REpUf6\M9lU&jQ5[XgQMXJR@pZEJs>#O["iJk4K)k,nJ^10t2TIZ&dqTC;=r5.)>02=uXEf!;8[,0$RIuY'/,!C!;N?^Ke]kb[mA518I)0YWs(kXF"-^8#a)=#$t%q):?&!T?&1N\*STN-d`%eU*EtEoc1*P%Uc*-ZIgdZ?!o"o)e.,gH+1j"]_o/:O[dF1nW/a>N*ppXtCA!0mDe(';[qR8[>OccoUqT?oj7J4q4B93@6HY)%?"A"9m:qSa16T#6=+BJZ&5O)pYj14p5A6>DR]^9\qh!'.%Epme>'>QS#;qeD>W:$hI1!jcsfYDOW['Zf1P^#im5A!d`p\->D2.4bac84GFhCH,>R)!Q7X_8ThS0U6=Q^`\p_p$,#ns(m+Y):af6H_FPZ^C^G.UhiEifWjj:\/GXS&1Nf4'66"Fh\.sR;QB0V9mDQ$%!+E+8*8s#9H%Z'4p3@(;:+3Ar7O\DUta4`CD#g#p(QO$Sj:>DMb"fmE^YqM8Wa\!>,gl4"FQ89RAjoSkp!a,HC6;%Pb:>Z@hQsXF(ePoNPgNOr%Hb'SK7EGc]rajeG=.XNPmM)CR.''?mF"3Tpk+ooiccF)9tuGHcTmW_-ma0>[!M&Q7Vd7[t`EmD)p`;!?gga8`0_'2T'F+OB!t/n1ZVqns`7@.F\&S?_#m;*8^hI,bp9u82s$&`MB)GU/QPju.p>759C!HKg9<27&Pr.+JYVj%uI/im\X&u0SeOGWlP.3-;jL_;%GlHlk&Gh%!@-[be7J!gcP.a[@=Z&;\+A=sH5!O/m::8tuSNkr(OJL+`>"oBJ^>UJ;+jD5UAm&Wc(p,h-ahEr[9gpqRU)?3Fj.KdMa`?no9V1;q6o-d=aISrNOT:l,Y3WL@_D^7es7o+T4,UEt)Ja0'YnOQ2A=*[o&*&G$=@rnAFU6Q&+^.8("/+iLYnai^mR=lNo7H%T>Tfdc0eqYB'5fFd!fY=W^/4*WUtgmd_u2*h2WH/09b)U1>8bL\rJkI1kXC1cQ]+hF7b;sj0cTg36ubW-:PVpg>-7^Bq:H0f`KCc>eVD/6I"h7qp_]2Qp\M,hI2C+_p@Z^'15oI7R7RZb)P\&Jh8ZgD)gS/?jb.,ab5W9KMTp&QcIEin*mO9Q]FM8pCqEHG.[?5XF44A7J#eIsI&9`=:[,Q2ppM,Kss!NsU60E-[ECW9mMG!r%Xc.9_i^r*GpJ+%\DPg]?2bDQNM`IM>5NpE/""6o6JIlJcGaYV5ZNd*n?(=D;s0[tfrM9.@I0f-K?#;2Um/2m]=ep:QW-Y)ZDlPQPcX;[#^?Nda-ABND'4hkODTe_INh?QAA0Y%'oM"i$bMfFEd=jDTKb@oRd="2/VP79/;'ATkUiq9[/'b%$25^"SiGA?5\^UeReo^U[kn;LjsFX@[)3AF5\[6,/6@r)`e:80X>j%^,H$n030M-IES^3BJ+U81*M4G[mTlZZ+5p*dlt0a45([h",./f^tM!f?B9E-jGtc=3nU5ULiZ>p#,Qlp/;6>'YNuh?H_*PL>?):cU`P4"7&iVlFqNk?gM!Ph@FI>0%".5YDnE7XTFg`(jGJ55CIMbR,%.qjg,MLG`81i=QC6E)LuU))^^RFR`Mj&q+a(tl3/]HkZ0EMb'<"Sks2"*m29EkJ[_Xj*'Kq\8eim/Vkq^8lrp0m@+Ie4;-Eh=P.Fe")r,GmAZp3\`0:G1L"lV\N=0,>V)I4R8Z2^DJ*QG&e&nl%s#C2Y-p(Fi^I[TA$cVG_6hk,,'s#Y9%&3E,F,%">?U!nnf!.RUK82l)A15EV4Y4+r'X;GOYl8!uRs-]-.%d`[lt/o2.%fMm/>6\71245-?f]jJa5g*nW)HQH/+':Ams;1TT&P&fn!50$rCX`^p^#^1SBRR+Z=aeYZSVCJW+gem*h\fbDO*m`1?p58WAo#$hSMum,g*\7SPVu,DZ2HQUA5\m]kr5U8a9`3Mq>l>ifBBVAi$q_r-9XhXSDf+JZhpg]Jf.;f%Wh_bP,PsZ54a#7\Y?cctF/^2Y-sY#AE1kkEXS':pGp-lXklqG98_]YHluq3MV-^OXHiI\&(S*]f4Ek;pA51IakV&l.LQ3WZH\Wni0N**'BYd8$q]c`Vb)gp:R0mVG3?oC%Z;UG9@"7;k[aHC%g%3%@q;naTGPb=U&6`SM%?-aJRR%bJ^if=2a/59Z=MInE!M'k/elH9Be69S"Q]-T_]]edp=u'LQ]=_g1OqL0m*hM]3JTHEc*)Je^]of/SbW8Kn:acC$B9FVuF\9luhu;[.6L!M@D4NRKbB&F,OomT94udI.N7D?tA2*3%N7N)HOep]ed/&581A(Bu%UHo&Jee[snm1?8TZ8q14JO1aW9L-u&ul6LVCZ/cuK.'XZTZrnYk!p-]@V@BraMTMRbA'\q1Y,%"JZu]9+d9@>m^U6"1`_dL3u`e%eC&;k-=[on`Ai$aIh$>%?A,!W-D)(r)o%/t."bD1B0Z%g:*65m(ja;+jOW2Qk)H1,bj2/:N53YnUq-X.C&3bkN_`&H=Wd2'=q8mm&UE01lf\AWb[b[1)>0?*lH'Y%o$1SUcG9o_HU^ZA'K)FKY1=QY4]'<_qY_60ib$%QVFn"WCN\oNt69dBQJ<5]j-V.*_SBh[Q88t74,c--DC\q`h\8VYXS^M'\2!*4['L8i8Y[0q")gd`?kjgC?<'AE.ar9h8cEbGGi@ZKXTXnJi$?]TGT(?Q=]5i`s1=BGgZ#!rTL`6o5CB@^!9=0uEqmT.UBu~>endstream +endobj +8 0 obj +<< +/Contents 17 0 R /MediaBox [ 0 0 595.2756 841.8898 ] /Parent 16 0 R /Resources << +/Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /XObject << +/FormXob.4fb23dae507b7b9dadde7d04fdca3636 3 0 R /FormXob.5ab935a6b4289e6524f214a227eca2c8 6 0 R +>> +>> /Rotate 0 /Trans << + +>> + /Type /Page +>> +endobj +9 0 obj +<< +/Outlines 11 0 R /PageMode /UseNone /Pages 16 0 R /Type /Catalog +>> +endobj +10 0 obj +<< +/Author () /CreationDate (D:20230917124509+05'00') /Creator (\(unspecified\)) /Keywords () /ModDate (D:20230917124509+05'00') /Producer (xhtml2pdf ) + /Subject () /Title (Certificate) /Trapped /False +>> +endobj +11 0 obj +<< +/Count 3 /First 12 0 R /Last 12 0 R /Type /Outlines +>> +endobj +12 0 obj +<< +/Count -1 /Dest [ 8 0 R /Fit ] /First 13 0 R /Last 13 0 R /Parent 11 0 R /Title (ECE Safety Training Certificate) +>> +endobj +13 0 obj +<< +/Count -2 /Dest [ 8 0 R /Fit ] /First 14 0 R /Last 15 0 R /Parent 12 0 R /Title (Completion Report) +>> +endobj +14 0 obj +<< +/Dest [ 8 0 R /Fit ] /Next 15 0 R /Parent 13 0 R /Title (Henry M. Rowan College of Engineering - Electrical and Computer Engineering Department) +>> +endobj +15 0 obj +<< +/Dest [ 8 0 R /Fit ] /Parent 13 0 R /Prev 14 0 R /Title (Authorizing Signature) +>> +endobj +16 0 obj +<< +/Count 1 /Kids [ 8 0 R ] /Type /Pages +>> +endobj +17 0 obj +<< +/Filter [ /ASCII85Decode /FlateDecode ] /Length 1230 +>> +stream +Gau1.>E>7C'Z],*;k01H8JTRsNFA\[h5n:a08[&O,.5k5N6U"K_VenYFSk7"i1!8DBB]L%`&R@,SG\n?khDoF7Y2(gU?75#cXU$h_RYm_m"(@0n[=9%c1]cGia@7'.OjnJ9cZpPpi*V5,?lkcZDM7Cr/VSSO`X85;Ai@6g'5(cGHOq8gkORLd8<]^'A"`OE3XU#D-V//m&g/86sGje@V-$Y`rZj7?m#q)$E/Jj.QK'Hn6!r2X$s*.+>8]&^ALEO3*bb\24@-UPAQ&lck+^>V)$8fos9,.[28g^trBN9aGoTZ#gI$T'gq3)pG-OZ_2p:rX]'GCne&YKe]*WSld1Ao6#-$H-E^grYMZ#NWrVlblknt>$>fk)0/d&&A#0200A;o2fA/!(Dj/+NnE[=<;lsu=:]20#>r#([?XS\t>%AJ4#!]dg$+#0Em66LF2N"Q?<:/<"dC#(\7]jfuio9-$^(+G3Y=Ot.[0^j3qQ+h))(90!N4XUWX3.b3q,*>*]M^oSE6=#UBY3GY>NH+5leU8GmnJ#BltYfU1jFIjpD4VJ/t_%0`i7#UB+p8Mb;\g;NSS?')8-ZZ[@V6$?%^dGg4PAp(qTqiL3_p,#77JaBqkX5Ad[K295_eWajNA#\?#NVV_%cq_ILDOl8KZfqE5]Z/>]Z2$Fr/,f3I\:J_#N[r0AVg,9uPq^]PIu=!e`!F\hM<*AMj`*<@9No_i2mn%5]:IsOE(G++a/bilM18+['qt00c!hO(\?)ao7Df!u/D=#)NgD-#5)TM%hZ-1>iF)~>endstream +endobj +xref +0 18 +0000000000 65535 f +0000000073 00000 n +0000000114 00000 n +0000000221 00000 n +0000031538 00000 n +0000056896 00000 n +0000057008 00000 n +0000061556 00000 n +0000074037 00000 n +0000074353 00000 n +0000074439 00000 n +0000074703 00000 n +0000074777 00000 n +0000074913 00000 n +0000075035 00000 n +0000075202 00000 n +0000075304 00000 n +0000075364 00000 n +trailer +<< +/ID +[] +% ReportLab generated PDF document -- digest (http://www.reportlab.com) + +/Info 10 0 R +/Root 9 0 R +/Size 18 +>> +startxref +76686 +%%EOF diff --git a/Winter-2023/CountiesOfBritain.png b/Winter-2023/CountiesOfBritain.png new file mode 100755 index 0000000..405e28c Binary files /dev/null and b/Winter-2023/CountiesOfBritain.png differ diff --git a/Winter-2023/Digital Earth.zip b/Winter-2023/Digital Earth.zip new file mode 100755 index 0000000..785e5f2 Binary files /dev/null and b/Winter-2023/Digital Earth.zip differ diff --git a/Winter-2023/Digital Earth/.DS_Store b/Winter-2023/Digital Earth/.DS_Store new file mode 100755 index 0000000..c19d12a Binary files /dev/null and b/Winter-2023/Digital Earth/.DS_Store differ diff --git a/Winter-2023/Digital Earth/2016 Election.pdf b/Winter-2023/Digital Earth/2016 Election.pdf new file mode 100755 index 0000000..54067b7 Binary files /dev/null and b/Winter-2023/Digital Earth/2016 Election.pdf differ diff --git a/Winter-2023/Digital Earth/2016 Trump Major Party Percent.pdf b/Winter-2023/Digital Earth/2016 Trump Major Party Percent.pdf new file mode 100755 index 0000000..5139f3d Binary files /dev/null and b/Winter-2023/Digital Earth/2016 Trump Major Party Percent.pdf differ diff --git a/Winter-2023/Digital Earth/Cape May Canal Through Time.pdf b/Winter-2023/Digital Earth/Cape May Canal Through Time.pdf new file mode 100755 index 0000000..e82a43a Binary files /dev/null and b/Winter-2023/Digital Earth/Cape May Canal Through Time.pdf differ diff --git a/Winter-2023/Digital Earth/Digital Earth Final Map Proposal.docx b/Winter-2023/Digital Earth/Digital Earth Final Map Proposal.docx new file mode 100755 index 0000000..07059ae Binary files /dev/null and b/Winter-2023/Digital Earth/Digital Earth Final Map Proposal.docx differ diff --git a/Winter-2023/Digital Earth/Digital Earth Final Map Proposal.pdf b/Winter-2023/Digital Earth/Digital Earth Final Map Proposal.pdf new file mode 100755 index 0000000..ca64106 Binary files /dev/null and b/Winter-2023/Digital Earth/Digital Earth Final Map Proposal.pdf differ diff --git a/Winter-2023/Digital Earth/EWT.cpg b/Winter-2023/Digital Earth/EWT.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/EWT.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/EWT.dbf b/Winter-2023/Digital Earth/EWT.dbf new file mode 100755 index 0000000..5d0f739 Binary files /dev/null and b/Winter-2023/Digital Earth/EWT.dbf differ diff --git a/Winter-2023/Digital Earth/EWT.prj b/Winter-2023/Digital Earth/EWT.prj new file mode 100755 index 0000000..94a3ab8 --- /dev/null +++ b/Winter-2023/Digital Earth/EWT.prj @@ -0,0 +1 @@ +PROJCS["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",492125.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-74.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Latitude_Of_Origin",38.8333333333333],UNIT["US survey foot",0.304800609601219]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/EWT.shp b/Winter-2023/Digital Earth/EWT.shp new file mode 100755 index 0000000..43bb6af Binary files /dev/null and b/Winter-2023/Digital Earth/EWT.shp differ diff --git a/Winter-2023/Digital Earth/EWT.shx b/Winter-2023/Digital Earth/EWT.shx new file mode 100755 index 0000000..8637f35 Binary files /dev/null and b/Winter-2023/Digital Earth/EWT.shx differ diff --git a/Winter-2023/Digital Earth/East Windsor Point.cpg b/Winter-2023/Digital Earth/East Windsor Point.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/East Windsor Point.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/East Windsor Point.dbf b/Winter-2023/Digital Earth/East Windsor Point.dbf new file mode 100755 index 0000000..5b1fe96 Binary files /dev/null and b/Winter-2023/Digital Earth/East Windsor Point.dbf differ diff --git a/Winter-2023/Digital Earth/East Windsor Point.prj b/Winter-2023/Digital Earth/East Windsor Point.prj new file mode 100755 index 0000000..5c6f76d --- /dev/null +++ b/Winter-2023/Digital Earth/East Windsor Point.prj @@ -0,0 +1 @@ +PROJCS["WGS_1984_Web_Mercator_Auxiliary_Sphere",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator_Auxiliary_Sphere"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],PARAMETER["Auxiliary_Sphere_Type",0.0],UNIT["Meter",1.0]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/East Windsor Point.qmd b/Winter-2023/Digital Earth/East Windsor Point.qmd new file mode 100755 index 0000000..d36c729 --- /dev/null +++ b/Winter-2023/Digital Earth/East Windsor Point.qmd @@ -0,0 +1,43 @@ + + + + + + dataset + + + + + + + + + + + + + + + + + + + 0 + 0 + + + + + false + + + + + + + + + + + + diff --git a/Winter-2023/Digital Earth/East Windsor Point.shp b/Winter-2023/Digital Earth/East Windsor Point.shp new file mode 100755 index 0000000..91f3e6c Binary files /dev/null and b/Winter-2023/Digital Earth/East Windsor Point.shp differ diff --git a/Winter-2023/Digital Earth/East Windsor Point.shx b/Winter-2023/Digital Earth/East Windsor Point.shx new file mode 100755 index 0000000..849597d Binary files /dev/null and b/Winter-2023/Digital Earth/East Windsor Point.shx differ diff --git a/Winter-2023/Digital Earth/Intro to Mapping Final Project Mini Poster.pdf b/Winter-2023/Digital Earth/Intro to Mapping Final Project Mini Poster.pdf new file mode 100755 index 0000000..18c4ac2 Binary files /dev/null and b/Winter-2023/Digital Earth/Intro to Mapping Final Project Mini Poster.pdf differ diff --git a/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.dbf b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.dbf new file mode 100755 index 0000000..f21019b Binary files /dev/null and b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.dbf differ diff --git a/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.prj b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.shp b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.shp new file mode 100755 index 0000000..a80435d Binary files /dev/null and b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.shp differ diff --git a/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.shx b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.shx new file mode 100755 index 0000000..b1f69e3 Binary files /dev/null and b/Winter-2023/Digital Earth/Joined_Election_2016_data_centroids.shx differ diff --git a/Winter-2023/Digital Earth/Map Combo for Tutorial 1.pdf b/Winter-2023/Digital Earth/Map Combo for Tutorial 1.pdf new file mode 100755 index 0000000..d41a775 Binary files /dev/null and b/Winter-2023/Digital Earth/Map Combo for Tutorial 1.pdf differ diff --git a/Winter-2023/Digital Earth/NASA_blue-marble_February2004_025deg.tif b/Winter-2023/Digital Earth/NASA_blue-marble_February2004_025deg.tif new file mode 100755 index 0000000..a56d741 Binary files /dev/null and b/Winter-2023/Digital Earth/NASA_blue-marble_February2004_025deg.tif differ diff --git a/Winter-2023/Digital Earth/NASA_blue-marble_February2004_025deg.tif.xml b/Winter-2023/Digital Earth/NASA_blue-marble_February2004_025deg.tif.xml new file mode 100755 index 0000000..546e068 --- /dev/null +++ b/Winter-2023/Digital Earth/NASA_blue-marble_February2004_025deg.tif.xml @@ -0,0 +1,2 @@ + +file://\\compass.rowan.edu\GIS\Courses\IMGIS\Labs\Global\NASA_blue-marble_February2004_025deg.tifLocal Area Network2013020711372700TRUE diff --git a/Winter-2023/Digital Earth/NJ Through Time.pdf b/Winter-2023/Digital Earth/NJ Through Time.pdf new file mode 100755 index 0000000..c13e5b2 Binary files /dev/null and b/Winter-2023/Digital Earth/NJ Through Time.pdf differ diff --git a/Winter-2023/Digital Earth/NJ Wawas.pdf b/Winter-2023/Digital Earth/NJ Wawas.pdf new file mode 100755 index 0000000..9d425a1 Binary files /dev/null and b/Winter-2023/Digital Earth/NJ Wawas.pdf differ diff --git a/Winter-2023/Digital Earth/NJ_counties.cpg b/Winter-2023/Digital Earth/NJ_counties.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/NJ_counties.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/NJ_counties.dbf b/Winter-2023/Digital Earth/NJ_counties.dbf new file mode 100755 index 0000000..51ee5d3 Binary files /dev/null and b/Winter-2023/Digital Earth/NJ_counties.dbf differ diff --git a/Winter-2023/Digital Earth/NJ_counties.prj b/Winter-2023/Digital Earth/NJ_counties.prj new file mode 100755 index 0000000..94a3ab8 --- /dev/null +++ b/Winter-2023/Digital Earth/NJ_counties.prj @@ -0,0 +1 @@ +PROJCS["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",492125.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-74.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Latitude_Of_Origin",38.8333333333333],UNIT["US survey foot",0.304800609601219]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/NJ_counties.shp b/Winter-2023/Digital Earth/NJ_counties.shp new file mode 100755 index 0000000..ccb91bf Binary files /dev/null and b/Winter-2023/Digital Earth/NJ_counties.shp differ diff --git a/Winter-2023/Digital Earth/NJ_counties.shx b/Winter-2023/Digital Earth/NJ_counties.shx new file mode 100755 index 0000000..681679f Binary files /dev/null and b/Winter-2023/Digital Earth/NJ_counties.shx differ diff --git a/Winter-2023/Digital Earth/NJ_municipalities.cpg b/Winter-2023/Digital Earth/NJ_municipalities.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/NJ_municipalities.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/NJ_municipalities.dbf b/Winter-2023/Digital Earth/NJ_municipalities.dbf new file mode 100755 index 0000000..b9e7d9a Binary files /dev/null and b/Winter-2023/Digital Earth/NJ_municipalities.dbf differ diff --git a/Winter-2023/Digital Earth/NJ_municipalities.prj b/Winter-2023/Digital Earth/NJ_municipalities.prj new file mode 100755 index 0000000..94a3ab8 --- /dev/null +++ b/Winter-2023/Digital Earth/NJ_municipalities.prj @@ -0,0 +1 @@ +PROJCS["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",492125.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-74.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Latitude_Of_Origin",38.8333333333333],UNIT["US survey foot",0.304800609601219]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/NJ_municipalities.shp b/Winter-2023/Digital Earth/NJ_municipalities.shp new file mode 100755 index 0000000..b6d5817 Binary files /dev/null and b/Winter-2023/Digital Earth/NJ_municipalities.shp differ diff --git a/Winter-2023/Digital Earth/NJ_municipalities.shx b/Winter-2023/Digital Earth/NJ_municipalities.shx new file mode 100755 index 0000000..8919f15 Binary files /dev/null and b/Winter-2023/Digital Earth/NJ_municipalities.shx differ diff --git a/Winter-2023/Digital Earth/Projection Layout Tutorial 2.pdf b/Winter-2023/Digital Earth/Projection Layout Tutorial 2.pdf new file mode 100755 index 0000000..e8fc7f1 Binary files /dev/null and b/Winter-2023/Digital Earth/Projection Layout Tutorial 2.pdf differ diff --git a/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.cpg b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.dbf b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.dbf new file mode 100755 index 0000000..b3a888e Binary files /dev/null and b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.dbf differ diff --git a/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.prj b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.prj new file mode 100755 index 0000000..5c6f76d --- /dev/null +++ b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.prj @@ -0,0 +1 @@ +PROJCS["WGS_1984_Web_Mercator_Auxiliary_Sphere",GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Mercator_Auxiliary_Sphere"],PARAMETER["False_Easting",0.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",0.0],PARAMETER["Standard_Parallel_1",0.0],PARAMETER["Auxiliary_Sphere_Type",0.0],UNIT["Meter",1.0]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.shp b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.shp new file mode 100755 index 0000000..07a7dd9 Binary files /dev/null and b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.shp differ diff --git a/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.shx b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.shx new file mode 100755 index 0000000..40cf664 Binary files /dev/null and b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.shx differ diff --git a/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.xml b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.xml new file mode 100755 index 0000000..1101205 --- /dev/null +++ b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.xml @@ -0,0 +1,436 @@ + + + + + + 20210531 + Public Solar Facilities of New Jersey, Edition 20210531 (Util_solar_public) (Web Mercator ArcGIS Online Service) + vector digital data + + + NJDEP Bureau of Energy & Sustainability + + https://www.nj.gov/dep/gis/digidownload/zips/OpenData/Util_solar_public.zip + + + + The data contained in this layer identifies all public solar installations in the State, as reported by the NJBPU and their Energy Market Managers, AEG as of 20160826. Public facilities include: Government Facilities, Public Schools, Public Colleges/Universities, and other public school facilities. + The purpose of this dataset is to identify solar PV installations at public facilities in New Jersey. + + + + + 20160826 + + + Data obtained from AEG & NJBPU on 20160826 + + + In work + As needed + + + + -75.542576 + -73.926621 + 41.230956 + 38.926452 + + + + + ISO 19115 Topic Category + utilitiesCommunication + + + None + NJDEP + BPU + Public Solar Facilities + Util_solar_public + AEG + Solar + Facilities + + + In most cases, a downloadable shapefile (.zip) version of this layer is also available. Information to download the shapefile can be found in the Distribution Section of this metadata record. This data layer is shown in the NJDEP's NJ-GeoWeb mapping application accessible through the Online Linkage: https://www.nj.gov/dep/gis/geowebsplash.htm + New Jersey Department of Environmental Protection (NJDEP) Data Distribution Agreement. The data provided herein are distributed subject to the following conditions and restrictions: NJDEP assumes no responsibility to maintain them in any manner or form and disclaims any duty or obligation to either maintain availability of or to update the data. Terms of Agreement 1. All data is provided, as is, without any representation or warranty of any kind, implied, expressed or statutory including, but not limited to, the warranties of non-infringement of third party rights, title, merchantability or fitness for a particular use, freedom from computer virus nor are any such warranties to be implied with respect to the digital data layers furnished hereunder. User is responsible for understanding the accuracy limitations of all digital data layers provided herein, as documented in the accompanying cross-reference files (see SUPPLEMENTAL INFORMATION). Any reproduction or manipulation of the above data must ensure that the coordinate reference system remains intact. 2. Digital data received from the NJDEP may not be reproduced or redistributed without all the metadata provided. 3. Any maps, publications, reports, or other documents produced as a result of this project that utilize this digital data will credit the NJDEP's Geographic Information System (GIS) as the source of the data with the following credit/disclaimer: 'This (map/publication/report) was developed using New Jersey Department of Environmental Protection Geographic Information System digital data, but this secondary product has not been verified by NJDEP and is not state-authorized or endorsed.' 4. NJDEP makes no warranty that digital data are free of Copyright or Trademark claims or other restrictions or limitations on free use or display. Making a copy of this data may be subject to the copyright of trademark laws. + + + + NJDEP Bureau of Energy & Sustainability + Ryan Gergely + + + mailing and physical +
401 East State Street
+ Trenton + NJ + 08625 +
+ (609) 292-8848 + ryan.gergely@dep.nj.gov +
+
+ Version 6.2 (Build 9200) ; Esri ArcGIS 10.3.1.4959 +
+ + Normalized data for consistency. + Some entries in the source spreadsheet from AEG/BPU were not “public facilities†(businesses, churches. etc.) and were therefore omitted from this dataset. + + + + + + 20160816 + Public Solar Facilities + spreadsheet + + + New Jersey Board of Public Utilities (NJBPU) + + https://www.bpu.state.nj.us + + + 0 + onLine + + + + 20160816 + + + publication date + + AFVFS + The U.S. Department of Energy’s Alternative Fuels Data Center (AFDC) provided all of the data found in this GIS dataset. + + + Data obtained from NJBPU & AEG on 20160826 in spreadsheet fromat. Public locations were identified and categorized as either "Government Facility", "School Public K-12", "College/University", or "Other School Facility". Addresses were geocoded and then visually checked for accuracy in order to determine coordinate values to map. Company Names and other values were normalized for quality and consistency. + 20160826 + + + + NJDEP Bureau of Energy & Sustainability + Ryan Gergely + + + mailing and physical +
401 East State Street
+ Trenton + NJ + 08625 +
+ (609) 292-8848 + ryan.gergely@dep.nj.gov +
+
+
+
+
+ + Vector + + + Entity point + 1113 + + + + + + + Util_solar_public + Public Solar Facilities + NJDEP/NJBPU/AEG + + + OBJECTID + Internal feature number. + Esri + + + + Sequential unique whole numbers that are automatically generated. + + + + + + Shape + Feature geometry. + Esri + + + + Coordinates defining the features. + + + + + + AcctNumber + Account Number from BPU Application + NJBPU/AEG + + + + Unique Account Number + + + + + + Status_Date + Date from NJBPU/AEG + NJBPU/AEG + + + + Unique date from NJBPU/AEG + + + + + + CompanyName (Alias: Customer) + Company name from solar application + NJBPU/AEG + + + + Unique company name + + + + + + System_Size + System size from solar application + NJBPU/AEG + + + + Unique system size + + + + + + CustomerType + Customer Type of public facilities from categories + NJDEP + + + + + + + College/University + + + College/Universities + + + NJDEP + + + + + + + + + Government Facility + + + Government Facilities (Municipal/State, Fire/Police, etc.) + + + NJDEP + + + + + + + + + Other School Facility + + + Other School Facilities (BoE Buildings, etc.) + + + NJDEP + + + + + + + + + School Public K-12 + + + Public Schools (Elementary, Middle, High Schools) + + + NJDEP + + + + + + + + + InstallationAddress + Installation address from solar application + NJBPU/AEG + + + + Unique installation address + + + + + + InstallationCity + Installation city from solar application + NJBPU/AEG + + + + Unique installation city + + + + + + InstallationZip + Installation zip from solar application + NJBPU/AEG + + + + Unique installation zip code + + + + + + InstallerName + Installer name from solar application + NJBPU/AEG + + + + Unique installer name + + + + + + Lat + Latitude coordinates + NJDEP + + + + Geocoded coordinates + + + + + + Long + Longitude coordinates + NJDEP + + + + Geocoded coordinates + + + + + + + + + + + NJDEP/DOIT/BGIS + + + mailing and physical +
PO Box 420
+
401 East State Street
+ Trenton + NJ + 08625 +
+ (609) 777-0672 + (609) 292-7900 + gisnet@dep.nj.gov +
+
+ Downloadable Data + See "Use Constraints" + + + + DEP distributes ESRI .SHP and/or GDB. Some data may be NJ GeoWeb "display only" layers. + 9x/10x + NJDEP NJ GeoWeb online mapping application + zip + + + + + + https://www.nj.gov/dep/gis + + + + + + + https://www.nj.gov/dep/gis/geowebsplash.htm + + + + + + none + none + +
+ + 20210531 + + + + NJDEP Bureau of Energy & Sustainability + Ryan Gergely + + Research Scientist + + physical +
401 E State St
+ Trenton + NJ + 08625 +
+ 609-292-8848 + ryan.gergely@dep.nj.gov +
+
+ FGDC Content Standard for Digital Geospatial Metadata + FGDC-STD-001-1998 + local time +
+
diff --git a/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.zip b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.zip new file mode 100755 index 0000000..ffae5d7 Binary files /dev/null and b/Winter-2023/Digital Earth/Public_Solar_Facilities_of_New_Jersey.zip differ diff --git a/Winter-2023/Digital Earth/Rowan.dbf b/Winter-2023/Digital Earth/Rowan.dbf new file mode 100755 index 0000000..07bd7d6 Binary files /dev/null and b/Winter-2023/Digital Earth/Rowan.dbf differ diff --git a/Winter-2023/Digital Earth/Rowan.prj b/Winter-2023/Digital Earth/Rowan.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/Rowan.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/Rowan.sbn b/Winter-2023/Digital Earth/Rowan.sbn new file mode 100755 index 0000000..b627fe2 Binary files /dev/null and b/Winter-2023/Digital Earth/Rowan.sbn differ diff --git a/Winter-2023/Digital Earth/Rowan.sbx b/Winter-2023/Digital Earth/Rowan.sbx new file mode 100755 index 0000000..95b5393 Binary files /dev/null and b/Winter-2023/Digital Earth/Rowan.sbx differ diff --git a/Winter-2023/Digital Earth/Rowan.shp b/Winter-2023/Digital Earth/Rowan.shp new file mode 100755 index 0000000..3f52805 Binary files /dev/null and b/Winter-2023/Digital Earth/Rowan.shp differ diff --git a/Winter-2023/Digital Earth/Rowan.shp.xml b/Winter-2023/Digital Earth/Rowan.shp.xml new file mode 100755 index 0000000..5d2f1a8 --- /dev/null +++ b/Winter-2023/Digital Earth/Rowan.shp.xml @@ -0,0 +1,2482 @@ + + + + + + TechniGraphics, Inc. + 20071130 + HSIP New Jersey Colleges and Universities point locations, NAD83 NJ State Plane feet + 4th Quarter + vector digital data + https://njgin.state.nj.us/oit/gis/download/hsip_colleges.zipNJ_College_Univ_NAD83njspTrenton, NJNJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)https://njgin.state.nj.us/NJ_NJGINExplorer/DataDownloads.jsp + + + +Colleges and Universities in New Jersey + +The Colleges and Universities dataset is composed of any type of Post Secondary Education such as: colleges, universities, technical schools, trade schools, business schools, satellite (branch) campuses, etc. that grant First Professional, Associate, Bachelors, Masters, or Doctoral degrees. + +Secondary education facilities, Administrative offices, or Post Secondary Education facilities that are non degree granting schools are intended to be excluded from this dataset, but a few may be included. + +All data is non license restricted data that has been added from TGS research. + +The text fields in this dataset have been set to all upper case to facilitate consistent database engine search results. + +All diacritics (e.g. the German umlaut or the Spanish tilde) have been replaced with their closest equivalent English character to facilitate use with database systems that may not support diacritics. + +The currentness of this dataset is indicated by the [CONTDATE] attribute. Based upon this attribute, the oldest record dates from 2007/07/03 and the newest record dates from 2007/10/12. + + +Homeland Security + +Use Cases: Use cases help define and clarify requirements, and describe how the data may be used. + +1) Identification of populations that may need to be evacuated in the event of an emergency. + +2) Notification of groups of people who may be at risk from a contagious disease outbreak. + + en + + + + 20070703 + 20071012 + + + ground condition + + + In work + Unknown + + + + -75.488928 + -73.997791 + 41.083084 + 39.438172 + + 219498.722492630565.963577221738.458568819465.261819 + + + LCSH - Library of Congress subject headings (Washington, DC: LC, Cataloging Distribution Service) + Universities and colleges + Community colleges + Junior colleges + Cooking schools + Business schools + Medical colleges + Trade schools + Law schools + Dental schools + Military education + Sports camps + Conservatories of music + Art Study and teaching + Massage therapy + Aviation technician training course. + Theological seminaries + Executives Training of + Bible colleges + Technical institutes + Church and college + Health occupations schools + Islamic universities and colleges + Private universities and colleges + Public universities and colleges + Universities and colleges Religion + + + ISO 19115 Topic Category + structure + + + LCSH - Library of Congress subject headings (Washington, DC: LC, Cataloging Distribution Service) http://authorities.loc.gov/ + New Jersey + + + None + None + + + + Mike Thompson + TechniGraphics, Inc. + + Director of Geospatial Datasets + + Mailing and Physical Address +
2000 Noble Drive
+ Wooster + OH + 44691 + USA +
+ 330-263-6222 + 330-263-6294 + mthompson@tgstech.com + 8am - 5pm, Monday - Friday, Eastern Time +
+
+ + DOD + Unclassified + Unclassified + + Microsoft Windows XP Version 5.1 (Build 2600) Service Pack 3; ESRI ArcCatalog 9.2.4.1420 + Shapefilehsip_colleges_tn.jpgLow resolution overview map of college and university locations, NJJPEG
+ + + +For entities that were contacted, the name, address, city, state, and five (5) digit zip codes were verified to be correct as of the date indicated by the [CONTDATE] attribute. The existence of the entity was also verified, as well as whether or not it met the criteria for inclusion in this dataset. Four (4) digit zip code extensions were derived from USPS (United States Postal Service) data and were not verified. + +ID Check: The [ID] attribute is not blank and all IDs are unique. + +Coordinate Check: Coordinates are not null or zero and the x and y fields match the shape. + +Basic Address Check: Physical addresses were verified to be non blank and to not be a "PO Box", "General Delivery", "Highway Contract", or "Rural Route" address. + +Highway Address without Type Check: Physical addresses containing the word "Highway" or "Route" were verified to also contain a type designator such as "State", "US", or "County", if one actually exists for the highway or route. These type designators are often missing from addresses, leading to confusion if more than one "Highway" of the given number exists in an area. + +Basic Name Check: Entity name is not blank, is not the same as entity city, and has a minimum of 2 characters. Name does not contain punctuation characters that can interfere with database operations, such as " (quote) and * (asterisk). + +Basic Phone Check: All phone numbers (including the area code) are ten (10) numeric digits. Alphabetic characters have been converted to the corresponding numeric digit. + +City Check: Entity city is not blank and is found in the named places file within 25 miles. + +County FIPS to State Compare Check: The county represented by the tabular FIPS Code attribute is actually in the state specified by the state attribute. + +County Name to State Compare Check: The county represented by the tabular county name attribute is actually in the state specified by the state attribute. + +Phone Number Format Check: Phone numbers (including area code) were verified to be formatted as nnn-nnn-nnnn. + +NPA_NXX Check: Area codes (sometimes called "Number Planning Areas", or NPA's) and central office codes (sometimes known as exchanges, or NXX's) were validated against data from the North American Number Planning Administration (NANPA). In some cases, NPA-NXX combinations did not show up in the NANPA data but were verified to work. + +Area Code Distance Check: Area code (NPA) is valid and is within its area code boundary. + +Zip Code Check: The zip code is five (5) or nine (9) numeric digits, is listed in the postal database, is in the same state as indicated by the entity's [STATE] attribute, and is not a PO Box only zip code. + +Zip City Check: The entity's zip code and its city were verified to match according to the USPS Address Information System (AIS). + +Collocation Check: Entities with different addresses must not share the exact same geospatial location. + +Geographic Spell Check: Words that appear in the entity name were checked against a standard English word list (and Spanish word list for entities in Puerto Rico). Words not appearing in these standard word lists were then checked against names appearing in the Geographic Names Information System (GNIS) of geographic features that are located within 25 miles of the entity. Proper names were manually reviewed for correct spelling. + + + See "Attribute_Accuracy_Report". Many of the checks described in that section check for both attribute accuracy and logical consistency. + +This dataset consists of Colleges and Universities. + +The Colleges and Universities dataset is composed of any type of Post Secondary Education such as: colleges, universities, technical schools, trade schools, business schools, satellite (branch) campuses, etc. that grant First Professional, Associate, Bachelors, Masters, or Doctoral degrees. + +Secondary education facilities, Administrative offices, or Post Secondary Education facilities that are non degree granting schools are intended to be excluded from this dataset, but a few may be included. + + + + The geographic location of contacted entities was verified to be correct relative to the street data and version indicated by the [ST_VENDOR] and [ST_VERSION] attributes. The horizontal accuracy is indicated by the [GEOPREC] attribute. A value of "BLOCKFACE" indicates the entity was geocoded on the correct block and correct side of the street. A value of "ONENTITY" indicates that the location is on the entity's facility as determined by USGS DOQQ imagery and that it is on the correct block and correct side of the street. + + + + + + + TechniGraphics, Inc. + 20070822 + Colleges and Universities 2007 + 3rd Quarter + vector digital data + + + CD-ROM + + + + 20070822 + + + ground conditions + + Coll_Univ_2007 + The basic attribution (name, address, city, state, zip code, and telephone number) came from this dataset, unless the entity was updated by TGS during this processing. For entities that were previously manually processed by TGS, their geospatial information was used as a reference when automatically determining their location relative to the latest streets. + + + + + State Partners and TGS research + 2007 + Colleges and Universities + Unspecified + vector digital data + + + Online + + + + 2007 + + + publication date + + NJ_Coll_Univ + This was used as a source for Colleges and Universities. + + + + + NAVTEQ + 2006 + NAVSTREETS + 2006.4 + vector digital data + + + CD-ROM + + + + 2006 + + + publication date + + NAVTEQ_Streets_2006_Q4 + NAVTEQ streets were used as a reference in the automatic geocoding and manual geolocating of entities during processing. + + + +TGS Processing +> +> +1) Verified name, physical address, and phone numbers by contacting the entity or an authority responsible for the entity. +> +> +2) Determined or verified the geospatial location for the entity through contact with entity or authority responsible for entity. Entities were asked to describe their geospatial location relative to land marks visible in ortho imagery. +> +> +3) All text fields were set to all upper case. +> +> +4) Leading and trailing spaces were trimmed from all text fields. +> +> +5) Non printable and diacritic characters were removed from all text fields. + + Coll_Univ_2007 + +NJ_Coll_Univ + + NAVTEQ_Streets_2006_Q4 + 20071130 + NJ_Coll_Univ_2007 + + + + Nicole Hackworth + TechniGraphics, Inc. + + Project Manager + + Mailing and Physical Address +
2000 Noble Drive
+ Wooster + Ohio + 44691 + USA +
+ 330-263-6222 + nhackworth@tgstech.com + 8am - 5pm, Monday - Friday, Eastern Time +
+
+
+ Data set reprojected to NAD83 NJ State Plane feet. Edits made to metadata.20100126ArcCatalog 9.2 sp4\Data\HSIP\Colleges\2007_11_30_NJ_COLL_UNIV_njsp.shp201001262007_11_30_NJ_COLL_UNIV_njsp.shpNJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)Edith KonopkaGIS Specialistmailing address
PO Box 212
TrentonNJ08625-0212USA
609.777.3774edith.konopka@oit.state.nj.us9-4Email is preferred.
+
+ + Vector + SimpleFALSE1TRUEFALSE + + + + North American Datum of 1983 + Geodetic Reference System 80 + 6378137.000000 + 298.257222 + + GCS_North_American_1983NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet + + + + + Colleges and Universities in New Jersey + The Colleges and Universities dataset is composed of any type of Post Secondary Education such as: colleges, universities, technical schools, trade schools, business schools, satellite (branch) campuses, etc. that grant First Professional, Associate, Bachelors, Masters, or Doctoral degrees. + TGS + Feature Class1 + + FID + Internal feature number. + ESRI + + Sequential unique whole numbers that are automatically generated. + + FIDOID400 + ShapeShapeGeometry000Feature geometry.ESRICoordinates defining the features. + SHAPE + Feature geometry. + ESRI + + Coordinates defining the features. + + String10ID00 + + ID + Unique identifier for feature. + TGS + + Text + + String20METLNKID00 + + METLNKID + Link to Metadata. + TGS + + Text + + String10FEATTYPE00 + + FEATTYPE + Geometry type of feature. + TGS + + + POINT + Feature is represented by point. + TGS + + + String30SECCLASS00 + + SECCLASS + Security classification of feature. + TGS + + + UNCLASSIFIED + Entity is unclassified. + TGS + + + + + UNCLASSIFIED - TREAT AS FOUO + Entity is unclassified and should be treated as "For Official Use Only". + TGS + + + String254NAME00 + + NAME + Name of entity. + TGS + + Text + + String3AREA00 + + AREA + Three (3) digit telephone area code for entity. + TGS + + Valid area codes without punctuation. Only numeric digits are used. A list of valid area codes can be found at http://www.nanpa.com + + String8PHONE00 + + PHONE + Seven (7) digit telephone number for entity formatted as nnn-nnnn. All alphabetic characters have been translated to the corresponding numeric digit. + TGS + + Phone numbers formatted as nnn-nnnn. Only numeric digits are used. The first three (3) digits (the exchange) must form a valid combination with the area code. A list of valid area code and exchange combinations can be obtained from http://www.nanpa.com + + String80ADDRESS00 + + ADDRESS + Physical street address for entity. "PO Box", "General Delivery", "Rural Route", and "Highway Contract" addresses are not considered physical addresses and should not appear in this attribute. Some areas do not have regular city style addressing so entities in those areas may not have a street number. In such cases, the name of the road they are located on is listed in this attribute. Some rural areas may not have named roads. In these rare cases, this attribute will be blank. + TGS + + Text + + String80ADDRESS200 + + ADDRESS2 + Location within physical address, e.g., floor, suite, building. + TGS + + Text + + String120CITY00 + + CITY + +The name of the city associated with the entity's physical address. For physical addresses that the U.S. Postal Service (USPS) delivers to, this should be a "city" acceptable to the USPS as defined in their Address Information System (AIS). Sometimes the USPS does not deliver mail to a physical address but recognizes the location (i.e., they list the location as "undeliverable"). The cities associated with these locations are acceptable. In some cases, the USPS does not recognize individual physical addresses in a city, rather, they list the city as having "General Delivery". In these cases, the city and associated zip code are acceptable (the entity's [ADDRESS] attribute will contain a street address, not "general delivery"). The entity may not actually be located within the city limits of the "city" specified in its city field. Instead, it may actually be located within the city limits of another city. In some cases, the "city" that appears in this attribute may not even be a city in an administrative sense, but it is still an acceptable "city" to the USPS. An example of this is "Notre Dame, IN". There is no city in Indiana called "Notre Dame", but this is considered an acceptable city by the USPS for any delivery going to the University of Notre Dame which is actually located in the city of South Bend. "Notre Dame", like most USPS cities, is an easily recognized place, and it gives the user of the data a good general idea of where the entity is located (if the entity is located in a small municipality, the USPS "city" may be more recognizable than the name of the municipality), and it would be part of the address one would use to send a shipment to the entity's location. Using the USPS acceptable "city" also allows someone to do a logical consistency check between the zip code and the city by using the USPS AIS. + +Sometimes an entity may report a city that is not accepted by the USPS, and although TGS has tried to replace those cities with an acceptable alternative, some of them may remain in this dataset. + + TGS + + Text + + String2STATE00 + + STATE + Two (2) character abbreviation for state associated with the entity's physical address. In almost all cases this is the same as the state where the entity has been depicted geospatially. However, there are cases, particularly where an entity is part of a larger facility that cuts across state lines, where the entity's location may be depicted in a state other than the one indicated in this attribute. Also, the state in which an entity appears to be located may change depending on the scale of the state boundary theme being used. + TGS + + + Official USPS Abbreviations - State Abbreviations + United States Postal Service http://www.usps.com/ncsc/lookups/usps_abbreviations.html + + + String5ZIP00 + + ZIP + Five (5) digit USPS zip code for entity's physical location. + TGS + + + USPS Address Information System - Domain is further restricted by only allowing physical (non PO Box) zip codes. + United States Postal Service + + + String4ZIPP400 + + ZIPP4 + Four (4) digit USPS zip code extension. This attribute was automatically assigned using the entity's physical address and USPS address information system (AIS) data. + TGS + + + USPS Address Information System (AIS) - ZIP9 + United States Postal Service + + + String50COUNTY00 + + COUNTY + County name where entity is located. + TGS + + + Geographic Names Information System (GNIS) + US Department of the Interior - US Geologic Survey + + + String5FIPS00 + + FIPS + Five (5) digit FIPS (Federal Information Processing Standards) Code for the County where entity is located. The first two (2) digits represent the state and the last three (3) digits identify the county within the state. + TGS + + + Federal Information Processing Standards Publications - Counties and Equivalent Entities of the U.S., Its Possessions, and Associated Areas + National Institute of Standards (NIST) http://www.itl.nist.gov/fipspubs/co-codes/states.txt + + + String254DIRECTIONS00 + + DIRECTIONS + Directions to entity location, or description of the entity's location. + TGS + + Text + + String40EMERGTITLE00 + + EMERGTITLE + Title of person or name of office for emergency point of contact. + TGS + + Text + + String12EMERGPHONE00 + + EMERGPHONE + Ten (10) digit telephone number of emergency point of contact formatted as nnn-nnn-nnnn. All alphabetic characters have been translated to the corresponding numeric digit. + TGS + + Phone numbers, including area code, formatted as nnn-nnn-nnnn. A list of valid area code and exchange combinations can be found at http://www.nanpa.com + + String10EMERGEXT00 + + EMERGEXT + Telephone extension for emergency point of contact. + TGS + + Text + + Date8CONTDATE00 + + CONTDATE + Date entity was contacted by TGS. + TGS + + Date + + String10CONTHOW00 + + CONTHOW + Method by which entity was contacted. + TGS + + + PHONE + Entity was contacted by phone. + TGS + + + + + FAX + Entity was contacted by fax. + TGS + + + + + MAIL + Entity was contacted by mail. + TGS + + + + + EMAIL + Entity was contacted by email. + TGS + + + + + WEB + Entity information was gathered and/or verified by official entity website as a last resort. + TGS + + + + + ALT REF + Geospatial reference information obtained from local authorities, e.g., downloadable parcel maps, 911 streets, and shapefiles. + TGS + + + Date8GEODATE00 + + GEODATE + Date entity was geocoded by TGS. + TGS + + Date + + String10GEOHOW00 + + GEOHOW + Method by which entity was geocoded. + TGS + + + AUTO + Entity was automatically geocoded. + TGS + + + + + MANUAL + Entity was manually geocoded. + TGS + + + + + ADJUSTED + Entity was shifted by TGS to an updated set of NAVTEQ streets. This only applies if the entity was manually geocoded by TGS to a previous version of NAVTEQ streets. + TGS + + + + + PROVIDED + Entity was geocoded using coordinates provided by the state. + TGS + + + String6NAICSCODE00 + + NAICSCODE + NAICS (North American Industry Classification System) Code for entity. NAICS Codes (and NAICS Descriptions) have been assigned based upon the entity's primary function, regardless of if that is the function that qualified it to be included in this dataset. + TGS + + + North American Industry Classification System (NAICS 2002) + US Census Bureau - http://www.census.gov/epcd/www/naics.html + + + String120NAICSDESCR00 + + NAICSDESCR + +NAICS (North American Industry Classification System) Description for entity. The "Index Entries" that appear on the NAICS webpage (http://www.census.gov/epcd/www/naics.html) are being used to populate this attribute as opposed to the "NAICS Title". While there is a one to one correspondence between NAICS Codes and "NAICS Titles", there is a one to many relationship between NAICS Codes and the "Index Entries". By using the "Index Entries", we have placed the entities that make up this layer into more specific categories; however, the user of this data should be aware that this was not the intended purpose of these "Index Entries". The "Index Entries" were intended as a way to search the NAICS database and as a way of enumerating ways in which establishments falling under the given NAICS Code may be named. Thus, there are often two or more "Index Entries" that are synonyms, for example: "Prisons" and "Penitentiaries". In cases like this, we have standardized on one "Index Entry". + +NAICS Descriptions (and NAICS Codes) have been assigned based upon the entity's primary function, regardless of the function that qualified it to be included in this dataset. + + TGS + + + ACADEMIES, COLLEGE OR UNIVERSITY + ACADEMIES, COLLEGE OR UNIVERSITY - [NAICS Code 611310]: Entities that are institutions of higher learning based to educate and grant degrees. + TGS + + + + + AVIATION SCHOOLS + AVIATION SCHOOLS - [NAICS Code 611310]: Entities that are institutions of higher learning based to educate and grant degrees on aviation. + TGS + + + + + BUSINESS COLLEGES OR SCHOOLS OFFERING BACCALAUREATE OR GRADUATE DEGREES + BUSINESS COLLEGES OR SCHOOLS OFFERING BACCALAUREATE OR GRADUATE DEGREES - [NAICS Code 611310]: Entities that are institutions of higher learning based to educate and grant baccalaureate or graduate degrees on business. + TGS + + + + + COLLEGES (EXCEPT JUNIOR COLLEGES) + COLLEGES (EXCEPT JUNIOR COLLEGES)- [NAICS Code 611310]: Entities that are institutions of higher learning in the liberal arts and/or sciences based to educate and grant bachelor degrees. + TGS + + + + + COMMUNITY COLLEGES + COMMUNITY COLLEGES - [NAICS Code 611210]: Entities that are a nonresidential institution of higher learning based to educate and grant degrees below the baccalaureate level, and are often funded by the government. + TGS + + + + + COMPUTER TRAINING (EXCEPT REPAIR) + COMPUTER TRAINING (EXCEPT REPAIR) - [NAICS Code 611420]: Entities that are institutions of higher learning based to educate and grant degrees on computers such as Business Information Systems, Networking & Technical Management. + TGS + + + + + COURT REPORTING SCHOOLS + COURT REPORTING SCHOOLS - [NAICS Code 611410]: Entities that are institutions of higher learning based to educate and grant degrees on court reporting. + TGS + + + + + CULINARY ARTS SCHOOLS + CULINARY ARTS SCHOOLS - [NAICS Code 611519]: Entities that are institutions of higher learning based to educate and grant degrees on culinary arts. + TGS + + + + + FINE ARTS SCHOOLS (EXCEPT ACADEMIC) + FINE ARTS SCHOOLS (EXCEPT ACADEMIC) - [NAICS Code 611610]: Entities that are institutions of higher learning based to educate and grant degrees on fine arts. + TGS + + + + + GOLF INSTRUCTION, CAMPS, OR SCHOOLS + GOLF INSTRUCTION, CAMPS, OR SCHOOLS - [NAICS Code 611620]: Entities that are institutions of higher learning based to educate and grant degrees on athletic activities. + TGS + + + + + HOSPITALITY MANAGEMENT SCHOOLS OFFERING BACCALAUREATE OR GRADUATE DEGREES + HOSPITALITY MANAGEMENT SCHOOLS OFFERING BACCALAUREATE OR GRADUATE DEGREES - [NAICS Code 611310]: Entities that are institutions of higher learning based to educate and grant baccalaureate or graduate degrees on hospitality management. + TGS + + + + + JUNIOR COLLEGES + JUNIOR COLLEGES - [NAICS Code 611210]: Entities that are institutions of higher learning based to educate and granting a certificate of title instead of a degree for first two years of a four-year undergraduate course. + TGS + + + + + LAW SCHOOLS + LAW SCHOOLS - [NAICS Code 611310]: Entities that are institutions of higher learning based to educate and grant degrees on law. + TGS + + + + + MANAGEMENT DEVELOPMENT TRAINING + MANAGEMENT DEVELOPMENT TRAINING - [NAICS Code 611430]: Entities that are institutions of higher learning based to educate and grant job-specific certification on management development. + TGS + + + + + MASSAGE THERAPIST INSTRUCTION + MASSAGE THERAPIST INSTRUCTION - [NAICS Code 611519]: Entities that are institutions of higher learning based to educate and grant job-specific certification in massage therapy. + TGS + + + + + MECHANIC'S SCHOOLS (EXCEPT APPRENTICESHIP) + MECHANIC'S SCHOOLS (EXCEPT APPRENTICESHIP) - [NAICS Code 611519]: Entities that are institutions of higher learning based to educate and grant job-specific certification on mechanics such as making, using, or repairing machines, vehicles, and tools. + TGS + + + + + MEDICAL SCHOOLS + MEDICAL SCHOOLS - [NAICS Code 611310]: Entities that are institutions of higher learning based to educate and grant medical degrees. + TGS + + + + + MILITARY ACADEMIES, COLLEGE LEVEL + MILITARY ACADEMIES, COLLEGE LEVEL - [NAICS Code 611310]: Entities that are institutions of higher learning based to educate and train men and women for military careers. + TGS + + + + + MUSIC SCHOOLS (EXCEPT ACADEMIC) + MUSIC SCHOOLS (EXCEPT ACADEMIC) - [NAICS Code 611610]: Entities that are institutions of higher learning based to educate specialize and study music. + TGS + + + + + PHOTOGRAPHY SCHOOLS, ART + PHOTOGRAPHY SCHOOLS, ART - [NAICS Code 611610]: Entities that are institutions of higher learning based to educate and offering instruction of taking and printing photographs or making movies. + TGS + + + + + PROFESSIONAL SCHOOLS (E.G., BUSINESS ADMINISTRATION, DENTAL, LAW, MEDICAL) + PROFESSIONAL SCHOOLS (E.G., BUSINESS ADMINISTRATION, DENTAL, LAW, MEDICAL) - [NAICS Code 611310]: Entities that are institutions of higher learning based to offer courses and seminars for management and professional development. + TGS + + + + + TECHNICAL AND TRADE SCHOOLS + TECHNICAL AND TRADE SCHOOLS - [NAICS Code 61151]: Entities that are institutions offering job or career vocational or technical courses of higher learning based to educate and grant job-specific certification. + TGS + + + + + THEOLOGICAL SEMINARIES OFFERING BACCALAUREATE OR GRADUATE DEGREES + THEOLOGICAL SEMINARIES OFFERING BACCALAUREATE OR GRADUATE DEGREES - [NAICS Code 611310]: Entities that are institutions of higher learning relating to theology or to specialized religious study based to educate and grant baccalaureate or graduate degrees. + TGS + + + + + UNIVERSITIES + UNIVERSITIES - [NAICS Code 611310]: Entities that are institutions of the highest level of education including a graduate school and/or professional schools that awards undergraduate bachelor, master, and/or doctorate degrees. + TGS + + + String10GEOLINKID00 + + GEOLINKID + Link ID for the street segment to which the entity was geocoded. Refer to the [ST_VENDOR] and [ST_VERSION] attributes for the street vendor and version that was used to geocode the entity. + TGS + + Text + + Double19X187 + + X + Longitude in WGS 84 Decimal Degrees. + TGS + + + -180 + 180 + WGS 84 Decimal Degrees + + + Double19Y187 + + Y + Latitude in WGS 84 Decimal Degrees. + TGS + + + -90 + 90 + WGS 84 Decimal Degrees + + + String10ST_VENDOR00 + + ST_VENDOR + Indicates name of vendor providing original street data used for geocoding. + TGS + + + NAVTEQ + NAVTEQ streets were used for geocoding. + TGS + + + + + TIGER + Tiger streets were used for geocoding. + TGS + + + + + TGS + TGS drew in a new street segment that does not exist in the file supplied by NAVTEQ. + TGS + + + + + <BLANK> + Entity was geocoded using coordinates provided by the state; therefore, the street vendor is unknown. + TGS + + + String10ST_VERSION00 + + ST_VERSION + Indicates the year and quarter of streets used for geocoding. + TGS + + + 2006Q4 + 2006Q4 NAVTEQ Street Data used for geocoding. + TGS + + + + + 2006FE + 2006fe version of TIGER/Line streets was used for geocoding in areas where NAVTEQ does not have coverage. + TGS + + + + + <BLANK> + Entity was geocoded using coordinates provided by the state; therefore, the street version is unknown. + TGS + + + String32GEOPREC00 + + GEOPREC + Geocoding precision. + TGS + + + BLOCKFACE + Entity is geocoded to correct block and correct side of street per street data indicated by [ST_VENDOR] and [ST_VERSION]. + TGS + + + + + ONENTITY + Entity is geocoded on entity rooftop per aerial imagery (in most cases USGS DOQQs). + TGS + + + + + <BLANK> + Entity was geocoded using coordinates provided by the state; therefore, geocoding precision is unknown. + TGS + + + String3PHONELOC00 + + PHONELOC + Indicates whether the phone number in the phone field rings to the actual location of the entity. + TGS + + + YES + Phone number rings to the actual entity location. + TGS + + + + + NO + Phone number does not ring to the actual entity location. It might ring to an administrative office or central location. + TGS + + + + + <BLANK> + Unknown - It is not known if the entity's phone number rings to the entity's location. + TGS + + + String3QC_QA00 + + QC_QA + Organization that performed Quality Control/Quality Assurance on the record. + TGS + + + TGS + TGS has performed Quality Control/Quality Assurance on the entity record after 01/01/2005. + TGS + + + + + <BLANK> + The record is not TGS added or has not had Quality Control/Quality Assurance performed by TGS, or Quality Control/Quality Assurance was performed prior to 01/01/2005. + TGS + + + String254DEGREE00 + + DEGREE + +Highest level of degree offered by the institution. + +The values for this attribution have not been verified by TGS. + + TGS + + + ASSOCIATE'S DEGREE + Indicates the facility highest level of degree offered is an Associate's Degree. + TGS + + + + + AT LEAST 2, BUT LESS THAN 4 ACADEMIC YRS + Indicates the facility highest level of degree offered is at least 2, but less than 4 academic yrs. + TGS + + + + + AWARD OF LESS THAN ONE ACADEMIC YEAR + Indicates the facility highest level of degree offered is an award of less than one academic year. + TGS + + + + + BACHELOR'S DEGREE + Indicates the facility highest level of degree offered is a Bachelor's Degree. + TGS + + + + + DOCTOR'S DEGREE + Indicates the facility highest level of degree offered is a Doctor's Degree. + TGS + + + + + MASTER'S DEGREE + Indicates the facility highest level of degree offered is a Master's Degree. + TGS + + + + + NOT APPLICABLE, FIRST-PROFESSIONAL ONLY + Indicates the facility highest level of degree offered is not applicable, First-Professional Only. + TGS + + + + + POST-MASTER'S CERTIFICATE + Indicates the facility highest level of degree offered is a Post-Master's Certificate. + TGS + + + + + POST BACCALAUREATE CERTIFICATE + Indicates the facility highest level of degree offered is a Post baccalaureate Certificate. + TGS + + + + + <BLANK> + Unknown or not provided. + TGS + + + String6ENROLL00 + + ENROLL + +Indicates the total enrollment for the facility. + +The values for this attribution have not been verified by TGS. + + TGS + + Number + + + + + + 20071130 + + + + Mike Thompson + TechniGraphics, Inc. + + Director of Geospatial Datasets + + Mailing and Physical Address +
2000 Noble Drive
+ Wooster + OH + 44691 + USA +
+ 330-263-6222 + 330-263-6294 + mthompson@tgstech.com + 8am - 5pm, Monday - Friday, Eastern Time +
+
+ FGDC Content Standards for Digital Geospatial Metadata + FGDC-STD-001-1998 + enlocal time
+ 2013013021154500FALSE201909121241530020190912124153001.0Rowan002-75.114586-75.11458639.70739239.70739210.000file://\\rowanads.rowan.edu\common\Geography\Courses\IMGIS\Global\Rowan.shpLocal Area NetworkGeographicGCS_WGS_1984Angular Unit: Degree (0.017453)<GeographicCoordinateSystem xsi:type='typens:GeographicCoordinateSystem' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:typens='http://www.esri.com/schemas/ArcGIS/10.7'><WKT>GEOGCS[&quot;GCS_WGS_1984&quot;,DATUM[&quot;D_WGS_1984&quot;,SPHEROID[&quot;WGS_1984&quot;,6378137.0,298.257223563]],PRIMEM[&quot;Greenwich&quot;,0.0],UNIT[&quot;Degree&quot;,0.0174532925199433],AUTHORITY[&quot;EPSG&quot;,4326]]</WKT><XOrigin>-400</XOrigin><YOrigin>-400</YOrigin><XYScale>11258999068426.238</XYScale><ZOrigin>-100000</ZOrigin><ZScale>10000</ZScale><MOrigin>-100000</MOrigin><MScale>10000</MScale><XYTolerance>8.983152841195215e-09</XYTolerance><ZTolerance>0.001</ZTolerance><MTolerance>0.001</MTolerance><HighPrecision>true</HighPrecision><LeftLongitude>-180</LeftLongitude><WKID>4326</WKID><LatestWKID>4326</LatestWKID></GeographicCoordinateSystem>Downloadable Data0.030.2AVSHPziphttps://njgin.state.nj.us/oit/gis/download/hsip_colleges.zipnoneDownload zipped shapefile, using web browser.NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS)mailing address
PO Box 212
TrentonNJ08625-0212USA
609.633.9103njgin@oit.state.nj.us
The State of New Jersey provides this data set "as is". The State makes no guarantee or warranty concerning the accuracy of information contained in the data. Also, the State makes no warranty, either expressed or implied, regarding the condition of the product or its fitness for any particular purpose. The burden for determining fitness for use lies entirely with the user. Although these data files have been processed successfully on computers at the State, no warranty is made by the State regarding the use of the data on any other system, nor does the fact of distribution constitute or imply such a warranty.20100127present
Qk3uNwEAAAAAADYAAAAoAAAAyAAAAIUAAAABABgAAAAAALg3AQAAAAAAAAAAAAAAAAAAAAAA//// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////jo6O//////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////j4+PAAAAj4+P////////////////////////////////////////////////////////jo6O +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////jo6O//////////////////////// +////////////////////////////////j4+PAAAAj4+P//////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +jo6O////////////////////VlZWqqqq//////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////5OTkHBwcVlZW//// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////5OTk//////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +5OTk//////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////5OTkHBwcVlZW//////////////////////////// +////////////////////////VlZWqqqq//////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////VlZWqqqq////////////////////////////////////////////////5OTkHBwcVlZW//// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////5OTk//////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////5OTkODg45OTk////5OTkqqqq//////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////qqqqAAAA +qqqq////ODg4AAAA4+Pj//////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////4+Pj////////5OTkqqqq4+Pj//////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////qqqqAAAAqqqq//////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////5OTkODg45OTk//////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////qqqq5OTk//////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////4+PjAAAAODg4//////////////// +////////////////////////////////////////////////////////5OTkqqqq//////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////qqqq5OTk//////////////////////////////////////////////////// +////////////////////ODg4AAAA4+Pj//////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////5OTkqqqq//////// +////////////////////////////////////////////////////////////////////4+Pj//// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////qqqqAAAAqqqq//////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////5OTkODg4 +5OTk//////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////qqqq5OTk//////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////x8fHAAAAHBwc +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////VlZWqqqq//////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////qqqq5OTk//// +//////////////////////////////////////////////////////////////////////////// +qqqq5OTk//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////4+PjAAAAODg4//////////////////////////////////////// +////////////////////////////////////4+PjAAAAODg4//////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////qqqq5OTk +////////////VlZWqqqq//////////////////////////////////////////////////////// +////qqqq5OTk//////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////5OTkqqqq////5OTk////5OTkHBwcVlZW//////////////// +//////////////////////////////////////////////////////////////////////////// +////////////5OTk//////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////ODg4AAAA +OTk5HBwc5OTk////5OTk//////////////////////////////////////////////////////// +////////////////////////////////////////////////VlZWHBwc5OTk//////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////5OTkqqqqqqqqVlZW//////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////qqqqVlZW//////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////5OTk//////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////5OTkcnJy//////////// +////////////////////////////////////////////////////////////////////5OTkHBwc +VlZW//////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////ODg4AAAAj4+P//////////////////////////////////////////// +////////////////////////////////////VlZWqqqq//////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////5OTkcnJy//////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////VlZW +qqqq//////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////5OTkHBwcVlZW//////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////qqqq +AAAAjo6OODg4jo6O5OTk//////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////5OTkAAAAAAAAjo6OAAAAAAAAODg4//////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////VlZWqqqq////////qqqq +AAAAHBwc5OTk4+Pjqqqq5OTk//////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////5OTkHBwcVlZW////////////4+Pj5OTk//////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////5OTk//////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////qqqqVlZW//////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////VlZWHBwc5OTk//////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////5OTk//////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +VlZWqqqq//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////5OTkHBwcVlZW////qqqqVlZW//////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////5OTk////////VlZWHBwc5OTk////////////////jo6O//////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////5OTk//////////// +////j4+PAAAAcnJyqqqq5OTk//////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////jo6O//////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////qqqq5OTkqqqqHR0dVlZW////////HBwcAAAAAAAAODg4//////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////j4+PAAAAj4+P//////////////////////////////////////////////////////////// +VlZWqqqq////////////////////////jo6O////////////////////4+PjAAAAODg4HBwcAAAA +HBwc5OTk////5OTkODg4HBwcAAAA4+Pj//////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////jo6O//////////////////////// +////////////////////////////////////5OTkHBwcVlZW////////////////////VlZWAAAA +j4+P////////////////////qqqq5OTk5OTkcnJy5OTk////////////////5OTkqqqq//////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////5OTk////////////////5OTkj4+PAAAAVlZW////5OTkqqqq////////////////////qqqq +5OTk//////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////VlZWHBwc5OTkjo6O +////////ODg4AAAA4+Pj////////////4+PjAAAAODg4//////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////qqqqVlZW////////////////5OTkqqqq////////qqqq5OTk//// +qqqq5OTk//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////qqqqVlZW////////////////////////////////////qqqq5OTk//////////////// +////////////////////////4+PjAAAAODg4////5OTk//////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////VlZWHBwc5OTk//////////////// +////////////4+PjAAAAODg4////////////////////////////////////////////qqqq5OTk +5OTkHBwcVlZW////////qqqqVlZW//////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////5OTk////////////////////////////////////qqqq5OTk//////////// +////////////////////////////////////////////VlZWqqqq////////VlZWHBwc5OTk5OTk +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////qqqqVlZW////////////5OTk5OTkHBwcVlZW//////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////VlZWAAAAVlZW//////////////// +VlZWqqqq//////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////jo6OVlZWHBwc5OTk////4+Pj//////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////j4+PAAAAj4+P5OTk////qqqqAAAA +qqqq//////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////jo6O////////////5OTkODg45OTk//////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////jo6O//////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////j4+PAAAAj4+P//////////////////////////////////////////////////////// +////////////////////////////5OTkODg45OTk//////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////jo6O//////////////////// +////////////////////////////////////////////////////////////////////qqqqAAAA +qqqq//////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +////////////////////////////////////4+Pj//////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////// Version 6.2 (Build 9200) ; Esri ArcGIS 10.7.1.11595Rowan1-75.114586-75.11458639.70739239.707392Shapefile0.000datasetEPSG6.14(3.0.1)120190912
diff --git a/Winter-2023/Digital Earth/Rowan.shx b/Winter-2023/Digital Earth/Rowan.shx new file mode 100755 index 0000000..9d8db18 Binary files /dev/null and b/Winter-2023/Digital Earth/Rowan.shx differ diff --git a/Winter-2023/Digital Earth/SharpeA1_Final_Project_Part_2.qgz b/Winter-2023/Digital Earth/SharpeA1_Final_Project_Part_2.qgz new file mode 100755 index 0000000..c133109 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA1_Final_Project_Part_2.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA1_Final_Project_Part_3.qgz b/Winter-2023/Digital Earth/SharpeA1_Final_Project_Part_3.qgz new file mode 100755 index 0000000..e3b3ee6 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA1_Final_Project_Part_3.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Lab2.qgz b/Winter-2023/Digital Earth/SharpeA_Lab2.qgz new file mode 100755 index 0000000..84a1218 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Lab2.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Lab3.qgz b/Winter-2023/Digital Earth/SharpeA_Lab3.qgz new file mode 100755 index 0000000..2549241 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Lab3.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Lab4.qgz b/Winter-2023/Digital Earth/SharpeA_Lab4.qgz new file mode 100755 index 0000000..18e0e11 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Lab4.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Lab5.qgz b/Winter-2023/Digital Earth/SharpeA_Lab5.qgz new file mode 100755 index 0000000..620bebb Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Lab5.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Tutorial1.qgz b/Winter-2023/Digital Earth/SharpeA_Tutorial1.qgz new file mode 100755 index 0000000..c229b49 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Tutorial1.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Tutorial2.qgz b/Winter-2023/Digital Earth/SharpeA_Tutorial2.qgz new file mode 100755 index 0000000..8b7b662 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Tutorial2.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Tutorial3.qgz b/Winter-2023/Digital Earth/SharpeA_Tutorial3.qgz new file mode 100755 index 0000000..49156f7 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Tutorial3.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Tutorial4.qgz b/Winter-2023/Digital Earth/SharpeA_Tutorial4.qgz new file mode 100755 index 0000000..8a14053 Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Tutorial4.qgz differ diff --git a/Winter-2023/Digital Earth/SharpeA_Tutorial5.qgz b/Winter-2023/Digital Earth/SharpeA_Tutorial5.qgz new file mode 100755 index 0000000..4fa97ad Binary files /dev/null and b/Winter-2023/Digital Earth/SharpeA_Tutorial5.qgz differ diff --git a/Winter-2023/Digital Earth/Sharpe_Final_Project.pdf b/Winter-2023/Digital Earth/Sharpe_Final_Project.pdf new file mode 100755 index 0000000..d85b376 Binary files /dev/null and b/Winter-2023/Digital Earth/Sharpe_Final_Project.pdf differ diff --git a/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_2.pdf b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_2.pdf new file mode 100755 index 0000000..fc7dbac Binary files /dev/null and b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_2.pdf differ diff --git a/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_3.pdf b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_3.pdf new file mode 100755 index 0000000..fa504d9 Binary files /dev/null and b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_3.pdf differ diff --git a/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_3.png b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_3.png new file mode 100755 index 0000000..aa6213c Binary files /dev/null and b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_3.png differ diff --git a/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_4.pdf b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_4.pdf new file mode 100755 index 0000000..033915e Binary files /dev/null and b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_4.pdf differ diff --git a/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_4.png b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_4.png new file mode 100755 index 0000000..b20828e Binary files /dev/null and b/Winter-2023/Digital Earth/Sharpe_Final_Project_Part_4.png differ diff --git a/Winter-2023/Digital Earth/Solar in NJ.pdf b/Winter-2023/Digital Earth/Solar in NJ.pdf new file mode 100755 index 0000000..00ce0ba Binary files /dev/null and b/Winter-2023/Digital Earth/Solar in NJ.pdf differ diff --git a/Winter-2023/Digital Earth/States_With_DD_and_SB.dbf b/Winter-2023/Digital Earth/States_With_DD_and_SB.dbf new file mode 100755 index 0000000..4296f71 Binary files /dev/null and b/Winter-2023/Digital Earth/States_With_DD_and_SB.dbf differ diff --git a/Winter-2023/Digital Earth/States_With_DD_and_SB.prj b/Winter-2023/Digital Earth/States_With_DD_and_SB.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/States_With_DD_and_SB.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/States_With_DD_and_SB.shp b/Winter-2023/Digital Earth/States_With_DD_and_SB.shp new file mode 100755 index 0000000..ef118eb Binary files /dev/null and b/Winter-2023/Digital Earth/States_With_DD_and_SB.shp differ diff --git a/Winter-2023/Digital Earth/States_With_DD_and_SB.shx b/Winter-2023/Digital Earth/States_With_DD_and_SB.shx new file mode 100755 index 0000000..7ab1b98 Binary files /dev/null and b/Winter-2023/Digital Earth/States_With_DD_and_SB.shx differ diff --git a/Winter-2023/Digital Earth/States_With_SB.dbf b/Winter-2023/Digital Earth/States_With_SB.dbf new file mode 100755 index 0000000..6b22cfe Binary files /dev/null and b/Winter-2023/Digital Earth/States_With_SB.dbf differ diff --git a/Winter-2023/Digital Earth/States_With_SB.prj b/Winter-2023/Digital Earth/States_With_SB.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/States_With_SB.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/States_With_SB.shp b/Winter-2023/Digital Earth/States_With_SB.shp new file mode 100755 index 0000000..ef118eb Binary files /dev/null and b/Winter-2023/Digital Earth/States_With_SB.shp differ diff --git a/Winter-2023/Digital Earth/States_With_SB.shx b/Winter-2023/Digital Earth/States_With_SB.shx new file mode 100755 index 0000000..7ab1b98 Binary files /dev/null and b/Winter-2023/Digital Earth/States_With_SB.shx differ diff --git a/Winter-2023/Digital Earth/USA AK HI NJ.pdf b/Winter-2023/Digital Earth/USA AK HI NJ.pdf new file mode 100755 index 0000000..eb0cab9 Binary files /dev/null and b/Winter-2023/Digital Earth/USA AK HI NJ.pdf differ diff --git a/Winter-2023/Digital Earth/US_POP_2020.csv b/Winter-2023/Digital Earth/US_POP_2020.csv new file mode 100755 index 0000000..fec7a86 --- /dev/null +++ b/Winter-2023/Digital Earth/US_POP_2020.csv @@ -0,0 +1,52 @@ +State,Postal,pop2020 +Alabama,AL,5024803 +Alaska,AK,732441 +Arizona,AZ,7177986 +Arkansas,AR,3012232 +California,CA,39499738 +Colorado,CO,5784308 +Connecticut,CT,3600260 +Delaware,DE,991886 +District of Columbia,DC,690093 +Florida,FL,21569932 +Georgia,GA,10725800 +Hawaii,HI,1451911 +Idaho,ID,1847772 +Illinois,IL,12785245 +Indiana,IN,6785644 +Iowa,IA,3188669 +Kansas,KS,2935880 +Kentucky,KY,4503958 +Louisiana,LA,4651203 +Maine,ME,1362280 +Maryland,MD,6172679 +Massachusetts,MA,7022220 +Michigan,MI,10067664 +Minnesota,MN,5707165 +Mississippi,MS,2956870 +Missouri,MO,6154481 +Montana,MT,1086193 +Nebraska,NE,1961455 +Nevada,NV,3114071 +New Hampshire,NH,1377848 +New Jersey,NJ,9279743 +New Mexico,NM,2117566 +New York,NY,20154933 +North Carolina,NC,10457177 +North Dakota,ND,778962 +Ohio,OH,11790587 +Oklahoma,OK,3962031 +Oregon,OR,4241544 +Pennsylvania,PA,12989625 +Rhode Island,RI,1096229 +South Carolina,SC,5130729 +South Dakota,SD,887099 +Tennessee,TN,6920119 +Texas,TX,29217653 +Utah,UT,3281684 +Vermont,VT,642495 +Virginia,VA,8632044 +Washington,WA,7718785 +West Virginia,WV,1789798 +Wisconsin,WI,5892323 +Wyoming,WY,577267 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/US_States_10M.cpg b/Winter-2023/Digital Earth/US_States_10M.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/US_States_10M.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/US_States_10M.dbf b/Winter-2023/Digital Earth/US_States_10M.dbf new file mode 100755 index 0000000..300afcd Binary files /dev/null and b/Winter-2023/Digital Earth/US_States_10M.dbf differ diff --git a/Winter-2023/Digital Earth/US_States_10M.prj b/Winter-2023/Digital Earth/US_States_10M.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/US_States_10M.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/US_States_10M.qmd b/Winter-2023/Digital Earth/US_States_10M.qmd new file mode 100755 index 0000000..6dffee5 --- /dev/null +++ b/Winter-2023/Digital Earth/US_States_10M.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/Winter-2023/Digital Earth/US_States_10M.shp b/Winter-2023/Digital Earth/US_States_10M.shp new file mode 100755 index 0000000..ef118eb Binary files /dev/null and b/Winter-2023/Digital Earth/US_States_10M.shp differ diff --git a/Winter-2023/Digital Earth/US_States_10M.shx b/Winter-2023/Digital Earth/US_States_10M.shx new file mode 100755 index 0000000..7ab1b98 Binary files /dev/null and b/Winter-2023/Digital Earth/US_States_10M.shx differ diff --git a/Winter-2023/Digital Earth/US_states_10M.qmd b/Winter-2023/Digital Earth/US_states_10M.qmd new file mode 100755 index 0000000..793fbc8 --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_10M.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/Winter-2023/Digital Earth/US_states_110m.cpg b/Winter-2023/Digital Earth/US_states_110m.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_110m.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/US_states_110m.dbf b/Winter-2023/Digital Earth/US_states_110m.dbf new file mode 100755 index 0000000..4b5d48a Binary files /dev/null and b/Winter-2023/Digital Earth/US_states_110m.dbf differ diff --git a/Winter-2023/Digital Earth/US_states_110m.prj b/Winter-2023/Digital Earth/US_states_110m.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_110m.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/US_states_110m.qmd b/Winter-2023/Digital Earth/US_states_110m.qmd new file mode 100755 index 0000000..793fbc8 --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_110m.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/Winter-2023/Digital Earth/US_states_110m.shp b/Winter-2023/Digital Earth/US_states_110m.shp new file mode 100755 index 0000000..23ab2ed Binary files /dev/null and b/Winter-2023/Digital Earth/US_states_110m.shp differ diff --git a/Winter-2023/Digital Earth/US_states_110m.shp.xml b/Winter-2023/Digital Earth/US_states_110m.shp.xml new file mode 100755 index 0000000..256cd30 --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_110m.shp.xml @@ -0,0 +1,2 @@ + +20130130204021001.0FALSEfile://\\rowanads.rowan.edu\common\Geography\Courses\IMGIS\Global\US_states_110m.shpLocal Area NetworkUS_states_110m002-171.791111-66.96466018.91619071.35776410.037GeographicGCS_WGS_1984Angular Unit: Degree (0.017453)<GeographicCoordinateSystem xsi:type='typens:GeographicCoordinateSystem' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:typens='http://www.esri.com/schemas/ArcGIS/10.6'><WKT>GEOGCS[&quot;GCS_WGS_1984&quot;,DATUM[&quot;D_WGS_1984&quot;,SPHEROID[&quot;WGS_1984&quot;,6378137.0,298.257223563]],PRIMEM[&quot;Greenwich&quot;,0.0],UNIT[&quot;Degree&quot;,0.0174532925199433],AUTHORITY[&quot;EPSG&quot;,4326]]</WKT><XOrigin>-400</XOrigin><YOrigin>-400</YOrigin><XYScale>11258999068426.238</XYScale><ZOrigin>-100000</ZOrigin><ZScale>10000</ZScale><MOrigin>-100000</MOrigin><MScale>10000</MScale><XYTolerance>8.983152841195215e-09</XYTolerance><ZTolerance>0.001</ZTolerance><MTolerance>0.001</MTolerance><HighPrecision>true</HighPrecision><LeftLongitude>-180</LeftLongitude><WKID>4326</WKID><LatestWKID>4326</LatestWKID></GeographicCoordinateSystem>20190201110538002019020111053800 Version 6.2 (Build 9200) ; Esri ArcGIS 10.6.1.9270US_states_110m1-171.791111-66.96466071.35776418.916190Shapefile0.037datasetEPSG6.14(3.0.1)51SimpleFALSE51FALSEFALSEUS_states_110mFeature Class51FIDFIDOID400Internal feature number.EsriSequential unique whole numbers that are automatically generated.ShapeShapeGeometry000Feature geometry.EsriCoordinates defining the features.scalerankscalerankInteger10100featureclafeatureclaString3200adm1_codeadm1_codeString1000diss_mediss_meInteger990adm1_cod_1adm1_cod_1String1000iso_3166_2iso_3166_2String1000wikipediawikipediaString25400sr_sov_a3sr_sov_a3String300sr_adm0_a3sr_adm0_a3String300iso_a2iso_a2String200adm0_sradm0_srSmallInteger440admin0_labadmin0_labSmallInteger440namenameString10000name_altname_altString20000name_localname_localString20000typetypeString10000type_entype_enString10000code_localcode_localString5000code_hasccode_hascString1000notenoteString25400hasc_maybehasc_maybeString5000regionregionString10000region_codregion_codString5000region_bigregion_bigString20000big_codebig_codeString5000provnum_neprovnum_neInteger990gadm_levelgadm_levelSmallInteger440check_mecheck_meSmallInteger440scaleran_1scaleran_1SmallInteger440datarankdatarankSmallInteger440abbrevabbrevString1000postalpostalString1000area_sqkmarea_sqkmSingle1300sameascitysameascitySmallInteger440labelranklabelrankSmallInteger440featurec_1featurec_1String5000adminadminString20000name_lenname_lenInteger990mapcolor9mapcolor9SmallInteger440mapcolor13mapcolor13SmallInteger44020190201 diff --git a/Winter-2023/Digital Earth/US_states_110m.shx b/Winter-2023/Digital Earth/US_states_110m.shx new file mode 100755 index 0000000..c8a23e8 Binary files /dev/null and b/Winter-2023/Digital Earth/US_states_110m.shx differ diff --git a/Winter-2023/Digital Earth/US_states_50m.cpg b/Winter-2023/Digital Earth/US_states_50m.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_50m.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/US_states_50m.dbf b/Winter-2023/Digital Earth/US_states_50m.dbf new file mode 100755 index 0000000..8cceb9b Binary files /dev/null and b/Winter-2023/Digital Earth/US_states_50m.dbf differ diff --git a/Winter-2023/Digital Earth/US_states_50m.prj b/Winter-2023/Digital Earth/US_states_50m.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_50m.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/US_states_50m.qmd b/Winter-2023/Digital Earth/US_states_50m.qmd new file mode 100755 index 0000000..793fbc8 --- /dev/null +++ b/Winter-2023/Digital Earth/US_states_50m.qmd @@ -0,0 +1,26 @@ + + + + + + dataset + + + + + + + + + + 0 + 0 + + + + + false + + + + diff --git a/Winter-2023/Digital Earth/US_states_50m.shp b/Winter-2023/Digital Earth/US_states_50m.shp new file mode 100755 index 0000000..9f91910 Binary files /dev/null and b/Winter-2023/Digital Earth/US_states_50m.shp differ diff --git a/Winter-2023/Digital Earth/US_states_50m.shx b/Winter-2023/Digital Earth/US_states_50m.shx new file mode 100755 index 0000000..90696c4 Binary files /dev/null and b/Winter-2023/Digital Earth/US_states_50m.shx differ diff --git a/Winter-2023/Digital Earth/WAWA USA.csv b/Winter-2023/Digital Earth/WAWA USA.csv new file mode 100755 index 0000000..01ad3cc --- /dev/null +++ b/Winter-2023/Digital Earth/WAWA USA.csv @@ -0,0 +1,976 @@ +Longitude,Latitude,Name,Address +-77.032392,38.905336,"WAWA [no fuel]-Washington,DC","1 Thomas Circle NW, Washington DC,DC 20005|(202) 916-8884|24 Hrs|6007" +-77.04292,38.90441,"WAWA [no fuel]-Washington,DC","1111 19th St Nw, Washington,DC 20036|(202) 470-1816|24 hrs|6001" +-77.06319,38.90586,"WAWA [no fuel]-Washington,DC","1222 Wisconsin Avenue, Washington,DC 20007|(202) 559-2717|24 hrs|6003" +-77.029055,38.899595,"WAWA [Diesel]-Washington,DC","1250 H Street NW, Washington,DC 20005|(202) 552-5524|12:AM-12:AM|6008" +-77.03362,38.92853,"WAWA [no fuel]-Washington,DC","1400 Irving Street Nw, Washington,DC 20010|(202) 470-0238|24 hrs|6005" +-77.04266,38.92137,"WAWA [no fuel]-Washington,DC","2424 18th Street Nw, Washington,DC 20009|(202) 559-2683|24 hrs|6006" +-77.07916,38.94884,"WAWA [no fuel]-Washington,DC","4530 40th Street Nw A, Washington,DC 20016|(202) 558-0404|24 hrs|6004" +-75.660427,39.631847,"WAWA [no fuel]-Bear,DE","1100 Pulaski Highway, Bear,DE 19701|(302) 834-0249|24 hrs|823" +-75.69455,39.61942,"WAWA [Diesel]-Bear,DE","1605 Pulaski Highway, Bear,DE 19702|(302) 838-8050|24 hrs|844" +-75.68428,39.58462,"WAWA [Diesel]-Bear,DE","3601 Wrangle Hill Road, Bear,DE 19701|(302) 298-0854|24 hrs|870" +-75.070702,38.539963,"WAWA [no fuel]-Bethany Beach,DE","774 Garfield Parkway, Bethany Beach,DE 19930|(302) 537-2663|24 hrs|836" +-75.53937,39.112665,"WAWA [Diesel]-Camden,DE","200 East Street, Camden,DE 19934|(302) 455-7791|24 hrs|876" +-75.44432,39.81258,"WAWA [no fuel]-Claymont,DE","201 Naamans Rd, Claymont,DE 19703|(302) 798-9899|24 hrs|816" +-75.46908,39.79428,"WAWA [Diesel]-Claymont,DE","2621 Philadelphia Pike, Claymont,DE 19703|(302) 798-2411|24 hrs|854" +-75.45533,39.817451,"WAWA [Diesel]-Claymont,DE","601 Naamans Rd, Claymont,DE 19703|(302) 798-1682|24 hrs|867" +-75.557233,38.456088,"WAWA [Diesel]-Delmar,DE","38711 Sussex Hwy, Delmar,DE 19940|(302) 846-3272|24 hrs|856" +-75.5399552,39.1590432,"WAWA [Diesel]-Dover,DE","1450 Forest Ave, Dover,DE 19904|(302) 734-4703|24 hrs|855" +-75.501124,39.122982,"WAWA [Diesel]-Dover,DE","1525 E Lebanon Road, Dover,DE 19904|(302) 697-4070|24 hrs|845" +-75.547284,39.194921,"WAWA [Diesel]-Dover,DE","2800 North DuPont Hwy, Dover,DE 19901|(302) 678-2385|3 am-12 am|848" +-75.513166,39.158296,"WAWA [Diesel]-Dover,DE","298 South Dupont Highway, Dover,DE 19901|(302) 734-2871|3 am-11 am|838" +-75.697286,39.788547,"WAWA [no fuel]-Hockessin,DE","605 Yorklyn Road, Hockessin,DE 19707|(302) 234-1443|24 hrs|842" +-75.153961,38.744066,"WAWA [Diesel]-Lewes,DE","17663 Dartmouth Dr, Lewes,DE 19958|(302) 645-5637|24 hrs|834" +-75.65683,39.721287,"WAWA [Diesel]-Marshallton ,DE","2030 Limestone Road, Marshallton ,DE 19808|(302) 633-4617|24 hrs|858" +-75.648744,39.500437,"WAWA [no fuel]-Middletown,DE","2398 Dupont Parkway, Middletown,DE 19709|(302) 378-8270|24 hrs|828" +-75.728201,39.448383,"WAWA [no fuel]-Middletown,DE","528 W Main Street, Middletown,DE 19709|(302) 376-1780|24 hrs|843" +-75.680327,39.452996,"WAWA [Diesel]-Middletown,DE","690 Middletown Odessa Road, Middletown,DE 19709|(302) 378-5314|24 hrs|859" +-75.4314,38.92803,"WAWA [Diesel]-Milford,DE","902 N Dupont Blvd, Milford,DE 19963|(302) 424-2300|24 hrs|851" +-75.295744,38.584754,"WAWA [Diesel]-Millsboro,DE","102 E Dupont Highway, Millsboro,DE 19966|(302) 934-1844|24 hrs|837" +-75.195444,38.633986,"WAWA [Diesel]-Millsboro,DE","24930 John J Williams Hwy, Millsboro,DE 19966|(302) 945-1834|24 hrs|865" +-75.60779,39.663485,"WAWA [Diesel]-New Castle,DE","117 S Dupont Hwy, New Castle,DE 19720|(302) 322-9650|24 hrs|866" +-75.625749,39.641216,"WAWA [Diesel]-New Castle,DE","1400 Beaver Brook Plaza, New Castle,DE 19720|(302) 328-7459|24 hrs|857" +-75.580421,39.692774,"WAWA [Diesel]-New Castle,DE","1515 N DuPont Highway, New Castle,DE 19720|(302) 324-0429|24 hrs|852" +-75.627395,39.6767,"WAWA [Diesel]-New Castle,DE","183 Airport Road, New Castle,DE 19720|(302) 323-9822|24 hrs|841" +-75.562387,39.709667,"WAWA [Diesel]-New Castle,DE","4000 N Dupont Highway, New Castle,DE 19720|(302) 661-2600|24 hrs|840" +-75.59886,39.69444,"WAWA [Diesel]-New Castle,DE","7 E Commons Blvd, New Castle,DE 19720|(302) 328-1872|24 hrs|863" +-75.700532,39.699907,"WAWA [Diesel]-Newark,DE","1750 Capitol Trail, Newark,DE 19711|(302) 737-8138|24 hrs|861" +-75.735488,39.662281,"WAWA [no fuel]-Newark,DE","274 East Chestnut Hill Road, Newark,DE 19713|(302) 453-9195|5 am- 11 pm|819" +-75.7621,39.60274,"WAWA [Diesel]-Newark,DE","2754 && 2748 Pulaski Hwy, Newark,DE 19702|(302) 838-8500|24 hrs|850" +-75.678842,39.68621,"WAWA [Diesel]-Newark,DE","4651 Stanton Ogletown Rd, Newark,DE 19713|(302) 368-4985|24 hrs|868" +-75.733272,39.684578,"WAWA [Diesel]-Newark,DE","601 Ogletown Rd, Newark,DE 19711|(302) 737-2057|24 hrs|860" +-75.105428,38.713287,"WAWA [Diesel]-Rehoboth Beach,DE","30155 Veterans Way, Rehoboth Beach,DE 19971|(302) 227-1893|24 hrs|871" +-75.1255717,38.7254595,"WAWA [Diesel]-Rehoboth Beach,DE","4500 Highway 1, Rehoboth Beach,DE 19971|(302) 644-4210|24 hrs|849" +-75.593665,38.659316,"WAWA [Diesel]-Seaford,DE","22929 Sussex Hwy, Seaford,DE 19973|(302) 888-9442|24 hrs|874" +-75.594077,39.282406,"WAWA [Diesel]-Smyrna,DE","500 Jimmy Drive, Smyrna,DE 19977|(302) 653-3290|24 hrs|853" +-75.614919,39.316212,"WAWA [no fuel]-Smyrna,DE","5632 S. Dupont Parkway, Smyrna,DE 19977|(302) 653-5312|24 hrs|830" +-75.55132,39.81011,"WAWA [Diesel]-Talleyville,DE","4030 Concord Pike, Talleyville,DE 19803|(302) 477-1433|24 hrs|862" +-75.545712,39.826317,"WAWA [Diesel]-Wilmington,DE","1702 Rocky Run Pkwy, Wilmington,DE 19803|(302) 426-2145|24 hrs|872" +-75.53313,39.78871,"WAWA [no fuel]-Wilmington,DE","400 Wilson Rd, Wilmington,DE 19803|(302) 652-2373|24 hrs|811" +-75.691274,39.735226,"WAWA [no fuel]-Wilmington,DE","4555 New Linden Hill Road, Wilmington,DE 19808|(302) 368-8561|24 hrs|831" +-75.49997,39.771126,"WAWA [no fuel]-Wilmington,DE","731 Philadelphia Pike, Wilmington,DE 19805|(302) 762-9840|5 am- 11 pm|801" +-75.598409,39.739942,"WAWA [no fuel]-Wilmington,DE","915 New Rd, Wilmington,DE 19805|(302) 995-6641|24 hrs|810" +-81.346157,28.662583,"WAWA [Diesel]-Altamonte Springs,FL","1390 E Altamonte Drive, Altamonte Springs,FL 32701|(407) 262-0338|24 hrs|5186" +-81.42059,28.66618,"WAWA [Diesel]-Altamonte Springs,FL","919 West Sr 436, Altamonte Springs,FL 32714|(407) 389-4281|24 hrs|5179" +-81.468432,28.653956,"WAWA [Diesel]-Apopka,FL","1615 S Orange Blossom Trail, Apopka,FL 32703|(407) 464-3171|24 hrs|5112" +-81.521236,28.679809,"WAWA [Diesel]-Apopka,FL","449 West Main St, Apopka,FL 32712|(407) 884-0731|24 hrs|5140" +-81.778537,28.054574,"WAWA [Diesel]-Auburndale,FL","334 Havendale Blvd, Auburndale,FL 33823|(863) 967-3710|24 hrs|5137" +-81.331835,28.479859,"WAWA [Diesel]-Belle Isle,FL","4416 Hoffner Ave, Belle Isle,FL 32812|(407) 710-0220|24 hrs|5279" +-82.053902,29.058771,"WAWA [Diesel]-Belleview,FL","5726 SE Abshier Blvd, Belleview,FL 34420|(352) 364-9799|24 hrs|5273" +-80.073502,26.572883,"WAWA [Diesel]-Boynton Beach,FL","1965 Hypoluzo Rd, Boynton Beach,FL 33426|(561) 323-7515|24 hrs|5239" +-80.18877,26.553355,"WAWA [Diesel]-Boynton Beach,FL","9926 Lyons Rd, Boynton Beach,FL 33472|(561) 770-7080|24 hrs|5330" +-82.43467,27.4858,"WAWA [Diesel]-Bradenton,FL","10807 SR 64 East, Bradenton,FL 34211|(941) 357-2969|24 hrs|5258" +-82.394689,27.431142,"WAWA [Diesel]-Bradenton,FL","14510 State Rd Sr 70 East, Bradenton,FL 34202|(941) 752-3013|24 hrs|5185" +-82.5867571,27.4623227,"WAWA [Diesel]-Bradenton,FL","2509 W Cortez Rd, Bradenton,FL 34207|(941) 900-4223|24 hrs|5271" +-82.50832,27.49905,"WAWA [Diesel]-Bradenton,FL","4455 Sr 64 East, Bradenton,FL 34208|(941) 749-0560|24 hrs|5178" +-82.504941,27.445649,"WAWA [Diesel]-Bradenton,FL","4506 53Rd Ave, Bradenton,FL 34203|(941) 756-7175|24 hrs|5203" +-82.576164,27.447345,"WAWA [Diesel]-Bradenton,FL","5306 14th Street, Bradenton,FL 34207|(941) 756-1249|24 hrs|5177" +-82.56231,27.49329,"WAWA [Diesel]-Bradenton,FL","701 1st Street E, Bradenton,FL 34205|(941) 900-4449|24 hrs|5165" +-82.310881,27.938357,"WAWA [Diesel]-Brandon,FL","1710 W Brandon Blvd, Brandon,FL 33510|(813) 400-5296|24 hrs|5197" +-82.51321,28.53287,"WAWA [Diesel]-Brooksville,FL","12984 Cortez Blvd, Brooksville,FL 34613|(352) 597-8029|24 hrs|5184" +-82.402024,28.540627,"WAWA [Diesel]-Brooksville,FL","20075 Cortez Blvd, Brooksville,FL 34601|(352) 519-1313|24 hrs|5259" +-81.97383,26.603737,"WAWA [Diesel]-Cape Coral,FL","2603 Santa Barbara Blvd, Cape Coral,FL 33914|(239) 300-9211|24 Hrs|5356" +-81.940624,26.666793,"WAWA [Diesel]-Cape Coral,FL","761 Del Prado Blvd North, Cape Coral,FL 33909-1730|(239) 458-1064|24 hrs|5170" +-81.32298,28.64399,"WAWA [Diesel]-Casselberry,FL","1033 SR 436, Casselberry,FL 32707|(407) 815-2225|24 hrs|5324" +-81.33303,28.68401,"WAWA [Diesel]-Casselberry,FL","23 Seminola Blvd, Casselberry,FL 32707|(407) 388-1488|24 hrs|5128" +-82.72864,27.91546,"WAWA [Diesel]-Clearwater,FL","15701 US Highway 19 N, Clearwater,FL 33764|(727) 531-1061|24 hrs|5149" +-82.74743,27.960045,"WAWA [Diesel]-Clearwater,FL","2177 Gulf to Bay Blvd, Clearwater,FL 33758|(727) 442-7506|24 hrs|5163" +-82.73678,28.01315,"WAWA [Diesel]-Clearwater,FL","26508 US Hwy 19 N, Clearwater,FL 33761|(727) 314-8002|24 hrs|5294" +-81.687864,28.378415,"WAWA [Diesel]-Clermont,FL","16126 Greater Groves Blvd, Clermont,FL 34714|(352) 252-9784|24 hrs|5121" +-81.74051,28.542569,"WAWA [Diesel]-Clermont,FL","1909 S Highway 27, Clermont,FL 34711|(352) 243-2594|24 hrs|5144" +-80.742099,28.355255,"WAWA [Diesel]-Cocoa,FL","923 West King St, Cocoa,FL 32922|(321) 307-2230|24 hrs|5265" +-80.223635,26.272768,"WAWA [Diesel]-Coral Springs,FL","7305 W Sample Rd, Coral Springs,FL 33065|(754) 812-8778|24 Hrs|5338" +-81.648304,28.229468,"WAWA [Diesel]-Davenport,FL","43582 Hwy 27, Davenport,FL 33837|(863) 840-9069|24 hrs|5230" +-81.5906811,28.25959,"WAWA [Diesel]-Davenport,FL","8103 Lake Wilson Rd, Davenport,FL 33896|(863) 216-5779|24 hrs|5299" +-80.22693,26.09094,"WAWA [Diesel]-Davie,FL","2500 SW 64th Ave, Davie,FL 33317|(954) 361-0940|24 hrs|5249" +-80.207533,26.063515,"WAWA [Diesel]-Davie,FL","4700 South SR 7, Davie,FL 33314|(754) 888-5113|24 Hrs|5314" +-80.230571,26.045476,"WAWA [Diesel]-Davie,FL","6350 Stirling Rd, Davie,FL 33314|(954) 526-2290|24 hrs|5193" +-81.047818,29.2199,"WAWA [Diesel]-Daytona Beach,FL","1000 Mason Ave, Daytona Beach,FL 32117|(386) 267-5005|12:AM-12:AM|5332" +-81.02248,29.209943,"WAWA [Diesel]-Daytona Beach,FL","120 S Ridgewood Ave, Daytona Beach,FL 32114|(386) 296-1953|24 hrs|5287" +-81.072797,29.191234,"WAWA [Diesel]-Daytona Beach,FL","1900 International Speedway Blvd, Daytona Beach,FL 32114|(386) 272-9002|24 hrs|5296" +-80.11951,26.3173,"WAWA [Diesel]-Deerfield Beach,FL","20 SW 12th Ave, Deerfield Beach,FL 33442|(754) 202-2426|24 hrs|5242" +-80.1545955,26.2745691,"WAWA [Diesel]-Deerfield Beach,FL","2271 W Sample Rd, Deerfield Beach,FL 33442|(754) 200-2987|24 hrs|5195" +-81.303804,28.998359,"WAWA [Diesel]-Deland,FL","1700 S Woodland Blvd, Deland,FL 32720|(386) 327-4048|24 Hrs|5292" +-80.205465,26.453745,"WAWA [Diesel]-Delray Beach,FL","10100 Atlantic Ave, Delray Beach,FL 33446|(561) 945-0070|24 hrs|5339" +-81.2289281,28.9464489,"WAWA [Diesel]-Deltona,FL","3400 Howland Blvd, Deltona,FL 32725|(407) 955-4551|24 hrs|5354" +-80.337662,25.805687,"WAWA [Diesel]-Doral,FL","3300 NW 87th Avenue, Doral,FL 33172|(786) 558-1041|3am-2am|5357" +-80.202388,26.120395,"WAWA [Diesel]-Plantation,FL","13 S State Road 7, Plantation,FL 33317|(754) 240-9440|24 Hrs|5331" +-80.17734,26.12118,"WAWA [Diesel]-Fort Lauderdale,FL","2620 W Broward Blvd, Fort Lauderdale,FL 33312|(954) 652-1003|24 hrs|5232" +-80.156227,26.202778,"WAWA [Diesel]-Fort Lauderdale,FL","6191 Powerline Rd, Fort Lauderdale,FL 33309|(954) 666-5883|24 hrs|5234" +-81.770133,26.617773,"WAWA [Diesel]-Fort Myers,FL","11031 Colonial Blvd, Fort Myers,FL 33905|(239) 226-1480|24 hrs|5200" +-81.87102,26.55766,"WAWA [Diesel]-Fort Myers,FL","12701 S Cleveland Ave, Fort Myers,FL 33907|(239) 275-1020|24 hrs|5169" +-81.86424,26.59616,"WAWA [Diesel]-Fort Myers,FL","2370 Colonial Blvd, Fort Myers,FL 33907|(239) 275-4142|24 hrs|5168" +-80.3259639,27.4269296,"WAWA [Diesel]-Fort Pierce,FL","2101 S US Hwy 1, Fort Pierce,FL 34950|(772) 236-7060|24 Hrs|5387" +-80.381755,27.417288,"WAWA [Diesel]-Fort Pierce,FL","5575 Okeechobee Rd, Fort Pierce,FL 34947|(772) 252-1103|24 hrs|5254" +-82.313032,29.651748,"WAWA [Diesel]-Gainesville,FL","1007 East University Ave, Gainesville,FL 32601|(352) 364-0140|24 Hrs|5313" +-82.343659,29.652324,"WAWA [Diesel]-Gainesville,FL","1614 West University Avenue, Gainesville,FL 32603|(352) 433-0211|24 Hrs|5385" +-82.338527,29.674211,"WAWA [Diesel]-Gainesville,FL","2305 NW 13th St, Gainesville,FL 32608|(352) 448-7785|24 Hrs|5384" +-82.35845,29.633111,"WAWA [Diesel]-Gainesville,FL","2373 SW Archer Road, Gainesville,FL 32608|(352) 505-4333|24 Hrs|5325" +-82.389981,29.616119,"WAWA [Diesel]-Gainesville,FL","4322 SW Archer Rd, Gainesville,FL 33068|(352) 505-2744|24 Hrs|5323" +-80.147684,26.618388,"WAWA [Diesel]-Greenacres,FL","6566 Lake Worth Blvd, Greenacres,FL 33467|(561) 619-4040|24 hrs|5212" +-80.4341471,25.9392106,"WAWA [Diesel]-Hialeah Gardens,FL","13891 W Okeechobee Road, Hialeah Gardens,FL 33018|(786) 761-1190|24 Hrs|5358" +-80.325331,25.866809,"WAWA [Diesel]-Hialeah Gardens,FL","7878 NW 103 Street, Hisleah Gardens,FL 33016|(786) 693-1196|24 Hrs|5378" +-82.740864,28.186962,"WAWA [Diesel]-Holiday,FL","1929 US Hwy 19, Holiday,FL 34691|(727) 934-7464|24 hrs|5181" +-82.6657607,28.33122,"WAWA [Diesel]-Hudson,FL","9021 SR 52, Hudson,FL 34669|(727) 605-0022|24 hrs|5275" +-81.731463,30.336735,"WAWA [Diesel]-Jacksonville,FL","1004 Edgewood Ave N, Jacksonville,FL 32254|(904) 720-2165|24 hrs|5351" +-81.509673,30.286352,"WAWA [Diesel]-Jacksonville,FL","11812 Beach Blvd, Jacksonville,FL 32224|(904) 352-1201|24 hrs|5264" +-81.464476,30.288199,"WAWA [Diesel]-Jacksonville,FL","13363 Beach Blvd, Jacksonville,FL 32246|(904) 900-7729|24 hrs|5321" +-81.503341,30.35979,"WAWA [Diesel]-Jacksonville,FL","2500 Monument Rd, Jacksonville,FL 32225|(904) 440-0205|24 hrs|5261" +-81.536687,30.254077,"WAWA [Diesel]-Jacksonville,FL","4866 Gate Pkwy, Jacksonville,FL 32246|(904) 900-7690|24 hrs|5257" +-81.617277,30.265414,"WAWA [Diesel]-Jacksonville,FL","5735 Philips Hwy, Jacksonville,FL 32216|(904) 730-1773|24 hrs|5333" +-81.75606,30.2704,"WAWA [Diesel]-Jacksonville,FL","6787 Wilson Blvd, Jacksonville,FL 32210|(904) 224-6223|24 hrs|5276" +-81.822327,30.197047,"WAWA [Diesel]-Jacksonville,FL","8251 Old Middleburg Rd S, Jacksonville,FL 32222|(904) 329-7007|24 hrs|5266" +-81.5580683,30.28707,"WAWA [Diesel]-Jacksonville,FL","9715 Beach Blvd, Jacksonville,FL 32246|(904) 559-1700|24 hrs|5274" +-81.739064,30.204121,"WAWA [Diesel]-Jaclsonville,FL","7911 Blanding Blvd, Jacksonville,FL 32244|(904) 717-3800|24 hrs|5349" +-81.443796,28.14749,"WAWA [Diesel]-Kissimmee,FL","1095 Cypress Pkwy, Kissimmee,FL 34759|(321) 265-4655|24 hrs|5293" +-81.35566,28.28604,"WAWA [Diesel]-Kissimmee,FL","2184 E Irlo Bronson Memorial, Kissimmee,FL 34744|(407) 944-1101|24 hrs|5102" +-81.403337,28.318552,"WAWA [Diesel]-Kissimmee,FL","2449 N Orange Blossom Trail, Kissimmee,FL 34744|(407) 870-1502|24 hrs|5104" +-81.483764,28.341228,"WAWA [Diesel]-Kissimmee,FL","3140 Vineland Road, Kissimmee,FL 34746|(407) 710-0070|24 hrs|5116" +-81.45739,28.30454,"WAWA [Diesel]-Kissimmee,FL","4397 W Vine St, Kissimmee,FL 34746|(321) 677-0394|24 hrs|5143" +-81.484287,28.256233,"WAWA [Diesel]-Kissimmee,FL","5035 S Orange Blossom Tr, Kissimmee,FL 34758|(407) 944-3302|24 hrs|5124" +-81.60468,28.34547,"WAWA [Diesel]-Kissimmee,FL","7940 West Irlo Bronson Hwy, Kissimmee,FL 34747|(407) 390-0929|24 hrs|5166" +-81.9225657,28.9172244,"WAWA [Diesel]-Lady Lake,FL","116 N Hwy 27/441, Lady Lake,FL 32159|(352) 448-0094|24 hrs|5326" +-81.95737,28.95374,"WAWA [Diesel]-Lady Lake,FL","13535 US Hwy 441, Lady Lake,FL 32159|(352) 436-4200|24 hrs|5322" +-81.30949,28.73228,"WAWA [Diesel]-Lake Mary,FL","3510 N US Hwy 17, Lake Mary,FL 32746|(407) 268-3725|24 hrs|5117" +-81.359066,27.300294,"WAWA [Diesel]-Lake Placid,FL","611 Dal Hall Blvd, Lake Placid,FL 33852|(863) 328-4937|24 hrs|5371" +-81.62003,27.95608,"WAWA [Diesel]-Lake Wales,FL","23623 US Hwy 27, Lake Wales,FL 33859|(863) 840-9777|24 hrs|5277" +-80.1129978,26.628978,"WAWA [Diesel]-Lake Worth,FL","3288 S Military Trail, Lake Worth,FL 33461|(561) 425-8266|24 hrs|5227" +-81.913363,28.012768,"WAWA [Diesel]-Lakeland,FL","3105 Bartow Rd 98 South, Lakeland,FL 33803|(863) 240-0866|24 hrs|5253" +-81.97467,28.09788,"WAWA [Diesel]-Lakeland,FL","4320 US Hwy 98 N, Lakeland,FL 33805|(863) 858-7659|24 hrs|5106" +-81.964237,27.967307,"WAWA [Diesel]-Lakeland,FL","5410 S Florida Ave, Lakeland,FL 33813|(863) 272-6774|24 hrs|5342" +-82.4345093,28.2220535,"WAWA [Diesel]-Land O Lakes,FL","25155 Maren Way, Land O Lakes,FL 34639|(813) 649-3544|24 hrs|5267" +-82.788482,27.928734,"WAWA [Diesel]-Largo,FL","1215 N Missouri Ave, Largo,FL 33770|(727) 581-0206|24 hrs|5176" +-82.815438,27.879842,"WAWA [Diesel]-Largo,FL","12750 Walsingham Rd, Largo,FL 33774|(727) 595-7850|24 hrs|5147" +-82.763084,27.89375,"WAWA [Diesel]-Largo,FL","8910 Ulmerton Rd, Largo,FL 33771|(727) 228-3122|24 hrs|5141" +-80.252205,26.172975,"WAWA [Diesel]-Lauderhill,FL","4401 NW 76 Ave, Lauderhill,FL 33351|(754) 900-5080|24 hrs|5278" +-82.4829163,28.892289,"WAWA [Diesel]-Lecanto,FL","2932 W Norvell Bryant Hwy, Lecanto,FL 34461|(352) 508-6453|24 hrs|5320" +-81.887005,28.82822,"WAWA [Diesel]-Leesburg,FL","1400 W North Blvd, Leesburg,FL 34748|(352) 204-9605|24 hrs|5290" +-81.34484,28.69763,"WAWA [Diesel]-Longwood,FL","162 E Sr 434 , Longwood,FL 32750|(407) 262-0305|24 hrs|5156" +-80.200253,26.253832,"WAWA [Diesel]-Margate,FL","2000 N SR 7, Margate,FL 33063|(754) 229-4052|24 hrs|5235" +-80.603585,28.0808215,"WAWA [Diesel]-Melbourne,FL","1105 Palmetto Ave, Melbourne,FL 32901|(321) 325-2265|24 hrs|5316" +-80.698056,28.11942,"WAWA [Diesel]-Melbourne,FL","4429 W Eau Gallie Blvd, Melbourne,FL 32901|(321) 373-8112|24 hrs|5283" +-80.371714,25.598581,"WAWA [Diesel]-Miami,FL","11101 SW 184 St, Miami,FL 33157|(786) 408-6620|24 hrs|5243" +-80.4159342,25.6564762,"WAWA [Diesel]-Miami,FL","11990 SW 137 Ave, Miami,FL 33186|(786) 870-4550|24 hrs|5245" +-80.188682,25.928142,"WAWA [Diesel]-Miami,FL","590 NE 167 Street, Miami,FL 33162|(786) 677-4366|6am-10pm|5244" +-80.30873,25.74846,"WAWA [Diesel]-Miami,FL","6971 SW 24th St, Miami,FL 33155|(786) 471-0804|24 hrs|5260" +-80.247279,25.939053,"WAWA [Diesel]-Miami Gardens,FL","17942 NW 27 Ave, Miami Gardens,FL 33056|(786) 422-1415|24 Hrs|5284" +-81.8123353,30.1146455,"WAWA [Diesel]-Middleburg,FL","1563 Blanding Blvd, Middleburg,FL 32068|(904) 712-6601|24 hrs|5289" +-80.264036,25.99365,"WAWA [Diesel]-Miramar,FL","1700 South Douglas Rd, Miramar,FL 33025|(754) 241-3606|24 Hrs|5353" +-81.663641,28.822002,"WAWA [Diesel]-Mount Dora,FL","17700 US Hwy 441, Mount Dora,FL 32757|(352) 720-6266|24 hrs|5270" +-81.704423,26.065743,"WAWA [Diesel]-Naples,FL","12456 Tamiami Trail E, Naples,FL 34113|(239) 920-5177|24 hrs|5228" +-81.751341,26.153987,"WAWA [Diesel]-Naples,FL","4787 Radio Rd, Naples,FL 34104|(239) 280-9712|24 hrs|5238" +-82.73641,28.21772,"WAWA [Diesel]-New Port Richey,FL","4026 US Highway 19, New Port Richey,FL 34652|(727) 847-5134|24 hrs|5115" +-82.676674,28.279988,"WAWA [Diesel]-Port Richey,FL","8330 Ridge Rd, Port Richey,FL 34668|(727) 848-5425|24 hrs|5109" +-80.9411162,29.0149092,"WAWA [Diesel]-New Smyrna Beach,FL","1780 SR 44, New Smyrna Beach,FL 32168|(386) 266-8725|24 hrs|5222" +-82.4537405,27.1245829,"WAWA [Diesel]-Nokomis,FL","100 S Tamiami Trail, Nokomis,FL 34275|(941) 786-0791|24 hrs|5281" +-80.2208779,26.2092352,"WAWA [Diesel]-North Lauderdale,FL","7105 Ncnab Rd, North Lauderdale,FL 33068|(754) 732-3899|24 Hrs|5372" +-82.14013,29.17888,"WAWA [Diesel]-Ocala,FL","1001 S Pine Ave, Ocala,FL 34471|(352) 509-6414|24 hrs|5272" +-82.095865,29.163735,"WAWA [Diesel]-Ocala,FL","3080 SE Maricamp Rd, Ocala,FL 34471|(352) 840-0661|3am-2am|5337" +-82.177568,29.185697,"WAWA [Diesel]-Ocala,FL","3312 W Silver Springs, Ocala,FL 34475|(352) 433-4648|24 hrs|5291" +-82.08645,29.19828,"WAWA [Diesel]-Ocala,FL","3601 East Silver Springs Blvd, Ocala,FL 34470|(352) 877-3225|24 hrs|5336" +-82.191213,29.145041,"WAWA [Diesel]-Ocala,FL","4025 SW College Rd, Ocala,FL 34474|(352) 414-4017|24 hrs|5305" +-82.6195162,28.1900638,"WAWA [Diesel]-Odessa,FL","12048 SR 54, Odessa,FL 33556|(813) 445-5770|24 hrs|5334" +-80.831345,27.243969,"WAWA [Diesel]-Okeechobee,FL","200 NW Park St, Okeechobee,FL 34972|(863) 225-7609|12:AM-12:AM|5383" +-81.295823,28.917056,"WAWA [Diesel]-Orange City,FL","2522 Enterprise Rd, Orange City,FL 32763|(386) 456-0015|24 hrs|5171" +-81.70343,30.18625,"WAWA [Diesel]-Orange Park,FL","300 Park Ave, Orange Park,FL 32073|(904) 773-4884|24 hrs|5328" +-81.7560225,30.1487663,"WAWA [Diesel]-Orange Park,FL","678 Blanding Blvd, Orange Park,FL 32073|(386) 206-1004|24 hrs|5263" +-81.241065,28.509422,"WAWA [Diesel]-Orlando,FL","10052 Curry Ford Rd, Orlando,FL 32825|(407) 552-9123|24 hrs|5207" +-81.21647,28.59753,"WAWA [Diesel]-Orlando,FL","11750 University Blvd, Orlando,FL 32817|(407) 384-7545|24 hrs|5145" +-81.39662,28.55241,"WAWA [Diesel]-Orlando,FL","1200 West Colonial Drive, Orlando,FL 32805|(407) 835-8985|24 hrs|5150" +-81.309943,28.528098,"WAWA [Diesel]-Orlando,FL","1201 S Semoran Blvd, Orlando,FL 32807|(321) 663-0766|24 hrs|5206" +-81.403845,28.390473,"WAWA [Diesel]-Orlando,FL","12083 S Orange Blossom Trail, Orlando,FL 32837|(407) 812-9790|24 hrs|5155" +-81.195526,28.56608,"WAWA [Diesel]-Orlando,FL","12321 E Colonial Drive, Orlando,FL 32826|(407) 273-0913|24 hrs|5161" +-81.382355,28.365654,"WAWA [Diesel]-Orlando,FL","13585 S Orange Ave, Orlando,FL 32824|(407) 852-0360|24 hrs|5132" +-81.310321,28.364638,"WAWA [Diesel]-Orlando,FL","13830 Boggy Creek Rd, Orlando,FL 32824|(321) 465-7774|24 hrs|5366" +-81.166481,28.564616,"WAWA [Diesel]-Orlando,FL","14548 E Colonial Dr, Orlando,FL 32826|(407) 275-6205|24 hrs|5142" +-81.23354,28.34869,"WAWA [Diesel]-Orlando,FL","14876 Narcoosse Rd, Orlando,FL 32832|(407) 856-5960|24 hrs|5187" +-81.288962,28.516044,"WAWA [Diesel]-Orlando,FL","2225 South Goldenrod Rd, Orlando,FL 32822|(407) 382-4185|24 hrs|5131" +-81.31008,28.573814,"WAWA [Diesel]-Orlando,FL","2239 North Semoran Blvd, Orlando,FL 32807|(407) 671-1061|24 hrs|5111" +-81.415532,28.577518,"WAWA [Diesel]-Orlando,FL","2507 N John Young Pkwy, Orlando,FL 32807|(407) 578-8574|24 hrs|5100" +-81.344963,28.524724,"WAWA [Diesel]-Orlando,FL","3025 Curry Ford Rd, Orlando,FL 32806|(407) 897-8117|24 hrs|5130" +-81.376981,28.508861,"WAWA [Diesel]-Orlando,FL","3100 S Orange Avenue, Orlando,FL 32806|(407) 855-9716|24 hrs|5157" +-81.418454,28.493702,"WAWA [Diesel]-Orlando,FL","3501 Millenia Blvd, Orlando,FL 32839|(407) 363-0455|24 hrs|5189" +-81.421932,28.411527,"WAWA [Diesel]-Orlando,FL","3951 Central Florida Pkwy, Orlando,FL 32837|(321) 257-8121|24 hrs|5205" +-81.334013,28.55282,"WAWA [Diesel]-Orlando,FL","4100 E Colonial Drive, Orlando,FL 32803|(407) 895-7521|24 hrs|5153" +-81.288014,28.480115,"WAWA [Diesel]-Orlando,FL","4700 South Goldenrod Rd, Orlando,FL 32822|(407) 380-9800|24 hrs|5103" +-81.4595744,28.5281025,"WAWA [Diesel]-Orlando,FL","5810 Raleigh St, Orlando,FL 32811|(407) 495-1822|24 hrs|5308" +-81.416055,28.610294,"WAWA [Diesel]-Orlando,FL","5820 Edgewater Drive, Orlando,FL 32810|(407) 291-1394|24 hrs|5164" +-81.457556,28.405762,"WAWA [Diesel]-Orlando,FL","5910 Central Florida Parkway, Orlando,FL 32821|(407) 345-5210|24 hrs|5101" +-81.28665,28.553324,"WAWA [Diesel]-Orlando,FL","608 N Goldenrod Rd, Orlando,FL 32807|(407) 249-9474|24 hrs|5134" +-81.31064,28.46956,"WAWA [Diesel]-Orlando,FL","6500 South Semoran Blvd, Orlando,FL 32822|(407) 859-3826|24 hrs|5136" +-81.466629,28.449465,"WAWA [Diesel]-Orlando,FL","6500 W Sand Lake Rd, Orlando,FL 32819|(407) 248-1213|24 hrs|5160" +-81.39793,28.46372,"WAWA [Diesel]-Orlando,FL","7030 South Orange Blossom Trail, Orlando,FL 32809|(407) 240-3238|24 hrs|5105" +-81.278282,28.569086,"WAWA [Diesel]-Orlando,FL","8049 East Colonial Dr, Orlando,FL 32807|(407) 381-1129|24 hrs|5113" +-81.363297,28.451616,"WAWA [Diesel]-Orlando,FL","8099 Orange Ave, Orlando,FL 32809|(407) 856-5905|24 hrs|5208" +-81.404364,28.440561,"WAWA [Diesel]-Orlando,FL","8574 S Orange Blossom Trail, Orlando,FL 32809|(407) 856-4631|24 hrs|5138" +-81.50593,28.38923,"WAWA [Diesel]-Orlando,FL","8894 Vinings Way Blvd, Orlando,FL 32836|(407) 613-2539|24 hrs|5209" +-81.25632,28.43293,"WAWA [Diesel]-Orlando,FL","9235 Narcoosee Rd, Orlando,FL 32827|(407) 207-4082|24 hrs|5174" +-81.24764,28.47876,"WAWA [Diesel]-Orlando,FL","9955 Lee Vista Blvd, Orlando,FL 32829|(407) 658-4515|24 hrs|5182" +-81.07178,29.27872,"WAWA [Diesel]-Ormond Beach,FL","600 W Granada Blvd, Ormond Beach,FL 32174|(386) 310-2265|24 hrs|5315" +-81.22513,28.654904,"WAWA [Diesel]-Oviedo,FL","1020 West Mitchell Hammock Rd, Oviedo,FL 32765|(407) 706-4943|24 hrs|5219" +-81.208715,28.626988,"WAWA [Diesel]-Oviedo,FL","3000 Alafaya Trail, Oviedo,FL 32765|(407) 359-0144|24 hrs|5118" +-82.03756,28.92773,"WAWA [Diesel]-Oxford,FL","11770 US 301, Oxford,FL 34484|(321) 222-9433|24 hrs|5282" +-80.649284,27.997618,"WAWA [Diesel]-Palm Bay,FL","850 Malabar Rd Se, Palm Bay,FL 32909|(321) 241-0677|24 hrs|5317" +-81.206366,29.476023,"WAWA [Diesel]-Palm Coast,FL","5600 SR 100 East, Palm Coast,FL 32164|(386) 361-4822|24 Hrs|5310" +-80.671422,28.201817,"WAWA [Diesel]-Palm Shores,FL","5605 Wickham Rd, Palm Shores,FL 32940|(321) 255-4861|24 hrs|5190" +-80.088665,26.650102,"WAWA [Diesel]-Palm Springs,FL","1771 South Congress Ave, Palm Springs,FL 33406|(561) 812-2192|24 hrs|5223" +-80.088806,26.617849,"WAWA [Diesel]-Palm Springs,FL","3950 South Congress Ave, Palm Springs,FL 33461|(561) 791-6658|24 hrs|5219" +-80.203462,26.326784,"WAWA [Diesel]-Parkland,FL","7705 N SR 7, Parkland,FL 33073|(954) 688-9374|24 hrs|5233" +-80.296392,25.993876,"WAWA [Diesel]-Pembroke Pines,FL","1600 S Hiatus Rd, Pembroke Pines,FL 33025|(954) 281-4094|24 hrs|5309" +-82.67705,27.84688,"WAWA [Diesel]-Pinellas Park,FL","3101 Gandy Blvd, Pinellas Park,FL 33782|(727) 576-1804|24 hrs|5110" +-82.680312,27.828803,"WAWA [Diesel]-Pinellas Park,FL","6200 N 34th St, Pinellas Park,FL 33781|(727) 526-8350|24 hrs|5125" +-82.152041,28.025862,"WAWA [Diesel]-Plant City,FL","2705 Thonotosassa Rd, Plant City,FL 33563|(813) 752-1508|24 hrs|5162" +-80.097876,26.276124,"WAWA [Diesel]-Pompano Beach,FL","3601 N Federal Hwy, Pompano Beach,FL 33064|(954) 657-8220|24 hrs|5194" +-82.116397,26.994076,"WAWA [Diesel]-Port Charlotte,FL","2525 Tamiami Trail, Port Charlotte,FL 33952|(941) 212-2581|24 hrs|5255" +-81.006788,29.12765,"WAWA [Diesel]-Port Orange,FL","1031 Dunlawton Ave, Port Orange,FL 32129|(386) 763-5503|24 hrs|5172" +-81.02468,29.111651,"WAWA [Diesel]-Port Orange,FL","1740 Dunlawton Ave, Port Orange,FL 32127|(386) 767-7554|24 hrs|5173" +-82.71768,28.28095,"WAWA [Diesel]-Port Richey,FL","8519 US 19 North, Port Richey,FL 34668|(727) 849-4725|24 hrs|5108" +-80.431862,27.263881,"WAWA [Diesel]-Port St Lucie,FL","10308 SW Tradition Pkwy, Port St Lucie,FL 34987|(772) 708-2515|24 hrs|5221" +-80.34095,27.31857,"WAWA [Diesel]-Port St Lucie,FL","260 SE Prima Vista Blvd, Port St Lucie,FL 43983|(772) 206-2209|24 hrs|5220" +-82.01147,26.8956,"WAWA [Diesel]-Punta Gorda,FL","26415 Indian Trail Dr, Punta Gorda,FL 33950|(941) 877-2395|24 hrs|5343" +-82.335865,27.893138,"WAWA [Diesel]-Riverview,FL","10115 Bloomingdale Ave, Riverview,FL 33578|(813) 620-3518|24 hrs|5133" +-82.33409,27.79677,"WAWA [Diesel]-Riverview,FL","13026 S US Highway 301, Riverview,FL 33578|(813) 671-9506|24 hrs|5175" +-82.269871,27.853165,"WAWA [Diesel]-Riverview,FL","13323 Boyette Rd, Riverview,FL 33569|(813) 437-2608|24 hrs|5286" +-82.32736,27.85819,"WAWA [Diesel]-Riverview,FL","9617 Highway 301 South, Riverview,FL 33578|(813) 677-0251|24 hrs|5167" +-80.092593,26.78225,"WAWA [Diesel]-Riviera Beach,FL","7289 Garden Rd, Riviera Beach,FL 33404|(561) 720-2523|24 hrs|5214" +-81.522104,30.100233,"WAWA [Diesel]-Saint Johns,FL","100 Bartram Market Dr, Saint Johns,FL 32259|(904) 671-0404|12:AM-12:AM|5382" +-82.66681,27.79257,"WAWA [Diesel]-Saint Petersburg,FL","2465 22nd Ave North, Saint Petersburg,FL 33713|(727) 822-8168|24 hrs|5159" +-82.68016,27.73486,"WAWA [Diesel]-Saint Petersburg,FL","3637 34th St S, Saint Petersburg,FL 33711|(727) 310-0560|24 hrs|5306" +-82.67967,27.80511,"WAWA [Diesel]-Saint Petersburg,FL","3650 34th St North, Saint Petersburg,FL 33713|(727) 521-5627|24 hrs|5148" +-82.71583,27.7814,"WAWA [Diesel]-Saint Petersburg,FL","5901 9th Ave N, Saint Petersburg,FL 33710|(772) 783-2003|24 hrs|5241" +-82.63819,27.85077,"WAWA [Diesel]-Saint Petersburg,FL","8601 4th St N, Saint Petersburg,FL 33701|(727) 350-1036|24 hrs|5252" +-82.7706,27.81463,"WAWA [Diesel]-Saint Petersburg,FL","9501 Bay Pines Blvd, Saint Petersburg,FL 33708|(727) 391-1483|24 hrs|5129" +-81.296996,28.787148,"WAWA [Diesel]-Sanford,FL","2690 W 25th Street, Sanford,FL 32771|(407) 302-4618|24 hrs|5158" +-81.33367,28.81223,"WAWA [Diesel]-Sanford,FL","4660 W Sr 46, Sanford,FL 32771|(407) 901-2620|24 hrs|5218" +-82.53153,27.36754,"WAWA [Diesel]-Sarasota,FL","3703 N Washington Blvd, Sarasota,FL 34234|(941) 351-0059|24 hrs|5217" +-82.465514,27.387418,"WAWA [Diesel]-Sarasota,FL","5208 University Pkwy, Sarasota,FL 34234|(941) 217-7479|24 hrs|5224" +-82.462788,27.269893,"WAWA [Diesel]-Sarasota,FL","5321 Clark Rd, Sarasota,FL 34233|(941) 328-3119|24 hrs|5304" +-81.434122,27.464911,"WAWA [Diesel]-Sebring,FL","3838 US Hwy 27 S, Sebring,FL 33870|(863) 328-4934|24 hrs|5370" +-81.5038,27.539963,"WAWA [Diesel]-Sebring,FL","6400 US 27 N, Sebring,FL 33870|(863) 328-4940|24 hrs|5373" +-82.3029687,27.9814505,"WAWA [Diesel]-Seffner,FL","11623 E Dr MLK Blvd, Seffner,FL 33584|(813) 820-1595|24 hrs|5335" +-82.761,27.83857,"WAWA [Diesel]-Seminole,FL","8800 Park Blvd, Seminole,FL 33777|(727) 452-6467|24 hrs|5215" +-81.403532,29.916824,"WAWA [Diesel]-St Augustine,FL","2222 SR 16, St Augustine,FL 32084|(904) 659-0083|24 Hrs|5361" +-81.25678,28.24667,"WAWA [Diesel]-St Cloud,FL","1125 E Irlo Bronson Memorial Hwy, St Cloud,FL 34769|(407) 891-7025|24 hrs|5123" +-80.252226,27.175316,"WAWA [Diesel]-Stuart,FL","2401 S Kanner Hwy, Stuart,FL 34994|(772) 228-4780|24 hrs|5204" +-80.207115,27.135353,"WAWA [Diesel]-Stuart,FL","5745 SE Federal Hwy, Stuart,FL 34997|(772) 419-9766|12:AM-12:AM|5307" +-80.2514171,27.190476,"WAWA [Diesel]-Stuart,FL","983 SE Federal Hwy, Stuart,FL 34994|(772) 646-0876|24 hrs|5329" +-80.2765,26.19313,"WAWA [Diesel]-Sunrise,FL","9400 W Commercial Blvd, Sunrise,FL 33351|(954) 256-9242|24 hrs|5236" +-82.502944,28.09299,"WAWA [Diesel]-Tampa,FL","15524 N Dale Mabry Hwy, Tampa,FL 33618|(727) 400-3988|24 hrs|5191" +-82.47773,27.995433,"WAWA [Diesel]-Tampa,FL","1760 Hillsborough Ave, Tampa,FL 33603|(813) 873-3649|24 hrs|5183" +-82.431464,28.068638,"WAWA [Diesel]-Tampa,FL","2325 E Fletcher Ave, Tampa,FL 33612|(813) 977-7493|24 hrs|5199" +-82.402875,27.965711,"WAWA [Diesel]-Tampa,FL","2502 N 50th St, Tampa,FL 33619|(813) 603-1910|24 hrs|5231" +-82.34911,27.92329,"WAWA [Diesel]-Tampa,FL","2604 South US Highway 301, Tampa,FL 33619|(813) 620-3076|24 hrs|5127" +-82.42684,28.0533,"WAWA [Diesel]-Tampa,FL","2901 E Fowler Ave, Tampa,FL 33612|(813) 971-5434|24 hrs|5107" +-82.50448,27.89325,"WAWA [Diesel]-Tampa,FL","3660 W Gandy Blvd, Tampa,FL 33611|(813) 502-0103|24 hrs|5301" +-82.36105,27.98099,"WAWA [Diesel]-Tampa,FL","3942 N US Highway 301, Tampa,FL 33619|(813) 623-3295|24 hrs|5114" +-82.504918,27.948963,"WAWA [Diesel]-Tampa,FL","401 N Dale Mabry Hwy, Tampa,FL 33609|(813) 874-2760|24 hrs|5122" +-82.40086,28.03199,"WAWA [Diesel]-Tampa,FL","5011 E Busch Blvd, Tampa,FL 33617|(813) 524-5378|24 hrs|5319" +-82.542406,28.024873,"WAWA [Diesel]-Tampa,FL","5702 W Waters Ave, Tampa,FL 33634|(813) 884-2031|24 hrs|5139" +-82.5623539,27.996405,"WAWA [Diesel]-Tampa,FL","7408 Hillsborough Ave, Tampa,FL 33610|(813) 620-0480|24 hrs|5146" +-82.56451,27.99618,"WAWA [Diesel]-Tampa,FL","7540 W Hillsborough Ave, Tampa,FL 33615|(813) 392-3656|24 hrs|5311" +-82.45207,28.08857,"WAWA [Diesel]-Tampa,FL","804 E Bears Ave, Tampa,FL 33613|(813) 631-5131|24 hrs|5154" +-82.459115,28.024892,"WAWA [Diesel]-Tampa,FL","8325 N Florida Ave, Tampa,FL 33604|(813) 867-2100|24 hrs|5196" +-82.506386,28.026353,"WAWA [Diesel]-Tampa,FL","8458 N Dale Mabry Hwy, Tampa,FL 33614|(813) 820-1228|24 hrs|5251" +-82.24513,27.894342,"WAWA [Diesel]-Valrico,FL","2224 Bloomingdale Ave, Valrico,FL 33594|(813) 654-8763|24 hrs|5151" +-82.235927,27.938559,"WAWA [Diesel]-Valrico,FL","2926 E State Rd 60, Valrico,FL 33594|(813) 661-6414|24 hrs|5152" +-82.405602,27.049506,"WAWA [Diesel]-Venice,FL","2344 South Tamiami Trail, Venice,FL 34293|(941) 518-0710|24 hrs|5216" +-82.383868,27.105546,"WAWA [Diesel]-Venice,FL","2970 Executive Dr, Venice,FL 34292|(941) 518-7404|24 hrs|5225" +-80.3892536,27.6228171,"WAWA [Diesel]-Vero Beach,FL","1180 US Hwy 1, Vero Beach,FL 32960|(772) 323-8736|24 hrs|5201" +-80.512977,27.6394497,"WAWA [Diesel]-Vero Beach,FL","9050 20th St, Vero Beach,FL 32966|(772) 453-4096|24 hrs|5202" +-82.355465,28.184965,"WAWA [Diesel]-Wesley Chapel,FL","27866 SR 56, Wesley Chapel,FL 33543|(813) 494-2329|24 hrs|5226" +-82.3536088,28.2367967,"WAWA [Diesel]-Wesley Chapel,FL","28225 SR 54, Wesley Chapel,FL 33544|(813) 395-0087|24 hrs|5240" +-80.67367,28.07852,"WAWA [Diesel]-West Melbourne,FL","3175 W New Haven Ave, West Melbourne,FL 32904|(321) 952-4923|24 hrs|5192" +-80.646,28.03606,"WAWA [Diesel]-West Melbourne,FL","895 Palm Bay Rd, West Melbourne,FL 32904|(321) 574-8807|24 hrs|5318" +-80.074118,26.690238,"WAWA [Diesel]-West Palm Beach,FL","1530 Belvedere Rd, West Palm Beach,FL 33405|(561) 420-4758|24 hrs|5211" +-80.119004,26.706633,"WAWA [Diesel]-West Palm Beach,FL","4950 Okeechobee Blvd, West Palm Beach,FL 33417|(561) 467-6322|24 hrs|5302" +-82.333158,27.711592,"WAWA [Diesel]-Wimauma,FL","16620 S US 301, Wimauma,FL 33598|(813) 494-2579|24 hrs|5198" +-81.583898,28.55147,"WAWA [Diesel]-Winter Garden,FL","13501 W Colonial Dr, Winter Garden,FL 34787|(407) 301-7017|24 hrs|5210" +-81.646994,28.3478,"WAWA [Diesel]-Winter Garden,FL","8849 W Irlo Bronson Memorial Hwy, Winter Garden,FL 34787|(407) 477-1050|24 hrs|5119" +-81.73009,28.00805,"WAWA [Diesel]-Winter Haven,FL","1490 3rd St SW, Winter Haven,FL 33880|(863) 294-7134|24 hrs|5126" +-81.2798956,28.6115062,"WAWA [Diesel]-Winter Park,FL","4256 Aloma Ave, Winter Park,FL 32792|(407) 501-6566|24 hrs|5280" +-81.365588,28.605056,"WAWA [Diesel]-Winter Park,FL","901 N Orlando Ave, Winter Park,FL 32789|(407) 629-0167|24 hrs|5135" +-82.1881517,28.2505642,"WAWA [Diesel]-Zephyrhills,FL","6450 Gall Blvd, Zephyrhills,FL 33542|(813) 393-1807|24 hrs|5285" +-76.1605382,39.5131115,"WAWA [Diesel]-Aberdeen,MD","231 N Philadelphia Blvd, Aberdeen,MD 21001|(410) 273-7102|24 hrs|567" +-76.310974,39.465042,"WAWA [Diesel]-Abingdon,MD","3500 Woodsdale Rd, Abingdon,MD 21009-2006|(410) 569-6347|24 hrs|581" +-76.45634,39.02701,"WAWA [Diesel]-Annapolis,MD","327 Buschs Frontage Road, Annapolis,MD 21401 |(410) 757-2328|24 hrs|569" +-76.532514,38.994891,"WAWA [no fuel]-Annapolis,MD","628 Admiral Dr, Annapolis,MD 21401-2151|(410) 974-6436|24 hrs|549" +-76.759073,39.333183,"WAWA [Diesel]-Baltimore,MD","2845 Rolling Rd, Baltimore,MD 21244|(410) 448-2019|24 hrs|598" +-76.673244,39.2464403,"WAWA [Diesel]-Baltimore,MD","3716 Washington Blvd, Baltimore,MD 21227|(410) 247-2620|24 hrs|8504" +-76.55387,39.2771,"WAWA [Diesel]-Baltimore,MD","4901 Boston St, Baltimore,MD 21224|(410) 376-7716|24 Hrs|8511" +-76.535408,39.287352,"WAWA [Diesel]-Baltimore,MD","6541 Eastern Ave, Baltimore,MD 21224|(410) 631-7813|24 hrs|8502" +-76.314656,39.546103,"WAWA [Diesel]-Bel Air,MD","1505 E Churchville Rd, Bel Air,MD 21014|(410) 838-8539|24 hrs|557" +-76.353244,39.568537,"WAWA [Diesel]-Bel Air,MD","601 Hoagie Dr, Bel Air,MD 21014|(410) 638-7457|24 hrs|586" +-76.357674,39.522241,"WAWA [Diesel]-Bel Air,MD","709 Bel Air Rd, Bel Air,MD 21014-4209|(410) 638-5049|24 hrs|553" +-76.917076,39.027327,"WAWA [Diesel]-Beltsville,MD","10515 Baltimore Ave, Beltsville,MD 20705|(301) 595-2013|24 hrs|" +-76.875853,38.664515,"WAWA [Diesel]-Brandywine,MD","16410 Mckendree Rd, Brandywine,MD 20613-8063|(301) 782-7432|24 hrs|580" +-76.519245,38.302867,"WAWA [Diesel]-California,MD","23141 Three Notch Rd, California,MD 20619|(301) 866-6080|24 hrs|592" +-76.066119,38.561059,"WAWA [Diesel]-Cambridge,MD","601 Sunburst Hwy, Cambridge,MD 21613|(410) 901-9794|24 hrs|563" +-76.85071,38.87005,"WAWA [Diesel]-Capitol Heights,MD","1401 Hampton Park Blvd, Capitol Heights,MD 20743|(301) 336-1704|24 hrs|" +-76.773827,38.501464,"WAWA [Diesel]-Charlotte Hall,MD","30320 Three Notch Rd, Charlotte Hall,MD 20622-3189|(301) 290-5971|24 hrs|588" +-76.636363,39.466146,"WAWA [Diesel]-Cockeysville,MD","10111 York Rd, Cockeysville,MD 21030-3305|(410) 628-1050|24 hrs|8506" +-76.4701837,39.2685803,"WAWA [Diesel]-Dundalk,MD","4017 North Point Blvd, Dundalk,MD 21222-3619|(410) 388-1890|24 hrs|578" +-76.661084,38.717562,"WAWA [Diesel]-Dunkirk,MD","10205 Kirksville Lane, Dunkirk,MD 20754|(410) 286-7235|24 hrs|573" +-76.061186,38.771783,"WAWA [Diesel]-Easton,MD","8118 Ocean Gateway, Easton,MD 21601|(410) 819-3830|24 hrs|589" +-76.5678245,38.9358473,"WAWA [Diesel]-Edgewater,MD","3166 Solomons Island Rd, Edgewater,MD 21037 |(410) 956-7003|24 hrs|577" +-75.791648,39.652343,"WAWA [Diesel]-Elkton,MD","1657 Elkton Road, Elkton,MD 21921-4129 |(410) 996-8621|24 hrs|547" +-75.840961,39.603748,"WAWA [Diesel]-Elkton,MD","302 W Pulaski Highway, Elkton,MD 21921-5279 |(443) 485-8455|24 hrs|8512" +-76.48175,39.335986,"WAWA [Diesel]-Essex,MD","8731 Pulaski Hwy, Essex,MD 21221|(410) 780-9970|24 hrs|558" +-76.383616,39.503168,"WAWA [Diesel]-Fallston,MD","204 Connolly Rd, Fallston,MD 21047-2526|(410) 638-6742|24 hrs|8500" +-77.438822,39.416732,"WAWA [Diesel]-Frederick,MD","1001 W Patrick St, Frederick,MD 21702-3903 |(301) 300-9524|24 hrs|8513" +-77.401327,39.381388,"WAWA [Diesel]-Frederick,MD","5440 Urbana Pike, Frederick,MD 21703-7332 |(301) 694-4618|24 hrs|8505" +-77.438227,39.392199,"WAWA [Diesel]-Frederick,MD","5833 Ballanger Creek Pike, Frederick,MD 21703 |(301) 668-1502|24 hrs|554" +-76.656668,39.05658,"WAWA [Diesel]-Gambrills,MD","701 Annapolis Rd, Gambrills,MD 21054-1309 |(410) 923-5240|24 hrs|595" +-76.6153073,39.1801058,"WAWA [Diesel]-Glen Burnie,MD","7124 Ritchie Hwy, Glen Burnie,MD 21061-2904|(410) 553-0129|24 hrs|8503" +-76.649106,39.141621,"WAWA [Diesel]-Glen Burnie,MD","7800 Parke West Dr, Glen Burnie,MD 21061-4701|(410) 424-2493|24 hrs|8507" +-76.193472,38.965602,"WAWA [Diesel]-Grasonville,MD","101 Hissey Road, Grasonville,MD 21638|(443) 390-2460|24 hrs|8518" +-76.745522,39.152499,"WAWA [Diesel]-Hanover,MD","7710 Milestone Pkwy, Hanover,MD 21076|(410) 709-1039|24 hrs|8525" +-76.345564,39.439938,"WAWA [Diesel]-Joppa,MD","1419 S Mountain Rd, Joppa,MD 21085-3236|(410) 538-3131|24 hrs|599" +-76.827602,38.956099,"WAWA [Diesel]-Lanham,MD","10620 Martin Luther King Jr Hwy, Lanham,MD 20706|(667) 770-7088|24 Hrs|8523" +-76.841149,39.095719,"WAWA [Diesel]-Laurel,MD","9600 Fort Meade Rd, Laurel,MD 20707|(240) 594-0226|24 hrs|8515" +-76.476755,38.286928,"WAWA [Diesel]-Lexington Park,MD","22530 Three Notch Rd, Lexington Park,MD 20653|(240) 725-0531|24 hrs|587" +-76.715881,38.42676,"WAWA [Diesel]-Mechanicsville,MD","27605 Three Notch Rd, Mechanicsville,MD 20659|(301) 818-0450|24 hrs|583" +-76.631467,39.11066,"WAWA [Diesel]-Millersville,MD","8300 Veterans Hwy, Millersville,MD 21108-1409|(410) 729-9991|24 hrs|572" +-75.930463,39.612935,"WAWA [Diesel]-North East,MD","2031 Pulaski Highway, North East,MD 21901-3740|(410) 287-3432|24 hrs|585" +-76.457049,39.417971,"WAWA [Diesel]-Perry Hall,MD","9809 Belair Rd, Perry Hall,MD 21128|(410) 921-3819|24 hrs|8522" +-76.826187,39.456186,"WAWA [Diesel]-Reisterstown,MD","516 Main St, Reisterstown,MD 21136|(410) 833-0201|24 hrs|8501" +-75.565815,38.420518,"WAWA [Diesel]-Salisbury,MD","2740 North Salisbury Blvd, Salisbury,MD 21801|(410) 548-7946|24 hrs|561" +-75.600582,38.358147,"WAWA [Diesel]-Salisbury,MD","668 S Salisbury Blvd, Salisbury,MD 21801|(410) 677-0384|24 hrs|555" +-76.268302,39.636951,"WAWA [Diesel]-Street,MD","3530 Conowingo Road, Street,MD 21154-1944 |(410) 457-3411|24 hrs|559" +-76.904004,38.806801,"WAWA [Diesel]-Suitland,MD","6101 Allentown Rd, Suitland,MD 20746|(240) 673-3133|24 hrs|8514" +-76.9488532,39.4036419,"WAWA [Diesel]-Sykesville,MD","1310 Liberty Rd, Sykesville,MD 21784|(443) 885-0046|24 hrs|8529" +-76.575292,39.39641,"WAWA [Diesel]-Towson,MD","1260 E Joppa Rd, Towson,MD 21284|(443) 390-2616|24 hrs|8510" +-76.720093,38.889027,"WAWA [Diesel]-Upper Marlboro,MD","163 Southeast Crain Hwy, Upper Marlboro,MD 20774-8804|(301) 218-3154||562" +-76.918598,38.629453,"WAWA [Diesel]-Waldorf,MD","11505 Berry Rd, Waldorf,MD 20603|(301) 363-7010|24 hrs|565" +-76.93707,38.595175,"WAWA [Diesel]-White Plains,MD","4210 Crain Hwy [@ Billigsley], White Plains,MD 20695|(301) 645-0831|24 hrs|568" +-76.598791,38.557206,"WAWA [Diesel]-Prince Frederick,MD ","305 Market Square Dr, Prince Frederick,MD 20678|(410) 414-7247|24 hrs|591" +-74.509142,39.432328,"WAWA [no fuel]-Absecon,NJ","611 New Jersey Avenue, Absecon,NJ 08201|(609) 646-8156|24 hrs|736" +-74.52785,39.44658,"WAWA [Diesel]-Absecon,NJ","719 Fifth Ave, Absecon,NJ 08205|(609) 652-6423|24 hrs|968" +-74.457553,39.492267,"WAWA [no fuel]-Absecon,NJ","8 South New York Road, Absecon,NJ 08205|(609) 652-4036|24 hrs|482" +-75.06542,39.89048,"WAWA [no fuel]-Audubon,NJ","320 S White Horse Pike, Audubon,NJ 08106|(856) 547-9292|6 am-11 pm|730" +-74.723256,39.098444,"WAWA [no fuel]-Avalon,NJ","2701 Ocean Drive, Avalon,NJ 08202|(609) 967-3326|6 am-11 pm|432" +-74.28724,40.57685,"WAWA [Diesel]-Avenel,NJ","930 US Hwy 1 North, Avenel,NJ 07001|(732) 750-0532|24 hrs|8323" +-74.213153,39.767468,"WAWA [no fuel]-Barnegat,NJ","550 N Main Street, Barnegat,NJ 08005|(609) 698-1812|24 hrs|441" +-74.253922,39.75918,"WAWA [Diesel]-Barnegat,NJ","945 West Bay Ave, Barnegat,NJ 08005|(609) 607-3362|24 hrs|8309" +-75.045269,39.871817,"WAWA [Diesel]-Barrington,NJ","280 White Horse Pike, Barrington,NJ 08007|(856) 546-4936|24 hrs|8340" +-74.169015,39.923725,"WAWA [Diesel]-Bayville,NJ","220 US Rt 9, Bayville,NJ 08721|(732) 237-3050|24 hrs|931" +-74.22414,39.58526,"WAWA [no fuel]-Beach Haven,NJ","13115 Long Beach Blvd, Beach Haven,NJ 08008|(609) 492-1960|6 am-11 pm|977" +-74.173241,40.788982,"WAWA [Diesel]-Belleville,NJ","11 South Franklin Ave, Belleville,NJ 07109|(862) 300-5508|24 Hrs|8441" +-75.09965,39.86481,"WAWA [Diesel]-Bellmawr,NJ","112 Edgewood Drive, Bellmawr,NJ 08031|(856) 931-6906|24 hrs|396" +-75.110924,39.877012,"WAWA [no fuel]-Bellmawr,NJ","1155 West Browning Road, Bellmawr,NJ 08031|(856) 933-2055|24 hrs|317" +-74.95115,39.80283,"WAWA [Diesel]-Berlin,NJ","201 W White Horse Pike, Berlin,NJ 08009|(856) 768-5117|24 hrs|8310" +-74.92216,39.79437,"WAWA [no fuel]-Berlin,NJ","400 South Route 73, Berlin,NJ 08009|(856) 753-9003|24 hrs|391" +-75.039672,39.795893,"WAWA [Diesel]-Blackwood,NJ","1301 Little Gloucester Road , Blackwood,NJ 08012 |(856) 227-4159|24 hrs|967" +-75.062195,39.833072,"WAWA [no fuel]-Blackwood,NJ","2 Somersdale Rd, Blackwood,NJ 08012|(856) 232-4727|24 hrs|392" +-75.0602798,39.7950592,"WAWA [Diesel]-Blackwood,NJ","800 Blackwood Pike, Blackwood,NJ 08012|(856) 374-4080|24 hrs|998" +-74.7066,40.12762,"WAWA [no fuel]-Bordentown,NJ","1076 Rt 206, Bordentown,NJ 08505|(609) 291-2081|24 hrs|919" +-74.7040367,40.140425,"WAWA [Diesel]-Bordentown,NJ","237 Rt 130, Bordentown,NJ 08505|(609) 888-6067|24 hrs|8345" +-74.14495,40.02972,"WAWA [Diesel]-Brick,NJ","116 Brick Blvd, Brick,NJ 08723-7125|(732) 864-1704|24 hrs|997" +-74.120342,40.071356,"WAWA [Diesel]-Brick,NJ","1902 Rt 88, Brick,NJ 08724|(848) 209-1559|12am-12am|8372" +-74.108065,40.038107,"WAWA [no fuel]-Brick,NJ","383 Drum Point Rd, Brick,NJ 08723|(732) 477-5938|24 hrs|733" +-74.151376,40.056617,"WAWA [Diesel]-Brick,NJ","535 Rt 70, Brick,NJ 08723|(732) 994-6552|12am - 12pm|8383" +-74.13923,40.05381,"WAWA [no fuel]-Brick,NJ","595 Brick Blvd, Brick,NJ 08723|(732) 451-0259|24 hrs|923" +-74.144739,40.097447,"WAWA [no fuel]-Brick,NJ","6 Lanes Mill Road, Brick,NJ 08724|(732) 458-6721|24 hrs|401" +-75.207611,39.46229,"WAWA [Diesel]-Bridgeton,NJ","1090 State Hwy 77, Bridgeton,NJ 08302|(856) 459-3104|24 hrs|966" +-74.563401,40.567862,"WAWA [Diesel]-Bridgewater,NJ","580 Union Ave, Bridgewater,NJ 08807|(732) 648-5551|24 hrs|8341" +-74.39702,39.39427,"WAWA [no fuel]-Brigantine,NJ","3932 Brigantine Boulevard, Brigantine,NJ 08203|(609) 266-2680|24 hrs|713" +-74.36901,39.40427,"WAWA [no fuel]-Brigantine,NJ","813 West Brigantine Blvd, Brigantine,NJ 08203|(609) 266-5518|24 hrs|485" +-75.230568,39.42665,"WAWA [Diesel]-Brigeton,NJ","101 E Broad St, Bridgeton,NJ 08302|(856) 955-1606|24 Hrs|8442" +-75.1149755,39.8777822,"WAWA [Diesel]-Brooklawn,NJ","690 Crescent Blvd, Brooklawn,NJ 08030|(856) 409-0430|24 hrs|8424" +-74.583053,39.969338,"WAWA [no fuel]-Browns Mills,NJ","7 Julistown Road, Browns Mills,NJ 08015|(609) 893-5808|24 hrs|745" +-74.925628,39.514967,"WAWA [Diesel]-Buena,NJ","731 Harding Highway, Buena,NJ 08310|(856) 697-8484|24 hrs|380" +-74.871749,40.050378,"WAWA [Diesel]-Burlington,NJ","1814 Salem Road, Burlington,NJ 08016|(609) 386-5499|24 hrs|382" +-74.840764,40.052166,"WAWA [Diesel]-Burlington,NJ","2003 Mount Holly Rd, Burlington,NJ 08016|(609) 386-2501|24 hrs|943" +-74.87809,40.063135,"WAWA-Burlington,NJ","2060 Rt 130, Burlington,NJ 08016|(609) 499-4093|24 hrs|921" +-74.85013,40.07294,"WAWA [Diesel]-Burlington,NJ","350 E Rt 130 S, Burlington,NJ 08016|(609) 747-7721|4 am-12 am|8314" +-74.3569912,41.0030702,"WAWA [Diesel]-Butler,NJ","1512 Rt 23, Butler,NJ 07405|(862) 339-0887|24 Hrs|8457" +-74.909157,38.946766,"WAWA [no fuel]-Cape May,NJ","1426-1428 Texas Ave, Cape May,NJ 08204|(609) 884-6753|24 hrs|452" +-74.941617,38.983019,"WAWA [Diesel]-Cape May,NJ","3719 Bayshore Rd, Cape May,NJ 08204-3553|(609) 886-0004|24 hrs|980" +-74.825531,39.078031,"WAWA [no fuel]-Cape May Court House,NJ","224 South Main Street, Cape May Court House,NJ 08210|(609) 465-1461|24 hrs|492" +-74.976069,39.861465,"WAWA [no fuel]-Cherry Hill,NJ","100 Springdale Road, Cherry Hill,NJ 08003|(856) 429-5571|24 hrs|374" +-74.997205,39.911867,"WAWA [no fuel]-Cherry Hill,NJ","1110 Route 70 East, Cherry Hill,NJ 08034|(856) 429-0127|24 hrs|732" +-74.9636122,39.9018928,"WAWA [Diesel]-Cherry Hill,NJ","1824 Marlton Pike East , Cherry Hill,NJ 08003-2014 |(856) 988-6412|24 hrs|8311" +-75.008722,39.94134,"WAWA [Diesel]-Cherry Hill,NJ","2428 Route 38, Cherry Hill,NJ 08002 |(856) 258-0681|24 hrs|8402" +-75.028027,39.949382,"WAWA [Diesel]-Cherry Hill,NJ","50 Haddonfield Rd, Cherry Hill,NJ 08002|(856) 662-2110|24 hrs|8325" +-75.046553,39.938512,"WAWA [Diesel]-Cherry Hill,NJ","500 New Jersey Hwy 38, Cherry Hill,NJ 08002|(856) 661-0140|24 hrs|8336" +-75.032369,39.925374,"WAWA [Diesel]-Cherry Hill,NJ","904 Haddonfield Rd, Cherry Hill,NJ 08002|(856) 874-8303|24 hrs|8347" +-74.97349,40.00804,"WAWA [Diesel]-Cinnaminson,NJ","1911 Taylor Lane, Cinnaminson,NJ 08077|(856) 338-8222|24 hrs|8361" +-75.008279,39.986882,"WAWA [Diesel]-Cinnaminson,NJ","2112 Church Rd, Cinnaminson,NJ 08077|(856) 786-2131|24 hrs|8428" +-74.4296,40.157235,"WAWA [Diesel]-Clarksburg,NJ","548 Monmouth Rd, Clarksburg,NJ 08510|(609) 259-9878|24 hrs|909" +-75.056396,39.913055,"WAWA [no fuel]-Collingswood,NJ","1 Haddon Avenue, Collingswood,NJ 08108|(856) 282-2334|24 hrs|468" +-75.070129,39.916276,"WAWA [no fuel]-Collingswood,NJ","668 Haddon Avenue, Collingswood,NJ 08108|(856) 858-4455|6 am-12 am|352" +-74.728475,40.040069,"WAWA [no fuel]-Columbus,NJ","2835 Route 206, Columbus,NJ 08022|(609) 265-8382|24 hrs|387" +-74.284216,40.658567,"WAWA [Diesel]-Cranford,NJ","500 North Avenue E, Cranford,NJ 07016|(908) 952-0554|24 hrs|8379" +-74.511181,40.375179,"WAWA [no fuel]-Dayton,NJ","350 Georges Road, Dayton,NJ 08810|(732) 274-0490|24 hrs|476" +-74.952198,40.016177,"WAWA [Diesel]-Delran,NJ","5010 Rt 130 North, Delran,NJ 08075|(856) 461-7001|24 hrs|8304" +-74.821072,39.190309,"WAWA [no fuel]-Dennisville,NJ","1180 Rt 47 , Dennisville,NJ 08214|(609) 861-7147|24 hrs|470" +-75.1085,39.829778,"WAWA [Diesel]-Deptford,NJ","1465 Clements Bridge Rd, Deptford,NJ 08045|(856) 955-1466|24 Hrs|8351" +-75.094954,39.80633,"WAWA [no fuel]-Deptford,NJ","1536 Hurffville Road, Deptford,NJ 08096|(856) 228-7838|24 hrs|436" +-74.9681915,39.2895492,"WAWA [Diesel]-Dorchester,NJ","3904 Route 47, Dorchester,NJ 08316|(856) 785-0706|24 hrs|759" +-74.422207,40.4359,"WAWA [no fuel]-East Brunswick,NJ","426 Ryders Land, East Brunswick,NJ 08816|(732) 432-7780|24 hrs|914" +-74.052726,40.294327,"WAWA [Diesel]-Eatontown,NJ","151a Hwy 35, Eatontown,NJ 07724|848) 668-4155|12am - 12 am|8368" +-74.047153,40.279204,"WAWA [Diesel]-Eatontown,NJ","308 Highway 35, Eatontown,NJ 07724|(732) 230-1522|24 hrs|8450" +-74.922925,40.035621,"WAWA [Diesel]-Edgewater Park,NJ","4167 S Rt 130, Edgewater Park,NJ 08010|(609) 835-5600|24 hrs|959" +-74.362971,40.512163,"WAWA [Diesel]-Edison,NJ","2720 Woodbridge Ave, Edison,NJ 08837|(732) 670-2673|24 hrs|8365" +-74.393272,40.506699,"WAWA [Diesel]-Edison,NJ","580 Rt 1, Edison,NJ 08817|(848) 290-1151|24 Hours|8406" +-74.6475227,39.52835,"WAWA [Diesel]-Egg Harbor City,NJ","600 White Horse Pike, Egg Harbor City,NJ 08215|(609) 454-8144|24 Hrs|8467" +-74.6458511,39.5275197,"WAWA [Diesel]-Egg Harbor City,NJ","716 White Horse Pike, Egg Harbor City,NJ 08215|(609) 965-4045|24 hrs|936" +-74.643774,39.526553,"WAWA [no fuel]-Egg Harbor City,NJ","907 White Horse Pike, Egg Harbor City,NJ 08215|(609) 965-3490|24 hrs|473" +-74.578222,39.433854,"WAWA [Diesel]-Egg Harbor Township,NJ","2422-28 Tilton Rd, Egg Harbor Township,NJ 08234|(609) 641-2069|24 hrs|920" +-74.637481,39.39048,"WAWA [Diesel]-Egg Harbor Township,NJ","5100 English Creek Rd, Egg Harbor Township,NJ 08234|(609) 653-1351|24 hrs|969" +-74.568399,39.410982,"WAWA [Diesel]-Egg Harbor Township,NJ","6678 Black Horse Pike, Egg Harbor Township,NJ 08234|(609) 645-2639|24 hrs|947" +-74.555745,39.398473,"WAWA [Diesel]-Egg Harbor Township,NJ","6743 Black Horse Pike, Egg Harbor Township,NJ 08234|(609) 646-5013|24 hrs|8333" +-74.199628,40.672945,"WAWA [Diesel]-Elizabeth,NJ","595 Spring St, Elizabeth,NJ 07201|(908) 289-2402|24 hrs|8320" +-75.22893,39.61627,"WAWA [no fuel]-Elmer,NJ","759 Route 40, Elmer,NJ 08318|(856) 358-0680|24 hrs|446" +-74.801106,40.26164,"WAWA [Diesel]-Ewing,NJ","1300 Sylvia St, Ewing,NJ 08618|(609) 583-4874|24 hrs|8360" +-74.27538,40.88723,"WAWA [Diesel]-Fairfield,NJ","28 Little Falls Rd, Fairfield,NJ 07004|(862) 702-9877|24 hrs|8349" +-74.1472533,40.2264523,"WAWA [Diesel]-Farmingdale,NJ","1310 Hwy 34, Farmingdale,NJ 07727|(732) 938-6870|24 hrs|929" +-74.20087,39.8292,"WAWA [Diesel]-Forked River,NJ","444 South Main St, Forked River,NJ 08731|(609) 693-5119|24 hrs|958" +-74.206576,39.860557,"WAWA [Diesel]-Forked River,NJ","800 Lacey Rd, Forked River,NJ 08731|(609) 693-8060|24 hrs|988" +-75.0660134,39.5995492,"WAWA [no fuel]-Franklin,NJ","2585 Delsea Drive, Franklin,NJ 08322|(856) 694-1149|24 hrs|444" +-74.2675924,40.2219551,"WAWA [Diesel]-Freehold,NJ","3303 Rt 9, Freehold,NJ 07728|(848) 299-4733|24 Hrs|8473" +-74.24222,40.2203,"WAWA [Diesel]-Freehold,NJ","909 Howell Rd, Freehold,NJ 07728|(732) 866-0096|24 hrs|910" +-74.575079,39.479237,"WAWA [Diesel]-Galloway,NJ","275 W White Horse Pike, Galloway,NJ 08205|(609) 593-3765|24 hrs|8343" +-74.493476,39.462471,"WAWA [Diesel]-Galloway,NJ","336 South Pitney Road, Galloway,NJ 08205|(609) 246-5423|24 hrs|438" +-74.118976,40.881223,"WAWA [Diesel]-Garfield,NJ","7 Jewell St, Garfield,NJ 07026|(973) 786-3714|24 hrs|8335" +-74.962684,39.841344,"WAWA [Diesel]-Gibbsboro,NJ","3 Lakeview Dr North, Gibbsboro,NJ 08026|(856) 955-5568|24 Hrs|8453" +-74.957988,39.83733,"WAWA [no fuel]-Gibbsboro,NJ","71 South Lakeview Drive, Gibbsboro,NJ 08026|(856) 783-9812|24 hrs|494" +-75.1130903,39.7165254,"WAWA [Diesel]-Glassboro,NJ","629 N Delsea Drive, Glassboro,NJ 08028|(856) 881-7098|24 hrs|8327" +-75.111152,39.887744,"WAWA [no fuel]-Gloucester City,NJ","1317 Market Street, Gloucester City,NJ 08030|(856) 456-8566|24 hrs|778" +-74.036523,40.862705,"WAWA [Diesel]-Hackensack,NJ","505 S River St, Hackensack,NJ 07601|(201) 488-1214|24 hrs|8338" +-74.847131,39.973608,"WAWA [no fuel]-Hainesport,NJ","1301 Route 38, Hainesport,NJ 08036|(609) 261-9384|24 hrs|347" +-74.664845,40.228627,"WAWA [Diesel]-Hamilton,NJ","1200 State Highway 33, Hamilton,NJ 08690|(856) 982-3241|24 hrs|8357" +-74.709499,40.233383,"WAWA [no fuel]-Hamilton,NJ","2004 Nottingham Way, Hamilton,NJ 08619|(609) 586-6616|24 hrs|349" +-74.80548,39.6337,"WAWA [no fuel]-Hammonton,NJ","100 12th St, Hammonton,NJ 08037|(609) 567-7735|24 hrs|383" +-74.789708,39.647892,"WAWA [Diesel]-Hammonton,NJ","2 North White Horse Pike, Hammonton,NJ 08037|(609) 630-4050|24 hrs|8431" +-74.796425,39.652138,"WAWA [no fuel]-Hammonton,NJ","214 North White Horse Pike, Hammonton,NJ 08037|(609) 567-4024|24 hrs|495" +-74.18268,40.43342,"WAWA [no fuel]-Hazlet,NJ","1181 Rt 36, Hazlet,NJ 07730|(732) 888-0034|24 hrs|911" +-74.191039,40.429007,"WAWA [Diesel]-Hazlet,NJ","1413 Highway 36, Hazlet,NJ 07730|(732) 523-5509|3am-2am|8417" +-74.549427,40.260905,"WAWA [no fuel]-Hightstown,NJ","104 Hickory Corner Road, Hightstown,NJ 08520|(609) 448-9552|24 hrs|735" +-74.633305,40.518685,"WAWA [no fuel]-Hillsborough,NJ","381 Triangle Road, Hillsborough,NJ 08844|(908) 874-3094|24 hrs|439" +-74.144242,40.119926,"WAWA [no fuel]-Howell,NJ","157 Newtons Corner Rd, Howell,NJ 07731|(732) 840-1890|24 hrs|343" +-74.2424245,40.1782575,"WAWA [no fuel]-Howell,NJ","2485 Rt 9 North, Howell,NJ 07731|(732) 364-3771|24 hrs|955" +-74.22604,40.13682,"WAWA [Diesel]-Howell,NJ","4690 US Hwy 9, Howell,NJ 07731|(732) 364-0938|24 hrs|938" +-74.28541,40.12359,"WAWA [no fuel]-Jackson,NJ","10 Manhattan Avenue, Jackson,NJ 08527|(732) 928-4333|24 hrs|348" +-74.26683,40.083515,"WAWA [Diesel]-Jackson,NJ","1120 E Veterans Hwy, Jackson,NJ 08527|(732) 364-7323|24 hrs|933" +-74.298447,40.138218,"WAWA [Diesel]-Jackson,NJ","329 North County Line Rd, Jackson,NJ 08527|(732) 833-0694|24 hrs|8328" +-74.34195,40.111789,"WAWA [no fuel]-Jackson,NJ","9 Bennetts Mills Road, Jackson,NJ 08527|(732) 928-3457|24 hrs|309" +-74.45526,40.37858,"WAWA [Diesel]-Jamesburg,NJ","885 Cranbury South River Rd, Jamesburg,NJ 08831|(732) 521-2915|24 hrs|986" +-74.136086,40.749056,"WAWA [Diesel]-Kearny,NJ","200 Harrison Ave, Kearny,NJ 07032|(201) 991-4091|24 hrs|8318" +-74.5475055,40.4326083,"WAWA [Diesel]-Kendall Park,NJ","3222 Rt 27, Kendall Park,NJ 08824|(908) 679-9779|24 hrs|8366" +-74.22515,40.44028,"WAWA [Diesel]-Keyport,NJ","204 Hwy 35, Keyport,NJ 07735|(732) 888-5090|24 hrs|976" +-74.598027,40.96171,"WAWA [Diesel]-Lake Hopatcong,NJ","767 SR 15 South, Lake Hopatcong,NJ 07849|(862) 842-9166|24 hrs|8429" +-74.21124,40.04911,"WAWA [Diesel]-Lakewood,NJ","135 Route 70, Lakewood,NJ 08701-5820|(732) 942-3914|24 hrs|8319" +-74.204059,40.105462,"WAWA [no fuel]-Lakewood,NJ","605 East County Line Road, Lakewood,NJ 08701|(732) 364-4452|24 hrs|743" +-74.172431,39.862449,"WAWA [Diesel]-Lanoka Harbor,NJ","701 North Main Street, Lanoka Harbor,NJ 08734|(609) 693-0357|24 hrs|794" +-74.0637,39.99446,"WAWA [no fuel]-Lavallette,NJ","3485 Route 35 North, Lavallette,NJ 08735-3231|(732) 830-2760|24 hrs|949" +-74.706827,40.273642,"WAWA [Diesel]-Lawrence Township,NJ","2936 Brunswick Pike, Lawrence Township,NJ 08648|(609) 771-6756|5 am- 12 am|8339" +-74.066594,40.415448,"WAWA [Diesel]-Leonardo,NJ","75 Appleton Ave, Leonardo,NJ 07737|(732) 291-2813|24 hrs|8306" +-74.98982,39.81537,"WAWA [Diesel]-Lindenwold,NJ","421 White Horse Pike, Lindenwold,NJ 08021|(856) 435-4083|24 hrs|973" +-75.017885,39.812398,"WAWA [Diesel]-Lindenwold,NJ","635 Chews Landing Road, Lindenwold,NJ 08021|(856) 441-4097|24 hrs|8382" +-74.369371,39.581249,"WAWA [Diesel]-Little Egg Harbor,NJ","195 Mathistown Rd, Little Egg Harbor,NJ 08087|(609) 296-0576|24 hrs|978" +-74.072975,40.891516,"WAWA [Diesel]-Lodi,NJ","150 Essex St, Lodi,NJ 07644|(201) 843-2941|24 hrs|8326" +-74.806437,39.98165,"WAWA [Diesel]-Lumberton,NJ","1522 Rt 38, Lumberton,NJ 08048|(609) 267-3474|24 hrs|957" +-75.032366,39.854735,"WAWA [no fuel]-Magnolia,NJ","101 S Warwick Rd, Magnolia,NJ 08049|(856) 435-2550|24 hrs|355" +-75.052635,39.572028,"WAWA [Diesel]-Malaga,NJ","450 Delsea Drive, Malaga,NJ 08328|(856) 694-4490|24 hrs|486" +-74.290922,39.726974,"WAWA [no fuel]-Manahawkin,NJ","1400 Route 72, Manahawkin,NJ 08050|(609) 597-8278|24 hrs|744" +-74.25023,39.68797,"WAWA [Diesel]-Manahawkin,NJ","320 Rt 72 East, Manahawkin,NJ 08050|(609) 978-4153|24 hrs|994" +-74.253243,39.708056,"WAWA [Diesel]-Manahawkin,NJ","470 North Main St, Manahawkin,NJ 08050|(609) 978-4150|24 hrs|935" +-74.36744,40.25543,"WAWA [Diesel]-Manalapan,NJ","146 Woodward Ave, Manalapan,NJ 07726|(732) 446-9650|24 hrs|993" +-74.319082,40.33579,"WAWA [no fuel]-Manalapan,NJ","345 Union Hill Road, Manalapan,NJ 07726|(732) 536-9679|24 hrs|754" +-74.06867,40.12349,"WAWA [no fuel]-Manasquan,NJ","2432 Highway 35, Manasquan,NJ 08736-1102|(732) 528-9734|24 hrs|917" +-75.18307,39.78224,"WAWA [no fuel]-Mantua,NJ","400 Bridgeton Pike, Mantua,NJ 08051|(856) 468-2524|24 hrs|398" +-74.97026,39.9372,"WAWA [Diesel]-Maple Shade,NJ","2801 Rt 73 South, Maple Shade,NJ 08052|(856) 312-3305|24 hrs|8419" +-74.985988,39.949985,"WAWA [Diesel]-Maple Shade,NJ","2920 Route 73 N, Maple Shade,NJ 08052-2000|(856) 667-1346|24 hrs|8316" +-75.002781,39.957008,"WAWA [no fuel]-Maple Shade,NJ","55 North Fork Landing Road, Maple Shade,NJ 08052|(856) 779-2487|24 hrs|740" +-74.96879,39.94321,"WAWA [Diesel]-Maple Shade,NJ","600 Route 38 East , Maple Shade,NJ 08052 |(856) 638-1862|24 hrs|8337" +-74.252504,40.722832,"WAWA [Diesel]-Maplewood,NJ","1511 Springfield Ave, Maplewood,NJ 07040|(973) 885-0575|24 hrs|8350" +-74.513945,39.322048,"WAWA [no fuel]-Margate City,NJ","9300 Ventnor Ave, Margate City,NJ 08402|(609) 822-5167|24 hrs|950" +-74.3062244,40.3529314,"WAWA [no fuel]-Marlboro,NJ","3 County Road 520 [ste 1], Marlboro,NJ 07746-2258|(732) 972-4515|24 hrs|784" +-74.246745,40.332522,"WAWA [no fuel]-Marlboro,NJ","455 Country Rd 520 [ste 1], Marlboro,NJ 07746|(732) 972-4515|24 hrs|784" +-74.932626,39.894086,"WAWA [Diesel]-Marlton,NJ","250 W Route 70, Marlton,NJ 08053-1634|(856) 983-7402|24 hrs|8334" +-74.922709,39.914859,"WAWA [Diesel]-Marlton,NJ","270 E Green Tree Road, Marlton,NJ 08053|(856) 985-2925|24 hrs|369" +-74.92317,39.88508,"WAWA [no fuel]-Marlton,NJ","401 Brick Blvd & Rt 73, Marlton,NJ 08053-2073|(856) 596-8717|24 hrs|418" +-74.6494005,39.2633542,"WAWA [Diesel]-Marmora,NJ","30 S Shore Road, Marmora,NJ 08223|(609) 390-9510|24 hrs|758" +-74.2895734,40.4254343,"WAWA [Diesel]-Matawan,NJ","67 Hwy 34, Matawan,NJ 07747|(732) 335-5500|24 hrs|934" +-74.725704,39.454454,"WAWA [no fuel]-Mays Landing,NJ","300 N Route 50, Mays Landing,NJ 08330|(609) 625-8211|24 hrs|749" +-74.629718,39.444905,"WAWA [Diesel]-Mays Landing,NJ","4262 Black Horse Pike, Mays Landing,NJ 08330|(609) 484-2424|24 hrs|941" +-74.702352,39.446411,"WAWA [Diesel]-Mays Landing,NJ","5201 Harding Hwy, Mays Landing,NJ 08330|(609) 909-0418|24 hrs|925" +-74.82641,39.91534,"WAWA [no fuel]-Medford,NJ","199 Mt Holly Road, Medford,NJ 08055|(609) 654-1363|24 hrs|353" +-74.843897,39.869706,"WAWA [no fuel]-Medford,NJ","211 Tuckerton Road, Medford,NJ 08055|(609) 654-9475|24 hrs|748" +-74.804865,39.90423,"WAWA [Diesel]-Medford,NJ","257 Route 70, Medford,NJ 08055-9421|(609) 714-9016|24 hrs|915" +-75.041586,39.395066,"WAWA [no fuel]-Millville,NJ","13 W Main Street, Millville,NJ 08332|(856) 825-5379|24 hrs|710" +-75.017483,39.393588,"WAWA [Diesel]-Millville,NJ","1711 East Main Street, Millville,NJ 08332|(856) 327-0655|24 hrs|720" +-75.03741,39.42166,"WAWA [Diesel]-Millville,NJ","2105 North Second Street, Millville,NJ 08332|(856) 327-3661|24 hrs|964" +-75.055468,39.398052,"WAWA [Diesel]-Millville,NJ","624 West Main St, Millville,NJ 08332|(856) 327-7400|24 hrs|944" +-74.470462,40.322326,"WAWA [no fuel]-Monroe Township,NJ","337 Applegarth Road, Monroe Township,NJ 08831|(609) 395-9275|24 hrs|365" +-74.472672,40.258794,"WAWA [Diesel]-Monroe Township,NJ","960 Rt 33, Monroe Township,NJ 08831|(609) 371-8904|24 hrs|8330" +-74.951448,39.961441,"WAWA [no fuel]-Moorestown,NJ","236 West Main Street, Moorestown,NJ 08057|(856) 234-2694|24 hrs|725" +-75.0868033,39.8871233,"WAWA [Diesel]-Mount Ephraim,NJ","602 Black Horse Pike, Mount Ephraim,NJ 08059|(856) 456-3508|24 hrs|972" +-74.804629,40.011115,"WAWA [no fuel]-Mount Holly,NJ","798 Woodlane Rd, Mount Holly,NJ 08060|(609) 261-1665|24 hrs|366" +-74.953442,39.927471,"WAWA [Diesel]-Mount Laurel,NJ","1115 Rt 73 & Howard Blvd, Mount Laurel,NJ 08054-5115|(856) 234-3965|24 hrs|960" +-74.87083,39.95293,"WAWA [no fuel]-Mount Laurel,NJ","200 Larchmont Blvd, Mount Laurel,NJ 08054|(856) 231-8961|24 hrs|358" +-74.920038,39.966632,"WAWA [Diesel]-Mount Laurel,NJ","3605 Rt 38, Mount Laurel,NJ 08054|(856) 235-0463|24 hrs|8321" +-74.974216,39.929772,"WAWA [no fuel]-Mount Laurel,NJ","3763 Church Rd, Mount Laurel,NJ 08054|(856) 273-1132|24 hrs|344" +-74.939237,39.940754,"WAWA [no fuel]-Mount Laurel,NJ","720 South Church Road, Mount Laurel,NJ 08057|(856) 234-9624|24 hrs|718" +-75.236234,39.716945,"WAWA [Diesel]-Mullica Hill,NJ","631 Mullica Hill Rd, Mullica Hill,NJ 08062|(856) 256-7641|24 hrs|8308" +-74.026251,40.209043,"WAWA-Neptune,NJ","1344 Corlies Ave, Neptune,NJ 07753-5166|)732) 774-4064|24 hrs|8329" +-74.07738,40.22495,"WAWA [Diesel]-Neptune,NJ","3520 Rt 66, Neptune,NJ 07753-2603|(732) 922-9514|24 hrs|8303" +-74.77715,40.53257,"WAWA [no fuel]-Neshanic Station,NJ","800 Rt 202, Neshanic Station,NJ 08853|(908) 806-0553|24 hrs|916" +-74.535096,40.06753,"WAWA [no fuel]-New Egypt,NJ","1 Maple Avenue, New Egypt,NJ 08533|(609) 758-3668|24 hrs|798" +-74.480388,40.08282,"WAWA [Diesel]-New Egypt,NJ","633 Rt 539, New Egypt,NJ 08533|(609) 758-3061|24 hrs|539" +-74.019217,40.803391,"WAWA [Diesel]-North Bergen,NJ","7408 Tonnelle Ave, North Bergen,NJ 07047|(551) 309-2677|24 Hrs|8353" +-74.50728,40.46069,"WAWA [no fuel]-North Brunswick,NJ","1910 Rt 27, North Brunswick,NJ 08902, (732) 846-7334|24 hrs|912" +-74.469202,40.470479,"WAWA [Diesel]-North Brunswick Township,NJ","933 Livingston Ave, North Brunswick Township,NJ 08902|(908) 922-4677|24 Hrs|8435" +-74.44378,40.62417,"WAWA [Diesel]-North Plainfield,NJ","855 US 22 @ Wilson Ave, North Plainfield,NJ 07060|(908) 344-5535|24 hrs|8397" +-74.79649,39.01215,"WAWA [Diesel]-North Wildwood,NJ","330 W Spruce Ave, North Wildwood,NJ 08260-3058 |(609) 522-0910|24 hrs|8322" +-74.565256,39.362819,"WAWA [no fuel]-Northfield,NJ","2403 New Road, Northfield,NJ 08225|(609) 646-8695|24 hrs|701" +-75.076211,39.900665,"WAWA [no fuel]-Oaklyn,NJ","800 White Horse Pike, Oaklyn,NJ 08107|(856) 858-1543|24 hrs|477" +-74.613112,39.252268,"WAWA [no fuel]-Ocean City,NJ","110 34th Street, Ocean City,NJ 08226|(609) 398-6080|6 am-11 pm|771" +-74.5776677,39.2788552,"WAWA [no fuel]-Ocean City,NJ","124250 West Avenue, Ocean City,NJ 08226|(609) 398-7754|24 hrs|728" +-74.72625,39.16943,"WAWA [Diesel]-Ocean View,NJ","2500 Sea Isle Blvd [unit 1], Ocean View,NJ 08230|(609) 624-9379|24 hrs|465" +-74.33968,40.39064,"WAWA [Diesel]-Old Bridge,NJ","1453 Rt 18, Old Bridge,NJ 08857|(732) 360-3020|24 hrs|940" +-74.354628,40.355805,"WAWA [Diesel]-Old Bridge,NJ","1886 Englishtown Rd, Old Bridge,NJ 08857|(732) 521-3606|24 hrs|989" +-74.308071,40.37746,"WAWA [no fuel]-Old Bridge,NJ","3600 Rt 9 South, Old Bridge,NJ 08857|(732) 591-1032|24 hrs|8315" +-75.02112,40.003625,"WAWA [no fuel]-Palmyra,NJ","600 Cinnaminson Ave, Palmyra,NJ 08065|(856) 829-8368|24 hrs|460" +-74.681451,39.977839,"WAWA [Diesel]-Pemberton,NJ","3 Arneys Mount Rd, Pemberton,NJ 08068-1314|(609) 894-0063|24 hours|982" +-75.022851,39.987283,"WAWA [Diesel]-Pennsauken,NJ","1505 Rt 73 & Remington, Pennsauken,NJ 08110-1325|(856) 663-2251|24 Hrs|952" +-75.05054,39.96417,"WAWA [Diesel]-Pennsauken,NJ","2290 Clement Avenue, Pennsauken,NJ 08110 |(856) 665-0690|24 hours|990" +-75.0660501,39.9330387,"WAWA [Diesel]-Pennsauken,NJ","5221 Rt 70, Pennsauken,NJ 08109|(856) 663-0774|24 hours|965" +-75.083188,39.92898,"WAWA [Diesel]-Pennsauken,NJ","8000 S Crescent Blvd, Pennsauken,NJ 08109|(856) 955-1132|24 Hrs|8449" +-75.516358,39.64065,"WAWA [no fuel]-Pennsville,NJ","2 Carroll Avenue, Pennsville,NJ 08070|(856) 678-8012|24 hrs|750" +-75.494077,39.676714,"WAWA [Diesel]-Pennsville,NJ","418 N Broadway, Pennsville,NJ 08070|(856) 299-0341|24 hours|8332" +-75.1424286,40.6770395,"WAWA [Diesel]-Phillipsburg,NJ","1300 Route 22, Phillipsburg,NJ 08865|(908) 387-9511|24 hours|8313" +-75.175257,40.696392,"WAWA [Diesel]-Phillipsburg,NJ","411 Roseberry St, Phillipsburg,NJ 08865|(908) 454-3192|24 hours|985" +-74.991511,39.784546,"WAWA [no fuel]-Pine Hill,NJ","917 Erial Road, Pine Hill,NJ 08021|(856) 346-8780|24 hrs|362" +-74.42587,40.5459,"WAWA [Diesel]-Piscataway,NJ","555 New Durham Rd, Piscataway,NJ 08854|(908) 274-1954|24 hours|8386" +-75.1265,39.7493,"WAWA [Diesel]-Pitman,NJ","485 Woodbury Glassboro Road, Pitman,NJ 08071|(856) 258-0407|24 hours|8403" +-74.39299,40.634797,"WAWA [Diesel]-Plainfield,NJ","1470 South Ave, Plainfield,NJ 07062|(908) 941-0042|24 Hrs|8464" +-74.521517,39.408004,"WAWA [Diesel]-Pleasantville,NJ","513 West Delilah Rd, Pleasantville,NJ 08232|(609) 641-2428|24 hours|970" +-74.659026,40.341849,"WAWA [no fuel]-Princeton,NJ","152 Alexander St, Princeton,NJ 08540|(609) 924-2845|24 hrs|8331" +-74.291023,40.595678,"WAWA [Diesel]-Rahway,NJ","280 St George Ave, Rahway,NJ 07065|(732) 307-0927|24 hrs|8389" +-74.07589,40.351327,"WAWA [no fuel]-Red Bank,NJ","14 North Bridge Street, Red Bank,NJ 07701|(732) 747-3555|24 hrs|790" +-74.87637,39.01549,"WAWA [Diesel]-Rio Grande,NJ","3601 Route 9 South , Rio Grande,NJ 08242|(609) 889-3122|24 hrs|946" +-74.591445,40.233892,"WAWA [Diesel]-Robbinsville,NJ","1220 Rt 130, Robbinsville,NJ 08691|(609) 905-1161|24 Hrs|8399" +-74.2503182,40.6459173,"WAWA [Diesel]-Roselle,NJ","1187 St George Ave, Roselle,NJ 07203|(908) 941-0801|24 hrs|8392" +-75.076317,39.856286,"WAWA [Diesel]-Runnemede,NJ","825 N Black Horse Pike, Runnemede,NJ 08078|(856) 939-6579|24 hrs|932" +-74.36763,40.45506,"WAWA [no fuel]-Sayreville,NJ","42 Washington Road, Sayreville,NJ 08872|(732) 254-0215|24 hrs|781" +-74.6895,39.15727,"WAWA [no fuel]-Sea Isle City,NJ","3801 Landis Avenue, Sea Isle City,NJ 08243|(609) 263-2330|6 am-11 pm|300" +-75.076086,39.751419,"WAWA [no fuel]-Sewell,NJ","388 Egg Harbor Rd (@ Greentree, Sewell,NJ 08080-1858|(856) 589-5482|24 hrs|499" +-75.070997,39.736523,"WAWA [no fuel]-Sewell,NJ","464 Hurffville - Crosskeys Rd, Sewell,NJ 08080|(856) 589-5735|24 hrs|780" +-75.134415,39.770175,"WAWA [no fuel]-Sewell,NJ","701 Woodbury-Glassboro Rd, Sewell,NJ 08080|(856) 468-6235|24 hrs|360" +-74.176871,39.649263,"WAWA [no fuel]-Ship Bottom,NJ","902 Central Ave [unit 1], Ship Bottom,NJ 08008|(609) 361-2483|24 hrs|700" +-75.045979,39.770955,"WAWA [Diesel]-Sicklerville,NJ","2700 Sicklerville Road, Sicklerville,NJ 08081-1087|(856) 227-4430|24 hrs|981" +-74.994788,39.745601,"WAWA [Diesel]-Sicklerville,NJ","511 Berlin-cross Keys Rd, Sicklerville,NJ 08081-4368|(856) 875-7019|24 hrs|984" +-74.97,39.71802,"WAWA [Diesel]-Sicklerville,NJ","519 Williamstown Rd, Sicklerville,NJ 08081-2553|(856) 728-3308|24 hrs|416" +-75.012718,39.727823,"WAWA [no fuel]-Sicklerville,NJ","672 Cross Keys Road, Sicklerville,NJ 08081|(856) 875-8160|24 hrs|377" +-74.64892,40.40331,"WAWA [no fuel]-Skillman,NJ","1273 Route 206, Skillman,NJ 08553|(609) 924-4122|24 hrs|306" +-74.60027,39.30996,"WAWA [Diesel]-Somer Poing,NJ","16 Macarthur Blvd, Somer Poing,NJ 08244|(609) 653-1810|24 hrs|8324" +-75.018361,39.844554,"WAWA [Diesel]-Somerdale,NJ","2 North White Horse Pike, Somerdale,NJ 08083|(609) 672-4577|24 hrs|8346" +-74.592301,39.331013,"WAWA [Diesel]-Somers Point,NJ","112 New Road, Somers Point,NJ 08244|(609) 653-8922|24 hrs|461" +-74.59125,39.319331,"WAWA [no fuel]-Somers Point,NJ","502 Shore Road, Somers Point,NJ 08244|(609) 653-6150|24 hrs|433" +-74.4702,40.486706,"WAWA [Diesel]-Somerset,NJ","607 Somerset St, Somerset,NJ 08873|(732) 659-9902|24 hrs|8376" +-74.328814,40.718381,"WAWA [Diesel]-Soringfield,NJ","685 Morris Turnpike, Springfield,NJ 07081|(973) 996-4773|24 Hrs|8445" +-74.295131,40.460371,"WAWA [Diesel]-South Amboy,NJ","969 Route 9, South Amboy,NJ 08879|(732) 285-1112|3an-2am|8404" +-74.40328,40.46281,"WAWA [Diesel]-South River,NJ","656 Old Bridge Pike, South River,NJ 08882|(732) 254-2106|24 hrs|983" +-74.211025,39.942019,"WAWA [Diesel]-South Toms River,NJ","379 Dover Rd, South Toms River,NJ 08757|(848) 216-6178|24 hrs|8371" +-74.734522,39.970787,"WAWA [Diesel]-Southampton,NJ","2356 Vincentown Columbus Rd, Southampton,NJ 08088|(609) 267-1257|24 hrs|8300" +-74.75959,39.05539,"WAWA [no fuel]-Stone Harbor,NJ","9404 3rd Avenue, Stone Harbor,NJ 08247|(609) 368-3265|6 am-11 pm|342" +-75.304191,39.760585,"WAWA [Diesel]-Swedesboro,NJ","123 Paulsboro Rd, Swedesboro,NJ 08085|(856) 467-1722|24 hrs|974" +-75.359923,39.759422,"WAWA [Diesel]-Swedesboro,NJ","1700 Center Square Rd, Swedesboro,NJ 08085|(856) 241-7965|24 hrs|961" +-74.09074,40.258002,"WAWA [Diesel]-Tinton Falls,NJ","2000 Shafto Road, Tinton Falls,NJ 07712|(732) 493-2101|24 hrs|996" +-74.14787,39.9885,"WAWA [Diesel]-Toms River,NJ","1166 Fischer Boulevard, Toms River,NJ 08753|(732) 288-7900|24 hrs|939" +-74.15553,39.95317,"WAWA [no fuel]-Toms River,NJ","1600 Route 37 East, Toms River,NJ 08753|(732) 929-3420|24 hrs|763" +-74.217459,40.011734,"WAWA [Diesel]-Toms River,NJ","1680 Lakewood Road, Toms River,NJ 08753|(732) 341-0006|24 hrs|321" +-74.151729,40.004137,"WAWA [Diesel]-Toms River,NJ","1725 Hooper Avenue, Toms River,NJ 08753|(732) 864-1701|24 hrs|937" +-74.18571,39.96257,"WAWA [Diesel]-Toms River,NJ","179 Rt 37 East, Toms River,NJ 08754|(732) 736-7053|24 hrs|995" +-74.13264,39.95093,"WAWA [Diesel]-Toms River,NJ","2302 Route 37 East, Toms River,NJ 08753|(732) 270-9039|24 hrs|953" +-74.1797228,39.9619217,"WAWA [no fuel]-Toms River,NJ","254 Route 37 West, Toms River,NJ 08753|(732) 240-5728|24 hrs|429" +-74.231354,40.042243,"WAWA [Diesel]-Toms River,NJ","94 Route 70 @ Massachusetts Ave, Toms River,NJ 08755|(732) 905-4620|24 hrs|927" +-74.21965,39.965935,"WAWA [Diesel]-Toms River,NJ","Rt37 Northampton Ave, Toms River,NJ 08755|(732) 349-0052|24 hrs|8307" +-74.675594,40.264739,"WAWA [no fuel]-Trenton,NJ","3800 Mercerville @ Quakerbridge, Trenton,NJ 08619|(609) 584-8708|24 hrs|373" +-74.646887,40.191139,"WAWA [Diesel]-Trenton,NJ","3817 Crosswicks Hamilton Sq Rd, Trenton,NJ 08691-3760|(609) 585-0380|24 hrs|8342" +-74.342221,39.625624,"WAWA [Diesel]-Tuckerton,NJ","1201 Rt 539, Tuckerton,NJ 08087|(609) 296-8573|24 hrs|371" +-74.340581,39.602975,"WAWA [no fuel]-Tuckerton,NJ","20 East Main Street, Tuckerton,NJ 08087|(609) 296-6995|24 hrs|497" +-75.043079,39.738416,"WAWA [Diesel]-Turnersville,NJ","4231 Rt 42, Turnersville,NJ 08012-1712|(856) 875-1529|24 hrs|975" +-74.47103,39.34336,"WAWA [no fuel]-Ventnor,NJ","5206 Ventnor Avenue, Ventnor,NJ 08406|(609) 822-1196|24 hrs|753" +-74.934272,39.023042,"WAWA [Diesel]-Villas,NJ","1515 Bayshore Rd, Villas,NJ 08251|(609) 889-8971|24 hrs|963" +-74.743149,39.931949,"WAWA [no fuel]-Vincentown,NJ","2075 Route 206, Vincentown,NJ 08088|(609) 859-1614|24 hrs|376" +-74.781596,39.8312865,"WAWA [no fuel]-Vincentown,NJ","436 Oakshade (@ Indian Mills R, Vincentown,NJ 08088-8411|(609) 268-8282|24 hrs|457" +-74.595247,39.897681,"WAWA [no fuel]-Vincetown,NJ","4 Route 72, Vincetown,NJ 08088|(609) 894-9708|24 hrs|388" +-75.0621212,39.4878274,"WAWA [Diesel]-Vineland,NJ","1935 W Landis Ave, Vineland,NJ 08360|(856) 283-2955|24 Hrs|8484" +-75.042743,39.446271,"WAWA [Diesel]-Vineland,NJ","2802 South Delsea Drive, Vineland,NJ 08360|(856) 507-9243|24 hrs|924" +-75.041713,39.493754,"WAWA [Diesel]-Vineland,NJ","501 N Delsea Drive, Vineland,NJ 08360|(856) 507-5950|24 hrs|942" +-74.998966,39.483971,"WAWA [Diesel]-Vineland,NJ","61 South Main Rd, Vineland,NJ 08361|(856) 563-5390|24 hrs|999" +-74.97782,39.47549,"WAWA [Diesel]-Vineland,NJ","610 South Brewster Road, Vineland,NJ 08361|(856) 507-8990|24 hrs|926" +-74.998217,39.839016,"WAWA [no fuel]-Voorhees,NJ","1702 S Burnt Mill Rd, Voorhees,NJ 08043|(856) 435-5276|24 hrs|767" +-74.933971,39.871358,"WAWA [no fuel]-Voorhees,NJ","2999 East Evesham Rd., Voorhees,NJ 08043|(856) 424-7054|24 hrs|455" +-74.860638,39.722595,"WAWA [no fuel]-Waterford Works,NJ","1 North Whitehorse Pike, Waterford Works,NJ 08089|(856) 975-7090|24 hrs|322" +-74.921114,39.794991,"WAWA [Diesel]-West Berlin,NJ","409 N Route 73, West Berlin,NJ 08091|(856) 258-7131|24 hrs|956" +-75.1838,39.84696,"WAWA [Diesel]-West Deptford,NJ","496 Crown Point Road, West Deptford,NJ 08086|(856) 845-8343|24 hrs|480" +-74.855822,40.023657,"WAWA [Diesel]-Westampton,NJ","76 Springside Rd, Westampton,NJ 08060|(609) 871-9180|24 Hrs|8423" +-75.125658,39.852351,"WAWA [no fuel]-Westville,NJ","1080 Delsea Drive, Westville,NJ 08093|(856) 848-5405|24 hrs|779" +-74.39119,39.96019,"WAWA [Diesel]-Whiting,NJ","1180 Route 70, Whiting,NJ 08759-1003|(732) 350-5935|24 hrs|948" +-74.814502,38.992131,"WAWA [no fuel]-Wildwood,NJ","3200 New Jersey Ave, Wildwood,NJ 08260 |(609) 729-8701|24 hrs|954" +-74.82922,38.987204,"WAWA [Diesel]-Wildwood,NJ","418 West Rio Grande Ave, Wildwood,NJ 08260|(609) 729-6339|24 hrs|729" +-74.9740753,39.668691,"WAWA [Diesel]-Williamstown,NJ","1413 South Black Horse Pike, Williamstown,NJ 08094|(856) 728-1100|24 hours|775" +-74.98852,39.6859,"WAWA [Diesel]-Williamstown,NJ","332 South Black Horse Pike, Williamstown,NJ 08094|(856) 629-1325|24 hours|721" +-74.8811193,39.6030898,"WAWA [no fuel]-Williamstown,NJ","7 East Blackhorse Pike, Williamstown,NJ 08094|(609) 561-3438|24 hrs|714" +-75.0173,39.689896,"WAWA [no fuel]-Williamstown,NJ","882 Glassboro Rd, Williamstown,NJ 08094|(856) 875-4446|24 hrs|379" +-74.297392,40.536182,"WAWA [Diesel]-Woodbridge,NJ","440 King Georges Rd, Woodbridge,NJ 07095|(732) 442-5690|24 hours|8317" +-75.144174,39.843416,"WAWA [no fuel]-Woodbury,NJ","590 North Evegreen Ave, Woodbury,NJ 08096|(856) 845-8713|24 hrs|427" +-75.16089,39.82046,"WAWA [Diesel]-Woodbury Heights,NJ","856 Mantua Pike, Woodbury Heights,NJ 08097 |(856) 853-4380|24 hrs|951" +-75.33774,39.646,"WAWA [Diesel]-Woodstown,NJ","Rt 45 & Bailey St, Woodstown,NJ 08098|(856) 769-2809|24 hrs|459" +-74.631973,40.061224,"WAWA [no fuel]-Wrightstown,NJ","210 Georgetown/Wrightstown, Wrightstown,NJ 08562|(609) 723-5665|24 hrs|345" +-75.135669,40.122748,"WAWA [no fuel]-Abington,PA","2401 Susquehanna Road, Abington,PA 19001|(215) 886-5476|24 hrs|74" +-75.491173,40.603512,"WAWA [no fuel]-Allentown,PA","1501 West Gorden St, Allentown,PA 18102|(610) 435-9339|24 hrs|137" +-75.479854,40.572413,"WAWA [Diesel]-Allentown,PA","2209 Lehigh St, Allentown,PA 18103|(610) 797-6490|24 hrs|120" +-75.5225685,40.5831351,"WAWA [Diesel]-Allentown,PA","408 Cedar Crest Blvd, Allentown,PA 18103|(484) 326-6581|24 hrs|8078" +-75.617027,40.57228,"WAWA [Diesel]-Allentown,PA","7572 Schantz Road, Allentown,PA 18106|(610) 391-9535|24 hrs|266" +-75.44254,40.62459,"WAWA [Diesel]-Allentown,PA","911-941 Union Blvd, Allentown,PA 18109|(610) 439-6770|24 hrs|299" +-75.22512,40.17817,"WAWA [no fuel]-Ambler,PA","752 North Bethlehem Pike, Ambler,PA 19002|(215) 641-0866|24 hrs|43" +-75.294592,40.010188,"WAWA [no fuel]-Ardmore,PA","195 W Lancaster Ave, Ardmore,PA 19003|(610) 642-9545|24 hrs|66" +-75.43702,39.84915,"WAWA [Diesel]-Aston,PA","489 Conchester Hwy, Aston,PA 19061|(610) 485-2349|24 hrs|8059" +-75.42719,39.865316,"WAWA [Diesel]-Aston,PA","5008 Pennell Rd, Aston,PA 19014|(610) 494-4051|24 hrs|8027" +-75.795166,39.834703,"WAWA-Avondale,PA","761 Gap Newport Pike, Avondale,PA 19311|(610) 268-8765|24 hrs|160" +-75.230842,40.023213,"WAWA [no fuel]-Bala Cynwyd,PA","193 Belmont Avenue, Bala Cynwyd,PA 19004|(610) 664-9186|24 hrs|40" +-75.24042,40.01874,"WAWA [no fuel]-Bala Cynwyd,PA","801 Conshohocken State Road, Bala Cynwyd,PA 19004|(610) 667-2979|24 hrs|155" +-74.95971,40.07442,"WAWA [no fuel]-Bensalem,PA","1549 Bristol Pike, Bensalem,PA 19020|(215) 245-0879|24 hrs|45" +-74.944261,40.09597,"WAWA [no fuel]-Bensalem,PA","1883 Street Road, Bensalem,PA 19020|(215) 638-5646|24 hrs|267" +-74.942427,40.135617,"WAWA [no fuel]-Bensalem,PA","3338 Bristol Road, Bensalem,PA 19020|(215) 757-6997|24 hrs|77" +-74.963488,40.125019,"WAWA [Diesel]-Bensalem,PA","3620 Street Rd, Bensalem,PA 19020|(267) 522-8459|24 hrs|8072" +-74.91554,40.10558,"WAWA [no fuel]-Bensalem,PA","4662 Bensalem Blvd, Bensalem,PA 19020|(215) 639-0171|5am-12am|165" +-75.3952,40.63573,"WAWA [Diesel]-Bethlehem,PA","1584 8th Ave, Bethlehem,PA 18018|(610) 865-8275|24 hrs|8001" +-75.348211,40.644185,"WAWA [Diesel]-Bethlehem,PA","2525 Easton Ave, Bethlehem,PA 18017|(610) 758-8646|24 hrs|8036" +-75.418339,40.658698,"WAWA-Bethlehem,PA","3300 Schoenersville Road, Bethlehem,PA 18017|(610) 865-8270|24 hrs|297" +-75.360687,40.622395,"WAWA [Diesel]-Bethlehem,PA","741 East Broad St, Bethlehem,PA 18018|(619) 758-9472|24 hrs|8037" +-75.591693,41.092827,"WAWA [Diesel]-Blakeslee,PA","296 Route 940, Blakeslee,PA 18610|(570) 646-6707|24 hrs|159" +-75.29288,40.1658,"WAWA [Diesel]-Blue Bell,PA","1015 Dekalb Pike, Blue Bell,PA 19422|(610) 279-7014|24 hrs|8034" +-75.437133,39.829688,"WAWA [no fuel]-Boothwyn,PA","2300 Chichester Ave, Boothwyn,PA 19061|(610) 494-0226|24 hrs|30" +-75.440676,39.831169,"WAWA [Diesel]-Boothwyn,PA","2608 Chichester Ave, Boothwyn,PA 19061|(484) 214-6643|24 Hrs|8151" +-75.3450945,40.105465,"WAWA [no fuel]-Bridgeport,PA","112 W Fourth Street, Bridgeport,PA 19405|(610) 279-0824|24 hrs|216" +-74.838363,40.110452,"WAWA [no fuel]-Bristol,PA","200 Green Lane, Bristol,PA 19007|(215) 788-2750|6am-12am|196" +-74.881289,40.126943,"WAWA [Diesel]-Bristol,PA","3260 New Rodgers Road, Bristol,PA 19007|(215) 781-6007|24 hrs|219" +-74.84476,40.1175733,"WAWA [Diesel]-Bristol,PA","5900 Bristol Pike, Bristol,PA 19007|(215) 781-8080|24 hrs|268" +-74.849143,40.160185,"WAWA [Diesel]-Bristol,PA","7625 New Falls Rd, Bristol,PA 19055|(215) 949-2401|24 hrs|8004" +-75.393491,40.924402,"WAWA [no fuel]-Brodheadsville,PA","1781 Route 209, Brodheadsville,PA 18322|(570) 992-2511|24 hrs|197" +-75.39331,39.87642,"WAWA [Diesel]-Brookhaven,PA","4703 Edgemont Ave, Brookhaven,PA 19015|(610) 872-5183|24 hrs|8042" +-75.359568,39.966431,"WAWA [no fuel]-Broomall,PA","2050 Sproul Road, Broomall,PA 19008|(610) 356-9772|24 hrs|8" +-75.322064,40.017029,"WAWA [no fuel]-Bryn Mawr,PA","201 South Bryn Mawr Ave, Bryn Mawr,PA 19010|(610) 527-9039|24 hrs|168" +-75.060381,40.324277,"WAWA [no fuel]-Buckingham,PA","4713 York Rd, Buckingham,PA 18928|(215) 794-7394|24 hrs|215" +-75.536791,39.849876,"WAWA [Diesel]-Chadds Ford,PA","721 Naamans Creek Rd, Chadds Ford,PA 19317|(610) 459-9819|24 hrs|170" +-75.227751,40.267466,"WAWA [Diesel]-Chalfont,PA","525 W Butler Ave, Chalfont,PA 18914|(267) 532-4405|24 Hrs|8147" +-75.22859,40.266431,"WAWA [no fuel]-Chalfont,PA","545 West Butler Avenue, Chalfont,PA 18914|(215) 997-2445|24 hrs|200" +-75.694103,40.116472,"WAWA [Diesel]-Chester Springs,PA","1150 Pottstown Pike, Chester Springs,PA 19425|(215) 600-4979|24 hrs|8140" +-75.6859,40.07479,"WAWA [Diesel]-Chester Springs,PA","1800 Ticonderoga Blvd, Chester Springs,PA 19425|(610) 458-2310|24 hrs|201" +-75.31033,39.925617,"WAWA [Diesel]-Clifton Heights,PA","19 North Bishop Avenue, Clifton Heights,PA 19018|(610) 394-1260|24 hrs|293" +-75.303897,39.926743,"WAWA [Diesel]-Clifton Heights,PA","418 W Baltimore Pike, Clifton Heights,PA 19018|(610) 983-0500|24 hrs|8128" +-75.78937,40.008432,"WAWA [Diesel]-Coatesville,PA","105 Reeceville Rd, Coatesville,PA 19320|(484) 247-4872|24 hrs|8094" +-75.458869,40.177116,"WAWA [Diesel]-Collegeville,PA","1860 South Collegeville Rd, Collegeville,PA 19426|(610) 831-5224|24 hrs|8019" +-75.27908,39.91061,"WAWA [no fuel]-Collingdale,PA","910 Mcdade Blvd, Collingdale,PA 19023|(610) 237-0817|5am-12am|19" +-75.25491,40.26961,"WAWA [Diesel]-Colmar,PA","119 Bethlehem Pike, Colmar,PA 18915|(215) 997-2107|24 hrs|8018" +-75.290932,40.090265,"WAWA [no fuel]-Conshohocken,PA","1726 Butler Pike, Conshohocken,PA 19428|(610) 834-0364|24 hrs|67" +-75.3878815,40.522707,"WAWA [Diesel]-Coopersburg,PA","6680 Rt 309, Coopersburg,PA 18036|(610) 234-4257|24 Hrs|8126" +-75.99624,40.39061,"WAWA [Diesel]-Dauberville,PA","910 W Leesport Rd, Dauberville,PA 19533|(267) 448-0998|24 hrs|8119" +-75.729373,40.259804,"WAWA [Diesel]-Douglasville,PA","10 Maplewood Drive, Douglasville,PA 19518|(610) 385-1403|24 hrs|282" +-75.7456622,39.9960223,"WAWA [Diesel]-Dowingtown,PA","3710 Lincoln Hwy, Dowingtown,PA 19335|(484) 258-9475|24 hrs|8098" +-75.678401,40.019079,"WAWA [Diesel]-Downington,PA","1083 East Lancaster Ave, Downington,PA 19335|(610) 873-5121|24 hrs|118" +-75.70119,40.000528,"WAWA [Diesel]-Downingtown,PA","100 Boot Road, Downingtown,PA 19335|(610) 269-3861|24 hrs|245" +-75.703722,40.008934,"WAWA [no fuel]-Downingtown,PA","100 Wallace Street, Downingtown,PA 19335|(610) 269-7391|24 hrs|226" +-75.127494,40.300307,"WAWA [Diesel]-Doylestown,PA","425 South Main Street, Doylestown,PA 18901|(267) 309-2868|24 hrs|8125" +-75.29722,39.94402,"WAWA [no fuel]-Drexel Hill,PA","3800 Garret Road, Drexel Hill,PA 19026|(610) 626-9647|24 hrs|212" +-75.30155,39.94698,"WAWA [no fuel]-Drexel Hill,PA","525 Burmont Avenue, Drexel Hill,PA 19026|(610) 623-3010|24 hrs|12" +-76.351568,40.093033,"WAWA [Diesel]-East Petersburg,PA","1990 Miller Road, East Petersburg,PA 17520|(717) 560-3021|24 hrs|158" +-75.1769517,40.9941517,"WAWA [no fuel]-East Stroudsburg,PA","207 Prospect Street, East Stroudsburg,PA 18301|(570) 421-1227|24 hrs|112" +-75.094123,41.055441,"WAWA [Diesel]-East Stroudsburg,PA","5121 Milford Rd, East Stroudsburg,PA 18302|(570) 223-8578|24 hrs|8026" +-75.205648,40.700212,"WAWA [no fuel]-Easton,PA","225 Cattell Street, Easton,PA 18042|(610) 253-4312|24 hrs|101" +-75.209844,40.68702,"WAWA [no fuel]-Easton,PA","310 Larry Holmes Drive, Easton,PA 18042|(610) 252-4137|24 hrs|89" +-75.289617,40.719355,"WAWA [Diesel]-Easton,PA","3820 Easton Nazareth Hwy, Easton,PA 18045|(610) 759-1070|24 hrs|8046" +-75.248303,40.680578,"WAWA [Diesel]-Easton,PA","631 South 25th St, Easton,PA 18045|(610) 252-4152|24 hrs|8032" +-76.19592,40.17245,"WAWA [Diesel]-Ephrata,PA","602 S Reading Road, Ephrata,PA 17522|(717) 721-9616|24 hrs|260" +-75.29428,39.8665,"WAWA [no fuel]-Essington,PA","600 S Governor Prince Blvd, Essington,PA 19029|(610) 521-5324|24 hrs|254" +-75.662936,40.047456,"WAWA [Diesel]-Exton,PA","551 West Uwchlan Ave, Exton,PA 19341|(610) 363-4046|24 hrs|8033" +-75.647104,40.055253,"WAWA [No Diesel-Exton,PA","750 North Pottstown Pike, Exton,PA 19341|(610) 363-9712|24 hrs|85" +-74.978977,40.121167,"WAWA [Diesel]-Feasterville Trevose,PA","2250 Lincoln Highway, Feasterville Trevose,PA 19053|(215) 638-5640|24 hrs|277" +-74.988994,40.139545,"WAWA [Diesel]-Feasterville Trevose,PA","601 Street Rd E, Feasterville Trevose,PA 19053|(215) 355-4370|24 hrs|8075" +-74.9771,40.149867,"WAWA [no fuel]-Feasterville Trevose,PA","676 Rosewood Avenue, Feasterville Trevose,PA 19053|(215) 357-0926|24 hrs|38" +-75.002457,40.150218,"WAWA [Diesel]-Feasterville Trevose,PA","929 Bustleton Pk, Feasterville Trevose,PA 19053|(215) 323-6875|24 hrs|8136" +-75.21382,40.10655,"WAWA [no fuel]-Flourtown,PA","1601 Bethlehem Pike, Flourtown,PA 19031|(215) 233-0210|24 hrs|21" +-75.282784,39.904389,"WAWA [Diesel]-Folcroft,PA","1550 Chester Pk, Folcroft,PA 19032|(610) 586-5191|24 hrs|8007" +-75.330058,39.883703,"WAWA [Diesel]-Folsom,PA","111 Morton Ave, Folsom,PA 19033|(610) 628-1914|24 hrs|8048" +-75.31569,39.8954,"WAWA [Diesel]-Folsom,PA","1730 Macdade Blvd, Folsom,PA 19033|(610) 583-1204|24 hrs|8081" +-75.212585,40.1383,"WAWA [no fuel]-Fort Washington,PA","106 Bethlehem Pike, Fort Washington,PA 19034|(215) 646-2972|24 hrs|156" +-75.17204,40.13932,"WAWA [Diesel]-Fort Washington,PA","1145 Virginia Ave, Fort Washington,PA 19034|(215) 628-3134|24 hrs|8060" +-75.401387,40.599971,"WAWA [no fuel]-Fountain Hill,PA","1429 Broadway, Fountain Hill,PA 18015|(610) 867-3133|24 hrs|87" +-76.020129,39.990878,"WAWA [Diesel]-Gap,PA","787 Rt 41, Gap,PA 17527|(717) 942-0003|24 hrs|8025" +-75.633526,40.31102,"WAWA [Diesel]-Gilbertsville,PA","1111 Grosser Rd, Gilbertsville,PA 19525|(610) 473-0250|24 hrs|8067" +-75.58558,40.29953,"WAWA [Diesel]-Gilbertsville,PA","1906 Swamp Pike, Gilbertsville,PA 19525|(610) 718-0933|24 hrs|134" +-75.48539,39.89649,"WAWA [Diesel]-Glen Mills,PA","36 Baltimore Pike, Glen Mills,PA 19342|(610) 558-8341|24 hrs|269" +-75.534549,39.884947,"WAWA [Diesel]-Glen Mills,PA","971 Baltimore Pike, Glen Mills,PA 19331|(610) 558-8052|24 hrs|198" +-75.39127,39.93435,"WAWA [Diesel]-Glen Riddle,PA","1260 N. Providence Road, Glen Riddle,PA 19063|(484) 838-7599|24 hrs|8114" +-75.29168,39.90499,"WAWA [no fuel]-Glenolden,PA","3 N McDade Blvd., Glenolden,PA 19036|(610) 586-1660|24 hrs|174" +-75.1649562,40.1045258,"WAWA [no fuel]-Glenside,PA","82 Limekiln Pike, Glenside,PA 19038|(215) 253-7066|24 hrs|111" +-76.007682,40.564382,"WAWA [Diesel]-Hamburg,PA","515 Lowland Rd, Hamburg,PA 19526|(610) 562-8314|24 hrs|8051" +-75.370715,40.264675,"WAWA [Diesel]-Harleysville,PA","201 Main St, Harleysville,PA 19438|(267) 532-4498|24 Hrs|8135" +-75.379716,40.275057,"WAWA [no fuel]-Harleysville,PA","371 Main Street, Harleysville,PA 19438|(215) 256-4560|24 hrs|242" +-75.105349,40.178974,"WAWA [no fuel]-Hatboro,PA","50 North York Road, Hatboro,PA 19040|(215) 674-3192|24 hrs|204" +-75.28402,40.29779,"WAWA [Diesel]-Hatfield,PA","2480 Bethlehem Pike, Hatfield,PA 19440|(215) 822-0690|24 hrs|8056" +-75.303606,39.97622,"WAWA [no fuel]-Havertown,PA","1000 Darby Road, Havertown,PA 19083|(610) 446-9487|24 hrs|265" +-75.308991,39.988603,"WAWA [no fuel]-Havertown,PA","33-35 Eagle Road, Havertown,PA 19083|(610) 789-9852|24 hrs|54" +-75.552338,40.448618,"WAWA [Diesel]-Hereford,PA","8053 Chestnut St, Hereford,PA 18056|(267) 996-3788|24 Hrs|8155" +-75.9712162,40.2985382,"WAWA [no fuel]-Holland,PA","236 Holland Street, Holland,PA 18966|(215) 357-2602|24 hrs|128" +-75.30775,39.89835,"WAWA [no fuel]-Holmes,PA","2306 Mcdade Blvd., Holmes,PA 19043|(610) 522-9835|24 hrs|239" +-75.1283167,40.1737617,"WAWA [Diesel]-Horsham,PA","101 Easton Rd, Horsham,PA 19044|(267) 262-6808|24 hrs|8088" +-75.147416,40.160105,"WAWA [Diesel]-Horsham,PA","132 Welsh Road, Horsham,PA 19044|(267) 358-3903|24 hrs|8156" +-75.138842,40.209913,"WAWA [Diesel]-Horsham,PA","1510 Easton Rd, Horsham,PA 19044|(215) 441-3050|24 hrs|285" +-75.145376,40.18715,"WAWA [Diesel]-Horsham,PA","535 Horsham Road, Horsham,PA 19044|(215) 441-6390|24 hrs|271" +-75.185187,40.210982,"WAWA-Horsham Twsp,PA","1139 Horsham Rd., Horsham Twsp,PA 19002|(215) 641-2830|24 hrs|148" +-75.058772,40.121106,"WAWA [Diesel]-Huntingdon Valley,PA","2500 Philmont Ave, Huntingdon Valley,PA 19066|(215) 938-8435|24 hrs|8057" +-75.09617,40.20487,"WAWA [Diesel]-Ivyland,PA","555 West St Rd, Ivyland,PA 18974|(215) 444-0894|24 hrs|8055" +-75.089777,40.246608,"WAWA [Diesel]-Jamison,PA","1937 York Rd, Jamison,PA 18929|(215) 343-4934|24 hrs|8022" +-75.124899,40.105762,"WAWA [Diesel]-Jenkintown,PA","816 Old York Rd, Jenkintown,PA 19046|(215) 886-1921|24 hrs|8066" +-75.71762,39.84463,"WAWA [no fuel]-Kennett Square,PA","504 West Cypress Street, Kennett Square,PA 19348|(610) 444-9949|24 hrs|34" +-75.67926,39.8637,"WAWA [Diesel]-Kennett Square,PA","901 East Baltimore Pike, Kennett Square,PA 19348|(610) 388-6400|24 hrs|8015" +-75.364968,40.093192,"WAWA [Diesel]-King Of Prussia,PA","145 W Dekalb Pike, King Of Prussia,PA 19406|(610) 265-2913|24 hrs|8058" +-75.387168,40.08478,"WAWA [no fuel]-King Of Prussia,PA","196 South Gulph Road, King Of Prussia,PA 19406|(610) 265-1861|24 hrs|42" +-75.338374,40.244998,"WAWA [no fuel]-Kulpsville,PA","1401 Forty Foot Road, Kulpsville,PA 19443|(215) 362-1590|24 hrs|79" +-75.26159,40.092386,"WAWA [no fuel]-Lafayette Hill,PA","406 Germantown Pike, Lafayette Hill,PA 19444|(610) 825-2560|24 hrs|97" +-76.2316,40.02937,"WAWA [Diesel]-Lancaster,PA","2126-2132 Lincoln Highway East, Lancaster,PA 17602|(717) 481-5240|24 hrs|275" +-74.87069,40.179478,"WAWA-Langhorne,PA","132 Oxford Valley Rd, Langhorne,PA 19056|(215) 949-1024|24 hrs|8020" +-74.896459,40.154747,"WAWA [no fuel]-Langhorne,PA","1528 Trenton Rd, Langhorne,PA 19047|(215) 757-1037|24 hrs|70" +-75.314598,40.228466,"WAWA [no fuel]-Lansdale,PA","1601 Valley Forge Road, Lansdale,PA 19446|(215) 361-8577|24 hrs|273" +-75.32114,40.26279,"WAWA [Diesel]-Lansdale,PA","200 Forty Foot Rd, Lansdale,PA 19440|(215) 362-5265|24 hrs|8050" +-75.272391,39.94101,"WAWA [no fuel]-Lansdowne,PA","67 Lansdowne Ave., Lansdowne,PA 19050|(610) 623-5430|24 hrs|73" +-74.821419,40.144571,"WAWA [Diesel]-Levittown,PA","225 A Levittown Pkwy, Levittown,PA 19054|(267) 705-4331|24 Hrs|8127" +-74.875227,40.140434,"WAWA [no fuel]-Levittown,PA","5220 New Falls Road, Levittown,PA 19056|(215) 945-1020|24 hrs|184" +-74.860639,40.141342,"WAWA [no fuel]-Levittown,PA","6016 Emilie Road, Levittown,PA 19057|(215) 946-1531|24 hrs|60" +-75.529435,40.232278,"WAWA [Diesel]-Linfield,PA","451 West Ridge Pike, Linfield,PA 19468|(610) 495-4740|24 hrs|8038" +-75.421027,39.825677,"WAWA [no fuel]-Linwood,PA","1439 Market Street, Linwood,PA 19061|(610) 485-4855|24 hrs|7" +-75.56472,40.519511,"WAWA [Diesel]-Macungie,PA","3321 Willow Lane, Macungie,PA 18062|(610) 966-8593|24 hrs|98" +-75.516274,40.035763,"WAWA [no fuel]-Malvern,PA","105 West King Street, Malvern,PA 19355|(610) 993-8714|24 hrs|236" +-75.524694,40.050517,"WAWA [Diesel]-Malvern,PA","5 Matthews Road, Malvern,PA 19355|(610) 640-5322|24 hrs|205" +-75.571606,40.035682,"WAWA-Malvern,PA","567 Lancaster Avenue, Malvern,PA 19355|(610) 647-7601|24 hrs|208" +-75.535739,40.06804,"WAWA [Diesel]-Malvern,PA","605 Morehall Rd, Malvern,PA 19355|(484) 320-8314|24 hrs|8091" +-75.3876307,39.9162188,"WAWA [no fuel]-Media,PA","100 East Baltimore Pike, Media,PA 19063|(610) 566-9663|24 hrs|100" +-75.4311163,39.9145162,"WAWA [Diesel]-Media,PA","1073 Baltimore Pk, Media,PA 19063|(484) 546-8878|24 hrs|8148" +-75.44253,39.91089,"WAWA [Diesel]-Media,PA","1242 W Baltimore Pike, Media,PA 19063|(610) 370-4701|24 hrs|8083" +-75.39649,39.9182,"WAWA [Diesel]-Media,PA","435 Baltimore Ave, Media,PA 19063|(484) 445-4489|24 hrs|8082" +-75.232692,40.222707,"WAWA [Diesel]-Montgomeryville,PA","1008 Bethlehem Pike, Montgomeryville,PA 18936|(267) 322-2545|24 hrs|8101" +-75.241092,40.244534,"WAWA [no fuel]-Montgomeryville,PA","981 North Wales Road, Montgomeryville,PA 18936|(215) 352-3722|24 hrs|222" +-75.897553,40.154021,"WAWA [Diesel]-Morgantown,PA","2837 Main St, Morgantown,PA 19543|(610) 544-5732|24 hrs|8129" +-74.79392,40.17188,"WAWA [no fuel]-Morrisville,PA","1344 Bristol Pike, Morrisville,PA 19067|(215) 295-8683|24 hrs|142" +-74.7939137,40.2113818,"WAWA [Diesel]-Morrisville,PA","545 West Trenton Ave, Morrisville,PA 19067|(267) 768-8611|24 hrs|8076" +-74.805015,40.205705,"WAWA [no fuel]-Morrisville,PA","549 Trenton Ave, Morrisville,PA 19067|(267) 297-3352|6am-10pm Drive thru|8172" +-75.32595,39.907376,"WAWA [no fuel]-Morton,PA","21 Kedron Avenue, Morton,PA 19070|(610) 328-6420|24 hrs|178" +-75.261986,40.012268,"WAWA [no fuel]-Narberth,PA","949 Montgomery Avenue, Narberth,PA 19072|(610) 660-5920|24 hrs|294" +-74.96571,40.362734,"WAWA [no fuel]-New Hope,PA","341 West Bridge Street, New Hope,PA 18938|(215) 862-9330|24 hrs|185" +-75.402685,39.988569,"WAWA [no fuel]-Newtown Square,PA","50 N. Newtown St. Road, Newtown Square,PA 19073|(610) 356-9769|24 hrs|8086" +-75.389069,40.141257,"WAWA [Diesel]-Norristown,PA","2544 W Main St, Norristown,PA 19403|(610) 631-2781|24 hrs|8061" +-75.348705,40.152859,"WAWA [Diesel]-Norristown,PA","701 W Germantown Pike, Norristown,PA 19403|(610) 631-3146|24 hrs|292" +-75.405925,40.127419,"WAWA [Gas]-Norristown,PA","705 South Trooper Rd, Norristown,PA 19403|(610) 539-5701|24 hrs|8003" +-75.24719,40.21921,"WAWA [Diesel]-North Wales,PA","593 Dekalb Pike, North Wales,PA 19454|(215) 699-1844|24 hrs|157" +-75.27581,40.21644,"WAWA [no fuel]-North Wales,PA","710 East Walnut Street, North Wales,PA 19454|(215) 375-7410|6 am-11 pm|96" +-76.020998,39.749911,"WAWA [Diesel]-Nottingham,PA","100 Ponds Edge Drive, Nottingham,PA 19362|(610) 932-7161|24 hrs|289" +-75.485822,40.041446,"WAWA [no fuel]-Paoli,PA","52 W Lancaster Avenue, Paoli,PA 19301|(610) 640-9854|24 hrs|57" +-75.933794,39.984213,"WAWA [Diesel]-Parkesburg,PA","3711 West Lincoln Highway, Parkesburg,PA 19365|(610) 857-4206|24 hrs|263" +-75.219643,40.381672,"WAWA [no fuel]-Perkasie,PA","320 West Route 313, Perkasie,PA 18944|(215) 249-1679|24 hrs|229" +-75.023519,40.111488,"WAWA [Diesel]-Philadelphia,PA","10901 Bustleton Ave, Philadelphia,PA 19115|(215) 464-7101|24 hrs|8047" +-75.1589274,39.9517766,"WAWA [no fuel]-Philadelphia,PA","1190 Market St, Philadelphia,PA 19107|(215) 259-3685|24 hrs|8112" +-75.002253,40.1046819,"WAWA [Diesel]-Philadelphia,PA","12004 E Roosevelt Blvd, Philadelphia,PA 19116|(484) 430-3720|24 hrs|8110" +-74.9761,40.095771,"WAWA [Diesel]-Philadelphia,PA","12301 Academy Rd, Philadelphia,PA 19154|(215) 824-2582|24 hrs|8035" +-75.23304,39.932575,"WAWA [no fuel]-Philadelphia,PA","1300 Chester St, Philadelphia,PA 19107|(215) 315-3683|24 hrs|8113" +-75.102802,40.005317,"WAWA [no fuel]-Philadelphia,PA","1300 East Erie Ave, Philadelphia,PA 19124|(215) 289-9101|24 hrs|207" +-75.011544,40.131974,"WAWA [no fuel]-Philadelphia,PA","14101 Bustleton Pike, Philadelphia,PA 19116|(215) 676-8110|24 hrs|232" +-75.1512383,39.94906,"WAWA [no fuel]-Philadelphia,PA","150 S Independ W, Philadelphia,PA 19106|(none listed)|24 hrs|8131" +-75.145403,39.926451,"WAWA [no fuel]-Philadelphia,PA","1602 South Delware Ave, Philadelphia,PA 19148|(215) 755-5858|24 hrs|191" +-75.168336,39.955179,"WAWA [no fuel]-Philadelphia,PA","1707 Arch Street, Philadelphia,PA 19103|(215) 977-9558|24 hrs|86" +-75.172274,39.953149,"WAWA [no fuel]-Philadelphia,PA","1900 Market St, Philadelphia,PA 19103|(215) 908-5727|24 hrs|8093" +-75.17156,39.962145,"WAWA [no fuel]-Philadelphia,PA","2000 Hamilton St, Philadelphia,PA 19103|(215) 988-0648|24 hrs|161" +-75.145742,39.942086,"WAWA [no fuel]-Philadelphia,PA","200-210 Lombard St, Philadelphia,PA 19147|(215) 629-1050|24 hrs|247" +-75.164035,39.949208,"WAWA [no fuel]-Philadelphia,PA","201 South Broad St, Philadelphia,PA 19107|(215) 732-1379|5 am-11 pm|8069" +-75.178446,39.94533,"WAWA [no fuel]-Philadelphia,PA","2131 South St, Philadelphia,PA 19146|(267) 538-1149|24 hrs|8105" +-75.118461,39.977185,"WAWA [Diesel]-Philadelphia,PA","2535 Aramingo Ave, Philadelphia,PA 19135|(215) 426-8163|24 hrs|8013" +-75.023695,40.077364,"WAWA [Diesel]-Philadelphia,PA","2600 Grant Ave, Philadelphia,PA 19114|(215) 677-1708|24 hrs|8030" +-75.196522,39.904061,"WAWA [Diesel]-Philadelphia,PA","2600 Penrose Ave, Philadelphia,PA 19145|(267) 996-3959|24 Hours|8132" +-75.1084671,39.9865456,"WAWA [no fuel]-Philadelphia,PA","3222-48 Richmond At Allegheny, Philadelphia,PA 19134|(215) 426-8282|24 hrs|119" +-75.167016,39.951797,"WAWA [no fuel]-Philadelphia,PA","33 S 16th St, Philadelphia,PA 19102|(267) 866-7609|6am-10pm|8154" +-75.191049,39.955378,"WAWA [no fuel]-Philadelphia,PA","3300 Market St, Philadelphia,PA 19104|(215) 375-7996|24 hrs|8141" +-75.005383,40.068756,"WAWA [Diesel]-Philadelphia,PA","3341 Grant Ave, Philadelphia,PA 19114|(215) 824-1283|24 hrs|8064" +-75.194899,39.954541,"WAWA [no fuel]-Philadelphia,PA","3604 Chestnut Street, Philadelphia,PA 19104|(215) 222-6422|24 hrs|55" +-75.198987,39.950976,"WAWA [no fuel]-Philadelphia,PA","3744 Spruce St, Philadelphia,PA 19104|(215) 387-0029|24 hrs|179" +-75.088427,39.997262,"WAWA [Diesel]-Philadelphia,PA","3901 Aramingo Ave, Philadelphia,PA 19137|(215) 533-2153|24 hrs|8065" +-75.074424,39.99654,"WAWA [no fuel]-Philadelphia,PA","4371 Richmond Street, Philadelphia,PA 19137|(215) 289-8950|24 hrs|252" +-75.09701,40.018885,"WAWA [no fuel]-Philadelphia,PA","4506-10 Castor Avenue, Philadelphia,PA 19124|(215) 743-1565|24 hrs|240" +-75.068247,40.011945,"WAWA [Diesel]-Philadelphia,PA","5597 Tulip St, Philadelphia,PA 19124|(267) 768-7176|24 hrs|8104" +-75.06276,40.02217,"WAWA [no fuel]-Philadelphia,PA","6001 Harbison Street, Philadelphia,PA 19135|(215) 533-7440|24 hrs|193" +-75.070241,40.036173,"WAWA [Diesel]-Philadelphia,PA","6460 Bustleton Ave., Philadelphia,PA 19149|(215) 533-2110|24 hrs|115" +-75.056196,40.030007,"WAWA [no fuel]-Philadelphia,PA","6506 Frankford Ave, Philadelphia,PA 19101|(215) 333-7830|24 hrs|8009" +-75.223902,40.040982,"WAWA [Diesel]-Philadelphia,PA","6701 Ridge Ave, Philadelphia,PA 19128|(215) 483-6700|24 hrs|8049" +-75.0904717,40.0558537,"WAWA [Diesel]-Philadelphia,PA","6858 Rising Sun Ave, Philadelphia,PA 19111|(215) 725-1421|24 hrs|8006" +-75.070243,40.046378,"WAWA [no fuel]-Philadelphia,PA","6935 Castor Avenue, Philadelphia,PA 19149|(215) 342-1105|24 hrs|183" +-75.05736,40.04028,"WAWA [Diesel]-Philadelphia,PA","7001 Roosevelt Blvd, Philadelphia,PA 19149|(215) 331-0245|24 hrs|8052" +-75.191959,40.060757,"WAWA [no fuel]-Philadelphia,PA","7236-40 Germantown Ave., Philadelphia,PA 19119|(215) 242-0820|24 hrs|125" +-75.032629,40.039551,"WAWA [no fuel]-Philadelphia,PA","7715 Frankford Avenue, Philadelphia,PA 19136|(215) 333-8709|24 hrs|262" +-75.0494383,40.0554773,"WAWA [Diesel]-Philadelphia,PA","7912 E Roosevelt Blvd, Philadelphia,PA 19152|(267) 343-5512|24 hrs|8087" +-75.086066,40.063187,"WAWA [no fuel]-Philadelphia,PA","801 Cottman Ave, Philadelphia,PA 19111|(215) 987-3803|5am-12am|84" +-75.054417,40.064172,"WAWA [no fuel]-Philadelphia,PA","8152 Castor Ave., Philadelphia,PA 19152|(215) 342-3841|24 hrs|181" +-75.242008,39.891192,"WAWA [Diesel]-Philadelphia,PA","8220 West Bartram Ave, Philadelphia,PA 19153|(215) 492-0824|24 hrs|8053" +-75.157212,39.94271,"WAWA [no fuel]-Philadelphia,PA","901 South St, Philadelphia,PA 19147|(267) 297-3139|24 hrs|8144" +-75.0060787,40.0520055,"WAWA [Diesel]-Philadelphia,PA","9101 Frankford Ave., Philadelphia,PA 19114|(267) 244-9838|24 Hrs|8152" +-75.156662,39.948195,"WAWA [no fuel]-Philadelphia,PA","912-16 Walnut Street, Philadelphia,PA 19107|(215) 923-1404|24 hrs|103" +-75.004187,40.054842,"WAWA [no fuel]-Philadelphia,PA","9201 Frankford Avnue, Philadelphia,PA 19114|(215) 332-9980|24 hrs|211" +-75.044324,40.087675,"WAWA [Diesel]-Philadelphia,PA","9377 Krewstown Rd, Philadelphia,PA 19115|(215) 464-2628|24 hrs|8054" +-74.98951,40.04966,"WAWA [no fuel]-Philadelphia,PA","9440 State Road, Philadelphia,PA 19114|(267) 358-6111|24 hrs|108" +-75.084277,40.074922,"WAWA [Diesel]-Philadephia,PA","7913-29 Oxford Avenue, Philadephia,PA 19111|(215) 342-8285|24 hrs|276" +-75.537044,40.132085,"WAWA [Diesel]-Phoenixville,PA","120 Schuylkill Rd, Phoenixville,PA 19460|(610) 933-8524|24 hrs|8024" +-75.451316,40.134278,"WAWA [Diesel]-Phoenixville,PA","1600 Egypt Rd, Phoenixville,PA 19460|(610) 650-4270|24 hrs|8062" +-75.147366,40.385604,"WAWA [No Diesel]-Pipersville,PA","5854 Easton Road, Pipersville,PA 18947|(215) 766-1620|24 hrs|288" +-75.319213,40.107445,"WAWA [Diesel]-Plymouth Meeting,PA","1300 E Ridge Pike, Plymouth Meeting,PA 19462|(484) 679-1291|24 hours|8071" +-75.661053,40.2084,"WAWA [Diesel]-Pottstown,PA","1417 South Hanover Street, Pottstown,PA 19465|(610) 326-1090|24 hrs|295" +-75.614868,40.24374,"WAWA [Diesel]-Pottstown,PA","1520 E High St, Pottstown,PA 19464|(610) 718-0889|24 hrs|8040" +-75.65835,40.232775,"WAWA [Diesel]-Pottstown,PA","260 West Schuykill Rd, Pottstown,PA 19465|(610) 718-0885|24 hrs|146" +-75.298954,39.921026,"WAWA [no fuel]-Primos,PA","502 Oak Avenue, Primos,PA 19018|(610) 623-1156|24 hrs|9" +-75.3078517,39.8851367,"WAWA [no fuel]-Prospect Park,PA","917 Lincoln Avenue, Prospect Park,PA 19076|(610) 461-1539|24 hrs|235" +-75.309402,39.880362,"WAWA [no fuel]-Prospect Park,PA","934 Chester Pike, Prospect Park,PA 19076|(610) 237-8808|24 hrs|23" +-75.343525,40.4180767,"WAWA [Diesel]-Quakertown,PA","1095 S. West End Boulevard, Quakertown,PA 18951|(215) 538-1634|24 hrs|272" +-75.413986,40.4365,"WAWA [Diesel]-Quakertown,PA","1960 John Fries Hwy, Quakertown,PA 18951|(215) 538-2074|24 hrs|8021" +-75.36916,40.459579,"WAWA [Diesel]-Quakertown,PA","600 Northwest End Blvd, Quakertown,PA 18951|(215) 538-4393|24 hrs|8044" +-75.9162763,40.3648502,"WAWA [Diesel]-Reading,PA","1946 North 11th St., Reading,PA 19604|(610) 921-4500|24 hrs|153" +-76.009183,40.326015,"WAWA [Diesel]-Reading,PA","3337 Penn Avenue, Reading,PA 19608|(610) 927-2380|24 hrs|286" +-75.935758,40.389102,"WAWA [Diesel]-Reading,PA","3650 Pottsville Pike, Reading,PA 19605|(610) 921-4380|24 hrs|274" +-75.93516,40.32082,"WAWA [Diesel]-Reading,PA","413 Lancaster Ave, Reading,PA 19611|(484) 403-0440|24 hrs|8109" +-75.853721,40.301423,"WAWA [Diesel]-Reading,PA","5060 Perkiomen Ave, Reading,PA 19606|(610) 779-1406|24 hrs|166" +-75.01256,40.21078,"WAWA [Diesel]-Richboro,PA","870 Second Street Pike, Richboro,PA 18954|(267) 831-0360|24 hrs|8121" +-75.3174,39.877648,"WAWA [Diesel]-Ridley Park,PA","390 E Chester Pike, Ridley Park,PA 19078|(484) 324-6066|24 Hours|8133" +-75.49979,40.21412,"WAWA [Diesel]-Royersford,PA","1860 Ridge Pike, Royersford,PA 19468|(610) 831-5220|24 hrs|141" +-75.546408,40.215012,"WAWA [Diesel]-Royersford,PA","579 N Lewis Rd, Royersford,PA 19468|(610) 495-4735|24 hrs|8005" +-75.528455,40.193057,"WAWA [Diesel]-Royersford,PA","934 Main Street, Royersford,PA 19486|(610) 792-1940|24 hrs|284" +-75.4048,40.22855,"WAWA [Diesel]-Schwenksville,PA","4121 Skippack Pike, Schwenksville,PA 19473|(610) 584-3281|24 hrs|143" +-75.30415,40.32009,"WAWA [Diesel]-Souderton,PA","3520 Bethlehem Pike, Souderton,PA 18964|(215) 723-2204|24 hrs|8008" +-75.32848,40.313458,"WAWA [no fuel]-Souderton,PA","370 North Main Street, Souderton,PA 18964|(215) 721-1180|24 hrs|105" +-75.569255,40.182957,"WAWA [Diesel]-Spring City,PA","3380 Schuykill Road, Spring City,PA 19475|(610) 792-4335|24 hrs|258" +-75.333082,39.92723,"WAWA [no fuel]-Springfield,PA","195 Saxer Avenue, Springfield,PA 19064|(610) 328-3909|24 hrs|154" +-75.405089,40.044744,"WAWA [no fuel]-Strafford,PA","151 Sugartown Rd, Strafford,PA 19087|(610) 254-8537|24 hrs|291" +-75.200737,40.983181,"WAWA [no fuel]-Stroudsburg,PA","1015 West Main Street, Stroudsburg,PA 18360|(570) 424-8474|24 hrs|116" +-75.762932,39.993745,"WAWA [Diesel]-Thorndale,PA","3025 Lincoln Hwy, Thorndale,PA 19372|(610) 384-1335|24 hrs|8011" +-75.278521,39.961337,"WAWA [no fuel]-Upper Darby,PA","202 South State Rd, Upper Darby,PA 19082|(610) 446-3997|24 hrs|14" +-75.257516,39.95246,"WAWA [no fuel]-Upper Darby,PA","460 S. 69th Street, Upper Darby,PA 19082|(610) 259-6320|24 hrs|11" +-75.28094,39.96567,"WAWA [Diesel]-Upper Darby,PA","8240 West Chester Pk, Upper Darby,PA 19082|(484) 213-2924|24 hrs|8055" +-75.0714083,40.1714933,"WAWA [Diesel]-Warminster,PA","40 Davisville Road, Warminster,PA 18974|(215) 970-2324|24 hrs|149" +-75.139856,40.228167,"WAWA [no fuel]-Warrington,PA","550 Easton Road, Warrington,PA 18976|(215) 343-6350|24 hrs|221" +-75.392783,40.044558,"WAWA [no fuel]-Wayne,PA","215 W Lancaster Ave, Wayne,PA 19087|(610) 688-7313|24 hrs|257" +-75.55235,40.56646,"WAWA [Diesel]-Wescosville,PA","4900 Hamilton Boulevard, Wescosville,PA 18106|(610) 530-9980|24 hrs|287" +-75.616197,40.009317,"WAWA [no fuel]-West Chester,PA","10 West Boot Road, West Chester,PA 19380|(610) 692-4640|24 hrs|203" +-75.576227,39.967761,"WAWA [Diesel]-West Chester,PA","1050 West Chester Pike, West Chester,PA 19382|(610) 429-1205|24 hrs|8068" +-75.61583,39.9907,"WAWA [Diesel]-West Chester,PA","1195 Pottstown Pke, West Chester,PA 19380|(610) 696-9832|24 hrs|81" +-75.56216,39.90081,"WAWA [Diesel]-West Chester,PA","1413 Wilmington Pk, West Chester,PA 19382|(610) 696-6781|24 hrs|298" +-75.52737,39.9673,"WAWA [Diesel]-West Chester,PA","1501 West Chester Pike, West Chester,PA 19382|(610) 696-7523|24 hrs|8045" +-75.54486,39.99406,"WAWA [no fuel]-West Chester,PA","1594 Paoli Pike, West Chester,PA 19380|(610) 696-9814|24 hrs|88" +-75.6072311,39.9641991,"WAWA [no fuel]-West Chester,PA","2 East Rhoads Avenue, West Chester,PA 19380|(610) 696-9905|24 hrs|25" +-75.593709,39.9651,"WAWA [Diesel]-West Chester,PA","706 East Gay Street, West Chester,PA 19380|(610) 701-4760|24 hrs|278" +-75.309926,40.067852,"WAWA [no fuel]-West Conshohocken,PA","100 Crawford Ave, West Conshohocken,PA 19428|(610) 825-0424|24 hrs|253" +-75.7718333,41.0597683,"WAWA [Diesel]-White Haven,PA","1-17 Rt 940, White Haven,PA 18661|(570) 443-2130|24 hrs|270" +-75.499804,40.651024,"WAWA [Diesel]-Whitehall,PA","2985 Macarthur Rd, Whitehall,PA 18052|(610) 439-2414|24 hrs|8014" +-75.115274,40.14498,"WAWA [Diesel]-Willow Grove,PA","201 York Rd, Willow Grove,PA 19090|(215) 706-2071|24 hrs|8063" +-75.35365,39.87063,"WAWA [no fuel]-Woodlyn,PA","1920 West Mcdade Blvd., Woodlyn,PA 19094|(610) 874-9866|24 hrs|223" +-75.345913,39.88273,"WAWA [no fuel]-Woodlyn,PA","510 Fairview Road, Woodlyn,PA 19094|(610) 833-9958|24 hrs|35" +-75.160694,40.078999,"WAWA [Diesel]-Wyncote,PA","8250 Limekiln Pk, Wyncote,PA 19095|(215) 422-3018|24 hrs|8080" +-75.9754958,40.306223,"WAWA [Diesel]-Wyomissing,PA","2005 Museum Rd, Wyomissing,PA 19610|(610) 775-5900|24 hrs|8010" +-75.980596,40.3553097,"WAWA [Diesel]-Wyomissing,PA","2709 North Meridian Blvd, Wyomissing,PA 19610|(610) 372-0333|24 hrs|147" +-75.954642,40.3359124,"WAWA [Diesel]-Wyomissing,PA","837 Penn Ave, Wyomissing,PA 19610|none listed|24 hrs|8124" +-74.837281,40.241612,"WAWA [no fuel]-Yardley,PA","44 South Main Street, Yardley,PA 19067|(215) 493-0533|24 hrs|59" +-75.51907,40.29588,"WAWA [Diesel]-Zieglerville,PA","3 Big Road, Zieglerville,PA 19492|(610) 287-2092|24 hrs|281" +-77.461762,37.686958,"WAWA [Diesel]-Ashland,VA","100 North Washington Hwy, Ashland,VA 23005|(804) 412-8088|24 hrs|8652" +-77.460301,37.686259,"WAWA [Diesel]-Ashland,VA","10373 Sliding Hill Rd, Ashland,VA 23005|(804) 550-2970|24 hrs|8607" +-77.42569,38.914162,"WAWA [Diesel]-Chantilly,VA","3450 Historc Sully Way, Chantilly,VA 20151|(703) 689-8917|24 hrs|8639" +-78.434117,38.132216,"WAWA [Diesel]-Charlottesville,VA","3267 Proffit Rd, Charlottesville,VA 22911|(434) 260-0074|24 hrs|8659" +-78.45291,38.034114,"WAWA [Diesel]-Charlottesville,VA","820 Pantops Corner Way, Charlottesville,VA 22911|(434) 485-0344|24 hrs|8667" +-76.224937,36.657953,"WAWA [Diesel]-Chesapeake,VA","101 Hillcrest Pkwy, Chesapeake,VA 23328|(757) 432-1900|24 hrs|8613" +-76.41611,36.86583,"WAWA [Diesel]-Chesapeake,VA","3408 Western Branch Blvd, Chesapeake,VA 23321|(757) 638-6431|24 hrs|695" +-76.226084,36.742722,"WAWA [Diesel]-Chesapeake,VA","471 Kempsville Road, Chesapeake,VA 23320|(757) 549-1670|24 hrs|8632" +-76.235893,36.79093,"WAWA [Diesel]-Chesapeake,VA","720 Woodlake Dr, Chesapeake,VA 23320|(757) 420-3053|24 hrs|654" +-77.49772,37.36421,"WAWA [Diesel]-Chester,VA","11021 Ironbridge Road, Chester,VA 23831|(804) 706-6623|24 hrs|670" +-77.4168539,37.3675377,"WAWA [Diesel]-Chester,VA","11701 Jefferson Davis Hwy, Chester,VA 23831|(804) 717-9475|24 hrs|692" +-77.3451336,37.3471224,"WAWA [Diesel]-Chester,VA","600 E Hundred Road, Chester,VA 23836|(804) 530-0822|24 hrs|676" +-77.38111,37.253107,"WAWA [Diesel]-Colonial Heights,VA","1270 Temple Ave, Colonial Heights,VA 23834|(804) 520-6982|24 hrs|8624" +-77.4093054,37.3059669,"WAWA [Diesel]-Colonial Heights,VA","15840 Jefferson Davis Hwy, Colonial Heights,VA 23834|(804) 526-6022|24 hrs|684" +-77.4102828,37.244336,"WAWA [Diesel]-Colonial Heights,VA","604 Boulevard, Colonial Heights,VA 23834|(804) 526-9823|24 hrs|693" +-77.506724,38.225843,"WAWA [Diesel]-Fredericksburg,VA","10060 Jefferson Davis Hwy, Fredericksburg,VA 22407|(540) 710-7970|24 hrs|8617" +-77.515,38.24722,"WAWA [Diesel]-Fredericksburg,VA","10626-10630 Courthouse Road, Fredericksburg,VA 22407|(540) 898-4278|24 hrs|663" +-77.5134059,38.2972981,"WAWA [Diesel]-Fredericksburg,VA","1140 Carl D Silver Pkwy, Fredericksburg,VA 22401|(540) 785-3438|24 hrs|660" +-77.49328,38.2495563,"WAWA [Diesel]-Fredericksburg,VA","199 Falcon Drive, Fredericksburg,VA 22408|(540) 834-2025|24 hrs|691" +-77.4999865,38.2958595,"WAWA [Diesel]-Fredericksburg,VA","2390 Plank Road, Fredericksburg,VA 22401|(540) 899-2043|24 hrs|667" +-77.4506561,38.3161648,"WAWA [Diesel]-Fredericksburg,VA","275 Butler Road, Fredericksburg,VA 22405|(540) 899-2796|24 hrs|688" +-77.44773,38.27138,"WAWA [Diesel]-Fredericksburg,VA","3402 Shannon Park Drive, Fredericksburg,VA 22401|(540) 368-3924|24 hrs|658" +-77.5381463,38.2895739,"WAWA [Diesel]-Fredericksburg,VA","4527 Plank Road, Fredericksburg,VA 22407|(540) 785-5535|24 hrs|664" +-77.494438,38.264457,"WAWA [Diesel]-Fredericksburg,VA","4625 Harrison Rd, Fredericksburg,VA 22408|(540) 898-3701|24 hrs|653" +-77.5102048,38.3552881,"WAWA [Diesel]-Fredericksburg,VA","830 Warrenton Road, Fredericksburg,VA 22406|(540) 373-0571|24 hrs|668" +-77.496477,38.344096,"WAWA [Diesel]-Fredericksburg,VA","9 South Gateway Drive, Fredericksburg,VA 22406|(540) 373-6203|24 hrs|8627" +-77.622453,38.792561,"WAWA No Diesel]-Gainesville,VA","14461 Lee Hwy, Gainesville,VA 20155|(571) 261-4089|24 hrs|651" +-77.4609461,37.6428662,"WAWA [No Diesel]-Glen Allen,VA","8800 Brook Rd, Glen Allen,VA 23060|(804) 264-4698|24 hrs|677" +-76.32494,37.03291,"WAWA [Diesel]-Hampton,VA","301 E Mercury Blvd, Hampton,VA 23663|(757) 589-4169|24 hrs|8642" +-76.409513,37.036338,"WAWA [Diesel]-Hamtpon,VA","2401 W Mercury Blvd, Hamtpon,VA 23666|(757) 825-0941|24 hrs|8629" +-76.523697,37.34456,"WAWA [No Diesel]-Hayes,VA","5120 George Washington Mem Hwy, Hayes,VA 23072|(804) 693-3010|24 hrs|652" +-77.6507074,37.663638,"WAWA [Diesel]-Henrico,VA","12564 Broad St, Henrico,VA 23233|(804) 360-2119|24 hrs|696" +-77.34916,37.512112,"WAWA [Diesel]-Henrico,VA","5301 South Laburnum Ave, Henrico,VA 23231|(804) 226-1040|24 hrs|8626" +-77.531451,37.625474,"WAWA [Diesel]-Henrico,VA","8017 West Broad St, Henrico,VA 23294|(804) 290-4374|24 hrs|8603" +-77.509054,37.6351848,"WAWA [Diesel]-Henrico,VA","8851 Staple Milsl Rd, Henrico,VA 23228|(804) 262-7335|24 hrs|682" +-77.5639383,37.6123467,"WAWA [Diesel]-Henrico,VA","9100 Three Chopt Road, Henrico,VA 23229|(804) 459-8828|24 hrs|8647" +-77.317196,37.271065,"WAWA [Diesel]-Hopewill,VA","907 Colonial Corner Dr, Hopewill,VA 23860|(804) 452-3089|24 hrs|698" +-77.0768373,38.3396459,"WAWA [Diesel]-King George,VA","5362 James Madison Parkway, King George,VA 22485|(540) 644-8045|24 hrs|669" +-77.515721,38.793354,"WAWA [no fuel]-Manassas,VA","10691 Davidson Place, Manassas,VA 20109|(571) 292-3396|24 hrs|8658" +-77.532134,38.737149,"WAWA [Diesel]-Manassas,VA","11111 Nokesville Rd, Manassas,VA 20112|(703) 257-1630|24 hrs|8637" +-77.448579,38.750636,"WAWA [Diesel]-Manassas,VA","9471 Liberia Ave, Manassas,VA 20110|(571) 363-3039|24 hrs|8644" +-77.328445,37.613597,"WAWA [Diesel]-Mechanicsville,VA","7847 Compass Point Lane, Mechanicsville,VA 23111|(804) 569-6149|24 hrs|8634" +-77.404269,37.649463,"WAWA [Diesel]-Mechanicsville,VA","9179 Chamberlayne Road, Mechanicsville,VA 23005|(804) 746-4052|24 hrs|8602" +-77.583085,37.44244,"WAWA [Diesel]-Midlothian,VA","10135 Hull Street Rd, Midlothian,VA 23112|(804) 674-4381|24 hrs|8625" +-77.6650231,37.4048477,"WAWA [Diesel]-Midlothian,VA","12001 Southshore Point Dr, Midlothian,VA 23112|(804) 639-2015|24 hrs|657" +-77.698802,37.513071,"WAWA [Diesel]-Midlothian,VA","150 Pike View Rd, Midlothian,VA 23113|(804) 794-4518|24 hrs|8623" +-77.6851592,37.4927911,"WAWA [Diesel]-Midlothian,VA","16000 Otterdale Rd, Midlothian,Va 23114|(804) 362-0777|24 hrs|8651" +-77.61056,37.43444,"WAWA [Diesel]-Midlothian,VA","3850 North Baily Bridge Rd, Midlothian,Va 23112|(804) 277-4131|24 hrs|674" +-76.492595,37.100383,"WAWA [Diesel]-Newport News,VA","12095 Jefferson Ave, Newport News,VA 23606|(757) 269-4213|24 hrs|8631" +-76.546437,37.136757,"WAWA [Diesel]-Newport News,VA","14803 Warwick Blvd, Newport News,VA 23608|(757) 874-2704|24 hrs|656" +-76.440159,37.021937,"WAWA [Diesel]-Newport News,VA","5280 W Mercury Blvd, Newport News,VA 23605|(757) 838-0514|24 hrs|8641" +-76.460015,37.0808019,"WAWA [Diesel]-Newport News,VA","772 J Clyde Morris Blvd, Newport News,Va 23601|(757) 873-4737|24 hrs|685" +-76.209498,36.861201,"WAWA [Diesel]-Norfolk,VA","1146 N Military Hwy, Norfolk,VA 23502|(757) 525-9914|24 hrs|8645" +-76.245682,36.863336,"WAWA [Diesel]-Norfolk,VA","3360 E Princess Anne Rd, Norfolk,VA 23502|(757) 855-2060|24 hrs|8633" +-76.22628,36.897096,"WAWA [Diesel]-Norfolk,VA","6301 North Military Hwy, Norfolk,VA 23518|(757) 857-3071|24 hrs|8628" +-76.18059,36.84922,"WAWA [Diesel]-Norfolk,VA","701 N Newtown Road, Norfolk,VA 23502|(757) 785-4462|24 hrs|8661" +-76.318132,36.927,"WAWA [Diesel]-Norfolk,VA","8105 Hampton Blvd, Norfolk,VA 23505|(757) 451-2706|24 hrs|8606" +-76.242218,36.914123,"WAWA [Diesel]-Norfolk,VA","975 East Little Creek Rd, Norfolk,VA 23518|(757) 480-7436|24 hrs|8604" +-77.3703822,37.1891414,"WAWA [Diesel]-Petersburg,VA","3199 South Crater Rd, Petersburg,VA 23805|(804) 862-3551|24 hrs|683" +-76.34026,36.829328,"WAWA [Diesel]-Portsmouth,VA","1200 Frederick Blvd, Portsmouth,VA 23704|(757) 393-0189|24 hrs|8636" +-76.359714,36.810638,"WAWA [No Diesel]-Portsmouth,VA","4005 Victory Blvd, Portsmouth,VA 23701|(757) 488-1472|24 hrs|8612" +-77.60092,37.5057,"WAWA [Diesel]-Richmond,VA","11021 Midlothian Tpk, Richmond,VA 23235|(804) 897-4283|24 hrs|659" +-77.589929,37.648545,"WAWA [Diesel]-Richmond,VA","11052 West Broad St, Richmond,VA 23220|(804) 527-8302|24 hrs|8615" +-77.492729,37.591984,"WAWA [Diesel]-Richmond,VA","2415 Staples Mill Road, Richmond,VA 23230|(804) 354-6804|24 hrs|8630" +-77.46438,37.57462,"WAWA [Diesel]-Richmond,VA","3100 N Boulevard, Richmond,VA 23230|(804) 362-7442|24 hrs|8648" +-77.376609,37.562052,"WAWA [Diesel]-Richmond,VA","3384 Creighton Road, Richmond,VA 23223|(804) 225-8104|24 hrs|8635" +-77.453843,37.603563,"WAWA [Diesel]-Richmond,VA","5221 Brook Rd, Richmond,VA 23227|(804) 266-1031|24 hrs|655" +-77.4892602,37.4352727,"WAWA [Diesel]-Richmond,VA","6019 Ironbridge Rd, Richmond,VA 23234|(804) 275-5484|24 hrs|673" +-77.531188,37.537644,"WAWA [Diesel]-Richmond,VA","7316 Forest Hill Ave, Richmond,VA 23225|(804) 560-0365|24 hrs|8600" +-77.5350652,37.5002095,"WAWA [Diesel]-Richmond,VA","7500 Midlothian Tpk, Richmond,VA 23225|(804) 675-4880|24 hrs|672" +-77.328928,37.524512,"WAWA [Diesel]-Sandston,VA","500 South Airport Dr, Sandston,VA 23150|(804) 652-1890|24 hrs|8605" +-77.411665,38.4675213,"WAWA [Diesel]-Stafford,VA","105 Garrisonville Rd, Stafford,VA 22554|(540) 659-8672|24 hrs|697" +-77.4362746,38.4733348,"WAWA [Diesel]-Stafford,VA","15 Eustace Rd, Stafford,VA 22554|(540) 288-2057|24 hrs|689" +-77.4035364,38.4494934,"WAWA [Diesel]-Stafford,VA","72 Austin Park Dr, Stafford,VA 22554|(540) 288-0655|24 hrs|665" +-77.411549,38.97801,"WAWA [Diesel]-Sterling,VA","23055 Oakgrove Rd, Sterling,VA 20166|(571) 441-2622|24 hrs|8640" +-76.582096,36.777691,"WAWA [Diesel]-Suffolk,VA","2916 Godwin Blvd, Suffolk,VA 23434|(757) 925-2869|24 hrs|8638" +-77.274013,38.89503,"WAWA [Diesel]-Vienna,VA","465 Maple Ave W, Vienna,VA 22180-5606|(703) 559-7944|24 hrs|8669" +-76.1023253,36.7955141,"WAWA [Diesel]-Virginia Beach,VA","1579 Lynnhaven Pkwy, Virginia Beach,VA 23456|(757) 368-9109|24 hrs|679" +-76.021698,36.842954,"WAWA [Diesel]-Virginia Beach,VA","1700 Virginia Beach Blvd, Virginia Beach,VA 23454|(757) 422-6300|24 hrs|8608" +-76.095842,36.833581,"WAWA [Diesel]-Virginia Beach,VA","201 South Rosemont Rd, Virginia Beach,VA 23452|(757) 463-8936|24 hrs|671" +-76.0562546,36.8407938,"WAWA [Diesel]-Virginia Beach,VA","2501 Virginia Beach Blvd, Virginia Beach,Va 23452|(757) 431-3123|24 hrs|678" +-76.07462,36.8443,"WAWA [Diesel]-Virginia Beach,VA","2954 Virginia Beach Blvd, Virginia Beach,VA 23462|(757) 340-2615|24 hrs|694" +-76.126095,36.8225048,"WAWA [Diesel]-Virginia Beach,VA","4377 Holland Rd, Virginia Beach,VA 23462|(757) 326-6464|24 hrs|690" +-76.1362045,36.9048309,"WAWA [Diesel]-Virginia Beach,VA","4800 Shore Dr, Virginia Beach,Va 23455|(757) 460-5329|24 hrs|675" +-76.167887,36.794472,"WAWA [Diesel]-Virginia Beach,VA","5048 Ferrell Pkwy, Virginia Beach,VA 23454|(757) 495-1390|24 hrs|8618" +-76.179441,36.88576,"WAWA [Diesel]-Virginia Beach,VA","5701 Northampton Blvd, Virginia Beach,VA 23455|(757) 460-1114|24 hrs|8609" +-77.808759,38.71672,"WAWA [Diesel]-Warrenton,VA","510 West Shirley Ave, Warrenton,VA 20186|(540) 349-8999|24 hrs|8622" +-76.7115554,37.2732366,"WAWA [no fuel]-Williamsburg,VA","315 Richmond Road, Williamsburg,VA 23185|(757) 258-1322|24 hrs|681" +-76.754348,37.34089,"WAWA [Diesel]-Williamsburg,VA","6446 Richmond Rd, Williamsburg,VA 23188|(757) 500-2450|24 hrs|8664" +-76.6762001,37.2662641,"WAWA [Diesel]-Williamsburg,VA","842 Merrimac Trail, Williamsburg,VA 23185|(757) 220-5046|24 hrs|699" +-77.30028,38.65889,"WAWA [Diesel]-Woodbridge,VA","13355 Minnieville Rd, Woodbridge,VA 22192|(703) 492-9984|24 hrs|661" +-77.28803,38.60791,"WAWA [Diesel]-Woodbridge,VA","15775-1580 Neabsco Rd, Woodbridge,VA 22191|(703) 583-3558|24 hrs|680" +-77.27611,38.63306,"WAWA [Diesel]-Woodbridge,VA","2051 Daniel Stewart Square, Woodbridge,VA 22191|(703) 492-9858|24 hrs|662" +-76.456544,37.121257,"WAWA [Diesel]-Yorktown,VA","2610 George Washington Memorial Highway, Yorktown,VA 23693|(757) 833-7801|24 Hrs|8657" +-76.46515,37.165367,"WAWA [Diesel]-Yorktown,VA","5824 George Washington Hwy, Yorktown,VA 23692|(757) 833-7801|24 hrs|687" diff --git a/Winter-2023/Digital Earth/Wawa NJ Counties.dbf b/Winter-2023/Digital Earth/Wawa NJ Counties.dbf new file mode 100755 index 0000000..450a44c Binary files /dev/null and b/Winter-2023/Digital Earth/Wawa NJ Counties.dbf differ diff --git a/Winter-2023/Digital Earth/Wawa NJ Counties.prj b/Winter-2023/Digital Earth/Wawa NJ Counties.prj new file mode 100755 index 0000000..94a3ab8 --- /dev/null +++ b/Winter-2023/Digital Earth/Wawa NJ Counties.prj @@ -0,0 +1 @@ +PROJCS["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",492125.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-74.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Latitude_Of_Origin",38.8333333333333],UNIT["US survey foot",0.304800609601219]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/Wawa NJ Counties.shp b/Winter-2023/Digital Earth/Wawa NJ Counties.shp new file mode 100755 index 0000000..0d5f619 Binary files /dev/null and b/Winter-2023/Digital Earth/Wawa NJ Counties.shp differ diff --git a/Winter-2023/Digital Earth/Wawa NJ Counties.shx b/Winter-2023/Digital Earth/Wawa NJ Counties.shx new file mode 100755 index 0000000..853ae63 Binary files /dev/null and b/Winter-2023/Digital Earth/Wawa NJ Counties.shx differ diff --git a/Winter-2023/Digital Earth/Wawa NJ Municipalities.dbf b/Winter-2023/Digital Earth/Wawa NJ Municipalities.dbf new file mode 100755 index 0000000..426acb9 Binary files /dev/null and b/Winter-2023/Digital Earth/Wawa NJ Municipalities.dbf differ diff --git a/Winter-2023/Digital Earth/Wawa NJ Municipalities.prj b/Winter-2023/Digital Earth/Wawa NJ Municipalities.prj new file mode 100755 index 0000000..94a3ab8 --- /dev/null +++ b/Winter-2023/Digital Earth/Wawa NJ Municipalities.prj @@ -0,0 +1 @@ +PROJCS["NAD_1983_StatePlane_New_Jersey_FIPS_2900_Feet",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Transverse_Mercator"],PARAMETER["False_Easting",492125.0],PARAMETER["False_Northing",0.0],PARAMETER["Central_Meridian",-74.5],PARAMETER["Scale_Factor",0.9999],PARAMETER["Latitude_Of_Origin",38.8333333333333],UNIT["US survey foot",0.304800609601219]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/Wawa NJ Municipalities.shp b/Winter-2023/Digital Earth/Wawa NJ Municipalities.shp new file mode 100755 index 0000000..7c6e2d2 Binary files /dev/null and b/Winter-2023/Digital Earth/Wawa NJ Municipalities.shp differ diff --git a/Winter-2023/Digital Earth/Wawa NJ Municipalities.shx b/Winter-2023/Digital Earth/Wawa NJ Municipalities.shx new file mode 100755 index 0000000..2b2c964 Binary files /dev/null and b/Winter-2023/Digital Earth/Wawa NJ Municipalities.shx differ diff --git a/Winter-2023/Digital Earth/average-height-of-men-for-selected-countries.csv b/Winter-2023/Digital Earth/average-height-of-men-for-selected-countries.csv new file mode 100755 index 0000000..6278357 --- /dev/null +++ b/Winter-2023/Digital Earth/average-height-of-men-for-selected-countries.csv @@ -0,0 +1,1251 @@ +Entity,Code,Year,Human Height (University of Tuebingen (2015)) +Afghanistan,AFG,1870,168.4 +Afghanistan,AFG,1880,165.7 +Afghanistan,AFG,1930,166.8 +Albania,ALB,1880,170.1 +Albania,ALB,1890,169.8 +Albania,ALB,1900,169.2 +Algeria,DZA,1910,168.8 +Algeria,DZA,1920,166.2 +Algeria,DZA,1930,169 +Angola,AGO,1810,160.5 +Angola,AGO,1880,168.8 +Angola,AGO,1890,169.1 +Angola,AGO,1900,168.1 +Angola,AGO,1910,168 +Angola,AGO,1920,165.7 +Angola,AGO,1930,166.7 +Argentina,ARG,1810,168.8 +Argentina,ARG,1820,169.9 +Argentina,ARG,1830,170.9 +Argentina,ARG,1840,169.6 +Argentina,ARG,1850,168.2 +Argentina,ARG,1860,167.4 +Argentina,ARG,1870,167.6 +Argentina,ARG,1880,167.6 +Argentina,ARG,1890,167.8 +Argentina,ARG,1900,167.9 +Argentina,ARG,1910,168.2 +Argentina,ARG,1920,169 +Argentina,ARG,1930,169.8 +Argentina,ARG,1940,170.6 +Argentina,ARG,1950,170.8 +Armenia,ARM,1850,169.3 +Armenia,ARM,1860,167.6 +Armenia,ARM,1890,166.2 +Armenia,ARM,1900,163.6 +Armenia,ARM,1910,163.8 +Armenia,ARM,1940,168 +Armenia,ARM,1960,170.6 +Armenia,ARM,1970,171.7 +Armenia,ARM,1980,171.7 +Australia,AUS,1850,170 +Australia,AUS,1860,170.6 +Australia,AUS,1870,170.1 +Australia,AUS,1880,171.1 +Australia,AUS,1890,171.3 +Australia,AUS,1900,172.3 +Australia,AUS,1910,172.7 +Australia,AUS,1920,172.8 +Australia,AUS,1960,176.3 +Australia,AUS,1970,178.4 +Austria,AUT,1820,163.7 +Austria,AUT,1830,163.4 +Austria,AUT,1840,164.8 +Austria,AUT,1850,165.8 +Austria,AUT,1860,166.4 +Austria,AUT,1870,167.2 +Austria,AUT,1880,167.7 +Austria,AUT,1890,168.4 +Austria,AUT,1900,168.9 +Austria,AUT,1910,168.9 +Austria,AUT,1920,170.4 +Austria,AUT,1960,177 +Austria,AUT,1970,177.5 +Austria,AUT,1980,178.8 +Azerbaijan,AZE,1850,170.2 +Azerbaijan,AZE,1860,170.8 +Azerbaijan,AZE,1950,171.2 +Azerbaijan,AZE,1960,171.7 +Azerbaijan,AZE,1970,172 +Azerbaijan,AZE,1980,172.2 +Bahrain,BHR,1930,160.7 +Bahrain,BHR,1940,163.8 +Bahrain,BHR,1950,164 +Bangladesh,BGD,1850,161.8 +Bangladesh,BGD,1860,162.3 +Bangladesh,BGD,1870,163.7 +Bangladesh,BGD,1880,162.1 +Bangladesh,BGD,1950,161.6 +Bangladesh,BGD,1960,162.2 +Bangladesh,BGD,1980,162.4 +Belarus,BLR,1840,163.9 +Belarus,BLR,1900,166.5 +Belarus,BLR,1980,176.4 +Belgium,BEL,1810,163.1 +Belgium,BEL,1820,163.7 +Belgium,BEL,1830,164 +Belgium,BEL,1840,165.1 +Belgium,BEL,1850,166.1 +Belgium,BEL,1860,166.6 +Belgium,BEL,1870,166.6 +Belgium,BEL,1900,167.8 +Belgium,BEL,1940,174.5 +Belgium,BEL,1960,176.8 +Benin,BEN,1810,164.9 +Benin,BEN,1910,168.9 +Benin,BEN,1920,168.1 +Benin,BEN,1930,168.2 +Benin,BEN,1950,169.9 +Benin,BEN,1960,170.7 +Benin,BEN,1970,170.3 +Benin,BEN,1980,169.2 +Bolivia,BOL,1890,163.6 +Bolivia,BOL,1900,162.5 +Bolivia,BOL,1930,162.5 +Bolivia,BOL,1940,163.4 +Bolivia,BOL,1950,162.5 +Bolivia,BOL,1960,163.2 +Bolivia,BOL,1970,163.9 +Bolivia,BOL,1980,164.2 +Botswana,BWA,1910,165.4 +Botswana,BWA,1980,167.1 +Brazil,BRA,1810,164.3 +Brazil,BRA,1820,164.3 +Brazil,BRA,1830,164.8 +Brazil,BRA,1840,164.6 +Brazil,BRA,1850,164.5 +Brazil,BRA,1860,165 +Brazil,BRA,1870,166.5 +Brazil,BRA,1880,166.1 +Brazil,BRA,1890,167.1 +Brazil,BRA,1900,167.5 +Brazil,BRA,1910,166.5 +Brazil,BRA,1920,166.6 +Brazil,BRA,1930,167 +Brazil,BRA,1940,167.1 +Brazil,BRA,1950,168.2 +Brazil,BRA,1960,169 +Brazil,BRA,1970,171.6 +Brazil,BRA,1980,171.7 +Bulgaria,BGR,1880,167.6 +Bulgaria,BGR,1930,171.7 +Bulgaria,BGR,1940,171.3 +Bulgaria,BGR,1950,172.9 +Burkina Faso,BFA,1810,166.3 +Burkina Faso,BFA,1820,165.4 +Burkina Faso,BFA,1830,166.7 +Burkina Faso,BFA,1840,162.6 +Burkina Faso,BFA,1870,171.2 +Burkina Faso,BFA,1880,171.5 +Burkina Faso,BFA,1890,167.9 +Burkina Faso,BFA,1900,171.2 +Burkina Faso,BFA,1910,171.1 +Burkina Faso,BFA,1920,172.4 +Burkina Faso,BFA,1930,171 +Burkina Faso,BFA,1940,172.5 +Burkina Faso,BFA,1950,172.2 +Burkina Faso,BFA,1960,172.8 +Burkina Faso,BFA,1970,172.8 +Burkina Faso,BFA,1980,172.8 +Burundi,BDI,1920,166.1 +Burundi,BDI,1930,169.4 +Cambodia,KHM,1840,161.6 +Cambodia,KHM,1850,163.2 +Cambodia,KHM,1860,164.9 +Cambodia,KHM,1870,159 +Cambodia,KHM,1880,161.7 +Cambodia,KHM,1890,160.4 +Cambodia,KHM,1900,158.3 +Cambodia,KHM,1910,160.6 +Cambodia,KHM,1920,158.5 +Cambodia,KHM,1930,158.4 +Cambodia,KHM,1950,162.4 +Cambodia,KHM,1960,162.8 +Cambodia,KHM,1970,162.7 +Cambodia,KHM,1980,162.5 +Cameroon,CMR,1810,165.9 +Cameroon,CMR,1860,165.1 +Cameroon,CMR,1870,165.7 +Cameroon,CMR,1880,166.6 +Cameroon,CMR,1890,164.1 +Cameroon,CMR,1900,166.7 +Cameroon,CMR,1910,168.8 +Cameroon,CMR,1920,166.7 +Cameroon,CMR,1930,169.5 +Cameroon,CMR,1950,171.3 +Cameroon,CMR,1960,171.5 +Cameroon,CMR,1970,171.6 +Cameroon,CMR,1980,171 +Canada,CAN,1810,171.5 +Canada,CAN,1820,171.5 +Canada,CAN,1830,171.5 +Canada,CAN,1840,170.4 +Canada,CAN,1850,172.5 +Canada,CAN,1860,172 +Canada,CAN,1870,171.2 +Canada,CAN,1880,171.2 +Canada,CAN,1890,170.7 +Canada,CAN,1900,169.9 +Canada,CAN,1910,171.5 +Canada,CAN,1920,173 +Canada,CAN,1930,172.7 +Canada,CAN,1940,174.6 +Canada,CAN,1950,177 +Canada,CAN,1960,178.3 +Canada,CAN,1970,178.8 +Canada,CAN,1980,179.6 +Cape Verde,CPV,1980,169 +Central African Republic,CAF,1880,167.1 +Central African Republic,CAF,1900,167.3 +Central African Republic,CAF,1910,164.9 +Central African Republic,CAF,1920,163.6 +Central African Republic,CAF,1930,164 +Central African Republic,CAF,1950,169.3 +Central African Republic,CAF,1960,170.8 +Central African Republic,CAF,1970,169.9 +Chad,TCD,1870,169.8 +Chad,TCD,1880,169 +Chad,TCD,1890,169.6 +Chad,TCD,1900,165.8 +Chad,TCD,1920,169.4 +Chad,TCD,1930,170.6 +Chad,TCD,1950,173.7 +Chad,TCD,1960,174.3 +Chad,TCD,1970,173.8 +Chad,TCD,1980,173.3 +Chile,CHL,1950,169.6 +Chile,CHL,1980,173.1 +China,CHN,1810,165.7 +China,CHN,1820,165.8 +China,CHN,1830,165.8 +China,CHN,1840,166.2 +China,CHN,1850,166.2 +China,CHN,1860,165.7 +China,CHN,1870,165.8 +China,CHN,1880,165.3 +China,CHN,1890,164 +China,CHN,1900,164 +China,CHN,1910,164.7 +China,CHN,1920,164.2 +China,CHN,1930,166.5 +China,CHN,1940,167.4 +China,CHN,1950,169.2 +China,CHN,1960,170 +China,CHN,1970,170 +China,CHN,1980,171.5 +Colombia,COL,1870,161.1 +Colombia,COL,1880,162.1 +Colombia,COL,1890,161.9 +Colombia,COL,1900,161.8 +Colombia,COL,1910,163.5 +Colombia,COL,1920,164.7 +Colombia,COL,1930,165.5 +Colombia,COL,1940,167.1 +Colombia,COL,1950,167.8 +Colombia,COL,1960,168.5 +Colombia,COL,1970,168.9 +Colombia,COL,1980,170.6 +Comoros,COM,1950,166.8 +Comoros,COM,1960,167 +Comoros,COM,1970,167 +Congo,COG,1810,163.3 +Congo,COG,1850,167.6 +Congo,COG,1860,166 +Congo,COG,1920,165.4 +Congo,COG,1930,164.6 +Congo,COG,1940,166.9 +Congo,COG,1950,168.4 +Congo,COG,1960,169.4 +Congo,COG,1970,169 +Congo,COG,1980,168.4 +Costa Rica,CRI,1940,166.1 +Costa Rica,CRI,1980,173.6 +Cote d'Ivoire,CIV,1810,165.1 +Cote d'Ivoire,CIV,1850,170.5 +Cote d'Ivoire,CIV,1870,169.8 +Cote d'Ivoire,CIV,1890,168.8 +Cote d'Ivoire,CIV,1900,167.9 +Cote d'Ivoire,CIV,1910,166.6 +Cote d'Ivoire,CIV,1920,166.7 +Cote d'Ivoire,CIV,1930,167.5 +Cote d'Ivoire,CIV,1940,168.7 +Cote d'Ivoire,CIV,1950,170 +Cote d'Ivoire,CIV,1960,171.3 +Cote d'Ivoire,CIV,1970,171.2 +Cote d'Ivoire,CIV,1980,171 +Croatia,HRV,1810,163.2 +Croatia,HRV,1820,163.6 +Croatia,HRV,1830,163.5 +Croatia,HRV,1840,161.2 +Croatia,HRV,1850,168.1 +Croatia,HRV,1860,165.9 +Croatia,HRV,1870,166.8 +Croatia,HRV,1880,168.9 +Croatia,HRV,1900,171.5 +Croatia,HRV,1930,176.1 +Croatia,HRV,1950,175.1 +Croatia,HRV,1960,178.2 +Cuba,CUB,1870,167.1 +Cuba,CUB,1880,166.8 +Cuba,CUB,1890,166 +Cuba,CUB,1900,166.1 +Cuba,CUB,1910,167.9 +Cuba,CUB,1940,169.4 +Cuba,CUB,1950,169.2 +Cyprus,CYP,1860,168.8 +Cyprus,CYP,1870,169.8 +Cyprus,CYP,1880,169.1 +Cyprus,CYP,1890,168.3 +Czechia,CZE,1810,164 +Czechia,CZE,1820,163 +Czechia,CZE,1830,163.5 +Czechia,CZE,1840,164.8 +Czechia,CZE,1850,165.5 +Czechia,CZE,1860,166 +Czechia,CZE,1870,167 +Czechia,CZE,1880,167.6 +Czechia,CZE,1890,169.8 +Czechia,CZE,1900,170.7 +Czechia,CZE,1910,170.8 +Czechia,CZE,1920,173.3 +Czechia,CZE,1930,175.7 +Czechia,CZE,1940,176.8 +Czechia,CZE,1950,177.7 +Czechia,CZE,1970,178.7 +Democratic Republic of Congo,COD,1810,163.3 +Democratic Republic of Congo,COD,1870,165.7 +Democratic Republic of Congo,COD,1880,163.2 +Democratic Republic of Congo,COD,1890,162.6 +Democratic Republic of Congo,COD,1910,165.3 +Democratic Republic of Congo,COD,1920,163.1 +Democratic Republic of Congo,COD,1930,167.3 +Democratic Republic of Congo,COD,1950,168.5 +Democratic Republic of Congo,COD,1960,168.3 +Democratic Republic of Congo,COD,1970,169 +Democratic Republic of Congo,COD,1980,167.5 +Denmark,DNK,1820,167 +Denmark,DNK,1830,165.4 +Denmark,DNK,1850,167.4 +Denmark,DNK,1860,168.1 +Denmark,DNK,1870,168.1 +Denmark,DNK,1880,169.5 +Denmark,DNK,1890,169.2 +Denmark,DNK,1900,170.5 +Denmark,DNK,1910,170 +Denmark,DNK,1920,173.5 +Denmark,DNK,1930,173.9 +Denmark,DNK,1940,175.9 +Denmark,DNK,1950,179.8 +Denmark,DNK,1960,180.2 +Denmark,DNK,1970,180.8 +Denmark,DNK,1980,183.2 +Djibouti,DJI,1980,168.9 +Dominican Republic,DOM,1940,167.4 +Dominican Republic,DOM,1950,168.1 +Dominican Republic,DOM,1960,169 +Dominican Republic,DOM,1970,168.8 +Egypt,EGY,1850,166.4 +Egypt,EGY,1860,167.7 +Egypt,EGY,1870,166.9 +Egypt,EGY,1880,163 +Egypt,EGY,1900,166.2 +Egypt,EGY,1910,166.2 +Egypt,EGY,1920,165.1 +Egypt,EGY,1940,167.5 +Egypt,EGY,1950,170.1 +Egypt,EGY,1960,170.6 +Egypt,EGY,1970,171.2 +Egypt,EGY,1980,171.3 +Equatorial Guinea,GNQ,1930,169 +Eritrea,ERI,1860,166.3 +Eritrea,ERI,1880,165.3 +Eritrea,ERI,1930,164 +Eritrea,ERI,1950,156.7 +Eritrea,ERI,1960,155.8 +Eritrea,ERI,1970,156 +Estonia,EST,1840,166.7 +Estonia,EST,1870,167.6 +Estonia,EST,1890,173.4 +Estonia,EST,1900,175.3 +Estonia,EST,1910,172 +Estonia,EST,1960,174.1 +Estonia,EST,1970,179.6 +Estonia,EST,1980,179.1 +Eswatini,SWZ,1930,168.8 +Eswatini,SWZ,1950,169.5 +Eswatini,SWZ,1960,169.9 +Eswatini,SWZ,1970,170.5 +Eswatini,SWZ,1980,170.2 +Ethiopia,ETH,1860,169.3 +Ethiopia,ETH,1880,167.5 +Ethiopia,ETH,1910,161.5 +Ethiopia,ETH,1920,166.6 +Ethiopia,ETH,1930,167.3 +Ethiopia,ETH,1940,168.5 +Ethiopia,ETH,1950,166.8 +Ethiopia,ETH,1960,167.5 +Ethiopia,ETH,1970,167.5 +Ethiopia,ETH,1980,167.3 +Finland,FIN,1810,171.9 +Finland,FIN,1820,170.1 +Finland,FIN,1830,169.5 +Finland,FIN,1860,167.3 +Finland,FIN,1900,167.3 +Finland,FIN,1910,170.5 +Finland,FIN,1920,172.3 +Finland,FIN,1930,172.5 +Finland,FIN,1940,174.8 +Finland,FIN,1950,178 +Finland,FIN,1960,179.3 +Finland,FIN,1970,177.5 +Finland,FIN,1980,178.2 +France,FRA,1810,163.9 +France,FRA,1820,163.9 +France,FRA,1830,164 +France,FRA,1840,164.3 +France,FRA,1850,165.2 +France,FRA,1860,165.4 +France,FRA,1870,165.5 +France,FRA,1880,165.9 +France,FRA,1890,166.1 +France,FRA,1900,166.8 +France,FRA,1910,167.8 +France,FRA,1920,168.5 +France,FRA,1930,169.9 +France,FRA,1940,171.7 +France,FRA,1950,173.2 +France,FRA,1960,174.9 +France,FRA,1970,175.1 +France,FRA,1980,176.5 +Gabon,GAB,1810,165.4 +Gabon,GAB,1910,164.9 +Gabon,GAB,1920,164.3 +Gabon,GAB,1950,171.2 +Gabon,GAB,1960,170.7 +Gabon,GAB,1970,170.5 +Gabon,GAB,1980,169.7 +Gambia,GMB,1920,166.6 +Georgia,GEO,1840,165.5 +Georgia,GEO,1860,163 +Georgia,GEO,1890,164.3 +Germany,DEU,1810,167.8 +Germany,DEU,1820,167.3 +Germany,DEU,1830,166.8 +Germany,DEU,1840,166.6 +Germany,DEU,1850,163.8 +Germany,DEU,1860,165.5 +Germany,DEU,1870,166.9 +Germany,DEU,1880,167.9 +Germany,DEU,1890,168.6 +Germany,DEU,1900,169.2 +Germany,DEU,1910,170.5 +Germany,DEU,1920,173.3 +Germany,DEU,1930,174 +Germany,DEU,1940,175.2 +Germany,DEU,1950,176.8 +Germany,DEU,1960,178.9 +Germany,DEU,1970,179.4 +Germany,DEU,1980,180.5 +Ghana,GHA,1810,164.1 +Ghana,GHA,1860,167.8 +Ghana,GHA,1880,167.8 +Ghana,GHA,1890,164.2 +Ghana,GHA,1900,165.9 +Ghana,GHA,1910,167.1 +Ghana,GHA,1920,167.1 +Ghana,GHA,1930,167.7 +Ghana,GHA,1940,168.6 +Ghana,GHA,1950,169.5 +Ghana,GHA,1960,169.8 +Ghana,GHA,1970,169.9 +Ghana,GHA,1980,170 +Greece,GRC,1870,168.5 +Greece,GRC,1880,167.3 +Greece,GRC,1900,169.6 +Greece,GRC,1910,168.1 +Greece,GRC,1920,168.4 +Greece,GRC,1930,167.5 +Greece,GRC,1940,169.2 +Greece,GRC,1950,173.7 +Greece,GRC,1960,177.6 +Greece,GRC,1980,177.3 +Guatemala,GTM,1890,156.3 +Guatemala,GTM,1910,156 +Guatemala,GTM,1920,158.7 +Guatemala,GTM,1930,158.7 +Guatemala,GTM,1950,159.2 +Guatemala,GTM,1960,159.8 +Guatemala,GTM,1970,160.3 +Guatemala,GTM,1980,160.8 +Guinea,GIN,1870,169.9 +Guinea,GIN,1890,164.2 +Guinea,GIN,1900,168.4 +Guinea,GIN,1910,168.5 +Guinea,GIN,1920,168.6 +Guinea,GIN,1930,167.5 +Guinea,GIN,1950,168.7 +Guinea,GIN,1960,169.6 +Guinea,GIN,1970,169.7 +Guinea,GIN,1980,169.5 +Guinea-Bissau,GNB,1810,165.4 +Guinea-Bissau,GNB,1890,168.3 +Guinea-Bissau,GNB,1900,167.7 +Guinea-Bissau,GNB,1910,167.8 +Guinea-Bissau,GNB,1920,166.1 +Guinea-Bissau,GNB,1930,169.4 +Guinea-Bissau,GNB,1940,168.9 +Guinea-Bissau,GNB,1950,168.9 +Guyana,GUY,1880,159.2 +Guyana,GUY,1890,157.5 +Guyana,GUY,1900,156.8 +Guyana,GUY,1970,167.2 +Guyana,GUY,1980,170.5 +Haiti,HTI,1920,166.9 +Haiti,HTI,1930,166.7 +Haiti,HTI,1950,170.4 +Haiti,HTI,1960,171.1 +Haiti,HTI,1970,171.3 +Haiti,HTI,1980,171.5 +Honduras,HND,1950,164 +Honduras,HND,1960,164.2 +Honduras,HND,1970,164.6 +Honduras,HND,1980,164.7 +Hong Kong,HKG,1930,167.7 +Hong Kong,HKG,1940,167.1 +Hungary,HUN,1810,164.7 +Hungary,HUN,1820,164.3 +Hungary,HUN,1830,164.1 +Hungary,HUN,1840,164 +Hungary,HUN,1850,163.7 +Hungary,HUN,1860,165.3 +Hungary,HUN,1870,166.4 +Hungary,HUN,1880,169.1 +Hungary,HUN,1950,175.4 +Hungary,HUN,1960,178.2 +Hungary,HUN,1970,178.8 +India,IND,1840,160.3 +India,IND,1850,161.8 +India,IND,1860,163 +India,IND,1870,163.8 +India,IND,1880,162.4 +India,IND,1890,163 +India,IND,1910,162.9 +India,IND,1920,163.5 +India,IND,1930,163.7 +India,IND,1940,164 +India,IND,1950,163.5 +India,IND,1960,163.9 +India,IND,1970,164.3 +India,IND,1980,164.4 +Indonesia,IDN,1810,161.3 +Indonesia,IDN,1840,160.4 +Indonesia,IDN,1850,160.6 +Indonesia,IDN,1860,160.4 +Indonesia,IDN,1870,158.1 +Indonesia,IDN,1880,158.6 +Indonesia,IDN,1890,158.8 +Indonesia,IDN,1900,159 +Indonesia,IDN,1910,159.6 +Indonesia,IDN,1920,160.9 +Indonesia,IDN,1930,160.7 +Indonesia,IDN,1940,160.4 +Indonesia,IDN,1950,161.7 +Indonesia,IDN,1960,162.4 +Indonesia,IDN,1970,163.1 +Indonesia,IDN,1980,164 +Iran,IRN,1850,165.3 +Iran,IRN,1870,168.3 +Iran,IRN,1880,165.2 +Iran,IRN,1890,166 +Iran,IRN,1900,167.5 +Iran,IRN,1910,167.2 +Iran,IRN,1940,167.8 +Iran,IRN,1950,168.8 +Iran,IRN,1960,169.1 +Iran,IRN,1970,170.9 +Iran,IRN,1980,172.4 +Iraq,IRQ,1880,168.4 +Iraq,IRQ,1890,166.6 +Iraq,IRQ,1900,168.6 +Iraq,IRQ,1910,166.2 +Ireland,IRL,1810,168 +Ireland,IRL,1820,165.4 +Ireland,IRL,1830,168.1 +Ireland,IRL,1840,160.9 +Ireland,IRL,1870,168.5 +Ireland,IRL,1880,168.7 +Ireland,IRL,1890,169.1 +Ireland,IRL,1900,170 +Ireland,IRL,1920,171.9 +Ireland,IRL,1930,173.3 +Ireland,IRL,1950,174.9 +Ireland,IRL,1960,175.8 +Ireland,IRL,1970,176.4 +Ireland,IRL,1980,176.6 +Israel,ISR,1850,169.1 +Israel,ISR,1860,168.9 +Israel,ISR,1930,167.5 +Israel,ISR,1940,165.7 +Italy,ITA,1810,164.1 +Italy,ITA,1820,165.8 +Italy,ITA,1830,164.1 +Italy,ITA,1840,162 +Italy,ITA,1850,162.9 +Italy,ITA,1860,163.1 +Italy,ITA,1870,163.5 +Italy,ITA,1880,163.9 +Italy,ITA,1890,164.7 +Italy,ITA,1900,165.6 +Italy,ITA,1910,166.3 +Italy,ITA,1920,167.3 +Italy,ITA,1930,168.1 +Italy,ITA,1940,169.3 +Italy,ITA,1950,171.3 +Italy,ITA,1960,173 +Italy,ITA,1970,174.1 +Italy,ITA,1980,174.5 +Jamaica,JAM,1890,170.2 +Jamaica,JAM,1910,167.1 +Jamaica,JAM,1920,167.9 +Jamaica,JAM,1930,169.7 +Jamaica,JAM,1940,168.3 +Jamaica,JAM,1980,173.6 +Japan,JPN,1880,157.8 +Japan,JPN,1890,157.8 +Japan,JPN,1900,158.7 +Japan,JPN,1910,159.6 +Japan,JPN,1920,160.7 +Japan,JPN,1930,161.4 +Japan,JPN,1940,162.6 +Japan,JPN,1950,163.6 +Japan,JPN,1960,165.7 +Japan,JPN,1970,166.8 +Japan,JPN,1980,171.7 +Jordan,JOR,1940,166.1 +Jordan,JOR,1950,170 +Jordan,JOR,1960,170.3 +Jordan,JOR,1970,170.5 +Jordan,JOR,1980,170.3 +Kazakhstan,KAZ,1840,165.3 +Kazakhstan,KAZ,1850,164.6 +Kazakhstan,KAZ,1870,163.4 +Kazakhstan,KAZ,1890,164.8 +Kazakhstan,KAZ,1900,165 +Kazakhstan,KAZ,1910,163.4 +Kazakhstan,KAZ,1920,166 +Kazakhstan,KAZ,1930,164.4 +Kazakhstan,KAZ,1950,170.3 +Kazakhstan,KAZ,1960,171.4 +Kazakhstan,KAZ,1970,171.3 +Kenya,KEN,1880,164.5 +Kenya,KEN,1890,166 +Kenya,KEN,1900,166.7 +Kenya,KEN,1910,168.1 +Kenya,KEN,1920,167.7 +Kenya,KEN,1950,169.9 +Kenya,KEN,1960,170.7 +Kenya,KEN,1970,170.9 +Kenya,KEN,1980,171.2 +Kyrgyzstan,KGZ,1880,165.3 +Kyrgyzstan,KGZ,1890,164 +Kyrgyzstan,KGZ,1900,165.1 +Kyrgyzstan,KGZ,1910,165.1 +Kyrgyzstan,KGZ,1920,166.2 +Kyrgyzstan,KGZ,1930,164.5 +Kyrgyzstan,KGZ,1950,169.8 +Kyrgyzstan,KGZ,1960,169.8 +Kyrgyzstan,KGZ,1970,170.6 +Laos,LAO,1840,159.6 +Laos,LAO,1850,160 +Laos,LAO,1860,159 +Laos,LAO,1870,159.1 +Laos,LAO,1890,160.6 +Laos,LAO,1900,161.5 +Laos,LAO,1910,156.2 +Laos,LAO,1920,159.7 +Laos,LAO,1930,160.2 +Laos,LAO,1940,163.2 +Laos,LAO,1980,165.2 +Latvia,LVA,1840,166.5 +Latvia,LVA,1880,170.6 +Latvia,LVA,1890,171.7 +Latvia,LVA,1900,171.4 +Latvia,LVA,1940,174.2 +Lebanon,LBN,1850,166.5 +Lebanon,LBN,1860,167.2 +Lebanon,LBN,1890,166.4 +Lebanon,LBN,1900,167.3 +Lebanon,LBN,1940,169.4 +Lesotho,LSO,1900,168 +Lesotho,LSO,1950,168 +Lesotho,LSO,1960,168.3 +Lesotho,LSO,1970,168.5 +Lesotho,LSO,1980,167.4 +Liberia,LBR,1910,165.4 +Liberia,LBR,1920,167.6 +Liberia,LBR,1930,167.2 +Liberia,LBR,1950,167 +Liberia,LBR,1960,168.6 +Liberia,LBR,1970,168.5 +Liberia,LBR,1980,167.3 +Libya,LBY,1890,166.5 +Libya,LBY,1920,165.1 +Lithuania,LTU,1840,165.3 +Lithuania,LTU,1940,173.7 +Madagascar,MDG,1860,163.9 +Madagascar,MDG,1900,163.2 +Madagascar,MDG,1910,163.2 +Madagascar,MDG,1920,163.5 +Madagascar,MDG,1950,164.1 +Madagascar,MDG,1960,165 +Madagascar,MDG,1970,163.9 +Madagascar,MDG,1980,162.9 +Malawi,MWI,1870,166.7 +Malawi,MWI,1920,168.4 +Malawi,MWI,1930,165.6 +Malawi,MWI,1940,166.2 +Malawi,MWI,1950,166.6 +Malawi,MWI,1960,167.1 +Malawi,MWI,1970,166.7 +Malawi,MWI,1980,166.2 +Malaysia,MYS,1840,159.3 +Malaysia,MYS,1860,161 +Malaysia,MYS,1870,157.2 +Malaysia,MYS,1890,155.8 +Malaysia,MYS,1900,160.5 +Malaysia,MYS,1930,162.5 +Mali,MLI,1850,166.5 +Mali,MLI,1880,171 +Mali,MLI,1890,169.4 +Mali,MLI,1900,167.5 +Mali,MLI,1910,171.4 +Mali,MLI,1920,171.6 +Mali,MLI,1930,168.5 +Mali,MLI,1940,170.5 +Mali,MLI,1950,172.5 +Mali,MLI,1960,172.7 +Mali,MLI,1970,172.5 +Mali,MLI,1980,172.2 +Mauritania,MRT,1900,169 +Mauritania,MRT,1910,169.4 +Mauritania,MRT,1920,169.2 +Mauritania,MRT,1930,170.1 +Mexico,MEX,1810,161.3 +Mexico,MEX,1820,160.4 +Mexico,MEX,1830,160.4 +Mexico,MEX,1840,162.5 +Mexico,MEX,1850,163.4 +Mexico,MEX,1860,162.9 +Mexico,MEX,1870,163.7 +Mexico,MEX,1880,163.9 +Mexico,MEX,1890,163.9 +Mexico,MEX,1900,163.9 +Mexico,MEX,1910,163.7 +Mexico,MEX,1920,161.1 +Mexico,MEX,1930,165.5 +Mexico,MEX,1940,165.8 +Mexico,MEX,1950,165.1 +Mexico,MEX,1960,166.4 +Mexico,MEX,1980,167.8 +Moldova,MDA,1840,165.1 +Moldova,MDA,1950,172 +Moldova,MDA,1960,172.8 +Moldova,MDA,1970,173.5 +Moldova,MDA,1980,174.2 +Mongolia,MNG,1910,162.6 +Mongolia,MNG,1930,164.8 +Morocco,MAR,1880,168.6 +Morocco,MAR,1940,168.1 +Morocco,MAR,1950,169 +Morocco,MAR,1960,169.9 +Morocco,MAR,1970,170.2 +Morocco,MAR,1980,170.3 +Mozambique,MOZ,1810,164.1 +Mozambique,MOZ,1870,167.1 +Mozambique,MOZ,1900,169.6 +Mozambique,MOZ,1910,166.7 +Mozambique,MOZ,1920,168.6 +Mozambique,MOZ,1930,167.3 +Mozambique,MOZ,1950,166 +Mozambique,MOZ,1960,166.3 +Mozambique,MOZ,1970,165.5 +Mozambique,MOZ,1980,165.2 +Myanmar,MMR,1850,161.1 +Myanmar,MMR,1860,164 +Myanmar,MMR,1870,161.3 +Myanmar,MMR,1880,160.7 +Myanmar,MMR,1890,163 +Myanmar,MMR,1900,163.7 +Myanmar,MMR,1920,160.1 +Myanmar,MMR,1940,164.8 +Myanmar,MMR,1980,161.3 +Namibia,NAM,1900,166.7 +Namibia,NAM,1930,171.1 +Namibia,NAM,1940,172.3 +Namibia,NAM,1950,171.9 +Namibia,NAM,1960,172.1 +Namibia,NAM,1970,172.2 +Namibia,NAM,1980,171.3 +Nepal,NPL,1880,162.4 +Nepal,NPL,1900,161.7 +Nepal,NPL,1930,160.9 +Nepal,NPL,1940,162.4 +Nepal,NPL,1950,161.8 +Nepal,NPL,1960,162.5 +Nepal,NPL,1970,162.7 +Nepal,NPL,1980,163 +Netherlands,NLD,1810,166 +Netherlands,NLD,1820,165.1 +Netherlands,NLD,1830,164.2 +Netherlands,NLD,1840,164.5 +Netherlands,NLD,1850,165.3 +Netherlands,NLD,1860,166.5 +Netherlands,NLD,1870,167.1 +Netherlands,NLD,1880,168.5 +Netherlands,NLD,1890,169.4 +Netherlands,NLD,1900,170.9 +Netherlands,NLD,1910,172.6 +Netherlands,NLD,1920,173.5 +Netherlands,NLD,1930,174.1 +Netherlands,NLD,1940,177.5 +Netherlands,NLD,1950,178.7 +Netherlands,NLD,1960,182.2 +Netherlands,NLD,1970,182.3 +Netherlands,NLD,1980,182.7 +New Zealand,NZL,1860,172.4 +New Zealand,NZL,1870,172.4 +New Zealand,NZL,1880,172.7 +New Zealand,NZL,1890,172 +New Zealand,NZL,1930,174.6 +Nicaragua,NIC,1950,165.6 +Nicaragua,NIC,1960,165.9 +Nicaragua,NIC,1970,166.2 +Nicaragua,NIC,1980,166.4 +Niger,NER,1870,167.3 +Niger,NER,1880,173 +Niger,NER,1900,168.7 +Niger,NER,1910,171.6 +Niger,NER,1920,171.4 +Niger,NER,1930,172.7 +Niger,NER,1940,171.2 +Niger,NER,1950,170.9 +Niger,NER,1960,171.4 +Niger,NER,1970,171.4 +Niger,NER,1980,170.7 +Nigeria,NGA,1810,165.2 +Nigeria,NGA,1820,162.2 +Nigeria,NGA,1870,165.6 +Nigeria,NGA,1880,167.9 +Nigeria,NGA,1910,166.8 +Nigeria,NGA,1920,165.6 +Nigeria,NGA,1930,164.6 +Nigeria,NGA,1940,167.2 +Nigeria,NGA,1950,168.5 +Nigeria,NGA,1960,169.8 +Nigeria,NGA,1970,169.7 +Nigeria,NGA,1980,169.5 +North Korea,PRK,1870,163.4 +North Korea,PRK,1880,160.1 +North Korea,PRK,1890,160.7 +North Korea,PRK,1900,160.1 +North Korea,PRK,1940,166.5 +North Korea,PRK,1950,168.6 +North Korea,PRK,1960,170.7 +North Korea,PRK,1970,171.9 +North Korea,PRK,1980,173.8 +North Macedonia,MKD,1900,167.7 +North Macedonia,MKD,1910,168.4 +North Macedonia,MKD,1920,169.6 +North Macedonia,MKD,1930,168.8 +Norway,NOR,1810,168.6 +Norway,NOR,1820,167.5 +Norway,NOR,1830,168.9 +Norway,NOR,1840,168 +Norway,NOR,1850,169.1 +Norway,NOR,1860,169.7 +Norway,NOR,1870,170.4 +Norway,NOR,1880,171.1 +Norway,NOR,1890,171.1 +Norway,NOR,1900,172 +Norway,NOR,1910,173.3 +Norway,NOR,1920,176.3 +Norway,NOR,1930,176.9 +Norway,NOR,1940,177.5 +Norway,NOR,1950,178.1 +Norway,NOR,1960,179.3 +Norway,NOR,1970,179.5 +Norway,NOR,1980,179.7 +Pakistan,PAK,1840,165.1 +Pakistan,PAK,1850,162 +Pakistan,PAK,1860,164.6 +Pakistan,PAK,1870,165.2 +Pakistan,PAK,1890,165 +Pakistan,PAK,1920,167.9 +Pakistan,PAK,1930,164 +Pakistan,PAK,1940,168.1 +Palestine,PSE,1950,171 +Palestine,PSE,1960,172 +Palestine,PSE,1970,172.5 +Panama,PAN,1980,170 +Papua New Guinea,PNG,1880,152.4 +Papua New Guinea,PNG,1920,155.6 +Papua New Guinea,PNG,1930,152.4 +Papua New Guinea,PNG,1940,158.9 +Papua New Guinea,PNG,1980,160.9 +Paraguay,PRY,1900,165.6 +Paraguay,PRY,1930,165.4 +Peru,PER,1810,163.4 +Peru,PER,1820,162.6 +Peru,PER,1830,162.5 +Peru,PER,1840,161.3 +Peru,PER,1850,161.8 +Peru,PER,1860,161.7 +Peru,PER,1870,161.3 +Peru,PER,1880,161.5 +Peru,PER,1930,159.7 +Peru,PER,1940,160.9 +Peru,PER,1950,162.2 +Peru,PER,1960,163.1 +Peru,PER,1970,163.9 +Peru,PER,1980,164.2 +Philippines,PHL,1860,155 +Philippines,PHL,1870,159.5 +Philippines,PHL,1880,158.9 +Philippines,PHL,1890,161.5 +Philippines,PHL,1900,160.4 +Philippines,PHL,1930,163.4 +Philippines,PHL,1940,164.6 +Philippines,PHL,1980,165.6 +Poland,POL,1840,163.1 +Poland,POL,1860,165.5 +Poland,POL,1870,166.3 +Poland,POL,1880,166.8 +Poland,POL,1890,167.2 +Poland,POL,1900,166.6 +Poland,POL,1910,169 +Poland,POL,1930,173 +Poland,POL,1940,170.5 +Poland,POL,1950,173.2 +Poland,POL,1960,175.3 +Poland,POL,1980,177.4 +Portugal,PRT,1810,165.5 +Portugal,PRT,1820,166.3 +Portugal,PRT,1830,165.3 +Portugal,PRT,1840,163.5 +Portugal,PRT,1850,164.2 +Portugal,PRT,1860,164.1 +Portugal,PRT,1870,164.7 +Portugal,PRT,1880,164.2 +Portugal,PRT,1890,164.2 +Portugal,PRT,1900,163.8 +Portugal,PRT,1910,164.5 +Portugal,PRT,1920,164.9 +Portugal,PRT,1930,165.6 +Portugal,PRT,1940,166.4 +Portugal,PRT,1950,167.4 +Portugal,PRT,1960,169.2 +Portugal,PRT,1970,171.4 +Portugal,PRT,1980,172.1 +Puerto Rico,PRI,1890,164.5 +Puerto Rico,PRI,1900,164 +Puerto Rico,PRI,1910,165.4 +Puerto Rico,PRI,1920,164 +Puerto Rico,PRI,1930,163.7 +Romania,ROU,1840,164 +Romania,ROU,1850,163.4 +Romania,ROU,1860,164.1 +Romania,ROU,1870,165.4 +Romania,ROU,1880,164.1 +Romania,ROU,1900,168.3 +Romania,ROU,1940,169.3 +Russia,RUS,1810,159.8 +Russia,RUS,1820,162.1 +Russia,RUS,1830,163 +Russia,RUS,1840,164.2 +Russia,RUS,1850,163.4 +Russia,RUS,1860,163.3 +Russia,RUS,1870,165.8 +Russia,RUS,1880,166.6 +Russia,RUS,1890,168.3 +Russia,RUS,1900,169.2 +Russia,RUS,1910,169.1 +Russia,RUS,1920,167 +Russia,RUS,1930,167.9 +Russia,RUS,1940,169 +Russia,RUS,1950,172 +Russia,RUS,1960,173.6 +Russia,RUS,1970,177 +Russia,RUS,1980,177 +Rwanda,RWA,1910,172 +Rwanda,RWA,1920,171.6 +Rwanda,RWA,1930,169.3 +Rwanda,RWA,1950,168.9 +Rwanda,RWA,1960,168.8 +Rwanda,RWA,1970,167.9 +Rwanda,RWA,1980,167.2 +Saudi Arabia,SAU,1940,169.2 +Saudi Arabia,SAU,1950,170.3 +Saudi Arabia,SAU,1960,170.8 +Saudi Arabia,SAU,1970,172.3 +Senegal,SEN,1810,165.4 +Senegal,SEN,1860,172.5 +Senegal,SEN,1870,168.2 +Senegal,SEN,1890,171.8 +Senegal,SEN,1900,170.4 +Senegal,SEN,1910,169.3 +Senegal,SEN,1920,171.6 +Senegal,SEN,1930,171.1 +Senegal,SEN,1940,171.9 +Senegal,SEN,1950,173.9 +Senegal,SEN,1960,174.1 +Senegal,SEN,1970,174.7 +Senegal,SEN,1980,174.3 +Serbia,SRB,1850,166.2 +Serbia,SRB,1870,169.7 +Serbia,SRB,1880,167.1 +Serbia,SRB,1890,168.1 +Serbia,SRB,1960,175.8 +Sierra Leone,SLE,1810,164.7 +Sierra Leone,SLE,1820,162.2 +Sierra Leone,SLE,1890,165.5 +Sierra Leone,SLE,1910,165.8 +Sierra Leone,SLE,1920,167 +Sierra Leone,SLE,1930,165.5 +Sierra Leone,SLE,1970,167.4 +Sierra Leone,SLE,1980,165.8 +Singapore,SGP,1970,172.2 +Slovakia,SVK,1850,164.1 +Slovakia,SVK,1860,163.5 +Slovakia,SVK,1870,165.1 +Slovakia,SVK,1880,165.8 +Slovakia,SVK,1920,171.7 +Slovakia,SVK,1930,173.3 +Slovakia,SVK,1940,172.8 +Slovenia,SVN,1870,168.3 +Slovenia,SVN,1920,173.7 +Slovenia,SVN,1950,175.8 +Slovenia,SVN,1970,179.2 +Somalia,SOM,1880,172.8 +Somalia,SOM,1890,171.4 +Somalia,SOM,1900,171.9 +Somalia,SOM,1910,171.1 +Somalia,SOM,1920,168.7 +Somalia,SOM,1930,172.9 +South Africa,ZAF,1890,170.4 +South Africa,ZAF,1900,169.9 +South Africa,ZAF,1910,169.7 +South Africa,ZAF,1920,169.2 +South Africa,ZAF,1930,170 +South Africa,ZAF,1940,168.2 +South Africa,ZAF,1950,170.1 +South Africa,ZAF,1960,169.5 +South Africa,ZAF,1970,168.9 +South Africa,ZAF,1980,168.1 +South Korea,KOR,1870,163.4 +South Korea,KOR,1880,160.1 +South Korea,KOR,1890,160.7 +South Korea,KOR,1900,160.1 +South Korea,KOR,1940,166.5 +South Korea,KOR,1950,168.6 +South Korea,KOR,1960,170.7 +South Korea,KOR,1970,171.9 +South Korea,KOR,1980,173.8 +Spain,ESP,1830,161 +Spain,ESP,1840,163.7 +Spain,ESP,1850,162.5 +Spain,ESP,1860,162.7 +Spain,ESP,1870,162.6 +Spain,ESP,1880,163.9 +Spain,ESP,1890,164 +Spain,ESP,1900,164.6 +Spain,ESP,1910,165.1 +Spain,ESP,1920,165.6 +Spain,ESP,1930,165.2 +Spain,ESP,1940,166.3 +Spain,ESP,1950,170.8 +Spain,ESP,1960,174.2 +Spain,ESP,1970,175.2 +Spain,ESP,1980,175.6 +Sri Lanka,LKA,1870,162.5 +Sri Lanka,LKA,1920,163.9 +Sri Lanka,LKA,1980,165.8 +Sudan,SDN,1870,168 +Sudan,SDN,1880,169.9 +Sudan,SDN,1890,169.8 +Sudan,SDN,1900,167.9 +Sudan,SDN,1910,169 +Sudan,SDN,1920,171 +Sudan,SDN,1930,167.9 +Sweden,SWE,1830,168.1 +Sweden,SWE,1840,167.9 +Sweden,SWE,1850,168.4 +Sweden,SWE,1860,169.3 +Sweden,SWE,1870,170.3 +Sweden,SWE,1880,171.2 +Sweden,SWE,1890,172.4 +Sweden,SWE,1900,172.8 +Sweden,SWE,1910,173.2 +Sweden,SWE,1920,168.3 +Sweden,SWE,1930,175.5 +Sweden,SWE,1940,178.5 +Sweden,SWE,1950,179.3 +Sweden,SWE,1960,180.1 +Sweden,SWE,1970,180 +Sweden,SWE,1980,180.4 +Switzerland,CHE,1820,167.6 +Switzerland,CHE,1830,166.3 +Switzerland,CHE,1870,164.7 +Switzerland,CHE,1880,166.8 +Switzerland,CHE,1890,170.5 +Switzerland,CHE,1900,170.5 +Switzerland,CHE,1910,171.5 +Switzerland,CHE,1920,170.9 +Switzerland,CHE,1930,171.3 +Syria,SYR,1850,166.3 +Syria,SYR,1860,168 +Syria,SYR,1880,162.2 +Syria,SYR,1890,166.9 +Syria,SYR,1900,167.3 +Tajikistan,TJK,1860,165 +Tajikistan,TJK,1870,164.8 +Tajikistan,TJK,1880,166.6 +Tajikistan,TJK,1890,165.8 +Tajikistan,TJK,1900,165.1 +Tajikistan,TJK,1910,165.1 +Tanzania,TZA,1870,167.8 +Tanzania,TZA,1880,168.5 +Tanzania,TZA,1890,167.7 +Tanzania,TZA,1910,165 +Tanzania,TZA,1920,165.8 +Tanzania,TZA,1930,166.6 +Tanzania,TZA,1940,165.6 +Tanzania,TZA,1950,166.2 +Tanzania,TZA,1960,167.2 +Tanzania,TZA,1970,167.8 +Tanzania,TZA,1980,166.9 +Thailand,THA,1860,160.1 +Thailand,THA,1870,161.5 +Thailand,THA,1880,162.3 +Thailand,THA,1890,161 +Thailand,THA,1900,162.1 +Thailand,THA,1910,161.5 +Thailand,THA,1920,161.3 +Thailand,THA,1930,161.2 +Togo,TGO,1860,165.3 +Togo,TGO,1900,167 +Togo,TGO,1920,168.4 +Togo,TGO,1950,170.8 +Togo,TGO,1960,170.6 +Togo,TGO,1970,170.5 +Togo,TGO,1980,167.7 +Trinidad and Tobago,TTO,1980,174.4 +Tunisia,TUN,1910,162.9 +Tunisia,TUN,1970,165.3 +Turkey,TUR,1850,168.7 +Turkey,TUR,1860,169.1 +Turkey,TUR,1870,170.1 +Turkey,TUR,1880,167.4 +Turkey,TUR,1890,168.4 +Turkey,TUR,1900,168.4 +Turkey,TUR,1910,168 +Turkey,TUR,1920,169.3 +Turkey,TUR,1930,169.3 +Turkey,TUR,1940,167.2 +Turkey,TUR,1950,166.6 +Turkey,TUR,1960,167.4 +Turkey,TUR,1970,168.6 +Turkmenistan,TKM,1890,168.9 +Turkmenistan,TKM,1910,167.9 +Turkmenistan,TKM,1920,167.5 +Uganda,UGA,1870,168.1 +Uganda,UGA,1880,166.3 +Uganda,UGA,1890,166.4 +Uganda,UGA,1910,166 +Uganda,UGA,1920,167.5 +Uganda,UGA,1930,164.9 +Uganda,UGA,1950,169.8 +Uganda,UGA,1960,170.1 +Uganda,UGA,1970,169.6 +Uganda,UGA,1980,169.3 +Ukraine,UKR,1820,164.1 +Ukraine,UKR,1830,164.8 +Ukraine,UKR,1840,164.1 +Ukraine,UKR,1850,163.1 +Ukraine,UKR,1870,164.6 +Ukraine,UKR,1880,165.4 +United Arab Emirates,ARE,1980,169.1 +United Kingdom,GBR,1810,169.7 +United Kingdom,GBR,1820,169.1 +United Kingdom,GBR,1830,166.7 +United Kingdom,GBR,1840,166.5 +United Kingdom,GBR,1850,165.6 +United Kingdom,GBR,1860,166.6 +United Kingdom,GBR,1870,167.2 +United Kingdom,GBR,1880,168 +United Kingdom,GBR,1890,167.4 +United Kingdom,GBR,1900,169.4 +United Kingdom,GBR,1910,170.9 +United Kingdom,GBR,1920,171 +United Kingdom,GBR,1930,173.9 +United Kingdom,GBR,1940,174.9 +United Kingdom,GBR,1950,176 +United Kingdom,GBR,1960,176.9 +United Kingdom,GBR,1970,177.1 +United Kingdom,GBR,1980,176.8 +United States,USA,1820,172.2 +United States,USA,1830,173.5 +United States,USA,1840,172.2 +United States,USA,1850,171.1 +United States,USA,1860,170.6 +United States,USA,1870,171.1 +United States,USA,1880,169.5 +United States,USA,1890,169.1 +United States,USA,1900,170 +United States,USA,1910,172.1 +United States,USA,1920,173.1 +United States,USA,1930,173.4 +United States,USA,1940,176.1 +United States,USA,1950,177.1 +United States,USA,1960,177.3 +United States,USA,1970,178.3 +United States,USA,1980,179 +Uruguay,URY,1880,165 +Uruguay,URY,1930,168.1 +Uzbekistan,UZB,1890,165.2 +Uzbekistan,UZB,1900,165.5 +Uzbekistan,UZB,1910,166 +Uzbekistan,UZB,1920,165 +Uzbekistan,UZB,1940,170.3 +Uzbekistan,UZB,1950,171.5 +Uzbekistan,UZB,1960,171.2 +Uzbekistan,UZB,1970,172 +Vietnam,VNM,1830,157.9 +Vietnam,VNM,1840,157.5 +Vietnam,VNM,1850,158.4 +Vietnam,VNM,1860,158.3 +Vietnam,VNM,1870,158.3 +Vietnam,VNM,1880,157.7 +Vietnam,VNM,1890,158.5 +Vietnam,VNM,1900,161.2 +Vietnam,VNM,1910,158 +Vietnam,VNM,1920,157.5 +Vietnam,VNM,1930,158.4 +Vietnam,VNM,1980,160 +Yemen,YEM,1850,162.3 +Yemen,YEM,1860,161.1 +Yemen,YEM,1880,160.8 +Yemen,YEM,1890,162.7 +Yemen,YEM,1900,162 +Yemen,YEM,1980,167.6 +Zambia,ZMB,1940,168.1 +Zambia,ZMB,1950,169.6 +Zambia,ZMB,1960,169.7 +Zambia,ZMB,1970,168.9 +Zambia,ZMB,1980,168.2 +Zimbabwe,ZWE,1890,169 +Zimbabwe,ZWE,1900,167.6 +Zimbabwe,ZWE,1950,171 +Zimbabwe,ZWE,1960,171.1 +Zimbabwe,ZWE,1970,171.3 +Zimbabwe,ZWE,1980,171 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/centriods SB DD.dbf b/Winter-2023/Digital Earth/centriods SB DD.dbf new file mode 100755 index 0000000..3fc4155 Binary files /dev/null and b/Winter-2023/Digital Earth/centriods SB DD.dbf differ diff --git a/Winter-2023/Digital Earth/centriods SB DD.prj b/Winter-2023/Digital Earth/centriods SB DD.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/centriods SB DD.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/centriods SB DD.shp b/Winter-2023/Digital Earth/centriods SB DD.shp new file mode 100755 index 0000000..24ef4f7 Binary files /dev/null and b/Winter-2023/Digital Earth/centriods SB DD.shp differ diff --git a/Winter-2023/Digital Earth/centriods SB DD.shx b/Winter-2023/Digital Earth/centriods SB DD.shx new file mode 100755 index 0000000..941e740 Binary files /dev/null and b/Winter-2023/Digital Earth/centriods SB DD.shx differ diff --git a/Winter-2023/Digital Earth/countries_110m.CPG b/Winter-2023/Digital Earth/countries_110m.CPG new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/countries_110m.CPG @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/countries_110m.dbf b/Winter-2023/Digital Earth/countries_110m.dbf new file mode 100755 index 0000000..e0acd06 Binary files /dev/null and b/Winter-2023/Digital Earth/countries_110m.dbf differ diff --git a/Winter-2023/Digital Earth/countries_110m.prj b/Winter-2023/Digital Earth/countries_110m.prj new file mode 100755 index 0000000..b13a717 --- /dev/null +++ b/Winter-2023/Digital Earth/countries_110m.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.017453292519943295]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/countries_110m.shp b/Winter-2023/Digital Earth/countries_110m.shp new file mode 100755 index 0000000..9318e45 Binary files /dev/null and b/Winter-2023/Digital Earth/countries_110m.shp differ diff --git a/Winter-2023/Digital Earth/countries_110m.shx b/Winter-2023/Digital Earth/countries_110m.shx new file mode 100755 index 0000000..c3728e0 Binary files /dev/null and b/Winter-2023/Digital Earth/countries_110m.shx differ diff --git a/Winter-2023/Digital Earth/dunkin.csv b/Winter-2023/Digital Earth/dunkin.csv new file mode 100755 index 0000000..e1258c6 --- /dev/null +++ b/Winter-2023/Digital Earth/dunkin.csv @@ -0,0 +1,7367 @@ +longitude,latitude,name,address,city,state,zip +-81.207729,28.622891,"DD [drivethru-yes] [wifi-yes]-Oviedo,FL",3100 Alafaya Trl [Ste 1018], Oviedo, FL,3276 +-81.334363,28.553549,"DD [drivethru-yes] [wifi-no]-Orlando,FL",4115 E Colonial Dr, Orlando, FL,3280 +-73.606414,41.269836,"DD [drivethru-no] [wifi-yes]-Cross River,NY",20 N Salem Rd [Cross River Shopping Plz], Cross River, NY,1051 +-95.530422,29.537906,"DD [drivethru-yes] [wifi-no]-Missouri City,TX",9050 Highway 6, Missouri City, TX,7745 +-85.39915,31.19002,"DD [drivethru-yes] [wifi-no]-Dothan,AL",2141 Ross Clark Circle, Dothan,AL,36301 +-85.5015945,32.5659294,"DD [drivethru-yes] [wifi-yes]-Auburn,AL",2049 S College St, Auburn,AL,36832 +-86.1753899,32.3387658,"DD [drivethru-yes] [wifi-yes]-Montgomery,AL",8025 Vaughn Rd, Montgomery,AL,36116 +-86.601108,34.743001,"DD [drivethru-yes] [wifi-yes]-Huntsville,AL",1221B Memorial Pkwy NW, Huntsville,AL,35801 +-87.911911,30.650106,"DD [drivethru-no] [wifi-yes]-Daphne,AL",29160 US Hwy 98, Daphne,AL,36526 +-86.784966,33.334175,"DD [drivethru-yes] [wifi-yes]-Pelham,AL",480 Cahaba Valley Rd, Pelham,AL,35124 +-86.6838891,33.6459444,"DD [drivethru-yes] [wifi-yes]-Center Point,AL",2300 Center Point Pkwy, Center Point,AL,35215 +-86.7763062,33.4684334,"DD [drivethru-yes] [wifi-yes]-Homewood,AL",505 Brookwood Blvd, Homewood,AL,35209 +-86.8234711,33.8116035,"DD [drivethru-yes] [wifi-yes]-Warrior,AL",313 Cane Creek Rd [Ste 11A], Warrior,AL,35180 +-87.447521,33.179071,"DD [drivethru-no] [wifi-no]-Cottondale,AL",3201 Buttermilk Rd [WilcoHess], Cottondale,AL,35453 +-86.630355,33.607361,"DD [drivethru-yes] [wifi-yes]-Birmingham,AL",1820 Gadsden Hwy [Ste 100], Birmingham,AL,35235 +-86.994991,33.335554,"DD [drivethru-yes] [wifi-yes]-Bessemer,AL",2178 Eastern Valley Rd, Bessemer,AL,35022 +-87.5691605,33.2057724,"DD [drivethru-yes] [wifi-yes]-Tuscaloosa,AL",2520 Stillman Blvd, Tuscaloosa,AL,35401 +-87.5466614,33.2128487,"DD [drivethru-no] [wifi-no]-Tuscaloosa,AL",160 McCorvey Dr [Universite of Alabama], Tuscaloosa,AL,35487 +-86.798513,33.50759,"DD [drivethru-yes] [wifi-yes]-Birmingham,AL",2109 6th Ave S, Birmingham,AL,35233 +-86.5953293,34.718311,"DD [drivethru-yes] [wifi-yes]-Madison,AL",103 Brookridge Dr [Ste B],Madison,AL,35758 +-88.1436996,30.6753178,"DD [drivethru-yes] [wifi-yes]-Mobile,AL",3871 Airport Blvd [Ste 101],Mobile,AL,36608 +-92.498309,34.616719,"DD [drivethru-no] [wifi-no]-Bryant,AR",2234 N Reynolds Rd, Bryant,AR,72022 +-92.2384415,34.8174286,"DD/BR [drivethru-yes] [wifi-yes]-North Little Rock,AR",6725 John F Kennedy Blvd, North Little Rock,AR,72116 +-92.351014,34.76854,"DD [drivethru-yes] [wifi-yes]-Little Rock,AR",6805 Cantrell Rd, Little Rock,AR,72207 +-92.427588,35.091612,"DD/BR [drivethru-yes] [wifi-yes]-Conway,AR",105 E Oak St, Conway,AR,72032 +-92.394054,34.743101,"DD [drivethru-yes] [wifi-yes]-Little Rock,AR",10721 Kanis Rd, Little Rock,AR,72211 +-94.349824,35.346745,"DD [drivethru-yes] [wifi-yes]-Fort Smith,AR",7401 Phoenix Ave, Fort Smith,AR,72903 +-94.184944,36.356884,"DD [drivethru-yes] [wifi-yes]-Bentonville,AR",2309 SE 14th St, Bentonville,AR,72712 +-113.789757,35.178389,"DD [drivethru-no] [wifi-no]-Kingman,AZ",970 S Blake Ranch Rd, Kingman,AZ,86401 +-111.660727,35.19089,"DD [drivethru-no] [wifi-yes]-Flagstaff,AZ",1020 S Milton Rd [Ste 101], Flagstaff,AZ,86001 +-112.272434,33.464879,"DD [drivethru-no] [wifi-no]-Phoenix,AZ",1615 N 99th Ave, Phoenix,AZ,85037 +-112.262163,33.494139,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",9140 W Thomas Rd, Phoenix,AZ,85037 +-112.099899,33.68383,"DD [drivethru-yes] [wifi-no]-Phoenix,AZ",21705 N 19th Ave, Phoenix,AZ,85027 +-112.099764,33.656176,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",18631 N 19th Ave, Phoenix,AZ,85027 +-112.359238,33.638435,"DD [drivethru-no] [wifi-no]-Surprise,AZ",13811 W Bell Rd, Surprise,AZ,85374 +-112.239582,33.610067,"DD [drivethru-yes] [wifi-yes]-Peoria,AZ",8386 W Thunderbird Rd, Peoria,AZ,85381 +-112.556166,33.441235,"DD [drivethru-yes] [wifi-yes]-Buckeye,AZ",675 S Watson Rd, Buckeye,AZ,85326 +-112.202744,33.669479,"DD [drivethru-no] [wifi-yes]-Glendale,AZ",20229 N 67th Ave, Glendale,AZ,85308 +-112.271333,33.710951,"DD [drivethru-yes] [wifi-yes]-Peoria,AZ",9940 W Happy Valley Rd, Peoria,AZ,85383 +-112.425122,33.638639,"DD [drivethru-yes] [wifi-yes]-Surprise,AZ",17031 W Bell Rd, Surprise,AZ,85374 +-112.065782,33.607732,"DD [drivethru-yes] [wifi-no]-Phoenix,AZ",678 E Thunderbird Rd, Phoenix,AZ,85022 +-112.185707,33.612131,"DD [drivethru-yes] [wifi-yes]-Glendale,AZ",13887 N 59th Ave, Glendale,AZ,85306 +-111.992611,33.480557,"DD [drivethru-no] [wifi-yes]-Phoenix,AZ",4130 E Thomas Rd, Phoenix,AZ,85018 +-112.031648,33.480453,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",2322 E Thomas Rd, Phoenix,AZ,85016 +-112.11089,33.524164,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",2420 W Bethany Home Rd [Suite 129], Phoenix,AZ,85015 +-112.036139,33.509277,"DD [drivethru-no] [wifi-no]-Phoenix,AZ",2131 E Camelback Rd [Ste 100], Phoenix,AZ,85016 +-112.01458,33.596767,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",3137 E Cactus Rd, Phoenix,AZ,85032 +-111.979317,33.640377,"DD [drivethru-no] [wifi-yes]-Phoenix,AZ",4727 E Bell Rd, Phoenix,AZ,85032 +-112.001213,33.640507,"DD [drivethru-no] [wifi-no]-Phoenix,AZ",3739 E Bell Rd, Phoenix,AZ,85032 +-112.109508,33.480534,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",2345 W Thomas Rd, Phoenix,AZ,85015 +-112.101038,33.553055,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",1931 W Northern Ave, Phoenix,AZ,85021 +-110.957771,32.231541,"DD/BR [drivethru-no] [wifi-yes]-Tucson,AZ",904 E University Blvd, Tucson,AZ,85719 +-110.893272,32.250515,"DD/BR [drivethru-yes] [wifi-yes]-Tucson,AZ",4676 E Grant Rd, Tucson,AZ,85712 +-110.878288,32.206696,"DD [drivethru-yes] [wifi-yes]-Tucson,AZ",5346 E 22nd St, Tucson,AZ,85711 +-111.000511,32.133617,"DD/BR [drivethru-yes] [wifi-no]-Tucson,AZ",1655 W Valencia Rd, Tucson,AZ,85746 +-110.975694,32.348442,"DD [drivethru-yes] [wifi-yes]-Oro Valley,AZ",7805 N Oracle Rd, Oro Valley,AZ,85704 +-110.943966,32.253149,"DD [drivethru-yes] [wifi-no]-Tucson,AZ",2553 N Campbell Ave, Tucson,AZ,85704 +-110.790299,32.220858,"DD [drivethru-yes] [wifi-yes]-Tucson,AZ",9485 E Broadway Blvd, Tucson,AZ,85710 +-111.892403,33.621819,"DD [drivethru-yes] [wifi-yes]-Scottsdale,AZ",15223 N 87th St, Scottsdale,AZ,85260 +-111.649612,33.2342,"DD [drivethru-yes] [wifi-yes]-Queen Creek,AZ",18490 S Rittenhouse Road, Queen Creek,AZ,85242 +-111.84314,33.261982,"DD [drivethru-yes] [wifi-yes]-Queen Creek,AZ",40615 N Gantzel Rd, Queen Creek,AZ,85140 +-111.909126,33.48061,"DD [drivethru-no] [wifi-yes]-Scottsdale,AZ",2910 N Hayden Rd, Scottsdale,AZ,85251 +-111.925781,33.582485,"DD [drivethru-no] [wifi-yes]-Scottsdale,AZ",10629 N Scottsdale Road, Scottsdale,AZ,85254 +-111.9263,33.449619,"DD [drivethru-yes] [wifi-yes]-Tempe,AZ",1811 N Scottsdale Rd, Tempe,AZ,85281 +-111.824493,33.218888,"DD [drivethru-yes] [wifi-yes]-Chandler,AZ",990 E Riggs Rd, Chandler,AZ,85249 +-111.626228,33.250156,"DD [drivethru-yes] [wifi-yes]-Queen Creek,AZ",21148 E Rittenhouse Rd, Queen Creek,AZ,85242 +-111.8359,33.58841,"DD [drivethru-yes] [wifi-yes]-Scottsdale,AZ",11218 N Frank Lloyd Wright Blvd, Scottsdale,AZ,85259 +-111.877281,33.30579,"DD [drivethru-yes] [wifi-yes]-Chandler,AZ",2051 W Chandler Blvd [Suite 10], Chandler,AZ,85224 +-111.909229,33.334788,"DD [drivethru-yes] [wifi-yes]-Tempe,AZ",1830 E Warner Rd, Tempe,AZ,85284 +-111.858394,33.274793,"DD [drivethru-yes] [wifi-yes]-Chandler,AZ",2105 S Alma School Rd, Chandler,AZ,85224 +-111.859664,33.376332,"DD [drivethru-yes] [wifi-yes]-Mesa,AZ",2105 S Alma School Rd, Mesa,AZ,85210 +-111.788918,33.437191,"DD [drivethru-yes] [wifi-yes]-Mesa,AZ",1958 E Brown Rd, Mesa,AZ,85203 +-111.858276,33.274467,"DD [drivethru-no] [wifi-no]-Chandler,AZ",2021 S Alma School Rd, Chandler,AZ,85248 +-111.806152,33.379154,"DD [drivethru-yes] [wifi-yes]-Mesa,AZ",1230 E Baseline Rd, Mesa,AZ,85204 +-111.841589,33.335585,"DD [drivethru-yes] [wifi-yes]-Chandler,AZ",2001 N Arizona Ave, Chandler,AZ,85225 +-111.977788,33.305063,"DD [drivethru-yes] [wifi-yes]-Phoenix,AZ",4923 E Chandler Blvd, Phoenix,AZ,85048 +-111.886744,33.579445,"DD [drivethru-yes] [wifi-yes]-Scottsdale,AZ",10240 N 90th St, Scottsdale,AZ,85258 +-111.961633,33.334545,"DD [drivethru-no] [wifi-yes]-Tempe,AZ",1342 W Warner Rd, Tempe,AZ,85284 +-111.739464,33.381152,"DD [drivethru-yes] [wifi-yes]-Mesa,AZ",1835 S Greenfield Rd, Mesa,AZ,85206 +-111.771439,33.335388,"DD [drivethru-yes] [wifi-yes]-Gilbert,AZ",857 E Warner Rd, Gilbert,AZ,85296 +-111.959312,33.421795,"DD [drivethru-no] [wifi-yes]-Tempe,AZ",1335 W University Dr, Tempe,AZ,85281 +-111.687973,33.452015,"DD [drivethru-no] [wifi-yes]-Mesa,AZ",6606 E Mckellips Rd, Mesa,AZ,85215 +-111.600388,33.381416,"DD [drivethru-no] [wifi-no]-Mesa,AZ",1855 S Signal Butte Rd, Mesa,AZ,85209 +-111.615411,33.394665,"DD [drivethru-yes] [wifi-yes]-Mesa,AZ",1116 S Crismon Rd, Mesa,AZ,85208 +-111.910452,33.407731,"DD [drivethru-yes] [wifi-yes]-Tempe,AZ",1740 E Broadway Rd, Tempe,AZ,85282 +-117.367931,33.31491,"DD [drivethru-no] [wifi-no]-Camp Pendleton,CA",Bldg 2010 Ste 203 [MCX Camp Pendleton], Camp Pendleton,CA,92055 +-104.9786377,39.855206,"DD [drivethru-yes] [wifi-yes]-Thornton,CO",8775 Washington St, Thornton,CO,80229 +-104.7759,38.83614,"DD [drivethru-yes] [wifi-yes]-Colorado Springs,CO",201 N Circle Drive, Colorado Springs,CO,80909 +-104.8394,38.83373,"DD [drivethru-no] [wifi-yes]-Colorado Springs,CO",806 W Colorado Avenue, Colorado Springs,CO,80905 +-104.8303,38.92777,"DD [drivethru-no] [wifi-yes]-Colorado Springs,CO",6660 Delmonico Drive, Colorado Springs,CO,80919 +-104.9871292,39.7221146,"DD [drivethru-yes] [wifi-yes]-Denver,CO",366 Broadway, Denver,CO,80203 +-104.72012,39.83609,"DD [drivethru-yes] [wifi-no]-Denver,CO",Denver Intl Airport [7680 Pena Blvd], Denver,CO,80249 +-104.71263,39.8374367,"DD [drivethru-no] [wifi-no]-Denver,CO",Denver Intl Airport Terminal A [8500 Pena Blvd], Denver,CO,80249 +-105.0535889,39.7478714,"DD [drivethru-yes] [wifi-yes]-Edgewater,CO",2001 Sheridan Blvd [Ste A],Edgewater,CO,80214 +-73.255982,41.146333,"DD [drivethru-no] [wifi-yes]-Fairfield,CT", 199 Congress St, Fairfield,CT,6825 +-73.256683,41.147989,"DD [drivethru-no] [wifi-no]-Fairfield,CT", 195 Congress St, Fairfield,CT,6825 +-72.026493,41.383098,"DD [drivethru-yes] [wifi-yes]-Groton,CT",1280 Gold Star Hwy, Groton,CT,6340 +-71.954968,41.473153,"DD [drivethru-no] [wifi-no]-Ledyard,CT",39 Norwich Westerly Rd [Foxwoods], Ledyard,CT,6339 +-71.95758,41.348875,"DD [drivethru-yes] [wifi-yes]-Mystic,CT",42 A/B Williams Ave Rt 1, Mystic,CT,6355 +-72.627325,41.926767,"DD [drivethru-no] [wifi-no]-Windsor Locks,CT",10 Schoephoester Rd [Pre Security], Windsor Locks,CT,6096 +-72.674601,41.924848,"DD [drivethru-no] [wifi-no]-Windsor Locks,CT",Schoephoester Rd SW Concourse [Bradley Intl Airport], Windsor Locks,CT,6096 +-73.41975,41.10126,"DD [drivethru-no] [wifi-yes]-Norwalk,CT",81 N Main Street, Norwalk,CT,6854 +-71.921722,41.927979,"DD/BR [drivethru-yes] [wifi-yes]-Putnam,CT",325 Woodstock Ave Retail Unit, Putnam,CT,6260 +-71.90807,41.91948,"DD [drivethru-yes] [wifi-yes]-Putnam,CT",319 Kennedy Drive, Putnam,CT,6260 +-72.719139,41.730682,"DD [drivethru-yes] [wifi-yes]-West Hartford,CT",970 New Britain Ave, West Hartford,CT,6110 +-72.711296,41.742577,"DD [drivethru-yes] [wifi-yes]-Hartford,CT",475 Flatbush Ave [Charter Oak Market Place], Hartford,CT,6106 +-73.073768,41.583303,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",1565 Watertown Ave, Waterbury,CT,6708 +-71.880783,41.924526,"DD [drivethru-yes] [wifi-yes]-Putnam,CT",21 Providence Pike, Putnam,CT,6260 +-71.884804,41.958912,"DD [drivethru-no] [wifi-no]-Thompson,CT",440 Riverside Rd, Thompson,CT,6277 +-72.705606,41.855199,"DD [drivethru-yes] [wifi-no]-Bloomfield,CT",1298 Blue Hills Ave, Bloomfield,CT,6002 +-72.61695,41.92176,"DD [drivethru-yes] [wifi-yes]-East Windsor,CT",216 Main Street, East Windsor,CT,6088 +-72.62842,41.76257,"DD [drivethru-yes] [wifi-no]-East Hartford,CT",364 Silver Lane, East Hartford,CT,6118 +-72.122665,41.507324,"DD [drivethru-no] [wifi-no]-Norwich,CT",220 Salem Turnpike [Walmart 2170], Norwich,CT,6360 +-72.106728,41.554073,"DD [drivethru-yes] [wifi-no]-Norwich,CT",154 W Town St, Norwich,CT,6360 +-72.074554,41.524414,"DD [drivethru-no] [wifi-no]-Norwich,CT",227 Main St, Norwich,CT,6360 +-71.98087,41.48823,"DD [drivethru-yes] [wifi-yes]-Preston,CT",492 Route 2, Preston,CT,6365 +-72.11441,41.51078,"DD [drivethru-yes] [wifi-yes]-Norwich,CT",113 Salem Turnpike [Dandy Donuts], Norwich,CT,6360 +-72.04803,41.51321,"DD [drivethru-yes] [wifi-yes]-Preston,CT",37 Route 2, Preston,CT,6365 +-72.496414,41.828331,"DD [drivethru-yes] [wifi-yes]-Vernon Rockville,CT",83 Talcottville Rd, Vernon Rockville,CT,6066 +-72.480232,41.82933,"DD [drivethru-yes] [wifi-no]-Vernon Rockville,CT",448 Hartford Tpke, Vernon Rockville,CT,6066 +-72.431018,41.859953,"DD [drivethru-yes] [wifi-yes]-Vernon,CT",30 Lafayette Sq, Vernon,CT,6066 +-72.36198,41.8648,"DD [drivethru-no] [wifi-yes]-Tolland,CT",65 Merrow Road, Tolland,CT,6084 +-72.48376,41.85107,"DD [drivethru-yes] [wifi-no]-Talcottville,CT",520 Talcottville Road, Talcottville,CT,6066 +-72.46869,41.8671,"DD [drivethru-yes] [wifi-yes]-Vernon Rockville,CT",42 Windsor Avenue, Vernon Rockville,CT,6066 +-72.264151,41.476317,"DD [drivethru-yes] [wifi-yes]-Salem,CT",1 New London Rd, Salem,CT,6420 +-72.131912,41.575153,"DD [drivethru-yes] [wifi-yes]-North Franklin,CT",106 Rt 32, North Franklin,CT,6254 +-72.09735,41.51754,"DD [drivethru-yes] [wifi-yes]-Norwich,CT",538 W Main Street, Norwich,CT,6360 +-72.095951,41.492603,"DD [drivethru-no] [wifi-no]-Uncasville,CT",1 Mohegan Sun Blvd [Sky Valet], Uncasville,CT,6382 +-72.113472,41.428082,"DD [drivethru-yes] [wifi-yes]-Uncasville,CT",568 Norwich Turnpike [Dandy Donuts], Uncasville,CT,6370 +-72.099892,41.48531,"DD [drivethru-no] [wifi-no]-Montville,CT",2210 Rt 32, Montville,CT,6353 +-72.742516,41.619377,"DD [drivethru-yes] [wifi-yes]-Berlin,CT",1100 Berlin Turnpike, Berlin,CT,6037 +-72.741325,41.624157,"DD [drivethru-yes] [wifi-yes]-Berlin,CT",2005 Berlin Turnpike [Wilbur Cross Hwy], Berlin,CT,6037 +-72.758499,41.629978,"DD [drivethru-yes] [wifi-yes]-Berlin,CT",1113 Farmington Ave, Berlin,CT,6037 +-72.8074,41.66649,"DD [drivethru-yes] [wifi-yes]-New Britain,CT",741 W Main Street, New Britain,CT,6053 +-73.323473,42.024217,"DD [drivethru-yes] [wifi-no]-North Canaan,CT",3 E Main St, North Canaan,CT,6018 +-72.859283,41.673012,"DD [drivethru-yes] [wifi-yes]-Plainville,CT",19 East St, Plainville,CT,6062 +-71.887573,41.846489,"DD [drivethru-yes] [wifi-yes]-Dayville,CT",541 Hartford Turnpike, Dayville,CT,6241 +-71.876198,41.809494,"DD [drivethru-no] [wifi-yes]-Danielson,CT",86 Westcott Rd, Danielson,CT,6239 +-71.86412,41.574261,"DD [drivethru-yes] [wifi-yes]-Voluntown,CT",251 Main St [Dandy Donuts], Voluntown,CT,6384 +-71.90898,41.79747,"DD [drivethru-yes] [wifi-yes]-Danielson,CT",483 Providence Road, Danielson,CT,6234 +-71.87674,41.840874,"DD [drivethru-yes] [wifi-no]-Killingly,CT",1095 N Main St, Killingly,CT,6241 +-72.409981,41.352146,"DD [drivethru-no] [wifi-no]-Centerbrook,CT",23 Main St, Centerbrook,CT,6409 +-72.55851,41.98793,"DD [drivethru-yes] [wifi-yes]-Enfield,CT",155 Hazard Ave, Enfield,CT,6082 +-72.585571,42.023266,"DD [drivethru-no] [wifi-no]-Enfield,CT",56 Enfield St, Enfield,CT,6082 +-72.579033,41.989983,"DD [drivethru-yes] [wifi-yes]-Enfield,CT",35 Hazard Ave [Brookside Plaza], Enfield,CT,6082 +-72.51438,41.98499,"DD [drivethru-yes] [wifi-yes]-Enfield,CT",545 Hazard Avenue, Enfield,CT,6082 +-72.876892,41.675484,"DD [drivethru-no] [wifi-yes]-Plainville,CT",147 N Washington St, Plainville,CT,6062 +-72.852409,41.686466,"DD [drivethru-no] [wifi-yes]-Plainville,CT",284 Farmington Ave, Plainville,CT,6062 +-72.59315,42.00869,"DD [drivethru-yes] [wifi-yes]-Enfield,CT",562 Enfield Street, Enfield,CT,6082 +-72.35734,41.73277,"DD [drivethru-yes] [wifi-yes]-Andover,CT",497 Route 6, Andover,CT,6232 +-72.37072,41.79749,"DD [drivethru-yes] [wifi-yes]-Coventry,CT",3516 Main Street, Coventry,CT,6238 +-72.58445,41.99785,"DD [drivethru-yes] [wifi-no]-Enfield,CT",89 Elm Street, Enfield,CT,6082 +-72.19341,41.32328,"DD [drivethru-no] [wifi-yes]-Niantic,CT",255 Main Street, Niantic,CT,6357 +-73.057846,41.91925,"DD [drivethru-yes] [wifi-yes]-Winsted,CT",3 Main St, Winsted,CT,6098 +-72.674698,41.761974,"DD [drivethru-no] [wifi-yes]-Hartford,CT",485 Main St, Hartford,CT,6103 +-72.66337,41.7957,"DD [drivethru-yes] [wifi-no]-Hartford,CT",3250 Main Street, Hartford,CT,6120 +-72.447731,41.984776,"DD [drivethru-yes] [wifi-yes]-Somers,CT",12 South Rd, Somers,CT,6071 +-72.889435,41.823521,"DD [drivethru-yes] [wifi-yes]-Canton,CT",140 Albany Turnpike, Canton,CT,6019 +-72.210304,41.353565,"DD [drivethru-yes] [wifi-yes]-East Lyme,CT",209 Flanders Rd, East Lyme,CT,6333 +-72.31854,41.96442,"DD [drivethru-yes] [wifi-yes]-Stafford Springs,CT",22 W Stafford Road, Stafford Springs,CT,6076 +-72.260056,41.921337,"DD [drivethru-no] [wifi-yes]-Willington,CT",327 Ruby Rd, Willington,CT,6279 +-72.702667,41.878628,"DD [drivethru-no] [wifi-yes]-Windsor,CT",1001 Day Hill Rd, Windsor,CT,6095 +-72.660118,41.872437,"DD [drivethru-yes] [wifi-yes]-Windsor,CT",700 Poquonock Ave, Windsor,CT,6095 +-72.793839,41.737713,"DD [drivethru-no] [wifi-yes]-Farmington,CT",230 Farmington Ave, Farmington,CT,6032 +-72.835884,41.733776,"DD [drivethru-no] [wifi-yes]-Farmington,CT",1015 Farmington Ave, Farmington,CT,6032 +-72.80886,41.71137,"DD [drivethru-no] [wifi-yes]-Farmington,CT",348 Colt Highway, Farmington,CT,6032 +-72.823715,41.807056,"DD [drivethru-no] [wifi-no]-Avon,CT",75 E Main St, Avon,CT,6001 +-72.8469,41.70556,"DD [drivethru-no] [wifi-no]-Farmington,CT",6 Colt Highway, Farmington,CT,6032 +-72.528717,41.288837,"DD [drivethru-no] [wifi-yes]-Clinton,CT",7 Glenwood Rd, Clinton,CT,6413 +-72.61411,41.99692,"DD [drivethru-no] [wifi-no]-Suffield,CT",801 Thompsonville Road, Suffield,CT,6078 +-72.65793,41.98365,"DD [drivethru-no] [wifi-yes]-Suffield,CT",144 Mountain Road, Suffield,CT,6078 +-72.746933,41.695156,"DD [drivethru-yes] [wifi-yes]-Newington,CT",548 Cedar St, Newington,CT,6111 +-72.71175,41.68079,"DD [drivethru-yes] [wifi-yes]-Newington,CT",2601 Berlin Turnpike, Newington,CT,6111 +-72.725372,41.65546,"DD [drivethru-no] [wifi-yes]-Newington,CT",3384 Berlin Turnpike, Newington,CT,6111 +-72.74704,41.654278,"DD [drivethru-no] [wifi-yes]-Newington,CT",194 Kelsey St, Newington,CT,6111 +-72.707199,41.687241,"DD [drivethru-yes] [wifi-yes]-Newington,CT",2368 Berlin Turnpike, Newington,CT,6111 +-72.506874,41.272888,"DD [drivethru-yes] [wifi-yes]-Clinton,CT",215 E Main St, Clinton,CT,6413 +-72.5607,41.34943,"DD/BR [drivethru-no] [wifi-yes]-Killingworth,CT",177 Clinton St, Killingworth,CT,6419 +-72.623024,41.721218,"DD [drivethru-no] [wifi-no]-Glastonbury,CT",215 Glastonbury Blvd [Stop & Shop], Glastonbury,CT,6033 +-72.605171,41.71302,"DD/BR [drivethru-no] [wifi-yes]-Glastonbury,CT",141 Hebron Ave, Glastonbury,CT,6033 +-72.818698,41.832792,"DD [drivethru-yes] [wifi-yes]-Weatogue,CT",142 Hopmeadow St, Weatogue,CT,6089 +-72.789833,41.934151,"DD [drivethru-yes] [wifi-yes]-Granby,CT",7 Mill Pond Rd [Salmon Brook Ct], Granby,CT,6035 +-72.72537,41.94285,"DD [drivethru-yes] [wifi-yes]-East Granby,CT",4 Rainbow Road, East Granby,CT,6026 +-72.80056,41.878021,"DD [drivethru-no] [wifi-yes]-Simsbury,CT",828 Hopmeadow St, Simsbury,CT,6070 +-72.86888,41.81771,"DD [drivethru-yes] [wifi-yes]-West Simsbury,CT",25 Albany Turnpike, West Simsbury,CT,6092 +-72.538124,41.807777,"DD [drivethru-no] [wifi-yes]-Manchester,CT",420 Buckland Hills Dr [Walmart], Manchester,CT,6040 +-72.531387,41.768192,"DD [drivethru-yes] [wifi-no]-Manchester,CT",1527 Pleasant Valley Rd, Manchester,CT,6040 +-72.527527,41.813984,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",210 Demming St, Manchester,CT,6040 +-72.553535,41.796791,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",1205 Tolland Tpke, Manchester,CT,6040 +-72.529755,41.7728,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",244 Center St, Manchester,CT,6040 +-72.52126,41.79629,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",81 Oakland Street, Manchester,CT,6042 +-72.522636,41.76038,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",255 A W Middle Tpke, Manchester,CT,6040 +-72.56784,41.76717,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",171 Spencer Street, Manchester,CT,6040 +-72.56781,41.84773,"DD [drivethru-yes] [wifi-yes]-South Windsor,CT",855 Sullivan Avenue, South Windsor,CT,6074 +-72.54082,41.76446,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",443 Hartford Road, Manchester,CT,6040 +-72.55025,41.78502,"DD [drivethru-yes] [wifi-yes]-Manchester,CT",318 Adams Street, Manchester,CT,6042 +-72.71238,41.60716,"DD [drivethru-no] [wifi-yes]-Cromwell,CT",161 Berlin Road [Walmart], Cromwell,CT,6416 +-72.6161,41.7271,"DD [drivethru-yes] [wifi-yes]-Glastonbury,CT",3040 Main Street, Glastonbury,CT,6033 +-72.612923,41.717552,"DD [drivethru-yes] [wifi-yes]-Glastonbury,CT",2751 Main St, Glastonbury,CT,6033 +-72.67276,41.580204,"DD [drivethru-yes] [wifi-yes]-Middletown,CT",779 Newfield St, Middletown,CT,6457 +-72.88931,41.58754,"DD [drivethru-no] [wifi-yes]-Plantsville,CT",746 Main Street, Plantsville,CT,6479 +-72.874092,41.639973,"DD [drivethru-yes] [wifi-yes]-Southington,CT",856 Queen St, Southington,CT,6489 +-72.89904,41.610596,"DD [drivethru-yes] [wifi-yes]-Southington,CT",790 West St, Southington,CT,6489 +-72.612602,41.912579,"DD [drivethru-yes] [wifi-yes]-East Windsor,CT",1 Thompson Rd, East Windsor,CT,6088 +-72.67129,41.92008,"DD [drivethru-yes] [wifi-no]-Windsor Locks,CT",77 Ella Grasso Turnpike, Windsor Locks,CT,6096 +-72.62758,41.9312,"DD [drivethru-no] [wifi-yes]-Windsor Locks,CT",94 Main Street, Windsor Locks,CT,6096 +-72.60616,41.93049,"DD [drivethru-no] [wifi-no]-East Windsor,CT",172 Bridge Street, East Windsor,CT,6088 +-72.669601,41.929783,"DD [drivethru-yes] [wifi-yes]-Windsor Locks,CT",596 Elm St, Windsor Locks,CT,6096 +-72.853127,41.557564,"DD [drivethru-yes] [wifi-yes]-Southington,CT",262 Meriden/Waterbury Tpke, Southington,CT,6489 +-72.86816,41.56145,"DD [drivethru-yes] [wifi-yes]-Milldale,CT",1843 Meriden Waterbury Turnpike, Milldale,CT,6489 +-72.70838,41.60517,"DD [drivethru-yes] [wifi-yes]-Cromwell,CT",1 Kirby Road, Cromwell,CT,6416 +-72.67675,41.59989,"DD [drivethru-yes] [wifi-yes]-Cromwell,CT",24 Shunpike Road, Cromwell,CT,6416 +-72.68747,41.602,"DD [drivethru-no] [wifi-yes]-Cromwell,CT",50 Berlin Road, Cromwell,CT,6416 +-72.68123,41.76878,"DD [drivethru-no] [wifi-yes]-Hartford,CT",1 Union Place, Hartford,CT,6103 +-71.861961,41.427456,"DD [drivethru-yes] [wifi-no]-North Stonington,CT",136 Norwich Westerly Rd, North Stonington,CT,6359 +-71.962013,41.362427,"DD [drivethru-yes] [wifi-yes]-Stonington,CT",19 Hickey Dr, Stonington,CT,6379 +-72.90072,41.69819,"DD [drivethru-no] [wifi-yes]-Bristol,CT",1264 Farmington Avenue, Bristol,CT,6010 +-72.915268,41.693336,"DD [drivethru-yes] [wifi-yes]-Bristol,CT",855 Farmington Ave, Bristol,CT,6010 +-72.92099,41.667027,"DD [drivethru-yes] [wifi-yes]-Bristol,CT",15 Pine St, Bristol,CT,6010 +-73.01944,41.679733,"DD [drivethru-yes] [wifi-yes]-Terryville,CT",311 Main St, Terryville,CT,6786 +-72.909058,41.695736,"DD [drivethru-no] [wifi-yes]-Bristol,CT",1053 Farmington Ave, Bristol,CT,6010 +-72.94657,41.67563,"DD [drivethru-no] [wifi-yes]-Bristol,CT",182 N Main Street, Bristol,CT,6010 +-72.917375,41.660058,"DD [drivethru-yes] [wifi-no]-Bristol,CT",330 Middle St, Bristol,CT,6010 +-72.92312,41.69061,"DD [drivethru-no] [wifi-no]-Bristol,CT",597 Farmington Avenue [Stop & Shop], Bristol,CT,6010 +-72.895447,41.669006,"DD [drivethru-no] [wifi-no]-Bristol,CT",747 Pine St [Stop & Shop], Bristol,CT,6010 +-72.73777,41.76304,"DD [drivethru-no] [wifi-yes]-West Hartford,CT",905 Farmington Avenue, West Hartford,CT,6119 +-72.7066,41.76105,"DD [drivethru-yes] [wifi-no]-Hartford,CT",106 Sisson Avenue, Hartford,CT,6106 +-73.201279,41.745701,"DD [drivethru-no] [wifi-yes]-Litchfield,CT",7 Village Green Dr, Litchfield,CT,6759 +-71.904678,41.721134,"DD [drivethru-yes] [wifi-yes]-Plainfield,CT",50 E Main St, Plainfield,CT,6374 +-71.9127,41.6635,"DD [drivethru-yes] [wifi-yes]-Plainfield,CT",65 Lathrop Road, Plainfield,CT,6374 +-72.66747,41.72079,"DD [drivethru-yes] [wifi-yes]-Wethersfield,CT",225 Silas Deane Highway, Wethersfield,CT,6109 +-72.64148,41.66779,"DD [drivethru-yes] [wifi-yes]-Rocky Hill,CT",2234 Silas Deane Highway, Rocky Hill,CT,6067 +-72.675751,41.767216,"DD [drivethru-no] [wifi-no]-Hartford,CT",1 Civic Center Plaza [Hartford XL Center], Hartford,CT,6103 +-72.675585,41.767186,"DD [drivethru-no] [wifi-no]-Hartford,CT",1 Civic Center Plz [XL Center 2], Hartford,CT,6103 +-72.697601,41.767597,"DD [drivethru-no] [wifi-yes]-Hartford,CT",271 Farmington Ave, Hartford,CT,6105 +-72.671898,41.76535,"DD [drivethru-no] [wifi-yes]-Hartford,CT",30 Statehouse Sq, Hartford,CT,6103 +-71.971924,41.698425,"DD [drivethru-yes] [wifi-yes]-Canterbury,CT",5 Westminster Rd, Canterbury,CT,6331 +-72.67798,41.77406,"DD [drivethru-yes] [wifi-yes]-Hartford,CT",25 Albany Avenue, Hartford,CT,6120 +-72.337097,41.571423,"DD [drivethru-yes] [wifi-no]-Colchester,CT",164 Linwood Ave, Colchester,CT,6415 +-72.323952,41.566479,"DD [drivethru-yes] [wifi-yes]-Colchester,CT",440 S Main St, Colchester,CT,6415 +-71.988243,41.389877,"DD [drivethru-yes] [wifi-yes]-Groton,CT",2414 Gold Star Hwy, Groton,CT,6340 +-71.96069,41.37231,"DD [drivethru-yes] [wifi-yes]-Mystic,CT",242 Greenmanville Avenue [Dandy Donuts], Mystic,CT,6355 +-71.802567,41.440121,"DD [drivethru-yes] [wifi-yes]-North Stonington,CT",560 Providence/New London Turnpike, North Stonington,CT,6359 +-72.66452,41.71488,"DD [drivethru-yes] [wifi-yes]-Wethersfield,CT",416 Silas Deane Highway, Wethersfield,CT,6109 +-72.67838,41.65882,"DD [drivethru-yes] [wifi-yes]-Rocky Hill,CT",397 Cromwell Avenue, Rocky Hill,CT,6067 +-72.700691,41.7071,"DD [drivethru-yes] [wifi-yes]-Wethersfield,CT",1750 Berlin Turnpike, Wethersfield,CT,6109 +-72.435417,41.384117,"DD [drivethru-no] [wifi-yes]-Deep River,CT",190 Main St, Deep River,CT,6417 +-72.67364,41.76658,"DD [drivethru-no] [wifi-yes]-Hartford,CT",21 Asylum Street, Hartford,CT,6103 +-72.675285,41.768089,"DD [drivethru-no] [wifi-yes]-Hartford,CT",242 Trumbull St, Hartford,CT,6103 +-72.672234,41.76577,"DD [drivethru-yes] [wifi-yes]-Hartford,CT",20 Central Row, Hartford,CT,6103 +-72.68454,41.73959,"DD [drivethru-yes] [wifi-no]-Hartford,CT",754 Maple Avenue, Hartford,CT,6114 +-72.65995,41.737183,"DD [drivethru-no] [wifi-no]-Hartford,CT",131 Brainard Road, Hartford,CT,6114 +-72.669334,41.765949,"DD [drivethru-no] [wifi-yes]-Hartford,CT",100 Constitution Plaza, Hartfort,CT,6103 +-72.65683,41.81921,"DD [drivethru-yes] [wifi-yes]-Windsor,CT",503 Windsor Avenue, Windsor,CT,6095 +-72.765617,41.755005,"DD [drivethru-no] [wifi-yes]-West Hartford,CT",1234 Farmington Ave, West Hartford,CT,6107 +-72.74444,41.73157,"DD/BR [drivethru-no] [wifi-yes]-West Hartford,CT",1253 New Britain Avenue, West Hartford,CT,6110 +-72.647,41.67388,"DD [drivethru-yes] [wifi-yes]-Rocky Hill,CT",1949 Silas Deane Highway, Rocky Hill,CT,6067 +-72.135681,41.371468,"DD [drivethru-no] [wifi-no]-Waterford,CT",806 Hartford Turnpike, Waterford,CT,6385 +-73.092133,41.816681,"DD [drivethru-yes] [wifi-yes]-Torrington,CT",1276 E Main St [Torrington Plaza], Torrington,CT,6790 +-73.14507,41.81833,"DD [drivethru-yes] [wifi-no]-Torrington,CT",2 Norfolk Road, Torrington,CT,6790 +-73.11454,41.805073,"DD [drivethru-no] [wifi-no]-Torrington,CT",322 E Main St, Torrington,CT,6790 +-73.110329,41.828053,"DD [drivethru-yes] [wifi-yes]-Torrington,CT",595 Winsted Rd, Torrington,CT,6790 +-72.30703,41.83511,"DD [drivethru-yes] [wifi-no]-Mansfield,CT",2103 Storrs Road, Mansfield,CT,6268 +-72.249855,41.796158,"DD [drivethru-no] [wifi-yes]-Storrs Mansfield,CT",134 N Eagleville Rd, Storrs Mansfield,CT,6268 +-73.07093,41.769695,"DD [drivethru-yes] [wifi-yes]-Harwinton,CT",122 Litchfield Rd, Harwinton,CT,6791 +-73.0823,41.82098,"DD [drivethru-yes] [wifi-no]-Torrington,CT",1758 E Main Street, Torrington,CT,6790 +-73.12056,41.796539,"DD [drivethru-yes] [wifi-yes]-Torrington,CT",195 S Main St, Torrington,CT,6790 +-72.08213,41.42868,"DD [drivethru-no] [wifi-no]-Gales Ferry,CT",1662 Rt 12, Gales Ferry,CT,6335 +-72.23774,41.721355,"DD [drivethru-yes] [wifi-yes]-Willimantic,CT",1575 Main St, Willimantic,CT,6226 +-72.168091,41.677273,"DD [drivethru-yes] [wifi-no]-South Windham,CT",875 Windham Rd, South Windham,CT,6266 +-72.045715,41.346722,"DD [drivethru-yes] [wifi-yes]-Groton,CT",1056 Poquonnock Rd, Groton,CT,6340 +-72.07629,41.34739,"DD [drivethru-no] [wifi-yes]-Groton,CT",75 Poquonnock Road, Groton,CT,6340 +-72.05265,41.3474,"DD [drivethru-yes] [wifi-yes]-Groton,CT",799 Long Hill Road, Groton,CT,6340 +-72.153214,41.350483,"DD [drivethru-yes] [wifi-yes]-Waterford,CT",316 Boston Post Rd, Waterford,CT,6385 +-72.144577,41.758839,"DD [drivethru-yes] [wifi-yes]-Chaplin,CT",187 Willimantic Rd, Chaplin,CT,6235 +-72.071976,41.371826,"DD [drivethru-yes] [wifi-yes]-Groton,CT",368 Rt 12, Groton,CT,6340 +-72.095779,41.492531,"DD [drivethru-no] [wifi-no]-Uncasville,CT",1 Mohegan Sun Blvd, Uncasville,CT,6382 +-72.11598,41.35914,"DD [drivethru-yes] [wifi-yes]-New London,CT",380 Colman Street, New London,CT,6320 +-72.104836,41.334354,"DD [drivethru-no] [wifi-yes]-New London,CT",439 Ocean Ave, New London,CT,6320 +-72.12249,41.34182,"DD [drivethru-yes] [wifi-no]-Waterford,CT",102 Boston Post Road, Waterford,CT,6385 +-72.158852,41.38633,"DD [drivethru-yes] [wifi-yes]-Waterford,CT",970 Hartford Turnpike, Waterford,CT,6385 +-72.10567,41.35909,"DD [drivethru-yes] [wifi-yes]-New London,CT",175 Broad Street, New London,CT,6320 +-72.67888,41.64974,"DD [drivethru-yes] [wifi-yes]-Rocky Hill,CT",767 Cromwell Avenue, Rocky Hill,CT,6067 +-72.17922,41.85736,"DD [drivethru-yes] [wifi-yes]-Ashford,CT",11 Nott Highway, Ashford,CT,6278 +-72.267082,41.827778,"DD [drivethru-no] [wifi-no]-Storrs Mansfield,CT",1659 Storrs Rd, Storrs Mansfield,CT,6268 +-72.180756,41.737972,"DD [drivethru-yes] [wifi-yes]-Windham,CT",307 Boston Post Rd, Windham,CT,6256 +-72.170212,41.744522,"DD [drivethru-no] [wifi-yes]-North Windham,CT",474 Boston Post Rd [Walmart], North Windham,CT,6256 +-72.21873,41.71306,"DD [drivethru-yes] [wifi-yes]-Willimantic,CT",1015 Main Street, Willimantic,CT,6226 +-72.84673,41.67765,"DD [drivethru-yes] [wifi-yes]-Plainville,CT",149 New Britain Avenue, Plainville,CT,6062 +-72.787216,41.897911,"DD [drivethru-yes] [wifi-yes]-Simsbury,CT",1195 Hopmeadow St, Simsbury,CT,6070 +-72.074687,41.376545,"DD [drivethru-no] [wifi-no]-Groton,CT",639 Route 12, Groton,CT,6340 +-72.971458,41.770813,"DD [drivethru-yes] [wifi-yes]-Burlington,CT",295 Spielman Hwy, Burlington,CT,6013 +-72.887207,41.756962,"DD [drivethru-no] [wifi-yes]-Unionville,CT",12 Mill St, Unionville,CT,6085 +-72.445068,41.290508,"DD [drivethru-no] [wifi-no]-Westbrook,CT",198 Essex Rd, Westbrook,CT,6498 +-72.454681,41.283218,"DD [drivethru-yes] [wifi-yes]-Westbrook,CT",977 Boston Post Rd, Westbrook,CT,6498 +-72.41627,41.28641,"DD [drivethru-no] [wifi-yes]-Old Saybrook,CT",1635 Boston Post Road, Old Saybrook,CT,6475 +-72.379883,41.294777,"DD [drivethru-no] [wifi-yes]-Old Saybrook,CT",744 Boston Post Rd, Old Saybrook,CT,6475 +-72.97787,41.87759,"DD [drivethru-yes] [wifi-yes]-New Hartford,CT",495 Main Street, New Hartford,CT,6057 +-72.873505,41.62841,"DD [drivethru-yes] [wifi-yes]-Southington,CT",433 Queen St, Southington,CT,6489 +-71.990799,41.590591,"DD [drivethru-yes] [wifi-yes]-Lisbon,CT",114 River Rd, Lisbon,CT,6351 +-71.93926,41.58472,"DD [drivethru-yes] [wifi-yes]-Griswold,CT",832 Voluntown Road, Griswold,CT,6351 +-71.994247,41.584572,"DD [drivethru-no] [wifi-yes]-Lisbon,CT",180 River Rd [Walmart], Lisbon,CT,6351 +-71.99094,41.59097,"DD [drivethru-yes] [wifi-yes]-Lisbon,CT",107 River Road [Dandy Donuts], Lisbon,CT,6351 +-73.4234,41.53008,"DD [drivethru-yes] [wifi-yes]-New Milford,CT",370 Danbury Road, New Milford,CT,6776 +-73.408157,41.577042,"DD [drivethru-no] [wifi-no]-New Milford,CT",4 East St, New Milford,CT,6776 +-73.397422,41.597768,"DD [drivethru-yes] [wifi-yes]-New Milford,CT",89 Park Ln, New Milford,CT,6776 +-72.681801,41.484825,"DD [drivethru-no] [wifi-no]-Durham,CT",349 Main St, Durham,CT,6422 +-72.67947,41.46776,"DD [drivethru-no] [wifi-yes]-Durham,CT",38 Main Street, Durham,CT,6422 +-72.790932,41.696796,"DD [drivethru-no] [wifi-yes]-New Britain,CT",701 Farmington Ave, New Britain,CT,6053 +-72.780289,41.670559,"DD [drivethru-no] [wifi-yes]-New Britain,CT",118 E Main St [Newbrite Plaza], New Britain,CT,6051 +-72.779465,41.661129,"DD [drivethru-no] [wifi-yes]-New Britain,CT",130 S Main St, New Britain,CT,6051 +-72.75565,41.67201,"DD [drivethru-yes] [wifi-yes]-New Britain,CT",234 Newington Avenue, New Britain,CT,6051 +-72.566864,41.500114,"DD [drivethru-yes] [wifi-yes]-Higganum,CT",201 Saybrook Rd, Higganum,CT,6441 +-72.471676,41.450028,"DD [drivethru-yes] [wifi-yes]-Haddam,CT",82 Bridge Rd, Haddam,CT,6438 +-72.671982,41.555084,"DD [drivethru-yes] [wifi-yes]-Middletown,CT",613 Washington St, Middletown,CT,6457 +-72.650631,41.561786,"DD [drivethru-no] [wifi-yes]-Middletown,CT",423 Main St, Middletown,CT,6457 +-72.653793,41.538662,"DD [drivethru-yes] [wifi-yes]-Middletown,CT",648 S Main St, Middletown,CT,6457 +-72.580795,41.561218,"DD [drivethru-no] [wifi-no]-Portland,CT",1633 Portland Cobalt Rd, Portland,CT,6480 +-72.60704,41.57571,"DD [drivethru-yes] [wifi-yes]-Portland,CT",860 Portland Cobalt Road [Ste 1 Corner Shops], Portland,CT,6480 +-72.64165,41.57167,"DD [drivethru-yes] [wifi-yes]-Portland,CT",152 Main Street, Portland,CT,6480 +-72.742561,41.759102,"DD [drivethru-no] [wifi-yes]-West Hartford,CT",41 S Main St, West Hartford,CT,6107 +-72.752632,41.745583,"DD [drivethru-no] [wifi-no]-West Hartford,CT",500 West Farm Mall, West Hartford,CT,6110 +-71.955412,41.474046,"DD [drivethru-no] [wifi-no]-Ledyard,CT",39 Norwich Westerly Rd [Foxwoods Pequot Tower], Ledyard,CT,6339 +-72.10426,41.44367,"DD [drivethru-yes] [wifi-yes]-Montville,CT",641 Norwich New London Turnpike, Montville,CT,6382 +-72.936742,41.675999,"DD [drivethru-no] [wifi-yes]-Bristol,CT",21 Brewster Rd [Bristol Hospital], Bristol,CT,6010 +-72.934622,41.676518,"DD [drivethru-no] [wifi-no]-Bristol,CT",21 Brewster Rd [Perioperative Ctr Cart], Bristol,CT,6010 +-72.67617,41.743027,"DD [drivethru-no] [wifi-yes]-Hartford,CT",274 Franklin Ave, Hartford,CT,6114 +-72.66763,41.73817,"DD [drivethru-no] [wifi-yes]-Hartford,CT",75 Airport Road, Hartford,CT,6114 +-72.65981,41.73729,"DD [drivethru-yes] [wifi-yes]-Hartford,CT",110 Brainard Road, Hartford,CT,6114 +-72.6616,41.78995,"DD [drivethru-yes] [wifi-yes]-Hartford,CT",129 Weston Street, Hartford,CT,6120 +-72.602058,41.931789,"DD [drivethru-yes] [wifi-yes]-East Windsor,CT",17 North Rd, East Windsor,CT,6088 +-72.672,41.92487,"DD [drivethru-no] [wifi-no]-Windsor Locks,CT",10 Schoephoester Road [Post Bradley Intl Airport], Windsor Locks,CT,6096 +-72.641594,41.772488,"DD [drivethru-no] [wifi-yes]-East Hartford,CT",1084 Main St, East Hartford,CT,6108 +-72.610313,41.819645,"DD [drivethru-yes] [wifi-yes]-South Windsor,CT",263 Pleasant Valley Rd, South Windsor,CT,6074 +-72.588005,41.783836,"DD [drivethru-yes] [wifi-yes]-East Hartford,CT",1166 Burnside Ave, East Hartford,CT,6108 +-72.695023,41.814236,"DD [drivethru-yes] [wifi-yes]-Bloomfield,CT",903 Blue Hills Ave, Bloomfield,CT,6002 +-72.71339,41.81763,"DD [drivethru-no] [wifi-yes]-Bloomfield,CT",413 Cottage Grove Road, Bloomfield,CT,6002 +-73.079742,41.661812,"DD [drivethru-yes] [wifi-yes]-Thomaston,CT",495 S Main St, Thomaston,CT,6787 +-73.062767,41.674248,"DD [drivethru-yes] [wifi-yes]-Thomaston,CT",369 East Main St, Thomaston,CT,6787 +-73.10892,41.59288,"DD [drivethru-yes] [wifi-yes]-Watertown,CT",1174 Main Street, Watertown,CT,6795 +-73.0992,41.5716,"DD [drivethru-yes] [wifi-yes]-Watertown,CT",750 Straits Turnpike [St Hwy 63], Watertown,CT,6795 +-72.5025,41.58373,"DD [drivethru-yes] [wifi-yes]-East Hampton,CT",25 E High Street, East Hampton,CT,6424 +-72.414696,41.545383,"DD [drivethru-no] [wifi-no]-Colchester,CT",738 Middletown Rd, Colchester,CT,6415 +-72.656448,41.693737,"DD [drivethru-yes] [wifi-yes]-Wethersfield,CT",1030 Silas Deane Hwy, Wethersfield,CT,6109 +-72.687744,41.763729,"DD [drivethru-no] [wifi-yes]-Hartford,CT",365 Capitol Ave, Hartford,CT,6106 +-72.6922,41.780502,"DD [drivethru-no] [wifi-no]-Hartford,CT",949 Albany Ave, Hartford,CT,6112 +-72.682976,41.753979,"DD [drivethru-yes] [wifi-yes]-Hartford,CT",265 Washington St, Hartford,CT,6106 +-71.957504,41.377907,"DD [drivethru-yes] [wifi-yes]-Mystic,CT",17 Whitehall Ave, Mystic,CT,6355 +-72.730972,41.828121,"DD [drivethru-yes] [wifi-yes]-Bloomfield,CT",760 Park Ave, Bloomfield,CT,6002 +-72.20285,41.720966,"DD [drivethru-no] [wifi-no]-Willimantic,CT",407 Jackson St [Dandy Donuts], Willimantic,CT,6226 +-72.716248,41.742886,"DD [drivethru-yes] [wifi-yes]-West Hartford,CT",450 New Park Ave, West Hartford,CT,6110 +-72.72935,41.75578,"DD [drivethru-no] [wifi-yes]-West Hartford,CT",338 Park Road, West Hartford,CT,6119 +-72.748016,41.785828,"DD [drivethru-no] [wifi-yes]-West Hartford,CT",2536 Albany Ave, West Hartford,CT,6117 +-72.62869,41.78018,"DD [drivethru-no] [wifi-no]-Hartford,CT",150 Park Avenue [Stop & Shop], Hartford,CT,6108 +-72.716751,41.757023,"DD [drivethru-no] [wifi-yes]-West Hartford,CT",56 Park Rd, West Hartford,CT,6119 +-72.716293,41.760052,"DD [drivethru-no] [wifi-yes]-West Hartford,CT",1037 Boulevard, West Hartford,CT,6119 +-72.738258,41.7164,"DD [drivethru-no] [wifi-yes]-Newington,CT",236 W Hill Rd, Newington,CT,6111 +-71.877037,41.753939,"DD [drivethru-no] [wifi-yes]-CT TP Rt 395 NB,CT",CT Turnpike Past exit 89 [Rt 395 Northbound], Plainfield,CT,6374 +-71.878415,41.754203,"DD [drivethru-no] [wifi-yes]-CT TP Rt 395 SB,CT",CT Turnpike Past exit 90 [Rt 395 Southbound], Plainfield,CT,6374 +-72.77024,41.68787,"DD [drivethru-no] [wifi-yes]-New Britain,CT",1537 Stanley Street, New Britain,CT,6053 +-72.817535,41.668533,"DD [drivethru-yes] [wifi-yes]-New Britain,CT",1015 West Main St, New Britain,CT,6053 +-72.77023,41.64257,"DD [drivethru-yes] [wifi-yes]-Berlin,CT",223 New Britain Road, Berlin,CT,6037 +-72.35611,41.660847,"DD [drivethru-yes] [wifi-yes]-Hebron,CT",109 Main St, Hebron,CT,6248 +-72.286659,41.721622,"DD [drivethru-yes] [wifi-yes]-Columbia,CT",221 Willimantic Rd, Columbia,CT,6237 +-72.05384,41.54304,"DD [drivethru-yes] [wifi-yes]-Norwich,CT",737 N Main Street, Norwich,CT,6360 +-72.458839,41.631447,"DD [drivethru-no] [wifi-yes]-Marlborough,CT",5 South Main St, Marlborough,CT,6447 +-73.568255,41.03249,"DD [drivethru-no] [wifi-yes]-Old Greenwich,CT",184 Sound Beach Ave, Old Greenwich,CT,6870 +-72.851064,41.433365,"DD [drivethru-no] [wifi-yes]-North Haven,CT",Wilbur Cross Pkwy S [CT Tpke Between Exits 64 &63], North Haven,CT,6473 +-73.55502,41.04813,"DD [drivethru-yes] [wifi-yes]-Stamford,CT",411 W Main Street, Stamford,CT,6902 +-73.49412,41.14677,"DD [drivethru-no] [wifi-yes]-New Canaan,CT",88 Elm Street, New Canaa,CT,6840 +-73.529343,41.051624,"DD [drivethru-no] [wifi-yes]-Stamford,CT",310 Elm St, Stamford,CT,6902 +-73.542,41.046486,"DD [drivethru-no] [wifi-yes]-Stamford,CT",30 Station Place, Stamford,CT,6901 +-72.961692,41.292276,"DD [drivethru-yes] [wifi-yes]-West Haven,CT",12 Boston Post Rd, West Haven,CT,6516 +-72.94898,41.25963,"DD [drivethru-no] [wifi-yes]-West Haven,CT",305 Captain Thomas Boulevard, West Haven,CT,6516 +-72.952354,41.275852,"DD [drivethru-no] [wifi-yes]-West Haven,CT",293 Elm St, West Haven,CT,6516 +-72.97572,41.26966,"DD [drivethru-no] [wifi-yes]-West Haven,CT",502 Saw Mill Road, West Haven,CT,6516 +-72.9785,41.28455,"DD [drivethru-yes] [wifi-yes]-West Haven,CT",985 Orange Avenue, West Haven,CT,6516 +-72.958206,41.269791,"DD [drivethru-yes] [wifi-yes]-West Haven,CT",528 Main St, West Haven,CT,6516 +-72.95792,41.2886,"DD [drivethru-yes] [wifi-no]-West Haven,CT",967 1st Avenue, West Haven,CT,6516 +-73.13887,41.332413,"DD [drivethru-no] [wifi-yes]-Shelton,CT",198 Leavenworth Rd, Shelton,CT,6484 +-73.133987,41.263779,"DD [drivethru-no] [wifi-no]-Shelton,CT",898 Bridgeport Ave [Stop & Shop], Shelton,CT,6484 +-73.125214,41.274166,"DD [drivethru-yes] [wifi-yes]-Shelton,CT",733 Bridgeport Ave, Shelton,CT,6484 +-73.120392,41.27652,"DD [drivethru-yes] [wifi-no]-Shelton,CT",18 Old Stratford Rd, Shelton,CT,6484 +-73.092873,41.317036,"DD [drivethru-no] [wifi-yes]-Shelton,CT",427 Howe Ave, Shelton,CT,6484 +-73.437004,41.101944,"DD [drivethru-no] [wifi-no]-Norwalk,CT",307 Connecticut Ave, Norwalk,CT,6854 +-73.476173,41.321838,"DD [drivethru-no] [wifi-yes]-Ridgefield,CT",603 Danbury Rd [Rt 7], Ridgefield,CT,6877 +-72.092743,41.547249,"DD [drivethru-no] [wifi-no]-Norwich,CT",60 Town St, Norwich,CT,6360 +-73.0654,41.39762,"DD [drivethru-no] [wifi-yes]-Seymour,CT",33 New Haven Road [Seybridge Plaza], Seymour,CT,6483 +-73.095879,41.204231,"DD [drivethru-yes] [wifi-yes]-Milford,CT",367 Bridgeport Ave, Milford,CT,6460 +-73.09247,41.40499,"DD [drivethru-no] [wifi-yes]-Oxford,CT",71 Oxford Road, Oxford,CT,6478 +-72.986755,41.602951,"DD [drivethru-no] [wifi-yes]-Wolcott,CT",747 Wolcott Rd, Wolcott,CT,6716 +-72.989394,41.591817,"DD [drivethru-yes] [wifi-yes]-Wolcott,CT",478 Wolcott Rd, Wolcott,CT,6716 +-72.957153,41.555405,"DD [drivethru-yes] [wifi-yes]-Wolcott,CT",1677 Meriden Rd, Wolcott,CT,6716 +-73.052872,41.232048,"DD [drivethru-yes] [wifi-yes]-Milford,CT",859 Boston Post Rd, Milford,CT,6460 +-73.02126,41.2373,"DD [drivethru-yes] [wifi-yes]-Milford,CT",214 Woodmont Road, Milford,CT,6460 +-73.02885,41.22542,"DD [drivethru-yes] [wifi-yes]-Milford,CT",594 New Haven Avenue, Milford,CT,6460 +-73.07278,41.22261,"DD [drivethru-yes] [wifi-yes]-Milford,CT",275 Boston Post Road, Milford,CT,6460 +-72.99731,41.22847,"DD [drivethru-yes] [wifi-yes]-Milford,CT",1353 New Haven Avenue, Milford,CT,6460 +-73.03535,41.23919,"DD [drivethru-yes] [wifi-yes]-Milford,CT",1338 Boston Post Road, Milford,CT,6460 +-73.058337,41.225917,"DD [drivethru-no] [wifi-yes]-Milford,CT",2 Connecticut Tpke W, Milford,CT,6460 +-73.057337,41.225017,"DD [drivethru-yes] [wifi-yes]-Milford,CT",1 Connecticut Tpke E, Milford,CT,6460 +-73.59613,41.03962,"DD/BR [drivethru-no] [wifi-yes]-Cos Cob,CT",375 E Putnam Avenue, Cos Cob,CT,6807 +-73.63578,41.02426,"DD [drivethru-no] [wifi-yes]-Greenwich,CT",271 W Putnam Avenue, Greenwich,CT,6830 +-72.933456,41.305634,"DD [drivethru-no] [wifi-yes]-New Haven,CT",51 York St, New Haven,CT,6511 +-73.40528,41.10652,"DD/BR [drivethru-yes] [wifi-yes]-Norwalk,CT",196 East Avenue, Norwalk,CT,6855 +-73.445,41.09752,"DD [drivethru-yes] [wifi-yes]-Norwalk,CT",544 Connecticut Avenue, Norwalk,CT,6854 +-73.40451,41.10424,"DD [drivethru-no] [wifi-no]-Norwalk,CT",219 East Avenue, Norwalk,CT,6855 +-73.422234,41.127277,"DD [drivethru-yes] [wifi-yes]-Norwalk,CT",195 Main St, Norwalk,CT,6851 +-73.425713,41.140732,"DD [drivethru-no] [wifi-no]-Norwalk,CT",380 Main Ave [Stop & Shop], Norwalk,CT,6851 +-73.38751,41.12689,"DD/BR [drivethru-yes] [wifi-yes]-Norwalk,CT",458 Westport Avenue, Norwalk,CT,6851 +-73.433754,41.127441,"DD [drivethru-no] [wifi-yes]-Norwalk,CT",99 New Canaan Ave, Norwalk,CT,6850 +-73.410526,41.0835,"DD [drivethru-no] [wifi-no]-Norwalk,CT",385 Connecticut Ave [Stop & Shop], Norwalk,CT,6854 +-73.008354,41.261341,"DD [drivethru-yes] [wifi-yes]-Orange,CT",377 Boston Post Rd, Orange,CT,6477 +-73.45125,41.41375,"DD [drivethru-yes] [wifi-yes]-Danbury,CT",1618 Hayestown Avenue, Danbury,CT,6811 +-73.4423,41.38724,"DD [drivethru-yes] [wifi-yes]-Danbury,CT",117 South Street, Danbury,CT,6810 +-73.383781,41.415046,"DD [drivethru-yes] [wifi-yes]-Bethel,CT",77 Stony Hill Rd, Bethel,CT,6801 +-73.42554,41.37725,"DD [drivethru-yes] [wifi-yes]-Bethel,CT",25 Grassy Plain Street, Bethel,CT,6801 +-73.43665,41.40703,"DD [drivethru-yes] [wifi-no]-Danbury,CT",2 Springside Avenue, Danbury,CT,6810 +-73.003052,41.265594,"DD [drivethru-no] [wifi-yes]-Orange,CT",297 Boston Post Rd, Orange,CT,6477 +-73.477158,41.378666,"DD [drivethru-no] [wifi-yes]-Danbury,CT",7 Backus Ave [Danbury Fair Mall], Danbury,CT,6810 +-73.41479,41.37125,"DD [drivethru-yes] [wifi-no]-Bethel,CT",203 Greenwood Avenue, Bethel,CT,6801 +-72.984077,41.280518,"DD [drivethru-yes] [wifi-no]-New Haven,CT",424 Boston Post Rd, New Haven,CT,6516 +-72.92352,41.3051,"DD [drivethru-no] [wifi-yes]-New Haven,CT",770 Chapel Street, New Haven,CT,6510 +-72.93692,41.285217,"DD [drivethru-yes] [wifi-yes]-New Haven,CT",255 Kimberly Ave, New Haven,CT,6519 +-72.922272,41.312061,"DD [drivethru-no] [wifi-yes]-New Haven,CT",54 Whitney Ave, New Haven,CT,6510 +-72.926094,41.305351,"DD [drivethru-no] [wifi-no]-New Haven,CT",81 Church St, New Haven,CT,6510 +-72.935326,41.338837,"DD [drivethru-yes] [wifi-yes]-Hamden,CT",940 Dixwell Ave, Hamden,CT,6514 +-72.91219,41.31403,"DD [drivethru-no] [wifi-yes]-New Haven,CT",889 State Street, New Haven,CT,6511 +-72.895058,41.307972,"DD [drivethru-no] [wifi-yes]-New Haven,CT",291 Ferry St, New Haven,CT,6513 +-73.41191,41.41155,"DD [drivethru-yes] [wifi-yes]-Danbury,CT",110 Newtown Road, Danbury,CT,6810 +-72.92085,41.29279,"DD [drivethru-no] [wifi-yes]-New Haven,CT",200 Sargent Drive, New Haven,CT,6511 +-73.40377,41.44689,"DD [drivethru-no] [wifi-yes]-Brookfield,CT",270 Federal Road, Brookfield,CT,6804 +-73.405639,41.441041,"DD [drivethru-yes] [wifi-yes]-Brookfield,CT",177 Federal Rd, Brookfield,CT,6804 +-73.409363,41.481049,"DD [drivethru-yes] [wifi-yes]-Brookfield,CT",782 Federal Rd, Brookfield,CT,6804 +-72.949883,41.310867,"DD [drivethru-yes] [wifi-no]-New Haven,CT",105 Derby Ave, New Haven,CT,6511 +-72.93307,41.29156,"DD [drivethru-no] [wifi-no]-New Haven,CT",16 Kimberly Avenue, New Haven,CT,6519 +-72.925591,41.298992,"DD [drivethru-no] [wifi-yes]-New Haven,CT",50 Union Ave [Union Rr Station], New Haven,CT,6519 +-72.92585,41.29892,"DD [drivethru-no] [wifi-yes]-New Haven,CT",50 Union Avenue, New Haven,CT,6519 +-73.41796,41.16519,"DD [drivethru-no] [wifi-yes]-Wilton,CT",35 Danbury Road, Wilton,CT,6897 +-73.000474,41.552601,"DD [drivethru-no] [wifi-no]-Waterbury,CT",570 Meriden Rd, Waterbury,CT,6705 +-73.04649,41.51659,"DD [drivethru-yes] [wifi-no]-Waterbury,CT",2714 S Main Street, Waterbury,CT,6706 +-73.046875,41.585991,"DD [drivethru-no] [wifi-no]-Waterbury,CT",79 Homer St, Waterbury,CT,6704 +-73.084404,41.530483,"DD [drivethru-no] [wifi-no]-Middlebury,CT",750 Straits Turnpike, Middlebury,CT,6795 +-72.98056,41.506523,"DD [drivethru-yes] [wifi-yes]-Prospect,CT",19 Waterbury Rd, Prospect,CT,6712 +-73.01474,41.54898,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",105 Meriden Road, Waterbury,CT,6705 +-73.006256,41.569199,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",1003 Wolcott St [Mobil Oil], Waterbury,CT,6705 +-73.033119,41.580933,"DD [drivethru-no] [wifi-no]-Waterbury,CT",240 Chase Ave [Stop & Shop], Waterbury,CT,6701 +-72.92719,41.30666,"DD [drivethru-no] [wifi-yes]-New Haven,CT",930 Chapel Street, New Haven,CT,6510 +-73.48267,41.46513,"DD [drivethru-yes] [wifi-yes]-New Fairfield,CT",74 State Route 37, New Fairfield,CT,6812 +-73.478405,41.387328,"DD [drivethru-no] [wifi-yes]-Danbury,CT",2 Mill Ridge Rd, Danbury,CT,6811 +-73.416504,41.407879,"DD [drivethru-yes] [wifi-yes]-Danbury,CT",82 Newtown Rd, Danbury,CT,6810 +-73.46502,41.39188,"DD [drivethru-yes] [wifi-no]-Danbury,CT",2 Lake Avenue, Danbury,CT,6810 +-73.45085,41.39793,"DD [drivethru-no] [wifi-yes]-Danbury,CT",101 White Street, Danbury,CT,6810 +-73.09288,41.36274,"DD [drivethru-yes] [wifi-yes]-Seymour,CT",814 Derby Avenue [Tri Town Plaza], Seymour,CT,6483 +-73.05725,41.31222,"DD [drivethru-yes] [wifi-yes]-Derby,CT",530 New Haven Ave [Orange Derby Shopping Ctr], Derby,CT,6418 +-73.079201,41.314468,"DD [drivethru-yes] [wifi-no]-Derby,CT",25 New Haven Ave, Derby,CT,6418 +-73.14344,41.36593,"DD [drivethru-yes] [wifi-yes]-Seymour,CT",354 Roosevelt Drive, Seymour,CT,6483 +-73.08365,41.33399,"DD [drivethru-yes] [wifi-yes]-Ansonia,CT",39 Pershing Drive, Ansonia,CT,6401 +-73.05785,41.48688,"DD [drivethru-no] [wifi-no]-Naugatuck,CT",2 Meadow Street, Naugatuck,CT,6770 +-73.027679,41.469212,"DD [drivethru-no] [wifi-no]-Naugatuck,CT",1100 New Haven Rd [Walmart], Naugatuck,CT,6770 +-73.053024,41.500977,"DD [drivethru-yes] [wifi-yes]-Naugatuck,CT",72 Bridge St, Naugatuck,CT,6770 +-73.023735,41.468529,"DD [drivethru-yes] [wifi-yes]-Naugatuck,CT",1182 New Haven Rd, Naugatuck,CT,6770 +-73.04999,41.48499,"DD [drivethru-no] [wifi-no]-Naugatuck,CT",282 S Main Street [Mobil Station], Naugatuck,CT,6770 +-72.953431,41.327731,"DD [drivethru-yes] [wifi-yes]-New Haven,CT",295 Blake St, New Haven,CT,6515 +-72.819473,41.489738,"DD [drivethru-yes] [wifi-yes]-Yalesville,CT",217 Main St [Rt 150], Yalesville,CT,6492 +-72.723343,41.696873,"DD [drivethru-no] [wifi-yes]-Newington,CT",1095 Main St, Newington,CT,6111 +-73.649109,41.016624,"DD [drivethru-no] [wifi-yes]-Greenwich,CT",623 W Putnam Ave, Greenwich,CT,6830 +-73.47099,41.07647,"DD [drivethru-no] [wifi-yes]-Darien,CT",967 Post Road, Darien,CT,6820 +-72.82121,41.54056,"DD [drivethru-yes] [wifi-yes]-Meriden,CT",490/528 West Main St, Meriden,CT,6450 +-72.79476,41.53434,"DD [drivethru-yes] [wifi-yes]-Meriden,CT",255 E Main Street, Meriden,CT,6450 +-72.89933,41.614258,"DD [drivethru-no] [wifi-no]-Southington,CT",956 West St, Southington,CT,6489 +-72.93371,41.30889,"DD [drivethru-no] [wifi-yes]-New Haven,CT",1179 Chapel Street, New Haven,CT,6511 +-72.875832,41.6115,"DD [drivethru-yes] [wifi-no]-Southington,CT",415 N Main St, Southington,CT,6489 +-73.008949,41.56451,"DD [drivethru-yes] [wifi-no]-Waterbury,CT",850 Wolcott Rd, Waterbury,CT,6705 +-72.996803,41.541561,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",2586 E Main St, Waterbury,CT,6705 +-73.03712,41.58268,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",398 Chase Avenue, Waterbury,CT,6704 +-73.104207,41.53762,"DD [drivethru-no] [wifi-no]-Middlebury,CT",489 Middlebury Rd, Middlebury,CT,6762 +-73.566864,41.104694,"DD [drivethru-no] [wifi-yes]-Stamford,CT",1051 Long Ridge Rd, Stamford,CT,6903 +-73.039085,41.552746,"DD [drivethru-yes] [wifi-no]-Waterbury,CT",21 Union St [Cumberland Farms], Waterbury,CT,6706 +-73.04346,41.54817,"DD [drivethru-no] [wifi-no]-Waterbury,CT",575 Bank Street [Home Depot], Waterbury,CT,6708 +-73.063946,41.552489,"DD [drivethru-no] [wifi-yes]-Waterbury,CT",1249 W Main St, Waterbury,CT,6708 +-73.184341,41.20105,"DD [drivethru-yes] [wifi-yes]-Bridgeport,CT",285 Boston Ave, Bridgeport,CT,6610 +-73.04068,41.554996,"DD [drivethru-no] [wifi-yes]-Waterbury,CT",63 Bank St, Waterbury,CT,6702 +-73.060272,41.566883,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",535 Watertown Ave, Waterbury,CT,6710 +-73.004789,41.537185,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",300 Kukas Ln, Waterbury,CT,6705 +-73.05434,41.56363,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",201 Thomaston Avenue, Waterbury,CT,6702 +-72.900383,41.3353,"DD [drivethru-yes] [wifi-yes]-Hamden,CT",1950 State St, Hamden,CT,6517 +-72.9437,41.3171,"DD [drivethru-yes] [wifi-yes]-New Haven,CT",323 Whalley Avenue, New Haven,CT,6511 +-73.441132,41.265518,"DD [drivethru-no] [wifi-yes]-Ridgefield,CT",15 Ethan Allen Hwy, Ridgefield,CT,6877 +-73.545516,41.05561,"DD [drivethru-no] [wifi-yes]-Stamford,CT",33 W Broad St, Stamford,CT,6902 +-73.15164,41.17202,"DD [drivethru-yes] [wifi-yes]-Stratford,CT",1150 Honeyspot Road, Stratford,CT,6615 +-72.817566,41.286057,"DD [drivethru-yes] [wifi-yes]-Branford,CT",112 N Main St, Branford,CT,6405 +-72.83637,41.27619,"DD [drivethru-yes] [wifi-yes]-Branford,CT",858 W Main Street, Branford,CT,6405 +-72.799339,41.28957,"DD [drivethru-yes] [wifi-yes]-Branford,CT",207 East Main St, Branford,CT,6405 +-72.78204,41.29523,"DD [drivethru-yes] [wifi-yes]-Branford,CT",364 E Main Street, Branford,CT,6405 +-72.78281,41.32811,"DD [drivethru-yes] [wifi-yes]-North Branford,CT",1199 Foxon Road, North Branford,CT,6471 +-72.79247,41.39059,"DD [drivethru-yes] [wifi-yes]-Northford,CT",847 Forest Road, Northford,CT,6472 +-73.12867,41.80035,"DD [drivethru-no] [wifi-no]-Torrington,CT",211 High St [Stop & Shop], Torrington,CT,6790 +-72.87434,41.27903,"DD [drivethru-yes] [wifi-yes]-East Haven,CT",320 Main Street, East Haven,CT,6512 +-72.87429,41.321201,"DD [drivethru-yes] [wifi-yes]-New Haven,CT",294 Foxon Blvd, New Haven,CT,6513 +-72.87244,41.267,"DD [drivethru-yes] [wifi-yes]-East Haven,CT",15 Hemingway Avenue, East Haven,CT,6512 +-72.853333,41.321945,"DD [drivethru-yes] [wifi-yes]-East Haven,CT",704 Foxon Rd, East Haven,CT,6513 +-72.89941,41.29443,"DD [drivethru-yes] [wifi-yes]-New Haven,CT",189 Forbes Rd, New Haven,CT,6512 +-72.84535,41.32358,"DD [drivethru-yes] [wifi-yes]-New Haven,CT",500 Foxon Road, New Haven,CT,6513 +-72.880684,41.287094,"DD [drivethru-yes] [wifi-yes]-East Haven,CT",91 Frontage Rd, East Haven,CT,6512 +-73.021233,41.540051,"DD [drivethru-yes] [wifi-yes]-Waterbury,CT",786 Hamilton Ave, Waterbury,CT,6706 +-72.68887,41.28763,"DD [drivethru-no] [wifi-yes]-Guilford,CT",1200 Boston Post Road, Guilford,CT,6437 +-72.66626,41.28866,"DD [drivethru-yes] [wifi-yes]-Guilford,CT",556 Boston Post Road, Guilford,CT,6437 +-72.702827,41.29615,"DD [drivethru-no] [wifi-no]-Guilford,CT",1675 Boston Post Rd, Guilford,CT,6437 +-72.680077,41.288315,"DD [drivethru-no] [wifi-no]-Guilford,CT",900 Boston Post Rd [Walmart], Guilford,CT,6437 +-73.219048,41.313854,"DD [drivethru-no] [wifi-yes]-Monroe,CT",447 Monroe Turnpike, Monroe,CT,6468 +-73.228477,41.278728,"DD [drivethru-no] [wifi-no]-Trumbull,CT",6546 Main St, Trumbull,CT,6611 +-73.216677,41.255522,"DD [drivethru-no] [wifi-no]-Trumbull,CT",100 Quality Street [Stop & Shop], Trumbull,CT,6611 +-72.117165,41.36729,"DD [drivethru-no] [wifi-no]-New London,CT",382 Vauxhall St, New London,CT,6320 +-73.496536,41.290524,"DD [drivethru-no] [wifi-yes]-Ridgefield,CT",52 Danbury Rd [Ste 105], Ridgefield,CT,6877 +-73.49289,41.2946,"DD [drivethru-no] [wifi-no]-Ridgefield,CT",125 Danbury Road [Stop & Shop], Ridgefield,CT,6877 +-73.108582,41.295647,"DD [drivethru-yes] [wifi-yes]-Shelton,CT",484 Bridgeport Ave, Shelton,CT,6484 +-72.97451,41.33197,"DD [drivethru-yes] [wifi-yes]-New Haven,CT",1350 Whalley Ave, New Haven,CT,6515 +-72.959541,41.326359,"DD [drivethru-no] [wifi-yes]-New Haven,CT",864 Whalley Ave, New Haven,CT,6515 +-72.971542,41.306072,"DD [drivethru-yes] [wifi-yes]-West Haven,CT",470 Derby Ave, West Haven,CT,6516 +-73.200439,41.17828,"DD [drivethru-no] [wifi-no]-Bridgeport,CT",600 Main St [Arena At Harbor Yard #118], Bridgeport,CT,6604 +-73.233704,41.166756,"DD [drivethru-no] [wifi-no]-Fairfield,CT",975 Kings Hwy, Fairfield,CT,6825 +-72.773572,41.527426,"DD [drivethru-yes] [wifi-yes]-Meriden,CT",893 E Main St, Meriden,CT,6450 +-72.80377,41.5501,"DD [drivethru-no] [wifi-no]-Meriden,CT",435 Lewis Avenue [Midstate Medical Ctr], Meriden,CT,6451 +-73.15067,41.23229,"DD [drivethru-no] [wifi-no]-Trumbull,CT",100 Hawley Lane, Trumbull,CT,6611 +-73.128273,41.170704,"DD [drivethru-yes] [wifi-yes]-Stratford,CT",60 Access Rd, Stratford,CT,6615 +-73.12986,41.19915,"DD [drivethru-yes] [wifi-yes]-Stratford,CT",880 Barnum Ave Cutoff, Stratford,CT,6497 +-73.129883,41.209126,"DD [drivethru-no] [wifi-yes]-Stratford,CT",3582 Main St, Stratford,CT,6614 +-73.14318,41.18122,"DD [drivethru-no] [wifi-no]-Stratford,CT",245 Honeyspot Road, Stratford,CT,6615 +-73.13556,41.1912,"DD [drivethru-no] [wifi-no]-Stratford,CT",1275 W Broad Street, Stratford,CT,6615 +-73.117516,41.202858,"DD [drivethru-no] [wifi-no]-Stratford,CT",200 East Main St [Stop & Shop], Stratford,CT,6614 +-73.10048,41.25345,"DD [drivethru-no] [wifi-yes]-Stratford,CT",7365 Main Street, Stratford,CT,6614 +-73.225466,41.229946,"DD [drivethru-no] [wifi-yes]-Trumbull,CT",5065 Main Street, Trumbull,CT,6611 +-73.16831,41.22251,"DD [drivethru-no] [wifi-yes]-Bridgeport,CT",1055 Huntington Turnpike, Bridgeport,CT,6610 +-73.213745,41.217117,"DD [drivethru-no] [wifi-no]-Bridgeport,CT",4150 Main St, Bridgeport,CT,6606 +-73.217949,41.221386,"DD [drivethru-no] [wifi-no]-Bridgeport,CT",4531 N Main St [Stop & Shop], Bridgeport,CT,6606 +-73.24828,41.18047,"DD [drivethru-no] [wifi-yes]-Fairfield,CT",1910 Black Rock Turnpike, Fairfield,CT,6825 +-73.191788,41.173927,"DD [drivethru-yes] [wifi-yes]-Bridgeport,CT",815 Lafayette Blvd, Bridgeport,CT,6604 +-73.563614,41.048714,"DD [drivethru-no] [wifi-yes]-Stamford,CT",2000 W Main St [Shoprite Ctr], Stamford,CT,6902 +-73.415527,41.572803,"DD [drivethru-no] [wifi-yes]-New Milford,CT",12 Danbury Rd, New Milford,CT,6776 +-73.56105,41.048878,"DD [drivethru-no] [wifi-yes]-Stamford,CT",979 Main St, Stamford,CT,6902 +-73.370117,41.122293,"DD [drivethru-no] [wifi-yes]-Westport,CT",23 Bridge Sq, Westport,CT,6880 +-73.187454,41.180195,"DD [drivethru-no] [wifi-no]-Bridgeport,CT",710 Water St [Bridgeport GBTA], Bridgeport,CT,6604 +-73.22354,41.16052,"DD [drivethru-yes] [wifi-yes]-Bridgeport,CT",2550 Fairfield Avenue, Bridgeport,CT,6605 +-73.189133,41.177597,"DD [drivethru-no] [wifi-yes]-Bridgeport,CT",979 Main St, Bridgeport,CT,6604 +-73.193802,41.195744,"DD [drivethru-no] [wifi-yes]-Bridgeport,CT",529 North Ave, Bridgeport,CT,6606 +-73.19608,41.17851,"DD [drivethru-yes] [wifi-yes]-Bridgeport,CT",280 Washington Avenue, Bridgeport,CT,6604 +-73.19981,41.19593,"DD [drivethru-yes] [wifi-yes]-Bridgeport,CT",2427 Main Street, Bridgeport,CT,6606 +-73.154457,41.19268,"DD [drivethru-yes] [wifi-yes]-Bridgeport,CT",2165 Boston Ave, Bridgeport,CT,6610 +-73.226639,41.176594,"DD [drivethru-no] [wifi-yes]-Fairfield,CT",200 Tunxis Hill Rd, Fairfield,CT,6432 +-73.534538,41.059437,"DD [drivethru-no] [wifi-yes]-Stamford,CT",135 Prospect St, Stamford,CT,6901 +-73.518234,41.094227,"DD [drivethru-no] [wifi-yes]-Stamford,CT",1044 Hope St, Stamford,CT,6907 +-73.539795,41.053341,"DD [drivethru-no] [wifi-yes]-Stamford,CT",450 Main St, Stamford,CT,6901 +-73.5479,41.10155,"DD [drivethru-no] [wifi-yes]-Stamford,CT",883 High Ridge Road, Stamford,CT,6905 +-73.291,41.13838,"DD/BR [drivethru-yes] [wifi-yes]-Southport,CT",3355 Post Road, Southport,CT,6890 +-72.76456,41.29707,"DD [drivethru-yes] [wifi-yes]-Branford,CT",33 Leetes Island Road, Branford,CT,6405 +-73.44942,41.09485,"DD [drivethru-no] [wifi-yes]-Norwalk,CT",680 Connecticut Ave [Walmart], Norwalk,CT,6854 +-73.415443,41.114223,"DD [drivethru-no] [wifi-yes]-Norwalk,CT",650 West Ave, Norwalk,CT,6850 +-72.887146,41.366226,"DD [drivethru-yes] [wifi-yes]-North Haven,CT",384 State St, North Haven,CT,6473 +-72.902367,41.414471,"DD [drivethru-no] [wifi-yes]-Hamden,CT",3300 Whitney Ave, Hamden,CT,6518 +-72.9233,41.36351,"DD [drivethru-no] [wifi-yes]-Hamden,CT",1900 Dixwell Avenue, Hamden,CT,6514 +-72.903465,41.494186,"DD [drivethru-no] [wifi-yes]-Cheshire,CT",310 South Main St, Cheshire,CT,6410 +-72.911972,41.50729,"DD [drivethru-no] [wifi-yes]-Cheshire,CT",461 West Main St, Cheshire,CT,6410 +-73.3031,41.4131,"DD [drivethru-no] [wifi-yes]-Newtown,CT",6 Queen Street, Newtown,CT,6470 +-72.83183,41.44085,"DD [drivethru-yes] [wifi-yes]-Wallingford,CT",682 S Colony Road, Wallingford,CT,6492 +-73.25347,41.30295,"DD/BR [drivethru-yes] [wifi-yes]-Monroe,CT",135 Main Street, Monroe,CT,6468 +-73.17614,41.380859,"DD [drivethru-yes] [wifi-yes]-Monroe,CT",230 Roosevelt Dr, Monroe,CT,6468 +-73.26254,41.33899,"DD [drivethru-yes] [wifi-yes]-Monroe,CT",695 Main Street, Monroe,CT,6468 +-72.81337,41.475651,"DD [drivethru-yes] [wifi-yes]-Wallingford,CT",694 N Colony Rd, Wallingford,CT,6492 +-72.809853,41.496841,"DD [drivethru-yes] [wifi-yes]-Wallingford,CT",1101 N Colony Rd, Wallingford,CT,6492 +-73.162888,41.464951,"DD [drivethru-no] [wifi-yes]-Southbury,CT",1450 Southford Rd, Southbury,CT,6488 +-73.211205,41.503902,"DD [drivethru-no] [wifi-yes]-Southbury,CT",999 Main St N, Southbury,CT,6488 +-73.213249,41.479919,"DD [drivethru-no] [wifi-yes]-Southbury,CT",77 Main St N [Playhouse Corner], Southbury,CT,6488 +-73.31059,41.1386,"DD [drivethru-no] [wifi-yes]-Westport,CT",1533 Post Road East, Westport,CT,6880 +-73.24543,41.14858,"DD [drivethru-no] [wifi-yes]-Fairfield,CT",593 Post Road, Fairfield,CT,6824 +-73.244217,41.150627,"DD [drivethru-no] [wifi-no]-Fairfield,CT",1160 Kings Hwy Cutoff [Stop & Shop], Fairfield,CT,6824 +-73.229624,41.165815,"DD [drivethru-no] [wifi-yes]-Fairfield,CT",4 Connecticut Tpke W, Fairfield,CT,6825 +-72.906212,41.47707,"DD [drivethru-yes] [wifi-yes]-Cheshire,CT",1041 South Main St, Cheshire,CT,6410 +-72.9168,41.37298,"DD [drivethru-no] [wifi-no]-Hamden,CT",2335 Dixwell Avenue [Stop & Shop], Hamden,CT,6514 +-72.55372,41.27426,"DD [drivethru-yes] [wifi-yes]-Madison,CT",1315 Boston Post Road, Madison,CT,6443 +-72.854652,41.396362,"DD [drivethru-yes] [wifi-yes]-North Haven,CT",136 Washington Ave, North Haven,CT,6473 +-72.87189,41.35682,"DD [drivethru-no] [wifi-yes]-North Haven,CT",411 Universal Drive, North Haven,CT,6473 +-72.807266,41.538017,"DD [drivethru-no] [wifi-yes]-Meriden,CT",132 W Main St, Meriden,CT,6451 +-72.8022,41.520187,"DD [drivethru-yes] [wifi-yes]-Meriden,CT",57 S Broad St, Meriden,CT,6450 +-72.766716,41.525894,"DD [drivethru-no] [wifi-no]-Meriden,CT",1107 E Main St, Meriden,CT,6450 +-72.860661,41.380666,"DD [drivethru-no] [wifi-yes]-North Haven,CT",16 Banton St [Northbound], North Haven,CT,6473 +-72.84687,41.404816,"DD [drivethru-yes] [wifi-yes]-North Haven,CT",319 Washington Ave, North Haven,CT,6473 +-72.84061,41.41675,"DD [drivethru-yes] [wifi-yes]-North Haven,CT",530 Washington Avenue, North Haven,CT,6473 +-72.93137,41.35101,"DD [drivethru-yes] [wifi-yes]-Hamden,CT",1399 Dixwell Avenue, Hamden,CT,6514 +-72.900467,41.387623,"DD [drivethru-yes] [wifi-yes]-Hamden,CT",2490 Whitney Ave, Hamden,CT,6518 +-73.344734,41.138607,"DD [drivethru-no] [wifi-yes]-Westport,CT",606 Post Rd, Westport,CT,6880 +-73.45928,41.40303,"DD [drivethru-yes] [wifi-yes]-Danbury,CT",407 Main Street, Danbury,CT,6810 +-77.057162,38.868993,"DD/BR [drivethru-no] [wifi-no]-Washington,DC",Shirley Memorial Hwy [Pentagon 2 locations], Washington,DC,20301 +-77.016663,38.910759,"DD [drivethru-no] [wifi-no]-Washington,DC",1 Aviation Cir [Reagan National Airport], Washington,DC,20001 +-77.03196,38.903837,"DD [drivethru-no] [wifi-no]-Washington,DC",1101 14th St NW [Ste 102], Washington,DC,20005 +-76.992599,38.872356,"DD [drivethru-no] [wifi-no]-Washington,DC",1335 10th St SE [Washington Navy Yard Bldg 184], Washington,DC,20374 +-77.031921,38.917128,"DD [drivethru-no] [wifi-yes]-Washington,DC",2001 14th St NW, Washington,DC,20009 +-77.013786,38.850655,"DD [drivethru-no] [wifi-no]-Washington,DC",Bolling Afb Bldg [1311 Chapple James Blvd], Washington,DC,20330 +-76.994919,38.88393,"DD/BR [drivethru-no] [wifi-yes]-Washington,DC",801 Pennsylvania Ave SE, Washington,DC,20003 +-76.971848,38.917599,"DD/BR [drivethru-yes] [wifi-yes]-Washington,DC",2420 New York Ave NE, Washington,DC,20002 +-77.0518439,38.9242172,"DD [drivethru-no] [wifi-no]-Washington,DC",2633 Connecticut Ave NW, Washington,DC,20008 +-77.020905,38.897442,"DD [drivethru-no] [wifi-yes]-Washington,DC",601 F St NW [Verizon Ctr Retail], Washington,DC,20004 +-77.031998,38.889511,"DD [drivethru-no] [wifi-no]-Washington,DC",200 McDill Blvd [Defense Intelligence Agency], Washington,DC,20340 +-77.017509,38.913654,"DD [drivethru-no] [wifi-no]-Washington,DC",1739 New Jersey Ave, Washington,DC,20001 +-77.032379,38.924877,"DD/BR [drivethru-yes] [wifi-yes]-Washington,DC",2750 14th St NW, Washington,DC,20009 +-75.666176,39.732273,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",1327 Mckennans Church Rd, Wilmington,DE,19808 +-75.610428,39.747765,"DD [drivethru-yes] [wifi-yes]-Wilmington,DE",1702 Faulkland Rd, Wilmington,DE,19805 +-75.663101,39.721004,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",4902 Kirkwood Hwy, Wilmington,DE,19808 +-75.642189,39.731831,"DD [drivethru-yes] [wifi-yes]-Wilmington,DE",3804 Kirkwood Hwy, Wilmington,DE,19808 +-75.598167,39.73933,"DD [drivethru-no] [wifi-no]-Elsmere,DE",1012 Kirkwood Hwy, Elsmere,DE,19805 +-75.612122,39.713402,"DD [drivethru-no] [wifi-yes]-Newport,DE",222 W Market St [Newport Shopping Ctr], Newport,DE,19804 +-75.199631,38.617439,"DD/BR [drivethru-yes] [wifi-yes]-Millsboro,DE",25938 John J Williams Hwy [Bay Shore Plaza], Millsboro,DE,19966 +-75.294044,38.583755,"DD/BR [drivethru-yes] [wifi-yes]-Millsboro,DE",200 E DuPont Hwy, Millsboro,DE,19966 +-75.557421,38.562624,"DD [drivethru-yes] [wifi-yes]-Laurel,DE",205 N Dual Hwy, Laurel,DE,19956 +-75.639053,39.623936,"DD [drivethru-no] [wifi-no]-New Castle,DE",906 S Dupont Hwy [BP], New Castle,DE,19720 +-75.666672,39.629276,"DD [drivethru-yes] [wifi-yes]-Bear,DE",1200 Pulaski Hwy, Bear,DE,19701 +-75.461441,39.799545,"DD [drivethru-yes] [wifi-yes]-Claymont,DE",3224 Philadelphia Pike, Claymont,DE,19703 +-75.502045,39.770054,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",701 Philadelphia Pike, Wilmington,DE,19809 +-75.750153,39.683144,"DD/BR [drivethru-no] [wifi-yes]-Newark,DE",51 E Main St, Newark,DE,19711 +-75.741806,39.713356,"DD [drivethru-no] [wifi-yes]-Newark,DE",556 Paper Mill Rd [Shoppes at Louviers], Newark,DE,19711 +-75.579834,39.66531,"DD [drivethru-no] [wifi-no]-New Castle,DE",905 E Bason Rd, New Castle,DE,19720 +-75.695816,39.668285,"DD [drivethru-no] [wifi-yes]-Newark,DE",30 Salem Church Rd [Unit 30 Salem Village Sq], Newark,DE,19713 +-75.711433,39.718548,"DD [drivethru-no] [wifi-yes]-Newark,DE",16 B Polly Drummond Hill Rd, Newark,DE,19711 +-75.713425,39.696205,"DD [drivethru-no] [wifi-yes]-Newark,DE",1126 Capitol Trl Ste D, Newark,DE,19711 +-75.652504,39.687386,"DD [drivethru-no] [wifi-yes]-Newark,DE",48 Geoffrey Dr, Newark,DE,19713 +-75.512718,39.156593,"DD [drivethru-yes] [wifi-yes]-Dover,DE",470 S Dupont Hwy, Dover,DE,19901 +-75.518647,39.157822,"DD [drivethru-no] [wifi-no]-Dover,DE",36 Jerome Dr [Walmart], Dover,DE,19901 +-75.542374,39.103214,"DD/BR [drivethru-yes] [wifi-yes]-Camden,DE",4080 Dupont Hwy, Camden,DE,19934 +-75.515411,39.163933,"DD [drivethru-no] [wifi-no]-Dover,DE",31 N Dupont Hwy [Hess], Dover,DE,19901 +-75.550545,39.158733,"DD [drivethru-yes] [wifi-yes]-Dover,DE",1230 Forrest Ave, Dover,DE,19904 +-75.517349,39.16832,"DD [drivethru-yes] [wifi-yes]-Dover,DE",206 N Dupont Hwy, Dover,DE,19901 +-75.607918,39.307037,"DD [drivethru-yes] [wifi-yes]-Smyrna,DE",349 N Dupont Blvd, Smyrna,DE,19977 +-75.563469,39.709839,"DD [drivethru-no] [wifi-yes]-New Castle,DE",4004 N Dupont Hwy, New Castle,DE,19720 +-75.551842,39.702091,"DD [drivethru-yes] [wifi-yes]-New Castle,DE",3031 New Castle Ave [Bowlerama], New Castle,DE,19720 +-75.582314,39.731163,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",301 N Maryland Ave, Wilmington,DE,19804 +-75.567146,39.755871,"DD [drivethru-no] [wifi-no]-Wilmington,DE",1901 Pennsylvania Ave, Wilmington,DE,19806 +-75.079629,38.721276,"DD/BR [drivethru-yes] [wifi-yes]-Rehoboth Beach,DE",123 RT 1 North, Rehoboth Beach,DE,19971 +-75.608805,38.64863,"DD [drivethru-yes] [wifi-yes]-Seaford,DE",500 Bridgeville Hwy, Seaford,DE,19973 +-75.055392,38.522476,"DD/BR [drivethru-no] [wifi-yes]-Bethany Beach,DE",33292 Coastal Hwy, Bethany Beach,DE,19930 +-75.489548,39.822903,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",1720 Naamans Rd, Wilmington,DE,19810 +-75.50531,39.80143,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",1730 Marsh Rd, Wilmington,DE,19810 +-75.547668,39.796757,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",2706 Concord Pike, Wilmington,DE,19803 +-75.690369,39.735363,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",4557 New Linden Hill Rd, Wilmington,DE,19808 +-75.584747,39.751152,"DD [drivethru-no] [wifi-yes]-Wilmington,DE",3001 Lancaster Ave, Wilmington,DE,19805 +-75.4319,38.929649,"DD [drivethru-no] [wifi-no]-Milford,DE",939 N Dupont Blvd [WalMart], Milford,DE,19963 +-75.566132,38.925446,"DD [drivethru-yes] [wifi-yes]-Harrington,DE",17065 S Dupont Hwy [Midway Park Shopping Center], Harrington,DE,19952 +-75.721291,39.466633,"DD [drivethru-yes] [wifi-yes]-Middletown,DE",5234 Summit Bridge Rd, Middletown,DE,19709 +-75.649544,39.493347,"DD [drivethru-yes] [wifi-yes]-Middletown,DE",2480 Dupont Hwy, Middletown,DE,19709 +-75.722832,39.44928,"DD [drivethru-no] [wifi-yes]-Middletown,DE",362 Main St, Middletown,DE,19709 +-75.682259,39.675838,"DD [drivethru-yes] [wifi-yes]-Newark,DE",4 Macintosh Plaza, Newark,DE,19713 +-75.750481,39.652691,"DD [drivethru-yes] [wifi-yes]-Newark,DE",1002 S College Ave, Newark,DE,19713 +-75.786209,39.656879,"DD [drivethru-no] [wifi-yes]-Newark,DE",1142 Elkton Rd, Newark,DE,19711 +-75.680008,39.686234,"DD [drivethru-no] [wifi-yes]-Newark,DE",4639 Ogletown Stanton Rd, Newark,DE,19702 +-75.587479,39.683208,"DD [drivethru-no] [wifi-no]-New Castle,DE",506 N Dupont Hwy [Hess], New Castle,DE,19720 +-75.584328,39.687534,"DD [drivethru-no] [wifi-yes]-New Castle,DE",1001 N Dupont Hwy, New Castle,DE,19720 +-75.623108,39.652588,"DD [drivethru-no] [wifi-no]-New Castle,DE",117 Wilton Blvd [Walmart], New Castle,DE,19720 +-75.592751,39.677364,"DD [drivethru-yes] [wifi-yes]-New Castle,DE",196 North Dupont Hwy, New Castle,DE,19720 +-75.615601,39.655724,"DD [drivethru-yes] [wifi-yes]-New Castle,DE",201 S Dupont Hwy, New Castle,DE,19720 +-75.748245,39.604355,"DD [drivethru-yes] [wifi-yes]-Newark,DE",2462 Pulaski Hwy, Newark,DE,19702 +-75.698219,39.789261,"DD [drivethru-no] [wifi-yes]-Hockessin,DE",7454 Lancaster Pike, Hockessin,DE,19707 +-75.080486,38.715979,"DD/BR [drivethru-no] [wifi-yes]-Rehoboth Beach,DE",146 Rehoboth Ave [Ste 2], Rehoboth Beach,DE,19971 +-75.710884,39.608948,"DD [drivethru-yes] [wifi-no]-Bear,DE",1923 Pulaski Hwy, Bear,DE,19701 +-75.591743,39.280571,"DD [drivethru-yes] [wifi-yes]-Smyrna,DE",150 Stadium St, Smyrna,DE,19977 +-82.392639,27.768235,"DD [drivethru-no] [wifi-yes]-Apollo Beach,FL",6190 N US Hwy 41, Apollo Beach,FL,33572 +-82.465646,27.443429,"DD [drivethru-yes] [wifi-no]-Bradenton,FL",7305 SR 70 East, Bradenton,FL,34203 +-81.668585,28.545802,"DD [drivethru-yes] [wifi-yes]-Clermont,FL",13670 Magnolia Point Blvd, Clermont,FL,34711 +-81.771429,26.436521,"DD [drivethru-no] [wifi-no]-Estero,FL",10860 Miromar Outlet Dr, Estero,FL,33928 +-80.144496,26.072522,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",200 Terminal Dr [3 locations] Fort Lauderdale Intl Airport, Fort Lauderdale,FL,33315 +-80.11447,26.100442,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",2300 SE 17th St [Hess], Fort Lauderdale,FL,33316 +-81.517566,30.287241,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",11657 Beach Blvd, Jacksonville,FL,32246 +-81.442463,30.287647,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",14190 Beach Blvd [Hess], Jacksonville,FL,32250 +-81.83,30.195957,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",9651 Argyle Forest Blvd [Hess], Jacksonville,FL,32222 +-82.649761,28.033835,"DD [drivethru-no] [wifi-no]-Oldsmar,FL",5010 Tampa Rd [Hess], Oldsmar,FL,34677 +-81.452557,28.611346,"DD [drivethru-no] [wifi-no]-Orlando,FL",5511 Clarcona Ocoee Rd [Hess], Orlando,FL,32810 +-80.409247,26.007481,"DD [drivethru-no] [wifi-no]-Pembroke Pines,FL",19600 Pines Blvd, Pembroke Pines,FL,33029 +-82.697925,28.280277,"DD [drivethru-no] [wifi-no]-Port Richey,FL",7046 Ridge Rd [Hess], Port Richey,FL,34668 +-82.551726,27.387012,"DD [drivethru-no] [wifi-no]-Sarasota,FL",6000 Airport Circle [Sarasota Bradenton], Sarasota,FL,34243 +-82.488792,28.476933,"DD [drivethru-no] [wifi-no]-Spring Hill,FL",14314 Spring Hill Dr, Spring Hill,FL,34609 +-82.503956,28.051579,"DD [drivethru-no] [wifi-no]-Tampa,FL",11303 N Dale Mabry Hwy [Shell], Tampa,FL,33618 +-82.426304,28.068501,"DD [drivethru-no] [wifi-no]-Tampa,FL",13430 Bruce B Downs Blvd, Tampa,FL,33612 +-82.401965,27.922905,"DD [drivethru-yes] [wifi-no]-Tampa,FL",2801 S 50th St, Tampa,FL,33619 +-82.347927,28.236536,"DD [drivethru-no] [wifi-no]-Wesley Chapel,FL",28232 US Rt 54 [Hess], Wesley Chapel,FL,33543 +-82.187925,28.252512,"DD [drivethru-yes] [wifi-yes]-Zephyrhills,FL",6512 Gall Blvd, Zephyrhills,FL,33542 +-82.638517,27.783002,"DD [drivethru-yes] [wifi-no]-Saint Petersburg,FL",1046 4th St N, Saint Petersburg,FL,33701 +-80.223946,26.252977,"DD [drivethru-no] [wifi-yes]-Margate,FL",7300 Royal Palm Blvd, Margate,FL,33063 +-80.242119,26.009523,"DD [drivethru-no] [wifi-no]-Pembroke Pines,FL",7721 Hollywood Blvd [Hess], Pembroke Pines,FL,33024 +-80.20458,26.22621,"DD/BR [drivethru-yes] [wifi-yes]-Margate,FL",399 S State Road 7, Margate,FL,33068 +-80.15395,26.27437,"DD [drivethru-yes] [wifi-yes]-Pompano Beach,FL",2250 W Sample Road, Pompano Beach,FL,33073 +-80.19521,26.2346,"DD/BR [drivethru-yes] [wifi-yes]-Margate,FL",5000 W Atlantic Boulevard, Margate,FL,33063 +-80.156319,26.212868,"DD [drivethru-no] [wifi-yes]-Pompano Beach,FL",1405 S Powerline Rd, Pompano Beach,FL,33069 +-80.199463,26.274046,"DD [drivethru-yes] [wifi-yes]-Margate,FL",5610 W Sample Rd, Margate,FL,33073 +-80.20133,26.24578,"DD [drivethru-no] [wifi-yes]-Margate,FL",1456 N State Road 7, Margate,FL,33063 +-80.151751,26.259245,"DD [drivethru-no] [wifi-no]-Pompano Beach,FL",2350 N Powerline Rd [Hess], Pompano Beach,FL,33069 +-80.16076,26.2311,"DD/BR [drivethru-no] [wifi-yes]-Pompano Beach,FL",2768 W Atlantic Boulevard, Pompano Beach,FL,33069 +-80.210317,25.984349,"DD [drivethru-yes] [wifi-yes]-Miramar,FL",6190 Miramar Pkwy, Miramar,FL,33023 +-80.22852,26.02435,"DD/BR [drivethru-yes] [wifi-yes]-Hollywood,FL",7003 Taft Street, Hollywood,FL,33024 +-80.157974,26.18819,"DD [drivethru-yes] [wifi-yes]-Fort Lauderdale,FL",1070 W Commercial Blvd, Fort Lauderdale,FL,33309 +-80.27851,26.064092,"DD [drivethru-no] [wifi-yes]-Cooper City,FL",9740 Griffin Rd, Cooper City,FL,33328 +-80.229159,26.086136,"DD [drivethru-yes] [wifi-yes]-Davie,FL",2895 Davie Rd, Davie,FL,33314 +-80.18053,26.04758,"DD [drivethru-no] [wifi-yes]-Hollywood,FL",6800 Stirling Road, Hollywood,FL,33312 +-80.251999,26.180162,"DD [drivethru-yes] [wifi-no]-Lauderhill,FL",4499 N University Dr, Lauderhill,FL,33351 +-80.143524,26.04262,"DD [drivethru-yes] [wifi-yes]-Dania,FL",550 S Federal Hwy, Dania,FL,33004 +-80.265816,26.25741,"DD [drivethru-no] [wifi-yes]-Coral Springs,FL",2290 Coral Springs Dr, Coral Springs,FL,33071 +-80.27883,26.30429,"DD [drivethru-no] [wifi-no]-Coral Springs,FL",5930 Coral Ridge Drive, Coral Springs,FL,33076 +-80.096191,26.195799,"DD/BR [drivethru-no] [wifi-yes]-Lauderdale By The Sea,FL",4721 N Ocean Dr, Lauderdale By The Sea,FL,33308 +-80.1029,26.232023,"DD [drivethru-yes] [wifi-no]-Pompano Beach,FL",1 N Federal Hwy, Pompano Beach,FL,33062 +-80.09798,26.27218,"DD [drivethru-yes] [wifi-yes]-Pompano Beach,FL",3301 N Federal Highway, Pompano Beach,FL,33064 +-80.115562,26.188017,"DD [drivethru-yes] [wifi-yes]-Fort Lauderdale,FL",4840 N Federal Hwy, Fort Lauderdale,FL,33308 +-80.13691,26.1023,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",1579 South Federal Highway, Fort Lauderdale,FL,33316 +-80.235275,26.286976,"DD [drivethru-yes] [wifi-yes]-Coral Springs,FL",8175 Wiles Rd, Coral Springs,FL,33067 +-80.252403,26.298157,"DD [drivethru-yes] [wifi-no]-Coral Springs,FL",9515 Westview Dr, Coral Springs,FL,33065 +-80.201778,26.280801,"DD [drivethru-no] [wifi-no]-Coral Springs,FL",4150 N State Road 7 [Hess], Coral Springs,FL,33073 +-80.22981,26.27208,"DD [drivethru-no] [wifi-yes]-Margate,FL",7804 W Sample Road, Margate,FL,33065 +-80.283198,26.153003,"DD [drivethru-yes] [wifi-yes]-Sunrise,FL",10019 Sunset Strip, Sunrise,FL,33322 +-80.240738,26.165136,"DD [drivethru-yes] [wifi-yes]-Lauderhill,FL",7125 W Oakland Park Blvd, Lauderhill,FL,33313 +-80.203369,26.185551,"DD [drivethru-no] [wifi-yes]-Tamarac,FL",4900 N State Rd 7, Tamarac,FL,33319 +-80.25159,26.20823,"DD [drivethru-yes] [wifi-no]-Tamarac,FL",7450 W McNab Road, Tamarac,FL,33321 +-80.12651,26.31791,"DD [drivethru-yes] [wifi-yes]-Deerfield Beach,FL",1724 Hillsboro Boulevard, Deerfield Beach,FL,33442 +-80.221535,26.227947,"DD [drivethru-no] [wifi-yes]-Pompano Beach,FL",7114 Southgate Blvd, Pompano Beach,FL,33068 +-80.220772,26.208675,"DD/BR [drivethru-no] [wifi-yes]-North Lauderdale,FL",7135 W McNab Rd, North Lauderdale,FL,33068 +-80.252647,26.228289,"DD [drivethru-no] [wifi-no]-Tamarac,FL",8550 N University Dr [Hess], Tamarac,FL,33321 +-80.286072,26.193945,"DD [drivethru-yes] [wifi-no]-Sunrise,FL",10201 W Commercial Blvd, Sunrise,FL,33351 +-80.23491,26.13587,"DD/BR [drivethru-no] [wifi-yes]-Plantation,FL",6299 W Sunrise Boulevard [# 101], Plantation,FL,33313 +-80.36232,26.06584,"DD [drivethru-no] [wifi-yes]-Davie,FL",4426 Weston Road, Davie,FL,33331 +-80.145015,26.07057,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",250 Terminal Dr [2 locations] Fort Lauderdale Intl Airport, Fort Lauderdale,FL,33315 +-80.152672,26.302745,"DD [drivethru-yes] [wifi-yes]-Deerfield Beach,FL",1101 S Powerline Rd, Deerfield Beach,FL,33442 +-80.093425,26.305171,"DD [drivethru-yes] [wifi-yes]-Deerfield Beach,FL",811 SE 10th St, Deerfield Beach,FL,33441 +-80.208008,26.059929,"DD [drivethru-no] [wifi-yes]-Davie,FL",5021 South State Rd 7, Davie,FL,33314 +-80.26234,26.16749,"DD [drivethru-no] [wifi-yes]-Sunrise,FL",8434 West Oakland Park Boulevard, Sunrise,FL,33351 +-80.248833,26.193565,"DD/BR [drivethru-yes] [wifi-yes]-Lauderhill,FL",7340 W Commercial Blvd, Lauderhill,FL,33319 +-80.29784,26.1681,"DD [drivethru-yes] [wifi-yes]-Sunrise,FL",11170 West Oakland Park Boulevard, Sunrise,FL,33351 +-80.099213,26.175476,"DD [drivethru-no] [wifi-yes]-Fort Lauderdale,FL",3904 N Ocean Blvd, Fort Lauderdale,FL,33308 +-80.14677,26.16645,"DD [drivethru-no] [wifi-yes]-Wilton Manors,FL",50 W Oakland Park Boulevard, Wilton Manors ,FL,33311 +-80.1188,26.15236,"DD/BR [drivethru-no] [wifi-yes]-Fort Lauderdale,FL",1900 N Federal Highway, Fort Lauderdale,FL,33305 +-80.13205,26.159698,"DD [drivethru-no] [wifi-yes]-Wilton Manors,FL",2609 N Dixie Hwy, Wilton Manors,FL,33305 +-80.272649,26.10402,"DD [drivethru-no] [wifi-yes]-Davie,FL",9170 W State Rd 84, Davie,FL,33324 +-80.12771,26.13736,"DD/BR [drivethru-yes] [wifi-yes]-Fort Lauderdale,FL",1601 E Sunrise Boulevard, Fort Lauderdale,FL,33304 +-80.13657,26.18878,"DD [drivethru-no] [wifi-yes]-Oakland Park,FL",801 E Commercial Boulevard, Oakland Park,FL,33334 +-80.17521,26.18817,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",2395 W Commercial Boulevard, Fort Lauderdale,FL,33309 +-81.656845,28.805689,"DD/BR [drivethru-no] [wifi-yes]-Oakland Park,FL",1801 W Oakland Park Blvd, Oakland Park,FL,33311 +-80.1524,26.3178,"DD [drivethru-no] [wifi-yes]-Deerfield Beach,FL",3390 W Hillsboro Boulevard, Deerfield Beach,FL,33442 +-80.152962,26.092695,"DD [drivethru-yes] [wifi-yes]-Fort Lauderdale,FL",901 W State Rd 84, Fort Lauderdale,FL,33315 +-80.160736,26.121725,"DD [drivethru-yes] [wifi-yes]-Fort Lauderdale,FL",1450 W Broward Blvd, Fort Lauderdale,FL,33312 +-80.142654,25.988131,"DD [drivethru-no] [wifi-yes]-Hallandale,FL",201 N Federal Hwy, Hallandale,FL,33009 +-80.159157,25.985006,"DD/BR [drivethru-yes] [wifi-yes]-Hallandale Beach,FL",825 W Hallandale Beach Blvd, Hallandale Beach,FL,33009 +-80.32197,26.11606,"DD [drivethru-yes] [wifi-yes]-Davie,FL",13190 West State Road 84, Davie,FL,33325 +-80.307693,26.007517,"DD [drivethru-no] [wifi-no]-Pembroke Pines,FL",11970 Pines Blvd, Pembroke Pines,FL,33026 +-80.276772,26.008524,"DD [drivethru-yes] [wifi-yes]-Pembroke Pines,FL",9901 Pines Blvd, Pembroke Pines,FL,33024 +-80.24872,26.02659,"DD [drivethru-no] [wifi-yes]-Pembroke Pines,FL",2060 N University Drive, Pembroke Pines,FL,33024 +-80.26584,25.99404,"DD [drivethru-no] [wifi-yes]-Pembroke Pines,FL",9121 Pembroke Road, Pembroke Pines,FL,33025 +-80.338898,25.978886,"DD/BR [drivethru-no] [wifi-yes]-Miramar,FL",14305 Miramar Pkwy, Miramar,FL,33027 +-80.38183,26.00754,"DD [drivethru-yes] [wifi-no]-Pembroke Pines,FL",17720 Pines Boulevard, Pembroke Pines,FL,33029 +-80.134834,26.300632,"DD [drivethru-yes] [wifi-yes]-Deerfield Beach,FL",1305 S Military Trail, Deerfield Beach,FL,33442 +-80.18714,26.31746,"DD/BR [drivethru-no] [wifi-yes]-Coconut Creek,FL",4660 W Hillsboro Boulevard [# 1], Coconut Creek,FL,33073 +-80.251495,26.092445,"DD/BR [drivethru-no] [wifi-yes]-Davie,FL",2321 S University Dr, Davie,FL,33324 +-80.201897,26.308517,"DD [drivethru-no] [wifi-yes]-Coconut Creek,FL",6502 N State Rd 7, Coconut Creek,FL,33073 +-80.142932,26.072566,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",175 West Terminal Dr [2 Locations] Terminal 2 Post Security, Fort Lauderdale,FL,33315 +-80.312241,26.029688,"DD/BR [drivethru-yes] [wifi-yes]-Cooper City,FL",12397 Sheridan St, Cooper City,FL,33026 +-80.36161,26.120981,"DD [drivethru-no] [wifi-yes]-Sunrise,FL",100 Weston Rd, Sunrise,FL,33326 +-80.138424,26.072566,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",100 Terminal Dr Fort Lauderdale Intl Airport, Fort Lauderdale,FL,33315 +-80.263222,26.129208,"DD [drivethru-no] [wifi-no]-Plantation,FL",560 N Pine Island Rd, Plantation,FL,33324 +-80.25429,26.14866,"DD [drivethru-no] [wifi-yes]-Plantation,FL",7823 W Sunrise Boulevard, Plantation,FL,33322 +-80.31367,26.06548,"DD [drivethru-no] [wifi-yes]-Davie,FL",4401 S Flamingo Road # 106, Davie,FL,33330 +-80.253563,26.24457,"DD [drivethru-no] [wifi-yes]-Coral Springs,FL",1146 N University Dr, Coral Springs,FL,33071 +-80.20206,26.28722,"DD [drivethru-yes] [wifi-no]-Coral Springs,FL",4685 N State Road 7, Coral Springs,FL,33073 +-80.20219,26.12544,"DD [drivethru-no] [wifi-no]-Plantation,FL",377 N State Road 7 [# 103], Plantation,FL,33317 +-80.189201,26.104877,"DD [drivethru-yes] [wifi-no]-Fort Lauderdale,FL",3280 Davie Blvd, Fort Lauderdale,FL,33312 +-80.252159,26.056364,"DD [drivethru-yes] [wifi-yes]-Davie,FL",5141 S University Dr, Davie,FL,33328 +-80.207932,26.014427,"DD [drivethru-yes] [wifi-yes]-Hollywood,FL",516 N 60th Ave, Hollywood,FL,33021 +-80.29302,26.23307,"DD [drivethru-no] [wifi-no]-Coral Springs,FL",12432 W Atlantic Boulevard, Coral Springs,FL,33071 +-82.548935,27.35935,"DD [drivethru-yes] [wifi-no]-Sarasota,FL",2525 N Tamiami Trl, Sarasota,FL,34234 +-81.781517,26.43152,"DD [drivethru-no] [wifi-yes]-Estero,FL",10351 Corkscrew Blvd, Estero,FL,33928 +-82.4491,27.2693,"DD [drivethru-yes] [wifi-yes]-Sarasota,FL",5641 Clark Road, Sarasota,FL,34233 +-82.559517,27.389893,"DD [drivethru-yes] [wifi-yes]-Sarasota,FL",8445 Tamiami Trail, Sarasota,FL,34231 +-82.48232,27.49266,"DD [drivethru-yes] [wifi-yes]-Bradenton,FL",812 62nd Street Circle East, Bradenton,FL,34208 +-82.081798,26.969145,"DD [drivethru-yes] [wifi-yes]-Port Charlotte,FL",4233 Tamiami Trl, Port Charlotte,FL,33952 +-82.396373,27.432102,"DD [drivethru-yes] [wifi-yes]-Bradenton,FL",14405 SR 70 E [Unit 101], Bradenton,FL,34202 +-82.432671,27.485134,"DD [drivethru-no] [wifi-no]-Bradenton,FL",11002 E SR 64 [Hess], Bradenton,FL,34212 +-82.575527,27.422316,"DD [drivethru-no] [wifi-no]-Bradenton,FL",6706 14th St W [Hess], Bradenton,FL,34207 +-82.557875,27.521295,"DD/BR [drivethru-no] [wifi-no]-Palmetto,FL",612 10th St E, Palmetto,FL,34221 +-82.1011,26.98547,"DD [drivethru-no] [wifi-no]-Port Charlotte,FL",3190 Tamiami Trail, Port Charlotte,FL,33952 +-82.16629,27.01817,"DD [drivethru-no] [wifi-no]-Port Charlotte,FL",829 Tamiami Trail, Port Charlotte,FL,33953 +-82.05118,27.01647,"DD [drivethru-no] [wifi-no]-Punta Gorda,FL",900 Kings Highway, Punta Gorda,FL,33980 +-82.04649,26.9151,"DD/BR [drivethru-yes] [wifi-yes]-Punta Gorda,FL",2517 Tamiami Trail [Unit A], Punta Gorda,FL,33950 +-82.4198,27.067154,"DD/BR [drivethru-yes] [wifi-no]-Venice,FL",1801 Tamiami Trail S, Venice,FL,34293 +-82.438662,27.107078,"DD [drivethru-yes] [wifi-yes]-Venice,FL",563 US Hwy 41 Byp, Venice,FL,34285 +-82.459845,27.140596,"DD [drivethru-no] [wifi-no]-Nokomis,FL",1241 Tamiami Trl N [Hess], Nokomis,FL,34275 +-82.31899,26.93448,"DD [drivethru-yes] [wifi-yes]-Englewood,FL",2495 S McCall Road, Englewood,FL,34224 +-81.437785,27.467689,"DD [drivethru-yes] [wifi-yes]-Sebring,FL",3504 US Hwy 27 S, Sebring,FL,33870 +-81.808058,26.492747,"DD [drivethru-no] [wifi-yes]-Fort Myers,FL",8902 Alico Rd, Fort Myers,FL,33912 +-82.225767,27.040419,"DD [drivethru-no] [wifi-no]-North Port,FL",14807 Tamiami Trl [Hess], North Port,FL,34287 +-82.454079,27.338324,"DD/BR [drivethru-yes] [wifi-yes]-Sarasota,FL",5871 Fruitville Rd, Sarasota,FL,34232 +-82.45389,27.299111,"DD [drivethru-no] [wifi-yes]-Sarasota,FL",5761 Bee Ridge Rd, Sarasota,FL,34233 +-82.51212,27.38904,"DD [drivethru-no] [wifi-no]-Sarasota,FL",2885 University Parkway [Hess], Sarasota,FL,34243 +-82.530815,27.338968,"DD [drivethru-no] [wifi-yes]-Sarasota,FL",300 Washington Blvd N, Sarasota,FL,34236 +-82.121498,27.017805,"DD [drivethru-no] [wifi-no]-Port Charlotte,FL",20101 Peachland Blvd [Pik N Run Plaza], Port Charlotte,FL,33954 +-82.575374,27.448468,"DD [drivethru-yes] [wifi-no]-Bradenton,FL",5235 14th St W, Bradenton,FL,34207 +-82.708748,27.982471,"DD [drivethru-no] [wifi-no]-Safety Harbor,FL",1625 North McMullen Booth [Hess], Safety Harbor,FL,33759 +-82.780272,28.049618,"DD [drivethru-yes] [wifi-yes]-Dunedin,FL",2600 Bayshore Blvd, Dunedin,FL,34698 +-81.558016,30.26559,"DD/BR [drivethru-yes] [wifi-yes]-Jacksonville,FL",4419 Southside Blvd, Jacksonville,FL,32216 +-81.7639,30.26994,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",7169 Wilson Boulevard [Hess], Jacksonville,FL,32210 +-81.391022,30.01174,"DD [drivethru-yes] [wifi-yes]-Saint Augustine,FL",7440 US 1 N [Ste 100], Saint Augustine,FL,32095 +-81.391189,30.011657,"DD [drivethru-yes] [wifi-yes]-Saint Augustine,FL",7440 US 1 N, Saint Augustine,FL,32095 +-81.405948,29.916216,"DD [drivethru-yes] [wifi-yes]-Saint Augustine,FL",2274 State Road 16, Saint Augustine,FL,32084 +-81.32022,29.90109,"DD [drivethru-yes] [wifi-yes]-Saint Augustine,FL",1001 Ponce De Leon Boulevard, Saint Augustine,FL,32084 +-81.319943,29.908836,"DD [drivethru-no] [wifi-yes]-Saint Augustine,FL",171 San Marco Ave, Saint Augustine,FL,32084 +-81.32293,29.850597,"DD [drivethru-no] [wifi-no]-Saint Augustine,FL",2505 US 1 S [Hess], Saint Augustine,FL,32086 +-81.824295,30.194525,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",116 Oakleaf Village Pkwy [Unit 0001], Jacksonville,FL,32244 +-81.76739,30.24821,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",7328 103rd Street, Jacksonville,FL,32210 +-81.676041,30.386759,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",7403 Lem Turner Rd [Hess], Jacksonville,FL,32206 +-81.662918,30.429783,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",1052 Dunn Ave [Hess], Jacksonville,FL,32218 +-81.55009,30.35248,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",9094 Merrill Road [Hess], Jacksonville,FL,32225 +-81.581069,30.351995,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",6999 Merrill Rd [Ste 1], Jacksonville,FL,32277 +-81.647309,30.4819,"DD [drivethru-no] [wifi-yes]-Jacksonville,FL",1084 Airport Rd [Ste A], Jacksonville,FL,32218 +-81.614784,30.267878,"DD/BR [drivethru-yes] [wifi-yes]-Jacksonville,FL",5150 University Blvd W, Jacksonville,FL,32216 +-81.789741,30.28972,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",8346 Normandy Blvd [Hess], Jacksonville,FL,32221 +-81.783417,30.313665,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",8079 Ramona Blvd W [Hess], Jacksonville,FL,32221 +-81.552818,30.220703,"DD [drivethru-no] [wifi-yes]-Jacksonville,FL",9978 Old Baymeadows Rd [Ste 5], Jacksonville,FL,32256 +-81.530724,30.323811,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",10379 Atlantic Blvd, Jacksonville,FL,32225 +-81.679405,29.991871,"DD [drivethru-no] [wifi-no]-Green Cove Springs,FL",1010 SR 16 [Hess], Green Cove Springs,FL,32043 +-81.461708,30.633062,"DD [drivethru-no] [wifi-no]-Fernandina Beach,FL",3100 S 8th St [Hess], Fernandina Beach,FL,32034 +-81.603355,30.331343,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",1066 University Blvd N [Hess], Jacksonville,FL,32211 +-81.650848,30.282087,"DD/BR [drivethru-yes] [wifi-yes]-Jacksonville,FL",3929 Hendricks Ave, Jacksonville,FL,32207 +-81.62016,30.30776,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",4324 Atlantic Boulevard [Hess], Jacksonville,FL,32207 +-81.609734,30.294992,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",5405 Beach Blvd [Hess], Jacksonville,FL,32207 +-81.72349,30.28217,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",4586 San Juan Avenue [Hess], Jacksonville,FL,32210 +-81.73068,30.31431,"DD/BR [drivethru-yes] [wifi-no]-Jacksonville,FL",741 Cassat Avenue, Jacksonville,FL,32205 +-81.69712,30.246258,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",5555 Roosevelt Blvd, Jacksonville,FL,32244 +-81.75528,30.28497,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",1879 Lane Avenue South [Hess], Jacksonville,FL,32210 +-81.514038,30.059911,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",2225 County Road 210 W, Jacksonville,FL,32259 +-81.737129,30.218924,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",7106 Blanding Blvd [Hess], Jacksonville,FL,32210 +-81.74827,30.15452,"DD [drivethru-yes] [wifi-yes]-Orange Park,FL",373 Blanding Boulevard, Orange Park,FL,32073 +-81.518227,30.179119,"DD/BR [drivethru-yes] [wifi-yes]-Jacksonville,FL",7171 Phillips Hwy, Jacksonville,FL,32256 +-81.62821,30.09208,"DD [drivethru-no] [wifi-no]-Fruit Cove,FL",401 Roberts Road [Hess], Fruit Cove,FL,32259 +-81.706268,30.023457,"DD [drivethru-no] [wifi-no]-Green Cove Springs,FL",3254 Hwy 17 [Hess], Green Cove Springs,FL,32043 +-81.811453,30.115194,"DD [drivethru-no] [wifi-no]-Middleburg,FL",1545 Blanding Blvd [Hess], Middleburg,FL,32068 +-81.613985,30.205717,"DD [drivethru-yes] [wifi-yes]-Jacksonville,FL",3930 Sunbeam Rd, Jacksonville,FL,32257 +-81.63251,30.14742,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",12245 San Jose Boulevard [Hess], Jacksonville,FL,32223 +-81.403669,30.288354,"DD [drivethru-no] [wifi-yes]-Jacksonville Beach,FL",1325 Beach Blvd, Jacksonville Beach,FL,32250 +-81.413562,30.345496,"DD [drivethru-yes] [wifi-no]-Atlantic Beach,FL",2158 Mayport Rd [Ste 1], Atlantic Beach,FL,32233 +-81.407261,30.324732,"DD/BR [drivethru-yes] [wifi-yes]-Atlantic Beach,FL",719 Atlantic Blvd, Atlantic Beach,FL,32233 +-81.54174,30.05609,"DD [drivethru-no] [wifi-no]-Saint Augustine,FL",150 Hampton Point Drive [Hess], Saint Augustine,FL,32092 +-81.459793,30.287891,"DD [drivethru-no] [wifi-no]-Jacksonville,FL",13637 Beach Blvd [Hess], Jacksonville,FL,32224 +-81.81254,27.550075,"DD [drivethru-no] [wifi-no]-Wauchula,FL",101 W Oak St [Hess], Wauchula,FL,33873 +-81.860224,27.211658,"DD [drivethru-no] [wifi-no]-Arcadia,FL",201 S Brevard Ave [Hess], Arcadia,FL,34266 +-81.788525,28.058785,"DD/BR [drivethru-yes] [wifi-no]-Auburndale,FL",501 Magnolia Ave, Auburndale,FL,33823 +-81.555809,27.89397,"DD [drivethru-no] [wifi-no]-Lake Wales,FL",2000 SR 60 E [Walmart], Lake Wales,FL,33898 +-81.973983,28.115847,"DD/BR [drivethru-yes] [wifi-yes]-Lakeland,FL",5614 US Hwy 98 N, Lakeland,FL,33809 +-81.95702,28.00752,"DD [drivethru-yes] [wifi-yes]-Lakeland,FL",3110 South Florida Ave, Lakeland,FL,33803 +-81.927704,28.026651,"DD [drivethru-yes] [wifi-yes]-Lakeland,FL",1111 Bartow Rd [US Hwy 98 S], Lakeland,FL,33801 +-81.514507,27.597495,"DD [drivethru-yes] [wifi-yes]-Avon Park,FL",201 US Hwy 27 N, Avon Park,FL,33825 +-81.973373,27.942497,"DD [drivethru-no] [wifi-no]-Lakeland,FL",6808 S Florida Ave [Hess], Lakeland,FL,33813 +-81.63966,28.15924,"DD [drivethru-no] [wifi-no]-Davenport,FL",38219 Highway 27, Davenport,FL,33837 +-80.8297487,27.19828,"DD [drivethru-yes] [wifi-yes]-Okeechobee,FL",4993 US Hwy 441 S, Okeechobee,FL,34974 +-81.73083,28.0064,"DD/BR [drivethru-yes] [wifi-yes]-Winter Haven,FL",1578 3rd Street Southwest, Winter Haven,FL,33880 +-84.218003,30.560454,"DD/BR [drivethru-yes] [wifi-yes]-Tallahassee,FL",6676 Thomasville Rd, Tallahassee,FL,32312 +-86.649181,30.423458,"DD [drivethru-yes] [wifi-yes]-Fort Walton Beach,FL",516 Mary Ester Cut Off NW [Ste 1], Fort Walton Beach,FL,32548 +-84.250736,30.505927,"DD/BR [drivethru-yes] [wifi-yes]-Tallahassee,FL",3440 Thomasville Rd, Tallahassee,FL,32309 +-85.591017,30.160834,"DD [drivethru-yes] [wifi-yes]-Callaway,FL",712 N Tyndall Pkwy, Callaway,FL,32404 +-87.217979,30.479965,"DD [drivethru-yes] [wifi-yes]-Pensacola,FL",1133 Airport Blvd, Pensacola,FL,32504 +-87.277397,30.399531,"DD [drivethru-yes] [wifi-yes]-Pensacola,FL",720 N Navy Blvd [Ste B], Pensacola,FL,32507 +-84.362108,30.472306,"DD [drivethru-yes] [wifi-yes]-Tallahassee,FL",1594 Capital Cir NW [Ste E], Tallahassee,FL,32303 +-86.565562,30.736084,"DD [drivethru-yes] [wifi-yes]-Crestview,FL",2408 S Ferdon Blvd, Crestview,FL,32536 +-85.649381,30.224836,"DD [drivethru-yes] [wifi-yes]-Lynn Haven,FL",2230 S Hwy 77 [Unit 102], Lynn Haven,FL,32444 +-85.632698,30.199646,"DD [drivethru-yes] [wifi-no]-Panama City Beach,FL",11150 Panama City Beach Pkwy, Panama City,FL,32407 +-82.546684,28.330692,"DD [drivethru-yes] [wifi-yes]-Land O Lakes,FL",16055 SR 52, Land O Lakes,FL,34638 +-82.503204,28.320662,"DD [drivethru-no] [wifi-no]-Land O Lakes,FL",11224 Land O Lakes Blvd [Hess], Land O Lakes,FL,34638 +-82.353424,28.207996,"DD [drivethru-no] [wifi-yes]-Wesley Chapel,FL",3745A Bruce B Downs Blvd, Wesley Chapel,FL,33544 +-82.377534,28.191145,"DD [drivethru-yes] [wifi-yes]-Wesley Chapel,FL",2340 Willow Oak Dr, Wesley Chapel,FL,33544 +-82.359228,28.237464,"DD [drivethru-yes] [wifi-yes]-Wesley Chapel,FL",27616 Wesley Chapel Blvd, Wesley Chapel,FL,33544 +-82.4245,28.0326,"DD/BR [drivethru-yes] [wifi-yes]-Tampa,FL",3203 E Busch Boulevard, Tampa,FL,33612 +-82.396919,28.032736,"DD [drivethru-no] [wifi-yes]-Temple Terrace,FL",5302 E Busch Blvd, Temple Terrace,FL,33617 +-82.44228,28.05439,"DD/BR [drivethru-no] [wifi-yes]-Tampa,FL",1505 E Fowler Avenue, Tampa,FL,33612 +-82.362381,28.069479,"DD/BR [drivethru-yes] [wifi-yes]-Tampa,FL",13510 Cypress Glenn Lane, Tampa,FL,33637 +-82.36693,28.12952,"DD/BR [drivethru-yes] [wifi-yes]-Tampa,FL",18003 Highwoods Preserve Parkway, Tampa,FL,33647 +-82.413406,28.082628,"DD [drivethru-no] [wifi-no]-Tampa,FL",14903 Bruce B Downs Blvd [Hess], Tampa,FL,33613 +-82.504293,28.051344,"DD [drivethru-yes] [wifi-yes]-Tampa,FL",11302 N Dale Mabry Hwy, Tampa,FL,33618 +-82.455429,28.087891,"DD [drivethru-yes] [wifi-yes]-Tampa,FL",110 E Bearss Ave, Tampa,FL,33613 +-82.542749,28.040532,"DD [drivethru-yes] [wifi-yes]-Tampa,FL",6017 W Linebaugh Ave, Tampa,FL,33625 +-82.50118,28.08467,"DD [drivethru-no] [wifi-no]-Tampa,FL",3611 W Bearss Avenue [Hess], Tampa,FL,33618 +-82.430479,28.141812,"DD [drivethru-no] [wifi-no]-Lutz,FL",18431 Livingston Ave [Hess], Lutz,FL,33559 +-82.46308,28.06931,"DD [drivethru-yes] [wifi-yes]-Tampa,FL",330 West Fletcher Avenue, Tampa,FL,33612 +-82.45932,28.040071,"DD [drivethru-no] [wifi-no]-Tampa,FL",10001 N Florida Ave [Hess], Tampa,FL,33612 +-82.59216,28.19407,"DD [drivethru-no] [wifi-no]-Odessa,FL",13508 Highway 54 [Hess], Odessa,FL,33556 +-82.439438,28.185715,"DD/BR [drivethru-yes] [wifi-yes]-Lutz,FL",22722 SR 54, Lutz,FL,33549 +-82.505173,28.012911,"DD/BR [drivethru-yes] [wifi-yes]-Tampa,FL",7004 N Dale Mabry Hwy, Tampa,FL,33614 +-82.583,27.99684,"DD/BR [drivethru-yes] [wifi-no]-Tampa,FL",8714 W Hillsborough Avenue, Tampa,FL,33615 +-82.506373,27.884551,"DD [drivethru-no] [wifi-no]-Tampa,FL",5602 S Dale Mabry Hwy [Hess], Tampa,FL,33611 +-82.67972,28.04406,"DD/BR [drivethru-yes] [wifi-yes]-Oldsmar,FL",3720 Tampa Road, Oldsmar,FL,34677 +-82.51857,27.893415,"DD [drivethru-yes] [wifi-no]-Tampa,FL",4404 W Gandy Blvd, Tampa,FL,33611 +-82.613472,28.01409,"DD [drivethru-no] [wifi-no]-Tampa,FL",11425 W Hillsborough Ave [Hess], Tampa,FL,33635 +-82.545744,28.025907,"DD [drivethru-yes] [wifi-yes]-Tampa,FL",6055 W Waters Ave, Tampa,FL,33634 +-82.315439,27.853551,"DD [drivethru-yes] [wifi-no]-Riverview,FL",11292 Boyette Rd, Riverview,FL,33569 +-82.244789,28.014486,"DD [drivethru-no] [wifi-no]-Dover,FL",4324 Mcintosh Rd [Hess], Dover,FL,33527 +-82.29922,27.92321,"DD/BR [drivethru-yes] [wifi-no]-Brandon,FL",950 Lumsden Road, Brandon,FL,33511 +-82.302513,27.937956,"DD [drivethru-yes] [wifi-no]-Brandon,FL",1346 W Brandon Blvd, Brandon,FL,33511 +-82.32673,27.8785,"DD/BR [drivethru-yes] [wifi-yes]-Riverview,FL",7028 Us Highway 301 South, Riverview,FL,33578 +-82.505684,27.958886,"DD [drivethru-yes] [wifi-yes]-Tampa,FL",1930 N Dale Mabry Hwy, Tampa,FL,33607 +-82.329219,27.87171,"DD [drivethru-no] [wifi-no]-Riverview,FL",10320 Big Bend Rd [Hess], Riverview,FL,33569 +-82.373714,27.792447,"DD [drivethru-yes] [wifi-yes]-Gibsonton,FL",6912 Big Bend Rd, Gibsonton,FL,33534 +-82.306,27.85358,"DD [drivethru-no] [wifi-no]-Riverview,FL",11615 Boyette Road [Hess], Riverview,FL,33569 +-82.27192,27.89363,"DD [drivethru-yes] [wifi-no]-Brandon,FL",808 E Bloomingdale Avenue, Brandon,FL,33511 +-82.317116,27.924137,"DD [drivethru-no] [wifi-no]-Brandon,FL",915 Providence Rd [Hess], Brandon,FL,33511 +-82.24452,27.894478,"DD [drivethru-no] [wifi-no]-Valrico,FL",3353 Lithia Pinecrest Rd [Hess], Valrico,FL,33596 +-82.362953,27.981686,"DD [drivethru-no] [wifi-no]-Tampa,FL",8350 Martin Luther King Blvd E [Hess], Tampa,FL,33619 +-82.437889,28.080235,"DD/BR [drivethru-yes] [wifi-yes]-Tampa,FL",1909 E Bearss Ave, Tampa,FL,33613 +-82.224548,27.91548,"DD [drivethru-yes] [wifi-no]-Valrico,FL",2206 E Brandon Blvd, Valrico,FL,33594 +-82.12164,27.9899,"DD/BR [drivethru-yes] [wifi-yes]-Plant City,FL",2307 James L Redman Parkway, Plant City,FL,33563 +-82.53815,28.08479,"DD/BR [drivethru-yes] [wifi-no]-Tampa,FL",5227 Ehrlich Road, Tampa,FL,33624 +-82.51663,27.99624,"DD/BR [drivethru-yes] [wifi-yes]-Tampa,FL",4325 Hillsborough Plaza, Tampa,FL,33614 +-82.2851,28.1441,"DD/BR [drivethru-yes] [wifi-yes]-Tampa,FL",10960 Cross Creek Boulevard # B, Tampa,FL,33647 +-82.633446,28.068603,"DD [drivethru-yes] [wifi-yes]-Tampa,FL",12941 Race Track Rd, Tampa,FL,33626 +-82.503304,27.84461,"DD [drivethru-no] [wifi-no]-Tampa,FL",MacDill Air Force Base, Tampa,FL,33621 +-82.28825,28.00575,"DD/BR [drivethru-yes] [wifi-no]-Seffner,FL",11200 East M L King Boulevard Dr [Ste 102], Seffner,FL,33584 +-82.505087,28.005981,"DD [drivethru-no] [wifi-no]-Tampa,FL",6332 N Dale Mabry Hwy [Hess], Tampa,FL,33614 +-82.368034,27.952201,"DD [drivethru-no] [wifi-no]-Tampa,FL",5149 E Adamo Dr [Hess], Tampa,FL,33619 +-82.42069,27.9961,"DD/BR [drivethru-no] [wifi-no]-Tampa,FL",3512 E Hillsborough Avenue, Tampa,FL,33610 +-80.26562,25.8674,"DD [drivethru-no] [wifi-yes]-Hialeah,FL",845 E 49th Street, Hialeah,FL,33013 +-80.141289,25.789179,"DD [drivethru-yes] [wifi-yes]-Miami Beach,FL",1606 Alton Rd, Miami Beach,FL,33139 +-80.12781,25.79492,"DD [drivethru-no] [wifi-no]-Miami,FL",2800 S LeJeune Rd [Miami Intl Airport], Miami,FL,33134 +-80.152039,26.259264,"DD [drivethru-yes] [wifi-yes]-Pompano Beach,FL",2351 N Powerline Rd, Pompano Beach,FL,33064 +-80.414268,25.623789,"DD/BR [drivethru-yes] [wifi-yes]-Miami,FL",15469 SW 137th Ave [Coral Reef Shopping Ctr], Miami,FL,33177 +-80.411842,25.477778,"DD [drivethru-yes] [wifi-no]-Homestead,FL",31201 SW 137 Ave, Homestead,FL,33033 +-80.36235,27.243248,"DD [drivethru-no] [wifi-yes]-Port Saint Lucie,FL",3401 SW Darwin Blvd, Port Saint Lucie,FL,34953 +-80.41454,27.26447,"DD [drivethru-yes] [wifi-yes]-Port Saint Lucie,FL",2173 SW Gatlin Boulevard, Port Saint Lucie,FL,34953 +-80.344406,27.27326,"DD/BR [drivethru-yes] [wifi-yes]-Port Saint Lucie,FL",134 SW Port Saint Lucie Blvd, Port St Lucie,FL,34984 +-80.388069,27.616196,"DD [drivethru-no] [wifi-no]-Vero Beach,FL",800 US Highway 1 [Hess], Vero Beach,FL,32960 +-80.22414,27.19735,"DD/BR [drivethru-yes] [wifi-yes]-Stuart,FL",2101 Se Ocean Boulevard, Stuart,FL,34996 +-80.227056,27.166078,"DD [drivethru-no] [wifi-no]-Stuart,FL",3201 SE Federal Hwy [Hess], Stuart,FL,34997 +-80.38406,27.60936,"DD [drivethru-yes] [wifi-yes]-Vero Beach,FL",430 Us Highway 1, Vero Beach,FL,32962 +-80.383545,27.63999,"DD/BR [drivethru-no] [wifi-yes]-Vero Beach,FL",504 21st St, Vero Beach,FL,32960 +-80.495697,27.638954,"DD [drivethru-yes] [wifi-no]-Vero Beach,FL",8195 20th St, Vero Beach,FL,32966 +-80.281189,27.258598,"DD/BR [drivethru-yes] [wifi-yes]-Jensen Beach,FL",4320 NW Federal Hwy, Jensen Beach,FL,34957 +-80.280121,27.257642,"DD [drivethru-no] [wifi-no]-Jensen Beach,FL",4287 NW Federal Hwy [Hess], Jensen Beach,FL,34957 +-80.290331,27.2743,"DD [drivethru-no] [wifi-no]-Port Saint Lucie,FL",10453 S US Highway 1 [Hess], Port Saint Lucie,FL,34952 +-80.371571,27.318263,"DD [drivethru-no] [wifi-no]-Port Saint Lucie,FL",149 NW Bayshore Blvd [Hess], Port Saint Lucie,FL,34983 +-80.466253,27.809001,"DD [drivethru-no] [wifi-no]-Sebastian,FL",700 US Highway 1 [Hess], Sebastian,FL,32958 +-80.466896,27.810846,"DD/BR [drivethru-no] [wifi-yes]-Sebastian,FL",900 US Highway 1, Sebastian,FL,32958 +-80.325775,27.42717,"DD [drivethru-yes] [wifi-yes]-Fort Pierce,FL",2102 S US Hwy 1, Fort Pierce,FL,34950 +-80.325977,27.344554,"DD [drivethru-no] [wifi-no]-Port Saint Lucie,FL",6601 S US Hwy 1 [Hess], Port Saint Lucie,FL,34952 +-80.366211,27.374453,"DD [drivethru-no] [wifi-yes]-Fort Pierce,FL",4090 W Midway Rd, Fort Pierce,FL,34981 +-80.395882,27.413334,"DD [drivethru-yes] [wifi-no]-Fort Pierce,FL",7049 Okeechobee Rd, Fort Pierce,FL,34945 +-80.325694,27.377081,"DD/BR [drivethru-no] [wifi-yes]-Fort Pierce,FL",4822 S US Hwy 1, Fort Pierce,FL,34982 +-80.39833,27.52184,"DD [drivethru-yes] [wifi-yes]-Fort Pierce,FL",4876 N Kings Highway, Fort Pierce,FL,34951 +-80.15846,26.033414,"DD [drivethru-yes] [wifi-no]-Hollywood,FL",2547 Sheridan St, Hollywood,FL,33020 +-80.408287,27.310194,"DD [drivethru-yes] [wifi-yes]-Port Saint Lucie,FL",1820 Fountainview Blvd, Port Saint Lucie,FL,34986 +-80.3843,27.31708,"DD [drivethru-yes] [wifi-yes]-Port Saint Lucie,FL",1002 SW Saint Lucie West Boulevard, Port Saint Lucie,FL,34986 +-80.308266,27.305527,"DD/BR [drivethru-yes] [wifi-yes]-Port Saint Lucie,FL",1401 SE Village Green Dr, Port Saint Lucie,FL,34952 +-80.25462,27.19179,"DD [drivethru-yes] [wifi-yes]-Stuart,FL",840 SW Federal Highway, Stuart,FL,34994 +-80.254001,27.175704,"DD [drivethru-no] [wifi-no]-Stuart,FL",100 SW Monterey Rd [Hess], Stuart,FL,34994 +-80.208061,27.135433,"DD/BR [drivethru-yes] [wifi-yes]-Stuart,FL",6001 US 1, Stuart,FL,34997 +-80.22788,27.24372,"DD/BR [drivethru-no] [wifi-yes]-Jensen Beach,FL",1864 Jensen Beach Boulevard, Jensen Beach,FL,34957 +-80.292404,27.171362,"DD [drivethru-yes] [wifi-no]-Palm City,FL",2858 Town Center Way, Palm City,FL,34990 +-80.25769,27.10925,"DD/BR [drivethru-yes] [wifi-yes]-Stuart,FL",7850 SW Lost River Road, Stuart,FL,34997 +-82.739731,28.123133,"DD [drivethru-no] [wifi-no]-Tarpon Springs,FL",38611 US Hwy 19 [Hess], Tarpon Springs,FL,34689 +-82.77425,28.14499,"DD [drivethru-no] [wifi-no]-Tarpon Springs,FL",1205 Gulf Road [Hess], Tarpon Springs,FL,34689 +-82.739532,28.106335,"DD [drivethru-no] [wifi-no]-Palm Harbor,FL",36763 US 19 [Hess], Palm Harbor,FL,34684 +-82.740288,28.18803,"DD [drivethru-no] [wifi-no]-Holiday,FL",2023 US Hwy 19 [Hess], Holiday,FL,34691 +-82.740173,28.194118,"DD/BR [drivethru-yes] [wifi-yes]-Holiday,FL",2409 US Hwy 19, Holiday,FL,34691 +-82.679196,27.733267,"DD [drivethru-yes] [wifi-no]-Saint Petersburg,FL",3850 34th St S, Saint Petersburg,FL,33711 +-82.659561,28.400314,"DD [drivethru-no] [wifi-yes]-Hudson,FL",16737 US Hwy 19, Hudson,FL,34667 +-82.699524,28.323576,"DD [drivethru-yes] [wifi-yes]-Port Richey,FL",11409 US Hwy 19, Port Richey,FL,34668 +-82.65006,28.33085,"DD [drivethru-no] [wifi-no]-Hudson,FL",9935 State Road 52 [Hess], Hudson,FL,34669 +-82.72759,28.23968,"DD [drivethru-yes] [wifi-yes]-New Port Richey,FL",5524 Us Highway 19, New Port Richey,FL,34652 +-82.69334,28.23884,"DD [drivethru-no] [wifi-no]-New Port Richey,FL",7319 Plathe Road [Hess], New Port Richey,FL,34653 +-82.675171,28.278883,"DD [drivethru-yes] [wifi-yes]-New Port Richey,FL",8406 Little Rd, New Port Richey,FL,34654 +-82.737383,28.017602,"DD [drivethru-no] [wifi-yes]-Clearwater,FL",27001 US Hwy 19 N [Countryside Mall Ste 1067], Clearwater,FL,33761 +-82.772377,28.093003,"DD [drivethru-no] [wifi-no]-Palm Harbor,FL",2734 US 19 Alt [Hess], Palm Harbor,FL,34683 +-82.73921,28.07746,"DD [drivethru-no] [wifi-no]-Palm Harbor,FL",33600 Us Highway 19 North [Hess], Palm Harbor,FL,34684 +-82.732394,27.960201,"DD/BR [drivethru-yes] [wifi-yes]-Clearwater,FL",2551 Gulf To Bay Blvd, Clearwater,FL,33765 +-82.832247,27.949962,"DD [drivethru-no] [wifi-yes]-Clearwater,FL",1261 Gulf Blvd [Ste 109], Clearwater,FL,33767 +-82.832123,27.880636,"DD [drivethru-no] [wifi-no]-Largo,FL",13987 Walsingham Rd [Hess], Largo,FL,33774 +-82.787641,27.922194,"DD [drivethru-yes] [wifi-yes]-Largo,FL",600 Missouri Ave N, Largo,FL,33770 +-82.8147,27.9209,"DD [drivethru-no] [wifi-no]-Largo,FL",4 N Indian Rocks Road [Hess], Belleair Bluffs,FL,33770 +-82.75023,27.91641,"DD/BR [drivethru-yes] [wifi-yes]-Largo,FL",3515 E Bay Drive, Largo,FL,33771 +-82.72578,27.91632,"DD [drivethru-no] [wifi-no]-Clearwater,FL",2698 Roosevelt Boulevard [Hess], Clearwater,FL,33760 +-82.71326,27.91614,"DD [drivethru-no] [wifi-no]-Clearwater,FL",5798 Roosevelt Boulevard [Hess], Clearwater,FL,33760 +-82.728867,27.889528,"DD/BR [drivethru-yes] [wifi-yes]-Largo,FL",13013 66th St, Largo,FL,33773 +-82.731056,27.946465,"DD [drivethru-no] [wifi-no]-Clearwater,FL",2577 Harn Blvd [Hess], Clearwater,FL,33764 +-82.64686,27.82779,"DD [drivethru-no] [wifi-yes]-Saint Petersburg,FL",6132 9th Street North, Saint Petersburg,FL,33703 +-82.638557,27.841562,"DD [drivethru-no] [wifi-no]-Saint Petersburg,FL",7595 4th St N, Saint Petersburg,FL,33702 +-82.73519,27.89386,"DD [drivethru-yes] [wifi-yes]-Largo,FL",7030 Ulmerton Road, Largo,FL,33771 +-82.679434,27.8013,"DD [drivethru-no] [wifi-no]-Saint Petersburg,FL",3225 34th St N [Hess], Saint Petersburg,FL,33713 +-82.682915,27.838408,"DD [drivethru-yes] [wifi-yes]-Pinellas Park,FL",7315 US Hwy 19 N, Pinellas Park,FL,33781 +-82.79878,27.9656,"DD/BR [drivethru-no] [wifi-yes]-Clearwater,FL",534 Cleveland Street, Clearwater,FL,33755 +-82.827358,27.979064,"DD [drivethru-no] [wifi-yes]-Clearwater,FL",393 Mandalay Ave, Clearwater,FL,33767 +-82.826936,27.967934,"DD [drivethru-no] [wifi-no]-Clearwater Beach,FL",601 Bayway Blvd [Hess], Clearwater Beach,FL,33767 +-82.74681,27.967952,"DD [drivethru-no] [wifi-no]-Clearwater,FL",2185 Drew St [Hess], Clearwater,FL,33765 +-82.787824,27.95918,"DD [drivethru-yes] [wifi-yes]-Clearwater,FL",600 S Missouri Ave, Clearwater,FL,33756 +-82.82659,27.98452,"DD [drivethru-no] [wifi-no]-Clearwater,FL",580 Mandalay Avenue [Hess], Clearwater,FL,33767 +-82.739111,28.07458,"DD/BR [drivethru-yes] [wifi-yes]-Palm Harbor,FL",33240 US Highway 19 N, Palm Harbor,FL,34684 +-82.78376,27.8394,"DD [drivethru-no] [wifi-no]-Seminole,FL",10544 Park Boulevard [Hess], Seminole,FL,33772 +-82.79655,27.7972,"DD [drivethru-no] [wifi-no]-Madeira Beach,FL",14361 Gulf Boulevard [Hess], Madeira Beach,FL,33708 +-82.756355,27.839025,"DD [drivethru-yes] [wifi-yes]-Seminole,FL",8490 Park Blvd, Seminole,FL,33777 +-82.670685,28.236963,"DD [drivethru-yes] [wifi-yes]-New Port Richey,FL",5421 Little Rd [Unit 100], New Port Richey,FL,34655 +-82.68795,28.21718,"DD/BR [drivethru-yes] [wifi-yes]-New Port Richey,FL",7635 State Road 54, New Port Richey,FL,34653 +-82.63596,28.19365,"DD [drivethru-yes] [wifi-yes]-New Port Richey,FL",10829 State Road 54 [Ste 101], New Port Richey,FL,34655 +-82.736481,27.757713,"DD [drivethru-yes] [wifi-yes]-Pasadena,FL",1200 Pasadena Ave S, Pasadena,FL,33707 +-82.72846,27.79953,"DD [drivethru-no] [wifi-no]-Saint Petersburg,FL",3001 66th Street North [Hess], Saint Petersburg,FL,33710 +-82.728481,27.813519,"DD [drivethru-yes] [wifi-yes]-Kenneth City,FL",4599 66th St N, Kenneth City,FL,33709 +-82.679642,27.779285,"DD [drivethru-yes] [wifi-yes]-Saint Petersburg,FL",700 34th St N, Saint Petersburg,FL,33713 +-82.762168,27.887495,"DD [drivethru-no] [wifi-no]-Largo,FL",12601 Starkey Rd, Largo,FL,33773 +-82.7649,28.019344,"DD/BR [drivethru-yes] [wifi-yes]-Dunedin,FL",1461 Main St, Dunedin,FL,34698 +-82.787315,27.879608,"DD [drivethru-no] [wifi-no]-Largo,FL",11708 Seminole Blvd [Hess], Largo,FL,33778 +-82.670644,28.237257,"DD [drivethru-no] [wifi-no]-New Port Richey,FL",5426 Little Rd [Hess], New Port Richey,FL,34655 +-82.667239,28.206065,"DD [drivethru-no] [wifi-no]-New Port Richey,FL",8923 State Road 54 [Hess], New Port Richey,FL,34655 +-82.72228,28.273908,"DD [drivethru-no] [wifi-no]-Port Richey,FL",8011 US Hwy 19 [Hess], Port Richey,FL,34668 +-82.700577,27.886354,"DD [drivethru-no] [wifi-no]-Clearwater,FL",12550 49th St [Hess], Clearwater,FL,33762 +-80.111832,26.393736,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",1200 Yamato Rd, Boca Raton,FL,33431 +-80.122124,26.407904,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",1906 Clint Moore Rd, Boca Raton,FL,33496 +-80.13065,26.60044,"DD [drivethru-no] [wifi-yes]-West Palm Beach,FL",6300 Forest Hill Blvd, West Palm Beach,FL,33415 +-80.08965,26.57194,"DD [drivethru-no] [wifi-yes]-Boynton Beach,FL",4778 N Congress Avenue, Boynton Beach,FL,33426 +-80.088402,26.631435,"DD [drivethru-no] [wifi-no]-Lake Worth,FL",3060 S Congress Ave, Lake Worth,FL,33461 +-80.14037,26.61926,"DD [drivethru-no] [wifi-yes]-Greenacres,FL",6097 Lake Worth Road, Greenacres,FL,33463 +-80.11253,26.65277,"DD/BR [drivethru-yes] [wifi-no]-West Palm Beach,FL",1675 S Military Trail, West Palm Beach,FL,33415 +-80.205559,26.596643,"DD [drivethru-yes] [wifi-yes]-Lake Worth,FL",5905 S State Rd 7, Lake Worth,FL,33467 +-80.1378,26.3942,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",9874 Yamato Road [# 124], Boca Raton,FL,33434 +-80.079407,26.36528,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",1654 N Federal Hwy, Boca Raton,FL,33432 +-80.408035,27.264404,"DD [drivethru-yes] [wifi-no]-Port Saint Lucie,FL",1924 SW Gatlin Blvd, Port Saint Lucie,FL,34953 +-80.160782,26.453964,"DD [drivethru-no] [wifi-yes]-Delray Beach,FL",7231 W Atlantic Ave, Delray Beach,FL,33446 +-80.20323,26.33752,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",22807 State Road 7, Boca Raton,FL,33428 +-80.054214,26.794531,"DD [drivethru-yes] [wifi-no]-Lake Park,FL",301 Federal Hwy, Lake Park,FL,33403 +-80.107395,26.782796,"DD [drivethru-no] [wifi-yes]-West Palm Beach,FL",7245 N Military Trail, West Palm Beach,FL,33410 +-80.0849,26.78166,"DD/BR [drivethru-yes] [wifi-yes]-Riviera Beach,FL",1850 W Blue Heron Blvd, Riviera Beach,FL,33404 +-80.080807,26.808315,"DD [drivethru-no] [wifi-yes]-Palm Beach Gardens,FL",2931 Northlake Blvd, Palm Beach Gardens,FL,33403 +-80.079224,26.808004,"DD [drivethru-no] [wifi-no]-Lake Park,FL",1216 Northlake Blvd [Hess], Lake Park,FL,33403 +-80.22911,26.70951,"DD [drivethru-yes] [wifi-yes]-Royal Palm Beach,FL",1301 Royal Palm Beach Boulevard, Royal Palm Beach,FL,33411 +-80.202255,26.676811,"DD [drivethru-no] [wifi-yes]-West Palm Beach,FL",194 S State Rd 7, West Palm Beach,FL,33414 +-80.204043,26.640312,"DD [drivethru-no] [wifi-yes]-Wellinton,FL",2741 S State Rd 7, Wellington,FL,33414 +-80.15002,26.55074,"DD/BR [drivethru-no] [wifi-yes]-Boynton Beach,FL",8324 Jog Road, Boynton Beach,FL,33472 +-80.076134,26.914989,"DD [drivethru-no] [wifi-yes]-Jupiter,FL",131 Alt A1A [Concourse Village Shopping Ctr], Jupiter,FL,33477 +-80.19227,26.942196,"DD [drivethru-no] [wifi-yes]-Jupiter,FL",10050 W Indiantown Rd, Jupiter,FL,33478 +-80.130096,26.934366,"DD [drivethru-no] [wifi-yes]-Jupiter,FL",6230 W Indiantown Rd, Jupiter,FL,33458 +-80.147141,26.507614,"DD/BR [drivethru-no] [wifi-yes]-Boynton Beach,FL",12080 S Jog Rd, Boynton Beach,FL,33437 +-80.07721,26.51635,"DD [drivethru-yes] [wifi-yes]-Boynton Beach,FL",1470 SW 8th Street, Boynton Beach,FL,33426 +-80.122696,26.525984,"DD [drivethru-no] [wifi-yes]-Boynton Beach,FL",10114 S Military Trail, Boynton Beach,FL,33436 +-80.05898,26.51661,"DD/BR [drivethru-yes] [wifi-yes]-Boynton Beach,FL",1317 S Federal Highway, Boynton Beach,FL,33435 +-80.061684,26.704428,"DD [drivethru-yes] [wifi-yes]-West Palm Beach,FL",5641 Okeechobee Rd, West Palm Beach,FL,33407 +-80.10631,26.80764,"DD [drivethru-yes] [wifi-no]-West Palm Beach,FL",8900 N Military Tr, West Palm Beach,FL,33410 +-80.06104,26.84505,"DD [drivethru-no] [wifi-yes]-Palm Beach Gardens,FL",11575 Us Highway 1 [Suite 85], Palm Beach Gardens,FL,33408 +-80.20333,26.70922,"DD [drivethru-yes] [wifi-yes]-West Palm Beach,FL",10140 Okeechobee Boulevard, West Palm Beach,FL,33411 +-80.10915,26.70674,"DD [drivethru-yes] [wifi-yes]-West Palm Beach,FL",4440 Okeechobee Boulevard, West Palm Beach,FL,33409 +-80.11822,26.73683,"DD [drivethru-no] [wifi-yes]-West Palm Beach,FL",4065 Haverhill Road North [# B1], West Palm Beach,FL,33417 +-80.11157,26.6904,"DD [drivethru-yes] [wifi-yes]-West Palm Beach,FL",878 N Military Trail, West Palm Beach,FL,33415 +-80.054749,26.680332,"DD [drivethru-no] [wifi-yes]-West Palm Beach,FL",3501 S Dixie Hwy, West Palm Beach,FL,33405 +-80.0586,26.88177,"DD [drivethru-no] [wifi-yes]-Juno Beach,FL",803 Donald Ross Road, Juno Beach,FL,33408 +-80.072571,26.844557,"DD [drivethru-no] [wifi-no]-Palm Beach Gardens,FL",2506 PGA Blvd, Palm Beach Gardens,FL,33410 +-80.108757,26.75993,"DD [drivethru-yes] [wifi-yes]-Riviera Beach,FL",5401 N Military Trail, Riviera Beach,FL,33407 +-80.05648,26.64089,"DD [drivethru-no] [wifi-yes]-Lake Worth,FL",2200 N Dixie Highway, Lake Worth,FL,33460 +-80.07278,26.62799,"DD [drivethru-yes] [wifi-no]-Lake Worth,FL",2001 10th Avenue North # 7, Lake Worth,FL,33461 +-80.140759,26.072493,"DD [drivethru-no] [wifi-no]-Fort Lauderdale,FL",150 Terminal Dr Fort Lauderdale Intl Airport, Fort Lauderdale,FL,33315 +-80.064926,26.587042,"DD [drivethru-no] [wifi-yes]-Lantana,FL",1400 Lantana Rd [Unit 136], Lantana,FL,33462 +-80.119019,26.457657,"DD [drivethru-yes] [wifi-yes]-Delray Beach,FL",4800 W Atlantic Ave, Delray Beach,FL,33445 +-80.15374,26.35754,"DD/BR [drivethru-no] [wifi-yes]-Boca Raton,FL",21401 Powerline Road, Boca Raton,FL,33433 +-80.153509,26.707964,"DD [drivethru-no] [wifi-no]-West Palm Beach,FL",6840 Okeechobee Blvd [Hess], West Palm Beach,FL,33411 +-80.084647,26.706089,"DD [drivethru-no] [wifi-no]-West Palm Beach,FL",2152 Okeechobee Blvd, West Palm Beach,FL,33409 +-80.087539,26.672556,"DD [drivethru-yes] [wifi-yes]-West Palm Beach,FL",242 S Congress Ave, West Palm Beach,FL,33406 +-80.17386,26.36802,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",8221 Glades Road, Boca Raton,FL,33434 +-80.347626,27.438786,"DD [drivethru-yes] [wifi-yes]-Fort Pierce,FL",2315 Okeechobee Rd, Fort Pierce,FL,34950 +-80.19861,26.36784,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",9774 Glades Road [# A11], Boca Raton,FL,33434 +-80.11555,26.61845,"DD/BR [drivethru-yes] [wifi-no]-Lake Worth,FL",4644 Lake Worth Road, Lake Worth,FL,33463 +-80.1491,26.58961,"DD [drivethru-no] [wifi-yes]-Lake Worth,FL",6594 Lantana Road [Bay 3], Lake Worth,FL,33467 +-80.113785,26.588507,"DD [drivethru-no] [wifi-yes]-Lake Worth,FL",6014 S Military Trail, Lake Worth,FL,33463 +-80.111702,26.3512,"DD [drivethru-no] [wifi-yes]-Boca Raton,FL",1215 W Palmetto Park Rd, Boca Raton,FL,33486 +-80.09026,26.36823,"DD [drivethru-yes] [wifi-yes]-Boca Raton,FL",1999 NW 2nd Avenue, Boca Raton,FL,33432 +-80.0885,26.52768,"DD [drivethru-yes] [wifi-yes]-Boynton Beach,FL",1394 W Boynton Beach Boulevard, Boynton Beach,FL,33426 +-80.08633,26.34295,"DD/BR [drivethru-no] [wifi-yes]-Boca Raton,FL",777 S Federal Highway, Boca Raton,FL,33432 +-80.089279,26.617657,"DD [drivethru-no] [wifi-no]-Lake Worth,FL",3965 S Congress Ave [Hess], Lake Worth,FL,33461 +-80.076922,26.550535,"DD [drivethru-no] [wifi-yes]-Boynton Beach,FL",1020 Gateway Blvd [Ste 101], Boynton Beach,FL,33426 +-80.11257,26.57189,"DD [drivethru-yes] [wifi-yes]-Lake Worth,FL",4430 Hypoluxo Road, Lake Worth,FL,33462 +-80.09435,26.46006,"DD [drivethru-no] [wifi-yes]-Delray Beach,FL",2090 W Atlantic Avenue, Delray Beach,FL,33445 +-80.0636,26.4907,"DD [drivethru-yes] [wifi-yes]-Delray Beach,FL",2728 N Federal Highway, Delray Beach,FL,33483 +-80.247084,26.671509,"DD [drivethru-yes] [wifi-yes]-Wellinton,FL",12754 Forest Hill Blvd, Wellington,FL,33414 +-80.07179,26.43737,"DD [drivethru-no] [wifi-yes]-Delray Beach,FL",1911 South Federal Highway, Delray Beach,FL,33483 +-80.073502,26.461849,"DD [drivethru-no] [wifi-yes]-Delray Beach,FL",37 W Atlantic Ave, Delray Beach,FL,33444 +-81.233594,28.68989,"DD [drivethru-no] [wifi-no]-Winter Springs,FL",1501 E State Rd 434 [Hess], Winter Springs,FL,32708 +-81.365561,28.613968,"DD [drivethru-yes] [wifi-yes]-Maitland,FL",1605 S Orlando Ave, Maitland,FL,32751 +-81.358459,28.698095,"DD [drivethru-yes] [wifi-yes]-Longwood,FL",801 State Rd [434 W], Longwood,FL,32750 +-81.575164,28.393369,"DD [drivethru-no] [wifi-no]-Lake Buena Vista,FL",1000 West Car Care Dr [Hess], Lake Buena Vista,FL,32830 +-81.517149,28.367645,"DD [drivethru-no] [wifi-no]-Lake Buena Vista,FL",1475 Buena Vista Dr [Hess], Lake Buena Vista,FL,32830 +-81.552517,28.363408,"DD [drivethru-no] [wifi-no]-Lake Buena Vista,FL",300 E Buena Vista Dr [Hess], Lake Buena Vista,FL,32830 +-81.339439,28.274826,"DD [drivethru-no] [wifi-no]-Kissimmee,FL",2294 East US 192 [Hess], Kissimmee,FL,34744 +-81.412086,28.304726,"DD/BR [drivethru-yes] [wifi-yes]-Kissimmee,FL",807 W Vine St, Kissimmee,FL,34741 +-81.43863,28.30456,"DD [drivethru-no] [wifi-no]-Kissimmee,FL",3501 W Vine St, Kissimmee,FL,34741 +-81.587494,28.551153,"DD [drivethru-no] [wifi-no]-Winter Garden,FL",13707 W Colonial Dr [Hess], Winter Garden,FL,34787 +-81.541282,28.530479,"DD [drivethru-no] [wifi-no]-Ocoee,FL",2710 Maquire Rd [Hess], Ocoee,FL,34761 +-81.31253,28.25083,"DD [drivethru-yes] [wifi-yes]-Saint Cloud,FL",4004 13th Street, Saint Cloud,FL,34769 +-81.318752,28.255016,"DD [drivethru-no] [wifi-no]-Saint Cloud,FL",4500 13th St [Hess], Saint Cloud,FL,34769 +-81.507317,28.672985,"DD/BR [drivethru-yes] [wifi-yes]-Apopka,FL",212 E Main St, Apopka,FL,32703 +-81.287178,28.757336,"DD/BR [drivethru-yes] [wifi-yes]-Sanford,FL",3768 S Orlando Dr, Sanford,FL,32773 +-81.32943,28.811846,"DD/BR [drivethru-yes] [wifi-yes]-Sanford,FL",4510 W SR 46, Sanford,FL,32771 +-81.545921,28.551447,"DD [drivethru-yes] [wifi-yes]-Ocoee,FL",11204 W Colonial Dr, Ocoee,FL,34761 +-81.433128,28.262281,"DD [drivethru-no] [wifi-no]-Kissimmee,FL",3200 S John Young Pkwy [Hess], Kissimmee,FL,34746 +-81.404585,28.370961,"DD [drivethru-no] [wifi-no]-Orlando,FL",13306 S Orange Blossom Trail [Hess], Orlando,FL,32837 +-81.4047,28.42074,"DD [drivethru-no] [wifi-no]-Orlando,FL",9520 S Orange Blossom Trail [Hess], Orlando,FL,32837 +-81.451829,28.146367,"DD [drivethru-yes] [wifi-yes]-Poinciana,FL",800 Cypress Pkwy, Poinciana,FL,34759 +-81.3895,28.57486,"DD/BR [drivethru-no] [wifi-yes]-Orlando,FL",2603 Edgewater Drive, Orlando,FL,32804 +-81.36841,28.66393,"DD [drivethru-no] [wifi-yes]-Altamonte Springs,FL",653 E Altamonte Dr, Altamonte Springs,FL,32701 +-81.386827,28.662068,"DD [drivethru-no] [wifi-no]-Altamonte Springs,FL",105 E State Rd 436 [Hess], Altamonte Springs,FL,32701 +-81.304859,28.417686,"DD [drivethru-no] [wifi-no]-Orlando,FL",1 Airport Blvd [Orlando Int'l Airside 4], Orlando,FL,32827 +-81.304722,28.41772,"DD [drivethru-no] [wifi-no]-Orlando Intl Airport,FL",1 Airport Blvd [2 Locations], Orlando,FL,32827 +-81.368057,28.469387,"DD/BR [drivethru-yes] [wifi-yes]-Orlando,FL",6215 S Orange Ave, Orlando,FL,32809 +-81.357323,28.756468,"DD/BR [drivethru-yes] [wifi-yes]-Lake Mary,FL",4610 W Lake Mary Blvd, Lake Mary,FL,32746 +-81.310303,28.529072,"DD/BR [drivethru-yes] [wifi-yes]-Orlando,FL",1131 S Semoran Blvd, Orlando,FL,32807 +-81.40357,28.440499,"DD [drivethru-yes] [wifi-yes]-Orlando,FL",8485 S Orange Blossom Trl, Orlando,FL,32809 +-81.322266,28.601156,"DD/BR [drivethru-yes] [wifi-no]-Winter Park,FL",2265 Aloma Ave, Winter Park,FL,32792 +-81.29694,28.59759,"DD/BR [drivethru-yes] [wifi-yes]-Winter Park,FL",6627 University Boulevard, Winter Park,FL,32792 +-81.263382,28.618423,"DD/BR [drivethru-yes] [wifi-yes]-Oviedo,FL",3635 Aloma Ave [Suite 1001], Oviedo,FL,32765 +-81.243446,28.418306,"DD [drivethru-yes] [wifi-yes]-Orlando,FL",10395 Narcoossee Rd, Orlando,FL,32832 +-81.587635,28.522216,"DD [drivethru-no] [wifi-no]-Winter Garden,FL",3202 Daniels Rd [Hess], Winter Garden,FL,34787 +-81.681669,28.546389,"DD [drivethru-no] [wifi-no]-Clermont,FL",16500 SR 50 [Hess], Clermont,FL,34711 +-81.383858,28.59314,"DD [drivethru-no] [wifi-no]-Winter Park,FL",2617 W Fairbanks Ave [Hess], Winter Park,FL,32789 +-81.517143,28.5735,"DD/BR [drivethru-yes] [wifi-yes]-Ocoee,FL",1719 E Silver Star Rd, Ocoee,FL,34761 +-81.5924,28.33616,"DD/BR [drivethru-yes] [wifi-yes]-Kissimmee,FL",7644 W Irlo Bronson Mem Highway, Kissimmee,FL,34747 +-81.52042,28.33273,"DD/BR [drivethru-no] [wifi-yes]-Kissimmee,FL",5889 W Irlo Bronson Meml Highway, Kissimmee,FL,34746 +-81.49704,28.33299,"DD [drivethru-no] [wifi-yes]-Kissimmee,FL",5341 West Irlo Bronson Memorial Highway, Kissimmee,FL,34746 +-81.487022,28.345848,"DD [drivethru-no] [wifi-no]-Kissimmee,FL",3270 Vineland Rd [Hess], Kissimmee,FL,34746 +-81.58947,28.25984,"DD [drivethru-no] [wifi-no]-Davenport,FL",7571 Osceola Polk Line Road, Davenport,FL,33896 +-81.246468,28.478094,"DD [drivethru-no] [wifi-no]-Orlando,FL",10024 Lee Vista Blvd [Hess], Orlando,FL,32829 +-81.31012,28.49682,"DD/BR [drivethru-yes] [wifi-no]-Orlando,FL",4580 S Semoran Boulevard, Orlando,FL,32822 +-81.20751,28.56513,"DD/BR [drivethru-yes] [wifi-yes]-Orlando,FL",1650 N Alafaya Trail, Orlando,FL,32828 +-81.208084,28.625923,"DD [drivethru-no] [wifi-no]-Oviedo,FL",3015 Alafaya Trail [Hess], Oviedo,FL,32765 +-81.42539,28.45046,"DD/BR [drivethru-yes] [wifi-no]-Orlando,FL",3042 W Sand Lake Road, Orlando,FL,32819 +-81.47097,28.453978,"DD/BR [drivethru-yes] [wifi-no]-Orlando,FL",7440-A International Drive, Orlando,FL,32819 +-81.36615,28.345461,"DD/BR [drivethru-yes] [wifi-yes]-Buena Ventura Lakes,FL",1935 East Osceola Pkwy, Buena Ventura Lakes,FL,34743 +-81.45116,28.46291,"DD [drivethru-no] [wifi-no]-Orlando,FL",5365 International Drive [Hess], Orlando,FL,32819 +-81.372902,28.578911,"DD [drivethru-yes] [wifi-yes]-Orlando,FL",5422 N Orange Blossom Tr, Orlando,FL,32810 +-81.459335,28.512413,"DD/BR [drivethru-yes] [wifi-no]-Orlando,FL",2900 S Kirkman Rd, Orlando,FL,32811 +-81.21137,28.59693,"DD/BR [drivethru-yes] [wifi-yes]-Orlando,FL",12075 Collegiate Way, Orlando,FL,32817 +-81.285942,28.546873,"DD [drivethru-no] [wifi-no]-Orlando,FL",38 Goldenrod Rd [Hess], Orlando,FL,32807 +-81.336044,28.679163,"DD [drivethru-no] [wifi-no]-Casselberry,FL",3190 S US Highway 17/92 [Hess], Casselberry,FL,32707 +-81.349281,28.65169,"DD/BR [drivethru-yes] [wifi-yes]-Fern Park,FL",429 Ridge Rd, Fern Park,FL,32730 +-81.325279,28.649351,"DD [drivethru-yes] [wifi-no]-Casselberry,FL",890 Semoran Blvd, Casselberry,FL,32707 +-81.40455,28.38918,"DD/BR [drivethru-yes] [wifi-no]-Orlando,FL",12173 S Orange Blossom Trail, Orlando,FL,32837 +-81.47485,28.4752,"DD [drivethru-no] [wifi-no]-Orlando,FL",5981 Turkey Lake Road [Hess], Orlando,FL,32819 +-81.376534,28.519157,"DD [drivethru-yes] [wifi-yes]-Orlando,FL",2000 S Orange Ave, Orlando,FL,32806 +-81.42502,28.3665,"DD/BR [drivethru-yes] [wifi-no]-Orlando,FL",13781 S John Young Parkway, Orlando,FL,32837 +-81.487275,28.358102,"DD [drivethru-no] [wifi-no]-Orlando,FL",7900 World Center Dr[Hess], Orlando,FL,32821 +-81.50262,28.36761,"DD/BR [drivethru-no] [wifi-yes]-Orlando,FL",13605 State Road 535, Orlando,FL,32821 +-81.46738,28.39212,"DD [drivethru-no] [wifi-no]-Orlando,FL",11951 International Drive, Orlando,FL,32821 +-81.28346,28.56843,"DD/BR [drivethru-yes] [wifi-yes]-Orlando,FL",7707 E Colonial Drive, Orlando,FL,32807 +-81.22858,29.55323,"DD/BR [drivethru-yes] [wifi-yes]-Palm Coast,FL",1310 Palm Coast Parkway Southwest, Palm Coast,FL,32137 +-81.28031,28.91126,"DD/BR [drivethru-yes] [wifi-yes]-Orange City,FL",1142 Saxon Boulevard, Orange City,FL,32763 +-81.004697,29.126989,"DD [drivethru-yes] [wifi-yes]-Port Orange,FL",3817 S Nova Rd [Unit 101], Port Orange,FL,32127 +-81.296135,29.054249,"DD/BR [drivethru-yes] [wifi-yes]-Deland,FL",1540 Garfield Ave, Deland,FL,32724 +-81.30282,29.00648,"DD [drivethru-yes] [wifi-yes]-Deland,FL",1298 South Woodland Boulevard, Deland,FL,32720 +-81.081291,29.270809,"DD [drivethru-yes] [wifi-no]-Ormond Beach,FL",300 S Nova Rd, Ormond Beach,FL,32174 +-81.117865,29.256385,"DD [drivethru-yes] [wifi-yes]-Ormond Beach,FL",1628 W Granada Blvd, Ormond Beach,FL,32174 +-81.213407,29.475682,"DD/BR [drivethru-yes] [wifi-yes]-Palm Coast,FL",5290 East SR 100, Palm Coast,Fl,32164 +-81.212547,29.556425,"DD [drivethru-no] [wifi-no]-Palm Coast,FL",5 Old Kings Rd N [Shell Gas Station], Palm Coast,FL,32137 +-80.964914,29.013386,"DD [drivethru-yes] [wifi-yes]-New Smyrna Beach,FL",2365 SR 44, New Smyrna Beach,FL,32168 +-80.90065,29.028751,"DD/BR [drivethru-yes] [wifi-no]-New Smyrma Beach,FL",441 3rd Ave, New Smyrma Beach,FL,32169 +-80.89592,28.97263,"DD [drivethru-no] [wifi-yes]-Edgewater,FL",1816 S Ridgewood Avenue, Edgewater,FL,32141 +-81.643372,29.649185,"DD/BR [drivethru-yes] [wifi-no]-Palatka,FL",1401 Reid St, Palatka,FL,32177 +-81.023071,29.21118,"DD [drivethru-yes] [wifi-yes]-Port Orange,FL",3821 S Ridgewood Ave, Port Orange,FL,32119 +-81.087283,29.226911,"DD [drivethru-yes] [wifi-no]-Daytona Beach,FL",1900 LPGA Blvd, Daytona Beach,FL,32117 +-81.00977,29.23005,"DD [drivethru-no] [wifi-yes]-Daytona Beach,FL",213 N Atlantic Avenue, Daytona Beach,FL,32118 +-81.02882,29.17639,"DD [drivethru-yes] [wifi-no]-Daytona Beach,FL",1504 S Nova Road, Daytona Beach,FL,32114 +-81.082687,29.174793,"DD [drivethru-no] [wifi-no]-Daytona Beach,FL",2675 W International Speedway [Hess], Daytona Beach,FL,32114 +-82.368627,28.543606,"DD [drivethru-no] [wifi-no]-Brooksville,FL",1950 E Jefferson St [Hess], Brooksville,FL,34601 +-82.46185,28.43382,"DD [drivethru-no] [wifi-no]-Masaryktown,FL",75 Broad Street [Hess], Masaryktown,FL,34604 +-82.402321,28.542086,"DD/BR [drivethru-yes] [wifi-yes]-Brooksville,FL",1185 S Broad St, Brooksville,FL,34601 +-82.422365,28.552099,"DD [drivethru-no] [wifi-no]-Brooksville,FL",18635 Cortez Blvd [Hess], Brooksville,FL,34601 +-82.11218,28.66893,"DD [drivethru-no] [wifi-no]-Bushnell,FL",504 N Main Street [Hess], Bushnell,FL,33513 +-81.888191,28.832373,"DD [drivethru-no] [wifi-no]-Leesburg,FL",1404 N Citrus Blvd [Hess], Leesburg,FL,34748 +-82.30387,28.52311,"DD [drivethru-no] [wifi-no]-Brooksville,FL",26260 Cortez Boulevard [Hess], Brooksville,FL,34601 +-81.982073,28.786789,"DD [drivethru-no] [wifi-no]-FL TP Okahumpka Service Plaza [FL TP] Wildwood,FL",MM 299 Fl Tpk [Okahumpka Service Plaza], Wildwood,FL,34785 +-82.383484,28.852654,"DD/BR [drivethru-yes] [wifi-yes]-Inverness,FL",599 S Stone Way, Inverness,FL,34453 +-82.542142,28.490963,"DD [drivethru-no] [wifi-no]-Spring Hill,FL",4159 Mariner Blvd [Hess], Spring Hill,FL,34609 +-82.594107,28.497124,"DD [drivethru-no] [wifi-no]-Spring Hill,FL",4707 Commercial Way [Hess], Spring Hill,FL,34606 +-82.54072,28.46145,"DD/BR [drivethru-no] [wifi-yes]-Spring Hill,FL",11089 Spring Hill Drive, Spring Hill,FL,34608 +-82.574104,28.486172,"DD [drivethru-no] [wifi-no]-Spring Hill,FL",3495 Deltona Blvd [Hess], Spring Hill,FL,34606 +-81.959924,28.953201,"DD/BR [drivethru-yes] [wifi-yes]-Lady Lake,FL",1561 Bella Cruz Dr, Lady Lake,FL,32159 +-81.949797,28.940406,"DD [drivethru-no] [wifi-yes]-The Villages,FL",1002 Alverez Ave, The Villages,FL,32159 +-82.10422,29.18684,"DD/BR [drivethru-yes] [wifi-no]-Ocala,FL",2431 E Silver Springs Boulevard, Ocala,FL,34470 +-82.05941,29.14155,"DD [drivethru-yes] [wifi-yes]-Ocala,FL",5461 SE Maricamp Road, Ocala,FL,34480 +-82.139768,29.170576,"DD [drivethru-yes] [wifi-yes]-Ocala,FL",1750 S Pine Ave, Ocala,FL,34471 +-82.552943,28.762913,"DD/BR [drivethru-no] [wifi-yes]-Homosassa,FL",6885 S Suncoast Blvd [Walmart], Homosassa,FL,34446 +-82.181587,29.186134,"DD [drivethru-yes] [wifi-yes]-Ocala,FL",3622 W Silver Springs Blvd, Ocala,FL,34475 +-82.5964,28.4946,"DD/BR [drivethru-yes] [wifi-no]-Spring Hill,FL",4471 Commercial Way, Spring Hill,FL,34606 +-82.586411,28.525354,"DD/BR [drivethru-yes] [wifi-yes]-Spring Hill,FL",13179 Cortez Blvd, Spring Hill,FL,34613 +-82.548518,28.435097,"DD [drivethru-no] [wifi-no]-Spring Hill,FL",100 Mariner Blvd [Hess], Spring Hill,FL,34609 +-82.13939,28.66866,"DD [drivethru-no] [wifi-no]-Bushnell,FL",2163 W Centre 48 [Walmart], Bushnell,FL,33513 +-82.584072,28.898375,"DD/BR [drivethru-yes] [wifi-yes]-Crystal River,FL",631 NE 5th St, Crystal River,FL,34429 +-82.48692,28.851296,"DD [drivethru-no] [wifi-yes]-Lecanto,FL",782 S Rowe Ter, Lecanto,FL,34461 +-82.454704,29.059116,"DD/BR [drivethru-yes] [wifi-yes]-Dunnellon,FL",11325 N Williams St, Dunnellon,FL,34432 +-82.16777,29.81489,"DD [drivethru-no] [wifi-no]-Waldo,FL",17276 NE Us Highway 301, Waldo,FL,32694 +-82.167777,29.815176,"DD [drivethru-no] [wifi-no]-Waldo,FL",17276 NE US Hwy 301, Waldo,FL,32694 +-82.013542,28.928091,"DD/BR [drivethru-yes] [wifi-yes]-The Villages,FL",3460 Wedgewood Ln, The Villages,FL,32162 +-82.339256,29.687031,"DD/BR [drivethru-yes] [wifi-no]-Gainesville,FL",3710 NW 13th St, Gainesville,FL,32609 +-82.373196,29.62609,"DD [drivethru-yes] [wifi-no]-Gainesville,FL",3411 SW Archer Rd [Ste B], Gainesville,FL,32608 +-82.345894,29.652225,"DD [drivethru-no] [wifi-no]-Gainesville,FL",1730 W University Ave, Gainesville,FL,32603 +-81.79977,28.82687,"DD [drivethru-no] [wifi-no]-Leesburg,FL",9532 Us Highway 441 [Hess], Leesburg,FL,34788 +-81.70225,28.82201,"DD/BR [drivethru-yes] [wifi-yes]-Eustis,FL",2390 E Burleigh Boulevard, Eustis,FL,32726 +-81.66525,28.34709,"DD [drivethru-no] [wifi-no]-Clermont,FL",17431 Us Highway 192 [Hess], Clermont,FL,34714 +-82.27528,28.84875,"DD [drivethru-no] [wifi-no]-Inverness,FL",9515 E Gulf To Lake Highway [Hess], Inverness,FL,34450 +-82.44967,29.68901,"DD [drivethru-no] [wifi-no]-Gainesville,FL",9700 NW 39th Avenue, Gainesville,FL,32606 +-82.417389,29.659435,"DD [drivethru-yes] [wifi-no]-Gainesville,FL",7011 West Newberry Rd, Gainesville,FL,32608 +-81.8755,28.74372,"DD [drivethru-no] [wifi-no]-Leesburg,FL",27345 Us Highway 27 [Hess], Leesburg,FL,34748 +-82.15283,29.02548,"DD/BR [drivethru-yes] [wifi-yes]-Ocala,FL",1600 Highway 484, Ocala,FL,34473 +-81.7369,28.54675,"DD/BR [drivethru-yes] [wifi-yes]-Clermont,FL",1110 E Highway 50, Clermont,FL,34711 +-81.748025,28.575387,"DD [drivethru-yes] [wifi-no]-Clermont,FL",511 S Hwy 27, Clermont,FL,34711 +-82.187859,29.147148,"DD [drivethru-yes] [wifi-yes]-Ocala,FL",3910 SW College Rd Bldg 300, Ocala,FL,34474 +-80.632164,28.078955,"DD [drivethru-no] [wifi-no]-Melbourne,FL",700 W New Haven Ave [Hess], Melbourne,FL,32901 +-80.60381,28.21938,"DD [drivethru-no] [wifi-yes]-Patrick Afb,FL",1221 S Patrick Drive [# 110, Patrick Afb],FL,32925 +-80.532379,27.758209,"DD [drivethru-yes] [wifi-no]-Vero Beach,FL",9490 90th Ave, Vero Beach,FL,32967 +-80.605267,28.370619,"DD [drivethru-no] [wifi-yes]-Cocoa Beach,FL",5810 N Atlantic Ave, Cocoa Beach,FL,32931 +-80.593323,28.186794,"DD [drivethru-yes] [wifi-yes]-Satellite Beach,FL",1000 Hwy A1a, Satellite Beach,FL,32937 +-80.60756,28.40199,"DD [drivethru-no] [wifi-no]-Cape Canaveral,FL",Building 1748 Hanger Road [Cape Canaveral AFS], Cape Canaveral,FL,32920 +-80.621643,28.056829,"DD [drivethru-no] [wifi-no]-Melbourne,FL",3500 S Babcock St [Hess], Melbourne,FL,32901 +-80.60614,28.084864,"DD [drivethru-yes] [wifi-yes]-Melbourne,FL",1500 S Harbor City Blvd, Melbourne,FL,32901 +-80.647652,27.998634,"DD/BR [drivethru-yes] [wifi-yes]-Palm Bay,FL",898 Malabar Rd Se, Palm Bay,FL,32907 +-80.645846,28.035135,"DD [drivethru-yes] [wifi-no]-Palm Bay,FL",898 Palm Bay Rd NE, Palm Bay,FL,32905 +-80.64609,28.03515,"DD/BR [drivethru-yes] [wifi-no]-Palm Bay,FL",898 Palm Bay Road NE, Palm Bay,FL,32905 +-80.621712,28.029501,"DD/BR [drivethru-yes] [wifi-yes]-Palm Bay,FL",4897 Babcock St NE, Palm Bay,FL,32905 +-80.67276,28.102385,"DD [drivethru-yes] [wifi-yes]-Melbourne,FL",290 S Wickham Rd, Melbourne,FL,32904 +-80.759828,28.432853,"DD [drivethru-no] [wifi-no]-Cocoa,FL",4000 N US Highway 1 [Hess], Cocoa,FL,32927 +-80.743026,28.355277,"DD [drivethru-no] [wifi-no]-Cocoa,FL",1035 W King St [Hess], Cocoa,FL,32922 +-80.754875,28.386454,"DD [drivethru-no] [wifi-no]-Cocoa,FL",1600 Clearlake Rd [Hess], Cocoa,FL,32922 +-80.722191,28.316717,"DD [drivethru-no] [wifi-no]-Rockledge,FL",2045 Murrell Road [Hess], Rockledge,FL,32955 +-80.705868,28.401023,"DD [drivethru-yes] [wifi-yes]-Merritt Island,FL",2445 N Courtenay Pkwy [Suite C], Merritt Island,FL,32953 +-80.84706,28.57301,"DD [drivethru-yes] [wifi-yes]-Titusville,FL",3669 South Street, Titusville,FL,32780 +-80.67942,28.229279,"DD [drivethru-yes] [wifi-yes]-Melbourne,FL",7155 N Wickham Rd, Melbourne,FL,32940 +-80.703705,28.120808,"DD/BR [drivethru-yes] [wifi-yes]-Melbourne,FL",4640 W Eau Gallie Blvd, Melbourne,FL,32934 +-80.672447,28.146845,"DD [drivethru-yes] [wifi-yes]-Melbourne,FL",3000 Lake Washington Rd, Melbourne,FL,32934 +-80.71547,28.230213,"DD [drivethru-no] [wifi-no]-Melbourne,FL",8275 N Wickham Rd [Hess], Melbourne,FL,32940 +-81.285821,28.537286,"DD [drivethru-yes] [wifi-yes]-Orlando,FL",654 S Goldenrod Rd, Orlando,FL,32822 +-81.506546,28.387329,"DD/BR [drivethru-no] [wifi-yes]-Orlando,FL",12236 S Apopka Vineland Rd, Orlando,FL,32836 +-80.122566,25.844299,"DD [drivethru-no] [wifi-yes]-North Miami Beach,FL",3467 NE 163rd St, North Miami Beach,FL,33160 +-80.154167,25.924248,"DD [drivethru-no] [wifi-yes]-Miami,FL",16171 Biscayne Blvd [Avanti Plaza], Miami,FL,33160 +-80.171112,25.944754,"DD [drivethru-no] [wifi-yes]-Miami,FL",1496 NE Miami Gardens Dr, Miami,FL,33179 +-80.1628,25.89223,"DD [drivethru-no] [wifi-yes]-Miami,FL",12561 Biscayne Boulevard, Miami,FL,33181 +-80.27086,25.82301,"DD [drivethru-no] [wifi-yes]-Hialeah,FL",535 Hialeah Drive, Hialeah,FL,33010 +-80.262615,25.745676,"DD [drivethru-no] [wifi-no]-Miami,FL",2800 S LeJeune Rd Term D [Miami Intl Airport], Miami,FL,33134 +-80.153831,25.848492,"DD [drivethru-no] [wifi-no]-North Bay Village,FL",1508 79th St Causeway [Hess], North Bay Village,FL,33141 +-80.30574,25.86656,"DD [drivethru-no] [wifi-yes]-Hialeah,FL",1165 W 49th Street, Hialeah,FL,33012 +-80.330719,25.884035,"DD [drivethru-no] [wifi-yes]-Hialeah,FL",2360 W 68th St Unit 101, Hialeah,FL,33016 +-80.323921,25.942156,"DD [drivethru-no] [wifi-no]-Hialeah,FL",7550 NW 186th St [Hess], Hialeah,FL,33015 +-80.18699,25.82314,"DD/BR [drivethru-no] [wifi-yes]-Miami,FL",5128 Biscayne Boulevard, Miami,FL,33137 +-80.2094,25.86917,"DD/BR [drivethru-yes] [wifi-yes]-Miami,FL",658 NW 103rd Street, Miami,FL,33150 +-80.127045,25.813879,"DD/BR [drivethru-no] [wifi-yes]-Miami Beach,FL",341 41st St, Miami Beach,FL,33140 +-80.300002,25.695547,"DD [drivethru-yes] [wifi-yes]-Miami,FL",8099 S Dixie Hwy, Miami,FL,33143 +-80.20529,25.94715,"DD [drivethru-no] [wifi-yes]-Miami,FL",18801 NW 2nd Avenue, Miami,FL,33169 +-80.20181,25.92812,"DD/BR [drivethru-yes] [wifi-yes]-North Miami Beach,FL",95 NW 167th Street, North Miami Beach,FL,33169 +-80.36901,25.79276,"DD [drivethru-no] [wifi-yes]-Miami,FL",2060 NW 107th Avenue, Miami,FL,33172 +-80.246201,25.95516,"DD [drivethru-no] [wifi-no]-Miami,FL",19880 NW 27th Ave, Miami,FL,33056 +-80.29345,25.925432,"DD [drivethru-no] [wifi-no]-Hialeah,FL",5705 NW 167th St [Hess], Hialeah,FL,33015 +-80.22743,25.94172,"DD/BR [drivethru-yes] [wifi-yes]-Miami,FL",4880A Northwest 183rd Street, Miami,FL,33125 +-80.29288,25.91874,"DD [drivethru-no] [wifi-yes]-Hialeah,FL",15905 NW 57th Avenue, Hialeah,FL,33014 +-80.30711,25.94398,"DD [drivethru-yes] [wifi-yes]-Miami,FL",18714 NW 67th Avenue, Miami,FL,33015 +-80.21078,25.79138,"DD [drivethru-no] [wifi-yes]-Miami,FL",901 NW 17th Street [Jackson Memorial Hospital], Miami,FL,33136 +-80.439053,25.095613,"DD [drivethru-yes] [wifi-no]-Key Largo,FL",99675 Overseas Hwy, Key Largo,FL,33037 +-80.337311,25.799404,"DD [drivethru-no] [wifi-yes]-Miami,FL",2600 NW 87th Ave [Unit 7], Miami,FL,33172 +-80.4406,25.09442,"DD [drivethru-no] [wifi-no]-Key Largo,FL",99601 Overseas Highway [Hess], Key Largo,FL,33037 +-80.239621,25.739156,"DD [drivethru-no] [wifi-yes]-Miami,FL",2720 S Dixie Hwy [Ste E], Miami,FL,33133 +-80.34106,25.94239,"DD [drivethru-no] [wifi-yes]-Miami,FL",8595 NW 186th Street, Miami,FL,33015 +-80.38271,25.81154,"DD [drivethru-no] [wifi-no]-Doral,FL",11402 NW 41st Street, Doral,FL,33178 +-80.41707,25.68524,"DD [drivethru-yes] [wifi-yes]-Miami,FL",13730 SW 88th Street, Miami,FL,33186 +-80.386307,25.6861,"DD/BR [drivethru-yes] [wifi-yes]-Miami,FL",11790 SW 88th St, Miami,FL,33186 +-81.273895,28.094262,"DD [drivethru-no] [wifi-no]-Canoe Creek Travel Plaza [FL TP]Saint Cloud,FL",MM 229 Canoe Creek Travel Plaza [ FL-Tpk], Saint Cloud,FL,34769 +-80.822125,27.600714,"DD [drivethru-no] [wifi-no]-FL TP Fort Drum Service Plaza [FL TP] Okeechobee,FL",MM 184 Fl Turnpike [Fort Drum Service Plaza], Okeechobee,FL,34972 +-80.372843,27.302107,"DD [drivethru-no] [wifi-no]-FL TP Fort Pierce Travel Plaza [FL TP] Fort Pierce,FL",MM 144 Fort Pierce Travel Plaza, Fort Pierce,FL,34950 +-81.531547,28.574222,"DD [drivethru-no] [wifi-no]-FL TP Turkey Lake Service Plaza,FL",Florida Turnpike MP 263 [Turkey Lake Service Plaza], Ocoee,FL,34761 +-80.174834,26.634407,"DD [drivethru-no] [wifi-no]-FL TP West Palm Beach Service Plaza (FL TP] Lake Worth,FL",MM 94 West Palm Service Plaza [Fl Tpk], Lake Worth,FL,33467 +-80.183002,26.226202,"DD [drivethru-no] [wifi-no]-Margate,FL",MP#65 Pompano Beach [FL-Tpk] Pompano Service Plaza, Margate,FL,33069 +-80.305635,25.763031,"DD [drivethru-yes] [wifi-yes]-Miami,FL",6790 SW 8th St, Miami,FL,33144 +-80.33287,25.747934,"DD [drivethru-no] [wifi-yes]-Miami,FL",8565 Coral Way Ste E, Miami,FL,33155 +-80.372046,25.540189,"DD [drivethru-no] [wifi-no]-Homestead,FL",24435 SW 112th Ave [Hess], Homestead,FL,33032 +-80.351852,25.60194,"DD [drivethru-no] [wifi-yes]-Miami,FL",18099 S Dixie Hwy, Miami,FL,33157 +-80.387,25.6622,"DD [drivethru-yes] [wifi-no]-FL TP Snapper Creek Service Plaza,FL",Florida Turnpike MM 19 [Snapper Creek Service Plaza], Miami,FL,33186 +-80.205769,25.967872,"DD [drivethru-no] [wifi-no]-Miami,FL",20901 NW 2nd Ave, Miami,FL,33169 +-80.43359,25.23634,"DD [drivethru-no] [wifi-yes]-Florida City,FL",1485 S Dixie Highway, Florida City,FL,33034 +-80.475,25.44308,"DD [drivethru-no] [wifi-yes]-Homestead,FL",413 SE 1st Avenue, Homestead,FL,33034 +-80.458618,25.486799,"DD [drivethru-yes] [wifi-yes]-Homestead,FL",30125 S Dixie Hwy, Homestead,FL,33033 +-80.4315,25.76087,"DD [drivethru-no] [wifi-yes]-Miami,FL",14632 SW 8th Street, Miami,FL,33184 +-80.40473,25.6566,"DD [drivethru-yes] [wifi-yes]-Miami,FL",12930 SW 120th Street, Miami,FL,33186 +-80.330086,25.769522,"DD/BR [drivethru-no] [wifi-yes]-Miami,FL",8290 W Flagler St, Miami,FL,33144 +-80.327089,25.733209,"DD [drivethru-no] [wifi-no]-Miami,FL",8190 SW 40th St [Hess], Miami,FL,33155 +-80.369064,25.746473,"DD [drivethru-no] [wifi-yes]-Miami,FL",10754 SW 24th St, Miami,FL,33165 +-81.8995,26.67768,"DD [drivethru-yes] [wifi-yes]-North Fort Myers,FL",14701 N Cleveland Avenue, North Fort Myers,FL,33903 +-81.753761,26.33156,"DD [drivethru-no] [wifi-no]-Bonita Springs,FL",12030 Bonita Beach Rd SE Hess, Bonita Springs,FL,34135 +-81.778938,26.345486,"DD [drivethru-no] [wifi-no]-Bonita Springs,FL",27001 Old 41 Rd [Hess], Bonita Springs,FL,34135 +-81.805538,26.327614,"DD [drivethru-yes] [wifi-yes]-Bonita Springs,FL",28155 S Tamiami Trail, Bonita Springs,FL,34134 +-81.810593,26.32559,"DD [drivethru-no] [wifi-no]-Bonita Springs,FL",28070 Quail Nest Ln [Hess], Bonita Springs,FL,34135 +-81.847679,26.597334,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",3200 Colonial Blvd [Hess], Fort Myers,FL,33966 +-81.810117,26.611329,"DD [drivethru-yes] [wifi-no]-Fort Myers,FL",8291 Dani Dr, Fort Myers,FL,33966 +-81.782326,26.138008,"DD [drivethru-no] [wifi-no]-East Naples,FL",4171 Tamiami Trail [Hess], East Naples,FL,34112 +-81.766769,26.138338,"DD [drivethru-no] [wifi-no]-Naples,FL",1600 Airport Rd [Hess], Naples,FL,34112 +-81.974045,26.610142,"DD [drivethru-yes] [wifi-yes]-Cape Coral,FL",2221 Santa Barbara Blvd [Unit 101], Cape Coral,FL,33991 +-81.683037,26.534229,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",11000 Term D Access Rd [Fort Myers Intl Airport], Fort Myers,FL,33913 +-81.753632,26.52232,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",11000 Terminal Access Rd [Fort Myers Intl Airport], Fort Myers,FL,33913 +-81.801793,26.54734,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",9281 Daniels Pkwy [Hess], Fort Myers,FL,33912 +-81.763675,26.123941,"DD [drivethru-yes] [wifi-yes]-Naples,FL",3440 E Tamiami Trails, Naples,FL,34112 +-81.885216,26.520954,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",7137 Maida Ln, Fort Myers,FL,33908 +-81.80544,26.68034,"DD [drivethru-no] [wifi-no]-Tice,FL",4960 Palm Beach Blvd [Hess], Tice,FL,33905 +-81.872131,26.592403,"DD [drivethru-yes] [wifi-yes]-Fort Myers,FL",4726 S Cleveland Ave, Fort Myers,FL,33907 +-81.722485,26.709518,"DD [drivethru-yes] [wifi-yes]-Fort Myers,FL",14352 Palm Beach Blvd, Fort Myers,FL,33905 +-80.242753,25.877372,"DD [drivethru-yes] [wifi-no]-Miami,FL",11301 NW 27th Ave, Miami,FL,33167 +-81.752252,26.272883,"DD [drivethru-yes] [wifi-no]-Naples,FL",4835 Immokalee Rd, Naples,FL,34110 +-81.78624,26.211584,"DD [drivethru-yes] [wifi-yes]-Naples,FL",1575 Pine Ridge Rd, Naples,FL,34109 +-81.709885,26.273716,"DD [drivethru-yes] [wifi-yes]-Naples,FL",7775 Preserve Lane, Naples,FL,34119 +-81.802345,26.267071,"DD [drivethru-yes] [wifi-yes]-Naples,FL",887 105th Ave N, Naples,FL,34108 +-81.94097,26.64509,"DD [drivethru-no] [wifi-no]-Cape Coral,FL",402 Del Prado Boulevard South [Hess], Cape Coral,FL,33990 +-81.85257,26.52925,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",14690 Metro Parkway [Hess], Fort Myers,FL,33912 +-81.94189,26.58898,"DD [drivethru-yes] [wifi-yes]-Cape Coral,FL",3336 Del Prado Boulevard South, Cape Coral,FL,33904 +-81.906568,26.724667,"DD [drivethru-no] [wifi-no]-North Fort Myers,FL",17951 N Tamiami Trl [Hess], North Fort Myers,FL,33903 +-81.953812,26.562485,"DD [drivethru-yes] [wifi-yes]-Cape Coral,FL",904 Cape Coral Pkwy E, Cape Coral,FL,33904 +-81.699512,26.06269,"DD [drivethru-yes] [wifi-yes]-Naples,FL",6685 Collier Blvd, Naples,FL,34114 +-81.872391,26.632086,"DD [drivethru-yes] [wifi-yes]-Fort Myers,FL",2475 Cleveland Ave [Holiday Inn Site], Fort Myers,FL,33901 +-81.9743,26.63236,"DD [drivethru-no] [wifi-no]-Cape Coral,FL",1020 Santa Barbara Boulevard [Hess], Cape Coral,FL,33991 +-81.94313,26.518282,"DD [drivethru-no] [wifi-yes]-Fort Myers,FL",15301 McGregor Blvd Ste 2, Fort Myers,FL,33908 +-81.941656,26.520087,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",15260 McGregor Blvd [Hess], Fort Myers,FL,33908 +-81.88147,26.54617,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",7700 Cypress Lake Drive [Hess], Fort Myers,FL,33907 +-81.871629,26.54637,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",15150 S Cleveland Ave [Hess], Fort Myers,FL,33912 +-82.08028,26.43981,"DD [drivethru-no] [wifi-no]-Sanibel,FL",2499 Palm Ridge Road [Hess], Sanibel,FL,33957 +-81.722084,25.955158,"DD [drivethru-no] [wifi-yes]-Marco Island,FL",1089 N Collier Blvd [Ste 437], Marco Island,FL,34145 +-81.74654,26.62089,"DD [drivethru-no] [wifi-no]-Lehigh Acres,FL",5551 Lee Boulevard [Hess], Lehigh Acres,FL,33971 +-81.66836,26.61753,"DD/BR [drivethru-yes] [wifi-yes]-Lehigh Acres,FL",2706 Lee Boulevard, Lehigh Acres,FL,33971 +-81.705491,26.18098,"DD [drivethru-yes] [wifi-yes]-Naples,FL",4800 Golden Gate Pkwy, Naples,FL,34116 +-81.688262,26.15485,"DD [drivethru-yes] [wifi-yes]-Naples,FL",8885 Davis Blvd, Naples,FL,34104 +-81.687325,26.185118,"DD [drivethru-no] [wifi-no]-Naples,FL",11655 Collier Blvd [Hess], Naples,FL,34116 +-81.871727,26.571575,"DD [drivethru-yes] [wifi-yes]-Fort Myers,FL",11609 S Cleveland Ave [Ste 38], Fort Myers,FL,33907 +-81.847359,26.493328,"DD [drivethru-yes] [wifi-yes]-Fort Myers,FL",16970 S Tamiami Trl, Fort Myers,FL,33908 +-81.872664,26.636754,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",2208 Cleveland Ave [Hess], Fort Myers,FL,33901 +-81.791153,26.168896,"DD [drivethru-no] [wifi-no]-Naples,FL",2100 Goodlette Rd [Hess], Naples,FL,34102 +-81.939594,26.668214,"DD [drivethru-yes] [wifi-no]-Cape Coral,FL",1662 NE Pine Island Rd, Cape Coral,FL,33909 +-81.78653,26.54928,"DD [drivethru-no] [wifi-no]-Fort Myers,FL",13000 Treeline Avenue [Pic N Run], Fort Myers,FL,33913 +-81.797134,26.15642,"DD [drivethru-no] [wifi-no]-Naples,FL",697 9th St N [Hess], Naples,FL,34102 +-81.906792,26.682356,"DD [drivethru-yes] [wifi-no]-Cape Coral,FL",3051 NE Pine Island Rd, Cape Coral,FL,33909 +-81.25579,31.99724,"DD [drivethru-yes] [wifi-yes]-Savannah,GA",5921 Ogeechee Rd, Savannah,GA,31419 +-81.78047,32.43216,"DD/BR [drivethru-yes] [wifi-yes]-Statesboro,GA",606 Fair Road, Statesboro,GA,30458 +-81.655443,30.789697,"DD/BR [drivethru-yes] [wifi-yes]-Kingsland,GA",1317 E King Ave, Kingsland,GA,31548 +-81.655511,30.789719,"DD/BR [drivethru-yes] [wifi-yes]-Kingsland,GA",1317 Highway 40 E, Kingsland,GA,31548 +-81.659821,30.765587,"DD [drivethru-no] [wifi-no]-Kingsland,GA",1376 Scrubby Bluff Rd [WilcoHess], Kingsland,GA,31548 +-81.19632,32.194922,"DD [drivethru-no] [wifi-yes]-Port Wentworth,GA",7201 GA Highway 21, Port Wentworth,GA,31407 +-81.595991,31.836065,"DD [drivethru-yes] [wifi-yes]-Hinesville,GA",541 W Oglethorpe Hwy, Hinesville,GA,31313 +-81.486507,31.19214,"DD/BR [drivethru-yes] [wifi-yes]-Brunswick,GA",4435 Altama Ave, Brunswick,GA,31520 +-82.332898,31.230316,"DD/BR [drivethru-yes] [wifi-yes]-Waycross,GA",2403 Plant Ave, Waycross,GA,31501 +-81.580581,31.138673,"DD/BR [drivethru-yes] [wifi-yes]-Brunswick,GA",110 Dungeness Dr [Shell Oil], Brunswick,GA,31523 +-81.475711,31.162216,"DD/BR [drivethru-yes] [wifi-yes]-Brunswick,GA",41 Torras Ave, Brunswick,GA,31520 +-84.338593,34.030613,"DD [drivethru-yes] [wifi-yes]-Roswell,GA",775 Holcomb Bridge Rd, Roswell,GA,30076 +-84.308868,34.015534,"DD [drivethru-yes] [wifi-yes]-Roswell,GA",1590 Holcomb Bridge Rd [Ste 100], Roswell,GA,30076 +-84.001015,33.856209,"DD [drivethru-yes] [wifi-yes]-Snellville,GA",2115 E Main St [Ste E], Snellville,GA,30078 +-84.491531,34.018234,"DD/BR [drivethru-yes] [wifi-yes]-Marietta,GA",2765 Sandy Plains Rd, Marietta,GA,30066 +-84.671627,34.03292,"DD [drivethru-yes] [wifi-yes]-Kennesaw,GA",3139 Cobb Pkwy NW, Kennesaw,GA,30152 +-84.4795,33.976212,"DD [drivethru-yes] [wifi-no]-Marietta,GA",980 E Piedmont Rd, Marietta,GA,30062 +-84.411911,33.96386,"DD [drivethru-no] [wifi-yes]-Marietta,GA",611 Johnson Ferry Rd, Marietta,GA,30068 +-84.542856,33.569785,"DD/BR [drivethru-yes] [wifi-yes]-Union City,GA",4760 Jonesboro Rd, Union City,GA,30291 +-84.371498,33.573936,"DD [drivethru-yes] [wifi-yes]-Jonesboro,GA",6622 Tara Blvd, Jonesboro,GA,30236 +-84.057373,33.956402,"DD [drivethru-yes] [wifi-yes]-Lawrenceville,GA",4943 Sugarlaof Pkwy, Lawrenceville,GA,30044 +-84.339516,33.600574,"DD/BR [drivethru-yes] [wifi-yes]-Lake City,GA",5663 Jonesboro Rd, Lake City,GA,30260 +-84.18536,33.42343,"DD [drivethru-yes] [wifi-yes]-McDonough,GA",1407 Highway 20 West, McDonough,GA,30253 +-84.47354,33.88809,"DD/BR [drivethru-no] [wifi-yes]-Atlanta,GA",2651 Cobb Parkway, Atlanta,GA,30339 +-84.76213,33.72482,"DD [drivethru-yes] [wifi-yes]-Douglasville,GA",9476 Highway 5, Douglasville,GA,30135 +-84.256218,33.844818,"DD [drivethru-no] [wifi-yes]-Tucker,GA",3935 Lavista Rd, Tucker,GA,30084 +-84.04478,34.02621,"DD [drivethru-yes] [wifi-yes]-Suwanee,GA",2855 Lawrenceville Suwanee Rd, Suwanee,GA,30024 +-84.535593,34.10186,"DD/BR [drivethru-yes] [wifi-yes]-Woodstock,GA",875 Towne Lake Pkwy, Woodstock,GA,30188 +-84.527902,34.086701,"DD/BR [drivethru-yes] [wifi-yes]-Woodstock,GA",9755 Hwy 92, Woodstock,GA,30188 +-84.55704,34.05633,"DD [drivethru-yes] [wifi-yes]-Kennesaw,GA",4311 Bells Ferry Road Northwest [Ste A], Kennesaw,GA,30144 +-84.014153,33.637943,"DD/BR [drivethru-yes] [wifi-yes]-Conyers,GA",1890 Hwy 20 SE, Conyers,GA,30013 +-84.11161,33.90598,"DD/BR [drivethru-yes] [wifi-yes]-Lilburn,GA",3935 Lawrenceville Highway, Lilburn,GA,30047 +-84.413918,33.561823,"DD/BR [drivethru-yes] [wifi-yes]-Riverdale,GA",7087 Hwy 85, Riverdale,GA,30274 +-84.45021,33.90157,"DD [drivethru-no] [wifi-yes]-Atlanta,GA",2022 Powers Ferry Road Southeast [Ste 100], Atlanta,GA,30339 +-84.62305,33.94608,"DD/BR [drivethru-yes] [wifi-yes]-Marietta,GA",2475 Dallas Highway Southwest, Marietta,GA,30064 +-84.127378,34.174725,"DD/BR [drivethru-yes] [wifi-yes]-Cumming,GA",1165 Buford Hwy, Cumming,GA,30041 +-84.57699,33.54421,"DD/BR [drivethru-yes] [wifi-no]-Fairburn,GA",7804 Senoia Road, Fairburn,GA,30213 +-83.978371,33.629478,"DD/BR [drivethru-yes] [wifi-yes]-Conyers,GA",2280 Salem Rd SE [Ste 100], Conyers,GA,30013 +-84.435891,33.640627,"DD [drivethru-no] [wifi-no]-Atlanta,GA",6000 N Terminal Pkwy [ATL], Atlanta,GA,30320 +-84.31929,34.065838,"DD [drivethru-yes] [wifi-yes]-Roswell,GA",11706 Alpharetta Hwy [Ste 400], Roswell,GA,30076 +-84.350395,33.981133,"DD [drivethru-yes] [wifi-yes]-Atlanta,GA",8290 Roswell Rd [Ste D], Atlanta,GA,30350 +-84.12771,33.94193,"DD/BR [drivethru-yes] [wifi-no]-Duluth,GA",3725 Club Drive, Duluth,GA,30096 +-84.378143,34.055733,"DD [drivethru-yes] [wifi-yes]-Roswell,GA",550 W Crossville Rd [Ste 101], Roswell,GA,30075 +-84.591072,33.994537,"DD [drivethru-yes] [wifi-yes]-Kennesaw,GA",1610 Ridenour Blvd NW [Ste 101], Kennesaw,GA,30152 +-84.254845,33.550011,"DD [drivethru-yes] [wifi-yes]-Stockbridge,GA",5410 N Henry Blvd, Stockbridge,GA,30281 +-83.22691,34.388464,"DD [drivethru-no] [wifi-no]-Carnesville,GA",11156 Hwy 106 [WilcoHess], Carnesville,GA,30521 +-84.056867,33.211108,"DD [drivethru-no] [wifi-no]-Jackson,GA",2995 Hwy 36 W [WilcoHess], Jackson,GA,30233 +-84.55753,33.42474,"DD [drivethru-yes] [wifi-yes]-Peachtree City,GA",228 Peachtree E Shopping Centre, Peachtree City,GA,30269 +-84.291588,33.282726,"DD/BR [drivethru-yes] [wifi-yes]-Griffin,GA",1800 North Expressway, Griffin,GA,30223 +-83.90916,33.84404,"DD/BR [drivethru-yes] [wifi-yes]-Loganville,GA",4152 Atlanta Highway, Loganville,GA,30052 +-84.454933,33.449398,"DD [drivethru-yes] [wifi-no]-Fayetteville,GA",129 N Glynn St, Fayetteville,GA,30214 +-84.902481,33.721298,"DD [drivethru-no] [wifi-no]-Villa Rica,GA",95 Liberty Rd [WilcoHess], Villa Rica,GA,30180 +-84.30094,33.8993,"DD/BR [drivethru-yes] [wifi-yes]-Chamblee,GA",5558 Peachtree Industrial Boulevard, Chanblee,GA,30341 +-84.205535,33.904124,"DD [drivethru-yes] [wifi-yes]-Norcross,GA",5345 Jimmy Carter Blvd, Norcross,GA,30093 +-84.53022,33.873074,"DD [drivethru-yes] [wifi-yes]-Smyrna,GA",3300 S Cobb Dr, Smyrna,GA,30080 +-84.492629,33.830798,"DD [drivethru-yes] [wifi-yes]-Smyrna,GA",4928 S Cobb Dr SE, Smyrna,GA,30080 +-84.533806,33.943069,"DD/BR [drivethru-yes] [wifi-yes]-Marietta,GA",670 S Marietta Pkwy, Marietta,GA,30060 +-84.528603,34.020786,"DD/BR [drivethru-yes] [wifi-yes]-Marietta,GA",2885 Canton Hwy, Marietta,GA,30066 +-84.25407,34.06503,"DD [drivethru-yes] [wifi-yes]-Alpharetta,GA",3630 Old Milton Parkway [Ste 100], Alpharetta,GA,30005 +-84.790714,34.186079,"DD [drivethru-yes] [wifi-yes]-Cartersville,GA",101 Gentilly Blvd, Cartersville,GA,30120 +-84.163307,33.916641,"DD [drivethru-no] [wifi-yes]-Norcross,GA",1300 Indian Trail Rd [Ste 201B], Norcross,GA,30093 +-84.01475,34.0971,"DD/BR [drivethru-yes] [wifi-yes]-Sugar Hill,GA",4450 K Nelson Brogdon Boulevard, Sugar Hill,GA,30518 +-84.744987,33.397022,"DD [drivethru-yes] [wifi-yes]-Newnan,GA",1010 Hwy 34 E, Newman,GA,30265 +-84.256223,33.966702,"DD [drivethru-yes] [wifi-yes]-Norcross,GA",4009 Holcomb Bridge Road, Norcross,GA,30092 +-84.593076,34.061545,"DD [drivethru-yes] [wifi-yes]-Kennesaw,GA",4443 Wade Green Road, Kennesaw,GA,30144 +-85.073038,33.55642,"DD [drivethru-yes] [wifi-yes]-Carrollton,GA",1202 S Park St, Carrollton,GA,30117 +-84.942537,32.480982,"DD/BR [drivethru-yes] [wifi-no]-Columbus,GA",3201 Macon Rd [Ste A], Columbus,GA,31906 +-85.246343,34.952872,"DD [drivethru-yes] [wifi-yes]-Fort Oglethorpe,GA",589 Battlefield Pkwy, Fort Oglethorpe,GA,30742 +-82.093412,33.482729,"DD [drivethru-yes] [wifi-yes]-Augusta,GA",3668 Wheeler Rd [Ste A], Augusta,GA,30909 +-83.978842,34.52765,"DD [drivethru-yes] [wifi-yes]-Dahlonegs,GA",25 Morrison Moore Pkwy, Dahlonega,GA,30533 +-82.046165,33.512394,"DD/BR [drivethru-yes] [wifi-yes]-Augusta,GA",3024 Washington Rd, Augusta,GA,30907 +-84.498629,34.66051,"DD [drivethru-yes] [wifi-yes]-Ellijay,GA",600 Howard Simmons Rd, Ellijay,GA,30540 +-84.936426,34.559105,"DD [drivethru-no] [wifi-no]-Calhoun,GA",2111 US Hwy 41 Ne [WilcoHess], Calhoun,GA,30701 +-83.39,33.96148,"DD/BR [drivethru-yes] [wifi-yes]-Athens,GA",771 Prince Avenue, Athens,GA,30606 +-82.13313,33.54063,"DD/BR [drivethru-yes] [wifi-yes]-Evans,GA",4366 Washington Road, Evans,GA,30809 +-83.338859,33.926091,"DD/BR [drivethru-no] [wifi-no]-Athens,GA",1045 Gaines School Rd [Ste A], Athens,GA,30605 +-83.498556,34.227502,"DD [drivethru-no] [wifi-no]-Commerce,GA",4855 Maysville Rd [Flying J], Commerce,GA,30529 +-84.95527,32.50694,"DD [drivethru-yes] [wifi-yes]-Columbus,GA",2621 Manchester Expressway, Columbus,GA,31904 +-84.98755,32.47479,"DD/BR [drivethru-yes] [wifi-yes]-Columbus,GA",1523 Veterans Parkway Ste A, Columbus,GA,31901 +-85.184165,34.261408,"DD [drivethru-yes] [wifi-yes]-Rome,GA",12 Shorter Ave NW, Rome,GA,30165 +-84.173345,33.696642,"DD [drivethru-yes] [wifi-yes]-Lithonia,GA",3068 Panola Rd, Lithonia,GA,30038 +-84.569504,33.731422,"DD [drivethru-yes] [wifi-yes]-Atlanta,GA",5626 Fulton Industrial Blvd [Ste 100], Atlanta,GA,30336 +-83.82872,34.293678,"DD [drivethru-yes] [wifi-yes]-Gainesville,GA",504 Queen City Pkwy, Gainesville,GA,30501 +-83.86785,34.227874,"DD [drivethru-yes] [wifi-yes]-Oakwood,GA",3629 Mundy Mill Rd, Oakwood,GA,30566 +-84.21278,33.985,"DD/BR [drivethru-yes] [wifi-yes]-Norcross,GA",5075 Peachtree Parkway [Ste 201], Norcross,GA,30092 +-84.184166,34.011921,"DD [drivethru-yes] [wifi-yes]-Duluth,GA",5980 State Bridge Rd, Duluth,GA,30097 +-84.33472,33.94592,"DD [drivethru-yes] [wifi-yes]-Dunwoody,GA",1594 Mount Vernon Rd, Dunwoody,GA,30338 +-84.12911,34.054953,"DD [drivethru-yes] [wifi-yes]-Suwanee,GA",7810 McGinnis Ferry Rd [Ste 101], Suwanee,GA,30024 +-84.141328,33.506388,"DD [drivethru-yes] [wifi-no]-McDonough,GA",2062 Hwy 155 N [Valero], McDonough,GA,30252 +-84.753426,33.890781,"DD [drivethru-yes] [wifi-yes]-Hiram,GA",4470 Jimmy Lee Smith Pkwy, Hiram,GA,30141 +-84.600758,33.406766,"DD [drivethru-yes] [wifi-yes]-Peachtree City,GA",307 Highway 74 N, Peachtree City,GA,30269 +-84.179571,33.367115,"DD [drivethru-yes] [wifi-no]-Locust Grove,GA",2755 Highway 155, Locust Grove,GA,30248 +-83.98436,33.98805,"DD [drivethru-yes] [wifi-yes]-Lawrenceville,GA",938 Buford Drive, Lawrenceville,GA,30043 +-84.572762,34.036083,"DD/BR [drivethru-yes] [wifi-yes]-Kennesaw,GA",741 Townpark Ln NW, Kennesaw,GA,30144 +-84.10789,33.82407,"DD/BR [drivethru-yes] [wifi-yes]-Stone Mountain,GA",5161 Stone Mountain Highway, Stone Mountain,GA,30087 +-83.8329,33.5991,"DD/BR [drivethru-yes] [wifi-yes]-Covington,GA",3153 Highway 278 Northeast [Newton Plaza], Covington,GA,30014 +-84.610375,34.047971,"DD [drivethru-yes] [wifi-yes]-Kennesaw,GA",4100 Jiles Rd NW, Kennesaw,GA,30144 +-84.170029,34.008118,"DD/BR [drivethru-yes] [wifi-yes]-Duluth,GA",3435 Peachtree Industrial Blvd, Duluth,GA,30096 +-83.667656,32.554302,"DD [drivethru-yes] [wifi-yes]-Warner Robins,GA",866 Ga Hwy 96 [Ste 101], Warner Robins,GA,31088 +-83.69049,32.61743,"DD/BR [drivethru-yes] [wifi-yes]-Warner Robins,GA",3111 Watson Boulevard, Warner Robins,GA,31093 +-83.583317,32.595082,"DD [drivethru-no] [wifi-no]-Warner Robins,GA",982 Macon St [Bldg 982], Warner Robins,GA,31098 +-83.66642,32.78456,"DD [drivethru-no] [wifi-yes]-Macon,GA",4331 Pio Nono Avenue, Macon,GA,31206 +-83.687935,32.900024,"DD/BR [drivethru-yes] [wifi-yes]-Macon,GA",121 Tom Hill Sr Blvd, Macon,GA,31210 +-84.33984,33.86059,"DD [drivethru-yes] [wifi-yes]-Atlanta,GA",4040 Peachtree Road Northeast, Atlanta,GA,30319 +-84.38733,33.77237,"DD [drivethru-no] [wifi-yes]-Atlanta,GA",675 W Peachtree Street Northwest [# C10], Atlanta,GA,30308 +-84.367183,33.805739,"DD [drivethru-yes] [wifi-yes]-Atlanta,GA",1841 Piedmont Ave NE, Atlanta,GA,30324 +-84.43039,33.73891,"DD [drivethru-yes] [wifi-yes]-Atlanta,GA",1302 Ralph David Abernathy Blvd, Atlanta,GA,30310 +-84.393692,33.757904,"DD [drivethru-no] [wifi-yes]-Atlanta,GA",190 Marietta St, Atlanta,GA,30303 +-84.388695,33.757259,"DD [drivethru-no] [wifi-no]-Atlanta,GA",98 Forsyth St NW [Ste 100], Atlanta,GA,30303 +-84.312642,33.81799,"DD [drivethru-no] [wifi-yes]-Atlanta,GA",2827 N Druid Hills Rd NE, Atlanta,GA,30329 +-84.414898,33.802415,"DD [drivethru-yes] [wifi-yes]-Atlanta,GA",1766 Howell Mill Rd NW, Atlanta,GA,30318 +-84.235214,33.785332,"DD/BR [drivethru-yes] [wifi-yes]-Decatur,GA",4760 Memorial Dr, Decatur,GA,30032 +-84.3807,33.85918,"DD/BR [drivethru-yes] [wifi-no]-Atlanta,GA",3802 E Roswell Road, Atlanta,GA,30342 +-84.379143,33.920231,"DD [drivethru-yes] [wifi-yes]-Sandy Springs,GA",6060 Roswell Rd NE, Sandy Springs,GA,30328 +-84.27175,33.71019,"DD/BR [drivethru-yes] [wifi-yes]-Decatur,GA",2704 Candler Road, Decatur,GA,30034 +-84.386643,33.763182,"DD [drivethru-no] [wifi-no]-Atlanta,GA",303 Peachtree St, Atlanta,GA,30303 +-83.272245,30.754179,"DD [drivethru-no] [wifi-no]-Valdosta,GA",3460 Madison Hwy [WilcoHess], Valdosta,GA,31601 +-83.949836,30.851746,"DD/BR [drivethru-yes] [wifi-yes]-Thomasville,GA",2701 E Pinetree Blvd, Thomasville,GA,31792 +-90.601986,41.53831,"DD/BR [drivethru-yes] [wifi-yes]-Davenport,IA",1724 W Locust St, Davenport,IA,52804 +-93.6002059,41.7452162,"DD [drivethru-yes] [wifi-yes]-Ankeny,IA",1629 N Ankeny Blvd, Ankeny,IA,50023 +-93.653351,42.022749,"DD [drivethru-yes] [wifi-yes]-Ames,IA",2650 Lincoln Way, Ames,IA,50014 +-93.596306,41.551277,"DD [drivethru-yes] [wifi-yes]-Des Moines,IA",3611 SE 14th St, Des Moines,IA,50320 +-93.648053,41.533244,"DD [drivethru-no] [wifi-no]-Des Moines,IA",5800 Fleur Dr [Des Moines Int'l Airport], Des Moines,IA,50321 +-93.713212,41.590487,"DD [drivethru-yes] [wifi-yes]-West Des Moines,IA",1301 8th St, West Des Moines,IA,50265 +-93.777069,41.6004486,"DD [drivethru-yes] [wifi-yes]-West Des Moines,IA",8950 University Ave, West Des Moines,IA,50266 +-91.684237,42.034765,"DD [drivethru-yes] [wifi-yes]-Cedar Rapids,IA",2905 Blairs Ferry Rd NE, Cedar Rapids,IA,52402 +-91.5743632,41.6716119,"DD [drivethru-yes] [wifi-yes]-Coralville,IA",604 2nd St, Coralville,IA,52241 +-87.68648,41.88324,"DD [drivethru-no] [wifi-no]-Chicago,IL",101 N Western Ave, Chicago,IL,60612 +-87.620485,41.887805,"DD [drivethru-no] [wifi-no]-Chicago,IL",303 E Wacker Drive [Ste C09], Chicago,IL,60601 +-87.747458,42.033738,"DD [drivethru-no] [wifi-yes]-Skokie,IL",8408 N Skokie Blvd [Ste 1], Skokie,IL,60077 +-87.77251,42.04093,"DD [drivethru-no] [wifi-yes]-Morton Grove,IL",5843 Dempster St, Morton Grove,IL,60053 +-87.757523,42.012012,"DD/BR [drivethru-no] [wifi-yes]-Skokie,IL",5150 Touhy Ave, Skokie,IL,60077 +-87.9407,42.03641,"DD/BR [drivethru-no] [wifi-yes]-Des Plaines,IL",850 Elmhurst Rd, Des Plaines,IL,60016 +-87.801949,42.040718,"DD/BR [drivethru-yes] [wifi-yes]-Niles,IL",7039 W Dempster St, Niles,IL,60714 +-87.8491,42.066,"DD [drivethru-no] [wifi-yes]-Glenview,IL",9721 Milwaukee Ave, Glenview,IL,60025 +-88.004196,42.269524,"DD/BR [drivethru-yes] [wifi-yes]-Mundelein,IL",346 N Lake St, Mundelein,IL,60060 +-88.266981,42.058017,"DD [drivethru-yes] [wifi-yes]-Elgin,IL",1137 Dundee Ave, Elgin,IL,60120 +-87.825043,42.456921,"DD/BR [drivethru-yes] [wifi-yes]-Zion,IL",2101 Sheridan Rd, Zion,IL,60099 +-87.700371,42.065971,"DD/BR [drivethru-no] [wifi-yes]-Evanston,IL",2658 Green Bay Rd, Evanston,IL,60201 +-87.69982,42.04112,"DD/BR [drivethru-yes] [wifi-yes]-Evanston,IL",1900 Dempster St, Evanston,IL,60202 +-87.754715,42.079365,"DD [drivethru-no] [wifi-yes]-Wilmette,IL",3207 Lake Ave [# 4-A], Wilmette,IL,60091 +-88.335533,42.12368,"DD/BR [drivethru-yes] [wifi-yes]-Carpentersville,IL",2270 Randall Rd, Carpentersville,IL,60110 +-88.298447,42.03476,"DD/BR [drivethru-no] [wifi-yes]-Elgin,IL",812 E Chicago Ave, Elgin,IL,60120 +-88.092003,42.048706,"DD/BR [drivethru-yes] [wifi-yes]-Schaumburg,IL",477 West Golf Rd, Schaumburg,IL,60194 +-88.064278,42.466423,"DD [drivethru-no] [wifi-no]-Antioch,IL",475 E Hwy 173 [WalMart], Antioch,IL,60002 +-87.993385,42.176487,"DD [drivethru-no] [wifi-yes]-Buffalo Grove,IL",1169 N Old McHenry Rd [Suite 120A], Buffalo Grove,IL,60089 +-88.021889,42.078934,"DD/BR [drivethru-yes] [wifi-yes]-Rolling Meadows,IL",3350 Kirchoff Rd, Rolling Meadows,IL,60008 +-88.034091,42.096488,"DD [drivethru-yes] [wifi-no]-Rolling Meadows,IL",1300 Hicks Rd, Rolling Meadows,IL,60008 +-87.857613,42.03957,"DD [drivethru-no] [wifi-yes]-Park Ridge,IL",2606 Dempster St, Park Ridge,IL,60068 +-87.87236,42.03901,"DD [drivethru-no] [wifi-yes]-Des Plaines,IL",2120 Miner St, Des Plaines,IL,60016 +-87.907509,42.087948,"DD/BR [drivethru-yes] [wifi-yes]-Mount Prospect,IL",1301 N Wolf Rd, Mount Prospect,IL,60056 +-87.746212,42.119789,"DD [drivethru-no] [wifi-yes]-Glencoe,IL",81 Green Bay Rd, Glencoe,IL,60022 +-87.98257,42.04686,"DD/BR [drivethru-yes] [wifi-yes]-Arlington Heights,IL",2106 S Arlington Heights Rd, Arlington Heights,IL,60005 +-88.073578,42.378746,"DD [drivethru-yes] [wifi-yes]-Round Lake Beach,IL",369 E Rollins Rd, Round Lake Beach,IL,60073 +-87.798431,42.080295,"DD/BR [drivethru-yes] [wifi-no]-Glenview,IL",1410 Waukegan Rd [Ste 180], Glenview,IL,60025 +-87.839812,42.010914,"DD [drivethru-no] [wifi-yes]-Park Ridge,IL",1129 W Touhy Ave, Park Ridge,IL,60068 +-88.314507,42.058704,"DD [drivethru-yes] [wifi-yes]-Elgin,IL",80 Tyler Creek Plz, Elgin,IL,60123 +-87.960052,42.0481,"DD/BR [drivethru-yes] [wifi-yes]-Mount Prospect,IL",1001 S Busse Rd, Mount Prospect,IL,60056 +-87.85984,42.31937,"DD/BR [drivethru-yes] [wifi-yes]-North Chicago,IL",2829 22nd St, North Chicago,IL,60064 +-87.899897,42.343523,"DD/BR [drivethru-yes] [wifi-yes]-Waukegan,IL",3925 Fountain Square Place, Waukegan,IL,60085 +-87.96329,42.30598,"DD/BR [drivethru-yes] [wifi-yes]-Libertyville,IL",210 Peterson Rd, Libertyville,IL,60048 +-87.859344,41.95409,"DD [drivethru-no] [wifi-yes]-Schiller Park,IL",9280 Irving Park Rd, Schiller Park,IL,60176 +-87.72784,41.99725,"DD/BR [drivethru-no] [wifi-yes]-Lincolnwood,IL",3946 W Devon Ave, Lincolnwood,IL,60712 +-87.726624,42.011887,"DD/BR [drivethru-no] [wifi-yes]-Lincolnwood,IL",3910 W Touhy Ave, Lincolnwood,IL,60712 +-87.748115,42.004908,"DD [drivethru-no] [wifi-no]-Lincolnwood,IL",6801 N Cicero Ave, Lincolnwood,IL,60712 +-87.72537,42.0408,"DD [drivethru-yes] [wifi-yes]-Skokie,IL",3900 Dempster St, Skokie,IL,60076 +-87.86151,41.96494,"DD/BR [drivethru-yes] [wifi-yes]-Schiller Park,IL",4740 N River Road, Schiller Park,IL,60176 +-87.885508,41.952882,"DD [drivethru-yes] [wifi-yes]-Schiller Park,IL",4121 N Mannheim Rd, Schiller Park,IL,60176 +-88.00959,42.058608,"DD/BR [drivethru-no] [wifi-yes]-Rolling Meadows,IL",2230 W Algonquin Rd, Rolling Meadows,IL,60008 +-88.4344,42.15214,"DD/BR [drivethru-yes] [wifi-yes]-Huntley,IL",12090 Princeton Dr, Huntley,IL,60142 +-87.78979,42.01325,"DD [drivethru-no] [wifi-no]-Niles,IL",7235 N Caldwell, Niles,IL,60714 +-87.806389,42.017963,"DD/BR [drivethru-yes] [wifi-yes]-Niles,IL",7525 N Harlem Ave, Niles,IL,60714 +-88.20895,42.19273,"DD/BR [drivethru-yes] [wifi-yes]-Fox River Grove,IL",916 Northwest Hwy, Fox River Grove,IL,60021 +-87.885475,42.047512,"DD/BR [drivethru-yes] [wifi-yes]-Des Plaines,IL",1552 Rand Rd, Des Plaines,IL,60016 +-88.338593,42.02626,"DD/BR [drivethru-yes] [wifi-yes]-Elgin,IL",263 S Randall Rd, Elgin,IL,60123 +-87.87391,42.35891,"DD [drivethru-yes] [wifi-yes]-Waukegan,IL",21 S Greenbay Rd, Waukegan,IL,60085 +-87.85178,42.37024,"DD/BR [drivethru-yes] [wifi-yes]-Waukegan,IL",1609 Grand Ave, Waukegan,IL,60085 +-87.978012,42.0275,"DD [drivethru-yes] [wifi-yes]-Elk Grove Village,IL",700 E Higgins Rd, Elk Grove Village,IL,60007 +-88.18367,42.396709,"DD [drivethru-no] [wifi-yes]-Fox Lake,IL",5 E Grand Ave, Fox Lake,IL,60020 +-88.05901,42.02821,"DD/BR [drivethru-no] [wifi-yes]-Schaumburg,IL",893 E Schaumburg Rd, Schaumburg,IL,60194 +-87.97086,42.10614,"DD/BR [drivethru-yes] [wifi-yes]-Arlington Heights,IL",1010 E Rand Rd, Arlington Heights,IL,60004 +-88.022446,42.257568,"DD/BR [drivethru-yes] [wifi-yes]-Mundelein,IL",722 S Rt 83, Mundelein,IL,60060 +-88.02792,42.33668,"DD/BR [drivethru-yes] [wifi-yes]-Grayslake,IL",813 E Belvidere Rd, Grayslake,IL,60030 +-88.1064,42.18966,"DD/BR [drivethru-yes] [wifi-yes]-Lake Zurich,IL",485 South Rand Rd, Lake Zurich,IL,60047 +-88.04592,42.00132,"DD [drivethru-no] [wifi-yes]-Elk Grove Village,IL",801 Meacham Rd [WalMart], Elk Grove Village,IL,60007 +-88.04605,42.005288,"DD [drivethru-no] [wifi-yes]-Elk Grove Village,IL",674 Meacham Rd [Shawnway], Elk Grove Village,IL,60007 +-88.290298,42.074348,"DD/BR [drivethru-yes] [wifi-yes]-Elgin,IL",1730 N State St, Elgin,IL,60123 +-87.9803,42.1304,"DD [drivethru-no] [wifi-yes]-Arlington Heights,IL",4204-F N Arlington Heights Rd, Arlington Heights,IL,60004 +-87.708256,42.026219,"DD [drivethru-yes] [wifi-no]-Evanston,IL",2494 Oakton St, Evanston,IL,60202 +-88.144585,42.03162,"DD/BR [drivethru-no] [wifi-yes]-Hoffman Estates,IL",1165 N Barrington Rd, Hoffman Estates,IL,60194 +-88.208328,42.281525,"DD/BR [drivethru-yes] [wifi-yes]-Island Lake,IL",510 Auburn Drive [Unit A], Island Lake,IL,60042 +-88.148186,42.257118,"DD/BR [drivethru-yes] [wifi-yes]-Wauconda,IL",469 W Liberty St, Wauconda,IL,60084 +-87.98049,42.08017,"DD/BR [drivethru-yes] [wifi-yes]-Arlington Heights,IL",122 S Arlington Heights Rd, Arlington Heights,IL,60005 +-87.756599,42.041004,"DD [drivethru-no] [wifi-yes]-Skokie,IL",8800 Gross Point Rd, Skokie,IL,60077 +-88.25441,42.216312,"DD [drivethru-no] [wifi-yes]-Cary,IL",630 Northwest Hwy [Unit G], Cary,IL,60013 +-88.33651,42.180771,"DD [drivethru-yes] [wifi-yes]-Lake In The Hills,IL",280 N Randall Rd, Lake In The Hills,IL,60156 +-87.825661,42.188614,"DD/BR [drivethru-yes] [wifi-yes]-Highland Park,IL",1990 Skokie Valley Rd, Highland Park,IL,60035 +-88.257919,42.093552,"DD [drivethru-yes] [wifi-yes]-East Dundee,IL",892 S Main St [Route 72 @ Route 25], East Dundee,IL,60118 +-88.368795,42.103312,"DD [drivethru-yes] [wifi-yes]-Gilberts,IL",171 E Higgins Rd, Gilberts,IL,60136 +-88.098445,42.479122,"DD [drivethru-no] [wifi-no]-Antioch,IL",442 Orchard St, Antioch,IL,60002 +-87.925453,42.069992,"DD/BR [drivethru-yes] [wifi-yes]-Mount Prospect,IL",820 E Rand Rd, Mount Prospect,IL,60056 +-87.869255,42.085724,"DD/BR [drivethru-yes] [wifi-yes]-Glenview,IL",1750 Milwaukee Ave, Glenview,IL,60025 +-87.87447,42.01786,"DD [drivethru-no] [wifi-yes]-Des Plaines,IL",1926 S River Road, Des Plaines,IL,60018 +-88.12832,42.15396,"DD/BR [drivethru-no] [wifi-yes]-Barrington,IL",108 S Northwest Hwy, Barrington,IL,60010 +-87.973335,42.280853,"DD [drivethru-no] [wifi-yes]-Libertyville,IL",1179 W Park Ave, Libertyville,IL,60048 +-87.94456,42.24033,"DD/BR [drivethru-no] [wifi-yes]-Vernon Hills,IL",700 N Milwaukee Ave, Vernon Hills,IL,60061 +-88.02396,42.13918,"DD/BR [drivethru-yes] [wifi-yes]-Palatine,IL",801 East Dundee Rd, Palatine,IL,60074 +-88.02805,41.99377,"DD [drivethru-no] [wifi-yes]-Elk Grove Village,IL",1103 Nerge Road, Elk Grove Village,IL,60007 +-88.00592,42.139145,"DD [drivethru-yes] [wifi-yes]-Arlington Heights,IL",105 W Dundee Rd, Arlington Heights,IL,60004 +-87.68343,42.04723,"DD [drivethru-no] [wifi-no]-Evanston,IL",1612 Benson Avenue, Evanston,IL,60201 +-87.855606,42.384876,"DD [drivethru-yes] [wifi-yes]-Waukegan,IL",1800 N Lewis Ave, Waukegan,IL,60085 +-87.87315,42.34938,"DD/BR [drivethru-yes] [wifi-yes]-Waukegan,IL",2900 Belvidere Rd, Waukegan,IL,60085 +-87.86972,41.99434,"DD/BR [drivethru-no] [wifi-yes]-Rosemont,IL",9781 W Higgins Rd, Rosemont,IL,60018 +-87.89711,42.02384,"DD [drivethru-yes] [wifi-yes]-Des Plaines,IL",1080 E Oakton St, Des Plaines,IL,60018 +-87.860825,41.98521,"DD [drivethru-no] [wifi-no]-Rosemont,IL",5801 N River Rd [CTA], Rosemont,IL,60018 +-87.93748,42.02275,"DD/BR [drivethru-yes] [wifi-yes]-Des Plaines,IL",782 W Oakton, Des Plaines,IL,60018 +-88.277817,42.030102,"DD/BR [drivethru-yes] [wifi-yes]-Elgin,IL",95 Clock Tower Plz, Elgin,IL,60120 +-87.87866,41.93008,"DD/BR [drivethru-yes] [wifi-yes]-Franklin Park,IL",10131 W Grand Ave, Franklin Park,IL,60131 +-88.118483,41.971536,"DD [drivethru-yes] [wifi-no]-Roselle,IL",1550 Lake St, Roselle,IL,60172 +-87.84139,42.15278,"DD/BR [drivethru-yes] [wifi-yes]-Deerfield,IL",499 Lake Cook Rd, Deerfield,IL,60015 +-87.93672,42.37773,"DD/BR [drivethru-no] [wifi-yes]-Gurnee,IL",5414 Grand Ave, Gurnee,IL,60031 +-87.953579,42.283625,"DD [drivethru-yes] [wifi-yes]-Libertyville,IL",119 N Milwaukee Ave, Libertyville,IL,60048 +-87.9552,42.1537,"DD [drivethru-no] [wifi-yes]-Buffalo Grove,IL",1697 Weiland Rd [Cpl], Buffalo Grove,IL,60089 +-88.004669,42.332958,"DD/BR [drivethru-yes] [wifi-yes]-Third Lake,IL",34484 N US Highway 45, Third Lake,IL,60030 +-87.890373,42.109116,"DD/BR [drivethru-no] [wifi-yes]-Prospect Heights,IL",1204 S Milwaukee Ave, Prospect Heights,IL,60070 +-88.342064,41.975723,"DD [drivethru-yes] [wifi-yes]-South Elgin,IL",514 Randall Rd, South Elgin,IL,60177 +-88.4174,41.38753,"DD [drivethru-yes] [wifi-yes]-Morris,IL",197 E Us Route 6, Morris,IL,60450 +-87.874706,41.169845,"DD [drivethru-yes] [wifi-yes]-Bourbonnais,IL",112 E Bethel Dr, Bourbonnais,IL,60914 +-88.038261,41.594437,"DD [drivethru-yes] [wifi-yes]-Lockport,IL",1069 E 9th St, Lockport,IL,60441 +-87.889252,41.50362,"DD/BR [drivethru-yes] [wifi-yes]-Mokena,IL",11212 W Lincoln Hwy, Mokena,IL,60448 +-88.124748,41.554398,"DD/BR [drivethru-yes] [wifi-yes]-Crest Hill,IL",1724 N Plainfield Rd, Crest Hill,IL,60435 +-88.12459,41.5223,"DD/BR [drivethru-yes] [wifi-yes]-Joliet,IL",20 S Larkin Ave, Joliet,IL,60436 +-88.15367,41.52205,"DD/BR [drivethru-yes] [wifi-yes]-Joliet,IL",2959 W Jefferson St, Joliet,IL,60435 +-88.080994,41.516006,"DD [drivethru-yes] [wifi-yes]-Joliet,IL",422 S Chicago St, Joliet,IL,60436 +-88.16869,41.4969,"DD [drivethru-yes] [wifi-yes]-Joliet,IL",1350 Houbolt Rd, Joliet,IL,60431 +-88.16064,41.57878,"DD/BR [drivethru-yes] [wifi-yes]-Joliet,IL",3011 Plainfield Rd, Joliet,IL,60432 +-88.199432,41.538155,"DD/BR [drivethru-yes] [wifi-yes]-Shorewood,IL",955 Brook Forest Ave, Shorewood,IL,60404 +-88.20299,41.63971,"DD/BR [drivethru-yes] [wifi-yes]-Plainfield,IL",13313 S State Route 59, Plainfield,IL,60544 +-88.271095,41.455242,"DD/BR [drivethru-yes] [wifi-yes]-Minooka,IL",106 N Ridge Rd, Minooka,IL,60447 +-87.982841,41.482681,"DD/BR [drivethru-yes] [wifi-yes]-New Lenox,IL",970 Laraway Rd, New Lenox,IL,60451 +-88.292,42.22607,"DD/BR [drivethru-yes] [wifi-yes]-Crystal Lake,IL",4817 Northwest Hwy, Crystal Lake,IL,60014 +-87.849541,41.516304,"DD/BR [drivethru-yes] [wifi-yes]-Frankfort,IL",20551 S Lagrange Rd, Frankfort,IL,60423 +-88.270218,41.419495,"DD [drivethru-yes] [wifi-yes]-Minooka,IL",2081 Ridge Rd [Suite 125], Minooka,IL,60447 +-87.95645,41.512441,"DD/BR [drivethru-no] [wifi-yes]-New Lenox,IL",429 E Lincoln Hwy [Walmart], New Lenox,IL,60451 +-88.374209,42.23357,"DD [drivethru-no] [wifi-yes]-Crystal Lake,IL",450 N Route 31 [shop 190], Crystal Lake,IL,60014 +-88.198339,41.565148,"DD [drivethru-no] [wifi-yes]-Joliet,IL",4708 Caton Farm Rd, Joliet,IL,60586 +-88.199516,41.5452,"DD [drivethru-no] [wifi-yes]-Joliet,IL",1401 Illinois Route 59 [Wal Mart], Joliet,IL,60435 +-88.2043,41.666054,"DD [drivethru-yes] [wifi-yes]-Plainfield,IL",11900 S Route 59, Plainfield,IL,60585 +-88.123367,41.608986,"DD [drivethru-no] [wifi-no]-Romeoville,IL",420 S Weber Rd [WalMart], Romeoville,IL,60446 +-88.83594,41.37038,"DD [drivethru-yes] [wifi-yes]-Ottawa,IL",2749 Columbus Street, Ottawa,IL,61350 +-88.268631,42.367142,"DD [drivethru-yes] [wifi-yes]-McHenry,IL",3523 Diamond Dr, McHenry,IL,60051 +-88.285332,42.347736,"DD/BR [drivethru-yes] [wifi-yes]-Mchenry,IL",4502 W Elm St, Mchenry,IL,60050 +-88.43414,42.31245,"DD/BR [drivethru-yes] [wifi-yes]-Woodstock,IL",335 S Eastwood Drive, Woodstock,IL,60098 +-88.08051,41.65325,"DD/BR [drivethru-yes] [wifi-yes]-Romeoville,IL",649 N Independence, Romeoville,IL,60441 +-88.125061,41.652439,"DD [drivethru-no] [wifi-no]-Romeoville,IL",1300 Normantown Rd, Romeoville,IL,60446 +-88.20358,41.65178,"DD [drivethru-no] [wifi-yes]-Plainfield,IL",12690 S Route 59 [Wal Mart], Plainfield,IL,60585 +-89.123607,41.373035,"DD [drivethru-no] [wifi-no]-Peru,IL",5307 State Route 251 [Walmart], Peru,IL,61354 +-87.62986,41.750702,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",207 W 79th St, Chicago,IL,60620 +-87.6605,41.99693,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",6332 N Broadway St, Chicago,IL,60660 +-87.66853,41.93607,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",3000 N Ashland Ave, Chicago,IL,60657 +-87.66496,41.78673,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",1614 W 59th St, Chicago,IL,60636 +-87.65871,41.91751,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",1982 N Clybourn, Chicago,IL,60614 +-87.681374,41.704456,"DD [drivethru-no] [wifi-yes]-Chicago,IL",10401 S Western Ave, Chicago,IL,60643 +-87.65975,41.97522,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",5130 N Broadway St, Chicago,IL,60640 +-87.64944,41.9327,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",801 West Diversey Pkwy, Chicago,IL,60614 +-87.69729,41.9029,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",2801 S Kedzie Ave, Chicago,IL,60623 +-87.665313,41.815643,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",4302 S Ashland Ave, Chicago,IL,60609 +-87.60433,41.73667,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",814 E 87th St, Chicago,IL,60619 +-87.62691,41.73629,"DD [drivethru-no] [wifi-yes]-Chicago,IL",120 West 87th Street, Chicago,IL,60620 +-87.663628,41.76516,"DD [drivethru-no] [wifi-no]-Chicago,IL",7059 S Ashland Ave, Chicago,IL,60636 +-87.665726,41.830269,"DD [drivethru-no] [wifi-yes]-Chicago,IL",3510 S Ashland Ave [Shell], Chicago,IL,60609 +-87.80666,42.01124,"DD [drivethru-no] [wifi-yes]-Chicago,IL",7156 N Harlem Ave, Chicago,IL,60631 +-87.692513,41.975948,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",5200 N Lincoln Ave, Chicago,IL,60625 +-87.65672,41.96442,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",4547 N Broadway St, Chicago,IL,60640 +-87.644615,41.780182,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",6237 S Halsted Pkwy, Chicago,IL,60621 +-87.748169,41.938667,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",4851 W Belmont Ave, Chicago,IL,60641 +-87.766228,41.936241,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",3039 N Central Ave, Chicago,IL,60634 +-87.736023,41.953415,"DD [drivethru-no] [wifi-yes]-Chicago,IL",4313 W Irving Park Rd, Chicago,IL,60641 +-87.703117,41.785332,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",5931 S Kedzie Ave, Chicago,IL,60629 +-87.68374,41.78291,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",6100 S Western Ave, Chicago,IL,60636 +-87.702415,41.735329,"DD/BR [drivethru-no] [wifi-no]-Chicago,IL",3210 W 87th St, Chicago,IL,60652 +-87.808479,41.997566,"DD [drivethru-no] [wifi-no]-Chicago,IL",7240 W Devon Ave, Chicago,IL,60631 +-87.680158,41.903121,"DD [drivethru-no] [wifi-yes]-Chicago,IL",2111 W Division St, Chicago,IL,60622 +-87.7431,41.80857,"DD [drivethru-no] [wifi-yes]-Chicago,IL",4649 S Cicero Avenue, Chicago,IL,60632 +-87.7867,41.99611,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",6342 N Milwaukee Ave, Chicago,IL,60646 +-87.78792,41.9758,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",5205 N Nagle Avenue, Chicago,IL,60630 +-87.768715,41.909206,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",5707 W North Ave, Chicago,IL,60639 +-87.77554,41.93115,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",5959 Diversey Ave, Chicago,IL,60639 +-87.591036,41.799519,"DD/BR [drivethru-no] [wifi-no]-Chicago,IL",1418 E 53rd St, Chicago,IL,60615 +-87.741898,41.772217,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",6641 S Cicero Ave, Chicago,IL,60638 +-87.614979,41.752033,"DD [drivethru-no] [wifi-no]-Chicago,IL",7850 S Martin Luther King Dr, Chicago,IL,60619 +-87.639422,41.923883,"DD [drivethru-no] [wifi-no]-Chicago,IL",2300 N Clark St, Chicago,IL,60614 +-87.75612,41.92412,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",5201 W Fullerton Avenue, Chicago,IL,60639 +-87.75486,41.870152,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",782 N Laramie Ave, Chicago,IL,60644 +-87.78561,41.92807,"DD/BR [drivethru-no] [wifi-no]-Chicago,IL",2640 N Naragansett, Chicago,IL,60639 +-87.75204,41.91628,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",5050 W Grand Ave, Chicago,IL,60639 +-87.78468,41.90915,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",6336 W North Ave [Narangansette], Chicago,IL,60639 +-87.688644,41.954296,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",4010 N Western Ave, Chicago,IL,60618 +-87.801247,41.789616,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",5615 S Harlem, Chicago,IL,60638 +-87.790588,41.792313,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",6738 W Archer Ave, Chicago,IL,60638 +-87.722267,41.767021,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",6925 S Pulaski Rd, Chicago,IL,60629 +-87.72315,41.79363,"DD [drivethru-no] [wifi-yes]-Chicago,IL",5448 S Pulaski Road, Chicago,IL,60632 +-87.741174,41.748978,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",7905 S Cicero, Chicago,IL,60652 +-87.705681,41.953808,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",3101 W Irving Park Rd, Chicago,IL,60618 +-87.738747,41.785526,"DD [drivethru-no] [wifi-no]-Chicago,IL",4612 W 59th St [CTA], Chicago,IL,60629 +-87.720642,41.736065,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",3977 W Columbus, Chicago,IL,60652 +-87.659195,41.983505,"DD [drivethru-no] [wifi-no]-Chicago,IL",1127 W Bryn Mawr Ave [CTA], Chicago,IL,60660 +-87.786751,41.953041,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",6408 W Irving Park Rd, Chicago,IL,60634 +-87.767403,41.959858,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",4350 N Central Ave, Chicago,IL,60634 +-87.74722,41.95082,"DD [drivethru-no] [wifi-yes]-Chicago,IL",3843 N Cicero Avenue, Chicago,IL,60641 +-87.752373,41.953499,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",5000 W Irving Park Rd, Chicago,IL,60641 +-87.71106,41.94659,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",3310 W Addison St, Chicago,IL,60618 +-87.722389,41.939034,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",3801 W Belmont Ave, Chicago,IL,60618 +-87.69029,41.82263,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",3910 S Archer Ave, Chicago,IL,60632 +-87.630829,41.873959,"DD [drivethru-no] [wifi-yes]-Chicago,IL",626 S Clark Street, Chicago,IL,60605 +-87.67382,42.0084,"DD [drivethru-no] [wifi-yes]-Chicago,IL",6970 N Clark Street, Chicago,IL,60626 +-87.629196,41.780144,"DD [drivethru-no] [wifi-no]-Chicago,IL",150 W 63rd St, Chicago,IL,60621 +-87.710724,41.909946,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",3347 W North Ave, Chicago,IL,60647 +-87.74791,41.97265,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",5050 N Cicero Ave, Chicago,IL,60630 +-87.80685,41.9409,"DD [drivethru-no] [wifi-yes]-Chicago,IL",3359 N Harlem Avenue, Chicago,IL,60634 +-87.712654,41.93948,"DD [drivethru-no] [wifi-yes]-Chicago,IL",3214 N Kimball Ave, Chicago,IL,60618 +-87.650833,41.939987,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",3200 N Clark St, Chicago,IL,60657 +-87.70851,41.96962,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",4821 N Kedzie Ave, Chicago,IL,60625 +-87.8784,41.9749,"DD [drivethru-no] [wifi-no]-Chicago,IL",5600 Mannheim Rd [O'Hare Intl Airport], Chicago,IL,60666 +-87.703209,41.774876,"DD [drivethru-no] [wifi-no]-Chicago,IL",6500 S Kedzie Avenue, Chicago,IL,60629 +-87.682564,41.798962,"DD [drivethru-no] [wifi-no]-Chicago,IL",2340 W 52nd St, Chicago,IL,60609 +-87.64315,41.71619,"DD [drivethru-no] [wifi-no]-Chicago,IL",9802 S Halsted St, Chicago,IL,60628 +-87.75797,41.96885,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",4045 W Lawrence Ave, Chicago,IL,60630 +-87.752113,41.95821,"DD [drivethru-no] [wifi-yes]-Chicago,IL",4245 N Milwaukee Ave, Chicago,IL,60630 +-87.726173,41.905544,"DD [drivethru-no] [wifi-no]-Chicago,IL",1345 N Pulaski Rd, Chicago,IL,60651 +-87.767593,41.924091,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",5650 W Fullerton Ave, Chicago,IL,60639 +-87.69197,41.92487,"DD [drivethru-no] [wifi-yes]-Chicago,IL",2565 W Fullerton Avenue, Chicago,IL,60647 +-87.66073,42.00063,"DD [drivethru-no] [wifi-no]-Chicago,IL",1200 W Loyola Avenue, Chicago,IL,60626 +-87.723924,41.817766,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",4113 S Pulaski Rd, Chicago,IL,60632 +-87.58518,41.73567,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",8753 S Stony Island Avenue, Chicago,IL,60617 +-87.68822,41.94555,"DD [drivethru-no] [wifi-yes]-Chicago,IL",3535 N Western Ave, Chicago,IL,60618 +-87.66647,41.96163,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",1441 W Montrose Ave, Chicago,IL,60613 +-87.716965,41.902298,"DD/BR [drivethru-yes] [wifi-no]-Chicago,IL",3601 W Grand Ave, Chicago,IL,60651 +-87.670464,41.995789,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",6250 N Clark St, Chicago,IL,60660 +-87.699076,41.985682,"DD [drivethru-no] [wifi-yes]-Chicago,IL",5723 N California Ave [@ Lincoln Ave], Chicago,IL,60659 +-87.672791,41.968697,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",1743 W Lawrence Ave, Chicago,IL,60640 +-87.682811,41.749532,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",7921 S Western Ave, Chicago,IL,60620 +-87.649887,41.954048,"DD [drivethru-no] [wifi-yes]-Chicago,IL",3949 N Broadway St, Chicago,IL,60613 +-87.745598,41.886726,"DD [drivethru-no] [wifi-no]-Chicago,IL",4800 W Lake St [CTA], Chicago,IL,60644 +-87.806297,41.952637,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",7171 W Irving Park Rd, Chicago,IL,60634 +-87.687257,41.911828,"DD/BR [drivethru-yes] [wifi-no]-Chicago,IL",1651 N Western Ave, Chicago,IL,60647 +-87.705328,41.851752,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",3201 W Cermak Rd, Chicago,IL,60623 +-87.688644,41.966099,"DD [drivethru-no] [wifi-no]-Chicago,IL",4645 N Western Ave [CTA], Chicago,IL,60625 +-87.69017,42.01894,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",7578 N Western Ave, Chicago,IL,60645 +-87.678879,41.990845,"DD [drivethru-no] [wifi-yes]-Chicago,IL",1954 W Peterson Ave, Chicago,IL,60660 +-87.689949,41.995087,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",6254 N Western Ave, Chicago,IL,60659 +-87.714081,41.990204,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",3401 W Peterson Ave, Chicago,IL,60659 +-87.706718,41.895687,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",800 N Kedzie, Chicago,IL,60651 +-87.708313,41.997543,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",3132 W Devon Ave, Chicago,IL,60659 +-87.67304,42.01824,"DD [drivethru-no] [wifi-no]-Chicago,IL",7547 N Paulina St [CTA], Chicago,IL,60626 +-87.68509,41.85202,"DD [drivethru-no] [wifi-yes]-Chicago,IL",2356 W Cermak Rd, Chicago,IL,60608 +-87.70396,41.80807,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",4701 S Kedzie Ave [Kedzi Plaza East], Chicago,IL,60632 +-87.701146,41.691571,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",3206 W 111th St, Chicago,IL,60655 +-87.71292,41.93197,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",3427 W Diversey Ave, Chicago,IL,60647 +-87.653098,41.92539,"DD [drivethru-no] [wifi-no]-Chicago,IL",947 W Fullerton Ave, Chicago,IL,60614 +-87.673401,41.946815,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",1755 W Addison St, Chicago,IL,60613 +-87.70713,41.81232,"DD [drivethru-no] [wifi-yes]-Chicago,IL",4453 S Archer Avenue, Chicago,IL,60632 +-87.746086,41.923454,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",2337 N Cicero Ave, Chicago,IL,60639 +-87.695366,41.921837,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",2247 N Milwaukee Ave, Chicago,IL,60647 +-87.66751,41.90457,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",1244 N Ashland Ave [Milwaukee], Chicago,IL,60622 +-87.676727,41.924915,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",1927 W Fullerton Ave [Elston], Chicago,IL,60614 +-87.551233,41.729855,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",9100 S Commercial Ave, Chicago,IL,60617 +-87.77737,41.97293,"DD [drivethru-no] [wifi-no]-Chicago,IL",5949 W Higgins Rd, Chicago,IL,60630 +-87.781265,41.938511,"DD [drivethru-yes] [wifi-yes]-Chicago,IL",6200 W Belmont Ave, Chicago,IL,60634 +-87.74277,41.93159,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",4644 W Diversey, Chicago,IL,60639 +-87.776619,41.945629,"DD/BR [drivethru-yes] [wifi-yes]-Chicago,IL",6001 West Addison Ave, Chicago,IL,60634 +-87.76149,41.968925,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",4867 N Milwaukee Ave, Chicago,IL,60630 +-87.73992,41.69616,"DD/BR [drivethru-yes] [wifi-yes]-Oak Lawn,IL",10801 S Cicero Ave, Oak Lawn,IL,60453 +-87.7626,41.80215,"DD [drivethru-no] [wifi-no]-Chicago,IL",4957 S Central Avenue, Chicago,IL,60638 +-87.67332,41.55722,"DD/BR [drivethru-yes] [wifi-yes]-Homewood,IL",2353 183rd St, Homewood,IL,60430 +-87.744102,41.852184,"DD/BR [drivethru-yes] [wifi-yes]-Cicero,IL",2147 S Cicero Ave, Cicero,IL,60804 +-87.541321,41.600212,"DD/BR [drivethru-yes] [wifi-yes]-Calumet City,IL",664 River Oaks Dr, Calumet City,IL,60409 +-87.558937,41.620548,"DD [drivethru-yes] [wifi-no]-Calumet City,IL",533 Torrence Ave, Calumet City,IL,60409 +-87.589157,41.622757,"DD/BR [drivethru-yes] [wifi-yes]-Dolton,IL",1136 E Sibley Blvd, Dolton,IL,60419 +-87.73897,41.67128,"DD/BR [drivethru-yes] [wifi-yes]-Alsip,IL",12150 S Cicero Ave, Alsip,IL,60803 +-87.636169,41.569996,"DD [drivethru-yes] [wifi-yes]-Homewood,IL",17579 Halsted St, Homewood,IL,60430 +-87.798462,41.825069,"DD/BR [drivethru-yes] [wifi-yes]-Berwyn,IL",7020 Ogden Ave, Berwyn,IL,60402 +-87.76432,41.858475,"DD/BR [drivethru-no] [wifi-yes]-Cicero,IL",5600 W 16th St, Cicero,IL,60804 +-87.557587,41.4916,"DD/BR [drivethru-yes] [wifi-yes]-Sauk Village,IL",2703 E Sauk Trail, Sauk Village,IL,60411 +-87.637489,41.480488,"DD/BR [drivethru-yes] [wifi-yes]-Chicago Heights,IL",3225 Chicago Rd, Chicago Heights,IL,60411 +-87.78887,41.8507,"DD/BR [drivethru-yes] [wifi-yes]-Berwyn,IL",6601 Cermak Rd, Berwyn,IL,60402 +-87.803711,41.850574,"DD [drivethru-yes] [wifi-no]-Berwyn,IL",2945 S Harlem, Berwyn,IL,60402 +-87.601212,41.506229,"DD [drivethru-yes] [wifi-yes]-Chicago Heights,IL",431 W 14th St [US Rt 30], Chicago Heights,IL,60411 +-87.745186,41.602982,"DD/BR [drivethru-yes] [wifi-yes]-Oak Forest,IL",5159 W 159th St, Oak Forest,IL,60452 +-87.856087,41.863853,"DD/BR [drivethru-yes] [wifi-yes]-Broadview,IL",1940 Roosevelt Rd, Broadview,IL,60155 +-87.69529,41.52801,"DD/BR [drivethru-yes] [wifi-yes]-Olympia Fields,IL",3252 Vollmer Rd, Olympia Fields,IL,60461 +-87.786453,41.690105,"DD/BR [drivethru-yes] [wifi-yes]-Worth,IL",6707 W 111th St, Worth,IL,60482 +-87.780595,41.879858,"DD/BR [drivethru-yes] [wifi-yes]-Oak Park,IL",217 W Madison St, Oak Park,IL,60302 +-87.780197,41.71973,"DD [drivethru-yes] [wifi-yes]-Chicago Ridge,IL",6408 W 95th St, Chicago Ridge,IL,60415 +-87.815277,41.718456,"DD/BR [drivethru-yes] [wifi-yes]-Hickory Hills,IL",7847 W 95th St, Hickory Hills,IL,60457 +-87.78014,41.73355,"DD/BR [drivethru-yes] [wifi-yes]-Oak Lawn,IL",8723 Ridgeland Ave, Oak Lawn,IL,60453 +-87.677284,41.632488,"DD [drivethru-no] [wifi-yes]-Blue Island,IL",13101 S Western Ave, Blue Island,IL,60406 +-87.71774,41.6268,"DD [drivethru-yes] [wifi-yes]-Midlothian,IL",14631 Pulaski Rd, Midlothian,IL,60445 +-87.69073,41.60081,"DD/BR [drivethru-yes] [wifi-yes]-Markham,IL",3011 W 159th St, Markham,IL,60426 +-87.59536,41.61993,"DD/BR [drivethru-yes] [wifi-yes]-South Holland,IL",460 E 162nd St, South Holland,IL,60473 +-87.883453,41.883343,"DD/BR [drivethru-yes] [wifi-yes]-Bellwood,IL",502 Mannheim Rd, Bellwood,IL,60104 +-87.911148,41.907276,"DD/BR [drivethru-yes] [wifi-yes]-Northlake,IL",148 W North Ave, Northlake,IL,60164 +-87.804459,41.908745,"DD [drivethru-no] [wifi-yes]-Oak Park,IL",7117 North Ave, Oak Park,IL,60302 +-87.74778,41.719456,"DD [drivethru-no] [wifi-yes]-Oak Lawn,IL",5116 Museum Dr, Oak Lawn,IL,60453 +-87.863846,41.884914,"DD [drivethru-yes] [wifi-yes]-Bellwood,IL",440 25th Ave, Bellwood,IL,60104 +-87.911652,41.889404,"DD [drivethru-yes] [wifi-yes]-Berkeley,IL",5725 St Charles Rd, Berkeley,IL,60163 +-87.81626,41.87941,"DD/BR [drivethru-no] [wifi-yes]-Forest Park,IL",7660 W Madison St, Forest Park,IL,60130 +-87.85154,41.817116,"DD [drivethru-yes] [wifi-yes]-Brookfield,IL",9200 Ogden Ave, Brookfield,IL,60513 +-87.801761,41.809138,"DD [drivethru-yes] [wifi-yes]-Forest View,IL",4501 S Harlem Ave, Forest View,IL,60402 +-87.71198,41.48433,"DD/BR [drivethru-yes] [wifi-yes]-Richton Park,IL",3937 Sauk Trl, Richton Park,IL,60471 +-87.88998,41.54971,"DD/BR [drivethru-yes] [wifi-yes]-Mokena,IL",18700 S Wolf Rd, Mokena,IL,60448 +-87.828833,41.543441,"DD [drivethru-yes] [wifi-no]-Mokena,IL",8810 W 191st St, Mokena,IL,60448 +-87.714798,41.556995,"DD/BR [drivethru-yes] [wifi-yes]-Country Club Hills,IL",4021 W 183rd St, Country Club Hills,IL,60478 +-87.853539,41.625,"DD/BR [drivethru-yes] [wifi-yes]-Orland Park,IL",14461 S La Grange Rd, Orland Park,IL,60462 +-87.81987,41.747509,"DD/BR [drivethru-no] [wifi-yes]-Justice,IL",8029 W 79th St, Justice,IL,60458 +-87.801201,41.779888,"DD [drivethru-yes] [wifi-yes]-Summit Argo,IL",6144 S Harlem Ave, Summit Argo,IL,60501 +-87.85096,41.937248,"DD/BR [drivethru-no] [wifi-yes]-River Grove,IL",8257 W Belmont Ave, River Grove,IL,60171 +-87.82223,41.96689,"DD [drivethru-no] [wifi-yes]-Norridge,IL",7801 W Lawrence Avenue, Norridge,IL,60706 +-87.83664,41.97116,"DD [drivethru-no] [wifi-yes]-Norridge,IL",5050 N Cumberland Ave, Norridge,IL,60706 +-87.80631,41.92402,"DD/BR [drivethru-no] [wifi-yes]-Elmwood Park,IL",7201 W Grand Ave, Elmwood Park,IL,60707 +-87.795998,41.657692,"DD/BR [drivethru-yes] [wifi-yes]-Palos Heights,IL",12807 S Harlem Ave, Palos Heights,IL,60463 +-87.853867,41.652889,"DD [drivethru-yes] [wifi-yes]-Palos Park,IL",13029 S LaGrange Rd, Palos Park,IL,60464 +-87.8041,41.8503,"DD/BR [drivethru-yes] [wifi-yes]-North Riverside,IL",8360 W Cermak Ave, North Riverside,IL,60546 +-87.810829,41.850136,"DD/BR [drivethru-no] [wifi-no]-North Riverside,IL",7501 W Cermak Rd [North Riverside Mall], North Riverside,IL,60546 +-87.79068,41.55855,"DD/BR [drivethru-yes] [wifi-yes]-Tinley Park,IL",7086 W 183rd St, Tinley Park,IL,60477 +-87.82408,41.80285,"DD [drivethru-no] [wifi-no]-McCook,IL",8147 West Joliet Road, McCook,IL,60525 +-87.82127,41.81956,"DD/BR [drivethru-yes] [wifi-yes]-Lyons,IL",8001 Ogden Ave, Lyons,IL,60534 +-87.799408,41.745388,"DD/BR [drivethru-yes] [wifi-yes]-Burbank,IL",8049 S Harlem Ave, Burbank,IL,60459 +-87.792984,41.565853,"DD/BR [drivethru-no] [wifi-yes]-Tinley Park,IL",9510 179th St, Tinley Park,IL,60477 +-87.794006,41.607513,"DD [drivethru-yes] [wifi-yes]-Orland Park,IL",15609 S Harlem Ave, Orland Park,IL,60462 +-87.81223,41.58016,"DD [drivethru-no] [wifi-yes]-Tinley Park,IL",7935 W 171st St, Tinley Park,IL,60477 +-87.70548,41.72071,"DD [drivethru-no] [wifi-yes]-Evergreen Park,IL",3332 W 95th Street, Evergreen Park,IL,60805 +-87.68189,41.71551,"DD/BR [drivethru-yes] [wifi-yes]-Evergreen Park,IL",9800 S Western Ave, Evergreen Park,IL,60805 +-87.75977,41.705211,"DD [drivethru-yes] [wifi-yes]-Oak Lawn,IL",10301 Central Ave, Oak Lawn,IL,60453 +-87.558655,41.572811,"DD/BR [drivethru-yes] [wifi-no]-Lansing,IL",17733 Torrence Ave, Lansing,IL,60438 +-87.836571,41.601776,"DD/BR [drivethru-yes] [wifi-yes]-Orland Park,IL",8940 W 159th St, Orland Park,IL,60462 +-87.674828,41.622749,"DD [drivethru-yes] [wifi-yes]-Posen,IL",14690 S Dixie Highway, Posen,IL,60469 +-87.75393,41.6614,"DD/BR [drivethru-yes] [wifi-yes]-Crestwood,IL",5443 W 127th St, Crestwood,IL,60445 +-87.662542,41.677442,"DD [drivethru-yes] [wifi-no]-Calumet Park,IL",11900 S Marshfield, Calumet Park,IL,60827 +-87.73795,41.64408,"DD [drivethru-yes] [wifi-yes]-Crestwood,IL",13661 Cicero Ave, Crestwood,IL,60445 +-87.71981,41.67815,"DD [drivethru-yes] [wifi-yes]-Alsip,IL",11817 S Pulaski Rd, Alsip,IL,60803 +-87.720306,41.662216,"DD [drivethru-yes] [wifi-no]-Alsip,IL",4028 W 127th St, Alsip,IL,60803 +-87.85748,41.78333,"DD/BR [drivethru-yes] [wifi-yes]-Hodgkins,IL",9400 Joliet Rd, Hodgkins,IL,60525 +-87.79464,41.86515,"DD/BR [drivethru-yes] [wifi-yes]-Oak Park,IL",6820 W Roosevelt, Oak Park,IL,60304 +-87.696008,41.625887,"DD [drivethru-yes] [wifi-yes]-Posen,IL",3101 W 147th St [147th & Kedzie], Posen,IL,60469 +-87.66877,41.662819,"DD/BR [drivethru-no] [wifi-yes]-Blue Island,IL",2323 W 127th St, Blue Island,IL,60406 +-87.805099,41.886444,"DD [drivethru-no] [wifi-yes]-Forest Park,IL",7200 Circle Ave, Forest Park,IL,60130 +-87.895704,41.629568,"DD/BR [drivethru-yes] [wifi-yes]-Orland Park,IL",11309 W 143rd St, Orland Park,IL,60467 +-87.81615,41.67445,"DD [drivethru-no] [wifi-yes]-Palos Park,IL",11901 S 80th Ave, Palos Park,IL,60464 +-87.868813,41.790371,"DD [drivethru-no] [wifi-yes]-Countryside,IL",5500 S La Grange Rd, Countryside,IL,60525 +-87.833656,41.876144,"DD [drivethru-yes] [wifi-yes]-Maywood,IL",1317 S 1st Ave, Maywood,IL,60153 +-87.873057,41.907477,"DD [drivethru-yes] [wifi-no]-Stone Park,IL",3216 W North Ave, Stone Park,IL,60165 +-87.882645,41.86637,"DD [drivethru-yes] [wifi-no]-Westchester,IL",1005 S Mannheim Rd, Westchester,IL,60154 +-87.83781,41.90836,"DD [drivethru-no] [wifi-no]-Melrose Park,IL",8490 W North Ave, Melrose Park,IL,60160 +-87.84644,41.9028,"DD/BR [drivethru-no] [wifi-yes]-Melrose Park,IL",912 Winston Plaza, Melrose Park,IL,60160 +-87.88392,41.91185,"DD/BR [drivethru-yes] [wifi-yes]-Melrose Park,IL",2033 N Mannheim Rd [Melrose Crsg], Melrose Park,IL,60160 +-87.7392,41.5886,"DD/BR [drivethru-yes] [wifi-yes]-Oak Forest,IL",4152 W 167th St, Oak Forest,IL,60452 +-87.636612,41.594662,"DD/BR [drivethru-yes] [wifi-yes]-Harvey,IL",16242 S Halsted, Harvey,IL,60426 +-87.93112,41.63131,"DD/BR [drivethru-yes] [wifi-yes]-Homer Glen,IL",14135 S Bell Rd, Homer Glen,IL,60491 +-87.930679,41.615345,"DD [drivethru-yes] [wifi-no]-Homer Glen,IL",15060 S Bell Rd, Homer Glen,IL,60491 +-87.647143,41.872704,"DD/BR [drivethru-no] [wifi-no]-Chicago,IL",750 S Halsted St [Chicago Circle Center], Chicago,IL,60607 +-87.672341,41.917861,"DD [drivethru-no] [wifi-no]-Chicago,IL",1768 W Armitage Ave, Chicago,IL,60622 +-87.678604,41.506046,"DD/BR [drivethru-yes] [wifi-no]-Olympia Fields,IL",2520 W Lincoln Hwy, Olympia Fields,IL,60461 +-87.721558,41.744682,"DD [drivethru-no] [wifi-no]-Chicago,IL",8145 S Pulaski Rd, Chicago,IL,60652 +-87.90205,41.86345,"DD [drivethru-yes] [wifi-no]-Hillside,IL",335 S Wolf Road, Hillside,IL,60162 +-87.798126,41.702831,"DD/BR [drivethru-yes] [wifi-yes]-Palos Hills,IL",10340 S Harlem Ave, Palos Hills,IL,60465 +-87.741074,41.722954,"DD [drivethru-no] [wifi-yes]-Oak Lawn,IL",9304 S Cicero Ave, Oak Lawn,IL,60453 +-87.628983,41.622765,"DD [drivethru-no] [wifi-yes]-Dolton,IL",250 W Sibley Blvd, Dolton,IL,60419 +-88.031952,41.772266,"DD [drivethru-no] [wifi-yes]-Downers Grove,IL",6310 Woodward Ave, Downers Grove,IL,60516 +-87.680267,41.829002,"DD [drivethru-no] [wifi-no]-Chicago,IL",3528 S Leavitt St, Chicago,IL,60609 +-87.669083,41.857883,"DD [drivethru-no] [wifi-no]-Chicago,IL",1710 W 18th St, Chicago,IL,60608 +-88.27948,41.815735,"DD [drivethru-yes] [wifi-yes]-Aurora,IL",2933 Kirk Rd [Unit A], Aurora,IL,60502 +-88.013221,41.751198,"DD [drivethru-yes] [wifi-no]-Downers Grove,IL",1200 75th St, Downers Grove,IL,60516 +-87.974602,41.809998,"DD/BR [drivethru-no] [wifi-yes]-Westmont,IL",15 E Ogden Ave, Westmont,IL,60559 +-88.068018,41.695071,"DD [drivethru-no] [wifi-no]-Bolingbrook,IL",200 S Bolingbrook Dr [Walmart], Bolingbrook,IL,60440 +-88.206009,41.707375,"DD/BR [drivethru-no] [wifi-yes]-Naperville,IL",3108 State Route 59 [Suite 144], Naperville,IL,60564 +-88.026428,41.728268,"DD [drivethru-yes] [wifi-yes]-Woodridge,IL",1920 87th St [Suite C], Woodridge,IL,60517 +-88.026268,41.750938,"DD [drivethru-no] [wifi-yes]-Woodridge,IL",2401 W 75th St [Unit 17-19], Woodridge,IL,60517 +-88.367592,41.764454,"DD [drivethru-yes] [wifi-yes]-Aurora,IL",2112 W Galena Blvd, Aurora,IL,60506 +-88.32196,41.790573,"DD/BR [drivethru-yes] [wifi-yes]-North Aurora,IL",407 S Lincolnway [PO Box 278], North Aurora,IL,60542 +-88.28184,41.78329,"DD/BR [drivethru-yes] [wifi-yes]-Aurora,IL",1255 N Farnsworth Ave, Aurora,IL,60505 +-88.20795,41.75729,"DD/BR [drivethru-no] [wifi-no]-Aurora,IL",192 Fox Valley Ctr/BTQ 18, Aurora,IL,60504 +-88.074631,41.957878,"DD [drivethru-no] [wifi-yes]-Bloomingdale,IL",169 E Lake St, Bloomingdale,IL,60108 +-88.07479,41.98376,"DD [drivethru-no] [wifi-yes]-Roselle,IL",247 E Irving Park Rd, Roselle,IL,60172 +-88.205879,41.865673,"DD [drivethru-yes] [wifi-yes]-West Chicago,IL",110 W Roosevelt Rd, West Chicago,IL,60185 +-87.998718,41.809582,"DD [drivethru-yes] [wifi-yes]-Downers Grove,IL",522 Ogden Ave, Downers Grove,IL,60515 +-88.20351,41.7811,"DD [drivethru-no] [wifi-yes]-Naperville,IL",1780 N Aurora Rd, Naperville,IL,60563 +-88.205032,41.791817,"DD/BR [drivethru-yes] [wifi-yes]-Naperville,IL",1991 Brookdale Rd, Naperville,IL,60563 +-87.93486,41.86952,"DD [drivethru-no] [wifi-yes]-Elmhurst,IL",195 E Butterfield Rd [Elmhurst Plaza], Elmhurst,IL,60126 +-88.294075,41.752743,"DD [drivethru-yes] [wifi-yes]-Aurora,IL",3 N Smith St, Aurora,IL,60505 +-88.25424,41.71117,"DD/BR [drivethru-yes] [wifi-yes]-Aurora,IL",2380 South Eola Rd [Suite 100], Aurora,IL,60504 +-88.31956,41.72367,"DD [drivethru-yes] [wifi-yes]-Montgomery,IL",1601 Douglas Rd, Montgomery,IL,60538 +-87.959496,41.988647,"DD [drivethru-yes] [wifi-yes]-Bensenville,IL",1100 State Route 83, Bensenville,IL,60106 +-88.05032,41.71741,"DD [drivethru-no] [wifi-yes]-Bolingbrook,IL",595 N Pinecrest Rd [Unit A], Bolingbrook,IL,60440 +-87.979248,41.889606,"DD [drivethru-no] [wifi-yes]-Villa Park,IL",1 W St Charles Rd, Villa Park,IL,60181 +-87.9931,41.9338,"DD/BR [drivethru-yes] [wifi-yes]-Addison,IL",1750 West Lake St, Addison,IL,60101 +-88.123337,41.702957,"DD [drivethru-no] [wifi-yes]-Bolingbrook,IL",1255 W Boughton Rd, Bolingbrook,IL,60440 +-88.20582,41.76077,"DD/BR [drivethru-no] [wifi-yes]-Naperville,IL",602 S State Rte 59, Naperville,IL,60540 +-88.09259,41.85898,"DD [drivethru-yes] [wifi-yes]-Wheaton,IL",956 E Roosevelt Road, Wheaton,IL,60187 +-88.148018,41.887928,"DD [drivethru-no] [wifi-yes]-Winfield,IL",27w095 Geneva Rd, Winfield,IL,60190 +-88.167509,41.72577,"DD [drivethru-yes] [wifi-yes]-Naperville,IL",4003 Plainfield Naperville Rd, Naperville,IL,60564 +-87.9639,41.8609,"DD/BR [drivethru-yes] [wifi-yes]-Oakbrook Terrace,IL",17521 Roosevelt Rd, Oakbrook Terrace,IL,60181 +-88.018082,41.887177,"DD [drivethru-no] [wifi-yes]-Lombard,IL",1 E Saint Charles Rd, Lombard,IL,60148 +-88.01743,41.86097,"DD [drivethru-no] [wifi-yes]-Lombard,IL",1160 S Main St, Lombard,IL,60148 +-88.011033,41.839797,"DD/BR [drivethru-no] [wifi-no]-Lombard,IL",119 Yorktown Ctr, Lombard,IL,60148 +-88.120682,41.952377,"DD [drivethru-no] [wifi-yes]-Bloomingdale,IL",142 S Gary Ave [Ste 109], Bloomingdale,IL,60108 +-88.20768,41.915455,"DD/BR [drivethru-yes] [wifi-yes]-West Chicago,IL",185 W North Ave, West Chicago,IL,60185 +-88.232376,41.875565,"DD [drivethru-yes] [wifi-yes]-West Chicago,IL",1491 W Roosevelt Rd, West Chicago,IL,60185 +-89.686557,39.801088,"DD [drivethru-yes] [wifi-yes]-Springfield,IL",102 Chatham Rd, Springfield,IL,62704 +-88.306454,41.704882,"DD [drivethru-yes] [wifi-yes]-Oswego,IL",2420 Rt 34, Oswego,IL,60543 +-88.442307,41.660282,"DD/BR [drivethru-yes] [wifi-yes]-Yorkville,IL",1604 N Bridge St, Yorkville,IL,60560 +-88.566422,41.653091,"DD [drivethru-yes] [wifi-yes]-Plano,IL",7010 Burroughs Ave, Plano,IL,60545 +-88.144905,42.006447,"DD/BR [drivethru-yes] [wifi-yes]-Hanover Park,IL",7450 Barrington Rd, Hanover Park,IL,60133 +-87.93967,41.92847,"DD/BR [drivethru-yes] [wifi-yes]-Elmhurst,IL",936 N York Rd, Elmhurst,IL,60126 +-87.99395,41.96585,"DD/BR [drivethru-yes] [wifi-yes]-Wood Dale,IL",516 W Irving Park Rd, Wood Dale,IL,60191 +-88.102015,41.895723,"DD [drivethru-yes] [wifi-yes]-Carol Stream,IL",317 S Schmale Rd, Carol Stream,IL,60188 +-88.06819,41.80192,"DD/BR [drivethru-no] [wifi-yes]-Lisle,IL",819 E Ogden Ave, Lisle,IL,60532 +-88.10347,41.83135,"DD [drivethru-no] [wifi-yes]-Wheaton,IL",15 Danada Square East, Wheaton,IL,60189 +-88.25058,41.75878,"DD [drivethru-yes] [wifi-yes]-Aurora,IL",2681 E New York St [Unit #11], Aurora,IL,60502 +-88.203224,42.020008,"DD [drivethru-yes] [wifi-yes]-Streamwood,IL",656 S Sutton Rd [Route 59], Streamwood,IL,60107 +-88.076,41.9031,"DD [drivethru-yes] [wifi-yes]-Glen Ellyn,IL",22W251 North Ave, Glen Ellyn,IL,60137 +-88.14263,41.85876,"DD [drivethru-no] [wifi-yes]-Wheaton,IL",600 S County Farm Rd, Wheaton,IL,60187 +-88.125823,41.939382,"DD [drivethru-no] [wifi-yes]-Carol Stream,IL",242 West Army Trail Rd, Carol Stream,IL,60188 +-87.973984,41.751385,"DD [drivethru-no] [wifi-yes]-Darien,IL",7516 S Cass Ave [Unit 5b], Darien,IL,60561 +-88.340486,41.849623,"DD/BR [drivethru-yes] [wifi-yes]-Batavia,IL",2002 W Wilson St, Batavia,IL,60510 +-88.06819,41.69387,"DD [drivethru-yes] [wifi-yes]-Bolingbrook,IL",245 South Bolingbrook Drive, Bolingbrook,IL,60440 +-88.334915,41.912537,"DD/BR [drivethru-yes] [wifi-yes]-Saint Charles,IL",1711 W Main St, Saint Charles,IL,60174 +-88.24065,41.78251,"DD/BR [drivethru-yes] [wifi-yes]-Aurora,IL",1237 N Eola Rd, Aurora,IL,60504 +-88.207029,41.978467,"DD/BR [drivethru-yes] [wifi-yes]-Bartlett,IL",751 S Route #59, Bartlett,IL,60103 +-88.129883,41.730217,"DD [drivethru-no] [wifi-yes]-Naperville,IL",2035 S Washington St [Suite 103], Naperville,IL,60565 +-88.11557,41.753414,"DD [drivethru-yes] [wifi-yes]-Naperville,IL",1201 S Naper Blvd, Naperville,IL,60540 +-88.18618,41.76757,"DD/BR [drivethru-yes] [wifi-yes]-Naperville,IL",1580 West Ogden Ave [Suite 100], Naperville,IL,60540 +-88.13508,41.78706,"DD [drivethru-yes] [wifi-yes]-Naperville,IL",811 E Ogden Ave, Naperville,IL,60563 +-87.954971,41.960766,"DD [drivethru-yes] [wifi-yes]-Bensenville,IL",1004 W Irving Park Rd, Bensenville,IL,60106 +-87.92655,41.81616,"DD [drivethru-no] [wifi-yes]-Hinsdale,IL",150 E Ogden Avenue, Hinsdale,IL,60521 +-87.944473,41.756298,"DD [drivethru-no] [wifi-yes]-Willowbrook,IL",7247 Kingery Hwy, Willowbrook,IL,60521 +-88.151663,41.940635,"DD [drivethru-yes] [wifi-yes]-Carol Stream,IL",880 W Army Trail Rd, Carol Stream,IL,60188 +-87.987396,41.931458,"DD/BR [drivethru-yes] [wifi-yes]-Addison,IL",33 E Lake St, Addison,IL,60101 +-87.95829,41.90585,"DD/BR [drivethru-yes] [wifi-yes]-Elmhurst,IL",506 W North Ave, Elmhurst,IL,60126 +-87.975937,41.773506,"DD/BR [drivethru-yes] [wifi-yes]-Westmont,IL",19 W 63rd St, Westmont,IL,60559 +-87.96388,41.66378,"DD/BR [drivethru-yes] [wifi-yes]-Lemont,IL",12371 Derby Ln, Lemont,IL,60439 +-87.997993,41.674782,"DD [drivethru-no] [wifi-yes]-Lemont,IL",1106 State St [Space #9], Lemont,IL,60439 +-88.032509,41.807755,"DD [drivethru-yes] [wifi-yes]-Downers Grove,IL",1931 W Ogden Ave, Downers Grove,IL,60515 +-88.07307,41.78663,"DD [drivethru-no] [wifi-yes]-Lisle,IL",1109 Maple Ave, Lisle,IL,60532 +-88.194725,41.880772,"DD/BR [drivethru-yes] [wifi-yes]-West Chicago,IL",330 S Neltnor Blvd, West Chicago,IL,60185 +-89.908758,38.732362,"DD [drivethru-yes] [wifi-no]-Troy,IL",819 Edwardsville Rd [Travel Centers of America], Troy,IL,62294 +-89.984881,38.588172,"DD [drivethru-yes] [wifi-yes]-Fairview Heights,IL",6008 N Illinois St, Fairview Heights,IL,62208 +-87.635025,41.877975,"DD [drivethru-no] [wifi-yes]-Chicago,IL",229 W Jackson Blvd, Chicago,IL,60606 +-87.616737,41.83157,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",3481 S Dr Martin L King Jr Dr, Chicago,IL,60616 +-87.636155,41.896443,"DD [drivethru-no] [wifi-yes]-Chicago,IL",309 W Chicago Ave [1st Fl], Chicago,IL,60654 +-87.637858,41.911,"DD [drivethru-no] [wifi-yes]-Chicago,IL",333 W North Ave, Chicago,IL,60610 +-87.62901,41.87819,"DD [drivethru-no] [wifi-yes]-Chicago,IL",39 W Jackson Boulevard, Chicago,IL,60604 +-87.62452,41.886198,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",233 N Michigan Ave [Illinois Center], Chicago,IL,60601 +-87.62669,41.87951,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",31 E Adams St, Chicago,IL,60603 +-87.630997,41.881851,"DD [drivethru-no] [wifi-no]-Chicago,IL",105 W Madison St, Chicago,IL,60602 +-87.64195,41.8857,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",555 W Lake St, Chicago,IL,60661 +-87.631022,41.884539,"DD [drivethru-no] [wifi-yes]-Chicago,IL",100 W Randolph St [Ste C10], Chicago,IL,60601 +-87.63384,41.88195,"DD [drivethru-no] [wifi-yes]-Chicago,IL",201 W Madison St, Chicago,IL,60606 +-87.68635,41.86456,"DD [drivethru-no] [wifi-no]-Chicago,IL",2401 W Ogden Avenue, Chicago,IL,60608 +-87.649857,41.882992,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",901 W Washington Blvd, Chicago,IL,60607 +-87.630646,41.880207,"DD [drivethru-no] [wifi-no]-Chicago,IL",125 S Clark St, Chicago,IL,60603 +-87.622543,41.892712,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",200 E Ohio St [Ste 1], Chicago,IL,60611 +-87.626793,41.889423,"DD [drivethru-no] [wifi-yes]-Chicago,IL",404 N Wabash Ave, Chicago,IL,60611 +-87.62596,41.87439,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",600 S Wabash Ave, Chicago,IL,60605 +-87.641167,41.877899,"DD [drivethru-no] [wifi-yes]-Chicago,IL",547 W Jackson Blvd [Suite 125], Chicago,IL,60661 +-87.625626,41.878384,"DD [drivethru-no] [wifi-yes]-Chicago,IL",62 E Jackson Blvd, Chicago,IL,60604 +-87.634621,41.885586,"DD [drivethru-no] [wifi-yes]-Chicago,IL",215 W Lake St, Chicago,IL,60606 +-87.62581,41.86658,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",1231 S Wabash Ave, Chicago,IL,60605 +-87.63924,41.86725,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",500 W Roosevelt Rd [Suite 7], Chicago,IL,60607 +-87.63451,41.87939,"DD [drivethru-no] [wifi-yes]-Chicago,IL",211 W Adams St, Chicago,IL,60606 +-87.67001,41.87156,"DD [drivethru-no] [wifi-no]-Chicago,IL",1713 W Polk Street, Chicago,IL,60612 +-87.64111,41.88005,"DD [drivethru-no] [wifi-yes]-Chicago,IL",117 S Clinton St, Chicago,IL,60661 +-87.636467,41.878956,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",233 S Wacker Dr, Chicago,IL,60606 +-87.64809,41.90414,"DD [drivethru-no] [wifi-no]-Chicago,IL",1234 N Halsted Street, Chicago,IL,60642 +-87.631293,41.904122,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",1201 N Clark St, Chicago,IL,60610 +-87.660309,41.956665,"DD [drivethru-no] [wifi-no]-Chicago,IL",400 S Fin Place Shp Ctr/3-A, Chicago,IL,60605 +-87.63969,41.88187,"DD [drivethru-no] [wifi-yes]-Chicago,IL",500 W Madison St, Chicago,IL,60661 +-87.63397,41.88448,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",205 W Randolph St, Chicago,IL,60606 +-87.65549,41.896315,"DD [drivethru-no] [wifi-no]-Chicago,IL",801 N Milwaukee Ave, Chicago,IL,60642 +-87.630775,41.885925,"DD [drivethru-no] [wifi-no]-Chicago,IL",201 N Clark St, Chicago,IL,60601 +-87.63164,41.88448,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",100 W Randolph St [Ste 112], Chicago,IL,60601 +-87.645447,41.837921,"DD [drivethru-no] [wifi-yes]-Chicago,IL",749 W 31st St, Chicago,IL,60616 +-87.668007,41.866657,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",1651 W Roosevelt Rd, Chicago,IL,60608 +-87.632904,41.883335,"DD [drivethru-no] [wifi-yes]-Chicago,IL",166 W Washington Ave, Chicago,IL,60602 +-87.623802,41.860523,"DD [drivethru-no] [wifi-yes]-Chicago,IL",1575 S Michigan Ave, Chicago,IL,60605 +-87.628784,41.885616,"DD [drivethru-no] [wifi-no]-Chicago,IL",27 W Lake Street, Chicago,IL,60601 +-87.627495,41.877769,"DD [drivethru-no] [wifi-yes]-Chicago,IL",333 S State St [DePaul Center University], Chicago,IL,60604 +-87.626999,41.885628,"DD [drivethru-no] [wifi-yes]-Chicago,IL",27 E Lake St, Chicago,IL,60601 +-87.63443,41.883335,"DD [drivethru-no] [wifi-yes]-Chicago,IL",220 W Washington St [Relo 310043], Chicago,IL,60606 +-87.62616,41.88213,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",6 N Wabash Ave, Chicago,IL,60602 +-87.63955,41.87791,"DD [drivethru-no] [wifi-yes]-Chicago,IL",310-A S Canal St, Chicago,IL,60606 +-87.625168,41.883091,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",75 E Washington St, Chicago,IL,60602 +-87.62054,41.88445,"DD [drivethru-no] [wifi-no]-Chicago,IL",300 E Randolph Street [Blue Cross Bldg], Chicago,IL,60601 +-87.624535,41.876286,"DD [drivethru-no] [wifi-yes]-Chicago,IL",406 S Michigan Ave, Chicago,IL,60605 +-87.868378,41.079212,"DD [drivethru-yes] [wifi-no]-Kankakee,IL",2925 Riverstone Pkwy, Kankakee,IL,60901 +-87.666046,41.89085,"DD [drivethru-no] [wifi-no]-Chicago,IL",1535 W Grand Ave, Chicago,IL,60622 +-87.7268,41.95366,"DD [drivethru-no] [wifi-no]-Chicago,IL",3960 W Irving Park Rd, Chicago,IL,60618 +-87.76825,41.865406,"DD [drivethru-yes] [wifi-no]-Cicero,IL",5735 W Roosevelt Ave, Cicero,IL,60804 +-87.95982,42.02243,"DD [drivethru-no] [wifi-no]-Elk Grove Village,IL",1805 E Oakton St, Elk Grove Village,IL,60007 +-88.19289,41.45779,"DD [drivethru-no] [wifi-no]-Channahon,IL",23841 W Eames St, Channahon,IL,60410 +-87.698898,41.96867,"DD [drivethru-no] [wifi-no]-Chicago,IL",2800 W Lawrence Ave, Chicago,IL,60625 +-87.650635,41.823517,"DD [drivethru-no] [wifi-no]-Chicago,IL",970 W Pershing Rd, Chicago,IL,60609 +-87.88461,41.73791,"DD [drivethru-yes] [wifi-no]-Willow Springs,IL",8424 South Willow Springs Road, Willow Springs,IL,60480 +-87.743843,41.835556,"DD [drivethru-no] [wifi-no]-Cicero,IL",3146 S Cicero Ave, Cicero,IL,60804 +-87.766754,41.836441,"DD [drivethru-no] [wifi-no]-Cicero,IL",5756 W Ogden Ave, Cicero,IL,60804 +-87.877495,41.250957,"DD [drivethru-yes] [wifi-no]-Manteno,IL",9051 North Hwy 45/52, Manteno,IL,60950 +-87.665215,41.881475,"DD [drivethru-no] [wifi-yes]-Chicago,IL",1519 W Madison St, Chicago,IL,60607 +-87.697029,41.902756,"DD [drivethru-no] [wifi-no]-Chicago,IL",2801 W Division Street, Chicago,IL,60622 +-87.75702,41.42696,"DD [drivethru-yes] [wifi-no]-Monee,IL",6001 W Monee Manhattan Road, Monee,IL,60449 +-88.080244,41.992565,"DD [drivethru-yes] [wifi-no]-Roselle,IL",641 N Roselle Rd, Roselle,IL,60172 +-88.065497,41.761743,"DD [drivethru-yes] [wifi-no]-Woodridge,IL",6820 Rt 53, Woodridge,IL,60517 +-87.645542,41.847539,"DD/BR [drivethru-no] [wifi-yes]-Chicago,IL",2477 S Archer Ave, Chicago,IL,60616 +-87.635429,41.88802,"DD [drivethru-no] [wifi-yes]-Chicago,IL",Merchandise Mart Plz [Ste 470], Chicago,IL,60654 +-87.727615,41.960747,"DD [drivethru-no] [wifi-no]-Chicago,IL",4359 N Pulaski Ave, Chicago,IL,60641 +-87.627869,41.879051,"DD [drivethru-no] [wifi-no]-Chicago,IL",230 S State St, Chicago,IL,60604 +-90.485886,41.491322,"DD [drivethru-yes] [wifi-yes]-Moline,IL",3501 Avenue Of The Cities, Moline,IL,61265 +-89.61269,40.72987,"DD [drivethru-no] [wifi-no]-Peoria,IL",3428 N University Street, Peoria,IL,61604 +-89.59401,40.70653,"DD/BR [drivethru-yes] [wifi-yes]-Peoria,IL",1600 N Knoxville Avenue, Peoria,IL,61603 +-89.63181,40.74354,"DD/BR [drivethru-yes] [wifi-yes]-Peoria,IL",4525 North Sterling Ave, Peoria,IL,61615 +-89.62292,40.69532,"DD [drivethru-yes] [wifi-yes]-Peoria,IL",613 N Western Avenue, Peoria,IL,61604 +-88.9586,40.47376,"DD/BR [drivethru-yes] [wifi-yes]-Bloomington,IL",2306 East Oakland, Bloomington,IL,61701 +-87.865496,42.053713,"DD [drivethru-no] [wifi-yes]-Des Plaines,IL",9660 Golf Rd, Des Plaines,IL,60016 +-88.15596,40.306263,"DD/BR [drivethru-yes] [wifi-yes]-Rantoul,IL",402 S Century Blvd, Rantoul,IL,61866 +-89.644948,39.804467,"DD [drivethru-no] [wifi-no]-Springfield,IL",301 N 8th St [Sodexo], Springfield,IL,62701 +-88.23035,40.11032,"DD [drivethru-no] [wifi-yes]-Champaign,IL",607 E Green Street, Champaign,IL,61820 +-88.24348,40.11142,"DD/BR [drivethru-yes] [wifi-yes]-Champaign,IL",515 S Neil Street, Champaign,IL,61820 +-88.257797,40.128498,"DD [drivethru-yes] [wifi-yes]-Champaign,IL",1302 N Prospect Ave, Champaign,IL,61820 +-88.211174,40.116634,"DD/BR [drivethru-yes] [wifi-yes]-Urbana,IL",404 W University Ave, Urbana,IL,61801 +-84.85589,39.09665,"DD/BR [drivethru-no] [wifi-yes]-Lawrenceburg,IN",100 W Eads Parkway, Lawrenceburg,IN,47025 +-85.84754,41.58899,"DD [drivethru-yes] [wifi-yes]-Goshen,IN",906 W Pike Street, Goshen,IN,46526 +-86.138199,39.652111,"DD [drivethru-yes] [wifi-yes]-Indianapolis,IN",7853 US 31 S [Ste A], Indianapolis,IN,46227 +-86.10974,39.60635,"DD [drivethru-yes] [wifi-yes]-Greenwood,IN",120 W Smith Valley Road [Ste A], Greenwood,IN,46142 +-86.39387,39.86224,"DD [drivethru-yes] [wifi-yes]-Brownsburg,IN",13 Commerce Drive, Brownsburg,IN,46112 +-86.118675,40.000477,"DD [drivethru-yes] [wifi-yes]-Carmel,IN",2560 E 146th St, Carmel,IN,46033 +-86.31157,39.66083,"DD [drivethru-yes] [wifi-yes]-Indianapolis,IN",7015 S Kentucky Avenue [Ste 112], Indianapolis,IN,46113 +-86.195928,39.855679,"DD [drivethru-yes] [wifi-yes]-Indianapolis,IN",5620 Michigan Rd, Indianapolis,IN,46228 +-86.156234,39.76479,"DD [drivethru-no] [wifi-no]-Indianapolis,IN",125 S Pennsylvania St [Conseco Fieldhouse], Indianapolis,IN,46204 +-86.12684,39.960978,"DD [drivethru-yes] [wifi-no]-Carmel,IN",1305 S Range Line Rd, Carmel,IN,46032 +-86.180771,39.912464,"DD [drivethru-yes] [wifi-yes]-Indianapolis,IN",1216 W 86th St, Indianapolis,IN,46260 +-86.04595,39.82628,"DD [drivethru-yes] [wifi-yes]-Indianapolis,IN",3850 N Shadeland Avenue, Indianapolis,IN,46226 +-85.769478,39.806911,"DD [drivethru-yes] [wifi-yes]-Greenfield,IN",22 E McClarnon Dr, Greenfield,IN,46140 +-85.993214,39.898544,"DD [drivethru-yes] [wifi-yes]-Indianapolis,IN",9926 E 79th St, Indianapolis,IN,46256 +-86.148779,39.703938,"DD [drivethru-yes] [wifi-no]-Indianapolis,IN",4225 S East St, Indianapolis,IN,46227 +-85.740833,39.524294,"DD [drivethru-yes] [wifi-yes]-Shelbyville,IN",2546 E State Road 44, Shelbyville,IN,46176 +-86.349236,39.763489,"DD [drivethru-yes] [wifi-yes]-Avon,IN",9839 E US Hwy 36, Avon,IN,46123 +-85.13694,41.152866,"DD [drivethru-yes] [wifi-yes]-Fort Wayne,IN",8051 Coldwater Rd, Fort Wayne,IN,46825 +-85.502274,41.170361,"DD [drivethru-yes] [wifi-yes]-Columbia City,IN",545 W Connexion Way, Columbia City,IN,46725 +-85.10054,41.132469,"DD [drivethru-yes] [wifi-yes]-Fort Wayne,IN",5767 St Joe Rd, Fort Wayne,IN,46835 +-85.22856,41.05369,"DD/BR [drivethru-yes] [wifi-yes]-Fort Wayne,IN",6747 W Jefferson, Fort Wayne,IN,46804 +-85.142647,41.07774,"DD [drivethru-no] [wifi-no]-Fort Wayne,IN",900 Library Plz, Fort Wayne,IN,46802 +-87.355949,41.557571,"DD [drivethru-yes] [wifi-yes]-Gary,IN",3360 Grant St, Gary,IN,46408 +-87.4114,41.54941,"DD/BR [drivethru-yes] [wifi-yes]-Gary,IN",6060 W Ridge Road, Gary,IN,46408 +-87.43687,41.55198,"DD [drivethru-yes] [wifi-yes]-Highland,IN",3820 Ridge Road, Highland,IN,46322 +-87.24047,41.55072,"DD/BR [drivethru-yes] [wifi-no]-Hobart,IN",1621 E 37th Avenue, Hobart,IN,46342 +-87.275762,41.470922,"DD [drivethru-yes] [wifi-yes]-Merrillville,IN",4941 E 81st Ave, Merrillville,IN,46410 +-87.50903,41.58081,"DD/BR [drivethru-yes] [wifi-yes]-Hammond,IN",7306 Calumet Avenue, Hammond,IN,46324 +-87.50898,41.629799,"DD/BR [drivethru-yes] [wifi-yes]-Hammond,IN",4614 Calumet Ave, Hammond,IN,46327 +-87.04492,41.61689,"DD [drivethru-yes] [wifi-yes]-Chesterton,IN",701 Plaza Drive, Chesterton,IN,46304 +-87.33604,41.51241,"DD/BR [drivethru-yes] [wifi-yes]-Merrillville,IN",5775 S Broadway, Merrillville,IN,46410 +-86.893677,41.695221,"DD/BR [drivethru-yes] [wifi-no]-Michigan City,IN",5234 Franklin St, Michigan City,IN,46360 +-87.47093,41.49118,"DD/BR [drivethru-yes] [wifi-yes]-Schererville,IN",1695 Us Route 41, Schererville,IN,46375 +-87.48095,41.57979,"DD [drivethru-yes] [wifi-no]-Hammond,IN",7334 Indianapolis Boulevard, Hammond,IN,46324 +-87.47128,41.54573,"DD/BR [drivethru-yes] [wifi-no]-Highland,IN",9228 Indianapolis Boulevard, Highland,IN,46322 +-87.508797,41.564018,"DD/BR [drivethru-yes] [wifi-yes]-Munster,IN",8235 Calumet Ave, Munster,IN,46321 +-87.161539,41.550668,"DD/BR [drivethru-yes] [wifi-yes]-Portage,IN",6550 US Hwy 6, Portage,IN,46368 +-87.180878,41.57597,"DD [drivethru-yes] [wifi-yes]-Portage,IN",6050 Central Ave, Portage,IN,46368 +-87.3391,41.4709,"DD/BR [drivethru-yes] [wifi-yes]-Merrillville,IN",2050 W 81st Avenue, Merrillville,IN,46410 +-87.364265,41.429356,"DD/BR [drivethru-yes] [wifi-yes]-Crown Point,IN",1126 N Main St, Crown Point,IN,46307 +-87.52058,41.69899,"DD [drivethru-yes] [wifi-no]-Hammond,IN",10770 Indianapolis Boulevard, Hammond,IN,46320 +-87.50566,41.68535,"DD/BR [drivethru-yes] [wifi-yes]-Whiting,IN",1531 Indianapolis Boulevard, Whiting,IN,46394 +-87.044495,41.460083,"DD/BR [drivethru-yes] [wifi-yes]-Valparaiso,IN",1651 Morthland Dr, Valparaiso,IN,46383 +-87.04269,41.49863,"DD/BR [drivethru-yes] [wifi-yes]-Valparaiso,IN",3310 N Calumet Avenue, Valparaiso,IN,46383 +-87.450691,41.638935,"DD [drivethru-yes] [wifi-no]-East Chicago,IN",1705 E Columbus Dr, East Chicago,IN,46312 +-87.469955,41.448151,"DD/BR [drivethru-yes] [wifi-yes]-Saint John,IN",9405 Wicker Ave, Saint John,IN,46373 +-87.496002,41.491627,"DD/BR [drivethru-yes] [wifi-yes]-Dyer,IN",1371 Joliet St, Dyer,IN,46311 +-87.1256638,40.7669487,"DD [drivethru-no] [wifi-no]-Remington,IN",4230 W US Hwy 24 [Petro TC], Remington,IN,47977 +-94.668105,38.993411,"DD [drivethru-yes] [wifi-yes]-Overland Park,KS",7446 Metcalf Ave, Overland Park,KS,66204 +-94.794416,38.912284,"DD [drivethru-yes] [wifi-yes]-Olathe,KS",18051 W 119th St, Olathe,KS,66061 +-94.726823,39.014509,"DD [drivethru-yes] [wifi-yes]-Shawnee,KS",12137 Shawnee Mission Pkwy, Shawnee,KS,66216 +-94.675489,38.854781,"DD [drivethru-yes] [wifi-yes]-Overland Park,KS",7722 W 151st St, Overland Park,KS,66223 +-95.251216,38.973178,"DD [drivethru-yes] [wifi-yes]-Lawrence,KS",1400 W 6th St, Lawrence,KS,66044 +-95.24201,38.94286,"DD [drivethru-yes] [wifi-yes]-Lawrence,KS",521 W 23rd Street, Lawrence,KS,66046 +-95.603633,39.031153,"DD [drivethru-no] [wifi-no]-Tecumseh,KS",8000 SE I-70 [Topeka Service Plaza], Tecumseh,KS,66542 +-96.579572,38.095373,"DD [drivethru-no] [wifi-no]-Cassoday,KS",MP 97 Kansas Turnpike [Matfield Service Area], Cassoday,KS,66842 +-96.981548,37.766141,"DD [drivethru-no] [wifi-no]-El Dorado,KS",MP 65 Kansas Turnpike [Towanda Service Area], El Dorado,KS,67042 +-84.50115,38.04914,"DD [drivethru-no] [wifi-no]-Lexington,KY",430 W Vine St [Rupp Arena], Lexington,KY,40507 +-84.658875,38.97612,"DD/BR [drivethru-yes] [wifi-yes]-Florence,KY",8509 US Hwy 42, Florence,KY,41042 +-84.57659,39.04986,"DD/BR [drivethru-no] [wifi-yes]-Covington,KY",2410 High Street, Covington,KY,41017 +-84.492645,38.042656,"DD [drivethru-no] [wifi-yes]-Lexington,KY",333 E Main St, Lexington,KY,40502 +-84.521927,38.03437,"DD [drivethru-yes] [wifi-yes]-Lexington,KY",1306 South Broadway, Lexington,KY,40504 +-85.525674,38.24601,"DD [drivethru-yes] [wifi-no]-Louisville,KY",12401 Shelbyville Rd, Louisville,KY,40243 +-85.716294,38.235832,"DD [drivethru-yes] [wifi-no]-Louisville,KY",1250 Bardstown Rd, Louisville,KY,40204 +-86.469598,36.960186,"DD [drivethru-yes] [wifi-no]-Bowling Green,KY",2435 Nashville Rd, Bowling Green,KY,42101 +-85.924441,37.592435,"DD [drivethru-no] [wifi-no]-Glendale,KY",554 Glendale Hodgenville Rd W [Petro Travel Ctr], Glendale,KY,42740 +-90.17526,30.00476,"DD/BR [drivethru-no] [wifi-no]-Metairie,LA ",4015 Veterans Memorial Boulevard, Metairie,LA,7000 +-90.261473,29.983215,"DD [drivethru-no] [wifi-no]-Kenner,LA",900 Airline Dr [Louis Armstrong Int'l Airport], Kenner,LA,70062 +-91.109122,30.355973,"DD [drivethru-yes] [wifi-yes]-Baton Rouge,LA",9837 Bluebonnet Blvd, Baton Rouge,LA,70810 +-91.055814,30.42764,"DD [drivethru-yes] [wifi-yes]-Baton Rouge,LA",2698 S Sherwood Forest Blvd, Baton Rouge,LA,70816 +-71.126365,42.358148,"DD [drivethru-no] [wifi-no]-Allston,MA",219 Cambridge St [Hess], Allston,MA,2134 +-71.183407,42.385493,"DD [drivethru-no] [wifi-yes]-Belmont,MA",353 Trapelo Rd, Belmont,MA,2478 +-71.623592,42.354991,"DD [drivethru-no] [wifi-no]-Berlin,MA",64 River Rd W, Berlin,MA,1503 +-71.061037,42.365163,"DD [drivethru-no] [wifi-yes]-Boston,MA",180 Canal St, Boston,MA,2114 +-71.056456,42.351034,"DD [drivethru-no] [wifi-no]-Boston,MA",711 Atlantic Ave, Boston,MA,2111 +-71.095404,42.348795,"DD [drivethru-no] [wifi-no]-Boston,MA",Fenway Park [2 Locations 4 Yawkey Way], Boston,MA,2215 +-71.040153,42.366603,"DD [drivethru-no] [wifi-no]-Boston,MA",Fenway Park [Standing Room Only Deck 4], Boston,MA,2215 +-71.040048,42.367032,"DD [drivethru-no] [wifi-no]-Boston,MA",One Fleet Center [4th Floor Ste 200], Boston,MA,2114 +-71.148261,42.349602,"DD [drivethru-no] [wifi-no]-Brighton,MA",736 Cambridge St [St Elizabeth Medical Center], Brighton,MA,2135 +-69.991439,41.682363,"DD [drivethru-no] [wifi-yes]-Chatham,MA",1563 Main St, Chatham,MA,2663 +-71.034023,42.393206,"DD [drivethru-no] [wifi-yes]-Chelsea,MA",12 Washington St, Chelsea,MA,2150 +-71.0482,42.292324,"DD [drivethru-no] [wifi-no]-Dorchester,MA",545 Freeport St [Stop & Shop], Dorchester,MA,2124 +-71.028225,42.374565,"DD [drivethru-yes] [wifi-no]-East Boston,MA",100 Service Rd [Corner Of North Dr And Ser], East Boston,MA,2128 +-71.050166,42.402986,"DD [drivethru-yes] [wifi-yes]-Everett,MA",1885 Revere Beach Pkwy, Everett,MA,2149 +-71.450287,42.298983,"DD [drivethru-no] [wifi-no]-Framingham,MA",19 Temple St [Stop & Shop], Framingham,MA,1702 +-71.327156,42.614335,"DD [drivethru-no] [wifi-no]-Lowell,MA",980 Chelmsford St, Lowell,MA,1851 +-71.580191,42.340981,"DD [drivethru-no] [wifi-no]-Marlboro,MA",410 Lakeside Ave, Marlboro,MA,1752 +-71.092667,42.39135,"DD [drivethru-no] [wifi-no]-Somerville,MA",498 Mystic Ave [Stop & Shop], Somerville,MA,2145 +-71.799363,42.264419,"DD [drivethru-no] [wifi-no]-Worcester,MA",60 Foster St [Worcester Transit Facility], Worcester,MA,1608 +-71.14002,42.71102,"DD [drivethru-yes] [wifi-yes]-Lawrence,MA",100 Marston Street, Lawrence,MA,1841 +-71.131947,42.740825,"DD [drivethru-yes] [wifi-yes]-Methuen,MA",282 Merrimack St, Methuen,MA,1844 +-71.14831,42.53941,"DD [drivethru-yes] [wifi-yes]-Wilmington,MA",211 Lowell St, Wilmington,MA,1887 +-70.932816,42.520515,"DD [drivethru-yes] [wifi-yes]-Peabody,MA",162 Washington St, Peabody,MA,1960 +-71.1534,42.70029,"DD [drivethru-yes] [wifi-yes]-Lawrence,MA",61 S Union Street, Lawrence,MA,1843 +-71.10908,42.66101,"DD [drivethru-yes] [wifi-yes]-North Andover,MA",733 Turnpike Street [Ste 9], North Andover,MA,1845 +-71.354744,42.683098,"DD [drivethru-yes] [wifi-yes]-Dracut,MA",1198 Mammoth Rd, Dracut,MA,1826 +-71.329475,42.671597,"DD [drivethru-yes] [wifi-yes]-Dracut,MA",1373 Lakeview Ave, Dracut,MA,1826 +-70.90975,42.70338,"DD [drivethru-yes] [wifi-yes]-Rowley,MA",148 Newburyport Turnpike, Rowley,MA,1969 +-71.30782,42.64553,"DD [drivethru-no] [wifi-yes]-Lowell,MA",24 Merrimack Street, Lowell,MA,1852 +-71.34615,42.63729,"DD [drivethru-yes] [wifi-yes]-Lowell,MA",1505 Middlesex Street, Lowell,MA,1851 +-71.290367,42.619762,"DD [drivethru-yes] [wifi-yes]-Lowell,MA",185 Woburn St [Exxon Station], Lowell,MA,1852 +-70.813591,42.562038,"DD [drivethru-no] [wifi-yes]-Beverly,MA",15 West St, Beverly,MA,1915 +-70.8825,42.55912,"DD [drivethru-no] [wifi-no]-Beverly,MA",411 Cabot Street, Beverly,MA,1915 +-70.87909,42.54753,"DD [drivethru-no] [wifi-yes]-Beverly,MA",188 Cabot Street [# 192], Beverly,MA,1915 +-70.88531,42.58669,"DD [drivethru-yes] [wifi-yes]-Beverly,MA",41 Enon Street, Beverly,MA,1915 +-70.849602,42.576153,"DD [drivethru-no] [wifi-yes]-Beverly,MA",443 Essex St, Beverly,MA,1915 +-70.88361,42.55516,"DD [drivethru-yes] [wifi-yes]-Beverly,MA",112 Elliott Street, Beverly,MA,1915 +-71.48669,42.43341,"DD [drivethru-no] [wifi-yes]-Stow,MA",117 Great Road, Stow,MA,1775 +-71.52919,42.43464,"DD [drivethru-no] [wifi-no]-Stow,MA",626 Great Road, Stow,MA,1775 +-71.44902,42.43244,"DD [drivethru-no] [wifi-no]-Maynard,MA",5 Waltham Street, Maynard,MA,1754 +-70.93537,42.65061,"DD [drivethru-no] [wifi-yes]-Topsfield,MA",367 Boston Street, Topsfield,MA,1983 +-71.87496,42.54469,"DD [drivethru-yes] [wifi-yes]-Westminster,MA",21 Village Inn Road, Westminster,MA,1473 +-71.914223,42.546829,"DD [drivethru-yes] [wifi-yes]-Westminster,MA",97 Main St [Westminster Plaza], Westminster,MA,1473 +-71.163442,42.712951,"DD [drivethru-no] [wifi-no]-Lawrence,MA",123 Lawrence St, Lawrence,MA,1841 +-71.203018,42.589577,"DD [drivethru-yes] [wifi-yes]-Tewksbury,MA",1973 Main St, Tewksbury,MA,1876 +-71.233383,42.612049,"DD [drivethru-yes] [wifi-no]-Tewksbury,MA",5 East St, Tewksbury,MA,1876 +-71.228615,42.642857,"DD [drivethru-yes] [wifi-no]-Tewksbury,MA",1910 Andover St [Hess], Tewksbury,MA,1876 +-71.236443,42.642708,"DD [drivethru-yes] [wifi-no]-Tewksbury,MA",1785 Andover St, Tewksbury,MA,1876 +-71.26062,42.620724,"DD [drivethru-yes] [wifi-yes]-Tewksbury,MA",381 Main St, Tewksbury,MA,1876 +-71.2269,42.60708,"DD [drivethru-yes] [wifi-no]-Tewksbury,MA",1220 Main Street, Tewksbury,MA,1876 +-70.66813,42.614466,"DD [drivethru-no] [wifi-no]-Gloucester,MA",85 Washington St, Gloucester,MA,1930 +-71.940941,42.60976,"DD [drivethru-yes] [wifi-yes]-Ashburnham,MA",6 Gardner Rd, Ashburnham,MA,1430 +-71.209694,42.690277,"DD [drivethru-no] [wifi-no]-Andover,MA",139 River Rd, Andover,MA,1810 +-71.08532,42.67037,"DD [drivethru-no] [wifi-no]-North Andover,MA",701 Salem Street, North Andover,MA,1845 +-71.17282,42.75169,"DD [drivethru-no] [wifi-no]-Methuen,MA",163 Howe Street, Methuen,MA,1844 +-71.1686,42.72568,"DD [drivethru-no] [wifi-no]-Methuen,MA",70 East St [Caritas Holy Family Hospital], Methuen,MA,1844 +-71.13065,42.70269,"DD [drivethru-no] [wifi-yes]-North Andover,MA",129 Main Street, North Andover,MA,1845 +-70.94001,42.54861,"DD [drivethru-yes] [wifi-yes]-Danvers,MA",153 Endicott Street, Danvers,MA,1923 +-70.92044,42.54688,"DD [drivethru-yes] [wifi-yes]-Danvers,MA",128 Water Street, Danvers,MA,1923 +-70.969696,42.557419,"DD [drivethru-no] [wifi-no]-Danvers,MA",160 Andover Street [Cumberland Farms], Danvers,MA,1923 +-70.93077,42.55934,"DD [drivethru-yes] [wifi-no]-Danvers,MA",99 High Street, Danvers,MA,1923 +-70.940895,42.549973,"DD [drivethru-no] [wifi-yes]-Danvers,MA",50 Independence Way [Liberty Tree Mall Food Court], Danvers,MA,1923 +-70.95983,42.55252,"DD [drivethru-no] [wifi-yes]-Danvers,MA",79 Andover Street, Danvers,MA,1923 +-70.936424,42.566242,"DD [drivethru-no] [wifi-yes]-Danvers,MA",36 Maple St, Danvers,MA,1923 +-71.613701,42.540005,"DD [drivethru-yes] [wifi-yes]-Devens,MA",10 Andrews Pkwy, Devens,MA,1432 +-71.590469,42.560978,"DD [drivethru-yes] [wifi-yes]-Ayer,MA",16 Park St, Ayer,MA,1432 +-70.775314,42.630814,"DD [drivethru-no] [wifi-yes]-Essex,MA",125 Main St, Essex,MA,1929 +-70.96603,42.58661,"DD [drivethru-no] [wifi-no]-Danvers,MA",301 Newberry St [Stop & Shop], Danvers,MA,1923 +-70.95983,42.60013,"DD [drivethru-no] [wifi-no]-Danvers,MA",435 Newbury Street [Exxon Gas & Conven], Danvers,MA,1923 +-71.01532,42.593834,"DD [drivethru-no] [wifi-no]-Middleton,MA",29 S Main St [Richdale Convenience Store], Middleton,MA,1949 +-70.99555,42.57556,"DD [drivethru-yes] [wifi-yes]-Middleton,MA",260 S Main Street, Middleton,MA,1949 +-70.921745,42.50457,"DD [drivethru-yes] [wifi-no]-Salem,MA",248 Highland Ave, Salem,MA,1970 +-70.90078,42.52639,"DD [drivethru-no] [wifi-no]-Salem,MA",105 North St [Sunoco Station], Salem,MA,1970 +-70.895683,42.520386,"DD [drivethru-no] [wifi-yes]-Salem,MA",152 Washington St, Salem,MA,1970 +-70.895889,42.506943,"DD [drivethru-yes] [wifi-yes]-Salem,MA",201 Canal St, Salem,MA,1970 +-70.89135,42.52019,"DD [drivethru-no] [wifi-yes]-Salem,MA",282 Derby Street, Salem,MA,1970 +-70.896019,42.522682,"DD [drivethru-no] [wifi-yes]-Salem,MA",60 Washington St, Salem,MA,1970 +-70.93354,42.49466,"DD [drivethru-yes] [wifi-yes]-Salem,MA",429 Highland Ave, Salem,MA,1970 +-70.934288,42.493446,"DD [drivethru-no] [wifi-no]-Salem,MA",450 Highland Ave [WalMart], Salem,MA,1970 +-70.90981,42.51921,"DD [drivethru-no] [wifi-yes]-Salem,MA",68 Boston St, Salem,MA,1970 +-70.88768,42.53396,"DD [drivethru-yes] [wifi-no]-Salem,MA",31 Bridge St, Salem,MA,1970 +-70.900045,42.525967,"DD [drivethru-no] [wifi-no]-Salem,MA",90 North St [Hess Express], Salem,MA,1970 +-70.90031,42.48642,"DD [drivethru-no] [wifi-yes]-Salem,MA",9 1/2 Paradise Rd, Salem,MA,1970 +-71.318008,42.640724,"DD [drivethru-yes] [wifi-yes]-Lowell,MA",556 Dutton St, Lowell,MA,1854 +-71.302703,42.65262,"DD [drivethru-no] [wifi-yes]-Lowell,MA",560 Bridge St, Lowell,MA,1850 +-71.168472,42.542988,"DD [drivethru-yes] [wifi-no]-Wilmington,MA",586 Main Street, Wilmington,MA,1887 +-71.45675,42.61187,"DD [drivethru-no] [wifi-yes]-Westford,MA",223 Groton Road, Westford,MA,1886 +-71.420799,42.568821,"DD [drivethru-no] [wifi-no]-Westford,MA",160 Littleton Rd, Westford,MA,1886 +-71.139771,42.684845,"DD [drivethru-yes] [wifi-yes]-Lawrence,MA",226 Winthrop St, Lawrence,MA,1842 +-71.19995,42.70651,"DD [drivethru-yes] [wifi-yes]-Methuen,MA",188 Haverhill Street, Methuen,MA,1844 +-71.171967,42.690605,"DD [drivethru-yes] [wifi-yes]-Lawrence,MA",579 Andover St, Lawrence,MA,1843 +-71.159882,42.724037,"DD [drivethru-yes] [wifi-yes]-Methuen,MA",40 Jackson St, Methuen,MA,1844 +-71.112083,42.728992,"DD [drivethru-yes] [wifi-no]-North Andover,MA",1503 Osgood St, North Andover,MA,1845 +-71.2017,42.72751,"DD [drivethru-yes] [wifi-no]-Methuen,MA",147 Pelham Street, Methuen,MA,1844 +-71.163773,42.698463,"DD [drivethru-yes] [wifi-yes]-Lawrence,MA",50 S Broadway, Lawrence,MA,1843 +-71.159332,42.707844,"DD [drivethru-no] [wifi-yes]-Lawrence,MA",225 Essex St, Lawrence,MA,1842 +-71.147705,42.688774,"DD [drivethru-yes] [wifi-yes]-Lawrence,MA",99 Winthrop Ave [Rt 114], Lawrence,MA,1843 +-71.19489,42.73752,"DD [drivethru-yes] [wifi-yes]-Methuen,MA",450 Broadway, Methuen,MA,1844 +-71.184006,42.791962,"DD [drivethru-yes] [wifi-yes]-Methuen,MA",5 Ayers Village Rd, Methuen,MA,1844 +-71.180099,42.719242,"DD [drivethru-yes] [wifi-yes]-Methuen,MA",58 Broadway, Methuen,MA,1844 +-71.215279,42.703281,"DD [drivethru-no] [wifi-no]-Methuen,MA",464 Lowell St [Hess], Methuen,MA,1844 +-71.15275,42.68623,"DD [drivethru-yes] [wifi-yes]-Lawrence,MA",608 S Union Street, Lawrence,MA,1843 +-71.2677,42.55716,"DD [drivethru-yes] [wifi-no]-Billerica,MA",459 Boston Road, Billerica,MA,1821 +-71.23747,42.53512,"DD [drivethru-yes] [wifi-yes]-Billerica,MA",729 Boston Road, Billerica,MA,1821 +-71.26316,42.53323,"DD [drivethru-no] [wifi-no]-Billerica,MA",612 Middlesex Turnpike, Billerica,MA,1821 +-71.24853,42.54135,"DD [drivethru-no] [wifi-yes]-Billerica,MA",647 Boston Road, Billerica,MA,1821 +-71.303902,42.58646,"DD [drivethru-yes] [wifi-no]-North Billerica,MA",80 Chelmsford Rd, North Billerica,MA,1862 +-71.10818,42.56604,"DD [drivethru-yes] [wifi-yes]-North Reading,MA",13 Main Street, North Reading,MA,1864 +-71.07262,42.57452,"DD [drivethru-no] [wifi-yes]-North Reading,MA",6 Washington Street, North Reading,MA,1864 +-71.11913,42.59437,"DD [drivethru-yes] [wifi-yes]-North Reading,MA",293 Main, North Reading,MA,1864 +-71.28944,42.58218,"DD [drivethru-yes] [wifi-no]-North Billerica,MA",181 Boston Road, North Billerica,MA,1862 +-71.175331,42.548843,"DD [drivethru-yes] [wifi-yes]-Wilmington,MA",321 Main St, Wilmington,MA,1887 +-71.159599,42.566994,"DD [drivethru-yes] [wifi-yes]-Wilmington,MA",357 Middlesex Ave [Unit 1], Wilmington,MA,1887 +-71.18204,42.55833,"DD [drivethru-yes] [wifi-yes]-Wilmington,MA",195 Main St, Wilmington,MA,1887 +-71.13911,42.53874,"DD [drivethru-yes] [wifi-no]-Wilmington,MA",316 Lowell St, Wilmington,MA,1887 +-71.137093,42.5582,"DD [drivethru-no] [wifi-yes]-Wilmington,MA",66 Concord St [Ste S], Wilmington,MA,1887 +-71.43937,42.69754,"DD [drivethru-yes] [wifi-yes]-Tyngsboro,MA",440 Middlesex Road, Tyngsboro,MA,1879 +-71.497498,42.670719,"DD [drivethru-no] [wifi-no]-Dunstable,MA",238 Pleasant St, Dunstable,MA,1827 +-71.05253,42.62069,"DD [drivethru-yes] [wifi-yes]-Middleton,MA",323 North Main Street, Middleton,MA,1949 +-70.991135,42.596157,"DD [drivethru-no] [wifi-yes]-Middleton,MA",241 Maple St, Middleton,MA,1949 +-71.184151,42.62009,"DD [drivethru-yes] [wifi-yes]-Tewksbury,MA",1699 Shawsheen Rd [Keri Plaza], Tewksbury,MA,1876 +-71.270584,42.646198,"DD [drivethru-no] [wifi-no]-Tewksbury,MA",940 Andover St, Tewksbury,MA,1876 +-71.980743,42.56612,"DD [drivethru-yes] [wifi-yes]-Gardner,MA",33 Pearson Blvd, Gardner,MA,1440 +-72.040695,42.561043,"DD [drivethru-yes] [wifi-no]-East Templeton,MA",163 Patriots Rd [Cumberland Farms], East Templeton,MA,1438 +-71.998642,42.576313,"DD [drivethru-yes] [wifi-yes]-Gardner,MA",4 Oak St, Gardner,MA,1440 +-71.990753,42.558701,"DD [drivethru-no] [wifi-no]-Gardner,MA",372 Timpany Blvd [Stop & Shop], Gardner,MA,1440 +-71.98127,42.566257,"DD [drivethru-yes] [wifi-yes]-Gardner,MA",17 Pearson St, Gardner,MA,1440 +-71.994331,42.571533,"DD [drivethru-yes] [wifi-yes]-Gardner,MA",221 Main St [Luke Oil Gas Convience], Gardner,MA,1440 +-71.664242,42.650817,"DD [drivethru-yes] [wifi-yes]-Townsend,MA",28 Main St, Townsend,MA,1469 +-71.707047,42.665142,"DD [drivethru-yes] [wifi-yes]-Townsend,MA",17 Elm St, Townsend,MA,1469 +-70.951334,42.516706,"DD [drivethru-no] [wifi-yes]-Peabody,MA",79 Lynnfield St, Peabody,MA,1960 +-71.75052,42.5953,"DD [drivethru-yes] [wifi-no]-Lunenburg,MA",451 Massachusetts Avenue [Exxon Station], Lunenburg,MA,1462 +-72.20623,42.584896,"DD [drivethru-yes] [wifi-no]-Athol,MA",2143 Main St [Rt 2a], Athol,MA,1331 +-71.570114,42.384136,"DD [drivethru-yes] [wifi-yes]-Hudson,MA",143 Washington St, Hudson,MA,1749 +-71.611076,42.39254,"DD [drivethru-no] [wifi-no]-Berlin,MA",267 Central St, Berlin,MA,1503 +-71.565018,42.37841,"DD [drivethru-yes] [wifi-yes]-Hudson,MA",234 Washington St, Hudson,MA,1749 +-71.119148,42.695171,"DD [drivethru-no] [wifi-yes]-North Andover,MA",535 Chickering Rd [Richdale Convenience Store], North Andover,MA,1845 +-70.62606,42.656368,"DD [drivethru-no] [wifi-yes]-Rockport,MA",17 Railroad Ave, Rockport,MA,1966 +-72.287453,42.556953,"DD [drivethru-yes] [wifi-yes]-Orange,MA",167 Daniel Shays Hwy, Orange,MA,1364 +-70.923553,42.503525,"DD [drivethru-yes] [wifi-yes]-Salem,MA",262-268 Highland Ave, Salem,MA,1970 +-71.77153,42.5571,"DD [drivethru-yes] [wifi-yes]-Leominster,MA",804 N Main Street, Leominster,MA,1453 +-72.034737,43.319519,"DD [drivethru-yes] [wifi-yes]-Peabody,MA",117 Newbury St [Rt 1 N], Peabody,MA,1960 +-70.98101,42.54541,"DD [drivethru-yes] [wifi-yes]-Peabody,MA",527 Lowell, Peabody,MA,1960 +-71.007072,42.549671,"DD [drivethru-no] [wifi-yes]-Peabody,MA",672 Lowell St, Peabody,MA,1960 +-70.989831,42.53492,"DD [drivethru-yes] [wifi-no]-Peabody,MA",124 Newbury St, Peabody,MA,1960 +-71.758308,42.523609,"DD [drivethru-no] [wifi-yes]-Leominster,MA",8 Lancaster St, Leominster,MA,1453 +-71.72732,42.4932,"DD [drivethru-yes] [wifi-no]-Leominster,MA",280 New Lancaster Road [Rt 117], Leominster,MA,1453 +-71.745056,42.499031,"DD [drivethru-yes] [wifi-yes]-Leominster,MA",1001 Central St, Leominster,MA,1453 +-71.730911,42.497593,"DD [drivethru-no] [wifi-no]-Leominster,MA",275 New Lancaster Rd, Leominster,MA,1453 +-71.758423,42.528442,"DD [drivethru-yes] [wifi-yes]-Leominster,MA",76 Main St [Mobil Gas Station], Leominster,MA,1453 +-70.927078,42.527077,"DD [drivethru-no] [wifi-yes]-Peabody,MA",3 Central St, Peabody,MA,1960 +-70.950249,42.547897,"DD [drivethru-yes] [wifi-yes]-Peabody,MA",256 Andover St, Peabody,MA,1960 +-70.9422,42.54336,"DD [drivethru-no] [wifi-yes]-Peabody,MA",210 Andover Street [North Shore Mall], Peabody,MA,1960 +-70.769981,42.573608,"DD [drivethru-no] [wifi-yes]-Manchester,MA",40 Beach St [Unit B], Manchester,MA,1944 +-70.711899,42.577301,"DD [drivethru-no] [wifi-yes]-Gloucester,MA",2 Lexington Ave, Gloucester,MA,1930 +-71.08541,42.77776,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",215 Winter Street, Haverhill,MA,1830 +-71.632797,42.286507,"DD [drivethru-no] [wifi-yes]-Westborough,MA",166 Milk St, Westborough,MA,1581 +-71.103073,42.811226,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",20 Plaistow Rd, Haverhill,MA,1830 +-71.098343,42.75861,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",725 S Main St [Rt 125], Haverhill,MA,1835 +-71.03954,42.76377,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",259 Lincoln Avenue [Rivers Edge Plaza], Haverhill,MA,1830 +-71.743622,42.538643,"DD [drivethru-yes] [wifi-yes]-Leominster,MA",456 Main St, Leominster,MA,1453 +-70.895164,42.844357,"DD [drivethru-yes] [wifi-yes]-Salisbury,MA",192 Elm St [Rt 110], Salisbury,MA,1952 +-71.46095,42.54111,"DD [drivethru-no] [wifi-yes]-Littleton,MA",220 Great Road [Rt 2A], Littleton,MA,1460 +-71.509811,42.538982,"DD [drivethru-no] [wifi-no]-Littleton,MA",25 King St, Littleton,MA,1460 +-71.150742,42.672928,"DD [drivethru-no] [wifi-yes]-Andover,MA",349 N Main St, Andover,MA,1810 +-71.13879,42.65397,"DD [drivethru-no] [wifi-yes]-Andover,MA",93 Main Street, Andover,MA,1810 +-71.18256,42.64904,"DD [drivethru-no] [wifi-no]-Andover,MA",309 Lowell Street, Andover,MA,1810 +-70.87323,42.610409,"DD [drivethru-no] [wifi-yes]-South Hamilton,MA",15 Walnut Rd [Ste E], South Hamilton,MA,1982 +-70.873749,42.801987,"DD [drivethru-yes] [wifi-no]-Newburyport,MA",167 State St, Newburyport,MA,1950 +-70.87035,42.80975,"DD [drivethru-no] [wifi-no]-Newburyport,MA",62 State Street [Richdale Conv Store], Newburyport,MA,1950 +-70.860878,42.843224,"DD [drivethru-yes] [wifi-yes]-Salisbury,MA",15 Lafayette Rd, Salisbury,MA,1952 +-70.908073,42.820347,"DD [drivethru-yes] [wifi-yes]-Newburyport,MA",45 Storey Ave, Newburyport,MA,1950 +-70.90967,42.81977,"DD [drivethru-yes] [wifi-yes]-Newburyport,MA",70 Storey Avenue, Newburyport,MA,1950 +-70.88367,42.86934,"DD [drivethru-yes] [wifi-yes]-Salisbury,MA",61 Main Street, Salisbury,MA,1952 +-71.42854,42.44135,"DD [drivethru-no] [wifi-yes]-Acton,MA",100 Powdermill Rd [Powdermill Plaza], Acton,MA,1720 +-71.309441,42.682865,"DD [drivethru-yes] [wifi-yes]-Dracut,MA",1777 Bridge St, Dracut,MA,1826 +-71.362923,42.624043,"DD [drivethru-yes] [wifi-yes]-Chelmsford,MA",80 Drum Hill Rd [Drum Hill Shopping Ctr], Chelmsford,MA,1824 +-71.58252,42.52121,"DD/BR [drivethru-yes] [wifi-yes]-Harvard,MA",188 Ayer Rd, Harvard,MA,1451 +-71.307442,42.626087,"DD [drivethru-yes] [wifi-yes]-Lowell,MA",1081 Groham St, Lowell,MA,1852 +-71.42081,42.62568,"DD [drivethru-no] [wifi-no]-Westford,MA",500 Groton Road, Westford,MA,1886 +-71.352722,42.640957,"DD [drivethru-yes] [wifi-yes]-Lowell,MA",515 Pawtucket Blvd, Lowell,MA,1854 +-71.312965,42.636322,"DD [drivethru-no] [wifi-no]-Lowell,MA",145 Thorndike St [Gallagher Trans Ctr], Lowell,MA,1852 +-71.28189,42.63101,"DD [drivethru-yes] [wifi-yes]-Lowell,MA",651 Rogers Street, Lowell,MA,1852 +-71.304001,42.649403,"DD [drivethru-no] [wifi-no]-Lowell,MA",315 Bridge St, Lowell,MA,1850 +-71.32226,42.62785,"DD [drivethru-yes] [wifi-yes]-Lowell,MA",443 Chelmsford Street, Lowell,MA,1851 +-71.30056,42.64527,"DD [drivethru-no] [wifi-no]-Lowell,MA",1 Hospital Drive [Saints Memorial Medical Ctr], Lowell,MA,1852 +-71.569344,42.606586,"DD [drivethru-no] [wifi-no]-Groton,MA",133 Main St, Groton,MA,1450 +-71.520393,42.579136,"DD [drivethru-no] [wifi-yes]-Groton,MA",3 Forge Village Rd, Groton,MA,1450 +-71.578247,42.614101,"DD [drivethru-no] [wifi-no]-Groton,MA",318 Main St, Groton,MA,1450 +-71.548347,42.394608,"DD [drivethru-no] [wifi-no]-Hudson,MA",422 Main St, Hudson,MA,1749 +-71.417633,42.362072,"DD [drivethru-no] [wifi-yes]-Sudbury,MA",378 Boston Post Rd, Sudbury,MA,1776 +-71.578102,42.66507,"DD [drivethru-yes] [wifi-yes]-Pepperell,MA",116 Main St [Ste 118], Pepperell,MA,1463 +-71.65506,42.544266,"DD [drivethru-yes] [wifi-yes]-Shirley,MA",2 Fredonian St, Shirley,MA,1464 +-71.752815,42.44257,"DD [drivethru-yes] [wifi-yes]-Sterling,MA",50 Leominster Rd, Sterling,MA,1564 +-71.423119,42.567268,"DD [drivethru-no] [wifi-no]-Westford,MA",179 Littleton Rd, Westford,MA,1886 +-70.915695,42.846748,"DD [drivethru-yes] [wifi-yes]-Amesbury,MA",80 Macy St, Amesbury,MA,1913 +-71.087997,42.797222,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",755 Main St, Haverhill,MA,1830 +-71.04998,42.804485,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",407 Amesbury Rd, Haverhill,MA,1830 +-71.12545,42.78441,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",614 Broadway, Haverhill,MA,1832 +-71.11446,42.77114,"DD [drivethru-yes] [wifi-yes]-Haverhill,MA",784 River Street, Haverhill,MA,1832 +-71.076118,42.772617,"DD [drivethru-no] [wifi-yes]-Bradford,MA",15 S Main St, Bradford,MA,1835 +-71.40835,42.47497,"DD [drivethru-no] [wifi-no]-Acton,MA",44 Great Road [Mobil Gas Station], Acton,MA,1720 +-71.35658,42.45633,"DD [drivethru-no] [wifi-yes]-Concord,MA",117 Thoreau Street, Concord,MA,1742 +-71.358681,42.446709,"DD [drivethru-no] [wifi-no]-Concord,MA",1089 Concord Tpke, Concord,MA,1742 +-71.371643,42.421959,"DD [drivethru-no] [wifi-yes]-Concord,MA",1641 Sudbury Rd, Concord,MA,1742 +-71.688698,42.41753,"DD [drivethru-yes] [wifi-yes]-Clinton,MA",493 Main St, Clinton,MA,1510 +-71.68644,42.43278,"DD [drivethru-yes] [wifi-no]-Clinton,MA",1069 Main Street, Clinton,MA,1510 +-71.298976,42.557577,"DD [drivethru-yes] [wifi-no]-North Billerica,MA",1 Republic Rd, North Billerica,MA,1862 +-70.84412,42.68446,"DD [drivethru-no] [wifi-yes]-Ipswich,MA",6 Lord Square, Ipswich,MA,1938 +-72.0979,42.41013,"DD [drivethru-yes] [wifi-yes]-Barre,MA",570 Summer Street, Barre,MA,1005 +-70.987839,42.721905,"DD [drivethru-no] [wifi-yes]-Georgetown,MA",66 E Main St Ste 68, Georgetown,MA,1833 +-70.99695,42.83099,"DD [drivethru-yes] [wifi-yes]-Merrimac,MA",26 Broad Street, Merrimac,MA,1860 +-71.793396,42.581924,"DD [drivethru-yes] [wifi-yes]-Fitchburg,MA",151 Main St, Fitchburg,MA,1420 +-71.784508,42.553673,"DD [drivethru-yes] [wifi-no]-Fitchburg,MA",129 Whalon St, Fitchburg,MA,1420 +-71.777931,42.585403,"DD [drivethru-yes] [wifi-yes]-Fitchburg,MA",580 John Fitch Hwy, Fitchburg,MA,1420 +-71.809906,42.586712,"DD [drivethru-yes] [wifi-yes]-Fitchburg,MA",33-37 River St, Fitchburg,MA,1420 +-71.813919,42.567551,"DD [drivethru-yes] [wifi-yes]-Fitchburg,MA",511 Electric Ave, Fitchburg,MA,1420 +-71.202102,42.589142,"DD [drivethru-yes] [wifi-no]-Tewksbury,MA",1992 Main St, Tewksbury,MA,1876 +-72.048454,42.681042,"DD [drivethru-yes] [wifi-yes]-Winchendon,MA",5 Central St, Winchendon,MA,1475 +-71.17305,42.71077,"DD [drivethru-yes] [wifi-no]-Lawrence,MA",342 Broadway, Lawrence,MA,1841 +-71.391579,42.456364,"DD [drivethru-no] [wifi-yes]-West Concord,MA",1191 Main St, West Concord,MA,1742 +-70.64374,42.62247,"DD [drivethru-yes] [wifi-yes]-Gloucester,MA",103 Eastern Avenue, Gloucester,MA,1930 +-70.680931,42.611885,"DD [drivethru-no] [wifi-no]-Gloucester,MA",71 Essex Ave, Gloucester,MA,1930 +-70.669441,42.616657,"DD [drivethru-yes] [wifi-yes]-Gloucester,MA",130 Washington St, Gloucester,MA,1930 +-70.66065,42.61329,"DD [drivethru-no] [wifi-yes]-Gloucester,MA",205 Main Street, Gloucester,MA,1930 +-71.34121,42.64632,"DD [drivethru-no] [wifi-yes]-Lowell,MA",295 Varnum Avenue [Lowell General Hospital], Lowell,MA,1854 +-71.30812,42.64136,"DD [drivethru-no] [wifi-yes]-Lowell,MA",290 Central Street, Lowell,MA,1852 +-71.327034,42.653801,"DD [drivethru-no] [wifi-yes]-Lowell,MA",182 Riverside St [Riverside & University], Lowell,MA,1854 +-71.29406,42.676422,"DD [drivethru-yes] [wifi-yes]-Dracut,MA",177 Broadway Rd, Dracut,MA,1826 +-71.451431,42.476204,"DD [drivethru-no] [wifi-yes]-Acton,MA",299 Main St, Acton,MA,1720 +-71.45617,42.46862,"DD [drivethru-no] [wifi-yes]-Acton,MA",212 Main Street, Acton,MA,1720 +-71.540497,42.486164,"DD [drivethru-no] [wifi-no]-Boxborough,MA",1425 Mass Ave, Boxborough,MA,1719 +-71.41679,42.48657,"DD [drivethru-no] [wifi-yes]-Acton,MA",182 Great Road, Acton,MA,1720 +-71.34588,42.6031,"DD [drivethru-yes] [wifi-yes]-Chelmsford,MA",105 Chelmsford Street, Chelmsford,MA,1824 +-71.393514,42.634148,"DD [drivethru-yes] [wifi-no]-North Chelmsford,MA",81 Tyngsboro Rd [Rt 3a Mobil], North Chelmsford,MA,1863 +-71.352577,42.595364,"DD [drivethru-no] [wifi-no]-Chelmsford,MA",7 Acton Rd, Chelmsford,MA,1824 +-72.260758,42.582879,"DD [drivethru-yes] [wifi-yes]-Athol,MA",1634 S Main St, Athol,MA,1331 +-70.8621,42.57252,"DD [drivethru-no] [wifi-yes]-Beverly,MA",1 Yankee Way, Beverly,MA,1915 +-70.89299,42.572132,"DD [drivethru-no] [wifi-yes]-Beverly,MA",1 Dodge St, Beverly,MA,1915 +-70.891426,42.576614,"DD [drivethru-yes] [wifi-yes]-Beverly,MA",44 Dodge St, Beverly,MA,1915 +-72.004082,42.64098,"DD [drivethru-yes] [wifi-no]-Winchendon,MA",93 Gardner Rd, Winchendon,MA,1475 +-71.062469,42.161758,"DD [drivethru-yes] [wifi-no]-Randolph,MA",105 Mazzeo Drive, Randolph,MA,2368 +-71.474579,42.545818,"DD [drivethru-no] [wifi-no]-Littleton,MA",460 King St [Shell Station], Littleton,MA,1460 +-71.027718,42.272511,"DD [drivethru-no] [wifi-no]-Quincy,MA",65 Newport Ave [Stop & Shop], Quincy,MA,2171 +-70.89878,42.16414,"DD [drivethru-no] [wifi-no]-Rockland,MA",1149 Hingham St [Home Depot], Rockland,MA,2370 +-70.95,42.12968,"DD [drivethru-yes] [wifi-yes]-Abington,MA",937 Bedford Street, Abington,MA,2351 +-71.04469,42.16545,"DD [drivethru-yes] [wifi-yes]-Randolph,MA",39 Warren St [Blockbuster Plaza], Randolph,MA,2368 +-71.06114,42.19737,"DD [drivethru-no] [wifi-yes]-Randolph,MA",1225 N Main St, Randolph,MA,2368 +-71.062721,42.201702,"DD [drivethru-no] [wifi-yes]-Randolph,MA",1375-1395 N Main St, Randolph,MA,2368 +-71.10319,42.5212,"DD [drivethru-no] [wifi-yes]-Reading,MA",454 Main St, Reading,MA,1867 +-71.124252,42.508488,"DD [drivethru-yes] [wifi-no]-Reading,MA",4 West St, Reading,MA,1867 +-71.08659,42.52636,"DD [drivethru-no] [wifi-yes]-Reading,MA",273 Salem St, Reading,MA,1867 +-71.104088,42.507126,"DD [drivethru-yes] [wifi-no]-Reading,MA",110 Main St, Reading,MA,1867 +-71.021271,42.400822,"DD [drivethru-no] [wifi-no]-Chelsea,MA",936-942 Broadway, Chelsea,MA,2150 +-71.00614,42.46538,"DD [drivethru-no] [wifi-yes]-Saugus,MA",42 Hamilton St, Saugus,MA,1906 +-70.989716,42.458305,"DD [drivethru-no] [wifi-yes]-Saugus,MA",35 Lincoln Ave, Saugus,MA,1906 +-71.17804,42.46754,"DD [drivethru-no] [wifi-yes]-Woburn,MA",185 Cambridge Rd, Woburn,MA,1801 +-71.15132,42.48052,"DD [drivethru-no] [wifi-yes]-Woburn,MA",409 Main St, Woburn,MA,1801 +-71.165083,42.460504,"DD [drivethru-yes] [wifi-yes]-Woburn,MA",400 Cambridge Rd [Horn Pond Plaza], Woburn,MA,1801 +-71.119911,42.479767,"DD [drivethru-no] [wifi-yes]-Woburn,MA",318 Montvale Ave, Woburn,MA,1801 +-71.158821,42.50182,"DD [drivethru-no] [wifi-no]-Woburn,MA",3 Elm St [Stop & Shop], Woburn,MA,1801 +-71.124489,42.495941,"DD [drivethru-no] [wifi-no]-Woburn,MA",325 Washington St, Woburn,MA,1801 +-71.133126,42.503695,"DD [drivethru-no] [wifi-yes]-Woburn,MA",305 Mishawum Rd, Woburn,MA,1801 +-70.683311,42.023605,"DD [drivethru-yes] [wifi-yes]-Duxbury,MA",5 Chestnut St, Duxbury,MA,2332 +-71.12513,42.49746,"DD [drivethru-yes] [wifi-yes]-Woburn,MA",344 Washington St, Woburn,MA,1801 +-71.14818,42.46836,"DD [drivethru-yes] [wifi-no]-Woburn,MA",75 Main St, Woburn,MA,1801 +-71.14205,42.517,"DD [drivethru-no] [wifi-no]-Woburn,MA",100 Atlantic Ave, Woburn,MA,1801 +-71.16026,42.50661,"DD [drivethru-yes] [wifi-yes]-Woburn,MA",880 Main St, Woburn,MA,1801 +-70.85982,42.27267,"DD [drivethru-yes] [wifi-yes]-Hull,MA",1 Bay Street [# B], Hull,MA,2045 +-70.87946,42.29218,"DD [drivethru-no] [wifi-no]-Hull,MA",672 Nantasket Avenue, Hull,MA,2045 +-71.223373,42.378719,"DD [drivethru-no] [wifi-yes]-Waltham,MA",53 Linden St, Waltham,MA,2452 +-71.238197,42.366104,"DD [drivethru-no] [wifi-no]-Waltham,MA",591 Moody St, Waltham,MA,2453 +-71.236465,42.380997,"DD [drivethru-no] [wifi-yes]-Waltham,MA",130 Lexington St, Waltham,MA,2452 +-71.23423,42.405418,"DD [drivethru-no] [wifi-yes]-Waltham,MA",876a Lexington St, Waltham,MA,2452 +-71.24527,42.37628,"DD [drivethru-no] [wifi-no]-Waltham,MA",859 Main Street, Waltham,MA,2451 +-71.217964,42.368832,"DD [drivethru-no] [wifi-yes]-Waltham,MA",49 River St, Waltham,MA,2453 +-71.260178,42.395748,"DD [drivethru-no] [wifi-yes]-Waltham,MA",75 3rd Ave, Waltham,MA,2451 +-70.955124,42.104073,"DD [drivethru-yes] [wifi-yes]-Abington,MA",259 Brockton Ave, Abington,MA,2351 +-70.90127,42.16169,"DD [drivethru-yes] [wifi-yes]-Rockland,MA",851 Hingham Street, Rockland,MA,2370 +-70.91412,42.12768,"DD [drivethru-no] [wifi-yes]-Rockland,MA",21 East Water, Rockland,MA,2370 +-70.88012,42.11831,"DD [drivethru-no] [wifi-no]-Hanover,MA",1371 Hanover Street, Hanover,MA,2339 +-70.884506,42.174339,"DD [drivethru-yes] [wifi-no]-Norwell,MA",10 Washington St, Norwell,MA,2061 +-70.93261,42.110062,"DD [drivethru-yes] [wifi-no]-Abington,MA",336 Centre Ave, Abington,MA,2351 +-70.914528,42.122192,"DD [drivethru-yes] [wifi-yes]-Rockland,MA",165 Market St, Rockland,MA,2370 +-71.226105,42.44706,"DD [drivethru-no] [wifi-no]-Lexington,MA",1707 Massachusetts Ave [Ste 1], Lexington,MA,2420 +-71.198868,42.449261,"DD [drivethru-no] [wifi-yes]-Lexington,MA",317 Woburn St, Lexington,MA,2420 +-71.23497,42.436768,"DD [drivethru-no] [wifi-no]-Lexington,MA",373 Waltham St, Lexington,MA,2421 +-71.250412,42.439754,"DD [drivethru-no] [wifi-no]-Lexington,MA",286 Lincoln St, Lexington,MA,2421 +-71.19531,42.4258,"DD [drivethru-no] [wifi-yes]-Lexington,MA",141 Massachusetts Avenue, Lexington,MA,2420 +-70.999191,42.114685,"DD [drivethru-yes] [wifi-yes]-Abington,MA",147 N Quincy St, Abington,MA,2351 +-71.00564,42.19661,"DD [drivethru-yes] [wifi-yes]-Braintree,MA",1172 Washington Street, Braintree,MA,2184 +-71.00724,42.16875,"DD [drivethru-no] [wifi-no]-Braintree,MA",2140 Washington Street, Braintree,MA,2184 +-71.03452,42.22046,"DD [drivethru-no] [wifi-yes]-Braintree,MA",262 Forbes Road [Braintree Logan Express], Braintree,MA,2184 +-71.02699,42.21967,"DD [drivethru-no] [wifi-no]-Braintree,MA",250 Granite Street [South Shore Plaza], Braintree,MA,2184 +-70.98857,42.19075,"DD [drivethru-no] [wifi-yes]-Braintree,MA",238 Grove St [Tedeschi Plaza], Braintree,MA,2184 +-70.987022,42.228207,"DD [drivethru-no] [wifi-no]-Braintree,MA",29 Hayward St, Braintree,MA,2184 +-70.97692,42.23386,"DD [drivethru-yes] [wifi-yes]-Braintree,MA",421 Quincy Avenue, Braintree,MA,2184 +-71.00383,42.219807,"DD [drivethru-no] [wifi-yes]-Braintree,MA",375 Washington St, Braintree,MA,2184 +-71.01968,42.21157,"DD [drivethru-no] [wifi-yes]-Braintree,MA",551 Granite Street, Braintree,MA,2184 +-70.99967,42.20544,"DD [drivethru-no] [wifi-no]-Braintree,MA",240 Ivory Street, Braintree,MA,2184 +-70.755235,42.106576,"DD [drivethru-yes] [wifi-yes]-Marshfield,MA",928 Plain Street, Marshfield,MA,2050 +-70.7037,42.09213,"DD [drivethru-yes] [wifi-yes]-Marshfield,MA",1862 Ocean Street, Marshfield,MA,2050 +-70.770332,42.107708,"DD [drivethru-yes] [wifi-no]-Pembroke,MA",145 Church St [Rt 139 Mobil Sta], Pembroke,MA,2359 +-70.791893,42.089939,"DD [drivethru-no] [wifi-no]-Pembroke,MA",355 Washington St, Pembroke,MA,2359 +-71.14771,42.15252,"DD [drivethru-no] [wifi-yes]-Canton,MA",538 Washington Street, Canton,MA,2021 +-71.149117,42.139198,"DD [drivethru-yes] [wifi-yes]-Canton,MA",22 Washington St, Canton,MA,2021 +-71.11976,42.20839,"DD [drivethru-yes] [wifi-yes]-Canton,MA",2790 Washington Street, Canton,MA,2021 +-70.810638,42.108814,"DD [drivethru-yes] [wifi-yes]-Hanover,MA",416 Columbia Rd, Hanover,MA,2339 +-70.84491,42.1459,"DD [drivethru-no] [wifi-no]-Hanover,MA",1775 Washington St [Hanover Mall #175], Hanover,MA,2339 +-70.769859,42.107738,"DD [drivethru-yes] [wifi-yes]-Pembroke,MA",155 Church St, Pembroke,MA,2359 +-70.842216,42.138847,"DD [drivethru-yes] [wifi-yes]-Hanover,MA",1251 Washington St, Hanover,MA,2339 +-71.160446,42.163223,"DD [drivethru-yes] [wifi-yes]-Canton,MA",600 Neponset St, Canton,MA,2021 +-71.220694,42.095185,"DD [drivethru-no] [wifi-yes]-Sharon,MA",700 S Main St [Shaw's Plaza], Sharon,MA,2067 +-70.900481,42.484262,"DD [drivethru-yes] [wifi-no]-Swampscott,MA",980 Paradise Rd, Swampscott,MA,1907 +-71.074591,42.404252,"DD [drivethru-no] [wifi-no]-Medford,MA",Revere Beach Parkway [Wellington MBTA Train Station], Medford,MA,2155 +-71.188751,42.181053,"DD [drivethru-yes] [wifi-no]-Norwood,MA",960 Providence Highway, Norwood,MA,2062 +-71.009918,42.154991,"DD [drivethru-yes] [wifi-yes]-Holbrook,MA",30 Union St, Holbrook,MA,2343 +-71.008263,42.153412,"DD [drivethru-yes] [wifi-yes]-Holbrook,MA",57 S Franklin St, Holbrook,MA,2343 +-71.19659,42.19283,"DD [drivethru-no] [wifi-yes]-Norwood,MA",141 Nahatan Street, Norwood,MA,2062 +-70.900002,42.180748,"DD [drivethru-no] [wifi-yes]-Hingham,MA",187 Whiting St, Hingham,MA,2043 +-70.903587,42.249393,"DD [drivethru-no] [wifi-no]-Hingham,MA",179 Lincoln St, Hingham,MA,2043 +-71.13666,42.4522,"DD [drivethru-no] [wifi-yes]-Winchester,MA",538 Main St, Winchester,MA,1890 +-71.139847,42.459183,"DD [drivethru-no] [wifi-yes]-Winchester,MA",797 Main St, Winchester,MA,1890 +-71.222565,42.177959,"DD [drivethru-no] [wifi-no]-Norwood,MA",491 Walpole St, Norwood,MA,2062 +-71.178404,42.236999,"DD [drivethru-yes] [wifi-yes]-Dedham,MA",806 Providence Hwy, Dedham,MA,2026 +-71.079752,42.460511,"DD [drivethru-yes] [wifi-yes]-Stoneham,MA",2 Lynn Fells Pkwy, Stoneham,MA,2180 +-71.06714,42.45195,"DD [drivethru-no] [wifi-no]-Melrose,MA",348 Main, Melrose,MA,2176 +-71.062149,42.463955,"DD [drivethru-no] [wifi-yes]-Melrose,MA",470 Lynn Fells Pkwy, Melrose,MA,2176 +-70.850464,42.157005,"DD [drivethru-yes] [wifi-yes]-Hanover,MA",2117 Washington St, Hanover,MA,2339 +-70.790746,42.16119,"DD [drivethru-no] [wifi-yes]-Norwell,MA",707 Main St, Norwell,MA,2061 +-71.22147,42.44622,"DD/BR [drivethru-no] [wifi-yes]-Lexington,MA",10 Woburn Street, Lexington,MA,2420 +-71.177025,42.423759,"DD [drivethru-no] [wifi-yes]-Arlington,MA",1234 Massachusetts Ave, Arlington,MA,2476 +-71.15279,42.41937,"DD [drivethru-no] [wifi-yes]-Arlington,MA",21 Summer, Arlington,MA,2474 +-71.1487,42.41214,"DD [drivethru-no] [wifi-yes]-Arlington,MA",369 Mass Avenue, Arlington,MA,2474 +-71.272336,42.368602,"DD [drivethru-no] [wifi-no]-Weston,MA",88 Boston Post Rd, Weston,MA,2493 +-71.13951,42.40972,"DD [drivethru-no] [wifi-yes]-Arlington,MA",101 Broadway, Arlington,MA,2474 +-71.014101,42.427238,"DD [drivethru-no] [wifi-no]-Revere,MA",338 Squire Rd, Revere,MA,2151 +-70.85878,42.500416,"DD [drivethru-no] [wifi-yes]-Marblehead,MA",161 Pleasant St, Marblehead,MA,1945 +-70.949715,42.457928,"DD [drivethru-yes] [wifi-yes]-Lynn,MA",333 Lynnway, Lynn,MA,1901 +-70.95773,42.47031,"DD [drivethru-no] [wifi-no]-Lynn,MA",35 Washington Street [Stop & Shop], Lynn,MA,1904 +-70.943825,42.463932,"DD [drivethru-no] [wifi-no]-Lynn,MA",1 Central Square, Lynn,MA,1901 +-71.013031,42.514351,"DD [drivethru-no] [wifi-yes]-Lynnfield,MA",7 Post Office Sq, Lynnfield,MA,1940 +-70.96854,42.46002,"DD [drivethru-yes] [wifi-yes]-Lynn,MA",819 Western Avenue, Lynn,MA,1905 +-70.94175,42.48466,"DD [drivethru-no] [wifi-yes]-Lynn,MA",50 Western Avenue, Lynn,MA,1904 +-70.936661,42.436565,"DD [drivethru-no] [wifi-yes]-Nahant,MA",2a Wilson Rd, Nahant,MA,1908 +-70.950409,42.457039,"DD [drivethru-no] [wifi-yes]-Lynn,MA",364 Lynnway, Lynn,MA,1901 +-71.014824,42.502502,"DD [drivethru-yes] [wifi-no]-Lynnfield,MA",8 Broadway, Lynnfield,MA,1940 +-70.930321,42.465809,"DD [drivethru-no] [wifi-yes]-Lynn,MA",116 Lewis St, Lynn,MA,1902 +-70.95004,42.46359,"DD [drivethru-no] [wifi-yes]-Lynn,MA",42 Market Street, Lynn,MA,1901 +-70.992172,42.511497,"DD [drivethru-yes] [wifi-no]-Lynn,MA",932 Lynnfield St, Lynn,MA,1904 +-70.98981,42.47395,"DD [drivethru-yes] [wifi-yes]-Lynn,MA",577 Walnut Street, Lynn,MA,1905 +-70.732368,42.012161,"DD [drivethru-yes] [wifi-no]-Kingston,MA",187 Summer St, Kingston,MA,2364 +-70.662964,41.954445,"DD [drivethru-no] [wifi-yes]-Plymouth,MA",15 Sandwich St, Plymouth,MA,2360 +-70.732178,42.011654,"DD [drivethru-yes] [wifi-no]-Kingston,MA",183 Summer St, Kingston,MA,2364 +-70.715721,41.987488,"DD [drivethru-no] [wifi-yes]-Kingston,MA",136 Main St, Kingston,MA,2364 +-70.75782,42.00502,"DD [drivethru-yes] [wifi-yes]-Kingston,MA",1 Joseph Street, Kingston,MA,2364 +-70.730659,41.999439,"DD [drivethru-no] [wifi-no]-Kingston,MA",78 Summer St, Kingston,MA,2364 +-71.11113,42.172363,"DD [drivethru-yes] [wifi-yes]-Canton,MA",360 Turnpike St, Canton,MA,2021 +-71.188721,42.485851,"DD [drivethru-no] [wifi-no]-Burlington,MA",10 Wall St, Burlington,MA,1803 +-71.195616,42.171441,"DD [drivethru-yes] [wifi-yes]-Norwood,MA",1202 Providence Highway [Rt 1], Norwood,MA,2062 +-70.725014,42.19458,"DD [drivethru-no] [wifi-yes]-Scituate,MA",108 Front St, Scituate,MA,2066 +-70.71756,42.17644,"DD [drivethru-yes] [wifi-yes]-Scituate,MA",32 The Driftway, Scituate,MA,2066 +-70.715655,42.093116,"DD [drivethru-no] [wifi-no]-Marshfield,MA",2139 Ocean St [Hess], Marshfield,MA,2050 +-71.133026,42.421066,"DD [drivethru-no] [wifi-yes]-Medford,MA",4 Harvard Ave, Medford,MA,2155 +-70.981819,42.428913,"DD [drivethru-yes] [wifi-yes]-Revere,MA",555 North Shore Rd, Revere,MA,2151 +-71.002808,42.411682,"DD [drivethru-yes] [wifi-yes]-Revere,MA",90 American Legion Highway, Revere,MA,2151 +-70.956085,42.47921,"DD [drivethru-no] [wifi-yes]-Lynn,MA",25 Boston St, Lynn,MA,1904 +-70.957428,42.475845,"DD [drivethru-yes] [wifi-yes]-Lynn,MA",80 Boston St, Lynn,MA,1904 +-71.237488,42.27566,"DD [drivethru-no] [wifi-yes]-Needham,MA",260 Chestnut St, Needham,MA,2492 +-71.235649,42.28582,"DD [drivethru-no] [wifi-yes]-Needham,MA",1203 Highland Ave, Needham,MA,2494 +-70.9474,42.08281,"DD [drivethru-yes] [wifi-yes]-Whitman,MA",811 Bedford Street, Whitman,MA,2382 +-70.94846,42.06832,"DD [drivethru-yes] [wifi-yes]-Whitman,MA",281 Bedford Street, Whitman,MA,2382 +-70.93598,42.08068,"DD [drivethru-yes] [wifi-yes]-Whitman,MA",26 South Avenue, Whitman,MA,2382 +-71.100006,42.488655,"DD [drivethru-no] [wifi-yes]-Stoneham,MA",196 Main St, Stoneham,MA,2180 +-71.100365,42.484516,"DD [drivethru-no] [wifi-no]-Stoneham,MA",259 Main St [Stop & Shop], Stoneham,MA,2180 +-71.100819,42.497872,"DD [drivethru-no] [wifi-no]-Stoneham,MA",65 Main St, Stoneham,MA,2180 +-71.214874,42.276012,"DD [drivethru-no] [wifi-no]-Needham,MA",399 Great Plain Ave, Needham,MA,2492 +-70.731934,41.993698,"DD [drivethru-no] [wifi-no]-Kingston,MA",110 Inedpendence Mall Rd [Ste F], Kingston,MA,2364 +-71.07119,42.423676,"DD [drivethru-no] [wifi-no]-Malden,MA",99 Charles St [Stop & Shop], Malden,MA,2148 +-71.109131,42.418503,"DD [drivethru-no] [wifi-yes]-Medford,MA",2 And 4 Salem St [Medford Square], Medford,MA,2155 +-71.110489,42.414211,"DD [drivethru-no] [wifi-yes]-Medford,MA",154 Main St, Medford,MA,2155 +-71.082916,42.407257,"DD [drivethru-yes] [wifi-yes]-Medford,MA",620 Fellsway, Medford,MA,2155 +-71.092026,42.422771,"DD [drivethru-no] [wifi-yes]-Medford,MA",430 Salem St, Medford,MA,2155 +-71.120544,42.410938,"DD [drivethru-no] [wifi-yes]-Medford,MA",364 Boston Ave, Medford,MA,2155 +-71.093513,42.405708,"DD [drivethru-no] [wifi-yes]-Medford,MA",3850 Mystic Valley Pkwy [Meadow Glen Mall], Medford,MA,2155 +-71.101759,42.405654,"DD [drivethru-yes] [wifi-yes]-Medford,MA",275 Mystic Ave, Medford,MA,2155 +-71.078949,42.412525,"DD [drivethru-yes] [wifi-yes]-Medford,MA",283 Middlesex Ave, Medford,MA,2155 +-71.047295,42.414513,"DD [drivethru-no] [wifi-no]-Everett,MA",321 Ferry St, Everett,MA,2149 +-70.804825,42.238636,"DD [drivethru-yes] [wifi-no]-Cohasset,MA",740 Cushing Plaza [Exxon Sta], Cohasset,MA,2025 +-70.82494,42.23658,"DD [drivethru-yes] [wifi-yes]-Cohasset,MA",156 King Street, Cohasset,MA,2025 +-71.02832,42.19407,"DD [drivethru-no] [wifi-no]-Braintree,MA",553 Pond Street [# 555], Braintree,MA,2184 +-71.10168,42.13409,"DD [drivethru-yes] [wifi-yes]-Stoughton,MA",438 Washington St, Stoughton,MA,2072 +-71.07378,42.15316,"DD [drivethru-yes] [wifi-yes]-Stoughton,MA",1516 Turnpike St [Turnpike Plaza], Stoughton,MA,2072 +-71.101486,42.135605,"DD [drivethru-no] [wifi-no]-Stoughton,MA",372 Washington St [Mobil Station], Stoughton,MA,2072 +-71.10141,42.12161,"DD [drivethru-no] [wifi-no]-Stoughton,MA",871 Washington St, Stoughton,MA,2072 +-70.92155,42.21659,"DD [drivethru-yes] [wifi-yes]-Weymouth,MA",1540 Commercial St, Weymouth,MA,2189 +-70.95703,42.21053,"DD [drivethru-yes] [wifi-no]-Weymouth,MA",38 Winter St, Weymouth,MA,2188 +-70.93975,42.24423,"DD [drivethru-yes] [wifi-yes]-North Weymouth,MA",645 Bridge St, North Weymouth,MA,2191 +-70.96739,42.21906,"DD [drivethru-no] [wifi-yes]-Weymouth,MA",77 Washington St, Weymouth,MA,2188 +-70.95522,42.18014,"DD [drivethru-yes] [wifi-yes]-South Weymouth,MA",755 Main St, South Weymouth,MA,2190 +-70.94426,42.200897,"DD [drivethru-yes] [wifi-no]-Weymouth,MA",807 Washington St, Weymouth,MA,2189 +-70.958247,42.242752,"DD [drivethru-yes] [wifi-yes]-North Weymouth,MA",180 Bridge Street, North Weymouth,MA,2191 +-70.964075,42.216594,"DD [drivethru-yes] [wifi-yes]-Weymouth,MA",185 Washington St, Weymouth,MA,2188 +-70.944496,42.202599,"DD [drivethru-no] [wifi-no]-Weymouth,MA",634 Middle St [Shaw's Plaza], Weymouth,MA,2189 +-70.95524,42.16314,"DD [drivethru-no] [wifi-yes]-South Weymouth,MA",1255 Main St, South Weymouth,MA,2190 +-71.182434,42.226772,"DD [drivethru-no] [wifi-yes]-Westwood,MA",208 Providence Hwy Route 1, Westwood,MA,2090 +-71.1545,42.24797,"DD [drivethru-no] [wifi-yes]-Dedham,MA",248 Bussey Street, Dedham,MA,2026 +-71.19987,42.18941,"DD [drivethru-no] [wifi-no]-Norwood,MA",145 Broadway, Norwood,MA,2062 +-71.189247,42.215439,"DD [drivethru-no] [wifi-no]-Westwood,MA",400 Washington St, Westwood,MA,2090 +-71.169884,42.257553,"DD [drivethru-no] [wifi-no]-Dedham,MA",160 Providence Hwy [Stop & Shop], Dedham,MA,2026 +-71.1712,42.24915,"DD [drivethru-no] [wifi-yes]-Dedham,MA",395 Providence Highway, Dedham,MA,2026 +-71.223557,42.219234,"DD [drivethru-no] [wifi-yes]-Westwood,MA",915 High St, Westwood,MA,2090 +-71.042236,42.430298,"DD [drivethru-yes] [wifi-yes]-Malden,MA",980 Eastern Ave, Malden,MA,2148 +-71.074112,42.427429,"DD [drivethru-no] [wifi-yes]-Malden,MA",245 Pleasant St, Malden,MA,2148 +-71.067177,42.426849,"DD [drivethru-no] [wifi-yes]-Malden,MA",424 Main St, Malden,MA,2148 +-71.06563,42.42402,"DD [drivethru-yes] [wifi-yes]-Malden,MA",57 Eastern Avenue, Malden,MA,2148 +-71.0226,42.4436,"DD [drivethru-no] [wifi-no]-Revere,MA",345 Bennett Hwy [Route 1 Northbouond], Revere,MA,2151 +-71.046944,42.433117,"DD [drivethru-no] [wifi-yes]-Malden,MA",655 Salem St, Malden,MA,2148 +-71.041252,42.427441,"DD [drivethru-yes] [wifi-yes]-Malden,MA",619 Broadway [Route 99], Malden,MA,2148 +-71.075424,42.420246,"DD [drivethru-no] [wifi-yes]-Malden,MA",200 Commercial St, Malden,MA,2148 +-71.182037,42.223164,"DD [drivethru-yes] [wifi-yes]-Westwood,MA",115 Providence Hwy, Westwood,MA,2090 +-71.0882,42.41063,"DD [drivethru-yes] [wifi-yes]-Medford,MA",7 Commercial Street, Medford,MA,2155 +-71.06889,42.12569,"DD [drivethru-no] [wifi-no]-Stoughton,MA",28 Dykeman Way, Stoughton,MA,2072 +-71.092372,42.120577,"DD [drivethru-no] [wifi-no]-Stoughton,MA",287 Park St, Stoughton,MA,2072 +-71.148193,42.137962,"DD [drivethru-yes] [wifi-no]-Stoughton,MA",145 Sharon St [Mobil Station], Stoughton,MA,2072 +-70.869217,42.066341,"DD [drivethru-yes] [wifi-yes]-Hanson,MA",487 Liberty St, Hanson,MA,2341 +-70.853378,42.042858,"DD [drivethru-yes] [wifi-no]-Hanson,MA",318 Main St [Hess], Hanson,MA,2341 +-70.809906,42.068981,"DD [drivethru-yes] [wifi-yes]-Pembroke,MA",152 Center St, Pembroke,MA,2359 +-70.84688,41.99372,"DD [drivethru-no] [wifi-no]-Halifax,MA",337 Plymouth Street [Tedeschi Food Shop], Halifax,MA,2338 +-70.88134,42.043381,"DD [drivethru-yes] [wifi-yes]-Hanson,MA",1120 Main St, Hanson,MA,2341 +-70.99192,42.40805,"DD [drivethru-no] [wifi-no]-Revere,MA",300 Ocean Avenue, Revere,MA,2151 +-71.005791,42.421547,"DD [drivethru-yes] [wifi-no]-Revere,MA",30 Squire Rd, Revere,MA,2151 +-70.991987,42.397436,"DD [drivethru-no] [wifi-yes]-Revere,MA",1 Bennington St, Revere,MA,2151 +-71.01523,42.40589,"DD [drivethru-yes] [wifi-yes]-Revere,MA",145 Broadway, Revere,MA,2151 +-70.999428,42.409191,"DD [drivethru-no] [wifi-yes]-Revere,MA",477 Beach St [Corner Of Shirley Ave], Revere,MA,2151 +-71.00555,42.42173,"DD [drivethru-yes] [wifi-yes]-Revere,MA",35 Squire Rd, Revere,MA,2151 +-71.022705,42.431374,"DD [drivethru-yes] [wifi-no]-Revere,MA",649 Squire Rd [#655], Revere,MA,2151 +-71.009171,42.396027,"DD [drivethru-no] [wifi-no]-Revere,MA",41 Lee Burbank Hwy [Hess], Revere,MA,2151 +-71.107925,42.481281,"DD [drivethru-no] [wifi-yes]-Stoneham,MA",62a Montvale Ave, Stoneham,MA,2180 +-71.090584,42.47665,"DD [drivethru-no] [wifi-yes]-Stoneham,MA",128 Franklin St, Stoneham,MA,2180 +-71.26298,42.48664,"DD [drivethru-yes] [wifi-yes]-Bedford,MA",308 Great Road, Bedford,MA,1730 +-71.28558,42.49592,"DD [drivethru-no] [wifi-no]-Bedford,MA",44 North Road, Bedford,MA,1730 +-71.291275,42.46286,"DD [drivethru-no] [wifi-no]-Bedford,MA",Hanscom Air Force Base [Main Exchange Bldg], Bedford,MA,1730 +-71.17363,42.49078,"DD [drivethru-yes] [wifi-yes]-Burlington,MA",28 Winn Street, Burlington,MA,1803 +-71.20043,42.51064,"DD [drivethru-yes] [wifi-yes]-Burlington,MA",182a Cambridge Street, Burlington,MA,1803 +-71.205467,42.529882,"DD [drivethru-no] [wifi-no]-Burlington,MA",85 Wilmington Rd, Burlington,MA,1803 +-71.213478,42.475342,"DD [drivethru-no] [wifi-yes]-Burlington,MA",69 Middlesex Tpke, Burlington,MA,1803 +-71.217056,42.481167,"DD [drivethru-no] [wifi-no]-Burlington,MA",75 Middlesex Tpke [Burlington Mall], Burlington,MA,1803 +-71.22934,42.50145,"DD [drivethru-no] [wifi-no]-Burlington,MA",240 Middlesex Turnpike, Burlington,MA,1803 +-71.04201,42.51195,"DD [drivethru-yes] [wifi-yes]-Wakefield,MA",518 Salem St, Wakefield,MA,1880 +-71.06913,42.497021,"DD [drivethru-yes] [wifi-yes]-Wakefield,MA",632 Main St, Wakefield,MA,1880 +-71.259499,42.325062,"DD [drivethru-no] [wifi-yes]-Wellesley,MA",12 Washington St, Wellesley,MA,2481 +-71.324336,42.304307,"DD [drivethru-yes] [wifi-yes]-Wellesley,MA",978 Worcester St, Wellesley,MA,2482 +-71.322984,42.304835,"DD [drivethru-yes] [wifi-no]-Wellesley,MA",951 Worcester St, Wellesley,MA,2482 +-71.289016,42.301545,"DD [drivethru-no] [wifi-yes]-Wellesley,MA",277 Linden St, Wellesley,MA,2482 +-71.020172,42.483147,"DD [drivethru-yes] [wifi-yes]-Saugus,MA",533 Broadway, Saugus,MA,1906 +-71.023766,42.454346,"DD [drivethru-yes] [wifi-yes]-Saugus,MA",1539 Broadway, Saugus,MA,1906 +-71.023864,42.458381,"DD [drivethru-yes] [wifi-yes]-Saugus,MA",1204 Broadway, Saugus,MA,1906 +-71.023666,42.458363,"DD [drivethru-no] [wifi-no]-Saugus,MA",1252 Broadway [Hess], Saugus,MA,1906 +-71.03661,42.47284,"DD [drivethru-no] [wifi-yes]-Saugus,MA",339 Main St [Village Park], Saugus,MA,1906 +-71.025101,42.463787,"DD [drivethru-no] [wifi-yes]-Saugus,MA",1201 Broadway [Square One Mall], Saugus,MA,1906 +-71.00975,42.44838,"DD [drivethru-no] [wifi-yes]-Saugus,MA",508 Lincoln Ave, Saugus,MA,1906 +-71.216011,42.485531,"DD [drivethru-no] [wifi-no]-Burlington,MA",112 Mall Rd, Burlington,MA,1803 +-71.07523,42.50204,"DD [drivethru-no] [wifi-yes]-Wakefield,MA",225 North Ave, Wakefield,MA,1880 +-70.979695,41.597166,"DD [drivethru-no] [wifi-no]-South Dartmouth,MA",550 Russells Mills Rd, South Dartmouth,MA,2748 +-71.255112,41.908156,"DD [drivethru-yes] [wifi-yes]-Rehoboth,MA",3 Park St, Rehoboth,MA,2769 +-71.10402,42.32282,"DD [drivethru-no] [wifi-no]-Jamaica Plain,MA",315 Centre Street, Jamaica Plain,MA,2130 +-71.11591,42.29558,"DD [drivethru-no] [wifi-no]-Jamaica Plain,MA",7 Walk Hill Street, Jamaica Plain,MA,2130 +-71.116928,42.374191,"DD [drivethru-no] [wifi-no]-Cambridge,MA",Harvard Mbta Station, Cambridge,MA,2163 +-71.207115,42.351788,"DD [drivethru-no] [wifi-no]-Newton,MA",829 Washington St, Newton,MA,2460 +-71.193199,42.362347,"DD [drivethru-no] [wifi-no]-Watertown,MA",171 Watertown Street [Stop & Shop], Watertown,MA,2472 +-71.21008,42.31919,"DD [drivethru-no] [wifi-yes]-Newton,MA",940 Boylston Street, Newton,MA,2461 +-71.21005,42.33106,"DD [drivethru-no] [wifi-yes]-Newton,MA",1148 Beacon Street, Newton,MA,2461 +-71.24765,42.347858,"DD [drivethru-no] [wifi-yes]-Newton,MA",2096 Commonwealth Ave, Newton,MA,2466 +-71.161217,42.363075,"DD [drivethru-no] [wifi-no]-Watertown,MA",485 Arsenal St [Arsenal Mall], Watertown,MA,2472 +-71.157509,42.371391,"DD [drivethru-no] [wifi-yes]-Watertown,MA",635 Mount Auburn St, Watertown,MA,2472 +-71.19519,42.370789,"DD [drivethru-no] [wifi-yes]-Watertown,MA",448 Main St, Watertown,MA,2472 +-71.181824,42.366215,"DD [drivethru-no] [wifi-yes]-Watertown,MA",49 Mount Auburn St, Watertown,MA,2472 +-71.04069,42.38906,"DD [drivethru-no] [wifi-yes]-Chelsea,MA",130 Broadway, Chelsea,MA,2150 +-71.020538,42.398201,"DD [drivethru-yes] [wifi-yes]-Chelsea,MA",356 Eastern Ave, Chelsea,MA,2150 +-71.04998,42.39497,"DD [drivethru-yes] [wifi-yes]-Chelsea,MA",276 Beacham Street, Chelsea,MA,2150 +-71.038864,42.393463,"DD [drivethru-yes] [wifi-yes]-Chelsea,MA",83 Everett Ave, Chelsea,MA,2150 +-71.03547,42.40512,"DD [drivethru-no] [wifi-yes]-Chelsea,MA",372 Washington Avenue, Chelsea,MA,2150 +-71.04051,42.39852,"DD [drivethru-no] [wifi-yes]-Chelsea,MA",234 Everett Avenue, Chelsea,MA,2150 +-71.09397,42.36653,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",222 Broadway, Cambridge,MA,2142 +-71.093689,42.372967,"DD [drivethru-no] [wifi-no]-Cambridge,MA",1001 Cambridge St [Shell], Cambridge,MA,2141 +-71.07746,42.33696,"DD [drivethru-no] [wifi-yes]-Boston,MA",616 Massachusetts Avenue, Boston,MA,2118 +-71.075188,42.348515,"DD [drivethru-no] [wifi-yes]-Boston,MA",430 Stuart St, Boston,MA,2116 +-71.064812,42.28455,"DD [drivethru-no] [wifi-yes]-Dorchester,MA",1931 Dorchester Ave, Dorchester,MA,2124 +-71.231498,42.417677,"DD [drivethru-no] [wifi-no]-Lexington,MA",915 Waltham St [Shell Oil], Lexington,MA,2421 +-71.133606,42.353313,"DD [drivethru-no] [wifi-yes]-Allston,MA",179 Brighton Ave, Allston,MA,2134 +-71.067833,42.272316,"DD [drivethru-no] [wifi-yes]-Dorchester,MA",2290 Dorchester Ave, Dorchester,MA,2124 +-71.13838,42.35643,"DD [drivethru-no] [wifi-no]-Allston,MA",60 Everett Street [Stop & Shop], Allston,MA,2134 +-70.995369,42.253933,"DD [drivethru-no] [wifi-no]-Quincy,MA",495 Southern Artery [Stop & Shop], Quincy,MA,2169 +-71.015518,42.267166,"DD [drivethru-no] [wifi-yes]-Quincy,MA",687 Hancock St, Quincy,MA,2170 +-71.814781,42.254162,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",845 Main St, Worcester,MA,1610 +-71.056892,42.358673,"DD [drivethru-no] [wifi-yes]-Boston,MA",1 Congress St, Boston,MA,2114 +-71.118187,42.331303,"DD [drivethru-no] [wifi-yes]-Brookline,MA",20 Boylston St, Brookline,MA,2445 +-71.12162,42.351608,"DD [drivethru-no] [wifi-yes]-Boston,MA",1020 Commonwealth Ave, Boston,MA,2215 +-71.107277,42.338772,"DD [drivethru-no] [wifi-yes]-Boston,MA",350 Longwood Ave, Boston,MA,2115 +-71.149338,42.33596,"DD [drivethru-no] [wifi-yes]-Brighton,MA",1955 Beacon St, Brighton,MA,2135 +-71.094437,42.332477,"DD [drivethru-no] [wifi-yes]-Boston,MA",1 South Station [Ste 104B], Boston,MA,2110 +-71.05617,42.35359,"DD [drivethru-no] [wifi-yes]-Boston,MA",176 Federal Street, Boston,MA,2110 +-71.047409,42.333782,"DD [drivethru-no] [wifi-yes]-South Boston,MA",One Harbor St, South Boston,MA,2127 +-71.107246,42.346264,"DD [drivethru-no] [wifi-yes]-Brookline,MA",1008 Beacon St, Brookline,MA,2446 +-71.12408,42.33045,"DD [drivethru-no] [wifi-yes]-Brookline,MA",265 Boylston, Brookline,MA,2445 +-71.07075,42.361683,"DD [drivethru-no] [wifi-no]-Boston,MA",161 Charles St, Boston,MA,2114 +-71.05896,42.35818,"DD [drivethru-no] [wifi-no]-Boston,MA",2 City Hall Avenue, Boston,MA,2108 +-71.131042,42.41346,"DD [drivethru-no] [wifi-no]-Somerville,MA",379 Alewife Brook Pky, Somerville,MA,2144 +-71.12082,42.374284,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",61 Church St, Cambridge,MA,2138 +-71.06237,42.350906,"DD [drivethru-no] [wifi-yes]-Boston,MA",16 Kneeland Ste 18, Boston,MA,2111 +-71.085388,42.375122,"DD [drivethru-no] [wifi-yes]-Somerville,MA",14 Mcgrath Hwy [Twin City Plaza], Somerville,MA,2143 +-71.085701,42.381275,"DD [drivethru-no] [wifi-no]-Somerville,MA",90 Washington St, Somerville,MA,2143 +-71.017556,42.361646,"DD [drivethru-no] [wifi-no]-East Boston,MA",300 Terminal Dr [Logan Intl Airport], East Boston,MA,2128 +-71.08712,42.390499,"DD [drivethru-no] [wifi-no]-Somerville,MA",709 McGrath Hwy [Hess], Somerville,MA,2145 +-71.105904,42.383255,"DD [drivethru-no] [wifi-yes]-Somerville,MA",519 Somerville Ave, Somerville,MA,2143 +-71.117668,42.400734,"DD [drivethru-no] [wifi-no]-Somerville,MA",850 Broadway, Somerville,MA,2144 +-71.103699,42.388382,"DD [drivethru-no] [wifi-no]-Somerville,MA",154 Highland Ave, Somerville,MA,2143 +-71.094299,42.379036,"DD [drivethru-no] [wifi-yes]-Somerville,MA",282 Somerville Ave, Somerville,MA,2143 +-71.104729,42.397354,"DD [drivethru-no] [wifi-yes]-Somerville,MA",504 Broadway, Somerville,MA,2145 +-71.121933,42.395199,"DD [drivethru-no] [wifi-yes]-Somerville,MA",244 Elm St, Somerville,MA,2144 +-71.088608,42.389671,"DD [drivethru-no] [wifi-yes]-Somerville,MA",220 Broadway, Somerville,MA,2145 +-71.083443,42.393478,"DD [drivethru-no] [wifi-yes]-Somerville,MA",76 Middlesex Ave, Somerville,MA,2145 +-71.083191,42.362343,"DD/BR [drivethru-no] [wifi-yes]-Cambridge,MA",1 Broadway, Cambridge,MA,2142 +-71.07604,42.36701,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",100 Cambridgeside Place [Cambridgeside Galleria], Cambridge,MA,2141 +-71.02567,42.363909,"DD [drivethru-no] [wifi-no]-East Boston,MA",100 Harborside Dr [Logan Airport], East Boston,MA,2128 +-71.025817,42.363046,"DD [drivethru-no] [wifi-no]-East Boston,MA",100 Harborside Dr [Logan Airport], East Boston,MA,2128 +-71.008331,42.386024,"DD [drivethru-no] [wifi-yes]-East Boston,MA",951 Bennington St, East Boston,MA,2128 +-71.022054,42.364954,"DD [drivethru-no] [wifi-no]-East Boston,MA",100 Terminal Rd [Logan Intl Airport], East Boston,MA,2128 +-71.039307,42.368881,"DD [drivethru-no] [wifi-yes]-East Boston,MA",13-15 Maverick Sq, East Boston,MA,2128 +-71.015739,42.37262,"DD [drivethru-no] [wifi-yes]-East Boston,MA",34 William Kelly Sq [#34], East Boston,MA,2128 +-71.0161,42.365,"DD [drivethru-no] [wifi-no]-East Boston,MA",300 Terminal Rd [Terminal C Jet Blue Concouse], East Boston,MA,2128 +-71.019307,42.36273,"DD [drivethru-no] [wifi-no]-East Boston,MA",200 Terminal Rd [Logan Intl Airport], East Boston,MA,2128 +-71.153046,42.348957,"DD [drivethru-no] [wifi-yes]-Brighton,MA",350 Washington St, Brighton,MA,2135 +-71.019021,42.361642,"DD [drivethru-no] [wifi-no]-East Boston,MA",200 Terminal Rd [Logan Intl Airport], East Boston,MA,2128 +-71.019744,42.369593,"DD [drivethru-no] [wifi-no]-East Boston,MA",Terminal Access Rd [Logan Intl Airport], East Boston,MA,2128 +-71.017866,42.362689,"DD [drivethru-no] [wifi-no]-East Boston,MA",300 Terminal Dr [Logan Intl Airport], East Boston,MA,2128 +-71.018354,42.364001,"DD [drivethru-no] [wifi-no]-East Boston,MA",200 Terminal Dr [Logan Intl Airport], East Boston,MA,2128 +-71.192673,42.330788,"DD [drivethru-no] [wifi-yes]-Newton,MA",38 Langley Rd, Newton,MA,2459 +-71.07954,42.37227,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",5 3rd Street, Cambridge,MA,2141 +-71.063232,42.350101,"DD [drivethru-no] [wifi-no]-Boston,MA",750 Washington St [Proger Bldg], Boston,MA,2111 +-71.06477,42.35238,"DD [drivethru-no] [wifi-yes]-Boston,MA",80 Boylston Street, Boston,MA,2116 +-70.993225,42.382729,"DD [drivethru-yes] [wifi-yes]-Winthrop,MA",20 Main St, Winthrop,MA,2152 +-70.976471,42.38607,"DD [drivethru-no] [wifi-yes]-Winthrop,MA",230 Revere Street, Winthrop,MA,2152 +-71.07588,42.34708,"DD [drivethru-no] [wifi-no]-Boston,MA",145 Dartmouth Street [MBTA], Boston,MA,2116 +-71.086945,42.348541,"DD [drivethru-no] [wifi-yes]-Boston,MA",333 Newbury St, Boston,MA,2115 +-71.088402,42.335194,"DD [drivethru-no] [wifi-no]-Boston,MA",1131 Tremont St [Platform G], Boston,MA,2120 +-71.091721,42.341881,"DD [drivethru-no] [wifi-no]-Boston,MA",Fenway Park [Gate B4], Boston,MA,2115 +-71.202171,42.36031,"DD [drivethru-no] [wifi-yes]-Newton,MA",401 Watertown St, Newton,MA,2458 +-71.21235,42.3129,"DD [drivethru-no] [wifi-yes]-Newton,MA",138 Needham Street, Newton,MA,2464 +-71.224998,42.349213,"DD [drivethru-no] [wifi-yes]-Newton,MA",1250 Washington St, Newton,MA,2465 +-71.18749,42.35667,"DD [drivethru-no] [wifi-yes]-Newton,MA",345 Washington Street, Newton,MA,2458 +-71.16723,42.33994,"DD [drivethru-no] [wifi-yes]-Chestnut Hill,MA",15 Commonwealth Avenue, Chestnut Hill,MA,2467 +-71.112717,42.283688,"DD [drivethru-yes] [wifi-no]-Roslindale,MA",684 American Legion Hwy, Roslindale,MA,2131 +-71.11409,42.311951,"DD [drivethru-no] [wifi-no]-Jamaica Plain,MA",684 Centre St, Jamaica Plain,MA,2130 +-71.063087,42.361053,"DD [drivethru-no] [wifi-yes]-Boston,MA",106 Cambridge St, Boston,MA,2114 +-71.062721,42.36105,"DD [drivethru-no] [wifi-yes]-Boston,MA",100 Cambridge St, Boston,MA,2114 +-71.05482,42.35913,"DD [drivethru-no] [wifi-yes]-Boston,MA",111 State Street, Boston,MA,2109 +-71.059692,42.358746,"DD [drivethru-no] [wifi-yes]-Boston,MA",16 Tremont St, Boston,MA,2116 +-71.11514,42.31007,"DD [drivethru-no] [wifi-yes]-Jamaica Plain,MA",757 Centre Street, Jamaica Plain,MA,2130 +-71.142738,42.389595,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",201 Alewife Brook Pkwy, Cambridge,MA,2138 +-71.115675,42.360653,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",808 Memorial Dr, Cambridge,MA,2139 +-71.14196,42.387566,"DD [drivethru-yes] [wifi-yes]-Cambridge,MA",517 Concord Ave, Cambridge,MA,2138 +-71.140862,42.394798,"DD [drivethru-no] [wifi-no]-Cambridge,MA",5 Cambridgepark Dr [MBTA], Cambridge,MA,2140 +-71.132195,42.398808,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",2480 Massachusetts Ave, Cambridge,MA,2140 +-71.1905,42.38721,"DD/BR [drivethru-no] [wifi-yes]-Belmont,MA",52 Church Street, Belmont,MA,2478 +-71.06198,42.35645,"DD [drivethru-no] [wifi-yes]-Boston,MA",127 Tremont Street, Boston,MA,2108 +-71.014496,42.250504,"DD [drivethru-no] [wifi-yes]-Quincy,MA",114 Whitwell St [Quincy City Hospital], Quincy,MA,2169 +-71.015785,42.297356,"DD [drivethru-no] [wifi-no]-North Quincy,MA",751 E Squantum St, North Quincy,MA,2171 +-70.993675,42.253162,"DD [drivethru-no] [wifi-yes]-Quincy,MA",543 Southern Artery, Quincy,MA,2169 +-71.00335,42.24069,"DD [drivethru-yes] [wifi-yes]-Quincy,MA",95 Franklin Street, Quincy,MA,2169 +-70.982719,42.248653,"DD [drivethru-yes] [wifi-yes]-Quincy,MA",825 Southern Artery, Quincy,MA,2169 +-71.060211,42.355854,"DD [drivethru-no] [wifi-yes]-Boston,MA",417 Washington St [Ste M Relo 308329], Boston,MA,2108 +-71.056519,42.357437,"DD [drivethru-no] [wifi-yes]-Boston,MA",3 Post Office Square, Boston,MA,2109 +-71.08276,42.30929,"DD [drivethru-yes] [wifi-yes]-Dorchester,MA",456 Blue Hill Avenue, Dorchester,MA,2121 +-71.048752,42.350716,"DD [drivethru-no] [wifi-yes]-Boston,MA",330 Congress St, Boston,MA,2115 +-71.04771,42.29321,"DD [drivethru-yes] [wifi-yes]-Dorchester,MA",875 William T Morrissey Boulevard, Dorchester,MA,2122 +-71.098045,42.316635,"DD [drivethru-no] [wifi-yes]-Roxbury,MA",1926 Columbus Ave, Roxbury,MA,2119 +-71.084557,42.329395,"DD [drivethru-no] [wifi-yes]-Roxbury,MA",2360 Washington St, Roxbury,MA,2119 +-71.07473,42.33149,"DD [drivethru-no] [wifi-yes]-Boston,MA",17 Melnea Cass Blvd, Boston,MA,2119 +-71.062447,42.352135,"DD [drivethru-no] [wifi-yes]-Boston,MA",630 Washington St, Boston,MA,2111 +-71.057747,42.355106,"DD [drivethru-no] [wifi-no]-Boston,MA",10 Winthrop Sq, Boston,MA,2110 +-71.060516,42.35527,"DD [drivethru-no] [wifi-yes]-Boston,MA",1 Summer St, Boston,MA,2110 +-71.082214,42.348625,"DD [drivethru-no] [wifi-yes]-Boston,MA",800 Boylston St [Prudential Ctr Ste 023], Boston,MA,2199 +-71.06551,42.39632,"DD [drivethru-yes] [wifi-yes]-Everett,MA",50 Broadway, Everett,MA,2149 +-71.05336,42.40938,"DD [drivethru-yes] [wifi-yes]-Everett,MA",524 Broadway, Everett,MA,2149 +-71.049889,42.402557,"DD [drivethru-yes] [wifi-no]-Everett,MA",1886 Revere Beach Pkwy, Everett,MA,2149 +-71.0588,42.40349,"DD [drivethru-no] [wifi-no]-Everett,MA",318 Broadway, Everett,MA,2149 +-71.043884,42.420048,"DD [drivethru-no] [wifi-yes]-Everett,MA",903 Broadway, Everett,MA,2149 +-71.010948,42.234138,"DD [drivethru-yes] [wifi-yes]-Quincy,MA",366 Centre St, Quincy,MA,2169 +-71.00407,42.25215,"DD [drivethru-no] [wifi-yes]-Quincy,MA",1250 Hancock Street [# 1], Quincy,MA,2169 +-71.06289,42.36453,"DD [drivethru-no] [wifi-yes]-Boston,MA",59 Causeway Street, Boston,MA,2114 +-71.061829,42.365356,"DD [drivethru-no] [wifi-yes]-Boston,MA",100 Legends Way [North Station], Boston,MA,2114 +-71.06863,42.35165,"DD [drivethru-no] [wifi-yes]-Boston,MA",8 Park Plaza [Transportation Blvd], Boston,MA,2116 +-71.056114,42.360771,"DD [drivethru-no] [wifi-yes]-Boston,MA",20 North St, Boston,MA,2109 +-71.13234,42.23774,"DD [drivethru-yes] [wifi-yes]-Hyde Park,MA",1800 Hyde Park Avenue, Hyde Park,MA,2136 +-71.12357,42.25807,"DD [drivethru-no] [wifi-yes]-Hyde Park,MA",1200 Hyde Park Avenue, Hyde Park,MA,2136 +-71.120743,42.267586,"DD [drivethru-yes] [wifi-yes]-Hyde Park,MA",942 Hyde Park Ave, Hyde Park,MA,2136 +-71.139282,42.276131,"DD [drivethru-yes] [wifi-no]-Roslindale,MA",4610 Washington St, Roslindale,MA,2131 +-71.10325,42.36512,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",616 Massachusetts Avenue, Cambridge,MA,2139 +-71.11903,42.38857,"DD [drivethru-no] [wifi-no]-Cambridge,MA",1 White Street, Cambridge,MA,2140 +-71.12093,42.37162,"DD [drivethru-no] [wifi-yes]-Cambridge,MA",65 Jfk Street, Cambridge,MA,2138 +-71.115791,42.372173,"DD/BR [drivethru-no] [wifi-yes]-Cambridge,MA",1 Bow St, Cambridge,MA,2138 +-71.054337,42.35463,"DD [drivethru-no] [wifi-yes]-Boston,MA",230 Congress St, Boston,MA,2110 +-71.065842,42.343819,"DD [drivethru-no] [wifi-yes]-Boston,MA",1138 Washington St, Boston,MA,2118 +-71.058121,42.353622,"DD [drivethru-no] [wifi-no]-Boston,MA",101 Summer St, Boston,MA,2110 +-71.05042,42.35036,"DD [drivethru-no] [wifi-yes]-Boston,MA",268 Summer Street Ste 103, Boston,MA,2210 +-71.023354,42.288132,"DD [drivethru-no] [wifi-no]-North Quincy,MA",388 E Squantum St, North Quincy,MA,2171 +-71.009514,42.232285,"DD [drivethru-no] [wifi-no]-Quincy,MA",485 Centre St [Home Depot], Quincy,MA,2169 +-71.034508,42.280411,"DD [drivethru-no] [wifi-yes]-North Quincy,MA",125 Hancock St, North Quincy,MA,2171 +-71.023773,42.269245,"DD [drivethru-yes] [wifi-yes]-Quincy,MA",195 Newport Ave, Quincy,MA,2170 +-70.98571,42.26221,"DD [drivethru-yes] [wifi-yes]-Quincy,MA",364 Sea Street, Quincy,MA,2169 +-70.991074,42.241207,"DD [drivethru-yes] [wifi-no]-Quincy,MA",243 Quincy Ave [#227], Quincy,MA,2169 +-71.160583,42.258694,"DD [drivethru-no] [wifi-yes]-West Roxbury,MA",5305 Washington St, West Roxbury,MA,2132 +-71.151877,42.287528,"DD [drivethru-no] [wifi-no]-West Roxbury,MA",1783 Centre St [Hess], West Roxbury,MA,2132 +-71.168404,42.266491,"DD [drivethru-yes] [wifi-yes]-West Roxbury,MA",1630 Vfw Parkway, West Roxbury,MA,2132 +-71.17242,42.27093,"DD [drivethru-yes] [wifi-yes]-West Roxbury,MA",1435-1445 Vfw Pkwy, West Roxbury,MA,2132 +-71.126717,42.28796,"DD [drivethru-no] [wifi-no]-Roslindale,MA",4175 Washington St, Roslindale,MA,2131 +-71.166763,42.276218,"DD [drivethru-no] [wifi-yes]-West Roxbury,MA",155 Spring St, West Roxbury,MA,2132 +-71.083824,42.280668,"DD [drivethru-yes] [wifi-no]-Boston,MA",895 Morton St, Boston,MA,2126 +-71.040459,42.258022,"DD [drivethru-no] [wifi-yes]-Milton,MA",545 Adams St, Milton,MA,2186 +-71.066139,42.278652,"DD [drivethru-no] [wifi-no]-Dorchester,MA",2100 Dorchester Ave [Carney Hospital], Dorchester,MA,2124 +-71.063187,42.412365,"DD [drivethru-no] [wifi-yes]-Everett,MA",339 Main St, Everett,MA,2149 +-71.065605,42.325588,"DD [drivethru-no] [wifi-no]-Dorchester,MA",1100 Mass Ave [Stop & Shop], Dorchester,MA,2125 +-71.06115,42.320927,"DD [drivethru-no] [wifi-yes]-Dorchester,MA",256 Boston St, Dorchester,MA,2125 +-71.05681,42.3219,"DD [drivethru-no] [wifi-no]-Dorchester,MA",847 Dorchester Avenue, Dorchester,MA,2125 +-71.06126,42.29647,"DD [drivethru-no] [wifi-yes]-Dorchester,MA",1580A Dorchester Avenue, Dorchester,MA,2122 +-71.04567,42.284161,"DD [drivethru-no] [wifi-no]-Dorchester,MA",719 Gallivan Blvd, Dorchester,MA,2122 +-71.05824,42.30845,"DD [drivethru-no] [wifi-yes]-Dorchester,MA",1236 Dorchester Avenue, Dorchester,MA,2125 +-71.05743,42.3296,"DD [drivethru-no] [wifi-yes]-Boston,MA",510 Southampton Street, Boston,MA,2127 +-71.045845,42.3358,"DD [drivethru-no] [wifi-no]-Boston,MA",482 W Broadway, Boston,MA,2127 +-71.055984,42.335999,"DD [drivethru-yes] [wifi-yes]-South Boston,MA",75 Old Colony Ave, South Boston,MA,2127 +-71.056096,42.34223,"DD [drivethru-no] [wifi-yes]-South Boston,MA",48 W Broadway, South Boston,MA,2127 +-71.07987,42.34939,"DD [drivethru-no] [wifi-yes]-Boston,MA",715 Boylstn, Boston,MA,2116 +-71.08636,42.34167,"DD [drivethru-no] [wifi-yes]-Boston,MA",283 Huntington Avenue, Boston,MA,2115 +-71.100815,42.343624,"DD [drivethru-no] [wifi-no]-Boston,MA",1420 Boylston St, Boston,MA,2215 +-71.05359,42.35676,"DD [drivethru-no] [wifi-yes]-Boston,MA",265 Franklin Street, Boston,MA,2110 +-71.14881,42.35609,"DD [drivethru-no] [wifi-yes]-Brighton,MA",214 North Beacon Street, Brighton,MA,2135 +-71.130257,42.362885,"DD [drivethru-no] [wifi-yes]-Allston,MA",209 N Harvard St, Allston,MA,2134 +-71.166847,42.350388,"DD [drivethru-no] [wifi-no]-Brighton,MA",598 Washington St, Brighton,MA,2135 +-71.1387,42.35308,"DD [drivethru-no] [wifi-no]-Allston,MA",509 Cambridge Street, Allston,MA,2134 +-71.05082,42.35795,"DD [drivethru-no] [wifi-no]-Boston,MA",70 E India Row, Boston,MA,2110 +-71.058121,42.35817,"DD [drivethru-no] [wifi-yes]-Boston,MA",235 Washington St, Boston,MA,2108 +-71.062996,42.364471,"DD [drivethru-no] [wifi-yes]-Boston,MA",Fleet Center Train Deck [Causeway St], Boston,MA,2114 +-71.06234,42.365044,"DD [drivethru-no] [wifi-no]-Boston,MA",One Legends Way [7th Floor Ste 200], Boston,MA,2114 +-71.087387,42.34634,"DD [drivethru-no] [wifi-yes]-Boston,MA",153 Massachusetts Ave, Boston,MA,2115 +-71.081879,42.340862,"DD [drivethru-no] [wifi-yes]-Boston,MA",434 Mass Ave, Boston,MA,2118 +-71.074562,42.33519,"DD [drivethru-no] [wifi-yes]-Roxbury,MA",Boston Medical Center [850 Harrison Ave], Roxbury,MA,2118 +-71.258717,42.344462,"DD [drivethru-no] [wifi-no]-Newton,MA",2370 Commonwealth Ave [Hess], Newton,MA,2466 +-71.078873,42.382523,"DD [drivethru-no] [wifi-yes]-Charlestown,MA",99 Cambridge St, Charlestown,MA,2129 +-71.065147,42.375187,"DD [drivethru-no] [wifi-yes]-Charlestown,MA",11 Austin St, Charlestown,MA,2129 +-71.07829,42.34813,"DD [drivethru-no] [wifi-no]-Boston,MA",53 Huntington Avenue [Shaws], Boston,MA,2116 +-71.096016,42.348652,"DD [drivethru-no] [wifi-no]-Boston,MA",530 Commonwealth Ave, Boston,MA,2215 +-71.076294,42.345909,"DD [drivethru-no] [wifi-no]-Boston,MA",145 Dartmouth St, Boston,MA,2116 +-71.121002,42.342472,"DD [drivethru-no] [wifi-yes]-Brookline,MA",1316 Beacon St, Brookline,MA,2446 +-71.103531,42.3339,"DD [drivethru-no] [wifi-yes]-Boston,MA",1631 Tremont St, Boston,MA,2120 +-71.109009,42.337498,"DD [drivethru-no] [wifi-yes]-Boston,MA",457 Brookline Ave [Deaconess Hospital], Boston,MA,2215 +-71.118973,42.333424,"DD [drivethru-no] [wifi-yes]-Brookline,MA",8 Harvard St, Brookline,MA,2445 +-71.13058,42.34975,"DD [drivethru-no] [wifi-yes]-Allston,MA",210 Harvard Avenue, Allston,MA,2134 +-71.05928,42.359352,"DD [drivethru-no] [wifi-yes]-Boston,MA",100 City Hall Plaza, Boston,MA,2114 +-71.062904,42.357723,"DD [drivethru-no] [wifi-no]-Boston,MA",22 Beacon St, Boston,MA,2108 +-71.042641,42.34861,"DD [drivethru-no] [wifi-yes]-Boston,MA",200 Seaport Blvd [World Trade Ctr], Boston,MA,2210 +-70.955816,41.656423,"DD [drivethru-yes] [wifi-no]-New Bedford,MA",380 Hathaway Rd, New Bedford,MA,2740 +-70.942749,41.676891,"DD [drivethru-yes] [wifi-no]-New Bedford,MA",950 Kings Hwy, New Bedford,MA,2745 +-70.93578,41.70169,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",3021 Acushnet Avenue, New Bedford,MA,2745 +-71.03641,41.63894,"DD [drivethru-yes] [wifi-yes]-Dartmouth,MA",823 State Rd, Dartmouth,MA,2747 +-71.001816,41.640755,"DD [drivethru-yes] [wifi-no]-North Dartmouth,MA",450 State Rd, North Dartmouth,MA,2747 +-70.927315,41.63419,"DD [drivethru-no] [wifi-yes]-New Bedford,MA",231 Union St, New Bedford,MA,2740 +-70.931992,41.613682,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",19 Rockdale Ave, New Bedford,MA,2740 +-70.923286,41.679272,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",2095 Acushnet Ave, New Bedford,MA,2745 +-70.947289,41.727001,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",1169 Braley Rd, New Bedford,MA,2745 +-70.931412,41.669804,"DD [drivethru-no] [wifi-no]-New Bedford,MA",450 Ashley Blvd, New Bedford,MA,2745 +-70.94989,41.635681,"DD [drivethru-yes] [wifi-no]-New Bedford,MA",929 Kempton St [Hess], New Bedford,MA,2740 +-70.983139,41.639412,"DD [drivethru-yes] [wifi-yes]-Dartmouth,MA",255 State Rd, Dartmouth,MA,2747 +-70.918213,41.613789,"DD [drivethru-no] [wifi-no]-New Bedford,MA",951 Brock Ave, New Bedford,MA,2744 +-70.920944,41.626453,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",113 Conway St, New Bedford,MA,2740 +-70.928482,41.649139,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",1750 Purchase St, New Bedford,MA,2740 +-70.924721,41.656136,"DD [drivethru-yes] [wifi-no]-New Bedford,MA",245 Coggeshall St, New Bedford,MA,2746 +-70.95266,41.635754,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",1014 Kempton St, New Bedford,MA,2740 +-70.9123,41.65617,"DD [drivethru-yes] [wifi-yes]-Fairhaven,MA",32 Howland Road, Fairhaven,MA,2719 +-70.884933,41.641453,"DD [drivethru-yes] [wifi-yes]-Fairhaven,MA",27 Alden Rd, Fairhaven,MA,2719 +-70.955437,41.636379,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",1091 Kempton St, New Bedford,MA,2740 +-70.942032,41.66201,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",131 Nauset St, New Bedford,MA,2746 +-71.042218,41.638724,"DD [drivethru-yes] [wifi-no]-Dartmouth,MA",876 State Rd, Dartmouth,MA,2747 +-71.153145,41.696018,"DD [drivethru-yes] [wifi-no]-Fall River,MA",350 Rodman St, Fall River,MA,2721 +-71.89407,42.16745,"DD [drivethru-yes] [wifi-no]-North Oxford,MA",138 Southbridge Road, North Oxford,MA,1537 +-71.86227,42.11687,"DD [drivethru-yes] [wifi-yes]-Oxford,MA",17 Sutton Avenue, Oxford,MA,1540 +-70.98764,41.650997,"DD [drivethru-yes] [wifi-no]-North Dartmouth,MA",127 Faunce Corner Rd, North Dartmouth,MA,2747 +-71.108719,41.675373,"DD [drivethru-yes] [wifi-no]-Westport,MA",175 State Rd, Westport,MA,2790 +-70.90888,41.6791,"DD [drivethru-yes] [wifi-yes]-Acushnet,MA",150 S Main Street, Acushnet,MA,2743 +-70.934273,41.682606,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",807 Ashley Blvd, New Bedford,MA,2745 +-70.939575,41.610844,"DD [drivethru-yes] [wifi-yes]-Dartmouth,MA",575 Dartmouth St, Dartmouth,MA,2748 +-71.014305,41.838482,"DD [drivethru-yes] [wifi-yes]-Berkley,MA",126 Myricks St, Berkley,MA,2779 +-70.771629,41.712547,"DD [drivethru-yes] [wifi-yes]-Marion,MA",450 Wareham Rd, Marion,MA,2738 +-71.067734,41.974094,"DD [drivethru-yes] [wifi-yes]-Raynham,MA",1701 Broadway, Raynham,MA,2767 +-71.458488,42.117931,"DD [drivethru-yes] [wifi-yes]-Bellingham,MA",300 Hartford Ave, Bellingham,MA,2019 +-71.472336,42.113819,"DD [drivethru-yes] [wifi-yes]-Bellingham,MA",189 Hartford Ave, Bellingham,MA,2019 +-71.45316,42.08365,"DD [drivethru-yes] [wifi-yes]-Bellingham,MA",207 Mechanic Street, Bellingham,MA,2019 +-70.912224,41.641224,"DD [drivethru-yes] [wifi-yes]-New Bedford,MA",53 Popes Island, New Bedford,MA,2740 +-71.86445,42.05986,"DD [drivethru-no] [wifi-no]-Webster,MA",137 E Main Street [Exxon], Webster,MA,1570 +-71.863045,42.045204,"DD [drivethru-yes] [wifi-no]-Webster,MA",144 Thompson Rd, Webster,MA,1570 +-71.868868,42.057984,"DD [drivethru-yes] [wifi-no]-Webster,MA",83 E Main St, Webster,MA,1570 +-70.893578,41.898418,"DD [drivethru-yes] [wifi-yes]-Middleboro,MA",3 E Grove St [Corner Rt 105 Main St], Middleboro,MA,2346 +-70.956032,41.901279,"DD [drivethru-yes] [wifi-yes]-Middleboro,MA",565 W Grove St, Middleboro,MA,2346 +-70.971458,41.902145,"DD [drivethru-yes] [wifi-yes]-Middleboro,MA",47 Harding St [Rt 44], Middleboro,MA,2346 +-70.848122,41.844669,"DD [drivethru-yes] [wifi-no]-Middleboro,MA",447 Wareham St, Middleboro,MA,2346 +-71.922096,42.035133,"DD [drivethru-yes] [wifi-yes]-Dudley,MA",269 West Main St, Dudley,MA,1571 +-71.88441,42.04898,"DD [drivethru-no] [wifi-yes]-Webster,MA",128 Main Street, Webster,MA,1570 +-71.05103,42.09412,"DD [drivethru-no] [wifi-yes]-Brockton,MA",200 Westgate Drive, Brockton,MA,2301 +-70.948029,41.844566,"DD [drivethru-yes] [wifi-yes]-Lakeville,MA",330 Bedford St, Lakeville,MA,2347 +-71.606148,42.285248,"DD [drivethru-yes] [wifi-yes]-Westborough,MA",133 Turnpike Rd, Westborough,MA,1581 +-70.112065,41.754877,"DD [drivethru-no] [wifi-yes]-Brewster,MA",15 Lower Rd, Brewster,MA,2631 +-71.00942,42.09606,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",245 East Ashland, Brockton,MA,2302 +-71.90919,42.24605,"DD [drivethru-yes] [wifi-yes]-Leicester,MA",1081 Main Street, Leicester,MA,1524 +-70.500542,41.758274,"DD [drivethru-yes] [wifi-yes]-Sandwich,MA",Rt 130 [Trade Winds Plaza], Sandwich,MA,2563 +-70.540016,41.781994,"DD [drivethru-yes] [wifi-yes]-Sagamore Beach,MA",24 Meetinghouse Lane, Sagamore Beach,MA,2562 +-70.551567,41.817204,"DD [drivethru-yes] [wifi-yes]-Plymouth,MA",2300 State Rd, Plymouth,MA,2360 +-71.984787,42.349747,"DD [drivethru-yes] [wifi-no]-Rutland,MA",222 Barre/Paxton Rd, Rutland,MA,1543 +-71.955109,42.376129,"DD [drivethru-yes] [wifi-yes]-Rutland,MA",255 Main St, Rutland,MA,1543 +-72.012192,42.234421,"DD [drivethru-yes] [wifi-yes]-Spencer,MA",72 W Main St [Rt 9], Spencer,MA,1562 +-71.971184,42.252926,"DD [drivethru-yes] [wifi-no]-Spencer,MA",353 Main St, Spencer,MA,1562 +-71.497749,42.017864,"DD [drivethru-yes] [wifi-yes]-Bellingham,MA",20 Pulaski Blvd [Alouette Plaza], Bellingham,MA,2019 +-71.457138,42.258236,"DD [drivethru-no] [wifi-no]-Ashland,MA",123 Union St [Shell Station], Ashland,MA,1721 +-71.469185,42.253773,"DD [drivethru-yes] [wifi-no]-Ashland,MA",41 W Union St, Ashland,MA,1721 +-71.149425,41.919075,"DD [drivethru-yes] [wifi-no]-Taunton,MA",43 Worcester St, Taunton,MA,2780 +-71.484314,42.052948,"DD [drivethru-yes] [wifi-yes]-Bellingham,MA",815 S Main St, Bellingham,MA,2019 +-71.527557,42.015175,"DD [drivethru-yes] [wifi-yes]-Blackstone,MA",2 Main St, Blackstone,MA,1504 +-71.38422,42.3084,"DD [drivethru-no] [wifi-yes]-Framingham,MA",692 Cochituate Road, Framingham,MA,1701 +-71.4149,42.2823,"DD [drivethru-no] [wifi-yes]-Framingham,MA",266 Concord Street, Framingham,MA,1702 +-71.44519,42.29877,"DD [drivethru-no] [wifi-yes]-Framingham,MA",1170 Worcester Road, Framingham,MA,1702 +-71.612175,42.271336,"DD [drivethru-no] [wifi-yes]-Westborough,MA",35 East Main St, Westborough,MA,1581 +-71.723801,42.329414,"DD [drivethru-yes] [wifi-yes]-Boylston,MA",270 Shrewsbury St [Rt 140], Boylston,MA,1505 +-72.150955,42.233299,"DD [drivethru-yes] [wifi-yes]-West Brookfield,MA",92 W Main St, West Brookfield,MA,1585 +-70.774155,41.892239,"DD [drivethru-yes] [wifi-yes]-Carver,MA",80 Main St, Carver,MA,2330 +-70.752159,41.830601,"DD [drivethru-no] [wifi-yes]-Carver,MA",303 Tremont St, Carver,MA,2330 +-71.244339,42.050095,"DD [drivethru-yes] [wifi-yes]-Foxborough,MA",30 Commercial St, Foxborough,MA,2035 +-71.753143,42.173025,"DD [drivethru-yes] [wifi-no]-Sutton,MA",27 Worcester Providence Tpke, Sutton,MA,1590 +-71.754578,42.192787,"DD [drivethru-yes] [wifi-no]-Millbury,MA",100 Worcester Providence Tpk, Millbury,MA,1527 +-71.757599,42.192582,"DD [drivethru-yes] [wifi-yes]-Millbury,MA",1 Elm St, Millbury,MA,1527 +-70.239692,41.650474,"DD [drivethru-yes] [wifi-yes]-West Yarmouth,MA",464 Rt 28, West Yarmouth,MA,2673 +-70.27002,41.65741,"DD [drivethru-no] [wifi-no]-West Yarmouth,MA",16 East Main St, West Yarmouth,MA,2673 +-71.80595,42.29096,"DD [drivethru-yes] [wifi-no]-Worcester,MA",67 W Boylston Street, Worcester,MA,1606 +-71.762214,42.297569,"DD [drivethru-yes] [wifi-no]-Worcester,MA",665 Plantation St, Worcester,MA,1605 +-71.77167,42.29556,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",543 Lincoln Street, Worcester,MA,1605 +-71.77583,42.29425,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",490 Lincoln Street, Worcester,MA,1605 +-71.677696,42.276085,"DD [drivethru-yes] [wifi-yes]-Shrewsbury,MA",866 Hartford Tpke, Shrewsbury,MA,1545 +-71.717949,42.294365,"DD [drivethru-yes] [wifi-yes]-Shrewsbury,MA",36 Maple Ave, Shrewsbury,MA,1545 +-71.69166,42.21475,"DD [drivethru-yes] [wifi-yes]-Grafton,MA",72 Worcester St, Grafton,MA,1519 +-71.1384,41.76912,"DD [drivethru-yes] [wifi-no]-Somerset,MA",2756 County Street, Somerset,MA,2726 +-71.786636,42.346821,"DD [drivethru-yes] [wifi-yes]-West Boylston,MA",244 W Boylston St, West Boylston,MA,1583 +-70.49691,41.762959,"DD [drivethru-yes] [wifi-yes]-Sandwich,MA",111 Rt 6a, Sandwich,MA,2563 +-70.488411,41.718506,"DD [drivethru-yes] [wifi-no]-Sandwich,MA",336 Rt 130, Sandwich,MA,2563 +-71.837456,42.20356,"DD [drivethru-yes] [wifi-yes]-Auburn,MA",386 Southbridge St, Auburn,MA,1501 +-71.861023,42.182941,"DD [drivethru-yes] [wifi-yes]-Auburn,MA",717 Southbridge St, Auburn,MA,1501 +-71.818863,42.19836,"DD [drivethru-no] [wifi-no]-Auburn,MA",310 Washington St, Auburn,MA,1501 +-71.874886,42.175549,"DD [drivethru-yes] [wifi-yes]-Auburn,MA",895 Southbridge St, Auburn,MA,1501 +-70.64421,41.94397,"DD [drivethru-no] [wifi-no]-Plymouth,MA",275A Sandwich St [Oncology Dept Grd floor], Plymouth,MA,2360 +-71.835037,42.336536,"DD [drivethru-yes] [wifi-yes]-Holden,MA",5 Shrewsbury St [Chaffins Corner Plaza], Holden,MA,1520 +-71.861137,42.350128,"DD [drivethru-no] [wifi-no]-Holden,MA",1175 Main St [Mobil Station], Holden,MA,1520 +-71.06989,41.95572,"DD [drivethru-yes] [wifi-no]-Raynham,MA",1023 Broadway [Exxon Sta], Raynham,MA,2767 +-71.11901,41.95852,"DD [drivethru-yes] [wifi-no]-Taunton,MA",2070 Bay Street, Taunton,MA,2780 +-71.11459,41.88534,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",19 Cape Hwy Route 44, Taunton,MA,2780 +-71.067745,41.963925,"DD [drivethru-no] [wifi-no]-Raynham,MA",1315 Broadway [Hess], Raynham,MA,2767 +-71.05037,41.90605,"DD/BR [drivethru-yes] [wifi-yes]-Raynham,MA",406 New State Highway, Raynham,MA,2767 +-71.06696,41.88488,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",648 County Street, Taunton,MA,2780 +-71.05077,41.86748,"DD [drivethru-no] [wifi-no]-Taunton,MA",2 Galleria Mall Drive [Silver City Mall], Taunton,MA,2780 +-71.089495,41.888551,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",491 Weir St, Taunton,MA,2780 +-71.0909,41.91986,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",232 Broadway, Taunton,MA,2780 +-71.08045,41.9375,"DD [drivethru-yes] [wifi-yes]-Raynham,MA",290 Broadway, Raynham,MA,2767 +-71.099667,41.902595,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",5 Washington St, Taunton,MA,2780 +-71.11555,41.85508,"DD [drivethru-yes] [wifi-no]-North Dighton,MA",420 Somerset Avenue, North Dighton,MA,2764 +-71.120445,41.888912,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",296 Winthrop St, Taunton,MA,2780 +-71.135803,41.886108,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",403 Winthrop St, Taunton,MA,2780 +-71.060745,41.876339,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",983 County St, Taunton,MA,2780 +-71.01088,41.904259,"DD [drivethru-yes] [wifi-yes]-Raynham,MA",1470 New State Hwy, Raynham,MA,2767 +-71.401962,42.306713,"DD [drivethru-no] [wifi-no]-Framingham,MA",235 Old Connecticut Path [Stop & Shop], Framingham,MA,1701 +-71.014465,41.904266,"DD [drivethru-no] [wifi-no]-Raynham,MA",1375 Rt 44, Raynham,MA,2767 +-71.80913,42.25061,"DD [drivethru-no] [wifi-no]-Worcester,MA",399 Southbridge Street, Worcester,MA,1610 +-71.818169,42.260956,"DD [drivethru-yes] [wifi-no]-Worcester,MA",211 Chandler St, Worcester,MA,1609 +-71.795662,42.26609,"DD [drivethru-no] [wifi-no]-Worcester,MA",123 Summer St [Worcester Medical Center], Worcester,MA,1608 +-71.76693,42.27371,"DD [drivethru-yes] [wifi-no]-Worcester,MA",310 Belmont Street [Texaco Station], Worcester,MA,1604 +-71.759499,42.246037,"DD [drivethru-no] [wifi-no]-Worcester,MA",949 Grafton St [Stop & Shop], Worcester,MA,1604 +-71.791824,42.239002,"DD [drivethru-yes] [wifi-no]-Worcester,MA",257 Providence St, Worcester,MA,1607 +-71.844963,42.242256,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",1283 Main St, Worcester,MA,1603 +-71.80212,42.26352,"DD [drivethru-no] [wifi-no]-Worcester,MA",427 Main Street, Worcester,MA,1608 +-70.28849,41.665722,"DD [drivethru-yes] [wifi-no]-Hyannis,MA",Rt 132 Liberty Square, Hyannis,MA,2601 +-71.4359,42.328,"DD [drivethru-no] [wifi-no]-Framingham,MA",876 Edgell Road, Framingham,MA,1701 +-70.2998,41.66325,"DD [drivethru-yes] [wifi-yes]-Hyannis,MA",317 Falmouth Road, Hyannis,MA,2601 +-70.29138,41.6489,"DD [drivethru-no] [wifi-no]-Hyannis,MA",627 Main Street, Hyannis,MA,2601 +-70.276009,41.659954,"DD [drivethru-yes] [wifi-no]-Hyannis,MA",156 Iyannough Rd, Hyannis,MA,2601 +-70.293549,41.668064,"DD [drivethru-no] [wifi-yes]-Hyannis,MA",702 Iyannough Rd, Hyannis,MA,2601 +-70.298985,41.666401,"DD [drivethru-no] [wifi-no]-Hyannis,MA",Rt 132 Rear S 101a/Cc Mall, Hyannis,MA,2601 +-70.347328,41.657177,"DD [drivethru-no] [wifi-yes]-Centerville,MA",1648 Falmouth Rd, Centerville,MA,2632 +-70.322319,41.653622,"DD [drivethru-no] [wifi-yes]-Hyannis,MA",751 W Main St, Hyannis,MA,2601 +-70.286743,41.652821,"DD [drivethru-yes] [wifi-no]-Hyannis,MA",147 North St, Hyannis,MA,2601 +-71.753021,42.231194,"DD [drivethru-yes] [wifi-no]-Worcester,MA",177 Southwest Cutoff, Worcester,MA,1604 +-71.85334,42.2771,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",648 Chandler St, Worcester,MA,1602 +-72.03643,42.076923,"DD [drivethru-yes] [wifi-yes]-Southbridge,MA",419-423 Main St, Southbridge,MA,1550 +-72.014137,42.070908,"DD [drivethru-yes] [wifi-no]-Southbridge,MA",386 E Main St, Southbridge,MA,1550 +-72.019386,42.097973,"DD [drivethru-yes] [wifi-no]-Southbridge,MA",736 Worcester St, Southbridge,MA,1550 +-70.954811,41.770863,"DD [drivethru-yes] [wifi-no]-East Freetown,MA",1 Mason Ave, East Freetown,MA,2717 +-70.956024,41.770687,"DD [drivethru-yes] [wifi-yes]-East Freetown,MA",2 Chace Rd, East Freetown,MA,2717 +-71.33357,41.87334,"DD [drivethru-no] [wifi-yes]-Seekonk,MA",1035 Newman Avenue, Seekonk,MA,2771 +-71.35448,41.92792,"DD [drivethru-yes] [wifi-yes]-Attleboro,MA",106 Washington Street, Attleboro,MA,2703 +-70.152877,41.692944,"DD [drivethru-no] [wifi-yes]-South Dennis,MA",485 Route 134 [Ste L], South Dennis,MA,2660 +-70.58945,41.71685,"DD [drivethru-yes] [wifi-yes]-Bourne,MA",174 Clay Pond Road, Bourne,MA,2532 +-70.810204,41.664371,"DD [drivethru-yes] [wifi-yes]-Mattapoisett,MA",51 County Rd, Mattapoisett,MA,2739 +-71.780479,42.268307,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",295 Shrewsbury St, Worcester,MA,1604 +-71.798805,42.255268,"DD [drivethru-yes] [wifi-no]-Worcester,MA",185 Madison St [Exxon Station], Worcester,MA,1610 +-71.79259,42.27206,"DD [drivethru-no] [wifi-no]-Worcester,MA",104 Belmont Street, Worcester,MA,1605 +-71.757866,42.244366,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",990 Grafton St, Worcester,MA,1604 +-71.74924,42.27475,"DD [drivethru-no] [wifi-yes]-Shrewsbury,MA",118 Boston Turnpike, Shrewsbury,MA,1545 +-71.800766,42.280975,"DD [drivethru-no] [wifi-yes]-Worcester,MA",610 Park Ave, Worcester,MA,1605 +-71.92342,42.30672,"DD [drivethru-no] [wifi-yes]-Paxton,MA",607 Pleasant Street, Paxton,MA,1612 +-71.7149,42.24965,"DD [drivethru-no] [wifi-no]-Shrewsbury,MA",307 Hartford Turnpike, Shrewsbury,MA,1545 +-71.849434,42.230522,"DD [drivethru-yes] [wifi-yes]-Worcester,MA",60 S Ludlow St, Worcester,MA,1603 +-71.799576,42.24791,"DD [drivethru-no] [wifi-no]-Worcester,MA",107 Ward St, Worcester,MA,1610 +-70.65711,41.93912,"DD [drivethru-yes] [wifi-yes]-Plymouth,MA",160 South Street, Plymouth,MA,2360 +-70.73507,41.91088,"DD [drivethru-yes] [wifi-no]-Plymouth,MA",265 South Meadow Road, Plymouth,MA,2360 +-70.670311,41.960381,"DD [drivethru-no] [wifi-no]-Plymouth,MA",109 Court St [Mobil Station], Plymouth,MA,2360 +-70.657753,41.933678,"DD [drivethru-yes] [wifi-no]-Plymouth,MA",11 Long Pond Rd, Plymouth,MA,2360 +-70.587929,41.727211,"DD [drivethru-yes] [wifi-no]-Buzzards Bay,MA",343 Scenic Hwy, Buzzards Bay,MA,2532 +-70.59944,41.75099,"DD [drivethru-yes] [wifi-yes]-Buzzards Bay,MA",278 Main Street, Buzzards Bay,MA,2532 +-70.62291,41.88688,"DD [drivethru-no] [wifi-no]-Plymouth,MA",105 Samoset [Hess], Plymouth,MA,2360 +-70.70919,41.96198,"DD [drivethru-yes] [wifi-yes]-Plymouth,MA",131 Commerce Way, Plymouth,MA,2360 +-70.685303,41.952766,"DD [drivethru-yes] [wifi-yes]-Plymouth,MA",134 Samoset St, Plymouth,MA,2360 +-70.71476,41.94991,"DD [drivethru-yes] [wifi-yes]-Plymouth,MA",23 Commerce Wy, Plymouth,MA,2360 +-71.318481,41.974056,"DD [drivethru-no] [wifi-yes]-North Attleboro,MA",388 Elm St, North Attleboro,MA,2760 +-71.312523,42.032249,"DD [drivethru-yes] [wifi-yes]-Plainville,MA",100 Taunton St, Plainville,MA,2762 +-71.283317,42.076539,"DD [drivethru-yes] [wifi-yes]-Foxboro,MA",263 Main St, Foxboro,MA,2035 +-71.025761,41.956702,"DD [drivethru-no] [wifi-no]-Bridgewater,MA",Rt 24 Northbound Service Pavilion, Bridgewater,MA,2324 +-70.97319,41.968197,"DD [drivethru-yes] [wifi-yes]-Bridgewater,MA",750 Bedford St, Bridgewater,MA,2324 +-70.973801,41.994175,"DD [drivethru-yes] [wifi-yes]-Bridgewater,MA",171 Broad St, Bridgewater,MA,2324 +-70.975403,41.99044,"DD [drivethru-no] [wifi-no]-Bridgewater,MA",33 Main St [Cumberland Farms], Bridgewater,MA,2324 +-71.00576,41.97192,"DD [drivethru-yes] [wifi-yes]-Bridgewater,MA",955 Pleasant Street, Bridgewater,MA,2324 +-71.027161,41.955829,"DD [drivethru-no] [wifi-no]-Bridgewater,MA",Rt 24 Southbound Service Pavilion, Bridgewater,MA,2324 +-71.304578,42.009446,"DD [drivethru-yes] [wifi-yes]-Plainville,MA",4 Taunton St, Plainville,MA,2762 +-71.339493,41.964626,"DD [drivethru-yes] [wifi-yes]-North Attleboro,MA",544 S Washington St, North Attleboro,MA,2760 +-71.319824,42.013271,"DD [drivethru-yes] [wifi-yes]-Plainville,MA",86A Washington St, Plainville,MA,2762 +-71.35112,41.934711,"DD [drivethru-yes] [wifi-no]-North Attleboro,MA",1470 S Washington St [Walmart], North Attleboro,MA,2760 +-71.32894,41.9946,"DD [drivethru-yes] [wifi-yes]-North Attleboro,MA",412 N Washington Street, North Attleboro,MA,2760 +-71.117638,42.702072,"DD [drivethru-yes] [wifi-no]-North Andover,MA",982 Osgood St [Texaco Service Sta Rt 125], North Andover,MA,1845 +-71.155907,41.664974,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",1099 William S Canning Blvd, Fall River,MA,2721 +-71.170853,41.731277,"DD [drivethru-no] [wifi-no]-Somerset,MA",815 Grand Army Hwy [Stop & Shop], Somerset,MA,2726 +-71.14445,41.69774,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",657 Pleasant, Fall River,MA,2721 +-71.17176,41.68755,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",499 Globe St, Fall River,MA,2724 +-71.151286,41.715372,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",1023 North Main St, Fall River,MA,2720 +-71.128044,41.713951,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",325 Elsbree St, Fall River,MA,2720 +-71.154228,41.716335,"DD [drivethru-no] [wifi-yes]-Fall River,MA",101 President Ave, Fall River,MA,2720 +-71.15648,41.70006,"DD [drivethru-no] [wifi-yes]-Fall River,MA",138 South Main Street, Fall River,MA,2721 +-71.204962,41.731592,"DD [drivethru-yes] [wifi-yes]-Swansea,MA",328 Wilbur Ave, Swansea,MA,2777 +-71.116658,41.752728,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",320 Airport Rd, Fall River,MA,2720 +-71.16519,41.72917,"DD [drivethru-yes] [wifi-yes]-Somerset,MA",505 Grand Army Highway, Somerset,MA,2726 +-71.13181,41.68111,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",1510 Brayton Avenue, Fall River,MA,2721 +-71.142212,41.710743,"DD [drivethru-no] [wifi-no]-Fall River,MA",190 New Boston Rd [Tedeschis], Fall River,MA,2720 +-71.20916,41.74824,"DD [drivethru-yes] [wifi-no]-Swansea,MA",651 G A R Highway, Swansea,MA,2777 +-71.144783,41.746632,"DD [drivethru-yes] [wifi-yes]-Somerset,MA",978 County St, Somerset,MA,2726 +-71.145126,41.700573,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",15 Robeson St, Fall River,MA,2720 +-71.16369,41.68269,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",64 Rhode Island Avenue, Fall River,MA,2724 +-71.15917,41.70037,"DD [drivethru-yes] [wifi-yes]-Fall River,MA",234 Milliken Boulevard, Fall River,MA,2721 +-71.174644,41.73344,"DD [drivethru-yes] [wifi-yes]-Somerset,MA",1073 Grand Army Hwy, Somerset,MA,2726 +-71.161125,41.673607,"DD [drivethru-no] [wifi-no]-Fall River,MA",374 William S Canning Blvd [Walmart], Fall River,MA,2721 +-71.151421,41.694351,"DD [drivethru-no] [wifi-yes]-Fall River,MA",501 Rodman St [Stop & Shop], Fall River,MA,2721 +-71.20166,42.15776,"DD [drivethru-yes] [wifi-yes]-East Walpole,MA",21 Providence Highway, East Walpole,MA,2032 +-71.199203,42.164398,"DD [drivethru-no] [wifi-no]-Norwood,MA",1415 Providence Hwy [Stop & Shop], Norwood,MA,2062 +-71.218246,42.140331,"DD [drivethru-yes] [wifi-yes]-Walpole,MA",506 High Plain St, Walpole,MA,2081 +-71.221748,42.135532,"DD [drivethru-no] [wifi-no]-Walpole,MA",550 Providence Hwy [WalMart], Walpole,MA,2081 +-71.246719,42.153645,"DD [drivethru-yes] [wifi-yes]-Walpole,MA",703 Main St, Walpole,MA,2081 +-71.243233,42.157974,"DD [drivethru-no] [wifi-no]-Walpole,MA",550 Main St [Stop & Shop], Walpole,MA,2081 +-71.262448,42.132556,"DD [drivethru-yes] [wifi-yes]-Walpole,MA",1425 Main St, Walpole,MA,2081 +-71.34245,42.28469,"DD [drivethru-no] [wifi-yes]-Natick,MA",50 E Central Street, Natick,MA,1760 +-71.36949,42.23985,"DD [drivethru-yes] [wifi-no]-Sherborn,MA",21 S Main St, Sherborn,MA,1770 +-71.37394,42.28284,"DD [drivethru-yes] [wifi-no]-Natick,MA",133 W Central Street, Natick,MA,1760 +-71.384933,42.2994,"DD [drivethru-no] [wifi-no]-Natick,MA",1245 Worcester St, Natick,MA,1760 +-71.36159,42.30492,"DD [drivethru-no] [wifi-yes]-Natick,MA",249 N Main Street, Natick,MA,1760 +-71.3638,42.32132,"DD [drivethru-no] [wifi-yes]-Wayland,MA",15 E Plain St, Wayland,MA,1778 +-71.388847,42.298798,"DD [drivethru-no] [wifi-yes]-Natick,MA",1362 Worcester St, Natick,MA,1760 +-71.365189,42.311331,"DD [drivethru-yes] [wifi-no]-Natick Service Plaza [Mass TP] Natick,MA",MA TP-Natick Service Plaza [I-90 EB MM 123], Natick,MA,1760 +-71.13961,41.69341,"DD [drivethru-yes] [wifi-no]-Fall River,MA",400 Quarry Street, Fall River,MA,2723 +-71.21902,41.75889,"DD [drivethru-no] [wifi-no]-Swansea,MA",262 Swansea Mall Drive, Swansea,MA,2777 +-71.076736,41.78685,"DD [drivethru-yes] [wifi-yes]-Assonet,MA",68 South Main St, Assonet,MA,2702 +-71.073929,41.788612,"DD [drivethru-yes] [wifi-yes]-Assonet,MA",60 S Main St, Assonet,MA,2702 +-71.347252,41.94603,"DD [drivethru-no] [wifi-no]-North Attleboro,MA",999 S Washington St [Emerald Square Mall Box 301], North Attleboro,MA,2760 +-71.413506,42.277386,"DD [drivethru-yes] [wifi-yes]-Framingham,MA",334 Waverly St, Framingham,MA,1702 +-71.417557,42.29797,"DD [drivethru-yes] [wifi-yes]-Framingham,MA",517 Worcester Rd, Framingham,MA,1701 +-71.428302,42.289329,"DD [drivethru-no] [wifi-yes]-Framingham,MA",444 Franklin St, Framingham,MA,1702 +-71.478966,42.296658,"DD [drivethru-yes] [wifi-yes]-Framingham,MA",1670 Worcester Rd, Framingham,MA,1702 +-71.525803,42.287037,"DD [drivethru-no] [wifi-yes]-Southborough,MA",162 Cordaville Rd [Town Center Plaza], Southborough,MA,1772 +-71.796059,42.318424,"DD [drivethru-yes] [wifi-no]-Worcester,MA",765 W Boylston St, Worcester,MA,1606 +-71.06221,42.142124,"DD [drivethru-yes] [wifi-yes]-Avon,MA",600 Page St, Avon,MA,2322 +-71.06663,42.09999,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",317 North Pearl, Brockton,MA,2301 +-71.019081,42.073471,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",587 Main St, Brockton,MA,2301 +-71.042488,42.074638,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",43 Torrey St, Brockton,MA,2301 +-71.040382,42.015076,"DD [drivethru-yes] [wifi-no]-West Bridgewater,MA",506 W Center St [Shell Station], West Bridgewater,MA,2379 +-71.030746,42.016396,"DD [drivethru-yes] [wifi-yes]-West Bridgewater,MA",387 W Center St, West Bridgewater,MA,2379 +-71.066782,42.059305,"DD [drivethru-no] [wifi-no]-Brockton,MA",1234 Belmont St [Hess], Brockton,MA,2301 +-71.04707,42.08329,"DD [drivethru-no] [wifi-yes]-Brockton,MA",37 Belmont, Brockton,MA,2301 +-71.05656,42.05494,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",1000 West Chestnut Street, Brockton,MA,2301 +-71.033142,42.121944,"DD [drivethru-yes] [wifi-yes]-Avon,MA",20 Memorial Dr, Avon,MA,2322 +-71.017059,42.084179,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",66 Montello St, Brockton,MA,2301 +-71.03098,42.10924,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",1001 N Main Street, Brockton,MA,2301 +-71.04975,42.06811,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",784 Belmont Street, Brockton,MA,2301 +-71.02299,42.10298,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",748 North Main Street, Brockton,MA,2301 +-71.068123,42.126362,"DD [drivethru-yes] [wifi-yes]-Avon,MA",5 Stockwell Dr, Avon,MA,2322 +-71.007973,42.079979,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",321 Crescent St, Brockton,MA,2301 +-71.032372,42.077877,"DD [drivethru-no] [wifi-no]-Brockton,MA",304 Belmont St, Brockton,MA,2301 +-71.05399,42.09227,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",532 Westgate Drive [Westgate Mall], Brockton,MA,2301 +-70.58661,41.69582,"DD [drivethru-yes] [wifi-yes]-Pocasset,MA",688 Macarthur Boulevard, Pocasset,MA,2559 +-70.61224,41.65107,"DD [drivethru-no] [wifi-yes]-North Falmouth,MA",634 North Falmouth Highway, North Falmouth,MA,2556 +-70.55069,41.623871,"DD [drivethru-yes] [wifi-no]-East Falmouth,MA",1196 Sandwich Rd [Exxon Sta], East Falmouth,MA,2536 +-71.01122,42.05028,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",1775 Main St, Brockton,MA,2301 +-70.61903,41.56142,"DD [drivethru-yes] [wifi-no]-Falmouth,MA",322 Palmer Ave [Texaco Sta], Falmouth,MA,2540 +-70.60564,41.55254,"DD [drivethru-yes] [wifi-yes]-Falmouth,MA",614 Main St, Falmouth,MA,2540 +-71.544975,42.20499,"DD [drivethru-no] [wifi-yes]-Hopkinton,MA",76 South St, Hopkinton,MA,1748 +-71.259831,42.074045,"DD [drivethru-yes] [wifi-yes]-Foxboro,MA",127 Main St, Foxboro,MA,2035 +-71.266403,42.094827,"DD [drivethru-no] [wifi-yes]-Foxborough,MA",1 Patriot Place, Foxborough,MA,2035 +-71.256917,42.103195,"DD [drivethru-yes] [wifi-yes]-Foxborough,MA",16 Washington St, Foxborough,MA,2035 +-71.374016,42.079857,"DD [drivethru-yes] [wifi-yes]-Franklin,MA",547 East Central St, Franklin,MA,2038 +-70.595848,41.5658,"DD [drivethru-no] [wifi-yes]-East Falmouth,MA",202 Teaticket Hwy, East Falmouth,MA,2536 +-70.48418,41.70192,"DD [drivethru-no] [wifi-no]-Sandwich,MA",273 Cotuit Road [Mobil Station], Sandwich,MA,2563 +-70.48959,41.61918,"DD [drivethru-no] [wifi-no]-Mashpee,MA",10 Bates Road [Stop & Shop], Mashpee,MA,2649 +-71.44288,42.14468,"DD [drivethru-yes] [wifi-yes]-Medway,MA",42 Summer Street, Medway,MA,2053 +-71.410034,42.151573,"DD [drivethru-yes] [wifi-yes]-Medway,MA",81a Main St Rt 109, Medway,MA,2053 +-71.619305,42.170739,"DD [drivethru-yes] [wifi-yes]-Upton,MA",10 Hartford Ave, Upton,MA,1568 +-71.422508,42.090939,"DD [drivethru-yes] [wifi-yes]-Franklin,MA",541 West Central St, Franklin,MA,2038 +-71.324055,42.119869,"DD [drivethru-yes] [wifi-yes]-Norfolk,MA",134 Main St, Norfolk,MA,2056 +-71.39931,42.06667,"DD [drivethru-yes] [wifi-yes]-Franklin,MA",490 King St [Silver Maple Commons], Franklin,MA,2038 +-71.027496,41.882584,"DD [drivethru-yes] [wifi-yes]-Taunton,MA",508 Middleboro Ave, Taunton,MA,2718 +-71.54216,42.217018,"DD [drivethru-no] [wifi-no]-Hopkinton,MA",92 W Main St, Hopkinton,MA,1748 +-70.560814,41.578552,"DD [drivethru-yes] [wifi-yes]-East Falmouth,MA",363 E Falmouth Hwy, East Falmouth,MA,2536 +-71.534172,42.351101,"DD [drivethru-yes] [wifi-yes]-Marlborough,MA",269 E Main St, Marlborough,MA,1752 +-71.504143,42.350132,"DD [drivethru-yes] [wifi-yes]-Marlboro,MA",681 Boston Post Rd [Indian Head Shopping Ctr], Marlboro,MA,1752 +-71.54483,42.34733,"DD [drivethru-no] [wifi-yes]-Marlborough,MA",54 Main Street, Marlborough,MA,1752 +-71.516754,42.348991,"DD [drivethru-yes] [wifi-yes]-Marlborough,MA",330 Boston Post Rd, Marlborough,MA,1752 +-71.56012,42.10334,"DD [drivethru-yes] [wifi-yes]-Mendon,MA",4 Uxbridge Road, Mendon,MA,1756 +-71.578835,42.341438,"DD [drivethru-no] [wifi-no]-Marlboro,MA",413 Lakeside Ave, Marlboro,MA,1752 +-70.488968,41.61256,"DD [drivethru-no] [wifi-yes]-Mashpee,MA",40 South St [South Cape Village Ste 42], Mashpee,MA,2649 +-70.481621,41.649067,"DD [drivethru-yes] [wifi-yes]-Mashpee,MA",401 Main St, Mashpee,MA,2649 +-70.516255,41.616241,"DD [drivethru-yes] [wifi-yes]-Mashpee,MA",401 Nathan Ellis Hwy, Mashpee,MA,2649 +-71.733901,42.059947,"DD [drivethru-yes] [wifi-no]-Douglas,MA",63 Main St, Douglas,MA,1516 +-71.695679,42.086739,"DD [drivethru-yes] [wifi-no]-Uxbridge,MA",30 Lackey Dam Rd [Shell Gas Station], Uxbridge,MA,1569 +-71.489845,42.153362,"DD [drivethru-yes] [wifi-yes]-Milford,MA",350 East Main St, Milford,MA,1757 +-71.515038,42.143623,"DD [drivethru-yes] [wifi-yes]-Milford,MA",31 Main St, Milford,MA,1757 +-71.500526,42.149605,"DD [drivethru-yes] [wifi-yes]-Milford,MA",35 Medway Rd, Milford,MA,1757 +-71.541618,42.337097,"DD [drivethru-yes] [wifi-yes]-Marlborough,MA",312 Maple St, Marlborough,MA,1752 +-70.020599,41.705982,"DD [drivethru-no] [wifi-no]-Harwich,MA",109 Rt 137, Harwich,MA,2645 +-70.073334,41.698116,"DD [drivethru-no] [wifi-no]-Harwich,MA",173 Pleasant Lake Dr, Harwich,MA,2645 +-70.024156,41.709513,"DD [drivethru-no] [wifi-yes]-Harwich,MA",175 Route 137, Harwich,MA,2645 +-70.080688,41.668156,"DD [drivethru-no] [wifi-yes]-Harwich Port,MA",481 Rt 28, Harwich Port,MA,2646 +-71.42661,42.2104,"DD [drivethru-yes] [wifi-yes]-Holliston,MA",441 Washington Street, Holliston,MA,1746 +-70.99387,42.08069,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",635 Crescent, Brockton,MA,2302 +-71.032867,42.121639,"DD [drivethru-no] [wifi-no]-Avon,MA",30 Memorial Dr [Walmart], Avon,MA,2322 +-71.008003,42.019287,"DD [drivethru-yes] [wifi-yes]-West Bridgewater,MA",9 North Main St, West Bridgewater,MA,2379 +-71.067474,42.058678,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",1280 Belmont St, Brockton,MA,2301 +-70.99254,42.08604,"DD [drivethru-yes] [wifi-yes]-Brockton,MA",634 Centre Street, Brockton,MA,2302 +-71.048546,42.012913,"DD [drivethru-yes] [wifi-no]-West Bridgewater,MA",575 West Center St, West Bridgewater,MA,2379 +-71.51742,42.12611,"DD [drivethru-yes] [wifi-yes]-Milford,MA",146 S Main Street, Milford,MA,1757 +-71.503746,42.103075,"DD [drivethru-yes] [wifi-yes]-Hopedale,MA",144 Hartford Ave, Hopedale,MA,1747 +-70.384178,41.628231,"DD [drivethru-no] [wifi-no]-Osterville,MA",792 Main St, Osterville,MA,2655 +-70.423134,41.648148,"DD [drivethru-no] [wifi-yes]-Marstons Mills,MA",3821 Falmouth Rd, Marstons Mills,MA,2648 +-71.35886,41.91917,"DD [drivethru-yes] [wifi-yes]-Attleboro,MA",337 Washington Street, Attleboro,MA,2703 +-71.3646,41.90751,"DD [drivethru-yes] [wifi-yes]-Attleboro,MA",718 Washington Street, Attleboro,MA,2703 +-70.151245,41.69202,"DD [drivethru-yes] [wifi-yes]-South Dennis,MA",6 Enterprise Rd Ste 1 & 2, South Dennis,MA,2660 +-70.184715,41.666538,"DD [drivethru-no] [wifi-no]-South Yarmouth,MA",1353 Route 28 [Exxon Station], South Yarmouth,MA,2664 +-70.20323,41.65965,"DD [drivethru-yes] [wifi-yes]-South Yarmouth,MA",1050 Route 28, South Yarmouth,MA,2664 +-70.20724,41.68455,"DD [drivethru-yes] [wifi-yes]-South Yarmouth,MA",436 Station Avenue, South Yarmouth,MA,2664 +-70.14843,41.66756,"DD [drivethru-no] [wifi-yes]-West Dennis,MA",927 Main St, West Dennis,MA,2670 +-71.64708,42.31966,"DD/BR [drivethru-yes] [wifi-yes]-Northborough,MA",70 West Main, Northborough,MA,1532 +-71.32865,42.06772,"DD [drivethru-yes] [wifi-yes]-Wrentham,MA",29 Franklin Street, Wrentham,MA,2093 +-71.34556,42.0391,"DD [drivethru-yes] [wifi-no]-Wrentham,MA",1048 South Street [Wrentham Village Outlets], Wrentham,MA,2093 +-71.265597,41.769779,"DD [drivethru-yes] [wifi-yes]-Swansea,MA",2368 G A R Hwy, Swansea,MA,2777 +-71.264984,41.769527,"DD [drivethru-no] [wifi-no]-Swansea,MA",2345 G A R Highway, Swansea,MA,2777 +-70.95744,42.03863,"DD [drivethru-yes] [wifi-yes]-East Bridgewater,MA",204 N Bedford Street, East Bridgewater,MA,2333 +-70.94084,42.01574,"DD [drivethru-yes] [wifi-yes]-East Bridgewater,MA",650 Plymouth Street, East Bridgewater,MA,2333 +-71.358337,42.167149,"DD [drivethru-yes] [wifi-yes]-Millis,MA",871 Main St, Millis,MA,2054 +-71.426567,42.256744,"DD [drivethru-no] [wifi-yes]-Ashland,MA",51 Pond St, Ashland,MA,1721 +-71.606239,42.284855,"DD [drivethru-yes] [wifi-no]-Westborough,MA",124 Turnpike Rd [Rt 9], Westborough,MA,1581 +-71.591514,42.245411,"DD [drivethru-no] [wifi-yes]-Westborough Service Plaza [Mass TP] Westborough,MA",Mass TP-Westborough Service Plaza [I-90 WB MM 105], Westborough,MA,1581 +-71.80751,42.28434,"DD [drivethru-yes] [wifi-no]-Worcester,MA",340 Grove Street, Worcester,MA,1605 +-71.69043,42.266026,"DD [drivethru-yes] [wifi-yes]-Shrewsbury,MA",126 Hartford Pike [Rt 20], Shrewsbury,MA,1545 +-70.337708,41.688686,"DD [drivethru-no] [wifi-yes]-West Barnstable,MA",2135 Iyannough Rd, West Barnstable,MA,2668 +-70.016584,41.929364,"DD [drivethru-yes] [wifi-yes]-Wellflett,MA",2393 State Hwy Rt 6, Wellfleet,MA,2667 +-72.06546,42.116894,"DD [drivethru-yes] [wifi-no]-Sturbridge,MA",215 Charlton Rd [Rt 20], Sturbridge,MA,1566 +-72.066719,42.090939,"DD [drivethru-yes] [wifi-yes]-Sturbridge,MA",120 Main St, Sturbridge,MA,1566 +-72.105019,42.113968,"DD [drivethru-no] [wifi-yes]-Fiskdale,MA",469 Main St, Fiskdale,MA,1518 +-71.216202,42.024555,"DD [drivethru-no] [wifi-yes]-Mansfield,MA",4 South Main St, Mansfield,MA,2048 +-71.210808,41.994549,"DD [drivethru-no] [wifi-yes]-Mansfield,MA",905 S Main St, Mansfield,MA,2048 +-71.219116,42.024231,"DD [drivethru-no] [wifi-no]-Mansfield,MA",377 Chauncey St [Stop & Shop], Mansfield,MA,2048 +-71.219055,42.032124,"DD [drivethru-no] [wifi-yes]-Mansfield,MA",45 Chauncy St, Mansfield,MA,2048 +-71.33704,41.80963,"DD [drivethru-yes] [wifi-yes]-Seekonk,MA",623 Fall River Avenue, Seekonk,MA,2771 +-71.32518,41.792622,"DD [drivethru-no] [wifi-no]-Seekonk,MA",1200 Fall River Ave, Seekonk,MA,2771 +-71.326706,41.793461,"DD [drivethru-no] [wifi-no]-Seekonk,MA",1180 Fall River Ave [Walmart], Seekonk,MA,2771 +-71.317772,41.787083,"DD [drivethru-no] [wifi-no]-Seekonk,MA",1455 Fall River Ave, Seekonk,MA,2771 +-71.336113,41.801208,"DD [drivethru-no] [wifi-no]-Seekonk,MA",125 Highland Ave [Stop & Shop], Seekonk,MA,2771 +-71.338142,41.824841,"DD/BR [drivethru-yes] [wifi-yes]-Seekonk,MA",198 Taunton Ave [Town Centre Shopping Ctr], Seekonk,MA,2771 +-71.339447,41.804726,"DD [drivethru-yes] [wifi-yes]-Seekonk,MA",4 Highland Ave, Seekonk,MA,2771 +-71.22477,41.75061,"DD [drivethru-no] [wifi-no]-Swansea,MA",1115 G A R Highway, Swansea,MA,2777 +-71.612244,42.354519,"DD [drivethru-no] [wifi-yes]-Marlborough,MA",601 Donald Lynch Blvd F201 [Solomon Pond Mall Food Crt], Marlboro,MA,1752 +-70.732216,41.755714,"DD [drivethru-yes] [wifi-no]-Wareham,MA",195 Marion Rd, Wareham,MA,2571 +-71.194576,42.370576,"DD [drivethru-yes] [wifi-yes]-Wareham,MA",419 Main St, Waltham,MA,2571 +-70.65369,41.7569,"DD [drivethru-yes] [wifi-yes]-Buzzards Bay,MA",3052 Cranberry Highway, Buzzards Bay,MA,2538 +-70.750175,41.788052,"DD [drivethru-yes] [wifi-no]-Wareham,MA",2360 Cranberry Hwy, Wareham,MA,2571 +-71.198914,41.961605,"DD [drivethru-no] [wifi-yes]-Norton,MA",103 W Main St, Norton,MA,2766 +-71.15685,41.9858,"DD [drivethru-yes] [wifi-yes]-Norton,MA",246 East Main Street, Norton,MA,2766 +-71.210037,41.981689,"DD [drivethru-yes] [wifi-yes]-Norton,MA",175 Mansfield Ave [Great Woods Mkt Place], Norton,MA,2766 +-71.638428,42.082596,"DD [drivethru-no] [wifi-no]-Uxbridge,MA",158 N Main St, Uxbridge,MA,1569 +-70.734688,41.771358,"DD [drivethru-yes] [wifi-no]-Wareham,MA",2505 Cranberry Hwy, Wareham,MA,2571 +-70.64016,41.7872,"DD [drivethru-yes] [wifi-no]-East Wareham,MA",3 Barker Road, East Wareham,MA,2538 +-70.640034,41.786967,"DD [drivethru-yes] [wifi-no]-Wareham,MA",3 Barker Rd East, Wareham,MA,2538 +-69.98641,41.85541,"DD [drivethru-no] [wifi-yes]-Eastham,MA",50 Brackett Road [Village Green Shopping Ctr], Eastham,MA,2642 +-71.237381,41.855274,"DD [drivethru-yes] [wifi-yes]-Rehoboth,MA",227 Winthrop St, Rehoboth,MA,2769 +-71.98922,42.145138,"DD [drivethru-yes] [wifi-yes]-Charlton,MA",28 Worchester Rd, Charlton,MA,1507 +-71.291496,42.192989,"DD [drivethru-no] [wifi-yes]-Medfield,MA",270 Main St, Medfield,MA,2052 +-69.993683,41.785748,"DD [drivethru-no] [wifi-yes]-Orleans,MA",136 Cranberry Hwy [Orleans Shopping Ctr Ste A1], Orleans,MA,2653 +-71.093019,42.088875,"DD [drivethru-yes] [wifi-yes]-North Easton,MA",3 Roche Bros Way [Unit F], North Easton,MA,2356 +-71.149078,41.683453,"DD [drivethru-yes] [wifi-no]-Fall River,MA",510 Brayton Ave, Fall River,MA,2720 +-71.644669,42.123173,"DD [drivethru-yes] [wifi-yes]-Whitinsville,MA",1083 Providence Rd, Whitinsville,MA,1588 +-71.64563,42.124733,"DD [drivethru-no] [wifi-no]-Whitinsville,MA",1144 Providence Rd [Hess], Whitinsville,MA,1588 +-71.087318,42.067531,"DD [drivethru-yes] [wifi-yes]-North Easton,MA",285 Washington St, North Easton,MA,2356 +-71.08076,42.04643,"DD [drivethru-yes] [wifi-yes]-South Easton,MA",606 Washington Street, South Easton,MA,2375 +-71.11764,42.02606,"DD [drivethru-yes] [wifi-yes]-North Easton,MA",700 Depot Street, North Easton,MA,2356 +-71.56884,42.342022,"DD [drivethru-yes] [wifi-yes]-Marlboro,MA",199 Lakeside Ave, Marlboro,MA,1752 +-71.28751,41.94677,"DD [drivethru-no] [wifi-yes]-Attleboro,MA",104 N Main Street, Attleboro,MA,2703 +-70.556359,41.916263,"DD [drivethru-no] [wifi-no]-Plymouth,MA",709 State Rd [Stop & Shop], Plymouth,MA,2360 +-71.239174,41.952461,"DD [drivethru-yes] [wifi-yes]-Norton,MA",420 Old Colony Rd, Norton,MA,2766 +-71.27758,41.948837,"DD [drivethru-yes] [wifi-yes]-Attleboro,MA",134 Pleasant St, Attleboro,MA,2703 +-71.300026,41.934132,"DD [drivethru-yes] [wifi-yes]-Attleboro,MA",285 County St, Attleboro,MA,2703 +-71.31609,41.93402,"DD [drivethru-no] [wifi-no]-Attleboro,MA",228 South Avenue, Attleboro,MA,2703 +-71.28488,41.93511,"DD [drivethru-yes] [wifi-yes]-Attleboro,MA",217 S Main Street, Attleboro,MA,2703 +-72.255226,42.253647,"DD [drivethru-no] [wifi-yes]-Ware,MA",182 West St, Ware,MA,1082 +-72.251839,42.255821,"DD [drivethru-yes] [wifi-yes]-Ware,MA",139 West St, Ware,MA,1082 +-72.631264,42.062298,"DD [drivethru-yes] [wifi-yes]-Agawam,MA",152 Silver St, Agawam,MA,1001 +-72.627563,42.089619,"DD [drivethru-no] [wifi-yes]-Agawam,MA",12 Springfield St, Agawam,MA,1001 +-72.567307,42.125118,"DD [drivethru-yes] [wifi-no]-Springfield,MA",11 Tapley St, Springfield,MA,1104 +-72.50457,42.139992,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",1190 Boston Rd, Springfield,MA,1119 +-72.52425,42.1171,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",464 Breckwood Boulevard, Springfield,MA,1109 +-72.497353,42.114971,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",1918 Wilbraham Rd, Springfield,MA,1129 +-72.591652,42.10302,"DD [drivethru-no] [wifi-no]-Springfield,MA",1500 Main St [Baystate Mall], Springfield,MA,1115 +-72.596451,42.597946,"DD [drivethru-no] [wifi-no]-Greenfield,MA",245 Federal St [Hess], Greenfield,MA,1301 +-72.612862,42.585289,"DD [drivethru-no] [wifi-yes]-Greenfield,MA",60 Mohawk Trail, Greenfield,MA,1301 +-72.590912,42.604225,"DD [drivethru-yes] [wifi-yes]-Greenfield,MA",378 Federal St, Greenfield,MA,1301 +-72.5959,42.10518,"DD [drivethru-no] [wifi-no]-Springfield,MA",1776 Main Street [Peter Pan Bus Terminal], Springfield,MA,1103 +-72.55592,42.08657,"DD [drivethru-yes] [wifi-no]-Springfield,MA",570 Sumner Avenue, Springfield,MA,1108 +-72.53719,42.15019,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",1287 Page Boulevard, Springfield,MA,1104 +-72.645798,42.10677,"DD [drivethru-yes] [wifi-yes]-West Springfield,MA",1333 Westfield St, West Springfield,MA,1089 +-73.113602,42.634285,"DD [drivethru-yes] [wifi-yes]-Adams,MA",177 Columbia St, Adams,MA,1220 +-72.61706,42.10735,"DD [drivethru-no] [wifi-yes]-West Springfield,MA",44 Park Street, West Springfield,MA,1089 +-72.63311,42.15925,"DD [drivethru-yes] [wifi-yes]-West Springfield,MA",2068 Riverdale Street, West Springfield,MA,1089 +-72.56728,42.10175,"DD [drivethru-yes] [wifi-no]-Springfield,MA",273 Hancock Street, Springfield,MA,1109 +-72.540794,42.144287,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",350 Cottage St [Unit 1 Satellite], Springfield,MA,1104 +-72.56916,42.136688,"DD [drivethru-yes] [wifi-no]-Springfield,MA",1037 St James Ave, Springfield,MA,1104 +-72.61898,42.092926,"DD [drivethru-no] [wifi-no]-West Springfield,MA",1305 Memorial Ave [Eastern Exop Fairgrounds], West Springfield,MA,1089 +-72.5989,42.096832,"DD [drivethru-yes] [wifi-yes]-West Springfield,MA",85 Memorial Ave, West Springfield,MA,1089 +-72.5842,42.1212,"DD [drivethru-yes] [wifi-no]-Springfield,MA",668 Liberty Street, Springfield,MA,1104 +-72.546898,42.132473,"DD [drivethru-yes] [wifi-no]-Springfield,MA",1122 Bay St, Springfield,MA,1109 +-72.556786,42.085865,"DD [drivethru-no] [wifi-yes]-Springfield,MA",568 Belmont Ave, Springfield,MA,1108 +-72.58645,42.0969,"DD [drivethru-yes] [wifi-no]-Springfield,MA",1211 E Columbus Avenue, Springfield,MA,1105 +-72.5502,42.11614,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",1218 State Street, Springfield,MA,1109 +-72.556007,42.142113,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",694 Page Blvd, Springfield,MA,1104 +-72.582024,42.096962,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",805 Main St, Springfield,MA,1105 +-72.614853,42.471031,"DD [drivethru-no] [wifi-yes]-South Deerfield,MA",1 Greenfield Rd, South Deerfield,MA,1373 +-72.560562,42.449924,"DD [drivethru-yes] [wifi-yes]-Sunderland,MA",303 Amherst Rd, Sunderland,MA,1375 +-73.119999,42.62001,"DD [drivethru-no] [wifi-no]-North Adams,MA",1415 Curran Hwy [Walmart], North Adams,MA,1220 +-73.10859,42.70053,"DD [drivethru-yes] [wifi-yes]-North Adams,MA",5 Union Street, North Adams,MA,1247 +-72.58458,42.15223,"DD [drivethru-yes] [wifi-yes]-Chicopee,MA",953 Front Street, Chicopee,MA,1020 +-72.466644,42.151169,"DD [drivethru-yes] [wifi-yes]-Wilbraham,MA",2144 Boston Rd, Wilbraham,MA,1095 +-72.5425,42.16888,"DD [drivethru-yes] [wifi-yes]-Chicopee,MA",470 Burnett Road, Chicopee,MA,1020 +-72.5819,42.1612,"DD [drivethru-yes] [wifi-no]-Chicopee,MA",27 Montgomery Street, Chicopee,MA,1020 +-72.613899,42.165607,"DD [drivethru-yes] [wifi-yes]-Chicopee,MA",751 Meadow St, Chicopee,MA,1013 +-72.577316,42.17944,"DD [drivethru-yes] [wifi-no]-Chicopee,MA",820 Memorial Dr [Ste 1], Chicopee,MA,1020 +-72.61113,42.1433,"DD [drivethru-yes] [wifi-no]-Chicopee,MA",95 West Street, Chicopee,MA,1013 +-72.678574,42.067204,"DD [drivethru-yes] [wifi-yes]-Feeding Hills,MA",6 N Westfield Rd, Feeding Hills,MA,1030 +-72.48008,42.17043,"DD [drivethru-yes] [wifi-yes]-Ludlow,MA",4 Harding Avenue, Ludlow,MA,1056 +-72.632751,42.323795,"DD [drivethru-no] [wifi-yes]-Northampton,MA",132 King St, Northampton,MA,1060 +-72.556793,42.354702,"DD [drivethru-no] [wifi-no]-Hadley,MA",331 Russell St [Hess], Hadley,MA,1035 +-72.636665,42.336632,"DD [drivethru-yes] [wifi-no]-Northampton,MA",375 King St, Northampton,MA,1060 +-72.6241,42.311611,"DD [drivethru-no] [wifi-no]-Northampton,MA",506 Pleasant St, Northampton,MA,1060 +-72.59512,42.34199,"DD [drivethru-no] [wifi-no]-Hadley,MA",110 Russell Street, Hadley,MA,1035 +-72.608739,42.198095,"DD [drivethru-yes] [wifi-yes]-Holyoke,MA",330 Main St, Holyoke,MA,1040 +-72.779915,42.047871,"DD [drivethru-yes] [wifi-yes]-Southwick,MA",397 College Hwy, Southwick,MA,1562 +-72.785778,42.026497,"DD [drivethru-yes] [wifi-yes]-Southwick,MA",208 College Hwy, Southwick,MA,1077 +-72.55455,42.056301,"DD [drivethru-no] [wifi-no]-Longmeadow,MA",711 Bliss Rd, Longmeadow,MA,1106 +-72.44044,42.05884,"DD [drivethru-yes] [wifi-yes]-Hampden,MA",3 Allen Street, Hampden,MA,1036 +-72.739983,42.134953,"DD [drivethru-yes] [wifi-yes]-Westfield,MA",127 N Elm St, Westfield,MA,1085 +-72.73391,42.14043,"DD [drivethru-yes] [wifi-yes]-Westfield,MA",439 N Elm St, Westfield,MA,1085 +-72.764458,42.110455,"DD [drivethru-yes] [wifi-yes]-Westfield,MA",20 Southwick Rd, Westfield,MA,1085 +-72.743355,42.119514,"DD [drivethru-no] [wifi-yes]-Westfield,MA",93 Main St, Westfield,MA,1085 +-72.745583,42.129982,"DD [drivethru-no] [wifi-yes]-Westfield,MA",Elm St [Rt 10 & 102 Mobil], Westfield,MA,1085 +-72.715012,42.112419,"DD [drivethru-yes] [wifi-yes]-Westfield,MA",625 E Main St, Westfield,MA,1085 +-72.701157,42.183498,"DD [drivethru-yes] [wifi-yes]-Westfield,MA",475 Southhampton Rd, Westfield,MA,1085 +-72.640374,42.176972,"DD [drivethru-yes] [wifi-no]-Holyoke,MA",225 Whiting Farms Rd [Shell Oil], Holyoke,MA,1040 +-72.63008,42.20983,"DD [drivethru-yes] [wifi-yes]-Holyoke,MA",1600 Northampton Street, Holyoke,MA,1040 +-72.589661,42.222286,"DD [drivethru-yes] [wifi-yes]-South Hadley,MA",South Hadley Shopping Center [Newton St], South Hadley,MA,1075 +-72.67014,42.28069,"DD [drivethru-yes] [wifi-yes]-Easthampton,MA",126 Northampton Street # N, Easthampton,MA,1027 +-73.36453,42.18919,"DD [drivethru-yes] [wifi-yes]-Great Barrington,MA",494 Main Street, Great Barrington,MA,1230 +-72.671112,42.268265,"DD [drivethru-yes] [wifi-yes]-Easthampton,MA",60 Union St, Easthampton,MA,1027 +-72.720253,42.237907,"DD [drivethru-yes] [wifi-yes]-Southampton,MA",136 College Hwy, Southampton,MA,1073 +-72.51675,42.06337,"DD [drivethru-no] [wifi-yes]-East Longmeadow,MA",55 Maple Street, East Longmeadow,MA,1028 +-73.277115,42.442623,"DD [drivethru-yes] [wifi-yes]-Pittsfield,MA",480 West Housatonic St, Pittsfield,MA,1201 +-73.245636,42.44725,"DD [drivethru-yes] [wifi-yes]-Pittsfield,MA",425 East St, Pittsfield,MA,1201 +-73.25103,42.4486,"DD [drivethru-yes] [wifi-yes]-Pittsfield,MA",18 1st Street, Pittsfield,MA,1201 +-72.54394,42.24694,"DD [drivethru-yes] [wifi-yes]-Granby,MA",77 W State Street, Granby,MA,1033 +-73.188263,42.70393,"DD [drivethru-yes] [wifi-yes]-Williamstown,MA",361 Main St, Williamstown,MA,1267 +-73.22986,42.45735,"DD [drivethru-yes] [wifi-yes]-Pittsfield,MA",84 Dalton Avenue, Pittsfield,MA,1201 +-73.238823,42.493958,"DD [drivethru-yes] [wifi-no]-Pittsfield,MA",1025 South Main St Rt 7, Pittsfield,MA,1201 +-72.489871,42.58745,"DD [drivethru-yes] [wifi-yes]-Erving,MA",63 French King Hwy, Erving,MA,1344 +-72.633453,42.317856,"DD [drivethru-no] [wifi-yes]-Northampton,MA",273 Main St, Northampton,MA,1060 +-72.611008,42.110878,"DD [drivethru-yes] [wifi-yes]-Springfield,MA",77 West St, Springfield,MA,1104 +-72.410583,42.272636,"DD [drivethru-yes] [wifi-yes]-Belchertown,MA",37 State St, Belchertown,MA,1007 +-72.40771,42.29007,"DD [drivethru-yes] [wifi-yes]-Belchertown,MA",18 Federal Street [The Crossing Plaza], Belchertown,MA,1007 +-72.314789,42.098534,"DD [drivethru-yes] [wifi-no]-Monson,MA",153 Main St, Monson,MA,1057 +-72.339348,42.16161,"DD [drivethru-yes] [wifi-yes]-Palmer,MA",1559 N Main St, Palmer,MA,1069 +-72.34541,42.21045,"DD [drivethru-yes] [wifi-yes]-Bondsville,MA",3086 S Main Street, Bondsville,MA,1009 +-72.326424,42.168633,"DD [drivethru-no] [wifi-yes]-Palmer,MA",1144 Thorndike St, Palmer,MA,1069 +-72.731453,42.393597,"DD [drivethru-no] [wifi-no]-Williamsburg,MA",37 Main St, Williamsburg,MA,1096 +-72.50439,42.37296,"DD [drivethru-yes] [wifi-yes]-Amherst,MA",312 College Street, Amherst,MA,1002 +-72.533562,42.36916,"DD [drivethru-yes] [wifi-yes]-Amherst,MA",175 University Dr, Amherst,MA,1002 +-72.519963,42.340817,"DD [drivethru-no] [wifi-no]-Amherst,MA",468 West St [Hess], Amherst,MA,1002 +-73.24245,42.30036,"DD [drivethru-yes] [wifi-no]-Lee,MA",200 Housatonic, Lee,MA,1238 +-71.10524,42.340607,"DD [drivethru-no] [wifi-no]-Boston,MA",330 Brookline Ave, Boston,MA,2215 +-71.330675,41.804523,"DD [drivethru-yes] [wifi-no]-Seekonk,MA",822 Fall River Ave, Seekonk,MA,2771 +-71.01575,42.49648,"DD [drivethru-yes] [wifi-yes]-Saugus,MA",86 Broadway [#86T], Saugus,MA,1906 +-71.01643,42.36621,"DD [drivethru-no] [wifi-no]-East Boston,MA",300 Terminal C [Logan Intl Airport], East Boston,MA,2128 +-71.01594,42.367203,"DD [drivethru-no] [wifi-no]-East Boston,MA",300 Terminal C [Logan Intl Airport-Westfield], East Boston,MA,2128 +-71.018,42.362,"DD [drivethru-no] [wifi-yes]-East Boston,MA",400 Terminal Rd [Southwest Terminal D AR], East Boston,MA,2128 +-76.897115,38.88703,"DD [drivethru-yes] [wifi-yes]-Capitol Heights,MD",6412 Central Ave, Capitol Heights,MD,20743 +-76.939161,39.210375,"DD/BR [drivethru-yes] [wifi-no]-Clarksville,MD",12210 Clarksville Pike, Clarksville,MD,21029 +-76.620346,39.264246,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",1615 Whetstone Way [Key Hwy and Fort Ave], Baltimore,MD,21230 +-76.75158,39.39948,"DD [drivethru-no] [wifi-yes]-Owings Mills,MD",9404 A Reisterstown Road, Owings Mills,MD,21117 +-75.618137,38.368837,"DD [drivethru-yes] [wifi-yes]-Salisbury,MD",1200 Nanticoke Rd, Salisbury,MD,21801 +-76.557005,39.380627,"DD [drivethru-yes] [wifi-yes]-Baltimore,MD",1903 Taylor Ave, Baltimore,MD,21234 +-76.88988,39.2216,"DD [drivethru-no] [wifi-yes]-Columbia,MD",5485 Harpers Farm Road, Columbia,MD,21044 +-76.871435,39.184934,"DD [drivethru-yes] [wifi-no]-Columbia,MD",10430 Shaker Dr, Columbia,MD,21046 +-75.5484,38.0642,"DD/BR [drivethru-yes] [wifi-yes]-Pocomoke City,MD",223 Pocomoke Marketplace, Pocomoke City,MD,21851 +-76.56147,38.94299,"DD/BR [drivethru-yes] [wifi-yes]-Edgewater,MD",3033 Solomons Island Road, Edgewater,MD,21037 +-76.739151,39.31181,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",6669 Security Blvd [M4], Baltimore,MD,21207 +-76.73052,39.3438,"DD/BR [drivethru-yes] [wifi-yes]-Gwynn Oak,MD",6929 Liberty Road, Gwynn Oak,MD,21207 +-76.108177,39.544746,"DD/BR [drivethru-yes] [wifi-yes]-Havre De Grace,MD",1057 Pulaski Hwy, Havre De Grace,MD,21078 +-75.564873,38.427029,"DD/BR [drivethru-yes] [wifi-yes]-Delmar,MD",8600 Ocean Hwy [Ste 5], Delmar,MD,21875 +-76.542213,39.398388,"DD [drivethru-no] [wifi-yes]-Parkville,MD",2053 E Joppa Rd, Parkville,MD,21234 +-76.381493,39.507538,"DD [drivethru-no] [wifi-no]-Fallston,MD",2316 C Bel Air Rd Rt 1, Fallston,MD,21047 +-76.505547,39.340031,"DD [drivethru-yes] [wifi-yes]-Baltimore,MD",6305 Kenwood Ave, Baltimore,MD,21237 +-76.523735,39.31356,"DD [drivethru-yes] [wifi-no]-Rosedale,MD",7514 Pulaski Hwy [Shell Station], Rosedale,MD,21237 +-76.976143,39.564388,"DD [drivethru-yes] [wifi-yes]-Westminster,MD",576 Jermor Lane, Westminster,MD,21157 +-76.70912,39.16021,"DD/BR [drivethru-yes] [wifi-yes]-Hanover,MD",1348 Ashton Road, Hanover,MD,21076 +-76.621845,39.161785,"DD [drivethru-no] [wifi-no]-Glen Burnie,MD",BWI Airport [Airport Rd], Glen Burnie,MD,21061 +-76.627549,39.15855,"DD/BR [drivethru-no] [wifi-no]-Glen Burnie,MD",BWI Airport [Pier B 240 Airport Rd], Glen Burnie,MD,21061 +-76.638654,39.131603,"DD [drivethru-yes] [wifi-yes]-Glen Burnie,MD",7984 Crain Hwy S, Glen Burnie,MD,21061 +-76.81268,39.44583,"DD [drivethru-no] [wifi-yes]-Reisterstown,MD",11814 Reisterstown Road, Reisterstown,MD,21136 +-76.82955,39.46841,"DD/BR [drivethru-yes] [wifi-yes]-Reisterstown,MD",48 Main Street, Reisterstown,MD,21136 +-76.567261,39.396709,"DD [drivethru-yes] [wifi-yes]-Towson,MD",1600 E Joppa Rd, Towson,MD,21286 +-76.60324,39.39748,"DD [drivethru-no] [wifi-yes]-Towson,MD",201 York Road, Towson,MD,21204 +-76.059944,38.781189,"DD/BR [drivethru-yes] [wifi-yes]-Easton,MD",8461 Ocean Gateway, Easton,MD,21601 +-76.77898,39.15382,"DD/BR [drivethru-no] [wifi-yes]-Jessup,MD",7916 Dorsey Run Road, Jessup,MD,20794 +-76.613876,39.218979,"DD/BR [drivethru-yes] [wifi-no]-Brooklyn Park,MD",5601 Ritchie Hwy, Brooklyn Park,MD,21225 +-76.72809,39.27278,"DD/BR [drivethru-no] [wifi-yes]-Catonsville,MD",580 Frederick Road, Catonsville,MD,21228 +-76.439,39.2993,"DD [drivethru-yes] [wifi-yes]-Essex,MD",1541 Hyde Park Rd [Hyde Park Station SC], Essex,MD,21221 +-76.067169,39.209377,"DD [drivethru-no] [wifi-yes]-Chestertown,MD",315 High St [Ste 100], Chestertown,MD,21620 +-76.710564,39.362225,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",7000 Reisterstown Rd, Baltimore,MD,21215 +-76.61607,39.17778,"DD/BR [drivethru-yes] [wifi-yes]-Glen Burnie,MD",7152 Ritchie Highway, Glen Burnie,MD,21061 +-76.5914,39.12818,"DD [drivethru-yes] [wifi-yes]-Pasadena,MD",8053 Ritchie Highway, Pasadena,MD,21122 +-76.061874,39.04826,"DD [drivethru-yes] [wifi-yes]-Centreville,MD",506 Church Hill Rd, Centreville,MD,21617 +-77.160133,39.650517,"DD/BR [drivethru-yes] [wifi-yes]-Taneytown,MD",500 E Baltimore St, Taneytown,MD,21787 +-76.616158,39.30756,"DD [drivethru-no] [wifi-no]-Baltimore,MD",1515 N Charles St [Baltimore Penn Station], Baltimore,MD,21201 +-76.8049,39.28565,"DD [drivethru-no] [wifi-yes]-Ellicott City,MD",8455 Baltimore Natl Pike, Ellicott City,MD,21043 +-75.6013,38.35217,"DD [drivethru-yes] [wifi-yes]-Salisbury,MD",908 Salisbury Boulevard, Salisbury,MD,21801 +-76.699509,38.810131,"DD [drivethru-yes] [wifi-yes]-Lothian,MD",5408 Southern Maryland Blvd [Shoppes at Waysons Corner], Lothian,MD,20711 +-76.81519,39.22722,"DD/BR [drivethru-no] [wifi-yes]-Columbia,MD",8765 Centre Park Drive [Columbia Place Plaza # 14], Columbia,MD,21045 +-76.283553,39.555013,"DD [drivethru-no] [wifi-yes]-Bel Air,MD",2225 E Churchville Rd, Bel Air,MD,21015 +-76.26998,39.50661,"DD [drivethru-yes] [wifi-no]-Bel Air,MD",2105 Calvary Road, Bel Air,MD,21015 +-76.62532,39.096207,"DD/BR [drivethru-yes] [wifi-yes]-Millersville,MD",8564 Veterans Hwy [Benfield Crossing], Millersville,MD,21108 +-76.700574,38.998815,"DD/BR [drivethru-yes] [wifi-yes]-Crofton,MD",1200 Rt 3, Crofton,MD,21114 +-76.688026,39.026852,"DD/BR [drivethru-yes] [wifi-yes]-Gambrills,MD",1051 SR 3 N, Gambrills,MD,21054 +-76.67046,38.9926,"DD/BR [drivethru-yes] [wifi-yes]-Gambrills,MD",1336 Defense Highway, Gambrills,MD,21054 +-76.71977,39.0667,"DD/BR [drivethru-yes] [wifi-yes]-Odenton,MD",8743 Piney Orchard Pkwy [Piney Orchard Marketplace], Odenton,MD,21113 +-76.55658,39.130325,"DD/BR [drivethru-yes] [wifi-yes]-Pasadena,MD",350 Mountain Rd [Mountain Marketplace], Pasadena,MD,21122 +-76.641586,39.200089,"DD/BR [drivethru-yes] [wifi-yes]-Glen Burnie,MD",7061 Baltimore Annapolis Blvd, Glen Burnie,MD,21061 +-76.4505,39.34861,"DD [drivethru-yes] [wifi-yes]-Middle River,MD",901 Middle River Road, Middle River,MD,21220 +-76.462354,39.354618,"DD [drivethru-yes] [wifi-yes]-Rosedale,MD",9506 Philadelphia Rd [Kings Court SC], Rosedale,MD,21237 +-76.734802,39.106651,"DD/BR [drivethru-no] [wifi-no]-Fort Meade,MD",McArthur Blvd Bldg 2790, Fort Meade,MD,20755 +-76.7223,39.10496,"DD/BR [drivethru-yes] [wifi-yes]-Odenton,MD",1614 Annapolis Road, Odenton,MD,21113 +-76.65351,39.31857,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",2401 Liberty Heights Ave [3645 Mondawmin Mall], Baltimore,MD,21215 +-76.63604,39.46337,"DD [drivethru-no] [wifi-yes]-Cockeysville,MD",10003 York Road, Cockeysville,MD,21030 +-76.520111,39.363914,"DD/BR [drivethru-yes] [wifi-yes]-Baltimore,MD",7529 Belair Rd, Baltimore,MD,21236 +-76.509972,39.373371,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",7924 Belair Rd, Baltimore,MD,21236 +-76.52692,39.39219,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",9400 Harford Road, Baltimore,MD,21234 +-76.755936,39.352821,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",8021 Liberty Rd, Baltimore,MD,21244 +-76.726234,39.377766,"DD [drivethru-no] [wifi-no]-Pikesville,MD",1508 Reisterstown Rd, Pikesville,MD,21208 +-76.655464,39.264172,"DD [drivethru-yes] [wifi-yes]-Baltimore,MD",2718 Washington Blvd, Baltimore,MD,21230 +-76.642746,39.250307,"DD/BR [drivethru-yes] [wifi-yes]-Baltimore,MD",2001 W Patapsco Ave [Hollinswood Plaza Shopping Ctr], Baltimore,MD,21230 +-76.076668,39.566715,"DD [drivethru-yes] [wifi-yes]-Perryville,MD",100 Rt 40 [Perryville Station], Perryville,MD,21903 +-76.644342,39.214201,"DD [drivethru-yes] [wifi-yes]-Linthicum,MD",458 N Camp Meade Rd, Linthicum,MD,21090 +-76.540306,39.285187,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",600 Dundalk Ave, Baltimore,MD,21224 +-75.087371,38.329206,"DD [drivethru-no] [wifi-yes]-Ocean City,MD",406 S Baltimore Ave, Ocean City,MD,21842 +-76.663127,39.224461,"DD [drivethru-no] [wifi-yes]-Linthicum,MD",835 Nursery Rd, Linthicum,MD,21090 +-76.298325,38.975163,"DD/BR [drivethru-yes] [wifi-yes]-Stevensville,MD",1243 Shopping Center Rd, Stevensville,MD,21666 +-76.48055,39.33781,"DD [drivethru-yes] [wifi-yes]-Baltimore,MD",8801 Pulaski Highway, Baltimore,MD,21237 +-76.33106,39.49621,"DD/BR [drivethru-yes] [wifi-yes]-Bel Air,MD",18a Bel Air South Parkway, Bel Air,MD,21015 +-76.310272,39.477665,"DD [drivethru-yes] [wifi-yes]-Abingdon,MD",3004 Emmorton Rd, Abingdon,MD,21009 +-76.926376,39.397373,"DD [drivethru-yes] [wifi-yes]-Eldersburg,MD",1945 Liberty Rd, Eldersburg,MD,21784 +-76.61227,39.27663,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",1100 Light Street, Baltimore,MD,21230 +-76.612315,39.291291,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",200 E Lexington St, Baltimore,MD,21202 +-76.444763,39.404705,"DD/BR [drivethru-yes] [wifi-yes]-Perry Hall,MD",5003 Honeygo Center Dr [Honeygo Village Ctr], Perry Hall,MD,21118 +-75.056259,38.424259,"DD/BR [drivethru-no] [wifi-yes]-Ocean City,MD",11901 Coastal Hwy, Ocean City,MD,21842 +-75.068102,38.380364,"DD [drivethru-no] [wifi-yes]-Ocean City,MD",5601 Coastal Hwy, Ocean City,MD,21842 +-75.061507,38.400299,"DD/BR [drivethru-no] [wifi-yes]-Ocean City,MD",8101 Coastal Hwy, Ocean City,MD,21842 +-77.06857,39.35047,"DD/BR [drivethru-no] [wifi-yes]-Woodbine,MD",703 Lisbon Center Drive [Ste F], Woodbine,MD,21797 +-76.799431,39.237576,"DD [drivethru-no] [wifi-no]-Ellicott City,MD",4872 Montgomery Rd [Ste 107], Ellicott City,MD,21043 +-75.82401,38.87574,"DD [drivethru-yes] [wifi-yes]-Denton,MD",601 Legion Road, Denton,MD,21629 +-76.64426,39.51158,"DD [drivethru-no] [wifi-yes]-Sparks,MD",10 Fila Way, Sparks,MD,21152 +-76.800123,39.21051,"DD [drivethru-no] [wifi-yes]-Columbia,MD",8205 Snowden River Pkwy, Columbia,MD,21045 +-76.562332,39.351013,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",5401 Harford Rd, Baltimore,MD,21214 +-76.517487,39.158546,"DD [drivethru-no] [wifi-yes]-Pasadena,MD",8487 Fort Smallwood Rd, Pasadena,MD,21122 +-76.610077,39.356323,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",5422 York Rd, Baltimore,MD,21212 +-75.819565,39.598858,"DD/BR [drivethru-yes] [wifi-yes]-Elkton,MD",102 Big Elk Mall, Elkton,MD,21921 +-76.45418,39.32047,"DD [drivethru-yes] [wifi-yes]-Essex,MD",1602 Eastern Boulevard, Essex,MD,21221 +-76.84459,39.17691,"DD [drivethru-no] [wifi-yes]-Columbia,MD",7106 Minstrel Way, Columbia,MD,21045 +-76.727348,39.206738,"DD/BR [drivethru-no] [wifi-yes]-Elkridge,MD",6305 Washington Blvd [Ste A], Elkridge,MD,21075 +-76.8672,39.638057,"DD [drivethru-no] [wifi-yes]-Hagerstown,MD",2320 N Hanover Pike [Walmart], Hampstead,MD,21074 +-76.84743,39.59801,"DD [drivethru-yes] [wifi-yes]-Hampstead,MD",822 South Main Street, Hampstead,MD,21074 +-76.682388,39.270134,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",3701 Wilkens Ave, Baltimore,MD,21229 +-76.6349,39.33755,"DD [drivethru-no] [wifi-no]-Baltimore,MD",1020 West 41st Street, Baltimore,MD,21211 +-76.780228,39.426159,"DD/BR [drivethru-yes] [wifi-yes]-Owings Mills,MD",10902 Boulevard Circle [Ste 5], Owings Mills,MD,21117 +-76.69451,39.35067,"DD/BR [drivethru-yes] [wifi-yes]-Baltimore,MD",5800 Reisterstown Road, Baltimore,MD,21215 +-76.800308,39.399471,"DD/BR [drivethru-yes] [wifi-yes]-Owings Mills,MD",9419 Common Brook Dr, Owings Mills,MD,21117 +-76.438805,39.039135,"DD/BR [drivethru-no] [wifi-yes]-Annapolis,MD",1342 Cape Saint Claire Rd, Annapolis,MD,21409 +-76.399673,39.33773,"DD [drivethru-no] [wifi-no]-Baltimore,MD",112 Carroll Island Rd [Walmart], Baltimore,MD,21220 +-76.398227,39.337575,"DD [drivethru-yes] [wifi-yes]-Middle River,MD",190 Carroll Island Rd, Middle River,MD,21220 +-76.6116,39.29918,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",840 Guilford Avenue, Baltimore,MD,21202 +-76.438164,38.372997,"DD/BR [drivethru-no] [wifi-yes]-Lusby,MD",174 Village Center Dr, Lusby,MD,20657 +-76.617172,39.421307,"DD [drivethru-no] [wifi-yes]-Lutherville,MD",1506 York Rd, Lutherville,MD,21093 +-76.543098,39.074135,"DD/BR [drivethru-no] [wifi-yes]-Severna Park,MD",604 Ritchie Hwy, Severna Park,MD,21146 +-76.174599,39.497608,"DD [drivethru-no] [wifi-yes]-Aberdeen,MD",645 S Philadelphia Blvd [Walmart], Aberdeen,MD,21001 +-76.581039,39.393269,"DD [drivethru-no] [wifi-no]-Towson,MD",1238 Putty Hill Pkwy [Walmart], Towson,MD,21286 +-75.078683,38.348047,"DD/BR [drivethru-no] [wifi-yes]-Ocean City,MD",1800 N Philadelphia Ave, Ocean City,MD,21842 +-75.082848,38.335189,"DD/BR [drivethru-no] [wifi-yes]-Ocean City,MD",409 Boardwalk [Space 102 Tidelands Motel], Ocean City,MD,21842 +-76.498436,39.267872,"DD [drivethru-yes] [wifi-yes]-Baltimore,MD",7821 Wise Ave, Baltimore,MD,21222 +-75.947975,39.610172,"DD [drivethru-yes] [wifi-yes]-North East,MD",130 N East Rd [North East Plaza], North East,MD,21901 +-76.511486,39.295075,"DD [drivethru-yes] [wifi-yes]-Baltimore,MD",7846 Eastern Ave, Baltimore,MD,21224 +-76.494487,38.978363,"DD [drivethru-no] [wifi-yes]-Annapolis,MD",38 West St, Annapolis,MD,21401 +-76.75182,39.32237,"DD/BR [drivethru-yes] [wifi-yes]-Woodlawn,MD",6900 Dogwood Road [Ste F], Woodlawn,MD,21244 +-76.56341,39.29696,"DD [drivethru-yes] [wifi-yes]-Baltimore,MD",4022 Pulaski Highway, Baltimore,MD,21224 +-76.566406,39.277271,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",3600 Boston St [Brewers Hill], Baltimore,MD,21224 +-76.183807,39.523819,"DD/BR [drivethru-yes] [wifi-yes]-Aberdeen,MD",993 Beards Hill Rd, Aberdeen,MD,21001 +-76.524834,38.974007,"DD [drivethru-no] [wifi-yes]-Annapolis,MD",1900 Fairfax Rd, Annapolis,MD,21401 +-76.531395,38.982273,"DD/BR [drivethru-yes] [wifi-yes]-Annapolis,MD",2004 West St, Annapolis,MD,21401 +-76.46166,39.41468,"DD [drivethru-no] [wifi-yes]-Baltimore,MD",9644 Belair Road, Baltimore,MD,21236 +-76.6244,39.43644,"DD [drivethru-no] [wifi-yes]-Timonium,MD",2001 York Road, Timonium,MD,21093 +-76.61938,39.28872,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",10 South Howard Street, Baltimore,MD,21201 +-76.61369,39.28848,"DD [drivethru-no] [wifi-no]-Baltimore,MD",25 Light Street, Baltimore,MD,21202 +-76.618645,39.322517,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",2016 B N Maryland Ave [Midtown Marketplace], Baltimore,MD,21218 +-76.670517,39.248684,"DD [drivethru-yes] [wifi-yes]-Lansdowne,MD",3597 Washington Blvd [Ste 104], Lansdowne,MD,21227 +-76.640495,39.344685,"DD/BR [drivethru-no] [wifi-yes]-Baltimore,MD",4535 Falls Rd, Baltimore,MD,21209 +-76.06451,38.56823,"DD [drivethru-yes] [wifi-yes]-Cambridge,MD",215 Sunburst Highway, Cambridge,MD,21613 +-76.557991,38.975388,"DD [drivethru-no] [wifi-yes]-Annapolis,MD",2641 Riva Rd [Ste F], Annapolis,MD,21401 +-75.61618,38.32671,"DD [drivethru-no] [wifi-yes]-Fruitland,MD",409 North Fruitland Boulevard [Walmart], Fruitland,MD,21826 +-75.11363,38.33842,"DD [drivethru-yes] [wifi-yes]-Ocean City,MD",12641 Ocean Gateway [White Marlin Mall], Ocean City,MD,21842 +-75.164497,38.375946,"DD/BR [drivethru-yes] [wifi-yes]-Berlin,MD",11001 Manklin Creek Rd [Ste 1], Berlin,MD,21811 +-76.838158,39.27763,"DD/BR [drivethru-yes] [wifi-no]-Ellicott City,MD",9469 Baltimore National Pike, Ellicott City,MD,21042 +-76.009893,39.612796,"DD [drivethru-no] [wifi-no]-North East,MD",JFK Memorial Tpke, North East,MD,21901 +-77.176376,39.121422,"DD [drivethru-no] [wifi-no]-Gaithersburg,MD",16220 Frederick Rd, Gaithersburg,MD,20877 +-77.156059,39.039364,"DD [drivethru-no] [wifi-yes]-Potomac,MD",7739 Tuckerman Ln, Potomac,MD,20854 +-77.095365,38.984785,"DD [drivethru-no] [wifi-yes]-Bethesda,MD",7500 Old Georgetown Rd [Ste MRGR2], Bethesda,MD,20814 +-77.07715,39.08232,"DD [drivethru-no] [wifi-yes]-Silver Spring,MD",13874 Georgia Avenue, Silver Spring,MD,20906 +-77.051041,39.038742,"DD [drivethru-no] [wifi-yes]-Wheaton,MD",2405 Reedie Dr, Wheaton,MD,20902 +-77.251854,39.117416,"DD/BR [drivethru-no] [wifi-yes]-Gaithersburg,MD",12168 Darnestown Rd, Gaithersburg,MD,20878 +-77.082947,39.05603,"DD/BR [drivethru-no] [wifi-yes]-Silver Spring,MD",12200 Viers Mill Rd, Silver Spring,MD,20906 +-77.07569,39.03002,"DD [drivethru-no] [wifi-no]-Kensington,MD",10625 Connecticut Avenue, Kensington,MD,20895 +-77.05264,39.03821,"DD [drivethru-no] [wifi-yes]-Wheaton,MD",11160 Veirs Mill Road, Wheaton,MD,20902 +-76.90417,38.80624,"DD [drivethru-no] [wifi-yes]-Camp Springs,MD",6100 Allentown Road, Camp Springs,MD,20746 +-77.00209,39.076248,"DD [drivethru-no] [wifi-yes]-Silver Spring,MD",13424 New Hampshire Ave, Silver Spring,MD,20904 +-77.313315,39.287834,"DD/BR [drivethru-yes] [wifi-yes]-Hyattstown,MD",1896 Urbana Pike, Hyattstown,MD,20871 +-77.211456,39.153291,"DD [drivethru-no] [wifi-yes]-Gaithersburg,MD",20 Montgomery Village Ave, Gaithersburg,MD,20879 +-76.49889,38.29368,"DD [drivethru-yes] [wifi-yes]-California,MD",22861 Three Notch Road # 3, California,MD,20619 +-77.256744,39.383877,"DD/BR [drivethru-yes] [wifi-yes]-New Market,MD",11715 Old National Pike, New Market,MD,21774 +-77.45338,39.41856,"DD [drivethru-yes] [wifi-yes]-Frederick,MD",1296 W Patrick Street, Frederick,MD,21703 +-77.165047,39.366454,"DD/BR [drivethru-yes] [wifi-no]-Mount Airy,MD",1401 S Main St, Mount Airy,MD,21771 +-77.11657,39.075455,"DD [drivethru-no] [wifi-yes]-Rockville,MD",2006 Veirs Mill Rd [Twinbrook Shopping Center], Rockville,MD,20851 +-77.743414,39.612402,"DD [drivethru-yes] [wifi-yes]-Hagerstown,MD",18206 Oak Ridge Dr, Hagerstown,MD,21740 +-76.821489,39.100782,"DD/BR [drivethru-yes] [wifi-yes]-Laurel,MD",3503 Laurel Fort Meade Rd, Laurel,MD,20724 +-77.71964,39.67315,"DD/BR [drivethru-yes] [wifi-yes]-Hagerstown,MD",13108 Pennsylvania Avenue, Hagerstown,MD,21742 +-77.095581,38.980804,"DD [drivethru-no] [wifi-yes]-Bethesda,MD",4810 Bethesda Ave, Bethesda,MD,20814 +-77.096924,39.002647,"DD [drivethru-no] [wifi-no]-Bethesda,MD",8901 Wisconsin Ave [National Navy Medical Ctr], Bethesda,MD,20814 +-76.735352,38.825447,"DD [drivethru-yes] [wifi-yes]-Upper Marlboro,MD",4705 Crain Hwy, Upper Marlboro,MD,20772 +-77.43676,39.442581,"DD [drivethru-yes] [wifi-yes]-Frederick,MD",2198 Old Farm Dr, Frederick,MD,21702 +-77.137199,39.075306,"DD [drivethru-no] [wifi-yes]-Rockville,MD",865 Rockville Pike, Rockville,MD,20852 +-77.06396,39.15255,"DD [drivethru-no] [wifi-yes]-Olney,MD",18100 Village Mart Drive, Olney,MD,20832 +-76.88545,38.8219,"DD/BR [drivethru-no] [wifi-yes]-Suitland,MD",4767 Allentown Road, Suitland,MD,20746 +-76.95773,38.96619,"DD [drivethru-no] [wifi-yes]-Hyattsville,MD",2970 Belcrest Center Drive [Ste 112 Metro Shoppes], Hyattsville,MD,20748 +-77.238393,39.179432,"DD [drivethru-yes] [wifi-no]-Germantown,MD",19781 Frederick Rd, Germantown,MD,20876 +-77.270287,39.177242,"DD/BR [drivethru-yes] [wifi-yes]-Germantown,MD",12915 Wisteria Dr, Germantown,MD,20874 +-76.898308,39.144104,"DD/BR [drivethru-no] [wifi-no]-Scaggsville,MD",8305 Ice Crystal Dr, Scaggsville,MD,20723 +-76.892952,39.160236,"DD [drivethru-no] [wifi-no]-Laurel,MD",7530 Montpelier Rd [Montpelier Retail Ctr], Laurel,MD,20723 +-76.853485,39.094589,"DD/BR [drivethru-no] [wifi-yes]-Laurel,MD",14903 Baltimore Ave, Laurel,MD,20707 +-76.806085,39.148073,"DD/BR [drivethru-yes] [wifi-yes]-Jessup,MD",8600 Washington Blvd, Jessup,MD,20794 +-76.933237,39.113573,"DD/BR [drivethru-no] [wifi-yes]-Burtonsville,MD",15640 Old Columbia Pike, Burtonsville,MD,20866 +-76.87643,38.95374,"DD [drivethru-yes] [wifi-yes]-Lanham,MD",7903 Annapolis Road, Lanham,MD,20706 +-76.914843,38.852254,"DD [drivethru-no] [wifi-yes]-District Heights,MD",5412 Silver Hill Rd, District Heights,MD,20747 +-77.08062,39.08037,"DD [drivethru-yes] [wifi-yes]-Aspen Hill,MD",13810 Connecticut Avenue, Aspen Hill,MD,20906 +-76.97791,38.9835,"DD/BR [drivethru-no] [wifi-yes]-Hyattsville,MD",2057 University Boulevard East, Hyattsville,MD,20783 +-77.698036,39.624992,"DD/BR [drivethru-yes] [wifi-no]-Hagerstown,MD",1427 Dual Hwy, Hagerstown,MD,21740 +-77.202004,39.287786,"DD/BR [drivethru-yes] [wifi-no]-Damascus,MD",9803 Main St, Damascus,MD,20872 +-76.876325,38.655728,"DD/BR [drivethru-yes] [wifi-yes]-Waldorf,MD",2040 Crain Hwy, Waldorf,MD,20601 +-76.92741,39.01542,"DD/BR [drivethru-no] [wifi-yes]-College Park,MD",9701 Baltimore Avenue, College Park,MD,20740 +-77.174316,39.110054,"DD/BR [drivethru-no] [wifi-no]-Rockville,MD",700 Gaithers Rd, Rockville,MD,20850 +-77.031264,38.994164,"DD [drivethru-no] [wifi-yes]-Silver Spring,MD",8401 Colesville Rd, Silver Spring,MD,20910 +-76.892517,38.88726,"DD/BR [drivethru-yes] [wifi-yes]-Capitol Heights,MD",9183 Central Hwy, Capital Heights,MD,20743 +-77.009727,38.670044,"DD/BR [drivethru-yes] [wifi-yes]-Accokeek,MD",15793 Livingston Rd, Accokeek,MD,20607 +-76.774859,38.496873,"DD [drivethru-yes] [wifi-yes]-Charlotte Hall,MD",30170 Three Notch Rd, Charlotte Hall,MD,20622 +-76.994919,38.974335,"DD/BR [drivethru-yes] [wifi-yes]-Takoma Park,MD",6851 New Hampshire Ave, Takoma Park,MD,20912 +-76.77319,38.97342,"DD/BR [drivethru-no] [wifi-yes]-Bowie,MD",6101 High Bridge Rd [Shoppes at Highbridge], Bowie,MD,20720 +-77.11231,39.04579,"DD [drivethru-no] [wifi-no]-Rockville,MD",11520 Rockville Pike [Ste D], Rockville,MD,20852 +-76.9135,38.998181,"DD [drivethru-no] [wifi-no]-Greenbelt,MD",5900 Greenbelt Rd, Greenbelt,MD,20770 +-77.35159,39.3241,"DD/BR [drivethru-no] [wifi-yes]-Frederick,MD",8925 Fingerboard Road, Frederick,MD,21704 +-76.967911,38.949312,"DD [drivethru-yes] [wifi-no]-Hyattsville,MD",3030 Queens Chapel Rd, Hyattsville,MD,20782 +-77.158891,39.161168,"DD/BR [drivethru-no] [wifi-yes]-Gaithersburg,MD",18558 Woodfield Rd, Gaithersburg,MD,20879 +-76.757118,38.984079,"DD [drivethru-yes] [wifi-yes]-Bowie,MD",6796 Laurel Bowie Rd, Bowie,MD,20715 +-76.919052,38.617664,"DD [drivethru-yes] [wifi-yes]-Waldorf,MD",3510 Crain Hwy, Waldorf,MD,20603 +-70.609863,43.971416,"DD [drivethru-yes] [wifi-yes]-Naples,ME",293 Roosevelt Tr Rt 302/11, Naples,ME,4055 +-70.40749,44.06983,"DD [drivethru-yes] [wifi-yes]-Poland,ME",1399 Maine Street, Poland,ME,4274 +-68.75324,44.78599,"DD [drivethru-yes] [wifi-yes]-Brewer,ME",271 State Street, Brewer,ME,4012 +-68.822411,44.734943,"DD [drivethru-yes] [wifi-yes]-Orrington,ME",171 River Rd [Rt 15 & Snows Corner Rd], Orrington,ME,4474 +-68.7326,44.77729,"DD [drivethru-yes] [wifi-yes]-Brewer,ME",17 Schilling Drive, Brewer,ME,4412 +-70.53321,43.39297,"DD [drivethru-yes] [wifi-yes]-Kennebunk,ME",45 Portland Road, Kennebunk,ME,4043 +-69.319787,44.615638,"DD [drivethru-no] [wifi-yes]-Unity,ME",268 Depot St, Unity,ME,4988 +-68.77438,44.79537,"DD [drivethru-yes] [wifi-yes]-Bangor,ME",327 Main Street, Bangor,ME,4401 +-68.80857,44.81625,"DD [drivethru-yes] [wifi-no]-Bangor,ME",995 Union Street, Bangor,ME,4401 +-68.98742,45.257989,"DD [drivethru-yes] [wifi-yes]-Milo,ME",55 Park St, Milo,ME,4463 +-68.81262,44.78764,"DD [drivethru-yes] [wifi-yes]-Bangor,ME",394 Odlin Road, Bangor,ME,4401 +-68.789948,44.834473,"DD [drivethru-yes] [wifi-yes]-Bangor,ME",1066 Broadway, Bangor,ME,4401 +-70.374653,43.51588,"DD [drivethru-no] [wifi-no]-Old Orchard Beach,ME",13 Old Orchard St, Old Orchard Beach,ME,4064 +-70.664962,43.652267,"DD [drivethru-yes] [wifi-yes]-Hollis Center,ME",6 Plains Rd, Hollis Center,ME,4042 +-69.288546,45.026813,"DD [drivethru-yes] [wifi-no]-Dexter,ME",45 Church St, Dexter,ME,4930 +-70.192688,44.47575,"DD [drivethru-yes] [wifi-yes]-Livermore Falls,ME",86 Main St, Livermore Falls,ME,4254 +-70.443939,43.838837,"DD [drivethru-no] [wifi-yes]-Windham,ME",30 Landing Rd [Walmart], Windham,ME,4062 +-70.437668,43.833298,"DD [drivethru-yes] [wifi-yes]-Windham,ME",736 Roosevelt Trail [Rt 302], Windham,ME,4062 +-70.327736,43.593918,"DD [drivethru-yes] [wifi-yes]-Scarborough,ME",196 US Rt 1, Scarborough,ME,4074 +-70.3403,43.6242,"DD [drivethru-no] [wifi-no]-Scarborough,ME",500 Gallery Boulevard [Walmart], Scarborough,ME,4074 +-69.708389,43.975796,"DD [drivethru-yes] [wifi-yes]-Wiscasset,ME",632 Bath Rd [Rt 1], Wiscasset,ME,4578 +-70.32574,43.70425,"DD [drivethru-yes] [wifi-yes]-Westbrook,ME",24 Bridgton Road, Westbrook,ME,4292 +-70.3299,43.63588,"DD [drivethru-yes] [wifi-yes]-South Portland,ME",325 Gorham Road, South Portland,ME,4106 +-69.644218,44.570324,"DD [drivethru-no] [wifi-no]-Waterville,ME",80 Waterville Commons Dr [Walmart], Waterville,ME,4901 +-69.62941,44.55627,"DD [drivethru-yes] [wifi-no]-Waterville,ME",42 College Avenue, Waterville,ME,4901 +-69.62537,44.54664,"DD [drivethru-yes] [wifi-yes]-Winslow,ME",9 Bay St, Winslow,ME,4091 +-70.11626,43.84494,"DD [drivethru-yes] [wifi-yes]-Freeport,ME",200 Lower Main Street [Freeport Crossing], Freeport,ME,4032 +-68.837921,44.744497,"DD [drivethru-yes] [wifi-no]-Hampden,ME",76 Main Rd N, Hampden,ME,4444 +-69.67521,44.54476,"DD [drivethru-yes] [wifi-yes]-Waterville,ME",419 Kennedy Memorial Drive, Waterville,ME,4901 +-69.56393,44.76184,"DD [drivethru-yes] [wifi-yes]-Canaan,ME",247 Main Street, Canaan,ME,4924 +-70.361237,43.676716,"DD [drivethru-yes] [wifi-yes]-Westbrook,ME",742 Main St, Westbrook,ME,4092 +-70.331154,43.677567,"DD [drivethru-yes] [wifi-yes]-Westbrook,ME",29 Main St, Westbrook,ME,4092 +-68.91391,44.80986,"DD [drivethru-yes] [wifi-no]-Hermon,ME",2402 SR 2 [Darforths Supermarket], Hermon,ME,4401 +-70.17396,43.80524,"DD [drivethru-no] [wifi-no]-Yarmouth,ME",936 Route 1, Yarmouth,ME,4096 +-70.188377,43.801163,"DD [drivethru-yes] [wifi-yes]-Yarmouth,ME",242 Main St, Yarmouth,ME,4096 +-68.627533,44.736229,"DD [drivethru-no] [wifi-yes]-Holden,ME",1024 Main Rd, Holden,ME,4429 +-68.582115,44.791691,"DD [drivethru-yes] [wifi-no]-Eddington,ME",1439 Main Rd [Rt 9 & Rt 46], Eddington,ME,4428 +-70.399345,43.642109,"DD [drivethru-yes] [wifi-yes]-Scarborough,ME",91 County Rd, Scarborough,ME,4074 +-70.39656,43.68925,"DD [drivethru-yes] [wifi-yes]-Gorham,ME",593 Main Street, Gorham,ME,4038 +-69.374481,44.102772,"DD [drivethru-yes] [wifi-no]-Waldoboro,ME",1400 US Rt 1, Waldoboro,ME,4572 +-68.66866,44.92563,"DD [drivethru-yes] [wifi-yes]-Old Town,ME",552 Stillwater Avenue, Old Town,ME,4468 +-68.68889,44.90577,"DD [drivethru-yes] [wifi-no]-Orono,ME",4 Stillwater Avenue, Orono,ME,4473 +-70.79607,44.41375,"DD [drivethru-yes] [wifi-yes]-Bethel,ME",59 Mayville Road, Bethel,ME,4217 +-70.254503,43.63427,"DD [drivethru-yes] [wifi-yes]-South Portland,ME",617 Broadway, South Portland,ME,4106 +-70.287858,43.699162,"DD [drivethru-yes] [wifi-yes]-Portland,ME",1378 Washington Ave, Portland,ME,94103 +-70.29679,43.73488,"DD [drivethru-yes] [wifi-yes]-Falmouth,ME",65 Gray Road, Falmouth,ME,4105 +-70.19176,44.07896,"DD [drivethru-yes] [wifi-yes]-Lewiston,ME",1124 Lisbon Street, Lewiston,ME,4240 +-70.14793,44.06141,"DD [drivethru-yes] [wifi-yes]-Lewiston,ME",1930 Lisbon Road [Rt 196], Lewiston,ME,4240 +-70.23318,44.12024,"DD [drivethru-no] [wifi-no]-Auburn,ME",100 Mount Auburn Avenue [Walmart], Auburn,ME,4210 +-70.204386,44.084888,"DD [drivethru-yes] [wifi-no]-Lewiston,ME",828 Lisbon St, Lewiston,ME,4240 +-70.26013,44.08164,"DD [drivethru-yes] [wifi-yes]-Auburn,ME",800 Minot Avenue, Auburn,ME,4210 +-70.222,44.088074,"DD [drivethru-yes] [wifi-yes]-Auburn,ME",7 Riverside Dr, Auburn,ME,4210 +-70.20657,44.11507,"DD [drivethru-yes] [wifi-yes]-Lewiston,ME",590 Main, Lewiston,ME,4240 +-70.22446,44.11492,"DD [drivethru-yes] [wifi-yes]-Auburn,ME",360 Center Street, Auburn,ME,4210 +-70.21321,44.10217,"DD [drivethru-yes] [wifi-yes]-Lewiston,ME",319 Main Street, Lewiston,ME,4240 +-70.23251,43.72247,"DD [drivethru-yes] [wifi-yes]-Falmouth,ME",219 US Route 1, Falmouth,ME,4105 +-70.15795,44.62715,"DD [drivethru-yes] [wifi-yes]-Farmington,ME",636 Wilton Road [Mt Blue Shopping Ctr], Farmington,ME,4938 +-70.14925,44.66825,"DD [drivethru-no] [wifi-yes]-Farmington,ME",193 Main Street, Farmington,ME,4938 +-70.15515,44.62912,"DD [drivethru-no] [wifi-no]-Farmington,ME",615 Wilton Road [Walmart], Farmington,ME,4938 +-70.19847,44.10155,"DD [drivethru-no] [wifi-no]-Lewiston,ME",95 Campus Avenue [St Mary's Hospital], Lewiston,ME,4240 +-70.268967,44.032249,"DD [drivethru-yes] [wifi-yes]-Auburn,ME",791 Kittyhawk [Auburn Crossing S/C], Auburn,ME,4210 +-70.30359,43.62131,"DD [drivethru-yes] [wifi-yes]-South Portland,ME",633 Main Street, South Portland,ME,4106 +-70.345596,43.650597,"DD [drivethru-yes] [wifi-no]-Westbrook,ME",73 County Rd, Westbrook,ME,4092 +-70.25654,43.65743,"DD [drivethru-no] [wifi-yes]-Portland,ME",1 City Centre, Portland,ME,4101 +-70.25259,43.65665,"DD/BR [drivethru-no] [wifi-yes]-Portland,ME",363 Fore Street, Portland,ME,4101 +-70.28899,43.65697,"DD [drivethru-no] [wifi-no]-Portland,ME",1199 Congress Street, Portland,ME,4102 +-70.261864,43.655041,"DD [drivethru-no] [wifi-yes]-Portland,ME",554 Congress St, Portland,ME,4101 +-70.27982,43.65443,"DD [drivethru-yes] [wifi-yes]-Portland,ME",327 Saint John Street, Portland,ME,4102 +-70.324989,43.686554,"DD [drivethru-yes] [wifi-yes]-Portland,ME",599 Warren Ave, Portland,ME,4103 +-70.284508,43.670311,"DD [drivethru-no] [wifi-yes]-Portland,ME",544 Deering Ave, Portland,ME,4103 +-68.01587,46.67702,"DD [drivethru-yes] [wifi-no]-Presque Isle,ME",283 Main Street, Presque Isle,ME,4769 +-68.01131,46.69777,"DD [drivethru-no] [wifi-no]-Presque Isle,ME",781 Main Street [Walmart], Presque Isle,ME,4769 +-70.51126,44.17352,"DD [drivethru-no] [wifi-no]-Oxford,ME",1240 Main Street [Walmart], Oxford,ME,4270 +-70.46441,44.13401,"DD [drivethru-yes] [wifi-yes]-Oxford,ME",467 Main, Oxford,ME,4270 +-70.52121,44.214592,"DD [drivethru-yes] [wifi-yes]-South Paris,ME",169 Main St, South Paris,ME,4281 +-69.865446,44.098772,"DD [drivethru-yes] [wifi-yes]-Richmond,ME",5 Ridge Rd, Richmond,ME,4357 +-69.918922,43.907372,"DD [drivethru-yes] [wifi-yes]-Brunswick,ME",172 Bath Rd [Cooks Corner], Brunswick,ME,4011 +-69.91063,43.90833,"DD [drivethru-no] [wifi-no]-Brunswick,ME",15 Tibbetts Drive [Walmart], Brunswick,ME,4410 +-69.978951,43.912941,"DD [drivethru-yes] [wifi-yes]-Brunswick,ME",104 Pleasant St [Rt 1], Brunswick,ME,4011 +-69.8686,44.7991,"DD [drivethru-yes] [wifi-yes]-Madison,ME",164 Main, Madison,ME,4950 +-70.736458,43.306454,"DD [drivethru-yes] [wifi-yes]-North Berwick,ME",23 Wells St, North Berwick,ME,3906 +-68.42933,44.55262,"DD [drivethru-yes] [wifi-yes]-Ellsworth,ME",266 State Street, Ellsworth,ME,4605 +-68.397125,44.528423,"DD [drivethru-no] [wifi-no]-Lamoine,ME",17 Myrick St [Walmart], Lamoine,ME,4605 +-70.33058,43.88551,"DD [drivethru-yes] [wifi-yes]-Gray,ME",3 Shaker Rd, Gray,ME,4039 +-70.465477,43.881245,"DD [drivethru-yes] [wifi-yes]-Raymond,ME",1237 Roosevelt Trail [Rt 301], Raymond,ME,4071 +-70.700104,44.037704,"DD [drivethru-yes] [wifi-yes]-Bridgton,ME",181 Portland Rd, Birdgton,ME,4009 +-70.583794,43.316071,"DD [drivethru-yes] [wifi-yes]-Wells,ME",1358 Post Rd, Wells,ME,4090 +-70.594918,43.281731,"DD [drivethru-yes] [wifi-yes]-Wells,ME",329 Post Rd, Wells,ME,4090 +-70.206573,44.591026,"DD [drivethru-yes] [wifi-no]-Wilton,ME",380 US Rt 2 East, Wilton,ME,4294 +-70.53725,43.78233,"DD [drivethru-yes] [wifi-yes]-Standish,ME",30 Ossipee Trail, Standish,ME,4084 +-69.793015,44.343483,"DD [drivethru-no] [wifi-no]-Augusta,ME",201 Civic Center [Walmart], Augusta,ME,4330 +-70.82275,43.80348,"DD [drivethru-yes] [wifi-yes]-Cornish,ME",204 Maple Street Ste 1, Cornish,ME,4020 +-69.76613,44.31931,"DD [drivethru-yes] [wifi-yes]-Augusta,ME",41 Bangor Street, Augusta,ME,4330 +-69.798004,44.313889,"DD [drivethru-yes] [wifi-no]-Augusta,ME",205 Western Ave, Augusta,ME,4330 +-69.792404,44.336517,"DD [drivethru-yes] [wifi-yes]-Augusta,ME",5 Gaywalk St, Augusta,ME,4330 +-69.783089,44.310654,"DD [drivethru-yes] [wifi-no]-Augusta,ME",67 Sewall St, Augusta,ME,4330 +-69.86097,44.324482,"DD [drivethru-yes] [wifi-no]-Manchester,ME",926 Western Ave, Manchester,ME,4351 +-69.098236,44.125038,"DD [drivethru-no] [wifi-no]-Rockland,ME",265 Camden St [Walmart], Rockland,ME,4841 +-69.109756,44.109406,"DD [drivethru-yes] [wifi-yes]-Rockland,ME",632 Main St, Rockland,ME,4841 +-69.12505,44.09936,"DD [drivethru-yes] [wifi-yes]-Thomaston,ME",206 New County Road, Thomaston,ME,4841 +-69.08755,44.14822,"DD [drivethru-no] [wifi-yes]-Rockport,ME",849 Commercial Street, Rockport,ME,4856 +-69.77404,44.231056,"DD [drivethru-yes] [wifi-yes]-Gardiner,ME",35 Bridge St, Gardiner,ME,4345 +-69.533615,44.033314,"DD [drivethru-yes] [wifi-yes]-Damariscotta,ME",434-1 Main St Rt 1 Bypass & Biscay, Damariscotta,ME,4543 +-68.909782,44.460789,"DD [drivethru-yes] [wifi-yes]-Searsport,ME",161 E Main St, Searsport,ME,4974 +-67.840546,46.143826,"DD [drivethru-yes] [wifi-no]-Houlton,ME",246 North St, Houlton,ME,4730 +-70.603035,43.479298,"DD [drivethru-yes] [wifi-yes]-Lyman,ME",1480 Alfred Rd, Lyman,ME,4002 +-68.00881,46.8606,"DD [drivethru-no] [wifi-no]-Caribou,ME",89 High Street, Caribou,ME,4736 +-69.716614,44.766182,"DD [drivethru-yes] [wifi-yes]-Skowhegan,ME",175 Water St, Skowhegan,ME,4976 +-69.726273,44.779854,"DD [drivethru-yes] [wifi-yes]-Skowhegan,ME",386 Madison Avenue, Skowhegan,ME,4106 +-69.729889,44.780239,"DD [drivethru-no] [wifi-no]-Skowhegan,ME",60 Fairgrounds Market Place [Walmart], Skowhegan,ME,4976 +-68.78764,44.57113,"DD [drivethru-yes] [wifi-yes]-Bucksport,ME",74 Us Route 1, Bucksport,ME,4416 +-70.769478,43.430359,"DD [drivethru-yes] [wifi-no]-Sanford,ME",577 Main St, Sanford,ME,4073 +-70.698738,43.3983,"DD [drivethru-no] [wifi-no]-Sanford,ME",1930 Main St [Walmart], Sanford,ME,4073 +-67.281319,45.185814,"DD [drivethru-yes] [wifi-yes]-Calais,ME",131 North St, Calais,ME,4619 +-69.825768,43.908779,"DD [drivethru-yes] [wifi-yes]-Bath,ME",150 Leeman Hwy, Bath,ME,4530 +-70.78288,43.15223,"DD [drivethru-yes] [wifi-yes]-Eliot,ME",151 H L Dow Highway, Eliot,ME,3903 +-70.72383,43.11867,"DD [drivethru-yes] [wifi-yes]-Kittery,ME",400 Us Route 1, Kittery,ME,3904 +-70.350441,43.621536,"DD [drivethru-no] [wifi-no]-Scarborough,ME",441 Payne Rd, Scarborough,ME,4074 +-70.808723,43.232731,"DD [drivethru-yes] [wifi-yes]-South Berwick,ME",175 Main St, South Berwick,ME,3908 +-70.109932,44.112404,"DD [drivethru-yes] [wifi-yes]-Sabattus,ME",148 Sabattus Rd Ste 156, Sabattus,ME,4280 +-69.97151,43.93779,"DD [drivethru-yes] [wifi-yes]-Topsham,ME",4c Hamilton Court, Topsham,ME,4086 +-69.29738,44.83903,"DD [drivethru-no] [wifi-no]-Palmyra,ME",1573 Main St [Walmart], Palmyra,ME,4965 +-69.29581,44.83009,"DD [drivethru-yes] [wifi-yes]-Palmyra,ME",532 Oxbow Road Rt 100, Palmyra,ME,4965 +-70.54576,44.54704,"DD [drivethru-yes] [wifi-yes]-Rumford,ME",154 Congress St, Rumford,ME,4276 +-70.070335,44.00354,"DD [drivethru-yes] [wifi-yes]-Lisbon Falls,ME",583 Lisbon St, Lisbon Falls,ME,4252 +-69.01952,44.42332,"DD [drivethru-yes] [wifi-yes]-Belfast,ME",23 Starett Drive, Belfast,ME,4915 +-70.774727,43.438152,"DD [drivethru-yes] [wifi-yes]-Sanford,ME",925 Main St, Sanford,ME,4073 +-70.738052,43.408497,"DD [drivethru-yes] [wifi-yes]-Sanford,ME",1503 Main St, Sanford,ME,4073 +-69.0021,44.9833,"DD [drivethru-yes] [wifi-yes]-Corinth,ME",689 Main [Tradewinds Marketplace], Corinth,ME,4427 +-70.447533,43.500275,"DD [drivethru-no] [wifi-no]-Saco,ME",4 Scammon St [Shaw's Supermarket], Saco,ME,4072 +-70.427406,43.525978,"DD [drivethru-yes] [wifi-yes]-Saco,ME",729 Portland Rd, Saco,ME,4072 +-70.49972,43.47745,"DD [drivethru-no] [wifi-no]-Biddeford,ME",525 Alfred [Walmart], Biddeford,ME,4412 +-70.43541,43.50864,"DD [drivethru-yes] [wifi-no]-Saco,ME",505 Main Street, Saco,ME,4072 +-70.45776,43.4957,"DD [drivethru-yes] [wifi-yes]-Biddeford,ME",3 Spruce St, Biddeford,ME,4005 +-70.489494,43.479374,"DD [drivethru-yes] [wifi-yes]-Biddeford,ME",476 Alfred St, Biddeford,ME,4005 +-68.746857,44.838295,"DD [drivethru-no] [wifi-no]-Bangor,ME",900 Stillwater Ave [Walmart], Bangor,ME,4401 +-68.74365,44.83975,"DD [drivethru-yes] [wifi-yes]-Bangor,ME",749 Hogan Road, Bangor,ME,4401 +-67.4483,44.7206,"DD/BR [drivethru-yes] [wifi-yes]-Machias,ME",300 E Main Street, Machias,ME,4654 +-70.32959,43.64342,"DD [drivethru-yes] [wifi-no]-South Portland,ME",446 Western Avenue, South Portland,ME,4106 +-70.70608,43.59332,"DD [drivethru-yes] [wifi-yes]-Waterboro,ME",40 Sokokis Trl Ste I, Waterboro,ME,4030 +-70.261435,44.257722,"DD [drivethru-yes] [wifi-yes]-Turner,ME",10 Brody Way, Turner,ME,4282 +-83.789288,42.550328,"DD/BR [drivethru-yes] [wifi-yes]-Brighton,MI",8281 Grand River Rd, Brighton,MI,48114 +-83.450599,42.322759,"DD/BR [drivethru-yes] [wifi-yes]-Canton,MI",41511 Ford Rd, Canton,MI,48188 +-83.387985,42.2967,"DD [drivethru-no] [wifi-yes]-Westland,MI",1625 S Wayne Rd, Westland,MI,48186 +-83.226685,42.140827,"DD/BR [drivethru-yes] [wifi-yes]-Woodhaven,MI",20050 West Rd, Woodhaven,MI,48183 +-83.20107,42.12754,"DD [drivethru-yes] [wifi-no]-Trenton,MI",4407 Fort St, Trenton,MI,48183 +-83.379562,42.324505,"DD/BR [drivethru-no] [wifi-yes]-Westland,MI",34417 Ford Rd, Westland,MI,48185 +-83.43208,42.35967,"DD [drivethru-yes] [wifi-yes]-Plymouth,MI",39600 E Ann Arbor Rd, Plymouth,MI,48170 +-83.64386,42.229588,"DD [drivethru-yes] [wifi-yes]-Ypsilanti,MI",608 S Hewitt Rd, Ypsilanti,MI,48197 +-83.26891,42.22557,"DD/BR [drivethru-no] [wifi-yes]-Taylor,MI",11111 Telegraph Rd, Taylor,MI,48180 +-83.15206,42.19997,"DD [drivethru-no] [wifi-yes]-Wyandotte,MI",215 Eureka Rd, Wyandotte,MI,48192 +-83.20641,42.19905,"DD/BR [drivethru-no] [wifi-yes]-Southgate,MI",15067 Eureka Rd, Southgate,MI,48195 +-83.178047,42.170593,"DD/BR [drivethru-yes] [wifi-yes]-Brownstown,MI",21980 Sibley Rd, Brownstown,MI,48192 +-83.05213,42.6217,"DD/BR [drivethru-yes] [wifi-yes]-Sterling Heights,MI",44603 Mound Road, Sterling Heights,MI,48314 +-83.027895,42.49263,"DD/BR [drivethru-yes] [wifi-yes]-Warren,MI",27033 Van Dyke Ave, Warren,MI,48093 +-83.027664,42.495872,"DD/BR [drivethru-yes] [wifi-yes]-Warren,MI",27460 Van Dyke Ave, Warren,MI,48093 +-82.992851,42.616295,"DD/BR [drivethru-yes] [wifi-yes]-Sterling Heights,MI",43761 Schoenherr Unit B, Sterling Heights,MI,48311 +-83.067986,42.491703,"DD [drivethru-yes] [wifi-yes]-Warren,MI",3827 11 Mile Rd, Warren,MI,48092 +-82.99023,42.67053,"DD/BR [drivethru-yes] [wifi-yes]-Shelby Township,MI",14010 23 Mile Road, Shelby Township,MI,48315 +-82.9002,42.598675,"DD [drivethru-yes] [wifi-yes]-Clinton Township,MI",4 S Groesbeck Hwy, Clinton Township,MI,48036 +-82.96046,42.50551,"DD/BR [drivethru-yes] [wifi-yes]-Roseville,MI",28351 Groesbeck Highway, Roseville,MI,48066 +-83.03049,42.58158,"DD/BR [drivethru-yes] [wifi-yes]-Sterling Heights,MI",39151 Van Dyke Avenue, Sterling Heights,MI,48313 +-82.826145,42.674474,"DD [drivethru-yes] [wifi-no]-Chesterfield,MI",28230 23 Mile Rd, Chesterfield,MI,48051 +-84.504062,42.740706,"DD [drivethru-yes] [wifi-no]-Lansing,MI",3415 E Saginaw St, Lansing,MI,48912 +-84.42336,42.25924,"DD [drivethru-no] [wifi-yes]-Jackson,MI",906 N West Avenue, Jackson,MI,49202 +-83.933464,42.600388,"DD/BR [drivethru-yes] [wifi-yes]-Howell,MI",763 S Michigan Ave, Howell,MI,48843 +-84.432236,42.682808,"DD [drivethru-no] [wifi-yes]-Okemos,MI",3490 Okemos Rd, Okemos,MI,48864 +-83.270309,42.278332,"DD/BR [drivethru-yes] [wifi-yes]-Dearborn Heights,MI",4345 S Telegraph Rd, Dearborn Heights,MI,48125 +-83.275017,42.363972,"DD/BR [drivethru-yes] [wifi-yes]-Redford,MI",9406 Telegraph Rd, Redford,MI,48239 +-83.27673,42.39516,"DD/BR [drivethru-yes] [wifi-yes]-Redford,MI",14855 Telegraph Road, Redford,MI,48239 +-82.969331,42.44973,"DD/BR [drivethru-no] [wifi-yes]-Detroit,MI",14900 E 8 Mile Rd, Detroit,MI,48205 +-83.19434,42.22574,"DD/BR [drivethru-no] [wifi-no]-Lincoln Park,MI",4005 Dix Hwy, Lincoln Park,MI,48146 +-83.27441,42.29903,"DD/BR [drivethru-yes] [wifi-yes]-Dearborn,MI",24235 Michigan Ave, Dearborn,MI,48124 +-86.485049,42.085588,"DD/BR [drivethru-no] [wifi-yes]-Saint Joseph,MI",2731 Niles Ave, Saint Joseph,MI,49085 +-85.589617,42.26042,"DD [drivethru-yes] [wifi-yes]-Kalamazoo,MI",3102 S Westnedge Ave, Kalamazoo,MI,49008 +-83.201477,42.461452,"DD/BR [drivethru-yes] [wifi-yes]-Southfield,MI",23113 Greenfield Rd, Southfield,MI,48075 +-83.20168,42.47509,"DD/BR [drivethru-yes] [wifi-yes]-Oak Park,MI",25170 Greenfield Road, Oak Park,MI,48237 +-83.439472,42.541958,"DD [drivethru-yes] [wifi-yes]-Commerce Township,MI",3433 E West Maple Rd, Commerce Township,MI,48390 +-83.28071,42.47064,"DD/BR [drivethru-no] [wifi-no]-Southfield,MI",24740 Telegraph Road, Southfield,MI,48033 +-83.379684,42.730972,"DD [drivethru-no] [wifi-yes]-Clarkston,MI",6365 Sashabaw Rd, Clarkston,MI,48346 +-83.359802,42.525921,"DD [drivethru-no] [wifi-yes]-Farmington,MI",31080 Orchard Lake Rd, Farmington,MI,48334 +-83.248886,42.621784,"DD/BR [drivethru-yes] [wifi-yes]-Pontiac,MI",600 S Opdyke Rd, Pontiac,MI,48341 +-83.32619,42.64514,"DD/BR [drivethru-yes] [wifi-yes]-Waterford,MI",307 N Telegraph Road, Waterford,MI,48328 +-83.49421,42.64972,"DD [drivethru-yes] [wifi-yes]-White Lake,MI",10580 Highland Road, White Lake,MI,48386 +-83.239426,42.778914,"DD/BR [drivethru-no] [wifi-no]-Lake Orion,MI",378 S Broadway St, Lake Orion,MI,48362 +-83.373598,42.654469,"DD/BR [drivethru-yes] [wifi-yes]-Waterford,MI",4399 Highland Rd, Waterford,MI,48328 +-83.521408,42.524791,"DD [drivethru-yes] [wifi-yes]-Wixom,MI",47776 Pontiac Trl, Wixom,MI,48393 +-83.335609,42.425575,"DD [drivethru-yes] [wifi-yes]-Livonia,MI",19010 Middlebelt Rd, Livonia,MI,48152 +-83.323441,42.442577,"DD/BR [drivethru-yes] [wifi-no]-Farmington Hills,MI",27919 Grand River Ave, Farmington Hills,MI,48336 +-83.53593,42.49574,"DD/BR [drivethru-yes] [wifi-yes]-Wixom,MI",28040 S Wixom Road, Wixom,MI,48393 +-83.435356,42.467789,"DD/BR [drivethru-no] [wifi-no]-Novi,MI",39415 W 10 Mile Rd, Novi,MI,48375 +-83.22287,42.504547,"DD/BR [drivethru-yes] [wifi-yes]-Southfield,MI",29285 Southfield Rd, Southfield,MI,48076 +-83.44592,42.59174,"DD [drivethru-no] [wifi-yes]-Commerce Township,MI",3050 Union Lake Road, Commerce Township,MI,48382 +-83.30606,42.4993,"DD [drivethru-no] [wifi-yes]-Southfield,MI",28799 Northwestern Highway, Southfield,MI,48034 +-83.13311,42.45806,"DD/BR [drivethru-no] [wifi-yes]-Ferndale,MI",22451 Woodward Avenue, Ferndale,MI,48220 +-83.085678,42.505138,"DD/BR [drivethru-yes] [wifi-yes]-Madison Heights,MI",28875 Dequindre Rd, Madison Heights,MI,48071 +-83.16638,42.53297,"DD/BR [drivethru-yes] [wifi-no]-Royal Oak,MI",1700 W 14 Mile Road, Royal Oak,MI,48073 +-85.647824,44.739086,"DD [drivethru-no] [wifi-no]-Traverse City,MI",3575 N US Hwy 31 S [Great Wolf Lodge], Traverse City,MI,49684 +-94.596505,38.944056,"DD [drivethru-yes] [wifi-no]-Kansas City,MO",10143 Wornall Rd, Kansas City,MO,64114 +-94.379212,39.075997,"DD [drivethru-yes] [wifi-yes]-Independence,MO",2400 South Hwy 291, Independence,MO,64057 +-94.576901,39.266485,"DD [drivethru-yes] [wifi-yes]-Kansas City,MO",9561 N McGee St, Kansas City,MO,64155 +-94.803178,39.778296,"DD [drivethru-yes] [wifi-yes]-Saint Joseph,MO",1206 N Belt Hwy, Saint Joseph,MO,64506 +-90.583356,38.605686,"DD [drivethru-yes] [wifi-yes]-Ellisville,MO",15881 Fountain Plaza Dr, Ellisville,MO,63017 +-90.49206,38.77267,"DD [drivethru-yes] [wifi-yes]-Saint Charles,MO",1211 S 5th St, Saint Charles,MO,63301 +-91.926044,38.959725,"DD [drivethru-no] [wifi-no]-Kingdom City,MO",3304 Gold Ave [Petro TC], Kingdom City,MO,65262 +-90.406877,38.561432,"DD [drivethru-yes] [wifi-yes]-Kirkwood,MO",1208 S Kirkwood Rd, Kirkwood,MO,63122 +-90.376907,38.605346,"DD [drivethru-yes] [wifi-yes]-Saint Louis,MO",9860 Manchester Rd, Saint Louis,MO,63119 +-90.341828,38.794304,"DD [drivethru-yes] [wifi-no]-Florissant,MO",8471A N Lindbergh Blvd, Florissant,MO,63031 +-90.48039,38.596118,"DD [drivethru-yes] [wifi-no]-Ballwin,MO",13721 Manchester Rd, Ballwin,MO,63011 +-90.364748,38.742063,"DD/BR [drivethru-no] [wifi-no]-Saint Louis,MO",10701 Lambert Intl Blvd [Terminal B], Saint Louis,MO,63145 +-90.304057,38.487995,"DD [drivethru-yes] [wifi-no]-Saint Louis,MO",4220 Telegraph Rd, Saint Louis,MO,63129 +-90.367116,38.743305,"DD/BR [drivethru-no] [wifi-no]-Saint Louis,MO",10701 Lambert Intl Blvd [Terminal A], Saint Louis,MO,63145 +-90.382622,34.690182,"DD [drivethru-no] [wifi-no]-Robinsonville,MS",13615 Old Highway 61N [Harrah's Tunica], Robinsonville,MS,38664 +-89.989901,34.964458,"DD [drivethru-yes] [wifi-yes]-Southaven,MS",7140 Airways Blvd, Southaven,MS,38671 +-90.135142,32.26831,"DD [drivethru-yes] [wifi-yes]-Pearl,MS",403 Riverwind Dr, Pearl,MS,39208 +-88.99291,30.400256,"DD [drivethru-yes] [wifi-yes]-Biloxi,MS",2655 Pass Rd [Ste 12], Biloxi,MS,39531 +-78.997354,35.135575,"DD [drivethru-no] [wifi-no]-Fort Bragg,NC",Bldg C5934 Ardennes St Fort Bragg, Fort Bragg,NC,28310 +-79.660433,36.061481,"DD [drivethru-no] [wifi-no]-McLeansville,NC",907 Knox Rd [WilcoHess], McLeansville,NC,27301 +-81.230223,35.675328,"DD [drivethru-no] [wifi-no]-Newton,NC",1305 Northwest Blvd [WilcoHess], Newton,NC,28658 +-77.832242,35.862599,"DD [drivethru-no] [wifi-no]-Sharpsburg,NC",4221 S Hathaway Blvd [WilcoHess], Sharpsburg,NC,27878 +-77.974227,34.740248,"DD [drivethru-no] [wifi-no]-Wallace,NC",5706 S NC 41 Hwy [WilcoHess], Wallace,NC,28466 +-78.292667,35.520419,"DD [drivethru-yes] [wifi-yes]-Selma,NC",446 US Hwy 70 E, Selma,NC,27576 +-78.42347,35.446159,"DD [drivethru-no] [wifi-no]-Four Oaks,NC",6127 US 301 S [Hess], Four Oaks,NC,27524 +-78.322311,35.516525,"DD [drivethru-yes] [wifi-yes]-Smithfield,NC",1006 N Brightleaf Blvd [Suite # 100], Smithfield,NC,27577 +-78.327126,35.505672,"DD [drivethru-no] [wifi-no]-Smithfield,NC",1669 E Market St [Hess], Smithfield,NC,27577 +-79.056619,35.914639,"DD [drivethru-no] [wifi-no]-Chapel Hill,NC",1213 Airport Rd [WilcoHess], Chapel Hill,NC,27514 +-78.726683,35.907402,"DD [drivethru-yes] [wifi-yes]-Raleigh,NC",13240 Strickland Rd, Raleigh,NC,27613 +-78.543358,35.776882,"DD [drivethru-yes] [wifi-yes]-Raleigh,NC",4415 Falls Of The Neuse Rd, Raleigh,NC,27609 +-78.601219,35.816708,"DD/BR [drivethru-yes] [wifi-yes]-Raleigh,NC",2727 Capital Blvd, Raleigh,NC,27604 +-78.541428,35.875028,"DD [drivethru-no] [wifi-no]-Raleigh,NC",7413 Louisburg Rd [Hess], Raleigh,NC,27616 +-78.686125,35.941321,"DD [drivethru-no] [wifi-no]-Raleigh,NC",10920 Creedmoor Rd [Hess], Raleigh,NC,27615 +-78.68093,35.897788,"DD [drivethru-yes] [wifi-yes]-Raleigh,NC",8111 Creedmoor Rd, Raleigh,NC,27613 +-78.666832,35.787552,"DD/BR [drivethru-no] [wifi-yes]-Raleigh,NC",2316 Hillsborough St [Ste 106], Raleigh,NC,27607 +-78.62075,35.803883,"DD [drivethru-no] [wifi-yes]-Raleigh,NC",1801 Capital Blvd, Raleigh,NC,27604 +-78.641948,35.792191,"DD [drivethru-no] [wifi-no]-Raleigh,NC",850 Capital Blvd [WilcoHess], Raleigh,NC,27603 +-78.689369,35.78458,"DD [drivethru-yes] [wifi-yes]-Raleigh,NC",3817 Western Blvd, Raleigh,NC,27606 +-78.744957,35.88744,"DD/BR [drivethru-yes] [wifi-yes]-Raleigh,NC",8710 Glenwood Ave [Ste 100], Raleigh,NC,27617 +-78.586098,35.720993,"DD [drivethru-no] [wifi-no]-Garner,NC",4541 Jones Sausage Rd [WilcoHess], Garner,NC,27529 +-79.148193,35.461678,"DD [drivethru-no] [wifi-no]-Sanford,NC",2224 South Horner Blvd [Hess], Sanford,NC,27330 +-78.561209,35.60887,"DD [drivethru-no] [wifi-no]-Garner,NC",5170 NC 42 Northwest [Hess], Garner,NC,27529 +-77.930763,35.36734,"DD [drivethru-no] [wifi-no]-Goldsboro,NC",420 E New Hope Rd [WilcoHess], Goldsboro,NC,27534 +-79.46418,35.7332,"DD [drivethru-no] [wifi-no]-Siler City,NC",320 East 11th St US 64 [WilcoHess], Siler City,NC,27344 +-78.035345,35.327919,"DD [drivethru-no] [wifi-no]-Dudley,NC",2775 US Hwy 117 S [WilcoHess], Dudley,NC,28333 +-77.990445,35.384036,"DD [drivethru-no] [wifi-no]-Goldsboro,NC",400 E Ash St [WilcoHess], Goldsboro,NC,27530 +-78.010662,35.364118,"DD [drivethru-no] [wifi-no]-Goldsboro,NC",1221 US Hwy 117 Byp S [WilcoHess], Goldsboro,NC,27530 +-78.581284,35.725163,"DD [drivethru-no] [wifi-no]-Garner,NC",4020 Jones Sausage Rd [WilcoHess], Garner,NC,27529 +-78.561096,35.608608,"DD [drivethru-no] [wifi-no]-Garner,NC",5179 NC Highway 42 W [WilcoHess], Garner,NC,27529 +-78.650116,35.735741,"DD/BR [drivethru-yes] [wifi-yes]-Raleigh,NC",3209 S Wilmington St, Raleigh,NC,27603 +-78.740944,35.506791,"DD [drivethru-no] [wifi-no]-Angier,NC",24 S Raleigh St [WilcoHess], Angier,NC,27501 +-78.8423,35.957371,"DD [drivethru-no] [wifi-no]-Durham,NC",1400 S Miami Blvd, Durham,NC,27703 +-78.014685,35.388106,"DD [drivethru-no] [wifi-no]-Goldsboro,NC",1501 US Hwy 70 W [WilcoHess], Goldsboro,NC,27530 +-78.767899,35.594101,"DD/BR [drivethru-yes] [wifi-yes]-Fuquay Varina,NC",1450 N Main Street [Lakestone Shopping Center], Fuquay Varina,NC,27526 +-78.64286,35.852924,"DD/BR [drivethru-yes] [wifi-yes]-Raleigh,NC",5265 Six Forks Rd, Raleigh,NC,27609 +-78.799824,35.58503,"DD [drivethru-no] [wifi-no]-Fuquay Varina,NC",100 Broad St [WilcoHess], Fuquay Varina,NC,27526 +-78.55748,35.943604,"DD [drivethru-yes] [wifi-yes]-Raleigh,NC",13600 New Falls Of Neuse [Ste 100], Raleigh,NC,27614 +-78.481084,36.029805,"DD [drivethru-no] [wifi-no]-Youngsville,NC",130 W Main St [WilcoHess], Youngsville,NC,27596 +-78.415733,35.604145,"DD [drivethru-no] [wifi-no]-Clayton ,NC",2808 US Hwy 70 E [WilcoHess], Clayton,NC,27520 +-78.559602,35.893563,"DD/BR [drivethru-yes] [wifi-yes]-Raleigh,NC",8401 Capital Blvd, Raleigh,NC,27616 +-78.250647,35.958085,"DD [drivethru-no] [wifi-no]-Bunn,NC",425 Main St [WilcoHess], Bunn,NC,27508 +-78.46608,36.101707,"DD [drivethru-no] [wifi-no]-Franklinton,NC",3458 US 1 Hwy [Hess], Franklinton,NC,27525 +-78.902362,35.81961,"DD [drivethru-yes] [wifi-no]-Cary,NC",10030 Green Level Church Rd [Ste 800], Cary,NC,27519 +-78.847443,35.819027,"DD/BR [drivethru-yes] [wifi-yes]-Morrisville,NC",3570 Davis Dr, Morrisville,NC,27560 +-78.952354,35.917351,"DD [drivethru-yes] [wifi-yes]-Durham,NC",1125 W NC Hwy 54 [Suite 504], Durham,NC,27707 +-78.794212,35.702404,"DD [drivethru-yes] [wifi-yes]-Cary,NC",3511 Kildaire Farm Rd, Cary,NC,27518 +-78.476692,35.656441,"DD/BR [drivethru-yes] [wifi-yes]-Clayton,NC",770 Enterprise Drive, Clayton,NC,27520 +-78.944466,36.00882,"DD/BR [drivethru-yes] [wifi-yes]-Durham,NC",2608 Erwin Rd [Pavilion East Building], Durham,NC,27705 +-78.844162,35.72065,"DD/BR [drivethru-yes] [wifi-yes]-Apex,NC",800 Perry Road, Apex,NC,27502 +-78.873337,35.817089,"DD/BR [drivethru-yes] [wifi-yes]-Cary,NC",2740 State Road 55 [Suite 100], Cary,NC,27519 +-78.147608,35.582902,"DD [drivethru-no] [wifi-no]-Kenly,NC",I-95 Exit 106 [1000 Truckstop Rd Travel Plaza], Kenly,NC,27542 +-77.99972,35.584725,"DD [drivethru-no] [wifi-no]-Fremont,NC",107 Wilson Rd [WilcoHess], Fremont,NC,27830 +-78.488976,35.798492,"DD/BR [drivethru-yes] [wifi-yes]-Knightdale,NC",7137 Us Hwy 64 East, Knightdale,NC,27545 +-78.708115,34.331657,"DD [drivethru-no] [wifi-no]-Whiteville,NC",207 N JK Powell Blvd [WilcoHess], Whiteville,NC,28472 +-79.393046,35.343921,"DD [drivethru-no] [wifi-no]-Carthage,NC",3778 Hwy 15/501 [WilcoHess], Carthage,NC,28327 +-79.418815,35.149099,"DD [drivethru-no] [wifi-no]-Aberdeen,NC",1206 N Sandhills Blvd [WilcoHess], Aberdeen,NC,28315 +-78.920815,35.045928,"DD [drivethru-no] [wifi-yes]-Fayetteville,NC",2628 Raeford Rd, Fayetteville,NC,28303 +-79.754555,34.924741,"DD [drivethru-no] [wifi-no]-Rockingham,NC",1114 East Broad Ave [WilcoHess], Rockingham,NC,28379 +-78.808067,35.413071,"DD [drivethru-no] [wifi-no]-Lillington,NC",1126 N Main St [WilcoHess], Lillington,NC,27546 +-78.62286,35.314238,"DD [drivethru-no] [wifi-no]-Dunn,NC",1304 W Cumberland St [WilcoHess], Dunn,NC,28334 +-78.603378,35.302883,"DD [drivethru-no] [wifi-no]-Dunn,NC",810 E Cumberland St [Hess], Dunn,NC,28334 +-78.672447,35.411972,"DD [drivethru-no] [wifi-no]-Coats,NC",338 N McKinley St [Hess], Coats,NC,27521 +-79.250959,34.988449,"DD [drivethru-no] [wifi-no]-Raeford,NC",422 Aberdeen Rd [Hess], Raeford,NC,28376 +-79.415499,35.154242,"DD [drivethru-yes] [wifi-yes]-Aberdeen,NC",1798 N Sandhills Blvd [Ste A], Aberdeen,NC,28315 +-78.725463,34.297318,"DD [drivethru-no] [wifi-no]-Whiteville,NC",2001 S Madison St [WilcoHess], Whiteville,NC,28472 +-79.701881,34.893921,"DD [drivethru-no] [wifi-no]-Hamlet,NC",728 W Hamlet Ave [WilcoHess], Hamlet,NC,28345 +-78.878624,35.105484,"DD/BR [drivethru-yes] [wifi-yes]-Fayetteville,NC",3411 Ramsey Street [Club Plaza Shopping Center], Fayetteville,NC,28311 +-78.903601,35.0182,"DD [drivethru-no] [wifi-no]-Fayetteville,NC",2802 Owen Dr [Hess], Fayetteville,NC,28306 +-78.941929,35.044136,"DD [drivethru-no] [wifi-no]-Fayetteville,NC",3706 Raeford Rd [Hess], Fayetteville,NC,28304 +-77.850739,34.209023,"DD/BR [drivethru-yes] [wifi-yes]-Wilmington,NC",5709 Oleander Dr, Wilmington,NC,28403 +-77.920876,34.196411,"DD [drivethru-no] [wifi-yes]-Wilmington,NC",2515 S 17th St [Banberry Plaza], Wilmington,NC,28401 +-77.87944,34.244675,"DD [drivethru-yes] [wifi-yes]-Wilmington,NC",5111 Market St, Wilmington,NC,28405 +-77.346924,34.675972,"DD/BR [drivethru-yes] [wifi-yes]-Camp Lejeune,NC",1238 Birch St, Camp Lejeune,NC,28547 +-78.956187,35.043306,"DD [drivethru-no] [wifi-no]-Fayetteville,NC",4560 Raeford Rd [Hess], Fayetteville,NC,28304 +-77.894897,34.133587,"DD [drivethru-yes] [wifi-yes]-Wilmington,NC",5611 a Carolins Beach Rd, Wilmington,NC,28412 +-77.41304,34.798061,"DD [drivethru-yes] [wifi-yes]-Jacksonville,NC",433 a Western Blvd, Jacksonville,NC,28546 +-77.421054,34.74929,"DD [drivethru-no] [wifi-no]-Jacksonville,NC",1495 Burgaw Hwy [WilcoHess], Jacksonville,NC,28540 +-77.420181,34.757646,"DD [drivethru-yes] [wifi-no]-Jacksonville,NC",207 N Marine Blvd, Jacksonville,NC,28540 +-77.537573,34.477729,"DD [drivethru-no] [wifi-no]-Holly Ridge,NC",400 US Hwy 17 N [WilcoHess], Holly Ridge,NC,28445 +-77.433831,34.549345,"DD [drivethru-no] [wifi-no]-Sneads Ferry,NC",1974 NC Hwy 172 [WilcoHess], Sneads Ferrry,NC,28460 +-77.773837,34.923523,"DD [drivethru-no] [wifi-no]-Beulaville,NC",114 S Jackson St [WilcoHess], Beulaville,NC,28518 +-77.962683,34.961985,"DD [drivethru-no] [wifi-no]-Kenansville,NC",204 N Main St [WilcoHess], Kenansville,NC,28349 +-79.471678,35.161946,"DD [drivethru-no] [wifi-no]-Aberdeen,NC",1760 NC Hwy 5 [WilcoHess], Aberdeen,NC,28315 +-78.129094,34.993677,"DD [drivethru-no] [wifi-no]-Warsaw,NC",2574 W NC Hwy 24 [WilcoHess], Warsaw,NC,28398 +-78.022634,34.827479,"DD [drivethru-no] [wifi-no]-Rose Hill,NC",206 N Sycamore St [WilcoHess], Rose Hill,NC,28458 +-77.828482,34.235643,"DD [drivethru-yes] [wifi-no]-Wilmington,NC",1127 Military Cutoff Rd, Wilmington,NC,28405 +-81.797256,36.145878,"DD [drivethru-no] [wifi-no]-Banner Elk,NC",10656 NC Hwy 105 S [WilcoHess], Banner Elk,NC,28604 +-81.516159,35.916337,"DD [drivethru-no] [wifi-no]-Lenoir,NC",502 Wilkesboro Blvd SE [WilcoHess], Lenoir,NC,28645 +-82.403843,35.297674,"DD [drivethru-yes] [wifi-yes]-Flat Rock,NC",754 Upward Rd, Flat Rock,NC,28731 +-82.523933,35.489834,"DD [drivethru-yes] [wifi-yes]-Asheville,NC",1975 Hendersonville Rd, Asheville,NC,28803 +-82.636673,35.560432,"DD [drivethru-yes] [wifi-yes]-Asheville,NC",305 Smokey Park Hwy, Asheville,NC,28806 +-81.18956,35.719883,"DD [drivethru-no] [wifi-no]-Conover,NC",1343 Rock Barn Rd [WilcoHess], Conover,NC,28613 +-81.65767,35.723434,"DD [drivethru-no] [wifi-no]-Morganton,NC",2205 S Sterling St [WilcoHess], Morganton,NC,28655 +-81.711441,35.735802,"DD [drivethru-no] [wifi-no]-Morganton,NC",1000 W Union St [WilcoHess], Morganton,NC,28655 +-83.212995,35.374496,"DD [drivethru-yes] [wifi-yes]-Sylva,NC",89 E Main St, Sylva,NC,28779 +-81.310005,35.791576,"DD [drivethru-no] [wifi-no]-Hickory,NC",4431 N Center St [WilcoHess], Hickory,NC,28601 +-81.335609,35.734951,"DD [drivethru-no] [wifi-no]-Hickory,NC",1835 64/70 Southeast [WilcoHess], Hickory,NC,28603 +-81.3349,35.749069,"DD [drivethru-yes] [wifi-yes]-Hickory,NC",1205 2nd St NE, Hickory,NC,28601 +-81.365082,35.733692,"DD [drivethru-no] [wifi-no]-Hickory,NC",140 US 321 NW [WilcoHess], Hickory,NC,28603 +-81.431995,35.811168,"DD [drivethru-no] [wifi-no]-Granite Falls,NC",3950 Hickory Blvd [WilcoHess], Granite Falls,NC,28630 +-81.677927,36.134483,"DD [drivethru-no] [wifi-no]-Blowing Rock,NC",7206 Valley Blvd [WilcoHess], Blowing Rock,NC,28605 +-81.373405,35.685078,"DD [drivethru-no] [wifi-no]-Hickory,NC",3131 Hwy 127 S [WilcoHess], Hickory,NC,28602 +-82.535398,35.548962,"DD [drivethru-no] [wifi-no]-Asheville,NC",648 Hendersonville Rd [WilcoHess], Asheville,NC,28803 +-81.658783,36.219273,"DD [drivethru-no] [wifi-no]-Boone,NC",1033 E King St [WilcoHess], Boone,NC,28607 +-81.657166,36.219887,"DD [drivethru-no] [wifi-no]-Boone,NC",1155 E King St [WilcoHess], Boone,NC,28607 +-81.362633,35.722256,"DD [drivethru-no] [wifi-no]-Hickory,NC",1269 Hwy 70 SW [WilcoHess], Hickory,NC,28602 +-81.286438,35.752094,"DD [drivethru-no] [wifi-no]-Hickory,NC",2418 Springs Road Ne [WilcoHess], Hickory,NC,28603 +-82.55497,35.61311,"DD [drivethru-no] [wifi-yes]-Asheville,NC",411 Merrimon Ave, Asheville,NC,28804 +-82.54512,35.570484,"DD [drivethru-no] [wifi-yes]-Asheville,NC",779 Biltmore Ave, Asheville,NC,28803 +-81.856415,35.313152,"DD [drivethru-no] [wifi-no]-Forest City,NC",523 W Main St [WilcoHess], Forest City,NC,28043 +-80.608833,35.462002,"DD [drivethru-no] [wifi-no]-Kannapolis,NC",2401 S Cannon Blvd [WilcoHess], Kannapolis,NC,29083 +-80.170963,35.344783,"DD/BR [drivethru-no] [wifi-no]-Albermarle,NC",716 NC 24/27 Byp E, Albemarle,NC,28001 +-80.203217,35.338436,"DD [drivethru-no] [wifi-no]-Albermarle,NC",641 Hwy 24 [WilcoHess], Albermarle,NC,28001 +-80.193268,35.382069,"DD [drivethru-no] [wifi-no]-Albermarle,NC",1702 N First St [WilcoHess], Albermarle,NC,28001 +-80.199448,35.395443,"DD [drivethru-no] [wifi-no]-Albermarle,NC",2325 US Hwy 52 N [WilcoHess], Albermarle,NC,28001 +-80.856102,35.411301,"DD/BR [drivethru-yes] [wifi-yes]-Huntersville,NC",10310 Wilmington St, Huntersville,NC,28078 +-80.610397,35.529888,"DD [drivethru-no] [wifi-no]-Kannapolis,NC",2803 N Cannon Blvd [WilcoHess], Kannapolis,NC,28083 +-80.501717,35.251381,"DD [drivethru-no] [wifi-no]-Midland,NC",4350 Hwy 27 [WilcoHess], Midland,NC,28107 +-80.655571,35.079449,"DD/BR [drivethru-yes] [wifi-yes]-Indian Trail,NC",14055 Hwy 74 West, Indian Trail,NC,28079 +-81.127045,35.242435,"DD/BR [drivethru-yes] [wifi-yes]-Gastonia,NC",2302 S New Hope Rd, Gastonia,NC,28054 +-81.188065,35.288784,"DD [drivethru-yes] [wifi-yes]-Gastonia,NC",2165 N Chester St, Gastonia,NC,28052 +-81.199333,35.226082,"DD [drivethru-no] [wifi-no]-Gastonia,NC",2907 York Rd [WilcoHess], Gastonia,NC,28052 +-80.719957,35.142331,"DD [drivethru-no] [wifi-yes]-Matthews,NC",9005 E Independence Blvd, Matthews,NC,28105 +-80.87677,35.815716,"DD/BR [drivethru-yes] [wifi-yes]-Statesville,NC",241 Turnersburg Hwy, Statesville,NC,28625 +-81.030724,35.252224,"DD [drivethru-yes] [wifi-no]-Belmont,NC",6751 E Wilkinson Blvd [Ste 39], Belmont,NC,28012 +-80.686745,35.275612,"DD [drivethru-no] [wifi-no]-Concord,NC",541 Warren Coleman Blvd [WilcoHess], Concord,NC,28025 +-80.611794,35.409676,"DD [drivethru-no] [wifi-no]-Concord,NC",475 Hwy 29 N [WilcoHess], Concord,NC,28027 +-81.221866,35.478811,"DD [drivethru-yes] [wifi-yes]-Boger City,NC",2103 E Main St, Boger City,NC,28092 +-80.740717,35.297089,"DD [drivethru-no] [wifi-yes]-Charlotte,NC",8509 University City Blvd, Charlotte,NC,28213 +-80.769829,35.340679,"DD/BR [drivethru-no] [wifi-yes]-Charlotte,NC",3014 Driwood Ct [Prosperity Pointe], Charlotte,NC,28269 +-80.696274,35.060268,"DD/BR [drivethru-no] [wifi-yes]-Matthews,NC",3114 Fincher Farm Rd [Ste 100], Matthews,NC,28105 +-80.062073,34.966282,"DD [drivethru-no] [wifi-no]-Wadesboro,NC",1006 E Caswell St [WilcoHess], Wadesboro,NC,28170 +-80.876152,35.595909,"DD/BR [drivethru-yes] [wifi-yes]-Mooresville,NC",651 River Hwy, Mooresville,NC,28117 +-80.861229,35.555588,"DD/BR [drivethru-yes] [wifi-yes]-Mooresville,NC",842 Williamson Rd, Mooresville,NC,28117 +-80.519977,35.613311,"DD [drivethru-no] [wifi-no]-Salisbury,NC",985 Peeler Rd [WilcoHess], Salisbury,NC,28147 +-80.513756,35.637478,"DD [drivethru-no] [wifi-no]-Salisbury,NC",3410 S Main St [WilcoHess], Salisbury,NC,28147 +-80.371048,34.985947,"DD [drivethru-no] [wifi-no]-Marshville,NC",308 W Marshville Blvd [WilcoHess], Marshville,NC,28103 +-80.731483,35.324066,"DD [drivethru-no] [wifi-no]-Charlotte,NC",10207 N Tryon St [WilcoHess], Charlotte,NC,28262 +-80.939056,35.134541,"DD/BR [drivethru-yes] [wifi-yes]-Charlotte,NC",9033 S Tryon St, Charlotte,NC,28273 +-80.729202,35.202648,"DD/BR [drivethru-yes] [wifi-yes]-Charlotte,NC",6763 Albemarle Rd, Charlotte,NC,28212 +-80.637215,35.399601,"DD [drivethru-no] [wifi-no]-Concord,NC",10175 Weddington Rd Ext, Concord,NC,28027 +-80.657539,35.173183,"DD/BR [drivethru-yes] [wifi-yes]-Mint Hill,NC",7001 Matthews Mint Hill Rd, Mint Hill,NC,28227 +-80.850539,35.54097,"DD [drivethru-no] [wifi-no]-Charlotte,NC",10925 University City Blvd [WilcoHess], Charlotte,NC,28123 +-80.859948,35.087566,"DD/BR [drivethru-no] [wifi-yes]-Charlotte,NC",8334 Pineville Matthews Rd [Ste 101], Charlotte,NC,28226 +-80.851883,35.030506,"DD/BR [drivethru-no] [wifi-yes]-Charlotte,NC",16131 Lancaster Hwy [Hunter's Crossing], Charlotte,NC,28277 +-80.854819,35.671495,"DD [drivethru-no] [wifi-no]-Troutman,NC",1006 Charlotte Hwy [WilcoHess], Troutman,NC,28166 +-80.875877,35.167225,"DD [drivethru-yes] [wifi-no]-Charlotte,NC",5133 South Blvd, Charlotte,NC,28217 +-80.795937,35.290249,"DD/BR [drivethru-yes] [wifi-yes]-Charlotte,NC",2037 W Sugar Creek Rd, Charlotte,NC,28262 +-80.773071,35.262417,"DD/BR [drivethru-yes] [wifi-yes]-Charlotte,NC",5605 N Tryon St, Charlotte,NC,28213 +-81.492049,35.283878,"DD [drivethru-yes] [wifi-no]-Shelby,NC",1698 E Marion St, Shelby,NC,28150 +-80.499416,35.665108,"DD/BR [drivethru-yes] [wifi-yes]-Salisbury,NC",715 Jake Alexander Blvd W, Salisbury,NC,28147 +-80.857666,35.303944,"DD/BR [drivethru-yes] [wifi-yes]-Charlotte,NC",5029 Beatties Ford Rd, Charlotte,NC,28216 +-80.844887,35.232296,"DD/BR [drivethru-no] [wifi-yes]-Charlotte,NC",231 N Graham St [Ste B], Charlotte,NC,28202 +-80.857918,35.211327,"DD/BR [drivethru-no] [wifi-no]-Charlotte,NC",1831 South Blvd, Charlotte,NC,28203 +-80.835831,35.209126,"DD/BR [drivethru-yes] [wifi-yes]-Charlotte,NC",701 S Kings Dr, Charlotte,NC,28204 +-83.304807,35.46983,"DD [drivethru-no] [wifi-no]-Cherokee,NC",777 Casino Dr [Harrah's Casino], Cherokee,NC,28719 +-80.069567,36.125669,"DD [drivethru-no] [wifi-no]-Kernersville,NC",401 N Main St [WilcoHess], Kernersville,NC,27284 +-80.087609,36.111748,"DD [drivethru-no] [wifi-no]-Kernersville,NC",826 S Main St [WilcoHess], Kernersville,NC,27284 +-79.996223,36.09366,"DD [drivethru-no] [wifi-no]-Colfax,NC",3110 Sandy Ridge Rd [WilcoHess], Colfax,NC,27235 +-80.376209,36.093597,"DD [drivethru-no] [wifi-no]-Winston Salem,NC",4301 Styers Ferry Rd [WilcoHess], Winston Salem,NC,27104 +-80.332797,36.165981,"DD [drivethru-no] [wifi-no]-Winston Salem,NC",4019 Reynolda Rd [WilcoHess], Winston Salem,NC,27106 +-80.317445,36.15369,"DD [drivethru-no] [wifi-no]-Winston Salem,NC",3598 Yadkinville Rd [WilcoHess], Winston Salem,NC,27106 +-80.017159,35.983253,"DD/BR [drivethru-yes] [wifi-yes]-High Point,NC",274 Eastchester Dr, High Point,NC,27262 +-80.000465,35.920634,"DD [drivethru-no] [wifi-no]-High Point,NC",801 W Fairfield Rd [WilcoHess], High Point,NC,27263 +-79.937343,36.104572,"DD [drivethru-no] [wifi-no]-Greensboro,NC",6415 Bryant Blvd [Piedmont Traid Intl Airport], Greensboro,NC,27409 +-79.935497,36.106013,"DD [drivethru-no] [wifi-no]-Greensboro,NC",6415 Bryant Blvd [W Market St] [Piedmont Traid Intl Airport], Greensboro,NC,27409 +-81.145309,36.178051,"DD [drivethru-no] [wifi-no]-North Wilkesboro,NC",1602 2nd St [WilcoHess], North Wilkesboro,NC,28659 +-80.820328,36.239136,"DD [drivethru-no] [wifi-no]-Jonesville,NC",1648 NC Hwy 67 [WilcoHess], Jonesville,NC,28642 +-79.736561,35.294527,"DD [drivethru-no] [wifi-no]-Candor,NC",801 NC Hwy 211 E [WilcoHess], Candor,NC,27229 +-80.611888,36.486463,"DD [drivethru-no] [wifi-no]-Mount Airy,NC",1012 Rockford St [WilcoHess], Mount Airy,NC,27030 +-80.623283,36.499756,"DD [drivethru-no] [wifi-no]-Mount Airy,NC",800 W Pine St [WilcoHess], Mount Airy,NC,27030 +-80.239368,36.047041,"DD [drivethru-no] [wifi-no]-Winston Salem,NC",3600 S Main St [WilcoHess], Winston Salem,NC,27127 +-80.258324,36.062611,"DD/BR [drivethru-yes] [wifi-yes]-Winston Salem,NC",2561 Peters Creek Pkwy, Winston Salem,NC,27127 +-80.277702,36.150742,"DD/BR [drivethru-yes] [wifi-yes]-Winston Salem,NC",7815 N Point Blvd, Winston Salem,NC,27106 +-80.585709,35.919731,"DD [drivethru-yes] [wifi-yes]-Mocksville,NC",1452 Yadkinville Rd [Ste 101], Mocksville,NC,27028 +-80.259006,36.125071,"DD [drivethru-no] [wifi-no]-Winston Salem,NC",2700 University Pkwy [WilcoHess], Winston Salem,NC,27105 +-80.233049,36.19136,"DD [drivethru-no] [wifi-no]-Winston Salem,NC",566 Old Hollow Rd [WilcoHess], Winston Salem,NC,27105 +-80.385249,36.036349,"DD [drivethru-yes] [wifi-yes]-Clemmons,NC",2385 Lewisville Clemmons Rd, Clemmons,NC,27012 +-80.62072,36.224487,"DD [drivethru-no] [wifi-no]-East Bend,NC",104 NC Hwy 67 [WilcoHess], East Bend,NC,27018 +-81.196186,36.150302,"DD [drivethru-no] [wifi-no]-Wilkesboro,NC",1844 Hwy 421 B [WilcoHess], Wilkesboro,NC,28697 +-81.138533,36.168608,"DD [drivethru-no] [wifi-no]-North Wilkesboro,NC",701 2nd St [WilcoHess], North Wilkesboro,NC,28659 +-81.192419,36.150162,"DD [drivethru-no] [wifi-no]-Wilkesboro,NC",1801 W Hwy 421 [Walmart], Wilkesboro,NC,28697 +-79.820598,35.687812,"DD [drivethru-no] [wifi-no]-Asheboro,NC",509 W Dixie Dr [WilcoHess], Asheboro,NC,27205 +-79.811663,35.713996,"DD [drivethru-no] [wifi-no]-Asheboro,NC",534 N Fayetteville St [WilcoHess], Asheboro,NC,27203 +-80.850914,36.264431,"DD [drivethru-no] [wifi-no]-Elkin,NC",1200 N Bridge St [WilcoHess], Elkin,NC,28621 +-77.713402,34.365131,"DD [drivethru-no] [wifi-no]-Hampstead,NC",14477 US Hwy 17 [WilcoHess], Hampstead,NC,28443 +-80.827358,36.224145,"DD [drivethru-no] [wifi-no]-Jonesville,NC",411 N Bridge St [WilcoHess], Jonesville,NC,28642 +-79.479706,34.774971,"DD [drivethru-no] [wifi-no]-Laurinburg,NC",1205 Church St [WilcoHess], Laurinburg,NC,28352 +-79.470421,34.759804,"DD [drivethru-no] [wifi-no]-Laurinburg,NC",1425 S Main St [WilcoHess], Laurinburg,NC,28352 +-77.879707,34.439175,"DD [drivethru-no] [wifi-no]-Rocky Point,NC",8221 US Hwy 117 S [WilcoHess], Rocky Point,NC,28457 +-80.141678,36.296181,"DD [drivethru-no] [wifi-no]-Walnut Cove,NC",5140 NC Hwy 89 East [WilcoHess], Walnut Cove,NC,27052 +-79.352006,36.070108,"DD [drivethru-no] [wifi-no]-Haw River,NC",1044 Jimmie Kerr Rd [WilcoHess], Haw River,NC,27258 +-80.082089,35.88362,"DD [drivethru-no] [wifi-no]-Thomasville,NC",407 Randolph St [WilcoHess], Thomasville,NC,27360 +-79.727547,36.087284,"DD [drivethru-yes] [wifi-yes]-Greensboro,NC",3602 E Wendover Ave, Greensboro,NC,27405 +-80.706543,36.391918,"DD [drivethru-no] [wifi-no]-Dobson,NC",912 E Atkins St [WilcoHess], Dobson,NC,27017 +-81.125084,36.508227,"DD [drivethru-no] [wifi-no]-Sparta,NC",306 N Main St [WilcoHess], Sparta,NC,28675 +-80.488374,36.375221,"DD [drivethru-no] [wifi-no]-Pilot Mountain,NC",818 S Key St [WilcoHess], Pilot Mountain,NC,27041 +-80.82888,36.279202,"DD [drivethru-no] [wifi-no]-Elkin,NC",626 CC Camp Rd [WilcoHess], Elkin,NC,28621 +-79.794159,36.088039,"DD [drivethru-no] [wifi-yes]-Greensboro,NC",337 W Wendover Ave, Greensboro,NC,27408 +-79.844376,36.062031,"DD [drivethru-yes] [wifi-yes]-Greensboro,NC",811 S Holden Rd, Greensboro,NC,27407 +-80.316982,36.118369,"DD [drivethru-yes] [wifi-yes]-Winston Salem,NC",3475 Robinhood Rd, Winston Salem,NC,27106 +-79.869241,36.06037,"DD [drivethru-no] [wifi-no]-Greensboro,NC",3610 W Wendover Ave [WilcoHess], Greensboro,NC,27407 +-79.83004,36.119824,"DD [drivethru-no] [wifi-no]-Greensboro,NC",3800 Lawndale Dr [WilcoHess], Greensboro,NC,27455 +-80.248181,35.828225,"DD [drivethru-no] [wifi-no]-Lexington,NC",537 N Main St [WilcoHess], Lexington,NC,27292 +-80.263289,35.813734,"DD [drivethru-no] [wifi-no]-Lexington,NC",19 Cotton Grove Rd [WilcoHess], Lexington,NC,27292 +-81.490555,36.404095,"DD [drivethru-no] [wifi-no]-West Jefferson,NC",326 E Second St [Hwy 221], West Jefferson,NC,28694 +-79.428851,36.079619,"DD [drivethru-no] [wifi-no]-Burlington,NC",1407 Maple Ave [WilcoHess], Burlington,NC,27215 +-79.430336,36.088509,"DD [drivethru-no] [wifi-no]-Burlington,NC",653 E Webb Ave [WilcoHess], Burlington,NC,27217 +-79.47916,36.080957,"DD [drivethru-no] [wifi-yes]-Burlington,NC",2526 S Church St, Burlington,NC,27215 +-79.224044,36.076731,"DD [drivethru-no] [wifi-no]-Mebane,NC",500 Buckhorn Rd [Petro Travel Plaza], Mebane,NC,27302 +-77.930604,35.752724,"DD [drivethru-yes] [wifi-yes]-Wilson,NC",2113 Nash St NW, Wilson,NC,27896 +-77.030454,35.545924,"DD [drivethru-no] [wifi-no]-Washington,NC",1345 John Small Ave [WilcoHess], Washington,NC,27889 +-77.09682,35.586764,"DD [drivethru-no] [wifi-no]-Washington,NC",2532 W 5th St [WilcoHess], Washington,NC,27889 +-77.821495,35.959572,"DD [drivethru-yes] [wifi-no]-Rocky Mount,NC",2120 Stone Rose Dr, Rocky Mount,NC,27804 +-77.053051,35.55865,"DD [drivethru-no] [wifi-no]-Washington,NC",600 W 15th St [WilcoHess], Washington,NC,27889 +-76.626467,35.552129,"DD [drivethru-no] [wifi-no]-Belhaven,NC",550 US Hwy 264 Byp [WilcoHess], Belhaven,NC,27810 +-76.632822,35.548158,"DD [drivethru-no] [wifi-no]-Belhaven,NC",835 W Main St [WilcoHess], Belhaven,NC,27810 +-77.092404,35.519246,"DD [drivethru-no] [wifi-no]-Chocowinity,NC",2901 US Hwy 17 S [WilcoHess], Chocowinity,NC,27817 +-76.640235,34.729266,"DD [drivethru-yes] [wifi-yes]-Beaufort,NC",1748 Live Oak St, Beaufort,NC,28516 +-77.53295,35.894946,"DD [drivethru-no] [wifi-no]-Tarboro,NC",111 N Main St [WilcoHess], Tarboro,NC,27886 +-77.546183,35.91544,"DD [drivethru-no] [wifi-no]-Tarboro,NC",2256 N Main St [WilcoHess], Tarboro,NC,27886 +-77.294816,35.972534,"DD [drivethru-no] [wifi-no]-Oak City,NC",303 N NC Hwy 125 [WilcoHess], Oak City,NC,27857 +-76.247466,35.918322,"DD [drivethru-no] [wifi-no]-Columbia,NC",883 US Hwy 64 E [WilcoHess], Columbia,NC,27925 +-77.254204,35.825555,"DD [drivethru-no] [wifi-no]-Robersonville,NC",109 W Academy St [WilcoHess], Robersonville,NC,27871 +-76.94351,35.99345,"DD [drivethru-no] [wifi-no]-Windsor,NC",105 E Water St [WilcoHess], Windsor,NC,27983 +-76.72539,35.86608,"DD [drivethru-no] [wifi-no]-Plymouth,NC",630 US Hwy 64 E [WilcoHess], Plymouth,NC,27962 +-76.756096,35.847532,"DD [drivethru-no] [wifi-no]-Plymouth,NC",2025 US Hwy 64 W [WilcoHess], Plymouth,NC,27962 +-76.727566,35.8653,"DD [drivethru-no] [wifi-no]-Plymouth,NC",1109 US Hwy 64 E [WilcoHess], Plymouth,NC,27962 +-77.070732,35.841231,"DD [drivethru-no] [wifi-no]-Williamston,NC",305 West Blvd [WilcoHess], Williamston,NC,27892 +-77.049735,35.848963,"DD [drivethru-no] [wifi-no]-Williamston,NC",800 East Blvd [WilcoHess], Williamston,NC,27892 +-77.05665,35.850117,"DD [drivethru-no] [wifi-no]-Williamston,NC",304 Washington St [WilcoHess], Williamston,NC,27892 +-77.051179,35.845343,"DD [drivethru-no] [wifi-no]-Williamston,NC",605 East Blvd [WilcoHess], Williamston,NC,27892 +-77.090811,34.680443,"DD [drivethru-yes] [wifi-yes]-Cedar Point,NC",851 Cedar Point Blvd, Cedar Point,NC,28584 +-77.285992,35.583622,"DD [drivethru-no] [wifi-no]-Greenville,NC",5068 NC Hwy 33 E [WilcoHess], Greenville,NC,27858 +-77.349275,35.564927,"DD [drivethru-no] [wifi-no]-Greenville,NC",3805 Charles Blvd [WilcoHess], Greenville,NC,27858 +-77.394518,35.573965,"DD [drivethru-no] [wifi-no]-Greenville,NC",502 Greenville Blvd SW [WilcoHess], Greenville,NC,27834 +-77.346254,35.590592,"DD [drivethru-no] [wifi-no]-Greenville,NC",1601 Greenville Blvd SE [WilcoHess], Greenville,NC,27858 +-76.978979,36.276361,"DD [drivethru-no] [wifi-no]-Ahoskie,NC",1000 E Memorial Dr [WilcoHess], Ahoskie,NC,27910 +-76.990136,36.287742,"DD [drivethru-no] [wifi-no]-Ahoskie,NC",520 Main St W [WilcoHess], Ahoskie,NC,27910 +-78.879891,36.00369,"DD [drivethru-no] [wifi-no]-Durham,NC",803 E Geer St [WilcoHess], Durham,NC,27704 +-77.592615,35.581202,"DD [drivethru-no] [wifi-no]-Farmville,NC",8491 East Marlboro Rd [WilcoHess], Farmville,NC,27828 +-77.445451,35.632848,"DD [drivethru-no] [wifi-no]-Greenville,NC",3519 N Hwy 43 [WilcoHess], Greenville,NC,27834 +-80.209909,36.056068,"DD [drivethru-no] [wifi-no]-Winston Salem,NC",3331 Thomasville Rd [WilcoHess], Winston Salem,NC,27107 +-77.661076,35.440781,"DD [drivethru-no] [wifi-no]-Snow Hill,NC",1102 Kingold Blvd [WilcoHess], Snow Hill,NC,28580 +-77.432062,35.474473,"DD [drivethru-no] [wifi-no]-Ayden,NC",170 3rd St [WilcoHess], Ayden,NC,28513 +-77.433438,35.474957,"DD [drivethru-no] [wifi-no]-Ayden,NC",138 3rd St [WilcoHess], Ayden,NC,28513 +-76.842195,35.140682,"DD [drivethru-no] [wifi-no]-Grantsboro,NC",10816 NC Hwy 55 East [WilcoHess], Grantsboro,NC,28529 +-76.637904,34.731639,"DD [drivethru-no] [wifi-no]-Beaufort,NC",1800 Live Oak St [WilcoHess], Beaufort,NC,28516 +-77.107592,35.147598,"DD [drivethru-no] [wifi-no]-New Bern,NC",370 Washington Post Rd [WilcoHess], New Bern,NC,28562 +-77.119108,35.095056,"DD [drivethru-no] [wifi-no]-New Bern,NC",4100 Martin Luther King Jr Blvd [WilcoHess], New Bern,NC,28562 +-77.015414,35.050394,"DD [drivethru-yes] [wifi-yes]-New Bern,NC",120 Taberna Way, New Bern,NC,28562 +-77.018452,35.12088,"DD [drivethru-no] [wifi-no]-Bridgeton,NC",525 D St [WilcoHess], Bridgeton,NC,28519 +-77.092728,35.131373,"DD [drivethru-no] [wifi-no]-New Bern,NC",3314 Neuse Blvd [WilcoHess], New Bern,NC,28560 +-77.072935,35.115428,"DD [drivethru-yes] [wifi-yes]-New Bern,NC",2315 Neuse Blvd, New Bern,NC,28560 +-76.810129,34.73933,"DD [drivethru-yes] [wifi-yes]-Morehead City,NC",5208 Hwy 70 W, Morehead City,NC,28557 +-77.789492,35.304536,"DD [drivethru-no] [wifi-no]-La Grange,NC",101 W Washington St [WilcoHess], La Grange,NC,28551 +-77.675446,36.365593,"DD [drivethru-yes] [wifi-yes]-Halifax,NC",10401 NC Hwy 903, Halifax,NC,27839 +-77.416425,36.389542,"DD [drivethru-no] [wifi-no]-Jackson,NC",213 E Jefferson St [WilcoHess], Jackson,NC,27845 +-77.438427,35.375144,"DD [drivethru-no] [wifi-no]-Grifton,NC",431 Queen St [WilcoHess], Grifton,NC,28530 +-77.616698,35.24386,"DD [drivethru-no] [wifi-no]-Kinston,NC",1660 NC Hwy 11/55 [WilcoHess], Kinston,NC,28504 +-77.594017,35.239765,"DD [drivethru-no] [wifi-no]-Kinston,NC",1608 US Highway 258 S [WilcoHess], Kinston,NC,28504 +-76.61228,36.07226,"DD [drivethru-no] [wifi-no]-Edenton,NC",301 Virginia Rd [WilcoHess], Edenton,NC,27932 +-75.645245,35.98675,"DD [drivethru-yes] [wifi-yes]-Nags Head,NC",2424 S Croatan Hwy, Nags Head,NC,27959 +-75.672594,35.903685,"DD [drivethru-no] [wifi-no]-Manteo,NC",202 US 64 Highway 264 [WilcoHess], Manteo,NC,27954 +-78.202845,36.444721,"DD [drivethru-no] [wifi-no]-Norlina,NC",115 US Hwy 1 S [WilcoHess], Norlina,NC,27563 +-75.817745,36.327806,"DD [drivethru-no] [wifi-no]-Corolla,NC",809 Ocean Trail, Corolla,NC,27927 +-75.875258,36.238598,"DD [drivethru-yes] [wifi-yes]-Grandy,NC",6520 Caratoke Hwy, Grandy,NC,27939 +-77.66471,36.179167,"DD [drivethru-no] [wifi-no]-Enfield,NC",113 S McDaniel St [WilcoHess], Enfield,NC,27823 +-76.909087,34.882324,"DD/BR [drivethru-yes] [wifi-yes]-Havelock,NC",113 E Main St, Havelock,NC,28532 +-77.832064,35.935597,"DD [drivethru-no] [wifi-no]-Rocky Mount,NC",1212 bethlehem Rd [WilcoHess], Rocky Mount,NC,27803 +-77.381454,35.577496,"DD [drivethru-yes] [wifi-yes]-Greenville,NC",2130B SE Greenville Blvd, Greenville,NC,27858 +-77.107429,36.442358,"DD [drivethru-no] [wifi-no]-Murfreesboro,NC",501 W Main St [WilcoHess], Murfreesboro,NC,27855 +-76.992465,34.711355,"DD [drivethru-no] [wifi-no]-Newport,NC",4275 Hwy 24, Newport,NC,28570 +-77.384789,35.52495,"DD [drivethru-no] [wifi-no]-Winterville,NC",4985 Old Tar Rd [WilcoHess], Winterville,NC,28590 +-76.314728,36.250382,"DD [drivethru-no] [wifi-no]-Elizabeth City,NC",1120 US Hwy 17 S [WilcoHess], Elizabeth City,NC,27909 +-77.432843,35.57657,"DD [drivethru-no] [wifi-no]-Greenville,NC",4000 Dickinson Ave [WilcoHess], Greenville,NC,27834 +-77.356888,35.565797,"DD [drivethru-yes] [wifi-yes]-Greenville,NC",1889 E Fire Tower Rd, Greenville,NC,27858 +-77.398409,35.572136,"DD [drivethru-no] [wifi-no]-Greenville,NC",612 Greenville Blvd SW [WilcoHess], Greenville,NC,27834 +-77.934972,35.719619,"DD [drivethru-no] [wifi-no]-Wilson,NC",1211 Ward Blvd [WilcoHess], Wilson,NC,27893 +-75.684151,36.051647,"DD [drivethru-yes] [wifi-yes]-Kill Devil Hills,NC",3210 Croatan Hwy, Kill Devil Hills,NC,27948 +-78.15238,36.397797,"DD [drivethru-no] [wifi-no]-Warrenton,NC",301 E Macon St [WilcoHess], Warrenton,NC,27589 +-76.742861,34.723912,"DD/BR [drivethru-yes] [wifi-yes]-Morehead City,NC",2908 Arendell St, Morehead City,NC,28557 +-77.159912,35.31094,"DD [drivethru-no] [wifi-no]-Vanceboro,NC",370 NC Hwy 43 [Hess], Vanceboro,NC,28586 +-77.903695,35.742689,"DD [drivethru-no] [wifi-no]-Wilson,NC",3950 Ward Blvd [WilcoHess], Wilson,NC,27893 +-77.950192,35.785848,"DD [drivethru-no] [wifi-no]-Wilson,NC",4901 NC Hwy 58 N [WilcoHess], Wilson,NC,27896 +-77.913006,35.706246,"DD [drivethru-no] [wifi-no]-Wilson,NC",6700 Ward Blvd [WilcoHess], Wilson,NC,27893 +-77.938606,35.695762,"DD [drivethru-no] [wifi-no]-Wilson,NC",2634 Hwy 301 S [WilcoHess], Wilson,NC,27893 +-76.875827,34.787374,"DD [drivethru-no] [wifi-no]-Newport,NC",6999 US Hwy 70 E [WilcoHess], Newport,NC,28570 +-96.022459,41.16937,"DD [drivethru-yes] [wifi-yes]-Papillion,NE",9910 S 71st Plaza, Papillion,NE,68046 +-96.079826,41.2057495,"DD [drivethru-yes] [wifi-yes]-Omaha,NE",10730 Q St, Omaha,NE,68127 +-96.1373978,41.2480049,"DD [drivethru-yes] [wifi-yes]-Omaha,NE",14225 Pacific St, Omaha,NE,68154 +-71.188729,44.136655,"DD [drivethru-yes] [wifi-no]-Bartlett,NH",539 NH Rt 16/302, Bartlett,NH,3838 +-71.464209,42.758365,"DD [drivethru-no] [wifi-yes]-Nashua,NH",310 Daniel Webster Hwy [Pheasant Lane Mall Unit 225], Nashua,NH,3060 +-71.486521,43.179838,"DD [drivethru-yes] [wifi-yes]-Pembroke,NH",16 Sheep Davis Rd, Pembroke,NH,3275 +-72.016953,42.817478,"DD [drivethru-yes] [wifi-yes]-Jaffrey,NH",80 Peterborough St, Jaffrey,NH,3452 +-71.53136,43.1981,"DD [drivethru-yes] [wifi-yes]-Concord,NH",121 South Main, Concord,NH,3301 +-71.64053,43.69795,"DD [drivethru-yes] [wifi-yes]-Ashland,NH",158 Main Street, Ashland,NH,3217 +-70.835548,42.966484,"DD [drivethru-yes] [wifi-yes]-North Hampton,NH",42 Lafayette Rd, North Hampton,NH,3862 +-71.179924,43.209385,"DD [drivethru-yes] [wifi-yes]-Northwood,NH",546 1st NH Tpke [Mobil Gas Station], Northwood,NH,3261 +-71.957954,43.269032,"DD [drivethru-no] [wifi-yes]-Bradford,NH",107 E Main St, Bradford,NH,3221 +-70.833886,42.945078,"DD [drivethru-no] [wifi-no]-Hampton,NH",639 Lafayette Rd [Hess], Hampton,NH,3842 +-70.838249,42.938747,"DD [drivethru-yes] [wifi-yes]-Hampton,NH",369 Lafayette Rd, Hampton,NH,3842 +-71.943405,42.892021,"DD [drivethru-no] [wifi-yes]-Peterborough,NH",213 Concord St [Rt 202 Northgate Pl], Peterborough,NH,3458 +-71.95072,42.87013,"DD [drivethru-no] [wifi-no]-Peterborough,NH",16 Wilton Road, Peterborough,NH,3458 +-72.033363,42.777954,"DD [drivethru-yes] [wifi-yes]-Rindge,NH",242 Us Route 202, Rindge,NH,3461 +-71.97927,42.78436,"DD [drivethru-yes] [wifi-yes]-Rindge,NH",1116 Cathedral Road, Rindge,NH,3461 +-71.226997,42.766659,"DD [drivethru-no] [wifi-yes]-Salem,NH",99 Rockingham Park Blvd at Rockingham Park, Salem,NH,3079 +-71.20567,42.75117,"DD [drivethru-no] [wifi-yes]-Salem,NH",380 S Broadway, Salem,NH,3079 +-71.2518,42.81947,"DD [drivethru-yes] [wifi-no]-Windham,NH",57 Rockingham Road, Windham,NH,3087 +-71.163254,43.037064,"DD [drivethru-yes] [wifi-yes]-Raymond,NH",7 Freetown Rd, Raymond,NH,3077 +-71.243976,42.804326,"DD [drivethru-no] [wifi-no]-Salem,NH",362 N Broadway [Hess], Salem,NH,3079 +-71.24979,42.7749,"DD [drivethru-no] [wifi-no]-Salem,NH",8 Stiles Road, Salem,NH,3079 +-71.448296,42.728683,"DD [drivethru-yes] [wifi-yes]-Nashua,NH",109 Daniel Webster Hwy, Nashua,NH,3060 +-71.24034,42.76533,"DD [drivethru-yes] [wifi-no]-Salem,NH",36 Lowell Road, Salem,NH,3079 +-71.227928,42.780117,"DD [drivethru-yes] [wifi-no]-Salem,NH",15 S Broadway, Salem,NH,3079 +-71.457993,42.738827,"DD [drivethru-no] [wifi-yes]-Nashua,NH",42 Main St, Nashua,NH,3060 +-71.497276,42.778534,"DD [drivethru-yes] [wifi-yes]-Nashua,NH",260 Amherst St, Nashua,NH,3063 +-71.50664,42.71476,"DD [drivethru-no] [wifi-no]-Nashua,NH",727 Manhattan Avenue, Nashua,NH,3062 +-71.441566,42.709568,"DD [drivethru-no] [wifi-yes]-Nashua,NH",242 Daniel Webster Hwy, Nashua,NH,3063 +-71.47321,42.79908,"DD [drivethru-yes] [wifi-yes]-Merrimack,NH",42 Daniel Webster Highway, Merrimack,NH,3054 +-71.461555,42.753029,"DD [drivethru-no] [wifi-yes]-Nashua,NH",300 Main St [Globe Plaza], Nashua,NH,3060 +-71.49122,42.76962,"DD [drivethru-yes] [wifi-yes]-Nashua,NH",103 Broad Street, Nashua,NH,3064 +-71.48625,42.75084,"DD [drivethru-yes] [wifi-yes]-Nashua,NH",315 W Hollis Street, Nashua,NH,3060 +-71.44957,42.76149,"DD [drivethru-yes] [wifi-yes]-Nashua,NH",119 E Hollis Street, Nashua,NH,3060 +-71.495171,42.741718,"DD [drivethru-no] [wifi-yes]-Nashua,NH",264 Main Dunstable Rd, Nashua,NH,3062 +-71.42526,42.73214,"DD [drivethru-yes] [wifi-no]-Hudson,NH",223 Lowell Road, Hudson,NH,3051 +-71.56705,42.80675,"DD [drivethru-yes] [wifi-yes]-Amherst,NH",125 Route 101A, Amherst,NH,3031 +-71.51998,42.79124,"DD [drivethru-yes] [wifi-yes]-Nashua,NH",471 Amherst Street, Nashua,NH,3063 +-71.429497,42.754494,"DD [drivethru-no] [wifi-no]-Hudson,NH",74 Lowell Rd, Hudson,NH,3051 +-71.490036,42.775391,"DD [drivethru-yes] [wifi-no]-Nashua,NH",190 Amherst St, Nashua,NH,3060 +-71.444695,42.774605,"DD [drivethru-yes] [wifi-yes]-Hudson,NH",88 Derry Rd, Hudson,NH,3051 +-71.216402,43.453033,"DD [drivethru-yes] [wifi-no]-Alton,NH",50 S Main St, Alton,NH,3809 +-71.00284,43.14865,"DD [drivethru-yes] [wifi-yes]-Lee,NH",56 Concord Road, Lee,NH,3861 +-70.920341,43.133099,"DD [drivethru-no] [wifi-yes]-Durham,NH",2 Dover Rd, Durham,NH,3824 +-72.137276,43.501926,"DD [drivethru-no] [wifi-yes]-Grantham,NH",Shaw Brook Rd [Sawyer Brook Plaza], Grantham,NH,3753 +-72.17622,43.36032,"DD [drivethru-yes] [wifi-yes]-Newport,NH",20 John Stark Highway, Newport,NH,3773 +-71.611588,44.372795,"DD [drivethru-no] [wifi-yes]-Whitefield,NH",8 Union St, Whitefield,NH,3598 +-71.551239,42.803478,"DD [drivethru-yes] [wifi-yes]-Merrimack,NH",725 Milford Rd, Merrimack,NH,3054 +-71.40485,43.24323,"DD [drivethru-yes] [wifi-yes]-Chichester,NH",6 Horse Corner Road, Chichester,NH,3258 +-71.46165,43.27441,"DD [drivethru-yes] [wifi-no]-Loudon,NH",214 Route 106 South, Loudon,NH,3307 +-71.615196,43.310909,"DD [drivethru-yes] [wifi-yes]-Boscawen,NH",154 King St, Boscawen,NH,3303 +-71.57453,44.495275,"DD [drivethru-yes] [wifi-yes]-Lancaster,NH",196 Main St, Lancaster,NH,3584 +-70.938049,42.984653,"DD [drivethru-yes] [wifi-yes]-Exeter,NH",61 Portsmouth Ave, Exeter,NH,3833 +-70.92527,42.995571,"DD [drivethru-yes] [wifi-yes]-Stratham,NH",15 Portsmouth Ave, Stratham,NH,3885 +-71.183656,44.468376,"DD [drivethru-yes] [wifi-yes]-Berlin,NH",9 Green St, Berlin,NH,3570 +-71.193541,44.425206,"DD [drivethru-no] [wifi-no]-Gorham,NH",551 Main St [Walmart], Gorham,NH,3581 +-70.859482,43.204699,"DD [drivethru-yes] [wifi-yes]-Dover,NH",196 Portland Rd Rt 4 [Mike's Gas Station], Dover,NH,3829 +-70.883415,43.218262,"DD [drivethru-yes] [wifi-yes]-Dover,NH",890 Central Ave, Dover,NH,3820 +-70.89708,43.23181,"DD [drivethru-yes] [wifi-yes]-Dover,NH",1 Long Hill Road, Dover,NH,3820 +-72.034248,44.148243,"DD [drivethru-yes] [wifi-yes]-Woodsville,NH",155 Central St, Woodsville,NH,3785 +-71.674446,44.038849,"DD [drivethru-yes] [wifi-no]-Lincoln,NH",44 Main St [Kancamanqus Hwy], Lincoln,NH,3251 +-71.728561,43.597263,"DD [drivethru-yes] [wifi-yes]-Bristol,NH",318 Summer St, Bristol,NH,3222 +-71.63485,43.619194,"DD [drivethru-yes] [wifi-yes]-New Hampton,NH",319 NH Rt 104, New Hampton,NH,3256 +-70.875,43.19951,"DD [drivethru-no] [wifi-yes]-Dover,NH",526 Central Avenue, Dover,NH,3820 +-71.362312,43.228573,"DD [drivethru-yes] [wifi-no]-Epsom,NH",1918 Dover Rd, Epsom,NH,3234 +-71.45859,43.078168,"DD [drivethru-yes] [wifi-yes]-Hooksett,NH",1560 Hooksett Rd, Hooksett,NH,3106 +-72.253654,43.646248,"DD [drivethru-yes] [wifi-no]-Lebanon,NH",96 Hanover St, Lebanon,NH,3766 +-71.643364,43.851498,"DD [drivethru-yes] [wifi-yes]-Campton,NH",3 Tower Rd [Rt 49], Campton,NH,3223 +-71.452354,42.944309,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",2297 Brown Ave [Quikava], Manchester,NH,3103 +-70.911201,43.265533,"DD [drivethru-yes] [wifi-yes]-Somersworth,NH",89 Whitehouse Rd, Somersworth,NH,3878 +-70.878716,43.239376,"DD [drivethru-yes] [wifi-yes]-Somersworth,NH",398 High St, Somersworth,NH,3878 +-71.07365,43.02834,"DD [drivethru-yes] [wifi-yes]-Epping,NH",62 Calef Highway, Epping,NH,3042 +-71.068909,43.03595,"DD [drivethru-yes] [wifi-yes]-Epping,NH",7 Exeter Rd, Epping,NH,3042 +-71.66255,42.72359,"DD [drivethru-yes] [wifi-no]-Brookline,NH",75 Route 13, Brookline,NH,3033 +-71.71549,42.84228,"DD [drivethru-yes] [wifi-yes]-Milford,NH",764 Elm, Milford,NH,3055 +-71.66296,42.83692,"DD [drivethru-yes] [wifi-no]-Milford,NH",143 Elm, Milford,NH,3055 +-71.626236,42.823711,"DD [drivethru-yes] [wifi-yes]-Milford,NH",556 Nashua St, Milford,NH,3055 +-71.44005,42.96212,"DD/BR [drivethru-yes] [wifi-yes]-Manchester,NH",1022 South Willow Street, Manchester,NH,3103 +-71.5138,42.97481,"DD [drivethru-yes] [wifi-yes]-Bedford,NH",8 White Avenue, Bedford,NH,3110 +-71.40005,43.00372,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",25 Lakeside Drive, Manchester,NH,3104 +-71.47481,42.94342,"DD [drivethru-yes] [wifi-yes]-Bedford,NH",206 S River Road [In Ray's Country Store], Bedford,NH,3110 +-70.91978,43.00267,"DD [drivethru-yes] [wifi-yes]-Stratham,NH",45-48 Portsmouth Ave [Frying Pan Lane], Stratham,NH,3885 +-70.973799,42.998238,"DD [drivethru-yes] [wifi-no]-Exeter,NH",191 Epping Rd, Exeter,NH,3833 +-71.396538,43.008614,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",1932 Wellington Rd, Manchester,NH,3104 +-71.47496,42.99743,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",100 Eddy Road, Manchester,NH,3102 +-71.43465,42.98274,"DD [drivethru-no] [wifi-no]-Manchester,NH",1 Elliot Way [Elliot Hospital], Manchester,NH,3103 +-71.460594,43.04829,"DD [drivethru-yes] [wifi-yes]-Hooksett,NH",90 West River Rd, Hooksett,NH,3106 +-71.469902,43.040504,"DD [drivethru-no] [wifi-no]-Hooksett,NH",28 W River Rd, Hooksett,NH,3106 +-71.435638,42.954906,"DD [drivethru-no] [wifi-no]-Manchester,NH",1500 S Willow St [Mall of New Hampshire F109A], Manchester,NH,3103 +-72.289757,43.699871,"DD [drivethru-no] [wifi-yes]-Hanover,NH",73 South Main St, Hanover,NH,3755 +-71.0577,42.94616,"DD [drivethru-yes] [wifi-yes]-Kingston,NH",53 Church St [Carriagetown Plaza], Kingston,NH,3848 +-71.07461,42.89698,"DD [drivethru-yes] [wifi-no]-Kingston,NH",126 Route 125, Kingston,NH,3848 +-71.4367,42.95891,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",1265 S Willow St [Sunoco Sta], Manchester,NH,3103 +-71.426056,42.939049,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",78 Sheffield St, Manchester,NH,3103 +-71.31976,42.72024,"DD/BR [drivethru-yes] [wifi-yes]-Pelham,NH",123 Bridge, Pelham,NH,3076 +-71.316269,42.733501,"DD [drivethru-yes] [wifi-yes]-Pelham,NH",Bridge St Pelham Plaza Rt 38, Pelham,NH,3076 +-72.119949,43.642628,"DD [drivethru-yes] [wifi-yes]-Enfield,NH",554 US Rt 4, Enfield,NH,3748 +-71.464622,43.001011,"DD [drivethru-no] [wifi-no]-Manchester,NH",1602 Elm St, Manchester,NH,3101 +-71.473839,42.983421,"DD [drivethru-no] [wifi-no]-Manchester,NH",4 N Main St, Manchester,NH,3102 +-71.452934,42.932094,"DD [drivethru-yes] [wifi-no]-Manchester,NH",20 Roundstone Dr, Manchester,NH,3103 +-71.48001,42.96785,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",947 2nd Street, Manchester,NH,3102 +-71.413528,42.984364,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",855 Candia Rd, Manchester,NH,3109 +-71.473656,42.991722,"DD [drivethru-no] [wifi-no]-Manchester,NH",100 McGregor St [Catholic Memorial Hospital], Manchester,NH,3108 +-71.457703,43.007332,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",921 Beech St, Manchester,NH,3104 +-71.43744,43.05055,"DD [drivethru-yes] [wifi-yes]-Hooksett,NH",1284 Hooksett Road, Hooksett,NH,3106 +-71.51574,42.99941,"DD [drivethru-yes] [wifi-yes]-Goffstown,NH",570 Mast Road, Goffstown,NH,3045 +-71.45107,42.9283,"DD [drivethru-no] [wifi-yes]-Manchester,NH",One Airport Road [Manchester-Boston Airport], Manchester,NH,3103 +-71.4413,43.02799,"DD [drivethru-yes] [wifi-yes]-Hooksett,NH",6 Bell Avenue, Hooksett,NH,3106 +-71.433472,42.94817,"DD [drivethru-yes] [wifi-yes]-Manchester,NH",1932 South Willow St, Manchester,NH,3103 +-71.463242,42.980854,"DD [drivethru-no] [wifi-yes]-Manchester,NH",216 Elm St, Manchester,NH,3101 +-71.451118,42.928154,"DD [drivethru-no] [wifi-no]-Manchester,NH",1 Airport Rd [Manchester Airport], Manchester,NH,3103 +-71.41396,42.81899,"DD [drivethru-yes] [wifi-no]-Hudson,NH",329 Derry Road, Hudson,NH,3051 +-71.93836,43.03113,"DD [drivethru-yes] [wifi-no]-Antrim,NH",1 Concord Street, Antrim,NH,3440 +-72.1491,42.76922,"DD [drivethru-yes] [wifi-yes]-Fitzwilliam,NH",Rt 12 & 119 [Mr Miles Mobil], Fitzwilliam,NH,3447 +-71.461945,42.753094,"DD [drivethru-no] [wifi-no]-Nashua,NH",299 Main St [Shaws], Nashua,NH,3060 +-71.20737,43.5847,"DD [drivethru-yes] [wifi-yes]-Wolfeboro,NH",23 Center Street, Wolfeboro,NH,3894 +-72.328087,43.375801,"DD [drivethru-no] [wifi-yes]-Claremont,NH",14 Bowen St [Walmart], Claremont,NH,3743 +-72.361755,43.347919,"DD [drivethru-yes] [wifi-yes]-Claremont,NH",170 Charlestown Rd, Claremont,NH,3743 +-72.32731,43.37188,"DD [drivethru-yes] [wifi-yes]-Claremont,NH",202 Washington Street, Claremont,NH,3743 +-71.10823,43.70139,"DD [drivethru-yes] [wifi-yes]-Ossipee,NH",870 Route 16, Ossipee,NH,3864 +-71.317243,42.875549,"DD [drivethru-yes] [wifi-yes]-Derry,NH",50 Birch St, Derry,NH,3038 +-71.71966,43.77054,"DD [drivethru-yes] [wifi-yes]-Plymouth,NH",384 Tenney Mountain Highway, Plymouth,NH,3264 +-71.68158,43.04406,"DD [drivethru-yes] [wifi-yes]-Weare,NH",427 S Stark Highway, Weare,NH,3281 +-71.456322,43.554668,"DD [drivethru-yes] [wifi-no]-Laconia,NH",1106 Union Ave, Laconia,NH,3246 +-71.44627,43.5629,"DD [drivethru-yes] [wifi-no]-Gilford,NH",1400 Lake Shore Road, Gilford,NH,3249 +-71.98753,43.41598,"DD [drivethru-no] [wifi-yes]-New London,NH",217 Main Street, New London,NH,3257 +-71.49355,43.51361,"DD [drivethru-yes] [wifi-yes]-Belmont,NH",96 Daniel Webster Hwy [Belknap Mall], Belmont,NH,3220 +-71.425575,43.566673,"DD [drivethru-yes] [wifi-no]-Gilford,NH",63 Gilford East Dr, Gilford,NH,3249 +-71.46747,43.52401,"DD [drivethru-no] [wifi-no]-Laconia,NH",369 S Main Street, Laconia,NH,3246 +-71.56206,43.01486,"DD [drivethru-yes] [wifi-yes]-Goffstown,NH",100 Mast Road, Goffstown,NH,3045 +-71.442764,43.124371,"DD [drivethru-yes] [wifi-yes]-Allenstown,NH",43 Allenstown Rd, Allenstown,NH,3275 +-71.368693,43.023615,"DD [drivethru-yes] [wifi-no]-Auburn,NH",405 Hooksett Rd, Auburn,NH,3032 +-71.303931,43.042116,"DD [drivethru-yes] [wifi-no]-Candia,NH",285 Old Candia Rd, Candia,NH,3034 +-70.818092,42.872166,"DD [drivethru-yes] [wifi-no]-Seabrook,NH",12 Ocean Blvd [Coastal Gas], Seabrook,NH,3874 +-70.870811,42.886898,"DD [drivethru-yes] [wifi-yes]-Seabrook,NH",443 Lafayette Rd, Seabrook,NH,3874 +-70.870384,42.896694,"DD [drivethru-yes] [wifi-yes]-Seabrook,NH",720 Lafayette Rd, Seabrook,NH,3874 +-71.46508,42.9932,"DD [drivethru-no] [wifi-yes]-Bedford,NH",101 Rt 101, Bedford,NH,3110 +-71.556259,42.912121,"DD [drivethru-yes] [wifi-no]-Bedford,NH",470 Rt 101 [Mobil Station], Bedford,NH,3110 +-71.183701,44.391071,"DD [drivethru-yes] [wifi-yes]-Gorham,NH",191 Main St, Gorham,NH,3581 +-71.59141,42.74266,"DD [drivethru-no] [wifi-yes]-Hollis,NH",2 Main Street, Hollis,NH,3049 +-71.91486,43.11152,"DD [drivethru-yes] [wifi-yes]-Hillsboro,NH",258 W Main Street, Hillsboro,NH,3244 +-71.844009,43.290127,"DD [drivethru-yes] [wifi-yes]-Warner,NH",32 Rt 103 West, Warner,NH,3278 +-71.126572,43.978317,"DD [drivethru-yes] [wifi-no]-Conway,NH",402 W Main St, Conway,NH,3818 +-72.18979,43.61035,"DD [drivethru-yes] [wifi-no]-Enfield,NH",786 Methodist Hill Road, Enfield,NH,3748 +-70.997452,44.000702,"DD [drivethru-yes] [wifi-yes]-Center Conway,NH",3274 Main St [Rt 302 State Line Store], Center Conway,NH,3813 +-72.427961,43.113503,"DD [drivethru-yes] [wifi-no]-Walpole,NH",549 Main St, Walpole,NH,3608 +-71.80352,44.3054,"DD [drivethru-no] [wifi-yes]-Littleton,NH",615 Meadow Street [Walmart], Littleton,NH,3561 +-71.77564,44.30728,"DD [drivethru-yes] [wifi-yes]-Littleton,NH",148 Main Street, Littleton,NH,3561 +-71.337563,42.873177,"DD [drivethru-no] [wifi-no]-Londonderry,NH",12 Nashua Rd, Londonderry,NH,3053 +-71.349716,42.863659,"DD [drivethru-yes] [wifi-yes]-Londonderry,NH",41 Nashua Rd, Londonderry,NH,3053 +-71.286407,42.861591,"DD [drivethru-yes] [wifi-yes]-Derry,NH",160 Rockingham Rd, Derry,NH,3038 +-71.368027,42.916161,"DD [drivethru-no] [wifi-yes]-Londonderry,NH",124 Rockingham Rd, Londonderry,NH,3053 +-70.77057,43.05125,"DD [drivethru-yes] [wifi-yes]-Portsmouth,NH",802 Lafayette Road, Portsmouth,NH,3801 +-70.828,43.04039,"DD [drivethru-yes] [wifi-yes]-Greenland,NH",381 Portsmouth Avenue, Greenland,NH,3840 +-71.347305,43.299961,"DD [drivethru-yes] [wifi-no]-Pittsfield,NH",656 Suncook Valley Hwy, Pittsfield,NH,3263 +-71.359604,42.847435,"DD [drivethru-yes] [wifi-yes]-Londonderry,NH",1 Mohawk Dr, Londonderry,NH,3053 +-71.332428,42.897976,"DD [drivethru-yes] [wifi-yes]-Derry,NH",2 Ashleigh Dr [Texaco Station], Derry,NH,3038 +-71.32461,42.88341,"DD [drivethru-yes] [wifi-yes]-Derry,NH",5 Crystal Avenue, Derry,NH,3038 +-71.38494,42.8817,"DD [drivethru-no] [wifi-no]-Londonderry,NH",72 Shasta Drive, Londonderry,NH,3053 +-70.79402,43.09393,"DD [drivethru-yes] [wifi-yes]-Portsmouth,NH",1976 Woodbury Avenue, Portsmouth,NH,3801 +-70.76967,43.07173,"DD [drivethru-yes] [wifi-yes]-Portsmouth,NH",531 Islington Street, Portsmouth,NH,3801 +-70.79084,43.088684,"DD [drivethru-no] [wifi-no]-Portsmouth,NH",1600 Woodbury Ave [Shaws], Portsmouth,NH,3801 +-70.783905,43.033241,"DD [drivethru-no] [wifi-yes]-Portsmouth,NH",2460 Lafayette Rd [Walmart], Portsmouth,NH,3801 +-70.79066,43.02784,"DD [drivethru-yes] [wifi-yes]-Portsmouth,NH",2875 Lafayette Road, Portsmouth,NH,3801 +-71.49114,42.84066,"DD [drivethru-yes] [wifi-yes]-Merrimack,NH",308 Daniel Webster Highway, Merrimack,NH,3054 +-71.75726,43.1783,"DD [drivethru-yes] [wifi-yes]-Henniker,NH",1805 Old Concord Road, Henniker,NH,3242 +-71.507454,42.829828,"DD [drivethru-yes] [wifi-no]-Merrimack,NH",80 Continental Blvd, Merrimack,NH,3054 +-71.489426,42.873486,"DD [drivethru-yes] [wifi-yes]-Merrimack,NH",514 Daniel Webster Hwy, Merrimack,NH,3054 +-71.297508,42.805153,"DD [drivethru-yes] [wifi-no]-Windham,NH",30 Indian Rock Rd [Rt 111], Windham,NH,3087 +-71.38626,42.91549,"DD [drivethru-yes] [wifi-yes]-Londonderry,NH",201 Rockingham Road, Londonderry,NH,3053 +-70.934273,43.050114,"DD [drivethru-yes] [wifi-yes]-Newfields,NH",65 Rt 108 [101 Newmarket Rd], Newfields,NH,3856 +-71.10772,42.831,"DD [drivethru-yes] [wifi-yes]-Plaistow,NH",74 Plaistow Road, Plaistow,NH,3865 +-71.10776,42.84002,"DD [drivethru-yes] [wifi-no]-Plaistow,NH",119 Plaistow Road, Plaistow,NH,3865 +-71.140205,42.890846,"DD [drivethru-yes] [wifi-yes]-East Hampstead,NH",6 Colby Corner [Colby Corner Shopping Ctr], East Hampstead,NH,3826 +-71.05635,42.83327,"DD [drivethru-yes] [wifi-yes]-Plaistow,NH",134 Newton Road, Plaistow,NH,3865 +-71.190338,42.856178,"DD [drivethru-yes] [wifi-no]-Atkinson,NH",8 Rt 111, Atkinson,NH,3811 +-71.120819,44.032345,"DD [drivethru-yes] [wifi-yes]-North Conway,NH",1946 White Mountain Hwy, North Conway,NH,3860 +-71.12406,44.05273,"DD [drivethru-no] [wifi-no]-North Conway,NH",46 North South Road, North Conway,NH,3860 +-72.287682,42.833115,"DD [drivethru-yes] [wifi-no]-Swanzey,NH",189 W Swanzey Rd, Swanzey,NH,3469 +-72.260429,42.908829,"DD [drivethru-yes] [wifi-yes]-Swanzey,NH",47 Monadnock Hwy Rt 12 and Park, Swanzey,NH,3431 +-72.285675,42.932568,"DD [drivethru-no] [wifi-yes]-Keene,NH",191 West St, Keene,NH,3431 +-72.29348,42.93333,"DD [drivethru-yes] [wifi-no]-Keene,NH",410 West Street, Keene,NH,3431 +-72.532874,42.811025,"DD [drivethru-no] [wifi-no]-Hinsdale,NH",724 Brattleboro Rd [Walmart], Hinsdale,NH,3451 +-70.979279,43.255421,"DD [drivethru-yes] [wifi-yes]-Gonic,NH",213 Gonic Rd, Gonic,NH,3839 +-70.94939,43.32857,"DD [drivethru-yes] [wifi-yes]-Rochester,NH",64 Highland Street, Rochester,NH,3868 +-70.971878,43.300293,"DD [drivethru-yes] [wifi-yes]-Rochester,NH",111 S Main St, Rochester,NH,3867 +-70.993721,43.316013,"DD [drivethru-yes] [wifi-yes]-Rochester,NH",303 N Main St, Rochester,NH,3867 +-71.00795,43.33353,"DD [drivethru-yes] [wifi-no]-Rochester,NH",95 Farmington Road [Shell Station], Rochester,NH,3867 +-70.991753,43.297588,"DD [drivethru-yes] [wifi-no]-Rochester,NH",130 Washington St, Rochester,NH,3839 +-71.010109,43.335377,"DD [drivethru-no] [wifi-no]-Rochester,NH",116 Farmington Rd [Walmart], Rochester,NH,3867 +-70.974159,43.334282,"DD [drivethru-yes] [wifi-yes]-Rochester,NH",64 Milton Rd, Rochester,NH,3868 +-71.144646,42.893681,"DD [drivethru-yes] [wifi-yes]-East Hampstead,NH",304 Sandown Rd Unit 2, East Hampstead,NH,3826 +-71.20822,43.83291,"DD [drivethru-yes] [wifi-yes]-Tamworth,NH",1705 White Mountain Highway, Tamworth,NH,3886 +-72.3254,43.6248,"DD [drivethru-no] [wifi-no]-West Lebanon,NH",285 Plainfield Road [Walmart], West Lebanon,NH,3784 +-72.30957,43.6452,"DD [drivethru-no] [wifi-yes]-West Lebanon,NH",12 Main Street, West Lebanon,NH,3784 +-72.318138,43.63303,"DD [drivethru-yes] [wifi-yes]-West Lebanon,NH",191 S Main St, West Lebanon,NH,3784 +-71.61158,43.44482,"DD [drivethru-yes] [wifi-yes]-Tilton,NH",541 W Main Street, Tilton,NH,3276 +-71.565376,43.456215,"DD [drivethru-yes] [wifi-yes]-Tilton,NH",65 Laconia Rd, Tilton,NH,3276 +-71.49641,43.66057,"DD [drivethru-yes] [wifi-yes]-Meredith,NH",55 Nh Route 25, Meredith,NH,3253 +-71.474533,43.445892,"DD [drivethru-yes] [wifi-yes]-Belmont,NH",918 Laconia Rd, Belmont,NH,3220 +-71.454643,43.711895,"DD [drivethru-yes] [wifi-yes]-Moultonborough,NH",70 Whittier Hwy, Moultonborough,NH,3254 +-71.581291,42.811611,"DD [drivethru-yes] [wifi-no]-Amherst,NH",84 Rt 101a [Quickava], Amherst,NH,3031 +-71.494231,44.897625,"DD [drivethru-yes] [wifi-yes]-Colebrook,NH",158 Main St, Colebrook,NH,3576 +-71.579132,43.257889,"DD [drivethru-yes] [wifi-yes]-Concord,NH",98 Fisherville Rd, Concord,NH,3303 +-71.53881,43.21172,"DD [drivethru-no] [wifi-no]-Concord,NH",196 North Main Street, Concord,NH,3301 +-71.51466,43.21259,"DD [drivethru-yes] [wifi-yes]-Concord,NH",101 Loudon Road, Concord,NH,3301 +-71.513657,43.191116,"DD [drivethru-yes] [wifi-yes]-Concord,NH",62 Manchester St, Concord,NH,3301 +-71.488922,43.224415,"DD [drivethru-no] [wifi-yes]-Concord,NH",270 Loudon Rd, Concord,NH,3301 +-71.53013,43.17725,"DD [drivethru-yes] [wifi-no]-Concord,NH",412 South Main, Concord,NH,3301 +-71.48281,43.22858,"DD [drivethru-yes] [wifi-yes]-Concord,NH",333 Loudon Road, Concord,NH,3301 +-71.420119,42.987212,"DD [drivethru-yes] [wifi-no]-Manchester,NH",1037 Hanover St, Manchester,NH,3104 +-74.251013,40.736517,"DD [drivethru-yes] [wifi-yes]-Newark,NJ",501 Irvington Ave, Newark,NJ,7208 +-74.15887,40.77549,"DD [drivethru-yes] [wifi-yes]-Newark,NJ",746 Broadway [# 756], Newark,NJ,7104 +-74.069592,40.947636,"DD/BR [drivethru-no] [wifi-yes]-Paramus,NJ",344 Route 4 East [Sunoco], Paramus,NJ,7054 +-74.13036,40.84297,"DD [drivethru-no] [wifi-yes]-Passaic,NJ",76 Main Ave [ # 98], Passaic,NJ,7055 +-74.653001,40.364445,"DD [drivethru-no] [wifi-yes]-Princeton,NJ",301 N Harrison St [Princeton Shopping Center], Princeton,NJ,8540 +-74.064938,40.772113,"DD [drivethru-no] [wifi-yes]-Secaucus,NJ",216 County Ave, Secaucus,NJ,7094 +-74.57471,40.383348,"DD [drivethru-no] [wifi-yes]-South Brunswick,NJ",4180 Rt 1 North, South Brunswick,NJ,8852 +-74.268995,40.696075,"DD [drivethru-no] [wifi-yes]-Union,NJ",1982 Morris Ave, Union,NJ,7083 +-74.851806,40.513956,"DD [drivethru-yes] [wifi-yes]-Flemington,NJ",72 State Hwy Rt 31, Flemington,NJ,8822 +-74.350891,40.779076,"DD/BR [drivethru-no] [wifi-yes]-Livingston,NJ",Livingston Mall [Room Space 1073], Livingston,NJ,7039 +-74.31512,40.79432,"DD [drivethru-no] [wifi-yes]-Livingston,NJ",43 S Livingston Ave, Livingston,NJ,7039 +-74.556602,40.864895,"DD [drivethru-no] [wifi-yes]-Randolph,NJ",375 State Route 10, Randolph,NJ,7869 +-74.529564,40.886753,"DD [drivethru-no] [wifi-no]-Rockaway,NJ",437 Route 46 [Shoprite], Rockaway,NJ,7866 +-74.473776,40.88995,"DD [drivethru-no] [wifi-yes]-Denville,NJ",125 Rte 46 E, Denville,NJ,7834 +-74.2623,41.08536,"DD [drivethru-no] [wifi-yes]-Ringwood,NJ",130 Skyline Dr, Ringwood,NJ,7456 +-74.188438,40.926514,"DD [drivethru-no] [wifi-yes]-Paterson,NJ",490 Chamberlain Ave, Paterson,NJ,7522 +-74.74142,41.07052,"DD [drivethru-no] [wifi-no]-Newton,NJ",26 Hampton House Rd/Hwy 206 [WalMart], Newton,NJ,7860 +-74.145642,40.833231,"DD [drivethru-no] [wifi-yes]-Clifton,NJ",590 Route 3, Clifton,NJ,7014 +-74.708898,40.831492,"DD [drivethru-yes] [wifi-yes]-Flanders,NJ",295 US Hwy 206, Flanders,NJ,7836 +-74.644623,40.879295,"DD [drivethru-no] [wifi-no]-Ledgewood,NJ",1039 Us Hwy 46, Ledgewood,NJ,7852 +-74.215416,40.711067,"DD [drivethru-yes] [wifi-no]-Newark,NJ",257 Lyons Ave # 259, Newark,NJ,7112 +-74.19434,40.9154,"DD [drivethru-no] [wifi-yes]-Paterson,NJ",161 Union Ave, Paterson,NJ,7502 +-74.23458,40.89681,"DD/BR [drivethru-yes] [wifi-yes]-Totowa,NJ",410 Minnisink Rd, Totowa,NJ,7512 +-74.35816,40.82703,"DD [drivethru-no] [wifi-yes]-East Hanover,NJ",456 Ridgedale Ave, East Hanover,NJ,7936 +-74.415123,40.822685,"DD [drivethru-no] [wifi-no]-Whippany,NJ",567 Route 10, Whippany,NJ,7981 +-74.36543,40.80399,"DD [drivethru-yes] [wifi-yes]-East Hanover,NJ",329 Route 10 East, East Hanover,NJ,7936 +-74.33587,40.85887,"DD [drivethru-no] [wifi-yes]-Pine Brook,NJ",36 US Highway 46, Pine Brook,NJ,7058 +-74.276039,40.949024,"DD/BR [drivethru-yes] [wifi-yes]-Wayne,NJ",1957 Route 23 S, Wayne,NJ,7470 +-74.23734,40.95992,"DD [drivethru-no] [wifi-yes]-Wayne,NJ",1055 Hamburg Tpke, Wayne,NJ,7470 +-74.396889,41.009499,"DD [drivethru-no] [wifi-yes]-Butler,NJ",1388 Hwy 23 North, Butler,NJ,7405 +-74.206268,40.893398,"DD [drivethru-no] [wifi-yes]-West Paterson,NJ",1007 Mcbride Ave Unit B -108, West Paterson,NJ,7424 +-74.27932,40.98892,"DD [drivethru-no] [wifi-yes]-Wayne,NJ",2387 Hamburg Tpke, Wayne,NJ,7470 +-74.39294,40.78854,"DD/BR [drivethru-no] [wifi-yes]-Florham Park,NJ",176 Columbia Turnpike, Florham Park,NJ,7932 +-74.15926,40.72964,"DD [drivethru-no] [wifi-yes]-Newark,NJ",139 1/2 Ferry St, Newark,NJ,7105 +-74.162552,40.734646,"DD [drivethru-no] [wifi-yes]-Newark,NJ",3 Penn Plz E, Newark,NJ,7105 +-74.160889,40.71859,"DD [drivethru-yes] [wifi-yes]-Newark,NJ",374 South St [#404], Newark,NJ,7114 +-74.743132,40.995838,"DD [drivethru-no] [wifi-no]-Andover,NJ",204 Route 206 N, Andover,NJ,7821 +-74.231316,40.894203,"DD [drivethru-no] [wifi-no]-Little Falls,NJ",1500 State Highway Route 46, Little Falls,NJ,7424 +-74.23917,40.89481,"DD [drivethru-yes] [wifi-yes]-Totowa,NJ",580 US Highway 46, Totowa,NJ,7512 +-74.24545,40.88543,"DD [drivethru-no] [wifi-yes]-Little Falls,NJ",510 Main Street, Little Falls,NJ,7424 +-74.12759,40.86344,"DD [drivethru-no] [wifi-yes]-Passaic,NJ",11 Central Ave [Main Ave], Passaic,NJ,7055 +-74.14492,40.856113,"DD [drivethru-yes] [wifi-yes]-Clifton,NJ",531 Van Houten Ave, Clifton,NJ,7013 +-74.0802,40.88039,"DD [drivethru-no] [wifi-yes]-Lodi,NJ",179 U S Highway No 46 West [BP], Lodi,NJ,7644 +-74.172806,40.853436,"DD [drivethru-no] [wifi-yes]-Clifton,NJ",1372 Clifton Ave, Clifton,NJ,7012 +-74.6656,40.90727,"DD [drivethru-no] [wifi-no]-Landing,NJ",136 Lakeside Dr, Landing,NJ,7850 +-74.4856,41.1992,"DD [drivethru-yes] [wifi-no]-Vernon,NJ",Route 94 And Church St, Vernon,NJ,7462 +-74.25983,40.74634,"DD [drivethru-no] [wifi-yes]-South Orange,NJ",2 S Orange Ave, South Orange,NJ,7079 +-74.27584,40.7198,"DD [drivethru-no] [wifi-yes]-Maplewood,NJ",2001 Springfield Ave, Maplewood,NJ,7040 +-74.1454,40.79267,"DD/BR [drivethru-no] [wifi-yes]-Belleville,NJ",364 Main Street, Belleville,NJ,7109 +-74.169548,40.802444,"DD [drivethru-no] [wifi-yes]-Belleville,NJ",368 Franklin Ave, Belleville,NJ,7109 +-74.21379,40.81215,"DD [drivethru-no] [wifi-yes]-Montclair,NJ",1 Lackawanna Plaza, Montclair,NJ,7042 +-74.22006,40.81585,"DD [drivethru-no] [wifi-yes]-Montclair,NJ",586 Bloomfield Ave, Montclair,NJ,7042 +-74.199722,40.791824,"DD [drivethru-no] [wifi-yes]-Bloomfield,NJ",234 Glenwood Ave #266, Bloomfield,NJ,7003 +-74.153885,40.936039,"DD [drivethru-no] [wifi-yes]-Paterson,NJ",675 River St, Paterson,NJ,7524 +-74.328392,40.787609,"DD [drivethru-no] [wifi-yes]-Livingston,NJ",3135 Northfield Rd, Livingston,NJ,7039 +-74.39143,41.11102,"DD [drivethru-yes] [wifi-yes]-West Milford,NJ",Union Valley Road [West Milford Twp], West Milford,NJ,7480 +-74.63619,41.03054,"DD [drivethru-no] [wifi-no]-Sparta,NJ",5 Centre St Unit B, Sparta,NJ,7871 +-74.22794,40.93101,"DD/BR [drivethru-no] [wifi-yes]-Wayne,NJ",572 Valley Rd, Wayne,NJ,7470 +-74.305893,40.923031,"DD [drivethru-no] [wifi-yes]-Lincoln Park,NJ",188 Main St, Lincoln Park,NJ,7035 +-74.22021,40.76702,"DD [drivethru-no] [wifi-yes]-East Orange,NJ",24 South Harrison, East Orange,NJ,7018 +-74.207954,40.752403,"DD [drivethru-no] [wifi-yes]-East Orange,NJ",140 Central Ave, East Orange,NJ,7018 +-74.222099,40.759624,"DD [drivethru-yes] [wifi-yes]-East Orange,NJ",523 Central Ave, East Orange,NJ,7018 +-74.22961,40.75254,"DD [drivethru-no] [wifi-yes]-East Orange,NJ",275 Sanford St, East Orange,NJ,7018 +-74.23706,40.77549,"DD [drivethru-yes] [wifi-yes]-Orange,NJ",529 Main St, Orange,NJ,7050 +-74.23006,40.77237,"DD/BR [drivethru-no] [wifi-yes]-Orange,NJ",306 Main St, Orange,NJ,7050 +-74.37688,40.73939,"DD [drivethru-no] [wifi-yes]-Chatham,NJ",118 Main St, Chatham,NJ,7928 +-74.481223,40.874899,"DD [drivethru-no] [wifi-yes]-Denville,NJ",Route 53 & Station, Denville,NJ,7834 +-74.56089,41.0036,"DD [drivethru-yes] [wifi-yes]-Lake Hopatcong,NJ",766 Route 15 S, Lake Hopatcong,NJ,7849 +-74.208298,40.842052,"DD [drivethru-no] [wifi-yes]-Upper Montclair,NJ",622 Valley Rd, Upper Montclair,NJ,7043 +-74.164277,40.735265,"DD [drivethru-no] [wifi-yes]-Newark,NJ",1 Raymond Plz W [Newark Penn Sta], Newark,NJ,7102 +-74.172829,40.737286,"DD [drivethru-no] [wifi-yes]-Newark,NJ",150 Halsey St [Prudential Plaza Mall 1st Flr], Newark,NJ,7102 +-74.241821,40.911213,"DD [drivethru-no] [wifi-yes]-Wayne,NJ",60 Riverview Drive, Wayne,NJ,7470 +-74.26923,40.93441,"DD/BR [drivethru-no] [wifi-yes]-Wayne,NJ",1467 Route 23, Wayne,NJ,7470 +-74.169144,40.730419,"DD [drivethru-no] [wifi-no]-Newark,NJ",100 Terminal Dr [Newark Liberty Intl Airport], Newark,NJ,7114 +-74.1712,40.7078,"DD [drivethru-no] [wifi-yes]-Newark,NJ",Terminal Access Rd [Newark Intl Airport], Newark,NJ,7114 +-74.190542,40.71005,"DD [drivethru-no] [wifi-yes]-Newark,NJ",10 Toler Pl [NEC Train Station], Newark,NJ,7114 +-74.17563,40.7309,"DD [drivethru-no] [wifi-no]-Newark,NJ",13 Court St, Newark,NJ,7102 +-74.164246,40.735355,"DD [drivethru-no] [wifi-yes]-Newark,NJ",3 Gateway Ctr, Newark,NJ,7102 +-74.16408,40.73539,"DD [drivethru-no] [wifi-yes]-Newark,NJ",1 Gateway Center, Newark,NJ,7102 +-74.174184,40.73197,"DD [drivethru-no] [wifi-yes]-Newark,NJ",300 Access Rd [Newark Liberty Int'l Airport], Newark,NJ,7114 +-74.177394,40.695448,"DD [drivethru-no] [wifi-yes]-Newark,NJ",300 Terminal C- AccessRd [EWR]-Newark Int'l Airport, Newark,NJ,7114 +-74.180657,40.719258,"DD [drivethru-no] [wifi-no]-Newark,NJ",335 McCarter Hwy, Newark,NJ,7114 +-74.29649,41.01869,"DD/BR [drivethru-no] [wifi-yes]-Haskell,NJ",1353 Ringwood Ave, Haskell,NJ,7420 +-74.635552,40.903575,"DD [drivethru-no] [wifi-no]-Mount Arlington,NJ",180 Howard Blvd, Mount Arlington,NJ,7856 +-74.184998,40.940044,"DD [drivethru-no] [wifi-yes]-Haledon,NJ",490 Haledon Ave, Haledon,NJ,7508 +-74.695669,40.868179,"DD [drivethru-no] [wifi-no]-Mount Olive,NJ",114 State Hwy Route 206, Mount Olive,NJ,7836 +-74.194,40.78993,"DD [drivethru-no] [wifi-no]-Bloomfield,NJ",313 Franklin Street, Bloomfield,NJ,7003 +-74.192474,40.733673,"DD/BR [drivethru-yes] [wifi-yes]-Newark,NJ",311 Springfield Ave [#313], Newark,NJ,7103 +-74.316536,40.687229,"DD [drivethru-no] [wifi-yes]-Springfield,NJ",130 Route 22 Westbound Center Island, Springfield,NJ,7081 +-74.41095,40.857086,"DD [drivethru-no] [wifi-yes]-Parsippany,NJ",323 Smith Rd [The Shoppes At Mazdebrook], Parsippany,NJ,7054 +-74.339561,40.831303,"DD [drivethru-no] [wifi-yes]-East Hanover,NJ",85 Eagle Rock Ave, East Hanover,NJ,7936 +-74.15185,40.88715,"DD [drivethru-no] [wifi-yes]-Clifton,NJ",1578 Main Avenue, Clifton,NJ,7011 +-74.11879,40.88011,"DD [drivethru-no] [wifi-yes]-Garfield,NJ",11 Outwater Ln, Garfield,NJ,7026 +-74.395423,40.90848,"DD [drivethru-no] [wifi-no]-Boonton,NJ",556 Myrtle Ave [Hess], Boonton,NJ,7005 +-74.46155,40.79631,"DD [drivethru-no] [wifi-yes]-Morristown,NJ",59-61 Morris St, Morristown,NJ,7960 +-74.48812,40.78889,"DD [drivethru-no] [wifi-yes]-Morris Plains,NJ",246 Littleton Rd, Morris Plains,NJ,7950 +-74.160637,40.89999,"DD/BR [drivethru-yes] [wifi-yes]-Paterson,NJ",1212 Madison Avenue, Paterson,NJ,7503 +-74.168,40.91562,"DD/BR [drivethru-no] [wifi-yes]-Paterson,NJ",251 Market St, Paterson,NJ,7505 +-74.470774,40.848843,"DD [drivethru-no] [wifi-yes]-Morris Plains,NJ",1767 Route 10 E, Morris Plains,NJ,7950 +-74.3901,40.81229,"DD [drivethru-no] [wifi-yes]-East Hanover,NJ",36 State Route 10, East Hanover,NJ,7936 +-74.156334,40.720127,"DD [drivethru-yes] [wifi-yes]-Newark,NJ",Maple Court Mall [Chestnut Street], Newark,NJ,7105 +-74.165354,40.936761,"DD [drivethru-no] [wifi-yes]-Hawthorne,NJ",84 Goffle Rd, Hawthorne,NJ,7506 +-74.326859,41.00201,"DD [drivethru-no] [wifi-yes]-Bloomingdale,NJ",47 Main St, Bloomingdale,NJ,7403 +-74.335663,40.989489,"DD/BR [drivethru-yes] [wifi-yes]-Kinnelon,NJ",1161 State Rt 23, Kinnelon,NJ,7405 +-74.343231,41.006062,"DD/BR [drivethru-yes] [wifi-yes]-Butler,NJ",307 Main St, Butler,NJ,7405 +-74.336136,40.989445,"DD [drivethru-yes] [wifi-yes]-Kinnelon,NJ",1167 State Rt 23, Kinnelon,NJ,7405 +-74.1758,40.7802,"DD [drivethru-no] [wifi-yes]-Newark,NJ",895 Franklin Ave, Newark,NJ,7107 +-74.162231,40.782707,"DD [drivethru-no] [wifi-yes]-Newark,NJ",880 Mt Prospect Ave, Newark,NJ,7104 +-74.186966,40.759064,"DD [drivethru-yes] [wifi-yes]-Newark,NJ",266 Park Ave, Newark,NJ,7107 +-74.172417,40.755028,"DD [drivethru-yes] [wifi-no]-Newark,NJ",40-48 Bloomfield Ave, Newark,NJ,7104 +-74.155434,40.743362,"DD [drivethru-no] [wifi-yes]-Harrison,NJ",420 Bergen St, Harrison,NJ,7029 +-74.12003,40.93965,"DD [drivethru-no] [wifi-yes]-Fair Lawn,NJ",12-18 River Rd, Fair Lawn,NJ,7410 +-74.160614,40.841019,"DD/BR [drivethru-no] [wifi-yes]-Clifton,NJ",1053 Bloomfield Ave [22 Styretowne Mall], Clifton,NJ,7011 +-74.077669,40.87766,"DD [drivethru-no] [wifi-no]-Lodi,NJ",140 US Hwy 4 E [Hess], Lodi,NJ,7644 +-74.08315,40.88334,"DD [drivethru-no] [wifi-yes]-Lodi,NJ",291 N Main St, Lodi,NJ,7644 +-74.10251,40.85883,"DD [drivethru-no] [wifi-yes]-Wallington,NJ",434 Main Ave [#452 Wallington Square Mall], Wallington,NJ,7057 +-74.58047,41.118425,"DD [drivethru-no] [wifi-no]-Franklin,NJ",272 Route 23 [Hess], Franklin,NJ,7416 +-74.118668,40.854351,"DD [drivethru-no] [wifi-yes]-Wallington,NJ",6 Main St, Wallington,NJ,7057 +-74.116852,40.868191,"DD [drivethru-no] [wifi-no]-Passaic,NJ",39 Monroe St, Passaic,NJ,7055 +-74.47298,40.79777,"DD [drivethru-no] [wifi-yes]-Morristown,NJ",30 Lafayette Ave, Morristown,NJ,7960 +-74.501234,40.911626,"DD [drivethru-yes] [wifi-yes]-Rockaway,NJ",12 Green Pond Rd, Rockaway,NJ,7866 +-74.720213,40.934127,"DD [drivethru-no] [wifi-no]-Byram,NJ",90 US Hwy 206 [Ste 80], Byram,NJ,7874 +-74.7232,40.8886,"DD [drivethru-no] [wifi-yes]-Budd Lake,NJ",375 US Highway 46, Budd Lake,NJ,7828 +-74.5788,40.9131,"DD [drivethru-no] [wifi-no]-Wharton,NJ",314 Route 15 [Glass Garden], Wharton,NJ,7885 +-74.18929,40.77914,"DD [drivethru-no] [wifi-no]-Bloomfield,NJ",133 Bloomfield Avenue, Bloomfield,NJ,7003 +-74.194229,40.812325,"DD [drivethru-no] [wifi-yes]-Bloomfield,NJ",548 Broad St, Bloomfield,NJ,7003 +-74.180481,40.796989,"DD [drivethru-no] [wifi-no]-Bloomfield,NJ",29 Belleville Ave, Bloomfield,NJ,7003 +-74.19202,40.71521,"DD [drivethru-yes] [wifi-yes]-Newark,NJ",226 Elizabeth Ave [# 232], Newark,NJ,7108 +-74.22096,40.74509,"DD/BR [drivethru-yes] [wifi-yes]-Newark,NJ",802 S Orange Ave, Newark,NJ,7106 +-74.419998,40.866295,"DD [drivethru-no] [wifi-yes]-Parsippany,NJ",199 Littleton Rd, Parsippany,NJ,7054 +-74.48071,40.82402,"DD [drivethru-no] [wifi-no]-Morris Plains,NJ",401 Speedwell Ave, Morris Plains,NJ,7950 +-74.396324,40.908138,"DD [drivethru-no] [wifi-yes]-Boonton,NJ",542 Myrtle Ave, Boonton,NJ,7005 +-74.751793,41.06044,"DD [drivethru-no] [wifi-no]-Newton,NJ",51 Water St Exxon, Newton,NJ,7860 +-74.746895,41.065529,"DD [drivethru-yes] [wifi-no]-Newton,NJ",128 Water St, Newton,NJ,7860 +-74.96938,40.63602,"DD [drivethru-no] [wifi-no]-Hampton,NJ",68 Route 173, Hampton,NJ,8827 +-74.69949,41.10678,"DD [drivethru-no] [wifi-yes]-Lafayette,NJ",183 State Route 15, Lafayette,NJ,7848 +-74.326881,40.717583,"DD/BR [drivethru-no] [wifi-yes]-Springfield,NJ",633 Morris Tpke, Springfield,NJ,7081 +-74.4052,40.75274,"DD [drivethru-no] [wifi-yes]-Madison,NJ",227 Main Street, Madison,NJ,7940 +-74.331207,40.690643,"DD/BR [drivethru-no] [wifi-no]-Springfield,NJ",719 Mountain Ave, Springfield,NJ,7081 +-74.22162,40.728,"DD [drivethru-no] [wifi-yes]-Irvington,NJ",857 Springfield Avenue, Irvington,NJ,7111 +-74.229828,40.713773,"DD [drivethru-yes] [wifi-yes]-Irvington,NJ",545 Chancellor Ave, Irvington,NJ,7111 +-74.1576,40.86655,"DD [drivethru-no] [wifi-yes]-Clifton,NJ",817 Clifton Ave, Clifton,NJ,7013 +-74.428831,40.745623,"DD/BR [drivethru-no] [wifi-yes]-Chatham,NJ",641 Shunpike Rd, Chatham,NJ,7928 +-74.16424,40.74552,"DD [drivethru-no] [wifi-yes]-Harrison,NJ",7 Passaic Ave, Harrison,NJ,7029 +-74.72812,40.88483,"DD [drivethru-no] [wifi-yes]-Budd Lake,NJ",100 Us Highway 46 W [Village Green Shopping Center], Budd Lake,NJ,7828 +-74.71866,40.92458,"DD [drivethru-yes] [wifi-yes]-Stanhope,NJ",25 Us Highway 206 S, Stanhope,NJ,7874 +-74.716881,40.892597,"DD [drivethru-no] [wifi-no]-Netcong,NJ",10 Rt 46 E, Netcong,NJ,7857 +-74.14099,40.92249,"DD [drivethru-yes] [wifi-yes]-Paterson,NJ",39 E 33rd St [Route 20], Paterson,NJ,7514 +-74.141357,40.876896,"DD [drivethru-no] [wifi-yes]-Clifton,NJ",1209 Main Ave, Clifton,NJ,7011 +-74.101837,40.87952,"DD [drivethru-no] [wifi-yes]-Garfield,NJ",458 Midland Ave, Garfield,NJ,7026 +-74.434273,40.874459,"DD [drivethru-no] [wifi-yes]-Parsippany,NJ",3440 Rt 46 [Delta Gas], Parsippany,NJ,7054 +-74.382973,40.875748,"DD [drivethru-no] [wifi-yes]-Parsippany,NJ",450 N Beverwyck Rd, Parsippany,NJ,7054 +-74.527908,40.887447,"DD [drivethru-yes] [wifi-yes]-Rockaway,NJ",387 US Hwy 46, Rockaway,NJ,7866 +-74.547127,40.907982,"DD [drivethru-no] [wifi-yes]-Rockaway,NJ",375 Mount Hope Ave [Rockaway Mall], Rockaway,NJ,7866 +-74.536766,40.87624,"DD [drivethru-no] [wifi-yes]-Randolph,NJ",224 S Salem St, Randolph,NJ,7869 +-74.260101,40.810848,"DD [drivethru-no] [wifi-yes]-West Orange,NJ",442 Pleasant Valley Way, West Orange,NJ,7052 +-74.233421,40.791492,"DD/BR [drivethru-yes] [wifi-yes]-West Orange,NJ",382 Main St [# 390], West Orange,NJ,7052 +-74.453813,40.881698,"DD [drivethru-no] [wifi-no]-Mountain Lakes,NJ",60 Rt 46 E [Hess], Mountain Lakes,NJ,7046 +-74.24367,40.96083,"DD [drivethru-no] [wifi-no]-Wayne,NJ",1220 Hamburg Tpke [Stop & Shop], Wayne,NJ,7470 +-74.1542,40.96789,"DD [drivethru-no] [wifi-yes]-Hawthorne,NJ",1063 Goffle Rd, Hawthorne,NJ,7506 +-74.595612,40.963367,"DD [drivethru-no] [wifi-no]-Lake Hopatcong,NJ",778 State Route 15 N, Lake Hopatcong,NJ,7849 +-74.66114,40.933929,"DD [drivethru-no] [wifi-yes]-Hopatcong,NJ",42 Hopatchung Rd, Hopatcong,NJ,7843 +-74.171921,40.735394,"DD [drivethru-no] [wifi-no]-Newark,NJ",188 Market St, Newark,NJ,7102 +-74.14021,40.81124,"DD [drivethru-no] [wifi-yes]-Nutley,NJ",27 Park Ave, Nutley,NJ,7110 +-74.182098,40.91333,"DD [drivethru-yes] [wifi-yes]-Paterson,NJ",139 Mcbride Ave Ste 147, Paterson,NJ,7501 +-74.19182,40.90215,"DD [drivethru-no] [wifi-yes]-West Paterson,NJ",185 Squirrelwood Rd [Luk Oil], West Paterson,NJ,7424 +-74.27313,40.888,"DD/BR [drivethru-yes] [wifi-yes]-Fairfield,NJ",378 Passaic Avenue, Fairfield,NJ,7004 +-74.291824,40.882038,"DD [drivethru-no] [wifi-yes]-Fairfield,NJ",397 US Highway 46 W, Fairfield,NJ,7004 +-74.15218,40.73119,"DD/BR [drivethru-yes] [wifi-yes]-Newark,NJ",596 Market St, Newark,NJ,7105 +-74.179161,40.723461,"DD [drivethru-yes] [wifi-yes]-Newark,NJ",1118 Broad St, Newark,NJ,7102 +-74.603121,40.879869,"DD [drivethru-no] [wifi-no]-Mine Hill,NJ",274 Rte 46, Mine Hill,NJ,7803 +-74.3084,40.72359,"DD [drivethru-no] [wifi-yes]-Millburn,NJ",363 Millburn Ave, Millburn,NJ,7041 +-74.378281,40.862698,"DD/BR [drivethru-no] [wifi-yes]-Parsippany,NJ",820 Us Highway 46, Parsippany,NJ,7054 +-74.242371,40.948311,"DD [drivethru-no] [wifi-yes]-Wayne,NJ",100 Willowbrook Dr Space 1720, Wayne,NJ,7470 +-74.239403,40.886623,"DD [drivethru-no] [wifi-yes]-West Paterson,NJ",Plaza 46 West, West Paterson,NJ,7424 +-74.21325,40.8844,"DD [drivethru-no] [wifi-no]-Little Falls,NJ",1299 Us Highway 46 East, Little Falls,NJ,7424 +-74.12232,40.87503,"DD [drivethru-no] [wifi-yes]-Clifton,NJ",8 Village Square East, Clifton,NJ,7011 +-74.6494,40.87542,"DD [drivethru-no] [wifi-yes]-Ledgewood,NJ",470 State Route 10 Roxbury Plaza, Ledgewood,NJ,7852 +-74.28535,40.969307,"DD/BR [drivethru-no] [wifi-yes]-Pompton Plains,NJ",560 Route 23, Pompton Plains,NJ,7444 +-74.359435,40.871147,"DD [drivethru-no] [wifi-no]-Pine Brook,NJ",263 Changebridge Rd, Pine Brook,NJ,7058 +-74.2828,40.7697,"DD [drivethru-no] [wifi-yes]-West Orange,NJ",581 Northfield Ave # G, West Orange,NJ,7052 +-74.192307,40.740891,"DD [drivethru-no] [wifi-yes]-Newark,NJ",131 Bergen St, Newark,NJ,7103 +-74.228699,40.846149,"DD [drivethru-no] [wifi-no]-Cedar Grove,NJ",378 Pompton Ave, Cedar Grove,NJ,7009 +-74.145149,40.812073,"DD [drivethru-no] [wifi-yes]-Nutley,NJ",177 Washington Ave, Nutley,NJ,7110 +-74.32883,40.81919,"DD/BR [drivethru-no] [wifi-yes]-Roseland,NJ",14 Eisenhower Pkwy, Roseland,NJ,7068 +-74.352806,40.857937,"DD [drivethru-no] [wifi-no]-Parsippany,NJ",147 Rt 46 East, Parsippany,NJ,7054 +-74.272942,40.837219,"DD [drivethru-no] [wifi-yes]-Caldwell,NJ",226 Bloomfield Ave, Caldwell,NJ,7006 +-74.29543,40.85128,"DD [drivethru-no] [wifi-yes]-West Caldwell,NJ",592 Passaic Ave Unit 10, West Caldwell,NJ,7006 +-74.51912,41.0886,"DD [drivethru-no] [wifi-yes]-Stockholm,NJ",2737 Route 23, Stockholm,NJ,7460 +-74.58073,41.11722,"DD [drivethru-yes] [wifi-yes]-Franklin,NJ",250 State Route 23, Franklin,NJ,7416 +-74.55632,41.166718,"DD [drivethru-no] [wifi-no]-Hamburg,NJ",3672 Route 94 North, Hamburg,NJ,7419 +-74.45388,41.05325,"DD [drivethru-yes] [wifi-yes]-Newfoundland,NJ",2903 State Rt 23, Newfoundland,NJ,7435 +-74.24598,40.68887,"DD [drivethru-no] [wifi-yes]-Union,NJ",1401 Morris Avenue, Union,NJ,7083 +-74.293724,40.704216,"DD/BR [drivethru-no] [wifi-yes]-Union,NJ",2639 Morris Ave, Union,NJ,7083 +-74.54399,40.43477,"DD [drivethru-no] [wifi-yes]-Franklin Park,NJ",3171 State Route 27, Franklin Park,NJ,8823 +-74.342407,40.64901,"DD [drivethru-no] [wifi-no]-Westfield,NJ",421 Central Ave, Westfield,NJ,7090 +-74.232491,40.649731,"DD [drivethru-no] [wifi-yes]-Linden,NJ",101 North Park Ave, Linden,NJ,7036 +-74.25839,40.6336,"DD [drivethru-no] [wifi-yes]-Linden,NJ",531 N Wood Ave, Linden,NJ,7036 +-74.631989,40.515156,"DD/BR [drivethru-yes] [wifi-yes]-Hillsborough,NJ",315 Rt 206, Hillsborough,NJ,8844 +-74.61961,40.65567,"DD [drivethru-no] [wifi-yes]-Basking Ridge,NJ",558 Allen Road, Basking Ridge,NJ,7920 +-74.69844,40.78226,"DD [drivethru-no] [wifi-yes]-Chester,NJ",120 Rte 206 & Old Gladstone Rd, Chester,NJ,7930 +-74.77092,40.784308,"DD/BR [drivethru-no] [wifi-no]-Long Valley,NJ",62 East Mill Road [Route 24 And Old Farmers Road], Long Valley,NJ,7853 +-75.171127,40.698414,"DD [drivethru-yes] [wifi-yes]-Phillipsburg,NJ",853 Memorial Pkwy, Phillipsburg,NJ,8865 +-75.17628,40.69744,"DD [drivethru-yes] [wifi-yes]-Phillipsburg,NJ",712 Memorial Parkway, Phillipsburg,NJ,8865 +-74.842033,40.814667,"DD [drivethru-no] [wifi-yes]-Hackettstown,NJ",1885 State Route 57 [Suite 343], Hackettstown,NJ,7840 +-74.84576,40.72544,"DD [drivethru-no] [wifi-no]-Califon,NJ",429 Route 513, Califon,NJ,7830 +-74.353119,40.597153,"DD/BR [drivethru-no] [wifi-yes]-Edison,NJ",976-977 Inman Ave, Edison,NJ,8820 +-74.82413,40.8437,"DD [drivethru-yes] [wifi-yes]-Hackettstown,NJ",170 Mountain Ave, Hackettstown,NJ,7840 +-74.29002,40.71747,"DD [drivethru-no] [wifi-yes]-Vauxhall,NJ",2445 Springfield Ave, Vauxhall,NJ,7088 +-74.852198,40.502595,"DD [drivethru-yes] [wifi-yes]-Flemington,NJ",302 US Hwy 202 [Carrier Rt C004], Flemington,NJ,8822 +-74.85789,40.44082,"DD [drivethru-no] [wifi-yes]-Ringoes,NJ",1019 Route 202, Ringoes,NJ,8551 +-74.855584,40.50193,"DD [drivethru-no] [wifi-no]-Flemington,NJ",12 State Rt 12, Flemington,NJ,8822 +-74.42485,40.61778,"DD/BR [drivethru-no] [wifi-yes]-Plainfield,NJ",215 West Front Street, Plainfield,NJ,7060 +-74.41323,40.58239,"DD [drivethru-no] [wifi-yes]-South Plainfield,NJ",114 Maple Ave, South Plainfield,NJ,7080 +-74.406334,40.642639,"DD [drivethru-no] [wifi-yes]-Plainfield,NJ",1469 E Front St, Plainfield,NJ,7062 +-74.445259,40.623066,"DD [drivethru-no] [wifi-no]-North Plainfield,NJ",885 US Highway 22, North Plainfield,NJ,7060 +-74.91048,40.64643,"DD [drivethru-no] [wifi-yes]-Clinton,NJ",1707 State Route 31, Clinton,NJ,8809 +-74.574509,40.569496,"DD [drivethru-no] [wifi-yes]-Bridgewater,NJ",477 E Union Ave, Bridgewater,NJ,8807 +-74.8963,40.63949,"DD/BR [drivethru-no] [wifi-yes]-Clinton,NJ",186 Center St, Clinton,NJ,8809 +-74.62257,40.56498,"DD [drivethru-no] [wifi-yes]-Somerville,NJ",93 Route 206, Somerville,NJ,8876 +-74.98625,40.7582,"DD [drivethru-no] [wifi-yes]-Washington,NJ",156 SR-31, Washington,NJ,7882 +-74.260826,40.705666,"DD [drivethru-no] [wifi-yes]-Union,NJ",1451 Stuyvesant Ave, Union,NJ,7083 +-74.612358,40.568249,"DD [drivethru-no] [wifi-yes]-Somerville,NJ",19 W Main St, Somerville,NJ,8876 +-74.43781,40.68626,"DD [drivethru-no] [wifi-yes]-Berkeley Heights,NJ",384 Springfield Ave, Berkeley Heights,NJ,7922 +-74.639464,40.64715,"DD/BR [drivethru-no] [wifi-yes]-Bedminster,NJ",1109 Route 202/206 And Washington Valley Road, Bedminster,NJ,8807 +-74.30315,40.6344,"DD [drivethru-no] [wifi-yes]-Cranford,NJ",1230 Raritan Rd, Cranford,NJ,7016 +-74.49914,40.6674,"DD [drivethru-no] [wifi-yes]-Stirling,NJ",1001 Valley Rd, Stirling,NJ,7980 +-74.55112,40.68286,"DD [drivethru-no] [wifi-yes]-Basking Ridge,NJ",450 S Finley Avenue, Basking Ridge,NJ,7920 +-74.26746,40.67664,"DD [drivethru-no] [wifi-yes]-Union,NJ",320 Chestnut St, Union,NJ,7083 +-74.265839,40.66153,"DD [drivethru-no] [wifi-yes]-Roselle Park,NJ",47 W Westfield Ave, Roselle Park,NJ,7204 +-74.529236,40.655346,"DD [drivethru-no] [wifi-yes]-Basking Ridge,NJ",413 King George Rd [Bldg D], Basking Ridge,NJ,7920 +-74.69702,40.56282,"DD [drivethru-no] [wifi-no]-Branchburg,NJ",1059 Route 202 N [Unit 9], Branchburg,NJ,8876 +-74.4175,40.5592,"DD [drivethru-no] [wifi-yes]-South Plainfield,NJ",110 Durham Ave Suite 136, South Plainfield,NJ,7080 +-74.443077,40.631199,"DD/BR [drivethru-no] [wifi-yes]-Watchung,NJ",750 Somerset St, Watchung,NJ,7069 +-74.72479,40.61224,"DD [drivethru-no] [wifi-yes]-Somerville,NJ",3549 US Highway 22, Somerville,NJ,8876 +-74.404709,40.706753,"DD [drivethru-no] [wifi-yes]-New Providence,NJ",1255 Springfield Ave, New Providence,NJ,7974 +-74.23804,40.63226,"DD [drivethru-no] [wifi-no]-Linden,NJ",701 E Edgar Rd [Hess], Linden,NJ,7036 +-74.504013,39.427174,"DD [drivethru-yes] [wifi-no]-Absecon,NJ",300 E White Horse Pike, Absecon,NJ,8201 +-74.65021,40.67988,"DD [drivethru-no] [wifi-no]-Bedminster,NJ",1525 Us Highway 206, Bedminster,NJ,7921 +-74.222931,40.659317,"DD [drivethru-no] [wifi-yes]-Elizabeth,NJ",236 Rahway Ave, Elizabeth,NJ,7202 +-74.587104,40.542439,"DD [drivethru-no] [wifi-yes]-Manville,NJ",101 South Main Street, Manville,NJ,8807 +-74.400329,40.595853,"DD [drivethru-no] [wifi-yes]-South Plainfield,NJ",2007 Park Ave, South Plainfield,NJ,7080 +-75.07319,40.72216,"DD [drivethru-yes] [wifi-yes]-Stewartsville,NJ",2437 State Route 57, Stewartsville,NJ,8886 +-74.29066,40.67614,"DD [drivethru-no] [wifi-yes]-Kenilworth,NJ",534 Boulevard, Kenilworth,NJ,7033 +-74.64199,40.50645,"DD [drivethru-no] [wifi-no]-Hillsborough,NJ",411 Us Highway 206 [Woods Tavern Shopping Center], Hillsborough,NJ,8844 +-74.215523,40.659023,"DD [drivethru-yes] [wifi-yes]-Elizabeth,NJ",211 S Broad St, Elizabeth,NJ,7202 +-74.219749,40.670338,"DD [drivethru-no] [wifi-yes]-Elizabeth,NJ",370 Morris Ave, Elizabeth,NJ,7208 +-74.206528,40.684456,"DD [drivethru-yes] [wifi-yes]-Elizabeth,NJ",920 Newark Ave, Elizabeth,NJ,7208 +-74.214828,40.646133,"DD [drivethru-yes] [wifi-yes]-Elizabeth,NJ",624 Bayway Ave, Elizabeth,NJ,7202 +-74.197411,40.653278,"DD/BR [drivethru-yes] [wifi-yes]-Elizabeth,NJ",460 Elizabeth Ave, Elizabeth,NJ,7206 +-74.21392,40.67226,"DD [drivethru-no] [wifi-yes]-Elizabeth,NJ",434-438 North Broad St, Elizabeth,NJ,7208 +-74.3837,40.64093,"DD [drivethru-no] [wifi-yes]-Fanwood,NJ",257 South Ave, Fanwood,NJ,7023 +-74.40074,40.65634,"DD [drivethru-no] [wifi-yes]-Scotch Plains,NJ",1985 Us Hwy 22, Scotch Plains,NJ,7076 +-74.27361,40.64425,"DD [drivethru-no] [wifi-yes]-Roselle,NJ",1001 Wood Ave, Roselle,NJ,7203 +-74.23379,40.66372,"DD [drivethru-no] [wifi-yes]-Elizabeth,NJ",186 Elmora Ave, Elizabeth,NJ,7202 +-74.23616,40.69384,"DD [drivethru-no] [wifi-yes]-Hillside,NJ",1171 Liberty Ave, Hillside,NJ,7205 +-74.38138,40.53038,"DD [drivethru-yes] [wifi-yes]-Edison,NJ",2193 Route 27, Edison,NJ,8817 +-74.198395,40.675739,"DD [drivethru-no] [wifi-yes]-Elizabeth,NJ",701 Spring St, Elizabeth,NJ,7201 +-74.375069,40.727802,"DD [drivethru-no] [wifi-yes]-Summit,NJ",545 Morris Ave, Summit,NJ,7901 +-74.35717,40.71688,"DD [drivethru-no] [wifi-yes]-Summit,NJ",33 Union Pl, Summit,NJ,7901 +-74.28949,40.65659,"DD [drivethru-no] [wifi-yes]-Cranford,NJ",620 South Ave E, Cranford,NJ,7016 +-74.29634,40.65723,"DD [drivethru-no] [wifi-yes]-Cranford,NJ",333 North Ave E, Cranford,NJ,7016 +-74.37738,40.5157,"DD [drivethru-no] [wifi-yes]-Edison,NJ",517 Old Post Rd, Edison,NJ,8817 +-74.25345,40.64483,"DD [drivethru-yes] [wifi-yes]-Roselle,NJ",843 St Georges Ave, Roselle,NJ,7203 +-74.286369,40.677193,"DD/BR [drivethru-no] [wifi-yes]-Kenilworth,NJ",705 Boulevard, Kenilworth,NJ,7033 +-74.918974,40.626901,"DD [drivethru-no] [wifi-no]-Clinton,NJ",34 Walmart Plz, Clinton,NJ,8809 +-74.828354,40.64373,"DD [drivethru-no] [wifi-no]-Lebanon,NJ",1255 Us Highway 22 E, Lebanon,NJ,8833 +-74.38609,40.6653,"DD [drivethru-yes] [wifi-yes]-Scotch Plains,NJ",2560 US Highway 22, Scotch Plains,NJ,7076 +-74.32343,40.65353,"DD/BR [drivethru-no] [wifi-yes]-Garwood,NJ",323 North Ave, Garwood,NJ,7027 +-74.69176,40.60325,"DD [drivethru-no] [wifi-no]-Branchburg,NJ",3166 Route 22 [Shoprite], Branchburg,NJ,8876 +-74.61152,40.58084,"DD [drivethru-no] [wifi-yes]-Somerville,NJ",930 US Highway 22, Somerville,NJ,8876 +-74.974821,40.733278,"DD [drivethru-yes] [wifi-yes]-Washington,NJ",345 SR 31 S, Washington,NJ,7882 +-75.146393,40.680119,"DD [drivethru-yes] [wifi-no]-Phillipsburg,NJ",1312 US 22 East, Phillipsburg,NJ,8865 +-74.924736,39.915894,"DD [drivethru-no] [wifi-yes]-Marlton,NJ",100 Church Rd, Marlton,NJ,8053 +-75.10407,39.94128,"DD [drivethru-no] [wifi-no]-Camden,NJ",1420 Admiral Wilson Boulevard [Hess], Camden,NJ,8109 +-75.06813,39.837257,"DD [drivethru-yes] [wifi-yes]-Glendora,NJ",320 S Black Horse Pike, Glendora,NJ,8029 +-75.074821,39.843376,"DD [drivethru-no] [wifi-yes]-Runnemede,NJ",301 Evesham Rd, Runnemede,NJ,8078 +-75.07837,39.86397,"DD [drivethru-no] [wifi-yes]-Bellmawr,NJ",220 South Black Horse Pike, Bellmawr,NJ,8031 +-75.000832,39.739208,"DD [drivethru-yes] [wifi-yes]-Sicklerville,NJ",583 Berlin Cross Keys Rd, Sicklerville,NJ,8081 +-75.12037,39.70319,"DD [drivethru-yes] [wifi-yes]-Glassboro,NJ",658 Delsea Drive, Glassboro,NJ,8028 +-75.04905,39.91021,"DD [drivethru-no] [wifi-no]-Westmont,NJ",145 Haddon Avenue, Westmont,NJ,8108 +-75.087334,39.921257,"DD [drivethru-no] [wifi-yes]-Collingswood,NJ",5 E Crescent Blvd, Collingswood,NJ,8108 +-75.124641,39.82864,"DD [drivethru-yes] [wifi-yes]-Deptford,NJ",1399 North Delsea Dr, Deptford,NJ,8096 +-75.159203,39.827282,"DD [drivethru-yes] [wifi-yes]-Woodbury,NJ",610 Mantua Ave, Woodbury,NJ,8096 +-75.17065,39.82693,"DD [drivethru-yes] [wifi-yes]-West Deptford,NJ",1007 Kings Highway, West Deptford,NJ,8096 +-74.918709,39.966366,"DD [drivethru-no] [wifi-no]-Mount Laurel,NJ",3601 Rt 38 Martin Liquors, Mount Laurel,NJ,8054 +-74.991982,39.997238,"DD [drivethru-no] [wifi-yes]-Cinnaminson,NJ",285 Rt 130 S, Cinnaminson,NJ,8077 +-75.039391,39.423435,"DD [drivethru-no] [wifi-yes]-Millville,NJ",2291 N 2nd St [Walmart], Millville,NJ,8332 +-74.991547,39.997307,"DD [drivethru-no] [wifi-yes]-Cinnaminson,NJ",1102 N Rt 130, Cinnaminson,NJ,8077 +-75.0114,39.8388,"DD [drivethru-no] [wifi-yes]-Somerdale,NJ",150 S White Horse Pike, Somerdale,NJ,8083 +-75.334427,39.647736,"DD [drivethru-yes] [wifi-no]-Woodstown,NJ",300 West Ave Unit C, Woodstown,NJ,8098 +-74.89933,39.770817,"DD [drivethru-yes] [wifi-yes]-Atco,NJ",302 White Horse Pike [Town Square Ste A1], Atco,NJ,8004 +-74.951508,39.803661,"DD [drivethru-yes] [wifi-yes]-Berlin,NJ",206 W White Horse Pike, Berlin,NJ,8009 +-74.93785,39.79348,"DD [drivethru-yes] [wifi-yes]-Berlin,NJ",111 Cross Keys Road, Berlin,NJ,8009 +-74.92657,39.78946,"DD [drivethru-yes] [wifi-yes]-Berlin,NJ",235 S White Horse Pike, Berlin,NJ,8009 +-74.967873,39.716335,"DD [drivethru-yes] [wifi-yes]-Sicklerville,NJ",334 Sicklerville Rd, Sicklerville,NJ,8081 +-74.926182,39.514484,"DD [drivethru-yes] [wifi-no]-Buena,NJ",744 S Harding Hwy, Buena,NJ,8310 +-75.04268,39.49175,"DD [drivethru-yes] [wifi-yes]-Vineland,NJ",360 N Delsea Drive, Vineland,NJ,8360 +-75.02137,39.478607,"DD [drivethru-yes] [wifi-yes]-Vineland,NJ",709 E Chestnut Ave, Vineland,NJ,8360 +-74.97642,39.94166,"DD [drivethru-no] [wifi-yes]-Maple Shade,NJ",2891 State Highway 73 South [Clover Plaza], Maple Shade,NJ,8052 +-75.068092,39.933926,"DD [drivethru-no] [wifi-no]-Pennsauken,NJ",5245 Marleton Pike Rt 70 West, Pennsauken,NJ,8109 +-75.027222,39.94656,"DD [drivethru-no] [wifi-yes]-Cherry Hill,NJ",909 Church Rd, Cherry Hill,NJ,8002 +-75.0371,39.92053,"DD [drivethru-no] [wifi-yes]-Cherry Hill,NJ",2121 Route 70 West, Cherry Hill,NJ,8002 +-75.03614,39.93729,"DD [drivethru-no] [wifi-yes]-Cherry Hill,NJ",1410 Route 38 Chapel Ave, Cherry Hill,NJ,8002 +-75.07653,39.93717,"DD [drivethru-no] [wifi-no]-Pennsauken,NJ",6807 S Route 130 [Hess], Pennsauken,NJ,8110 +-75.049889,39.963451,"DD [drivethru-no] [wifi-yes]-Pennsauken,NJ",6830 S Crescent Blvd, Pennsauken,NJ,-9109 +-74.9581,39.9434,"DD [drivethru-no] [wifi-yes]-Moorestown,NJ",1670 Nixon Drive, Moorestown,NJ,8057 +-75.09751,39.9082,"DD [drivethru-yes] [wifi-yes]-Camden,NJ",2806 Mount Ephraim Avenue, Camden,NJ,8104 +-75.007136,39.858854,"DD [drivethru-yes] [wifi-no]-Voorhees,NJ",11 S Burnt Mill Rd, Voorhees,NJ,8043 +-74.884109,39.970009,"DD [drivethru-no] [wifi-yes]-Mount Laurel,NJ",3211 Rt 38, Mount Laurel,NJ,8054 +-74.943092,39.895016,"DD [drivethru-no] [wifi-yes]-Marlton,NJ",901 Old Marlton Pike West, Marlton,NJ,8053 +-75.060944,39.731403,"DD [drivethru-yes] [wifi-yes]-Turnersville,NJ",460 Hursville Crosskeys Rd, Turnersville,NJ,8012 +-75.08553,39.76429,"DD [drivethru-yes] [wifi-yes]-Sewell,NJ",300 Egg Harbor Road, Sewell,NJ,8080 +-75.113174,39.746517,"DD [drivethru-yes] [wifi-yes]-Sewell,NJ",604 Rt 47, Sewell,NJ,8012 +-75.04228,39.86952,"DD [drivethru-yes] [wifi-no]-Lawnside,NJ",263 White Horse Pike North, Lawnside,NJ,8045 +-75.11919,39.94398,"DD [drivethru-no] [wifi-yes]-Camden,NJ",16 S Broadway St, Camden,NJ,8102 +-75.27754,39.75695,"DD [drivethru-yes] [wifi-yes]-Swedesboro,NJ",1111 Route 322, Swedesboro,NJ,8085 +-75.1503,39.7912,"DD [drivethru-yes] [wifi-yes]-Wenonah,NJ",1100 Mantua Pike, Wenonah,NJ,8090 +-75.13358,39.76574,"DD [drivethru-no] [wifi-yes]-Sewell,NJ",660 Woodbury Glassboro Road [Timberline Shopping Ctr], Sewell,NJ,8080 +-74.971725,40.040024,"DD [drivethru-yes] [wifi-yes]-Delran,NJ",130 N Chester Ave, Delran,NJ,8075 +-75.120682,39.888088,"DD [drivethru-no] [wifi-yes]-Gloucester City,NJ",455 S Broadway, Gloucester City,NJ,8030 +-75.23322,39.42543,"DD [drivethru-yes] [wifi-no]-Bridgeton,NJ",125 South Pearl Street, Bridgeton,NJ,8302 +-75.20526,39.46319,"DD [drivethru-yes] [wifi-yes]-Upper Deerfield,NJ",10 Landis Avenue, Upper Deerfield,NJ,8302 +-74.970428,39.837311,"DD [drivethru-yes] [wifi-no]-Gibbsboro,NJ",1 S Lake Dr, Gibbsboro,NJ,8026 +-74.98646,39.85015,"DD [drivethru-yes] [wifi-yes]-Voorhees,NJ",1120 White Horse Road, Voorhees,NJ,8043 +-75.00747,39.91338,"DD [drivethru-yes] [wifi-yes]-Cherry Hill,NJ",201 Marlton Pike East, Cherry Hill,NJ,8034 +-74.971741,39.904892,"DD [drivethru-no] [wifi-yes]-Cherry Hill,NJ",1860 Marlton Pike E, Cherry Hill,NJ,8003 +-74.964462,39.902016,"DD [drivethru-no] [wifi-yes]-Cherry Hill,NJ",2075 Marleton Pike E Rt 70, Cherry Hill,NJ,8003 +-74.96508,39.914116,"DD [drivethru-no] [wifi-yes]-Cherry Hill,NJ",2060 Springdale Rd, Cherry Hill,NJ,8003 +-75.255608,39.82613,"DD [drivethru-no] [wifi-yes]-Gibbstown,NJ",804 E Broad St, Gibbstown,NJ,8027 +-75.02746,39.80404,"DD [drivethru-yes] [wifi-yes]-Clementon,NJ",1277 Blackwood Clementon Road, Clementon,NJ,8021 +-74.98563,39.81264,"DD [drivethru-no] [wifi-no]-Lindenwold,NJ",851 S White Horse Pike, Lindenwold,NJ,8021 +-74.990425,39.788769,"DD [drivethru-yes] [wifi-yes]-Pine Hill,NJ",501 Erial Rd, Pine Hill,NJ,8021 +-75.06134,39.39852,"DD [drivethru-yes] [wifi-yes]-Millville,NJ",1104 West Main Street, Millville,NJ,8332 +-75.05696,39.96901,"DD [drivethru-yes] [wifi-no]-Pennsauken,NJ",6324 North Crescent Blvd, Pennsauken,NJ,8110 +-75.08289,39.87419,"DD [drivethru-yes] [wifi-yes]-Haddon Heights,NJ",709 Black Horse Pike, Haddon Heights,NJ,8035 +-75.09001,39.65141,"DD [drivethru-yes] [wifi-yes]-Clayton,NJ",302 S Delsea Drive, Clayton,NJ,8312 +-75.48735,39.68699,"DD [drivethru-no] [wifi-no]-Carneys Point,NJ",327 Slapes Corner Rd [All American Plaza], Carneys Point,NJ,8069 +-75.494641,39.677456,"DD [drivethru-yes] [wifi-yes]-Pennsville,NJ",421 N Broadway, Pennsville,NJ,8070 +-74.945778,39.919331,"DD [drivethru-no] [wifi-no]-Mount Laurel,NJ",1215 SR 73, Mount Laurel,NJ,8054 +-75.024989,39.721932,"DD [drivethru-yes] [wifi-yes]-Turnersville,NJ",2801 Rt 42, Turnersville,NJ,8081 +-74.99173,39.68835,"DD [drivethru-yes] [wifi-yes]-Williamstown,NJ",50 S Black Horse Pike, Williamstown,NJ,8094 +-75.039948,39.82061,"DD [drivethru-yes] [wifi-yes]-Clementon,NJ",1238 Chews Landing Rd, Clementon,NJ,8021 +-75.358879,39.760174,"DD [drivethru-yes] [wifi-yes]-Logan Township,NJ",1703 Center Square Rd, Logan Township,NJ,8085 +-74.872475,39.978409,"DD [drivethru-yes] [wifi-yes]-Mount Laurel,NJ",3101 Marne Hwy, Mount Laurel,NJ,8054 +-74.984116,39.957066,"DD [drivethru-no] [wifi-yes]-Moorestown,NJ",200 West Camden Ave [Moorestown Shopping Center], Moorestown,NJ,8057 +-75.035538,39.791447,"DD/BR [drivethru-yes] [wifi-yes]-Blackwood,NJ",651 College Dr, Blackwood,NJ,8012 +-75.048912,39.773357,"DD [drivethru-yes] [wifi-yes]-Turnersville,NJ",5751 Rt 42 South, Turnersville,NJ,8012 +-75.093269,39.828392,"DD [drivethru-no] [wifi-yes]-Deptford,NJ",1901 Deptford Center Rd, Deptford,NJ,8096 +-75.046708,39.755564,"DD [drivethru-yes] [wifi-yes]-Turnersville,NJ",5400 Rt 42, Turnersville,NJ,8012 +-75.017799,39.892433,"DD [drivethru-no] [wifi-yes]-Cherry Hill,NJ",1434 Brace Rd, Cherry Hill,NJ,8034 +-74.00931,40.22728,"DD/BR [drivethru-yes] [wifi-yes]-Asbury Park,NJ",1401 Main Street, Asbury Park,NJ,7712 +-74.412338,40.501099,"DD [drivethru-no] [wifi-yes]-Edison,NJ",1714 Woodbridge Ave, Edison,NJ,8817 +-74.43323,40.55336,"DD [drivethru-no] [wifi-no]-Piscataway,NJ",1016 Stelton Rd, Piscataway,NJ,8854 +-74.47633,40.58599,"DD [drivethru-yes] [wifi-yes]-Middlesex,NJ",130 Bound Brook Road, Middlesex,NJ,8846 +-74.167725,40.067692,"DD [drivethru-yes] [wifi-yes]-Lakewood,NJ",1215 Rt 70 [Airport Rd], Lakewood,NJ,8701 +-74.1717,40.053944,"DD [drivethru-yes] [wifi-no]-Lakewood,NJ",1650 Hwy 70, Lakewood,NJ,8701 +-74.22002,40.05793,"DD/BR [drivethru-yes] [wifi-yes]-Lakewood,NJ",1091 River Avenue [Todd Plaza], Lakewood,NJ,8701 +-74.15658,40.0817,"DD/BR [drivethru-yes] [wifi-yes]-Lakewood,NJ",1500 Ocean Avenue [Todd Plaza], Lakewood,NJ,8701 +-74.253853,40.120739,"DD/BR [drivethru-yes] [wifi-yes]-Jackson,NJ",400 South New Prospect Rd, Jackson,NJ,8527 +-74.514041,40.433199,"DD [drivethru-no] [wifi-no]-North Brunswick,NJ",2800 Rt 1 [Hess], North Brunswick,NJ,8902 +-74.04761,40.28057,"DD [drivethru-no] [wifi-yes]-Eatontown,NJ",315 State Route 35 S, Eatontown,NJ,7724 +-74.3421,40.11219,"DD [drivethru-no] [wifi-no]-Jackson,NJ",8 Bennetts Mills Road [Hess], Jackson,NJ,8527 +-74.09126,40.21051,"DD [drivethru-yes] [wifi-yes]-Neptune,NJ",3701 State Route 33, Neptune,NJ,7753 +-74.080238,40.235775,"DD [drivethru-yes] [wifi-no]-Tinton Falls,NJ",4060A Asbury Ave, Tinton Falls,NJ,7753 +-74.11095,40.0462,"DD [drivethru-no] [wifi-yes]-Brick,NJ",602 Mantoloking Road, Brick,NJ,8723 +-74.07114,40.22713,"DD/BR [drivethru-yes] [wifi-yes]-Neptune,NJ",3351 Route 66, Neptune City,NJ,7753 +-74.215607,40.008083,"DD [drivethru-yes] [wifi-no]-Toms River,NJ",1594 Lakewood Rd Rt 9, Toms River,NJ,8755 +-74.086098,40.07703,"DD [drivethru-no] [wifi-yes]-Point Pleasant,NJ",3201 Bridge Ave [Bridge Plaza], Point Pleasant,NJ,8742 +-74.22396,40.13345,"DD [drivethru-yes] [wifi-yes]-Howell,NJ",4862 Us Highway 9, Howell,NJ,7731 +-74.620064,40.317394,"DD [drivethru-no] [wifi-yes]-Princeton Junction,NJ",Rt 571 & Cranbury Rd [Ellsworth Center Unit C], Princeton Junction,NJ,8550 +-73.98755,40.29663,"DD [drivethru-no] [wifi-yes]-Long Branch,NJ",231 3rd Avenue, Long Branch,NJ,7740 +-74.000557,40.307186,"DD [drivethru-no] [wifi-yes]-Long Branch,NJ",492 Joline Ave Rt 36 East, Long Branch,NJ,7740 +-74.070877,40.216919,"DD [drivethru-no] [wifi-no]-Neptune,NJ",2200 SR 66 [ShopRite], Neptune,NJ,7753 +-74.24409,40.2481,"DD [drivethru-no] [wifi-yes]-Freehold,NJ",843 State Route 33 [Cousins Plaza Unit 10], Freehold,NJ,7728 +-74.25014,40.18674,"DD/BR [drivethru-yes] [wifi-yes]-Howell,NJ",1994 Route 9 S, Howell,NJ,7731 +-74.283653,40.556679,"DD [drivethru-no] [wifi-yes]-Woodbridge,NJ",458 Amboy Ave, Woodbridge,NJ,7095 +-74.29054,40.56915,"DD [drivethru-no] [wifi-no]-Woodbridge,NJ",887 St Georges Ave [Shop Rite], Woodbridge,NJ,7095 +-74.263168,40.562687,"DD [drivethru-no] [wifi-yes]-Port Reading,NJ",301 Port Reading Ave [Mocci Plaza], Port Reading,NJ,7064 +-74.285398,40.579638,"DD [drivethru-yes] [wifi-yes]-Avenel,NJ",971 Route 1, Avenel,NJ,7001 +-74.2998,40.56372,"DD/BR [drivethru-yes] [wifi-yes]-Iselin,NJ",801 Us Highway 1 South, Iselin,NJ,8830 +-74.06423,40.33821,"DD [drivethru-no] [wifi-yes]-Shrewsbury,NJ",15 Newman Springs Road East, Shrewsbury,NJ,7702 +-74.286362,40.123528,"DD/BR [drivethru-yes] [wifi-yes]-Jackson,NJ",715 Bennets Mills Rd, Jackson,NJ,8527 +-74.145279,39.951393,"DD [drivethru-yes] [wifi-yes]-Toms River,NJ",1902 Rt 37 E, Toms River,NJ,8753 +-74.073524,39.95075,"DD [drivethru-no] [wifi-no]-Seaside Heights,NJ",Boardwalk and Hamilton Ave [Seaside Heights Boardwalk], Seaside Heights,NJ,8751 +-74.06827,39.97402,"DD/BR [drivethru-no] [wifi-yes]-Lavallette,NJ",604 Grand Central Avenue, Lavallette,NJ,8735 +-74.073324,39.94375,"DD [drivethru-no] [wifi-no]-Seaside Heights,NJ",Casino Beach Pier [Midway Buildings], Seaside Heights,NJ,8751 +-74.434067,40.498154,"DD/BR [drivethru-no] [wifi-no]-Highland Park,NJ",55 Raritan Ave Rt 27, Highland,NJ,8904 +-74.283661,40.51313,"DD [drivethru-no] [wifi-yes]-Perth Amboy,NJ",482 Smith St, Perth Amboy,NJ,8861 +-74.404808,40.513424,"DD [drivethru-yes] [wifi-yes]-Edison,NJ",1790 Lincoln Hwy, Edison,NJ,8817 +-74.12988,40.44546,"DD [drivethru-yes] [wifi-yes]-Keansburg,NJ",171 Main Street, Keansburg,NJ,7734 +-74.0954,40.41467,"DD [drivethru-no] [wifi-yes]-Belford,NJ",103 Leonardville Road, Belford,NJ,7718 +-74.34626,40.272614,"DD [drivethru-no] [wifi-yes]-Manalapan,NJ",700 Rt 33, Manalapan,NJ,7726 +-74.1312,40.0678,"DD [drivethru-no] [wifi-yes]-Brick,NJ",909 Route 70, Brick,NJ,8724 +-74.253502,40.303299,"DD/BR [drivethru-no] [wifi-yes]-Marlboro,NJ",2 Ryan Rd, Marlboro,NJ,7746 +-74.42442,40.54228,"DD/BR [drivethru-no] [wifi-yes]-Piscataway,NJ",1254 Stelton Rd, Piscataway,NJ,8854 +-74.39668,40.50528,"DD [drivethru-yes] [wifi-yes]-Edison,NJ",490 Us Highway 1, Edison,NJ,8817 +-74.050461,40.205494,"DD [drivethru-no] [wifi-yes]-Neptune City,NJ",2 Brighton Ave, Neptune City,NJ,7753 +-74.01378,40.21481,"DD [drivethru-yes] [wifi-yes]-Asbury Park,NJ",20 Main Street, Asbury Park,NJ,7712 +-74.24593,40.33352,"DD [drivethru-no] [wifi-yes]-Marlboro,NJ",460 County Road 520, Marlboro,NJ,7746 +-74.24645,40.4566,"DD [drivethru-yes] [wifi-yes]-Laurence Harbor,NJ",4 Lawrence Harbor Road, Laurence Harbor,NJ,8879 +-74.5436,40.56767,"DD [drivethru-no] [wifi-yes]-Bound Brook,NJ",404 W Union Avenue, Bound Brook,NJ,8805 +-74.199104,39.963612,"DD [drivethru-no] [wifi-no]-Toms River,NJ",2 Route 37 W [Shop Rite], Toms River,NJ,8753 +-74.50085,40.59013,"DD [drivethru-no] [wifi-yes]-Green Brook,NJ",326 Us Highway 22, Green Brook,NJ,8812 +-74.465347,40.609169,"DD [drivethru-no] [wifi-yes]-Green Brook,NJ",17 US Hwy 22, Green Brook,NJ,8812 +-74.485588,40.598438,"DD [drivethru-yes] [wifi-yes]-Green Brook,NJ",227 Rt 22 East, Green Brook,NJ,8812 +-74.28537,40.69981,"DD [drivethru-no] [wifi-yes]-Woodbridge,NJ",999 Rahway Ave, Woodbridge,NJ,7095 +-74.027245,40.209183,"DD [drivethru-yes] [wifi-yes]-Neptune,NJ",1400 Corlies Ave, Neptune,NJ,7753 +-74.299252,40.402532,"DD/BR [drivethru-yes] [wifi-yes]-Old Bridge,NJ",164 34 N [Park Plaza Mall], Old Bridge,NJ,8857 +-74.32547,40.531075,"DD [drivethru-no] [wifi-no]-Edison,NJ",789 Amboy Ave [Hess], Edison,NJ,8837 +-74.31549,40.52881,"DD [drivethru-no] [wifi-yes]-Fords,NJ",583 New Brunswick Ave, Fords,NJ,8863 +-74.29671,40.47666,"DD [drivethru-no] [wifi-yes]-Sayreville,NJ",528 Raritan Street, Sayreville,NJ,8872 +-74.295807,40.45977,"DD [drivethru-no] [wifi-no]-Sayreville,NJ",974 Rt 9 South [Hess], Sayreville,NJ,8879 +-74.29563,40.4598,"DD/BR [drivethru-no] [wifi-yes]-South Amboy,NJ",973 Us Highway 9 North, South Amboy,NJ,8879 +-74.281136,40.484993,"DD/BR [drivethru-no] [wifi-yes]-South Amboy,NJ",139/145 Broadway, South Amboy,NJ,8879 +-74.06404,40.08457,"DD/BR [drivethru-yes] [wifi-no]-Point Pleasant,NJ",216 Route 35 South, Point Pleasant,NJ,8742 +-74.04221,40.26613,"DD/BR [drivethru-no] [wifi-yes]-Oakhurst,NJ",2112 State Route 35, Oakhurst,NJ,7755 +-74.073753,40.165581,"DD/BR [drivethru-no] [wifi-yes]-Belmar,NJ",1732 SR 35 [Rt 35 & 18th Ave], Belmar,NJ,7719 +-74.015633,40.17205,"DD [drivethru-no] [wifi-yes]-Belmar,NJ",1601 Ocean Ave, Belmar,NJ,7719 +-74.025864,40.179157,"DD [drivethru-no] [wifi-yes]-Belmar,NJ",1007 Main St, Belmar,NJ,7719 +-74.319794,40.403366,"DD [drivethru-yes] [wifi-yes]-Old Bridge,NJ",2594 Rt 516, Old Bridge,NJ,8857 +-74.10062,40.39296,"DD [drivethru-no] [wifi-yes]-Middletown,NJ",865 State Route 35, Middletown,NJ,7748 +-74.03745,40.23785,"DD [drivethru-yes] [wifi-no]-Ocean,NJ",1015 State Route 35, Ocean,NJ,7712 +-74.443871,40.385189,"DD [drivethru-yes] [wifi-yes]-South Brunswick,NJ",805 Cranbury Rd, South Brunswick,NJ,8810 +-74.291107,40.551888,"DD [drivethru-no] [wifi-no]-Woodbridge,NJ",1021 US Hwy 9 S [Hess], Woodbridge,NJ,7095 +-74.305275,40.358807,"DD/BR [drivethru-yes] [wifi-yes]-Marlboro,NJ",34 Rt 9 North, Marlboro,NJ,7751 +-74.11515,40.398979,"DD [drivethru-no] [wifi-yes]-Middletown,NJ",1447 Hwy 35 North [ShopRite], Middletown,NJ,7748 +-74.340088,40.391537,"DD [drivethru-yes] [wifi-no]-Old Bridge,NJ",1449 Rt 18 South, Old Bridge,NJ,8857 +-74.306602,40.375511,"DD [drivethru-yes] [wifi-no]-Old Bridge,NJ",3683 Rt 9, Old Bridge,NJ,8857 +-74.222133,40.396391,"DD [drivethru-no] [wifi-no]-Aberdeen,NJ",318 Lloyd Rd [Shop Rite], Aberdeen,NJ,7747 +-74.279395,40.243483,"DD [drivethru-no] [wifi-yes]-Freehold,NJ",3633 Rt 9 N, Freehold,NJ,7728 +-74.29243,40.58529,"DD/BR [drivethru-no] [wifi-yes]-Avenel,NJ",1360 Saint Georges Ave, Avenel,NJ,7001 +-74.259842,40.608459,"DD [drivethru-yes] [wifi-yes]-Rahway,NJ",2105 Rt 1 North, Rahway,NJ,7065 +-74.30286,40.62193,"DD [drivethru-no] [wifi-yes]-Clark,NJ",196 Westfield Ave, Clark,NJ,7066 +-73.98441,40.28329,"DD [drivethru-no] [wifi-yes]-Long Branch,NJ",638 Ocean Avenue, Long Branch,NJ,7740 +-74.212494,40.419533,"DD [drivethru-no] [wifi-no]-Aberdeen,NJ",1137 Lloyd Rd [Stop & Shop], Aberdeen,NJ,7747 +-74.232109,40.40995,"DD [drivethru-no] [wifi-yes]-Matawan,NJ",952 SR 34, Matawan,NJ,7747 +-74.23357,40.43574,"DD/BR [drivethru-no] [wifi-yes]-Cliffwood,NJ",307 Cliffwood Avenue, Cliffwood,NJ,7721 +-74.25079,40.43174,"DD [drivethru-no] [wifi-yes]-Matawan,NJ",351d Matawan, Matawan,NJ,7747 +-74.56369,40.60236,"DD [drivethru-no] [wifi-yes]-Martinsville,NJ",1918 Washington Valley Rd, Martinsville,NJ,8836 +-74.311729,40.362114,"DD/BR [drivethru-no] [wifi-yes]-Old Bridge,NJ",1076 Rt 9, Old Bridge,NJ,8857 +-74.366043,40.574139,"DD [drivethru-no] [wifi-yes]-Edison,NJ",1957 Oak Tree Rd, Edison,NJ,8820 +-74.014404,40.302067,"DD [drivethru-yes] [wifi-yes]-West Long Branch,NJ",271 Hwy 36, West Long Branch,NJ,7764 +-74.240952,40.593002,"DD [drivethru-no] [wifi-yes]-Carteret,NJ",1245 Roosevelt Ave, Carteret,NJ,7008 +-74.5067,40.53556,"DD [drivethru-no] [wifi-yes]-Somerset,NJ",1760 Easton Ave, Somerset,NJ,8873 +-74.319473,40.310467,"DD [drivethru-yes] [wifi-yes]-Manalapan,NJ",285 Gordons Corner Rd, Manalapan,NJ,7726 +-74.310326,40.339092,"DD [drivethru-no] [wifi-yes]-Morganville,NJ",438 Union Hill Rd, Morganville,NJ,7751 +-74.064264,40.353246,"DD [drivethru-no] [wifi-no]-Red Bank,NJ",1 Riverview Plz [Riverview Medical Ctr], Red Bank,NJ,7701 +-74.084496,40.097775,"DD [drivethru-no] [wifi-yes]-Brielle,NJ",1007 Rt 70 [Lukoil], Brielle,NJ,8730 +-74.06295,40.084198,"DD [drivethru-no] [wifi-yes]-Point Pleasant,NJ",1039 Rt 88, Point Pleasant,NJ,8742 +-74.031601,40.123554,"DD [drivethru-no] [wifi-yes]-Sea Girt,NJ",State Hwy 35 [Sea Girt Mall], Sea Girt,NJ,8750 +-74.22754,40.1515,"DD/BR [drivethru-yes] [wifi-yes]-Howell,NJ",4199 Us Highway 9 N, Howell,NJ,7731 +-74.433182,40.346691,"DD/BR [drivethru-yes] [wifi-yes]-Jamesburg,NJ",200 Buckelew Ave, Jamesburg,NJ,8831 +-74.350273,40.356075,"DD [drivethru-no] [wifi-yes]-Old Bridge,NJ",169 Texas Rd & Englishtown Rd, Old Bridge,NJ,8857 +-74.438196,40.451508,"DD [drivethru-no] [wifi-yes]-Milltown,NJ",23 No Main St, Milltown,NJ,8850 +-74.17485,39.928993,"DD [drivethru-no] [wifi-no]-Bayville,NJ",125 Route 9 [Hess], Bayville,NJ,8721 +-74.18193,39.93418,"DD/BR [drivethru-yes] [wifi-yes]-Pine Beach,NJ",118 Route 9 North, Pine Beach,NJ,8741 +-74.288635,40.606136,"DD [drivethru-no] [wifi-yes]-Rahway,NJ",926 Saint Georges Ave, Rahway,NJ,7065 +-74.133171,40.435673,"DD [drivethru-no] [wifi-no]-Keansburg,NJ",Rt 36 & Main St, Keansburg,NJ,7734 +-74.10317,40.42587,"DD [drivethru-no] [wifi-yes]-Port Monmouth,NJ",State Highway 36 and Wilson Avenue, Port Monmouth,NJ,7758 +-74.345192,40.556137,"DD [drivethru-no] [wifi-yes]-Edison,NJ",30 Route 27, Edison,NJ,8820 +-74.34731,40.53657,"DD [drivethru-no] [wifi-yes]-Edison,NJ",1197 Amboy Ave, Edison,NJ,8837 +-74.14536,40.03243,"DD [drivethru-no] [wifi-yes]-Brick,NJ",14 Beaverson Boulevard, Brick,NJ,8723 +-74.142181,40.059914,"DD [drivethru-no] [wifi-no]-Brick,NJ",668 Rt 70 West ShopRite, Brick,NJ,8723 +-74.24195,40.62807,"DD [drivethru-yes] [wifi-yes]-Linden,NJ",126 East Edgar Rd, Linden,NJ,7036 +-74.265945,40.220516,"DD [drivethru-yes] [wifi-no]-Freehold,NJ",3263 Hwy 9, Freehold,NJ,7728 +-74.304581,40.241825,"DD/BR [drivethru-no] [wifi-yes]-Freehold,NJ",511 Soloman Way, Freehold,NJ,7728 +-74.050027,40.28342,"DD [drivethru-no] [wifi-no]-Eatontown,NJ",180 SR 35 S [Monmouth Mall], Eatontown,NJ,7724 +-74.144417,40.096893,"DD [drivethru-yes] [wifi-yes]-Brick,NJ",13 Lanes Mill Rd, Brick,NJ,8724 +-74.356918,40.302998,"DD/BR [drivethru-yes] [wifi-yes]-Englistown,NJ",14 Wilson Ave, Englishtown,NJ,7726 +-74.28712,40.51585,"DD/BR [drivethru-no] [wifi-yes]-Perth Amboy,NJ",587 Fayette St, Perth Amboy,NJ,8862 +-74.267624,40.508411,"DD [drivethru-no] [wifi-no]-Perth Amboy,NJ",113 Smith St, Perth Amboy,NJ,8861 +-74.396568,40.455162,"DD [drivethru-no] [wifi-yes]-East Brunswick,NJ",1422 W Prospect St [ShopRite], East Brunswick,NJ,8816 +-74.16749,40.29317,"DD [drivethru-no] [wifi-yes]-Colts Neck,NJ",26 Route 34 1st Flr, Colts Neck,NJ,7722 +-74.45537,40.58216,"DD [drivethru-yes] [wifi-yes]-Piscataway,NJ",421 South Washington Avenue, Piscataway,NJ,8854 +-74.469482,40.458946,"DD/BR [drivethru-no] [wifi-yes]-North Brunswick,NJ",1345 Rt 1, North Brunswick,NJ,8902 +-74.306862,40.336472,"DD [drivethru-no] [wifi-no]-Manalapan,NJ",336 US Hwy 9, Manalapan,NJ,7726 +-74.063332,40.307735,"DD [drivethru-yes] [wifi-yes]-Eatontown,NJ",148 Main Street, Eatontown,NJ,7724 +-74.26328,40.60492,"DD [drivethru-yes] [wifi-yes]-Rahway,NJ",1800 Us Highway 1, Rahway,NJ,7065 +-74.307037,40.629063,"DD [drivethru-no] [wifi-no]-Clark,NJ",76 Central Ave [Wakefern], Clark,NJ,7066 +-74.32502,40.598824,"DD [drivethru-no] [wifi-yes]-Colonia,NJ",539 Inman Ave, Colonia,NJ,7067 +-74.325786,40.547961,"DD [drivethru-yes] [wifi-yes]-Metuchen,NJ",77 US Hwy 1, Metuchen,NJ,8840 +-74.21928,40.10836,"DD [drivethru-no] [wifi-yes]-Lakewood,NJ",1700 Madison Avenue [ShopRite], Lakewood,NJ,8701 +-74.218697,40.113601,"DD [drivethru-yes] [wifi-yes]-Howell,NJ",6791 Rt 9 N, Howell,NJ,8701 +-74.11974,40.33102,"DD [drivethru-no] [wifi-yes]-Lincroft,NJ",661 Newman Springs Road, Lincroft,NJ,7738 +-74.284683,40.616432,"DD [drivethru-no] [wifi-yes]-Rahway,NJ",1655 St Georges Ave, Rahway,NJ,7065 +-74.264038,40.519203,"DD [drivethru-no] [wifi-yes]-Perth Amboy,NJ",626 State St, Perth Amboy,NJ,8861 +-74.291027,40.256967,"DD/BR [drivethru-no] [wifi-no]-Freehold,NJ",3710 Rt 9 [Freehold Raceway Mall], Freehold,NJ,7728 +-74.53286,40.56157,"DD/BR [drivethru-no] [wifi-yes]-Bound Brook,NJ",109 E Main Street, Bound Brook,NJ,8805 +-74.55148,40.56805,"DD [drivethru-no] [wifi-no]-Bound Brook,NJ",611 W Union Avenue [ShopRite], Bound Brook,NJ,8805 +-74.4858,40.43531,"DD [drivethru-yes] [wifi-no]-North Brunswick,NJ",2170 Us Highway 130 N, North Brunswick,NJ,8902 +-74.512672,40.434547,"DD [drivethru-no] [wifi-yes]-North Brunswick,NJ",2715 Rt 1 Lot 30 Block 74, North Brunswick,NJ,8902 +-74.516724,40.430836,"DD [drivethru-yes] [wifi-yes]-North Brunswick,NJ",2900 US 1, North Brunswick,NJ,8902 +-74.10065,40.07676,"DD/BR [drivethru-no] [wifi-yes]-Brick,NJ",2138 State Highway 88, Brick,NJ,8724 +-74.08032,40.1228,"DD [drivethru-no] [wifi-no]-Manasquan,NJ",2445 Highway 34 [ShopRite], Manasquan,NJ,8736 +-74.040428,40.409431,"DD [drivethru-no] [wifi-yes]-Atlantic Highlands,NJ",11 Rt 36, Atlantic Highlands,NJ,7716 +-74.13703,39.97462,"DD [drivethru-yes] [wifi-yes]-Toms River,NJ",911 Fischer Boulevard, Toms River,NJ,8753 +-74.398018,40.5411,"DD [drivethru-no] [wifi-yes]-Edison,NJ",260 Talmadge Rd, Edison,NJ,8817 +-74.21346,39.94084,"DD [drivethru-no] [wifi-yes]-Toms River,NJ",380 Dover Road, Toms River,NJ,8757 +-74.21014,39.98362,"DD/BR [drivethru-yes] [wifi-yes]-Toms River,NJ",1245 Lakewood Road, Toms River,NJ,8753 +-74.032082,40.150959,"DD [drivethru-no] [wifi-yes]-Spring Lake,NJ",7 SR 71, Spring Lake,NJ,7762 +-74.247473,39.977838,"DD/BR [drivethru-yes] [wifi-no]-Toms River,NJ",1111 Route 37 W, Toms River,NJ,8755 +-74.52131,40.38761,"DD [drivethru-no] [wifi-yes]-Monmouth Junction,NJ",495 Georges Road, Monmouth Junction,NJ,8852 +-74.5327,40.578175,"DD [drivethru-no] [wifi-no]-Bound Brook,NJ",Rt 22 Westbound [Hess], Bound Brook,NJ,8805 +-74.507927,40.57597,"DD [drivethru-no] [wifi-yes]-Middlesex,NJ",568 Union Ave, Middlesex,NJ,8846 +-74.495888,40.614639,"DD [drivethru-no] [wifi-yes]-Warren,NJ",177 Washington Valley Rd, Warren,NJ,7059 +-74.541084,40.528156,"DD [drivethru-yes] [wifi-yes]-Somerset,NJ",464C Elizabeth Ave, Somerset,NJ,8873 +-74.154633,39.912159,"DD/BR [drivethru-yes] [wifi-yes]-Bayville,NJ",477 US Hwy 9, Bayville,NJ,8721 +-74.17999,40.43399,"DD [drivethru-yes] [wifi-no]-Hazlet,NJ",1131 State Route 36, Hazlet,NJ,7730 +-74.20161,40.43677,"DD [drivethru-no] [wifi-yes]-Keyport,NJ",78 Broad Street, Keyport,NJ,7735 +-74.14754,40.00929,"DD [drivethru-yes] [wifi-yes]-Toms River,NJ",1781 Hooper Avenue, Toms River,NJ,8753 +-74.14596,40.01416,"DD [drivethru-no] [wifi-no]-Toms River,NJ",1879 Hooper Avenue [Hess], Toms River,NJ,8753 +-74.385737,40.431057,"DD/BR [drivethru-yes] [wifi-yes]-East Brunswick,NJ",680 State Route 18 N, East Brunswick,NJ,8816 +-74.387177,40.39362,"DD/BR [drivethru-yes] [wifi-yes]-Spotswood,NJ",434 Main St, Spotswood,NJ,8884 +-74.48881,40.51579,"DD [drivethru-yes] [wifi-yes]-Somerset,NJ",1067 Easton Ave, Somerset,NJ,8873 +-74.46024,40.47833,"DD [drivethru-no] [wifi-yes]-New Brunswick,NJ",18A Elizabeth Street, New Brunswick,NJ,8901 +-74.405876,40.465464,"DD [drivethru-no] [wifi-no]-East Brunswick,NJ",232 Route 18 [Hess], East Brunswick,NJ,8816 +-74.47339,40.48538,"DD [drivethru-yes] [wifi-yes]-New Brunswick,NJ",720 Somerset St, New Brunswick,NJ,8901 +-74.443466,40.494015,"DD [drivethru-no] [wifi-yes]-New Brunswick,NJ",335 George St, New Brunswick,NJ,8902 +-74.45194,40.46655,"DD [drivethru-no] [wifi-no]-North Brunswick,NJ",561 Milltown Road # 567, North Brunswick,NJ,8902 +-74.1957,39.95286,"DD [drivethru-no] [wifi-no]-Toms River,NJ",101 Washington St [Ocean County Library], Toms River,NJ,8753 +-74.18907,39.96343,"DD [drivethru-no] [wifi-yes]-Toms River,NJ",146 Route 37 East, Toms River,NJ,8753 +-74.40419,40.46299,"DD [drivethru-yes] [wifi-yes]-East Brunswick,NJ",256 State Route 18, East Brunswick,NJ,8816 +-74.40155,40.457779,"DD [drivethru-no] [wifi-yes]-East Brunswick,NJ",293 Rt 18 Ste A, East Brunswick,NJ,8816 +-74.381653,40.450897,"DD [drivethru-no] [wifi-yes]-South River,NJ",75 Main St, South River,NJ,8882 +-74.337807,40.431686,"DD [drivethru-yes] [wifi-yes]-Sayreville,NJ",4500 Bordentown Ave, Sayreville,NJ,8872 +-74.0698,40.35022,"DD [drivethru-no] [wifi-yes]-Red Bank,NJ",30 Water Street, Red Bank,NJ,7701 +-74.049794,40.120563,"DD [drivethru-no] [wifi-yes]-Manasquan,NJ",50 Union Ave, Manasquan,NJ,8736 +-74.010033,40.298588,"DD/BR [drivethru-no] [wifi-yes]-West Long Branch,NJ",840 Broadway, West Long Branch,NJ,7764 +-74.44647,40.49657,"DD/BR [drivethru-no] [wifi-yes]-New Brunswick,NJ",1 Rairoad Plaza [New Brunswick Train Station], New Brunswick,NJ,8901 +-73.9741,40.36486,"DD [drivethru-no] [wifi-yes]-Sea Bright,NJ",1002 Ocean Avenue, Sea Bright,NJ,7760 +-74.07375,40.32966,"DD [drivethru-yes] [wifi-yes]-Tinton Falls,NJ",596 Shrewsbury Avenue, Tinton Falls,NJ,7701 +-74.165848,40.425968,"DD [drivethru-no] [wifi-yes]-Hazlet,NJ",3250 SR 35, Hazlet,NJ,7730 +-74.187202,40.411819,"DD [drivethru-no] [wifi-yes]-Hazlet,NJ",80H Bethany Rd, Hazlet,NJ,7730 +-74.292091,40.555214,"DD [drivethru-no] [wifi-yes]-Woodbridge,NJ",1152 US Hwy 9 N, Woodbridge,NJ,7095 +-74.39697,40.52325,"DD [drivethru-no] [wifi-yes]-Edison,NJ",691 Route 1 South [Unit 9], Edison,NJ,8817 +-74.73774,40.21011,"DD/BR [drivethru-no] [wifi-no]-Trenton,NJ",1072 Chambers Street, Trenton,NJ,8611 +-74.682364,40.29892,"DD [drivethru-no] [wifi-no]-Princeton,NJ",3495 Us Highway 1 [Windsor Green Shopping Center], Princeton,NJ,8540 +-74.817345,39.87764,"DD [drivethru-no] [wifi-no]-Medford,NJ",420 Stokes Rd [Rt 541 Unit 6], Medford,NJ,8055 +-74.831284,39.901821,"DD/BR [drivethru-yes] [wifi-no]-Medford,NJ",178 Rt 70 [Medford Shopping Center], Medford,NJ,8055 +-74.647479,39.264496,"DD [drivethru-yes] [wifi-yes]-Marmora,NJ",4 S Shore Rd, Marmora,NJ,8223 +-74.601845,39.321972,"DD [drivethru-yes] [wifi-yes]-Somers Point,NJ",411 New Rd, Somers Point,NJ,8244 +-74.6495,40.4069,"DD [drivethru-no] [wifi-no]-Skillman,NJ",1325 Us Highway 206 [ShopRite], Skillman,NJ,8558 +-74.767298,40.005921,"DD [drivethru-yes] [wifi-yes]-Eastampton,NJ",1191 Woodlane Rd, Eastampton,NJ,8060 +-74.644859,39.451351,"DD [drivethru-yes] [wifi-yes]-Mays Landing,NJ",4450 East Black Horse Pike, Mays Landing,NJ,8330 +-74.685303,39.967617,"DD [drivethru-yes] [wifi-yes]-Pemberton,NJ",1 W Hampton St, Pemberton,NJ,8068 +-74.584607,39.974456,"DD [drivethru-yes] [wifi-yes]-Browns Mills,NJ",119 Trenton Rd, Browns Mills,NJ,8015 +-74.676926,40.231098,"DD [drivethru-yes] [wifi-yes]-Trenton,NJ",766 Hwy 33, Trenton,NJ,8619 +-74.687546,40.249607,"DD [drivethru-no] [wifi-no]-Mercerville,NJ",800 Sloan Ave [Hamilton NJT RR], Mercerville,NJ,8619 +-74.663627,40.227688,"DD [drivethru-no] [wifi-yes]-Hamilton Square,NJ",1235 Route 33, Hamilton Square,NJ,8690 +-74.71072,40.19064,"DD [drivethru-yes] [wifi-yes]-Trenton,NJ",2803 S Broad Street, Trenton,NJ,8610 +-74.876106,39.014412,"DD [drivethru-no] [wifi-yes]-Rio Grande,NJ",10 Wildwood Blvd, Rio Grande,NJ,8242 +-74.73222,40.203498,"DD [drivethru-no] [wifi-yes]-Ewing,NJ",576 Grand Ave, Ewing,NJ,8624 +-74.856003,40.024391,"DD/BR [drivethru-yes] [wifi-no]-Westampton,NJ",100 Springside Rancocas Rd [Rt 635], Westampton,NJ,8060 +-74.893623,40.053261,"DD [drivethru-yes] [wifi-yes]-Edgewater Park,NJ",4353 Rt 130 S [Pathmark Shopping Ctr], Edgewater Park,NJ,8010 +-75.076881,39.901855,"DD [drivethru-no] [wifi-yes]-Oaklyn,NJ",702 White Horse Pike, Oaklyn,NJ,8107 +-74.90797,40.02796,"DD [drivethru-yes] [wifi-yes]-Willingboro,NJ",320 Beverly Rancocas Road Ste 24, Willingboro,NJ,8046 +-74.648438,39.529213,"DD [drivethru-yes] [wifi-yes]-Egg Harbor City,NJ",508 White Horse Pike, Egg Harbor City,NJ,8215 +-74.68224,40.294504,"DD [drivethru-no] [wifi-no]-Lawrenceville,NJ",150 Quaker Bridge Mall, Lawrenceville,NJ,8648 +-74.5933,40.33586,"DD/BR [drivethru-no] [wifi-yes]-Plainsboro,NJ",10 Schalks Crossing Road [Plainsboro Shopping Center], Plainsboro,NJ,8536 +-75.031937,39.996078,"DD [drivethru-yes] [wifi-no]-Palmyra,NJ",1252 Rt 73 N, Palmyra,NJ,8065 +-74.768661,40.247852,"DD [drivethru-no] [wifi-no]-Ewing,NJ",1750 North Olden Ave, Ewing,NJ,8638 +-74.931173,39.807094,"DD [drivethru-yes] [wifi-yes]-West Berlin,NJ",235 Route 73 North, West Berlin,NJ,8091 +-74.51134,40.10877,"DD [drivethru-yes] [wifi-yes]-Cream Ridge,NJ",403 Route 539, Cream Ridge,NJ,8514 +-74.6823,40.29491,"DD [drivethru-no] [wifi-no]-Lawrenceville,NJ",3373 Brunswick Pike [ShopRite Foodarama], Lawrenceville,NJ,8648 +-74.497749,39.465775,"DD [drivethru-no] [wifi-yes]-Galloway,NJ",323 E Jimmie Leeds Rd, Galloway,NJ,8205 +-74.878348,40.048985,"DD [drivethru-yes] [wifi-no]-Burlington,NJ",1107 Sunset Rd, Burlington,NJ,8016 +-74.797646,40.336693,"DD [drivethru-yes] [wifi-yes]-Pennington,NJ",1 Tree Farm Rd, Pennington,NJ,8534 +-74.705681,39.206669,"DD [drivethru-no] [wifi-no]-Ocean View,NJ",2495 Rt 9, Ocean View,NJ,8230 +-75.041758,39.444409,"DD [drivethru-no] [wifi-yes]-Vineland,NJ",2881 S Delsea Dr, Vineland,NJ,8360 +-74.807776,38.988531,"DD [drivethru-no] [wifi-yes]-Wildwood,NJ",3120 Boardwalk [Wildwood Boardwalk], Wildwood,NJ,8260 +-74.813982,38.984372,"DD [drivethru-no] [wifi-no]-Wildwood,NJ",4014 Boardwalk, Wildwood,NJ,8260 +-74.614777,40.010029,"DD [drivethru-yes] [wifi-yes]-Fort Dix,NJ",5359 Brody Ave [AAFES], Fort Dix,NJ,8640 +-74.657181,40.016998,"DD [drivethru-yes] [wifi-yes]-Wrightstown,NJ",507 E Main St, Wrightstown,NJ,8562 +-74.58512,40.32762,"DD/BR [drivethru-no] [wifi-yes]-Lawrenceville,NJ",4110 Quakerbridge Road, Lawrenceville,NJ,8536 +-74.74953,40.24303,"DD/BR [drivethru-yes] [wifi-yes]-Lawrenceville,NJ",1625 Princeton Avenue, Lawrenceville,NJ,8648 +-74.76437,40.22014,"DD/BR [drivethru-no] [wifi-no]-Trenton,NJ",47 East State Street, Trenton,NJ,8608 +-74.183348,39.850668,"DD [drivethru-yes] [wifi-no]-Lanoka Harbor,NJ",344 N Main St, Lanoka Harbor,NJ,8734 +-74.52227,39.42644,"DD [drivethru-no] [wifi-yes]-Absecon,NJ",608 Mill Road, Absecon,NJ,8201 +-74.608283,39.433172,"DD [drivethru-no] [wifi-no]-Egg Harbor Township,NJ",6101 Black Horse Pike [LukOil], Egg Harbor Township,NJ,8234 +-74.53474,39.39247,"DD [drivethru-yes] [wifi-yes]-Pleasantville,NJ",774 Black Horse Pike, Pleasantville,NJ,8232 +-74.708568,40.23308,"DD [drivethru-no] [wifi-no]-Hamilton,NJ",2035 Nottingham Way, Hamilton,NJ,8619 +-74.695261,40.20679,"DD [drivethru-no] [wifi-no]-Hamilton,NJ",1088 White Horse Mercerville Rd, Hamilton,NJ,8610 +-74.687022,40.24742,"DD [drivethru-yes] [wifi-yes]-Hamilton,NJ",3100 Quakerbridge Rd, Hamilton,NJ,8619 +-74.653198,40.227299,"DD [drivethru-no] [wifi-yes]-Hamilton Township,NJ",130 Marketplace Blvd [ShopRite], Hamilton Township,NJ,8691 +-74.78404,39.64451,"DD [drivethru-yes] [wifi-yes]-Hammonton,NJ",110 S White Horse Pike, Hammonton,NJ,8037 +-74.78059,40.27676,"DD [drivethru-yes] [wifi-yes]-Ewing Township,NJ",2085 Pennington Road [Mobil], Ewing Township,NJ,8618 +-74.788231,40.251907,"DD [drivethru-yes] [wifi-yes]-Ewing,NJ",1981 N Olden Ave Ext, Ewing,NJ,8618 +-74.5782,39.27847,"DD [drivethru-yes] [wifi-yes]-Ocean City,NJ",962 West Avenue, Ocean City,NJ,8226 +-74.27639,39.706593,"DD/BR [drivethru-no] [wifi-yes]-Manahawkin,NJ",601 Washington Ave, Manahawkin,NJ,8050 +-75.112328,39.877392,"DD [drivethru-yes] [wifi-yes]-Brooklawn,NJ",Browning Rd and Kings Hwy [Brooklawn Shopping Center], Brooklawn,NJ,8030 +-74.49418,40.26693,"DD [drivethru-no] [wifi-no]-East Windsor,NJ",1 Lake Drive, East Windsor,NJ,8520 +-74.538643,40.272804,"DD [drivethru-yes] [wifi-yes]-East Windsor,NJ",410 Rt 130 N, East Windsor,NJ,8520 +-74.797097,40.100766,"DD [drivethru-yes] [wifi-yes]-Florence,NJ",2043 Rt 130, Florence,NJ,8518 +-74.53371,40.27761,"DD [drivethru-no] [wifi-no]-East Windsor,NJ",319 Us Highway 130 [ShopRite], East Windsor,NJ,8520 +-74.690903,40.270603,"DD/BR [drivethru-no] [wifi-no]-Lawrenceville,NJ",1278 Lawrence Rd, Lawrenceville,NJ,8648 +-75.008232,39.916058,"DD [drivethru-yes] [wifi-yes]-Cherry Hill,NJ",1550 Kings Hwy N, Cherry Hill,NJ,8034 +-75.237099,39.819672,"DD [drivethru-yes] [wifi-yes]-Paulsboro,NJ",99 Borelli Blvd, Paulsboro,NJ,8066 +-75.007187,39.940826,"DD [drivethru-yes] [wifi-yes]-Cherry Hill,NJ",2441 Rt 38, Cherry Hill,NJ,8002 +-74.754952,40.218716,"DD [drivethru-no] [wifi-no]-Trenton,NJ",72 S Clinton Ave [Trenton Train Station], Trenton,NJ,8609 +-74.732712,40.219868,"DD [drivethru-no] [wifi-no]-Trenton,NJ",1200 Hamilton Ave, Trenton,NJ,8609 +-74.471463,40.318896,"DD [drivethru-yes] [wifi-yes]-Monroe,NJ",316 Applegarth Rd, Monroe,NJ,8831 +-74.758804,40.244213,"DD [drivethru-no] [wifi-yes]-Ewing,NJ",1600 N Olden Ave, Ewing,NJ,8638 +-74.752289,40.198566,"DD [drivethru-no] [wifi-yes]-Trenton,NJ",410 Lalor St Ste A1, Trenton,NJ,8611 +-74.775299,40.240005,"DD [drivethru-yes] [wifi-yes]-Trenton,NJ",275 Parkway Ave, Trenton,NJ,8618 +-74.761604,40.220226,"DD [drivethru-no] [wifi-yes]-Trenton,NJ",225 E State St, Trenton,NJ,8608 +-74.747902,40.236824,"DD [drivethru-no] [wifi-no]-Trenton,NJ",801 N Olden Ave [Exxon], Trenton,NJ,8638 +-74.864914,40.070919,"DD [drivethru-yes] [wifi-yes]-Burlington,NJ",330 W Rt 130, Burlington,NJ,8016 +-74.856527,40.071406,"DD [drivethru-no] [wifi-yes]-Burlington,NJ",34a Rt 130 South, Burlington,NJ,8016 +-74.829147,40.038269,"DD [drivethru-no] [wifi-no]-Burlington,NJ",1 Elbow Ln [Silo Mall], Burlington,NJ,8016 +-74.554929,39.381345,"DD [drivethru-yes] [wifi-yes]-Northfield,NJ",809 Tilton Rd, Northfield,NJ,8225 +-74.43333,39.35999,"DD [drivethru-no] [wifi-yes]-Atlantic City,NJ",1800 Atlantic Avenue, Atlantic City,NJ,8401 +-74.428126,39.356413,"DD [drivethru-yes] [wifi-no]-Atlantic City,NJ",1601 Boardwalk, Atlantic City,NJ,8401 +-74.448036,39.353924,"DD [drivethru-no] [wifi-yes]-Atlantic City,NJ",3000 Atlantic Ave, Atlantic City,NJ,8401 +-74.338154,39.603799,"DD [drivethru-no] [wifi-no]-Tuckerton,NJ",109 E Main St, Tuckerton,NJ,8087 +-74.705132,40.129005,"DD [drivethru-no] [wifi-yes]-Bordentown,NJ",1073 Rt 206, Bordentown,NJ,8505 +-74.52021,39.40789,"DD [drivethru-yes] [wifi-yes]-Pleasantville,NJ",915 North New Road, Pleasantville,NJ,8232 +-74.52412,39.3899,"DD [drivethru-yes] [wifi-yes]-Pleasantville,NJ",201 South Main Street, Pleasantville,NJ,8232 +-74.73355,39.85326,"DD [drivethru-no] [wifi-yes]-Tabernacle,NJ",1529 Route 206, Tabernacle,NJ,8088 +-74.73271,40.0185,"DD [drivethru-no] [wifi-yes]-Mount Holly,NJ",2679 Route 206, Mount Holly,NJ,8060 +-74.80169,39.99689,"DD [drivethru-yes] [wifi-yes]-Mount Holly,NJ",317 Rancocas Road [Mount Holly Marketplace], Mount Holly,NJ,8060 +-74.397919,39.393543,"DD [drivethru-no] [wifi-no]-Brigantine,NJ",4012 Brigantine Blvd, Brigantine,NJ,8203 +-74.78912,39.98233,"DD [drivethru-yes] [wifi-yes]-Lumberton,NJ",1621 Route 38, Lumberton,NJ,8048 +-74.781013,40.00729,"DD [drivethru-yes] [wifi-yes]-Mount Holly,NJ",802 B Woodlane Rd, Mount Holly,NJ,8060 +-74.19682,39.79644,"DD [drivethru-no] [wifi-yes]-Waretown,NJ",501 Route 9 Unit 300, Waretown,NJ,8758 +-74.968155,39.936596,"DD [drivethru-no] [wifi-yes]-Mount Laurel,NJ",807 Rt 73, Mount Laurel,NJ,8054 +-75.09495,39.80516,"DD [drivethru-no] [wifi-yes]-Sewell,NJ",1551 Hurffville Road, Sewell,NJ,8080 +-74.44162,40.148125,"DD [drivethru-yes] [wifi-yes]-Cream Ridge,NJ",568 Monmouth Rd, Cream Ridge,NJ,8514 +-74.62149,40.214592,"DD [drivethru-no] [wifi-no]-Robbinsville,NJ",34 Robbinsville Allentown Rd, Robbinsville,NJ,8691 +-74.15055,40.76121,"DD [drivethru-no] [wifi-yes]-Kearny,NJ",297 Kearny Avenue, Kearny,NJ,7032 +-74.13352,40.78827,"DD [drivethru-no] [wifi-yes]-North Arlington,NJ",206 Ridge Rd, North Arlington,NJ,7031 +-74.13009,40.77797,"DD [drivethru-no] [wifi-yes]-North Arlington,NJ",29 Schuyler Ave, North Arlington,NJ,7031 +-74.14674,40.78469,"DD [drivethru-no] [wifi-yes]-Kearny,NJ",946 Passaic Avenue, Kearny,NJ,7032 +-74.060364,40.731583,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",507 Summit Ave, Jersey City,NJ,7306 +-74.00972,40.83193,"DD [drivethru-no] [wifi-yes]-Ridgefield,NJ",470 Broad Ave, Ridgefield,NJ,7657 +-74.000717,40.819031,"DD [drivethru-no] [wifi-yes]-Fairview,NJ",222 Bergen Blvd, Fairview,NJ,7022 +-74.10456,40.84253,"DD/BR [drivethru-no] [wifi-yes]-Wallington,NJ",443 Paterson Ave, Wallington,NJ,7057 +-74.109714,40.826345,"DD [drivethru-yes] [wifi-no]-Rutherford,NJ",131/147 Rt 17 N [Lukoil], Rutherford,NJ,7070 +-74.066917,40.816837,"DD [drivethru-no] [wifi-no]-East Rutherford,NJ",50 State Route 120 [Izod Center], East Rutherford,NJ,7073 +-74.10382,40.82748,"DD [drivethru-no] [wifi-yes]-Rutherford,NJ",56 Park Ave, Rutherford,NJ,7070 +-74.12375,40.81157,"DD [drivethru-no] [wifi-yes]-Lyndhurst,NJ",425 Valley Brook Avenue, Lyndhurst,NJ,7071 +-74.20425,41.02032,"DD/BR [drivethru-no] [wifi-yes]-Franklin Lakes,NJ",754 Franklin Ave, Franklin Lakes,NJ,7417 +-74.171776,41.009396,"DD/BR [drivethru-no] [wifi-yes]-Wyckoff,NJ",386 Franklin Ave, Wyckoff,NJ,7481 +-74.22207,40.87931,"DD [drivethru-no] [wifi-yes]-Little Falls,NJ",57 E Main Street, Little Falls,NJ,7424 +-73.981644,40.838917,"DD [drivethru-no] [wifi-yes]-Fort Lee,NJ",1196 Anderson Ave, Fort Lee,NJ,7024 +-74.019722,40.803474,"DD [drivethru-no] [wifi-yes]-North Bergen,NJ",7401 Tonnelle Ave, North Bergen,NJ,7047 +-74.015259,40.78833,"DD [drivethru-no] [wifi-yes]-Guttenberg,NJ",7101 Boulevard E, Guttenberg,NJ,7093 +-74.044731,40.75869,"DD/BR [drivethru-no] [wifi-yes]-Union City,NJ",704 Kennedy Blvd, Union City,NJ,7087 +-74.027328,40.774315,"DD [drivethru-no] [wifi-yes]-Union City,NJ",3606 Bergenline Ave, Union City,NJ,7087 +-74.02135,40.78226,"DD [drivethru-no] [wifi-yes]-Union City,NJ",4900 Bergenline Ave, Union City,NJ,7087 +-74.058365,40.792084,"DD [drivethru-no] [wifi-yes]-Secaucus,NJ",1351 Paterson Plank Rd, Secaucus,NJ,7094 +-74.02311,40.78292,"DD/BR [drivethru-yes] [wifi-yes]-West New York,NJ",4914-22 Kennedy Blvd, West New York,NJ,7093 +-74.04034,40.7688,"DD [drivethru-no] [wifi-yes]-North Bergen,NJ",2109 Kennedy Blvd [# 2127], North Bergen,NJ,7047 +-73.999931,40.900047,"DD [drivethru-no] [wifi-yes]-Teaneck,NJ",1406 Teaneck Rd, Teaneck,NJ,7666 +-73.994698,40.799549,"DD [drivethru-no] [wifi-yes]-North Bergen,NJ",8401 River Rd, North Bergen,NJ,7047 +-74.0164,40.78876,"DD/BR [drivethru-no] [wifi-yes]-West New York,NJ",5915 Bergenline Ave, West New York,NJ,7093 +-74.164452,40.700451,"DD [drivethru-no] [wifi-yes]-Newark,NJ",300 Access Rd [Terminal B Lower Level], Newark,NJ,7114 +-74.10013,40.89738,"DD [drivethru-no] [wifi-yes]-Saddle Brook,NJ",487 Market St, Saddle Brook,NJ,7663 +-74.06429,40.88692,"DD/BR [drivethru-no] [wifi-yes]-Lodi,NJ",380 Essex Street, Lodi,NJ,7644 +-74.07016,40.944592,"DD [drivethru-no] [wifi-yes]-Paramus,NJ",175 Sr-4, Paramus,NJ,7652 +-74.101395,40.90596,"DD [drivethru-yes] [wifi-yes]-Saddle Brook,NJ",255 Pehle Ave, Saddle Brook,NJ,7663 +-74.126183,41.062962,"DD [drivethru-no] [wifi-yes]-Ramsey,NJ",775 State Rt 17 S, Ramsey,NJ,7446 +-74.12923,41.06471,"DD [drivethru-no] [wifi-yes]-Ramsey,NJ",926 State Route 17 N, Ramsey,NJ,7446 +-74.12698,41.03016,"DD [drivethru-no] [wifi-yes]-Allendale,NJ",33 W Allendale Ave, Allendale,NJ,7401 +-74.042642,40.844306,"DD [drivethru-no] [wifi-yes]-Little Ferry,NJ",31 Liberty St, Little Ferry,NJ,7643 +-74.02865,40.74485,"DD [drivethru-no] [wifi-yes]-Hoboken,NJ",700 Washington Ave, Hoboken,NJ,7030 +-74.11229,40.89903,"DD [drivethru-no] [wifi-yes]-Elmwood Park,NJ",430 Market St, Elmwood Park,NJ,7407 +-74.117195,40.893486,"DD [drivethru-no] [wifi-yes]-Elmwood Park,NJ",213 US Highway 46, Elmwood Park,NJ,7407 +-74.10392,40.924568,"DD [drivethru-no] [wifi-yes]-Fair Lawn,NJ",32-02 Broadway, Fair Lawn,NJ,7410 +-74.117844,40.935696,"DD [drivethru-no] [wifi-no]-Fair Lawn,NJ",14-00 State Highway 208 And Plaza Road, Fair Lawn,NJ,7410 +-74.04953,40.74575,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",318 Central Ave, Jersey City,NJ,7307 +-74.0297,40.73595,"DD [drivethru-no] [wifi-yes]-Hoboken,NJ",40 Hudson Pl, Hoboken,NJ,7030 +-74.10258,40.92137,"DD [drivethru-no] [wifi-yes]-Fair Lawn,NJ",22-20 Fair Lawn Avenue, Fair Lawn,NJ,7410 +-74.116928,40.893116,"DD/BR [drivethru-yes] [wifi-yes]-Elmwood Park,NJ",210 Us-46, Elmwood Park,NJ,7407 +-73.959808,40.971207,"DD/BR [drivethru-no] [wifi-yes]-Closter,NJ",278 Closter Dock Rd, Closter,NJ,7624 +-73.953796,40.999222,"DD [drivethru-yes] [wifi-yes]-Norwood,NJ",520 Livingston Ave, Norwood,NJ,7648 +-73.96366,40.9572,"DD [drivethru-no] [wifi-no]-Demarest,NJ",132 Hardenburgh Ave, Demarest,NJ,7627 +-73.94591,41.01483,"DD [drivethru-yes] [wifi-no]-Northvale,NJ",258 Livingston Ave [Citgo], Northvale,NJ,7647 +-73.94574,41.014797,"DD [drivethru-no] [wifi-yes]-Northvale,NJ",260 Livingston St, Northvale,NJ,7647 +-74.13806,41.0751,"DD [drivethru-no] [wifi-yes]-Ramsey,NJ",503 N Franklin Turnpike, Ramsey,NJ,7446 +-74.017263,40.887373,"DD/BR [drivethru-yes] [wifi-no]-Teaneck,NJ",332 Cedar Ln, Teaneck,NJ,7666 +-74.07835,40.96698,"DD [drivethru-no] [wifi-yes]-Paramus,NJ",669 Route 17 South, Paramus,NJ,7652 +-74.070392,40.812926,"DD [drivethru-no] [wifi-no]-East Rutherford,NJ",102 Rt 120 [New Meadowslands Stadium- 3 Places], East Rutherford,NJ,7073 +-74.086662,40.83511,"DD [drivethru-no] [wifi-yes]-Carlstadt,NJ",430 Route 17, Carlstadt,NJ,7072 +-74.039536,41.000988,"DD [drivethru-no] [wifi-no]-Hillsdale,NJ",60 Broadway, Hillsdale,NJ,7642 +-74.002075,40.808472,"DD [drivethru-no] [wifi-yes]-North Bergen,NJ",9001 Bergenline Ave, North Bergen,NJ,7047 +-74.040836,40.72996,"DD [drivethru-yes] [wifi-no]-Jersey City,NJ",183 12th St [Cumberland Farms], Jersey City,NJ,7310 +-74.120193,40.98003,"DD [drivethru-no] [wifi-yes]-Ridgewood,NJ",13 N Broad St, Ridgewood,NJ,7450 +-74.24335,41.02346,"DD/BR [drivethru-no] [wifi-yes]-Oakland,NJ",338 Ramapo Valley Rd, Oakland,NJ,7436 +-74.04613,40.78655,"DD [drivethru-no] [wifi-yes]-Secaucus,NJ",700 Plaza Dr [Meadow Plaza Shopping Center], Secaucus,NJ,7094 +-74.06608,40.79803,"DD/BR [drivethru-yes] [wifi-yes]-Secaucus,NJ",20 Meadowlands Pky, Secaucus,NJ,7094 +-74.10785,40.95269,"DD/BR [drivethru-no] [wifi-yes]-Glen Rock,NJ",886 Prospect St, Glen Rock,NJ,7452 +-74.16934,40.98525,"DD/BR [drivethru-no] [wifi-yes]-Wyckoff,NJ",525 Cedar Hill Ave [Cedar Hill Shopping Center], Wyckoff,NJ,7481 +-74.050964,40.789513,"DD [drivethru-no] [wifi-no]-Secaucus,NJ",400 Route 3 [Hess], Secaucus,NJ,7094 +-74.05116,40.94595,"DD/BR [drivethru-no] [wifi-yes]-Paramus,NJ",440-A Forest Ave, Paramus,NJ,7652 +-73.98737,40.86254,"DD/BR [drivethru-no] [wifi-yes]-Leonia,NJ",353 Broad Ave, Leonia,NJ,7605 +-73.969275,40.852431,"DD [drivethru-no] [wifi-yes]-Fort Lee,NJ",2033 Lemoine Ave, Fort Lee,NJ,7024 +-73.973846,40.867256,"DD [drivethru-no] [wifi-no]-Fort Lee,NJ",2295 Rt 4 [Hess], Fort Lee,NJ,7024 +-73.97658,40.89494,"DD [drivethru-no] [wifi-yes]-Englewood,NJ",39 W Palisade Ave, Englewood,NJ,7631 +-73.962244,40.938856,"DD [drivethru-yes] [wifi-yes]-Cresskill,NJ",32 Piermont Rd, Cresskill,NJ,7626 +-74.14703,41.09946,"DD [drivethru-no] [wifi-yes]-Mahwah,NJ",115 Franklin Tpke, Mahwah,NJ,7430 +-74.112274,41.036999,"DD [drivethru-no] [wifi-yes]-Mahwah,NJ",130 State Route 17, Mahwah,NJ,7430 +-74.058299,41.00069,"DD [drivethru-no] [wifi-no]-Township of Washington,NJ",3038 Pascack Rd, Township of Washington,NJ,7676 +-74.117059,41.01069,"DD [drivethru-no] [wifi-yes]-Waldwick,NJ",29 E Prospect St, Waldwick,NJ,7463 +-74.038757,40.896168,"DD [drivethru-yes] [wifi-yes]-Hackensack,NJ",25 Hackensack Ave, Hackensack,NJ,7601 +-74.06747,41.05809,"DD [drivethru-no] [wifi-no]-Montvale,NJ",128 Chestnut Ridge Road, Montvale,NJ,7645 +-74.00501,40.8514,"DD [drivethru-no] [wifi-no]-Palisades Park,NJ",201 Roosevelt Place [Shop Rite], Palisades Park,NJ,7650 +-74.094147,40.827801,"DD [drivethru-no] [wifi-yes]-East Rutherford,NJ",300 Route 17 [BJ's Wholesale Club], East Rutherford,NJ,7073 +-74.062057,40.746708,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",463 Tonnele Ave, Jersey City,NJ,7307 +-74.13802,40.98489,"DD/BR [drivethru-no] [wifi-yes]-Midland Park,NJ",80 Godwin Ave, Midland Park,NJ,7432 +-74.130302,40.962341,"DD [drivethru-no] [wifi-yes]-Glen Rock,NJ",242 Rock Rd, Glen Rock,NJ,7452 +-74.56956,40.90562,"DD [drivethru-no] [wifi-yes]-Wharton,NJ",321 State Route 15, Wharton,NJ,7885 +-74.04954,40.85637,"DD [drivethru-yes] [wifi-yes]-Little Ferry,NJ",429 Us Highway 46, Little Ferry,NJ,7643 +-74.02502,40.85715,"DD/BR [drivethru-no] [wifi-yes]-Ridgefield Park,NJ",209 Main St, Ridgefield Park,NJ,7660 +-74.10603,40.66726,"DD/BR [drivethru-yes] [wifi-yes]-Bayonne,NJ",171 Lafante Way, Bayonne,NJ,7002 +-74.129263,40.654653,"DD/BR [drivethru-yes] [wifi-yes]-Bayonne,NJ",4 North St, Bayonne,NJ,7002 +-74.034035,40.716282,"DD [drivethru-no] [wifi-no]-Jersey City,NJ",1 Exchange Pl, Jersey City,NJ,7302 +-74.0837,40.71832,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",511 West Side Ave, Jersey City,NJ,7304 +-74.068268,40.71756,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",725 State Rt 440, Jersey City,NJ,7304 +-74.04067,40.72356,"DD [drivethru-no] [wifi-no]-Jersey City,NJ",400 Luis Munoz Martin Blvd [Shoprite], Jersey City,NJ,7302 +-74.075741,40.761098,"DD [drivethru-no] [wifi-no]-Secaucus,NJ",100 Laurel Hill Dr [NJT-RR Secaucus Train Station], Secaucus,NJ,7096 +-74.05085,40.734051,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",147 Palisade Ave, Jersey City,NJ,7306 +-74.060516,40.916553,"DD [drivethru-no] [wifi-yes]-Paramus,NJ",2701 Bergen Town Ctr Unit #40B, Paramus,NJ,7652 +-74.252853,40.715073,"DD [drivethru-no] [wifi-yes]-Irvington,NJ",1107 Stuyvesant Ave, Irvington,NJ,7111 +-74.03142,41.03631,"DD/BR [drivethru-no] [wifi-yes]-Park Ridge,NJ",184 Kinderkamack Rd Unit D, Park Ridge,NJ,7656 +-74.062897,41.061428,"DD [drivethru-no] [wifi-no]-Montvale,NJ",Garden State Pkwy Mm 172 [Montvale Service Plaza], Montvale,NJ,7645 +-73.988434,40.948849,"DD [drivethru-no] [wifi-yes]-Dumont,NJ",417 Washington Ave, Dumont,NJ,7628 +-73.993698,40.940174,"DD [drivethru-no] [wifi-yes]-Dumont,NJ",125 Washington Ave, Dumont,NJ,7628 +-73.99696,40.91852,"DD/BR [drivethru-no] [wifi-yes]-Bergenfield,NJ",275 S Washington Ave, Bergenfield,NJ,7621 +-74.034843,40.855473,"DD/BR [drivethru-yes] [wifi-yes]-Little Ferry,NJ",250 Bergen Tpke, Little Ferry,NJ,7643 +-74.072884,40.909988,"DD [drivethru-no] [wifi-no]-Rochelle Park,NJ",440 Rochelle Ave, Rochelle Park,NJ,7662 +-74.00858,40.99465,"DD/BR [drivethru-no] [wifi-yes]-River Vale,NJ",636 Westwood Ave, River Vale,NJ,7675 +-74.02058,40.77464,"DD [drivethru-no] [wifi-yes]-Weehawken,NJ",4100 Park Ave, Weehawken,NJ,7086 +-74.03548,40.7824,"DD [drivethru-yes] [wifi-yes]-North Bergen,NJ",4108 Tonnelle Ave, North Bergen,NJ,7047 +-74.02788,40.76975,"DD [drivethru-no] [wifi-yes]-Weehawken,NJ",2816 Palisades Ave, Weehawken,NJ,7086 +-74.04526,40.89283,"DD/BR [drivethru-no] [wifi-yes]-Hackensack,NJ",150 Passaic Street, Hackensack,NJ,7601 +-74.065102,40.875816,"DD [drivethru-no] [wifi-yes]-Hackensack,NJ",240 S Summit Ave # 256, Hackensack,NJ,7601 +-74.030457,40.903355,"DD [drivethru-no] [wifi-yes]-Hackensack,NJ",20 State Route 4, Hackensack,NJ,7601 +-74.116859,40.665791,"DD/BR [drivethru-no] [wifi-yes]-Bayonne,NJ",545 Broadway, Bayonne,NJ,7002 +-74.068932,40.724995,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",739 Bergen Ave, Jersey City,NJ,7306 +-74.06866,40.73526,"DD [drivethru-no] [wifi-yes]-Jersey City,NJ",31 Broadway, Jersey City,NJ,7306 +-74.015808,40.779137,"DD/BR [drivethru-no] [wifi-yes]-Union City,NJ",4801 Park Ave, Union City,NJ,7087 +-74.03423,40.76492,"DD [drivethru-no] [wifi-yes]-Union City,NJ",2000 Bergenline Ave, Union City,NJ,7087 +-74.13463,41.06602,"DD/BR [drivethru-yes] [wifi-yes]-Ramsey,NJ",233 N Franklin Turnpike, Ramsey,NJ,7446 +-74.105354,40.863731,"DD [drivethru-no] [wifi-yes]-Garfield,NJ",87 River Dr, Garfield,NJ,7026 +-73.9923,40.8196,"DD [drivethru-no] [wifi-yes]-Fairview,NJ",427 Anderson Ave, Fairview,NJ,7022 +-73.98587,40.82985,"DD [drivethru-no] [wifi-yes]-Cliffside Park,NJ",738 Anderson Ave, Cliffside Park,NJ,7010 +-74.05233,40.7169,"DD [drivethru-yes] [wifi-yes]-Jersey City,NJ",402 Grand St [# 436], Jersey City,NJ,7302 +-74.07902,40.91475,"DD/BR [drivethru-no] [wifi-yes]-Paramus,NJ",One Garden State Plaza, Paramus,NJ,7652 +-74.069397,40.856972,"DD [drivethru-no] [wifi-yes]-Hasbrouck Heights,NJ",220 State Rt 17, Hasbrouck Heights,NJ,7604 +-74.0658,40.86167,"DD [drivethru-no] [wifi-yes]-Hasbrouck Heights,NJ",343 State Rt 17, Hasbrouck Heights,NJ,7604 +-74.070824,40.869362,"DD [drivethru-no] [wifi-no]-Hasbrouck Heights,NJ",435 Boulevard, Hasbrouck Heights,NJ,7604 +-74.17307,40.91529,"DD [drivethru-no] [wifi-yes]-Paterson,NJ",7 Smith St, Paterson,NJ,7505 +-74.16997,40.91895,"DD [drivethru-no] [wifi-yes]-Paterson,NJ",126 Broadway, Paterson,NJ,7505 +-74.07318,40.95461,"DD/BR [drivethru-no] [wifi-yes]-Paramus,NJ",494 N State Rt 17, Paramus,NJ,7652 +-74.071083,40.934669,"DD/BR [drivethru-no] [wifi-yes]-Paramus,NJ",193 Route 17 South, Paramus,NJ,7652 +-74.031193,40.939955,"DD [drivethru-no] [wifi-yes]-River Edge,NJ",101 Midland Ave, River Edge,NJ,7661 +-74.00523,40.98167,"DD/BR [drivethru-no] [wifi-yes]-Emerson,NJ",441 Old Hook Rd, Emerson,NJ,7630 +-74.025658,40.929848,"DD/BR [drivethru-no] [wifi-yes]-New Milford,NJ",754 River Rd, New Milford,NJ,7646 +-74.07008,40.95765,"DD [drivethru-no] [wifi-yes]-Paramus,NJ",700 Paramus Park, Paramus,NJ,7652 +-74.02816,40.97381,"DD [drivethru-no] [wifi-yes]-Emerson,NJ",130 Kinderkamack Rd, Emerson,NJ,7630 +-73.98631,40.85062,"DD/BR [drivethru-yes] [wifi-yes]-Fort Lee,NJ",1430 Route 46 East, Fort Lee,NJ,7024 +-74.166451,41.078354,"DD/BR [drivethru-no] [wifi-yes]-Mahwah,NJ",1001 Macarthur Blvd, Mahwah,NJ,7430 +-73.97311,40.82755,"DD [drivethru-no] [wifi-yes]-Edgewater,NJ",955 River Rd, Edgewater,NJ,7020 +-74.04501,40.76857,"DD [drivethru-yes] [wifi-yes]-North Bergen,NJ",1810 Tonnelle Ave, North Bergen,NJ,7047 +-74.033829,40.740845,"DD [drivethru-no] [wifi-yes]-Hoboken,NJ",308 Willow Ave [Hoboken University Medical Ctr], Hoboken,NJ,7030 +-74.036858,40.737335,"DD [drivethru-no] [wifi-yes]-Hoboken,NJ",400 Newark St, Hoboken,NJ,7030 +-74.030602,40.738945,"DD [drivethru-no] [wifi-yes]-Hoboken,NJ",214 Washington St, Hoboken,NJ,7030 +-74.04394,40.73529,"DD [drivethru-no] [wifi-no]-Jersey City,NJ",854 Jersey Ave, Jersey City,NJ,7310 +-74.032349,40.752178,"DD [drivethru-no] [wifi-no]-Hoboken,NJ",1200 Grand St Unit 4, Hoboken,NJ,7030 +-74.04226,40.7318,"DD/BR [drivethru-no] [wifi-yes]-Jersey City,NJ",215 Fourteenth St, Jersey City,NJ,7310 +-74.064468,40.73148,"DD/BR [drivethru-no] [wifi-yes]-Jersey City,NJ",40 Journal Sq, Jersey City,NJ,7306 +-74.0548,40.749586,"DD [drivethru-no] [wifi-no]-Jersey City,NJ",3438 John F Kennedy Blvd, Jersey City,NJ,7307 +-74.101303,40.693883,"DD/BR [drivethru-no] [wifi-yes]-Jersey City,NJ",1515 J F Kennedy Boulevard, Jersey City,NJ,7311 +-74.099541,40.685802,"DD [drivethru-yes] [wifi-yes]-Jersey City,NJ",2 Garfield Avenue [Twin City Shop/Cent], Jersey City,NJ,7305 +-74.042641,40.720001,"DD [drivethru-no] [wifi-no]-Jersey City,NJ",116 Newark Ave, Jersey City,NJ,7302 +-106.7818838,32.3328529,"DD [drivethru-yes] [wifi-no]-Las Cruces,NM",2527 N Main St, Las Cruces,NM,88001 +-105.9535,35.67443,"DD [drivethru-no] [wifi-yes]-Santa Fe,NM",1085 S Saint Francis Drive, Santa Fe,NM,87505 +-106.6255,35.08117,"DD/BR [drivethru-no] [wifi-yes]-Albuquerque,NM",1902 Central Avenue Southeast, Albuquerque,NM,87106 +-106.6414,35.13815,"DD/BR [drivethru-yes] [wifi-yes]-Albuquerque,NM",5502 4th Street Northwest, Albuquerque,NM,87107 +-108.165015,36.745502,"DD [drivethru-yes] [wifi-yes]-Farmington,NM",3030 E Main St, Farmington,NM,87402 +-106.5509,35.12994,"DD [drivethru-no] [wifi-no]-Albuquerque,NM",4416 Wyoming Boulevard Northeast, Albuquerque,NM,87111 +-106.558266,35.058231,"DD [drivethru-no] [wifi-no]-Kirtland AFB,NM",8001 Gibson Blvd SE, Kirtland AFB,NM,87117 +-115.240165,36.099704,"DD [drivethru-no] [wifi-yes]-Las Vegas,NV",6795 Tropicana Ave Ste 100, Las Vegas,NV,89103 +-115.242734,36.074376,"DD [drivethru-yes] [wifi-yes]-Las Vegas,NV",6295 S Rainbow Blvd, Las Vegas,NV,89118 +-115.180147,36.25954,"DD [drivethru-yes] [wifi-yes]-North Las Vegas,NV",5485 Simmons St Ste 3, North Las Vegas,NV,89031 +-115.11936,36.114179,"DD [drivethru-yes] [wifi-yes]-Las Vegas,NV",4125 S Eastern Ave [Flamingo Eastern Plaza], Las Vegas,NV,89119 +-115.284608,36.290708,"DD [drivethru-yes] [wifi-yes]-Las Vegas,NV",7155 Grand Montecito Pkwy [Fabulous Freddy's Car Wash], Las Vegas,NV,89149 +-115.025093,36.27878,"DD [drivethru-no] [wifi-no]-Las Vegas,NV",6595 N Hollywood Blvd [Pilot TC], Las Vegas,NV,89115 +-115.154135,36.013074,"DD [drivethru-yes] [wifi-yes]-Las Vegas,NV",409 E Silverado Ranch Blvd, Las Vegas,NV,89183 +-115.029582,36.039296,"DD [drivethru-yes] [wifi-yes]-Henderson,NV",171 N Gibson Rd, Henderson,NV,89014 +-115.112228,36.005556,"DD [drivethru-yes] [wifi-yes]-Henderson,NV",10100 S Eastern Ave [Ste 100], Henderson,NV,89052 +-115.102277,36.100249,"DD [drivethru-yes] [wifi-no]-Las Vegas,NV",3350 E Tropicana Ave Ste C2, Las Vegas,NV,89121 +-115.063879,36.112671,"DD [drivethru-no] [wifi-no]-Las Vegas,NV",5111 Boulder Hwy [Sam's Casino], Las Vegas,NV,89122 +-115.223566,36.238763,"DD [drivethru-yes] [wifi-yes]-Las Vegas,NV",5861 W Craig Rd Ste 101, Las Vegas,NV,89130 +-115.172177,36.055221,"DD [drivethru-no] [wifi-no]-Las Vegas,NV",7400 Las Vegas Blvd S, Las Vegas,NV,89123 +-115.143883,36.170735,"DD [drivethru-no] [wifi-no]-Las Vegas,NV",200 E Fremont St [Fremont Hotel & Casino], Las Vegas,NV,89101 +-115.172204,36.054494,"DD [drivethru-yes] [wifi-yes]-Las Vegas,NV",7430 Las Vegas Blvd Ste 100, Las Vegas,NV,89123 +-115.279082,36.054824,"DD [drivethru-yes] [wifi-yes]-Las Vegas,NV",7250 S Durango Dr, Las Vegas,NV,89113 +-115.351132,36.1592,"DD [drivethru-no] [wifi-yes]-Las Vegas,NV",11710 W Charleston Blvd, Las Vegas,NV,89135 +-73.773993,42.653258,"DD [drivethru-no] [wifi-no]-Albany,NY",43 New Scotland Ave [Albany Med Ctr Aramark], Albany,NY,12208 +-73.809042,42.742105,"DD [drivethru-no] [wifi-no]-Albany,NY",737 Albany Shaker Rd [ALB] Albany International Airport, Albany,NY,12211 +-73.877022,40.89561,"DD [drivethru-no] [wifi-yes]-Bronx,NY",1 E 233rd St [BP AMG], Bronx,NY,10470 +-73.853238,40.849305,"DD [drivethru-no] [wifi-yes]-Bronx,NY",1090 Morris Park, Bronx,NY,10461 +-73.839191,40.840891,"DD [drivethru-yes] [wifi-yes]-Bronx,NY",2973 E Tremont Ave, Bronx,NY,10461 +-73.827791,40.832765,"DD [drivethru-no] [wifi-yes]-Bronx,NY",3421 E Tremont Ave, Bronx,NY,10465 +-73.990364,40.692455,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1049 Grand St [BP Gas Station], Brooklyn,NY,11211 +-73.97655,40.626868,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1080 McDonald Ave [ShopRite], Brooklyn,NY,11230 +-73.918606,40.630255,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1930 Ralph Ave, Brooklyn,NY,11234 +-73.980893,40.667726,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",306 7th Ave, Brooklyn,NY,11215 +-73.866088,40.675565,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",640 Conduit Blvd, Brooklyn,NY,11208 +-73.458962,44.9812,"DD [drivethru-yes] [wifi-no]-Champlain,NY",1038 SR 11, Champlain,NY,12919 +-73.858898,40.76139,"DD [drivethru-no] [wifi-no]-East Elmhurst,NY",10801 Grand Central Pkwy, East Elmhurst,NY,11369 +-73.177064,40.733982,"DD [drivethru-no] [wifi-no]-East Islip,NY",300 E Main St [Montauk Hwy Heckscher Plaza], East Islip,NY,11730 +-73.886371,40.767284,"DD [drivethru-no] [wifi-no]-Flushing,NY",Grand Central Pkwy [LaGuardia Airport], Flushing,NY,11371 +-73.790582,40.647455,"DD [drivethru-no] [wifi-no]-Jamaica,NY",JFK Int'l Terminal 5 2T [Pre Ticketing Kiosk], Jamaica,NY,11430 +-73.794826,40.649185,"DD [drivethru-no] [wifi-no]-Jamaica,NY",JFK Int'l Terminal 5 51LL [Baggage Kiosk], Jamaica,NY,11430 +-73.791267,40.650724,"DD [drivethru-no] [wifi-no]-Jamaica,NY",JKF Int'l Terminal 5 FC [Post Food Court in Line], Jamaica,NY,11430 +-76.492194,42.538581,"DD [drivethru-yes] [wifi-yes]-Lansing,NY",32 Peruville Rd [Xtramart], Lansing,NY,14882 +-78.677099,43.131769,"DD [drivethru-yes] [wifi-no]-Lockport,NY",6405 Dysinger Rd, Lockport,NY,14094 +-73.939963,40.750996,"DD [drivethru-no] [wifi-yes]-Long Island City,NY",2519 Queens Plz No, Long Island City,NY,11101 +-73.824159,40.894142,"DD [drivethru-no] [wifi-yes]-Mount Vernon,NY",767 South Columbus Ave, Mount Vernon,NY,10551 +-73.954617,40.821149,"DD [drivethru-no] [wifi-yes]-New York,NY",3369 Broadway, New York,NY,10031 +-73.937437,40.839462,"DD [drivethru-no] [wifi-yes]-New York,NY",501 W 167th St, New York,NY,10032 +-73.9902,40.76204,"DD [drivethru-no] [wifi-yes]-New York,NY",693 9th Ave, New York,NY,10036 +-73.842926,40.674405,"DD [drivethru-no] [wifi-no]-Ozone Park,NY",13415 Cross Bay Blvd [Hess], Ozone Park,NY,11417 +-74.085261,40.596841,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",1300 Hylan Blvd, Staten Island,NY,10305 +-73.503949,40.810375,"DD [drivethru-no] [wifi-yes]-Syosset,NY",333 Jericho Turnpike, Syosset,NY,11791 +-73.297671,40.70918,"DD [drivethru-no] [wifi-yes]-West Islip,NY",506 Union Blvd, West Islip,NY,11795 +-74.107574,41.518717,"DD [drivethru-yes] [wifi-yes]-Newburgh,NY",1 Homewood Ave, Newburgh,NY,12550 +-73.917361,40.621664,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",2317 Ralph Ave, Brooklyn,NY,11234 +-74.009183,40.611213,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1510 86th St, Brooklyn,NY,11228 +-73.985727,40.74414,"DD [drivethru-no] [wifi-yes]-New York,NY",80 Madison Ave, New York,NY,10016 +-73.871658,40.734261,"DD/BR [drivethru-no] [wifi-no]-Elmhurst,NY",9015 Queens Blvd Queens Center Space 1012, Elmhurst,NY,11373 +-73.869605,40.74245,"DD [drivethru-no] [wifi-yes]-Elmhurst,NY",9403 Corona Ave, Elmhurst,NY,11373 +-73.766281,41.031143,"DD [drivethru-no] [wifi-yes]-White Plains,NY",50 Mamaroneck Ave, White Plains,NY,10601 +-73.882439,40.945866,"DD [drivethru-no] [wifi-no]-Yonkers,NY",590 Nepperhan Ave, Yonkers,NY,10703 +-73.858536,40.924049,"DD [drivethru-no] [wifi-yes]-Yonkers,NY",678 Central Park Ave #680, Yonkers,NY,10710 +-73.901817,40.917294,"DD [drivethru-no] [wifi-yes]-Yonkers,NY",433 Riverdale Ave, Yonkers,NY,10705 +-73.875053,40.908451,"DD [drivethru-no] [wifi-yes]-Yonkers,NY",710 Mclean Ave, Yonkers,NY,10704 +-73.856542,40.935988,"DD [drivethru-no] [wifi-no]-Yonkers,NY",1001 Central Park Ave, Yonkers,NY,10704 +-73.86467,40.954468,"DD [drivethru-no] [wifi-yes]-Yonkers,NY",132 Tuckahoe Rd, Yonkers,NY,10710 +-73.78349,41.27454,"DD [drivethru-yes] [wifi-yes]-Yorktown Heights,NY",374 Downing Drive, Yorktown Heights,NY,10598 +-73.808289,41.037819,"DD/BR [drivethru-no] [wifi-yes]-White Plains,NY",81 Knollwood Rd, White Plains,NY,10607 +-73.800873,41.043415,"DD [drivethru-no] [wifi-yes]-White Plains,NY",482 Tarrytown Rd, White Plains,NY,10607 +-73.673737,40.99498,"DD [drivethru-no] [wifi-yes]-Port Chester,NY",330 Boston Post Rd, Port Chester,NY,10573 +-73.6695,40.99156,"DD [drivethru-no] [wifi-yes]-Port Chester,NY",295 Midland Avenue, Port Chester,NY,10573 +-74.124306,41.322166,"DD [drivethru-no] [wifi-yes]-Central Valley,NY",124 Route 32, Central Valley,NY,10917 +-73.860428,41.14946,"DD [drivethru-no] [wifi-yes]-Ossining,NY",152 S Highland Ave, Ossining,NY,10562 +-73.729965,40.950306,"DD [drivethru-no] [wifi-yes]-Mamaroneck,NY",427 E Boston Post Rd, Mamaroneck,NY,10543 +-73.713669,40.968609,"DD [drivethru-no] [wifi-yes]-Harrison,NY",260 Halstead Ave, Harrison,NY,10528 +-73.74701,40.93627,"DD [drivethru-no] [wifi-yes]-Larchmont,NY",1311 Boston Post Road, Larchmont,NY,10538 +-73.92603,41.28193,"DD/BR [drivethru-no] [wifi-yes]-Peekskill,NY",422 Washington Ave, Peekskill,NY,10566 +-73.843056,40.927052,"DD [drivethru-no] [wifi-yes]-Yonkers,NY",850 Bronx River Rd, Yonkers,NY,10708 +-73.833221,40.974644,"DD/BR [drivethru-no] [wifi-yes]-Yonkers,NY",2248 Central Park Ave, Yonkers,NY,10710 +-73.84333,40.9532,"DD/BR [drivethru-no] [wifi-yes]-Yonkers,NY",1591 Central Park Avenue, Yonkers,NY,10710 +-73.81136,40.95627,"DD [drivethru-no] [wifi-yes]-Eastchester,NY",38 A Mill Road, Eastchester,NY,10709 +-73.856903,41.165802,"DD/BR [drivethru-no] [wifi-yes]-Ossining,NY",94 Croton Ave, Ossining,NY,10562 +-73.829823,41.151968,"DD [drivethru-no] [wifi-yes]-Briarcliff Manor,NY",80 N State Rd [Bldg 254/7], Briarcliff Manor,NY,10510 +-73.791969,41.13538,"DD [drivethru-no] [wifi-yes]-Pleasantville,NY",2 Washington Ave, Pleasantville,NY,10570 +-73.79427,41.13223,"DD [drivethru-no] [wifi-yes]-Pleasantville,NY",505A Bedford Road, Pleasantville,NY,10570 +-73.80228,40.89724,"DD [drivethru-no] [wifi-yes]-Pelham Manor,NY",4785 Boston Post Road, Pelham Manor,NY,10803 +-73.922821,41.291409,"DD [drivethru-no] [wifi-yes]-Peekskill,NY",Route 6 [Shop Rite], Peekskill,NY,10566 +-73.87874,41.30489,"DD [drivethru-no] [wifi-yes]-Cortlandt Manor,NY",2102 Main St, Cortlandt Manor,NY,10567 +-73.831032,41.291161,"DD/BR [drivethru-no] [wifi-yes]-Yorktown Heights,NY",3399 Crompond Rd,Yorktown Heights,NY,10598 +-73.93365,41.25571,"DD/BR [drivethru-no] [wifi-yes]-Buchanan,NY",113 Albany Post Rd, Buchanan,NY,10511 +-73.92845,41.3078,"DD [drivethru-no] [wifi-yes]-Cortlandt Manor,NY",98 Roa Hook Rd, Cortlandt Manor,NY,10567 +-73.77609,40.98021,"DD [drivethru-no] [wifi-yes]-Scarsdale,NY",1483 Weaver Street, Scarsdale,NY,10583 +-73.858032,40.905575,"DD/BR [drivethru-no] [wifi-yes]-Yonkers,NY",132 Bronx River Rd, Yonkers,NY,10704 +-73.763664,41.033867,"DD [drivethru-no] [wifi-no]-White Plains,NY",275 Main St [Walmart], White Plains,NY,10601 +-73.760384,41.037579,"DD [drivethru-no] [wifi-no]-White Plains,NY",42 Lake St, White Plains,NY,10603 +-73.790527,41.028412,"DD [drivethru-no] [wifi-yes]-White Plains,NY",425 Central Park Ave, White Plains,NY,10606 +-73.85074,41.01282,"DD [drivethru-no] [wifi-yes]-Dobbs Ferry,NY",1 Southfield Avenue [400 Ashford Plaza], Dobbs Ferry,NY,10522 +-73.845421,41.015198,"DD [drivethru-no] [wifi-yes]-Ardsley,NY",800 Saw Mill River Rd, Ardsley,NY,10502 +-73.81921,40.901678,"DD [drivethru-no] [wifi-yes]-Mount Vernon,NY",440 E Sanford Blvd, Mount Vernon,NY,10550 +-73.83709,40.912601,"DD [drivethru-no] [wifi-yes]-Mount Vernon,NY",9 Gramatan Ave # 15, Mount Vernon,NY,10550 +-73.767693,40.918163,"DD/BR [drivethru-no] [wifi-yes]-New Rochelle,NY",96 E Main St, New Rochelle,NY,10801 +-73.757103,41.032867,"DD [drivethru-no] [wifi-no]-White Plains,NY",154 Westchester Ave [Stop & Shop], White Plains,NY,10601 +-73.98933,41.14827,"DD [drivethru-no] [wifi-yes]-New City,NY",30 N Main Street, New City,NY,10956 +-73.810411,40.916077,"DD [drivethru-no] [wifi-yes]-Pelham,NY",33 E Lincoln Ave, Pelham,NY,10803 +-73.777992,40.906948,"DD [drivethru-no] [wifi-yes]-New Rochelle,NY",85 North Ave, New Rochelle,NY,10801 +-73.863892,41.079964,"DD [drivethru-no] [wifi-yes]-Tarrytown,NY",137 Wildey St, Tarrytown,NY,10591 +-73.862374,41.064039,"DD [drivethru-no] [wifi-no]-Tarrytown,NY",386 S Broadway [Hess], Tarrytown,NY,10591 +-73.85488,41.3217,"DD/BR [drivethru-no] [wifi-yes]-Mohegan Lake,NY",1851 E Main St [Route 6], Mohegan Lake,NY,10547 +-73.80896,40.989124,"DD [drivethru-no] [wifi-yes]-Scarsdale,NY",10 Depot Place #12, Scarsdale,NY,10583 +-73.764154,41.03354,"DD [drivethru-no] [wifi-yes]-White Plains,NY",100 Main St [255 Galleria Mall], White Plains,NY,10601 +-73.96489,41.370609,"DD [drivethru-no] [wifi-no]-Highland Falls,NY",310 Main St, Highland Falls,NY,10928 +-73.86148,40.92028,"DD [drivethru-no] [wifi-yes]-Yonkers,NY",851 Yonkers Avenue, Yonkers,NY,10704 +-73.707908,41.075592,"DD [drivethru-no] [wifi-yes]-White Plains,NY",240 Airport Rd [Westchester County Airport], White Plains,NY,10604 +-73.73376,40.95025,"DD [drivethru-no] [wifi-yes]-Mamaroneck,NY",229 Mamaroneck Avenue, Mamaroneck,NY,10543 +-73.88428,40.97026,"DD/BR [drivethru-no] [wifi-yes]-Yonkers,NY",1034 North Broadway, Yonkers,NY,10701 +-73.806234,41.012194,"DD [drivethru-no] [wifi-yes]-Hartsdale,NY",269 S Central Ave, Hartsdale,NY,10530 +-73.8158,41.0589,"DD [drivethru-no] [wifi-yes]-Elmsford,NY",182 N Saw Mill River Road, Elmsford,NY,10523 +-73.815353,41.05315,"DD [drivethru-no] [wifi-yes]-Elmsford,NY",91 E Main St, Elmsford,NY,10523 +-73.744046,40.982268,"DD [drivethru-no] [wifi-no]-Mamaroneck,NY",731 Mamaroneck Ave [Hess], Mamaroneck,NY,10543 +-73.83048,40.97926,"DD [drivethru-no] [wifi-yes]-Yonkers,NY",2365 Central Avenue, Yonkers,NY,10710 +-73.776222,41.063862,"DD/BR [drivethru-no] [wifi-yes]-White Plains,NY",80 Virginia Rd, White Plains,NY,10603 +-73.766167,41.058083,"DD [drivethru-no] [wifi-yes]-White Plains,NY",755 N Broadway, White Plains,NY,10603 +-73.787701,40.92379,"DD [drivethru-no] [wifi-yes]-New Rochelle,NY",646 North Ave, New Rochelle,NY,10801 +-74.33234,41.39808,"DD [drivethru-no] [wifi-yes]-Goshen,NY",Grand Union Plaza/Rts 17m &207 [Grand Union Plaza], Goshen,NY,10924 +-73.75748,41.02077,"DD [drivethru-no] [wifi-yes]-White Plains,NY",570 Mamaroneck Avenue, White Plains,NY,10605 +-73.88557,41.20104,"DD [drivethru-no] [wifi-yes]-Croton On Hudson,NY",22 Maple Street, Croton On Hudson,NY,10520 +-73.732863,41.188636,"DD [drivethru-no] [wifi-no]-Mount Kisco,NY",681 E Main St, Mount Kisco,NY,10549 +-73.72047,41.21404,"DD [drivethru-no] [wifi-yes]-Mount Kisco,NY",176 N Bedford Road, Mount Kisco,NY,10549 +-73.77352,41.15599,"DD [drivethru-no] [wifi-yes]-Chappaqua,NY",86 S Greeley Avenue, Chappaqua,NY,10514 +-73.67448,41.29502,"DD/BR [drivethru-no] [wifi-yes]-Goldens Bridge,NY",5 Goldens Bridge Shopping Centre, Goldens Bridge,NY,10526 +-74.18856,41.324551,"DD [drivethru-no] [wifi-yes]-Monroe,NY",Rt 17M [Monroe Shopping Center], Monroe,NY,10950 +-73.897209,41.534073,"DD [drivethru-yes] [wifi-yes]-Fishkill,NY",680 Route 9, Fishkill,NY,12524 +-73.900792,41.538485,"DD [drivethru-yes] [wifi-no]-Fishkill,NY",747 Route 9, Fishkill,NY,12524 +-73.8563,41.5419,"DD [drivethru-no] [wifi-no]-Hopewell Junction,NY",1495 State Route 52, Hopewell Junction,NY,12533 +-73.59114,41.51751,"DD/BR [drivethru-yes] [wifi-yes]-Patterson,NY",3115 Route 22, Patterson,NY,12563 +-73.580765,41.734028,"DD [drivethru-yes] [wifi-no]-Dover Plains,NY",3 Dover Village Plaza, Dover Plains,NY,12522 +-73.901352,41.947346,"DD [drivethru-no] [wifi-no]-Rhinebeck,NY",6734 Route 9 [Stop & Shop], Rhinebeck,NY,12572 +-74.68314,41.3582,"DD/BR [drivethru-yes] [wifi-yes]-Port Jervis,NY",290 E Main Street, Port Jervis,NY,12771 +-73.953415,41.509171,"DD [drivethru-no] [wifi-no]-Beacon,NY",388 Fishkill Ave, Beacon,NY,12508 +-74.684784,41.654453,"DD [drivethru-yes] [wifi-yes]-Monticello,NY",Route 42 N, Monticello,NY,12701 +-74.094332,41.485746,"DD [drivethru-yes] [wifi-yes]-New Windsor,NY",1053 Little Britain Rd, New Windsor,NY,12553 +-74.00457,41.20043,"DD [drivethru-no] [wifi-yes]-Garnerville,NY",22 W Ramapo Road, Garnerville,NY,10923 +-74.01741,41.22048,"DD [drivethru-no] [wifi-yes]-Stony Point,NY",291 Willow Grove Rd, Stony Point,NY,10980 +-74.16761,41.315533,"DD [drivethru-no] [wifi-yes]-Monroe,NY",360 Route 17M, Monroe,NY,10950 +-74.17374,41.37966,"DD [drivethru-yes] [wifi-yes]-Monroe,NY",1197 Route 208, Monroe,NY,10950 +-74.13491,41.31388,"DD [drivethru-yes] [wifi-yes]-Central Valley,NY",10 Center Dr, Central Valley,NY,10917 +-74.18211,41.56166,"DD [drivethru-no] [wifi-no]-Walden,NY",81 East Main Street [Route 52], Walden,NY,12586 +-73.880821,41.987846,"DD [drivethru-yes] [wifi-yes]-Red Hook,NY",112 S Broadway, Red Hook,NY,12571 +-74.19342,41.155113,"DD [drivethru-no] [wifi-no]-Sloatsburg,NY",59 Orange Tpke, Sloatsburg,NY,10974 +-74.18817,41.15128,"DD [drivethru-no] [wifi-no]-Sloatsburg Travel Plaza [NYS Thruway] Sloatsburg,NY",NYS Thruway Mile 33 N, Sloatsburg,NY,10974 +-74.294674,41.605317,"DD [drivethru-yes] [wifi-yes]-Pine Bush,NY",2380 Rt 52, Pine Bush,NY,12566 +-74.0128,41.06339,"DD [drivethru-no] [wifi-yes]-Pearl River,NY",100 N Middletown Rd, Pearl River,NY,10965 +-74.3589,41.46597,"DD [drivethru-yes] [wifi-yes]-Wallkill,NY",711 Route 211 East, Wallkill,NY,10941 +-74.365059,41.453419,"DD/BR [drivethru-no] [wifi-yes]-Middletown,NY",1 Galleria Dr Galleria Mall At Crystal Run, Middletown,NY,10941 +-73.963861,41.713623,"DD [drivethru-no] [wifi-no]-Highland,NY",3572 Route 9 W [Hess], Highland,NY,12528 +-73.964523,41.711635,"DD [drivethru-yes] [wifi-yes]-Highland,NY",3600 US Highway 9W, Highland,NY,12528 +-74.02589,41.7374,"DD [drivethru-no] [wifi-no]-Highland,NY",491 Route 299 [Hess], Highland,NY,12528 +-74.14846,41.84474,"DD [drivethru-no] [wifi-yes]-Stone Ridge,NY",3853 Main Street, Stone Ridge,NY,12484 +-74.359001,41.33762,"DD [drivethru-yes] [wifi-yes]-Florida,NY",158 N Main St, Florida,NY,10921 +-74.38843,41.72507,"DD [drivethru-no] [wifi-yes]-Ellenville,NY",2 1/2 N Main St, Ellenville,NY,12428 +-73.82901,41.742889,"DD [drivethru-no] [wifi-yes]-Pleasant Valley,NY",Main St [Rte 44], Pleasant Valley,NY,12569 +-73.72316,41.392426,"DD [drivethru-yes] [wifi-yes]-Mahopac,NY",969 Route 6, Mahopac,NY,10541 +-74.025703,41.101692,"DD [drivethru-no] [wifi-yes]-Nanuet,NY",330 W Route 59, Nanuet,NY,10954 +-74.405737,41.492434,"DD [drivethru-yes] [wifi-yes]-Middletown,NY",2580 Rt 302, Middletown,NY,10941 +-74.633621,42.146191,"DD [drivethru-no] [wifi-no]-Margaretville,NY",42598 State Hwy 28 [Hess], Margaretville,NY,12455 +-74.059059,41.45377,"DD [drivethru-no] [wifi-yes]-Vails Gate,NY",Windsor Highway Route 32 [Shop Rite], Vails Gate,NY,12584 +-74.06928,41.51911,"DD [drivethru-yes] [wifi-yes]-Newburgh,NY",1404 Union Avenue, Newburgh,NY,12550 +-74.041954,41.477657,"DD [drivethru-no] [wifi-no]-New Windsor,NY",173 Windsor Hwy [Hess], New Windsor,NY,12553 +-74.033936,41.526531,"DD [drivethru-no] [wifi-yes]-Newburgh,NY",73 North Plank Rd, Newburgh,NY,12550 +-74.039116,41.502243,"DD/BR [drivethru-yes] [wifi-yes]-Newburgh,NY",674 Broadway, Newburgh,NY,12550 +-74.022171,41.49522,"DD [drivethru-yes] [wifi-no]-Newburgh,NY",122 S Robinson Ave # 126, Newburgh,NY,12550 +-74.05408,41.45356,"DD [drivethru-no] [wifi-no]-Vails Gate,NY",1002 Route 94, Vails Gate,NY,12584 +-74.04145,41.43374,"DD [drivethru-no] [wifi-yes]-Cornwall,NY",45 Quaker Ave, Cornwall,NY,12518 +-74.105614,41.111744,"DD/BR [drivethru-yes] [wifi-yes]-Suffern,NY",270 Route 59, Suffern,NY,10901 +-74.16993,41.42585,"DD [drivethru-yes] [wifi-yes]-Washingtonville,NY",30 W Main Street, Washingtonville,NY,10992 +-73.90327,41.6964,"DD [drivethru-no] [wifi-yes]-Poughkeepsie,NY",764 Main Street, Poughkeepsie,NY,12603 +-73.910118,41.740719,"DD [drivethru-no] [wifi-yes]-Poughkeepsie,NY",411 Violet Ave Rte 9G, Poughkeepsie,NY,12601 +-74.268951,41.348415,"DD [drivethru-no] [wifi-yes]-Chester,NY",221 Route 17M [Chester Mall], Chester,NY,10918 +-74.206827,41.508567,"DD [drivethru-no] [wifi-no]-Montgomery,NY",2057 State Route 208 [Hess], Montgomery,NY,12549 +-74.20771,41.51467,"DD [drivethru-yes] [wifi-yes]-Montgomery,NY",2095 Route 208 East, Montgomery,NY,12549 +-73.840881,41.670296,"DD [drivethru-no] [wifi-yes]-Poughkeepsie,NY",688 Freedom Plains Rd, Poughkeepsie,NY,12603 +-73.929581,41.664852,"DD [drivethru-no] [wifi-yes]-Poughkeepsie,NY",2580 South Rd, Poughkeepsie,NY,12601 +-73.847871,41.658628,"DD [drivethru-yes] [wifi-yes]-Poughkeepsie,NY",349 Noxon Rd, Poughkeepsie,NY,12603 +-73.871254,41.702396,"DD [drivethru-yes] [wifi-yes]-Poughkeepsie,NY",816-818 Dutchess Tpke Rte 44, Poughkeepsie,NY,12603 +-73.797976,41.671599,"DD [drivethru-no] [wifi-yes]-Lagrangeville,NY",1151 SR 55, Lagrangeville,NY,12540 +-73.984184,41.205795,"DD [drivethru-no] [wifi-yes]-West Haverstraw,NY",40 S Route 9W, West Haverstraw,NY,10993 +-73.9617,41.04525,"DD/BR [drivethru-no] [wifi-yes]-Orangeburg,NY",26 W Orangeburg Road, Orangeburg,NY,10962 +-73.949929,41.06742,"DD [drivethru-no] [wifi-yes]-Blauvelt,NY",580 Rt 303, Blauvelt,NY,10913 +-74.411557,41.408466,"DD [drivethru-yes] [wifi-yes]-New Hampton,NY",4932 Rt 17M, New Hampton,NY,10958 +-73.957048,41.099882,"DD [drivethru-no] [wifi-no]-West Nyack,NY",1000 Palisades Center Dr, West Nyack,NY,10994 +-73.932251,41.093388,"DD [drivethru-yes] [wifi-yes]-West Nyack,NY",361 Rt 59, West Nyack,NY,10994 +-74.114014,41.114658,"DD [drivethru-no] [wifi-yes]-Suffern,NY",14 North Airmont Rd, Suffern,NY,10901 +-74.151772,41.11573,"DD [drivethru-no] [wifi-no]-Suffern,NY",66 Lafayette Ave, Suffern,NY,10901 +-73.93201,41.09328,"DD [drivethru-yes] [wifi-yes]-Nyack,NY",25 Route 59, Nyack,NY,10960 +-74.040924,41.12788,"DD [drivethru-no] [wifi-yes]-Spring Valley,NY",288 N Main St, Spring Valley,NY,10977 +-74.42549,41.42904,"DD [drivethru-yes] [wifi-yes]-Middletown,NY",148 Dolson Ave, Middletown,NY,10940 +-74.386284,41.455967,"DD [drivethru-no] [wifi-yes]-Middletown,NY",421 Route 211 E, Middletown,NY,10940 +-74.00316,41.92905,"DD [drivethru-no] [wifi-yes]-Kingston,NY",575 Broadway, Kingston,NY,12401 +-74.057129,41.960751,"DD [drivethru-no] [wifi-no]-Kingston,NY",416 Route 28 [Hess], Kingston,NY,12401 +-73.98727,41.941489,"DD [drivethru-no] [wifi-no]-Kingston,NY",380 Flatbush Ave [Hess], Kingston,NY,12401 +-74.019634,41.933529,"DD [drivethru-no] [wifi-yes]-Kingston,NY",295 Wall St, Kingston,NY,12401 +-73.994621,41.954643,"DD [drivethru-no] [wifi-no]-Kingston,NY",841 Ulster Ave [Hess], Kingston,NY,12401 +-73.989059,41.96899,"DD [drivethru-yes] [wifi-yes]-Kingston,NY",1285 Ulster Ave, Kingston,NY,12401 +-73.99602,41.94499,"DD [drivethru-yes] [wifi-yes]-Kingston,NY",585 Ulster Avenue, Kingston,NY,12401 +-73.91032,41.597451,"DD [drivethru-no] [wifi-no]-Wappingers Falls,NY",1582 Route 9, Wappingers Falls,NY,12590 +-74.71969,41.78407,"DD [drivethru-no] [wifi-yes]-Liberty,NY",1935 State Rte 52, Liberty,NY,12754 +-74.034617,41.18673,"DD [drivethru-no] [wifi-no]-Pomona,NY",361 Route 202, Pomona,NY,10970 +-73.57777,41.426,"DD [drivethru-no] [wifi-no]-Brewster,NY",1583 Route 22 [Country Plaza], Brewster,NY,10509 +-73.63383,41.39933,"DD [drivethru-no] [wifi-yes]-Brewster,NY",1041 Route 22, Brewster,NY,10509 +-73.62915,41.418556,"DD [drivethru-yes] [wifi-yes]-Brewster,NY",111a Independant Way, Brewster,NY,10509 +-73.93449,41.14591,"DD [drivethru-no] [wifi-yes]-Congers,NY",15 S Route 303, Congers,NY,10920 +-74.1884,41.15128,"DD [drivethru-no] [wifi-no]-Bronx,NY",70 Major Deegan Expy, Bronx,NY,10471 +-74.1897,41.1531,"DD [drivethru-no] [wifi-no]-Bronx,NY",71 Major Deegan Expy, Bronx,NY,10471 +-73.846222,40.65168,"DD [drivethru-no] [wifi-yes]-Howard Beach,NY",8209 153rd Ave, Howard Beach,NY,11414 +-73.125008,40.811558,"DD [drivethru-no] [wifi-no]-Ronkonkoma,NY",4560 Express Dr S At Ocean Avenue, Ronkonkoma,NY,11779 +-74.069955,41.742805,"DD [drivethru-no] [wifi-yes]-New Paltz,NY",250 Main St, New Paltz,NY,12561 +-73.95626,42.05478,"DD [drivethru-yes] [wifi-yes]-Saugerties,NY",3112 Highway 9w, Saugerties,NY,12477 +-73.975555,42.083328,"DD [drivethru-no] [wifi-no]-Saugerties,NY",399 Route 212 [Hess], Saugerties,NY,12477 +-73.959938,42.080536,"DD [drivethru-yes] [wifi-yes]-Saugerties,NY",138 Ulster Ave, Saugerties,NY,12477 +-73.930291,41.762665,"DD [drivethru-yes] [wifi-no]-Hyde Park,NY",3979 Albany Post Rd, Hyde Park,NY,12538 +-73.680038,41.492481,"DD [drivethru-yes] [wifi-yes]-Carmel,NY",1090 Route 52, Carmel,NY,10512 +-73.684007,41.5095,"DD [drivethru-no] [wifi-no]-Carmel,NY",1342 Route 52 [Hess], Carmel,NY,10512 +-73.827377,41.606743,"DD [drivethru-no] [wifi-no]-East Fishkill,NY",900 Rte 376 Suite A, East Fishkill,NY,12533 +-73.8507,41.540451,"DD [drivethru-no] [wifi-no]-Hopewell Junction,NY",807 State Rt 82, Hopewell Junction,NY,12533 +-73.78398,41.55445,"DD [drivethru-no] [wifi-no]-Hopewell Junction,NY",2593 Route 52 [Taconic Plaza], Hopewell Junction,NY,12533 +-73.696739,41.62899,"DD [drivethru-yes] [wifi-no]-Poughquaq,NY",2444 Route 55 & Beekman Rd, Poughquag,NY,12570 +-73.67074,41.415287,"DD [drivethru-yes] [wifi-yes]-Carmel,NY",1863 Rt 6, Carmel,NY,10512 +-74.02108,41.099632,"DD/BR [drivethru-no] [wifi-yes]-Nanuet,NY",213 W Route 59, Nanuet,NY,10954 +-73.997459,40.660701,"DD/BR [drivethru-yes] [wifi-yes]-Brooklyn,NY",737 4th Ave, Brooklyn,NY,11232 +-72.942093,40.806297,"DD [drivethru-no] [wifi-no]-West Yaphank,NY",80A Horseblock Rd [Hess], West Yaphank,NY,11980 +-73.958443,40.608543,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1422 Kings Hwy, Brooklyn,NY,11229 +-73.954567,40.610439,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1903 Kings Hwy, Brooklyn,NY,11229 +-73.921051,40.835552,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",46 E 167th St, Bronx,NY,10452 +-74.23424,40.527814,"DD [drivethru-yes] [wifi-yes]-Staten Island,NY",2965 Veterans Rd W, Staten Island,NY,10309 +-74.103935,40.577049,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",1854 Hylan Blvd, Staten Island,NY,10306 +-73.751085,40.672295,"DD/BR [drivethru-no] [wifi-yes]-Jamaica,NY",13328 Springfield Blvd, Jamaica,NY,11413 +-73.955474,40.681096,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1151 Fulton St, Brooklyn,NY,11216 +-73.928162,40.625668,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",4926 Avenue K, Brooklyn,NY,11234 +-74.20875,40.54358,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",655 Rossville Ave, Staten Island,NY,10309 +-74.21685,40.52212,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",6390 Amboy Road # 10, Staten Island,NY,10309 +-74.145996,40.542061,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",4000 Hylan Blvd, Staten Island,NY,10308 +-74.143288,40.554279,"DD/BR [drivethru-no] [wifi-no]-Staten Island,NY",150B Greaves Lane [Pathmark Center], Staten Island,NY,10308 +-73.921104,40.76693,"DD/BR [drivethru-no] [wifi-yes]-Astoria,NY",3117 30th Ave, Astoria,NY,11102 +-73.942589,40.65572,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",506 Clarkson Ave, Brooklyn,NY,11203 +-74.163742,40.5602,"DD/BR [drivethru-yes] [wifi-yes]-Staten Island,NY",680 Arthur Kill Rd, Staten Island,NY,10308 +-73.855,40.8979,"DD [drivethru-no] [wifi-yes]-Bronx,NY",4399A White Plains Road, Bronx,NY,10466 +-73.867424,40.857944,"DD [drivethru-no] [wifi-yes]-Bronx,NY",2200 White Plains Rd, Bronx,NY,10467 +-73.879044,40.870056,"DD [drivethru-no] [wifi-yes]-Bronx,NY",3059 Webster Ave, Bronx,NY,10467 +-73.959641,40.655415,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",721 Flatbush Ave, Brooklyn,NY,11226 +-73.83366,40.75628,"DD [drivethru-no] [wifi-yes]-Flushing,NY",4102 College Point Boulevard, Flushing,NY,11355 +-73.924257,40.752442,"DD [drivethru-no] [wifi-no]-Long Island City,NY",3904 Northern Blvd [Hess], Long Island City,NY,11101 +-73.96053,40.57782,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",711 Brighton Beach Avenue, Brooklyn,NY,11235 +-73.860794,40.834942,"DD [drivethru-no] [wifi-yes]-Bronx,NY",1374 Metropolitan Ave, Bronx,NY,10462 +-73.793526,40.685608,"DD/BR [drivethru-no] [wifi-yes]-Jamaica,NY",11420 Sutphin Blvd, Jamaica,NY,11434 +-73.852249,40.834007,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",2172 Westchester Ave, Bronx,NY,10462 +-73.837854,40.757335,"DD [drivethru-no] [wifi-yes]-Flushing,NY",8922 Roosevelt Ave, Flushing,NY,11372 +-73.8715,40.82434,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",1650 Bruckner Boulevard, Bronx,NY,10473 +-73.822128,40.826435,"DD [drivethru-no] [wifi-yes]-Bronx,NY",3732 E Tremont Ave, Bronx,NY,10465 +-73.786636,40.763706,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",3547 Francis Lewis Blvd, Flushing,NY,11358 +-73.79082,40.8545,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",636 City Island Avenue, Bronx,NY,10464 +-73.8983,40.890113,"DD [drivethru-no] [wifi-yes]-Bronx,NY",5987 Broadway 89, Bronx,NY,10471 +-73.86732,40.86545,"DD [drivethru-no] [wifi-yes]-Bronx,NY",701 Allerton Avenue, Bronx,NY,10467 +-73.863655,40.895504,"DD [drivethru-no] [wifi-yes]-Bronx,NY",4201 Webster Ave [Mobil], Bronx,NY,10470 +-73.96765,40.63536,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",906 Coney Island Avenue, Brooklyn,NY,11218 +-73.754257,40.596031,"DD/BR [drivethru-no] [wifi-no]-Far Rockaway,NY",239 Beach 20th St, Far Rockaway,NY,11691 +-73.83676,40.84349,"DD [drivethru-yes] [wifi-yes]-Bronx,NY",1325 Hutchinson River Parkway [Citgo], Bronx,NY,10461 +-73.836578,40.84354,"DD [drivethru-yes] [wifi-yes]-Bronx,NY",1320 Hutchinson River Pkwy [Citgo], Bronx,NY,10461 +-73.892281,40.81665,"DD [drivethru-no] [wifi-no]-Bronx,NY",880 Garrison Ave, Bronx,NY,10474 +-73.982008,40.688032,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",322 Livingston St, Brooklyn,NY,11217 +-73.84274,40.68982,"DD [drivethru-no] [wifi-yes]-Ozone Park,NY",10202 Atlantic Avenue, Ozone Park,NY,11416 +-73.853104,40.693459,"DD/BR [drivethru-no] [wifi-yes]-Woodhaven,NY",9217 Jamaica Ave, Woodhaven,NY,11421 +-73.859675,40.692561,"DD/BR [drivethru-no] [wifi-yes]-Woodhaven,NY",8413 Jamaica Ave, Woodhaven,NY,11421 +-73.8308,40.70821,"DD [drivethru-no] [wifi-yes]-Kew Gardens,NY",8155 Lefferts Boulevard, Kew Gardens,NY,11415 +-73.80522,40.67468,"DD/BR [drivethru-yes] [wifi-yes]-South Ozone Park,NY",13320 Rockaway Boulevard, South Ozone Park,NY,11420 +-73.82675,40.68585,"DD/BR [drivethru-no] [wifi-yes]-South Richmond Hill,NY",11611 Liberty Avenue, South Richmond Hill,NY,11419 +-73.83829,40.6524,"DD [drivethru-no] [wifi-yes]-Howard Beach,NY",16302 Crossing Bay Boulevard, Howard Beach,NY,11414 +-73.801229,40.67436,"DD/BR [drivethru-no] [wifi-yes]-Jamaica,NY",9405 Rockaway Blvd, Jamaica,NY,11417 +-73.89265,40.82429,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",1040 Westchester Avenue, Bronx,NY,10459 +-73.993279,40.670177,"DD/BR [drivethru-no] [wifi-no]-Brooklyn,NY",137 12th St, Brooklyn,NY,11215 +-74.02543,40.62267,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",8425 5th Avenue [84th St], Brooklyn,NY,11209 +-73.84465,40.675904,"DD [drivethru-no] [wifi-no]-Ozone Park,NY",107-11/15 Rockaway Blvd, Ozone Park,NY,11417 +-73.839908,40.658917,"DD [drivethru-no] [wifi-no]-Howard Beach,NY",159-04 Cross Bay Blvd [Hess], Howard Beach,NY,11414 +-74.008188,40.619674,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",7602 13th Ave, Brooklyn,NY,11228 +-73.98638,40.66907,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",448 5th Avenue, Brooklyn,NY,11215 +-73.863777,40.730328,"DD/BR [drivethru-no] [wifi-yes]-Rego Park,NY",9556 Queens Blvd, Rego Park,NY,11374 +-73.83176,40.84617,"DD [drivethru-no] [wifi-no]-Bronx,NY",1752 Crosby Avenue, Bronx,NY,10461 +-73.80964,40.81971,"DD [drivethru-no] [wifi-yes]-Bronx,NY",4147 Throggs Neck Expressway, Bronx,NY,10465 +-73.866837,40.831871,"DD [drivethru-no] [wifi-no]-Bronx,NY",1791 Westchester Ave, Bronx,NY,10472 +-73.84589,40.84274,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",2702 East Tremont Avenue, Bronx,NY,10461 +-73.84465,40.84677,"DD [drivethru-no] [wifi-no]-Bronx,NY",1720 Eastchester Road [Pathmark], Bronx,NY,10461 +-74.077309,40.643749,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",97 Stuyvesant Place, Staten Island,NY,10301 +-73.869133,40.762157,"DD/BR [drivethru-no] [wifi-yes]-East Elmhurst,NY",10009 Astoria Blvd, East Elmhurst,NY,11369 +-73.856903,40.893139,"DD [drivethru-no] [wifi-yes]-Bronx,NY",712 E 233rd St, Bronx,NY,10466 +-73.996666,40.68037,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",383 Court St, Brooklyn,NY,11231 +-73.86589,40.84526,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",699 Morris Park Avenue, Bronx,NY,10462 +-73.855255,40.711037,"DD [drivethru-no] [wifi-yes]-Forest Hills,NY",9712 Metropolitan Ave, Forest Hills,NY,11375 +-73.853378,40.7272,"DD [drivethru-no] [wifi-yes]-Forest Hills,NY",10005 Queens Blvd, Forest Hills,NY,11375 +-73.867516,40.854893,"DD [drivethru-no] [wifi-yes]-Bronx,NY",2148 White Plains Rd, Bronx,NY,10462 +-73.975588,40.683423,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",625 Atlantic Ave [Atlanta Center Mall], Brooklyn,NY,11217 +-73.9936,40.66835,"DD [drivethru-yes] [wifi-no]-Brooklyn,NY",552 3rd Avenue, Brooklyn,NY,11215 +-73.925049,40.755821,"DD [drivethru-no] [wifi-yes]-Long Island City,NY",3530 36th St Ste A, Long Island City,NY,11106 +-73.91479,40.75302,"DD/BR [drivethru-no] [wifi-yes]-Long Island City,NY",3500 48th Street, Long Island City,NY,11101 +-73.904227,40.72404,"DD [drivethru-no] [wifi-yes]-Flushing,NY",6908 Grand Ave, Flushing,NY,11378 +-73.884109,40.747475,"DD [drivethru-no] [wifi-no]-Jackson Heights,NY",8118 Roosevelt Ave, Jackson Heights,NY,11372 +-73.920036,40.757923,"DD [drivethru-no] [wifi-yes]-Astoria,NY",3248 Steinway St, Astoria,NY,11103 +-73.745219,40.729816,"DD [drivethru-no] [wifi-yes]-Queens Village,NY",21911 Hillside Ave, Queens Village,NY,11427 +-73.83613,40.70757,"DD/BR [drivethru-no] [wifi-yes]-Richmond Hill,NY",11602 Metropolitan Avenue, Richmond Hill,NY,11418 +-73.820328,40.765178,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",14625 Northern Blvd, Flushing,NY,11354 +-74.120415,40.60207,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",995 Manor Rd, Staten Island,NY,10314 +-73.994401,40.602261,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",2168 86th St, Brooklyn,NY,11214 +-73.93713,40.62287,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1922 Flatbush Avenue # L, Brooklyn,NY,11210 +-73.93361,40.6775,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1720 Atlantic Avenue, Brooklyn,NY,11213 +-73.793602,40.653085,"DD [drivethru-no] [wifi-no]-Jamaica,NY",JFK Int'l Airport [Terminal 4 Main], Jamaica,NY,11430 +-73.786412,40.646982,"DD [drivethru-no] [wifi-no]-Jamaica,NY",JFK Int'l Airport [Terminal 1], Jamaica,NY,11430 +-74.01412,40.63454,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",6402 7th Avenue, Brooklyn,NY,11220 +-74.026368,40.634479,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",7111 3rd Ave, Brooklyn,NY,11209 +-73.813515,40.788536,"DD [drivethru-no] [wifi-yes]-Whitestone,NY",1423 150th St, Whitestone,NY,11357 +-73.80368,40.782422,"DD [drivethru-no] [wifi-no]-Whitestone,NY",1755 Francis Lewis Blvd, Whitestone,NY,11357 +-74.030396,40.617413,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",9243 4th Ave, Brooklyn,NY,11209 +-74.020302,40.634758,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",6755 5th Ave, Brooklyn,NY,11220 +-73.940338,40.593628,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",3701 Nostrand Ave, Brooklyn,NY,11235 +-73.76192,40.72001,"DD [drivethru-no] [wifi-yes]-Hollis,NY",202-09 Hillside Avenue, Hollis,NY,11423 +-73.795609,40.701088,"DD [drivethru-no] [wifi-yes]-Jamaica,NY",16225 Liberty Ave, Jamaica,NY,11434 +-73.74716,40.73659,"DD [drivethru-no] [wifi-no]-Oakland Gardens,NY",7910 Springfield Boulevard, Oakland Gardens,NY,11364 +-73.931236,40.658421,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",610 Utica Ave, Brooklyn,NY,11203 +-73.897339,40.867317,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",2 E Kingsbridge Ave, Bronx,NY,10468 +-73.91251,40.84748,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",1733 Jerome Avenue, Bronx,NY,10453 +-73.932986,40.764361,"DD/BR [drivethru-no] [wifi-yes]-Long Island City,NY",3326 21st St, Long Island City,NY,11106 +-73.928205,40.763144,"DD/BR [drivethru-no] [wifi-yes]-Astoria,NY",2514 Broadway, Astoria,NY,11106 +-74.104507,40.645214,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",1000 Richmond Terrace, Staten Island,NY,10301 +-73.91808,40.77007,"DD/BR [drivethru-no] [wifi-yes]-Astoria,NY",2502 31st Street, Astoria,NY,11102 +-73.91581,40.762655,"DD [drivethru-no] [wifi-yes]-Long Island City,NY",3043 Steinway St, Long Island City,NY,11103 +-74.129272,40.61269,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",1955a Victory Blvd, Staten Island,NY,10314 +-73.735527,40.653728,"DD [drivethru-no] [wifi-yes]-Rosedale,NY",23436 Merrick Boulevard, Rosedale,NY,11422 +-73.919378,40.743525,"DD/BR [drivethru-no] [wifi-yes]-Sunnyside,NY",4513 Queens Blvd, Sunnyside,NY,11104 +-73.934374,40.738717,"DD [drivethru-no] [wifi-no]-Long Island City,NY",4925 Van Dam St, Long Island City,NY,11101 +-74.148064,40.624947,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",1776 Forest Ave, Staten Island,NY,10303 +-73.96223,40.62508,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1410 Avenue J, Brooklyn,NY,11230 +-74.032154,40.620984,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",8924 Third Ave, Brooklyn,NY,11209 +-73.896275,40.754281,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",7016 Northern Blvd, Flushing,NY,11372 +-74.10838,40.57195,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",2425 Hylan Boulevard, Staten Island,NY,10306 +-73.783882,40.712753,"DD/BR [drivethru-no] [wifi-yes]-Jamaica,NY",17915 Hillside Ave, Jamaica,NY,11432 +-73.872356,40.773092,"DD [drivethru-no] [wifi-no]-Flushing,NY",Grand Central Pkwy [LaGuardia Intl Airport], Flushing,NY,11371 +-73.865926,40.771889,"DD [drivethru-no] [wifi-no]-Flushing,NY",Grand Central Pkwy [US Airways Terminal Kiosk], Flushing,NY,11371 +-73.843498,40.861977,"DD [drivethru-no] [wifi-yes]-Bronx,NY",2451 Eastchester Rd, Bronx,NY,10469 +-73.86007,40.86554,"DD [drivethru-no] [wifi-no]-Bronx,NY",950 Allerton Avenue, Bronx,NY,10469 +-73.863724,40.876675,"DD [drivethru-no] [wifi-yes]-Bronx,NY",763 E Gun Hill Rd, Bronx,NY,10467 +-73.95977,40.582146,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",3031 Coney Island Ave, Brooklyn,NY,11235 +-73.811167,40.667113,"DD [drivethru-no] [wifi-no]-South Ozone Park,NY",12903 N Conduit Ave [Hess], South Ozone Park,NY,11420 +-73.948853,40.680542,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1309 Fulton St, Brooklyn,NY,11216 +-73.84929,40.578562,"DD [drivethru-no] [wifi-yes]-Belle Harbor,NY",432 Beach 129th St, Belle Harbor,NY,11694 +-73.880875,40.702072,"DD/BR [drivethru-no] [wifi-yes]-Glendale,NY",7007 Myrtle Ave, Glendale,NY,11385 +-73.976372,40.604813,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",373 Kings Hwy, Brooklyn,NY,11223 +-73.96289,40.60702,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",934 Kings Highway, Brooklyn,NY,11229 +-73.959785,40.617733,"DD/BR [drivethru-no] [wifi-no]-Brooklyn,NY",1510 Elm Ave, Brooklyn,NY,11230 +-73.99115,40.69223,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",56 Court Street, Brooklyn,NY,11201 +-73.988983,40.620102,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",6309 18th Ave Unit 6315, Brooklyn,NY,11204 +-73.931099,40.585381,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",2801 Knapp St, Brooklyn,NY,11235 +-73.921169,40.75248,"DD/BR [drivethru-no] [wifi-no]-Long Island City,NY",4202 Northern Blvd, Long Island City,NY,11101 +-74.19701,40.55952,"DD [drivethru-no] [wifi-no]-Staten Island,NY",1769 Arthurkill Road, Staten Island,NY,10312 +-74.191826,40.532402,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",901 Huguenot Ave, Staten Island,NY,10312 +-73.83847,40.881237,"DD [drivethru-no] [wifi-yes]-Bronx,NY",3804 Boston Post Rd, Bronx,NY,10475 +-73.97831,40.68438,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",578 Atlantic Avenue, Brooklyn,NY,11217 +-73.84528,40.754772,"DD [drivethru-no] [wifi-no]-Flushing,NY",12301 Roosevelt Ave [Citifield Stadium], Flushing,NY,11368 +-73.873924,40.733253,"DD/BR [drivethru-no] [wifi-yes]-Elmhurst,NY",9507 57th Ave, Elmhurst,NY,11373 +-73.799851,40.722863,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",16822 Union Tpke, Flushing,NY,11366 +-73.796036,40.737648,"DD/BR [drivethru-yes] [wifi-yes]-Fresh Meadows,NY",6120 Fresh Meadow Ln, Fresh Meadows,NY,11365 +-73.91032,40.83103,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",1167 Webster Avenue, Bronx,NY,10456 +-73.901997,40.845846,"DD [drivethru-no] [wifi-yes]-Bronx,NY",1805 Webster Ave, Bronx,NY,10457 +-73.903297,40.680897,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1610 Bushwick Ave, Brooklyn,NY,11207 +-73.919502,40.638969,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1556 Ralph Ave, Brooklyn,NY,11236 +-74.013348,40.642185,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",5510 5th Ave, Brooklyn,NY,11220 +-73.912109,40.672523,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1710 Eastern Pkwy, Brooklyn,NY,11223 +-73.876231,40.773767,"DD [drivethru-no] [wifi-no]-Flushing,NY",Grand Central Pkwy [Delta Terminal], Flushing,NY,11371 +-73.861905,40.769188,"DD [drivethru-no] [wifi-no]-Flushing,NY",LGA Airport Delta/Grove Grand Central Pkwy, Flushing,NY,11371 +-73.787458,40.642344,"DD [drivethru-no] [wifi-no]-Jamaica,NY",300 Terminal Rd [Delta Terminal 3], Jamaica,NY,11430 +-73.781075,40.643651,"DD [drivethru-no] [wifi-no]-Jamaica,NY",300 Terminal Rd [JFK Int'l Airport], Jamaica,NY,11430 +-73.786512,40.646982,"DD [drivethru-no] [wifi-no]-Jamaica,NY",JFK Int'l Airport [JFK Baggage Claim], Jamaica,NY,11430 +-73.82965,40.71366,"DD [drivethru-no] [wifi-no]-Kew Gardens,NY",12074 Queens Boulevard, Kew Gardens,NY,11415 +-73.83615,40.78628,"DD/BR [drivethru-no] [wifi-yes]-College Point,NY",13210 14th Avenue, College Point,NY,11356 +-73.845891,40.782639,"DD [drivethru-no] [wifi-yes]-College Point,NY",1834 College Point Blvd, College Point,NY,11356 +-73.91107,40.63692,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",8301 Flatlands Ave, Brooklyn,NY,11236 +-73.76091,40.67931,"DD [drivethru-no] [wifi-yes]-Jamaica,NY",13118 Merrick Boulevard, Jamaica,NY,11434 +-73.80759,40.71483,"DD/BR [drivethru-yes] [wifi-yes]-Jamaica,NY",8347 Parsons Boulevard, Jamaica,NY,11432 +-73.802528,40.707607,"DD [drivethru-no] [wifi-yes]-Jamaica,NY",8777 Parson Blvd, Jamaica,NY,11432 +-73.79243,40.70643,"DD/BR [drivethru-no] [wifi-yes]-Jamaica,NY",16804 Jamaica Avenue, Jamaica,NY,11432 +-73.815688,40.704258,"DD [drivethru-no] [wifi-no]-Jamaica,NY",13819 Hillside Ave, Jamaica,NY,11435 +-73.827477,40.852604,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",3276 Westchester Ave, Bronx,NY,10461 +-73.97243,40.60888,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",407 Avenue P, Brooklyn,NY,11223 +-73.971896,40.604181,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",482A Kings Hwy, Brooklyn,NY,11223 +-73.90333,40.74574,"DD/BR [drivethru-no] [wifi-yes]-Woodside,NY",3956 61st Street, Woodside,NY,11377 +-74.005653,40.655853,"DD/BR [drivethru-yes] [wifi-yes]-Brooklyn,NY",126 35th St, Brooklyn,NY,11232 +-73.905831,40.700296,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",5615 Myrtle Ave, Flushing,NY,11385 +-74.19385,40.58898,"DD [drivethru-yes] [wifi-yes]-Staten Island,NY",180 W Service Road, Staten Island,NY,10314 +-74.169235,40.579079,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",2795 Richmond Ave [Pergament Mall], Staten Island,NY,10314 +-73.95548,40.66957,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1550 Bedford Avenue, Brooklyn,NY,11225 +-73.88197,40.64794,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1358 Pennsylvania Avenue, Brooklyn,NY,11239 +-73.86761,40.72276,"DD/BR [drivethru-no] [wifi-yes]-Rego Park,NY",6365 Woodhaven Boulevard, Rego Park,NY,11374 +-73.838654,40.781803,"DD [drivethru-no] [wifi-no]-College Point,NY",13007 20th Ave, College Point,NY,11356 +-73.864944,40.767754,"DD [drivethru-no] [wifi-no]-East Elmhurst,NY",10702 Grand Central Pkwy East, East Elmhurst,NY,11369 +-73.951164,40.724213,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",643 Manhattan Ave, Brooklyn,NY,11222 +-73.713293,40.736138,"DD/BR [drivethru-no] [wifi-yes]-Floral Park,NY",25420 Hillside Ave, Floral Park,NY,11004 +-73.738848,40.709512,"DD/BR [drivethru-no] [wifi-yes]-Jamaica,NY",10962 Francis Lewis Blvd, Jamaica,NY,11429 +-73.831229,40.759336,"DD [drivethru-no] [wifi-yes]-Flushing,NY",13541 Roosevelt Ave, Flushing,NY,11354 +-73.772044,40.710369,"DD/BR [drivethru-yes] [wifi-yes]-Jamaica,NY",18711 Jamaica Ave, Jamaica,NY,11423 +-73.9247,40.69101,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1285 Broadway, Brooklyn,NY,11221 +-73.912904,40.645617,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",8925 Avenue D, Brooklyn,NY,11236 +-73.922661,40.64476,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",5708 Clarendon Rd, Brooklyn,NY,11203 +-73.997375,40.598278,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",8775 Bay Pkwy, Brooklyn,NY,11214 +-73.99863,40.60484,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1980 86th Street, Brooklyn,NY,11214 +-74.10359,40.61638,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",1201 Victory Blvd, Staten Island,NY,301 +-74.11475,40.62911,"DD/BR [drivethru-yes] [wifi-yes]-Staten Island,NY",770 Forest Ave, Staten Island,NY,10310 +-74.134544,40.626057,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",1351 Forest Ave, Staten Island,NY,10302 +-73.935425,40.696838,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1132 Myrtle Ave, Brooklyn,NY,11206 +-73.896936,40.706892,"DD/BR [drivethru-no] [wifi-yes]-Fresh Pond,NY",6667 Fresh Pond Rd, Fresh Pond,NY,11385 +-74.16355,40.62687,"DD/BR [drivethru-yes] [wifi-yes]-Staten Island,NY",2222 Forest Ave, Staten Island,NY,10303 +-74.022697,40.628918,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",7519 5th Ave, Brooklyn,NY,11209 +-74.021,40.64516,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",5702 2nd Avenue, Brooklyn,NY,11220 +-73.97139,40.647705,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",418 Coney Island Ave, Brooklyn,NY,11218 +-73.94719,40.63237,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1575 Flatbush Ave, Brooklyn,NY,11210 +-73.953908,40.743342,"DD/BR [drivethru-no] [wifi-yes]-Long Island City,NY",4902 Vernon Blvd, Long Island City,NY,11101 +-73.905067,40.879227,"DD [drivethru-no] [wifi-yes]-Bronx,NY",209 W 231st St, Bronx,NY,10463 +-73.907001,40.87667,"DD/BR [drivethru-yes] [wifi-yes]-Bronx,NY",5501 Broadway, Bronx,NY,10460 +-73.904549,40.906822,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",508 259th St, Bronx,NY,10471 +-73.773888,40.768795,"DD [drivethru-no] [wifi-no]-Bayside,NY",3504 Bell Blvd, Bayside,NY,11361 +-73.86375,40.74974,"DD [drivethru-no] [wifi-yes]-Corona,NY",10227 Roosevelt Avenue, Corona,NY,11368 +-73.879566,40.725449,"DD [drivethru-no] [wifi-yes]-Middle Village,NY",6010 80th St, Middle Village,NY,11379 +-73.760264,40.746854,"DD [drivethru-no] [wifi-no]-Flushing,NY",21902 Hoarace Harding Blvd, Flushing,NY,11364 +-73.962967,40.635555,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",10 Newkirk Plaza, Brooklyn,NY,11226 +-74.067024,40.615566,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",1131 Bay St, Staten Island,NY,10305 +-73.91867,40.70396,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",137 Wyckoff Avenue, Brooklyn,NY,11237 +-73.91726,40.69892,"DD/BR [drivethru-no] [wifi-no]-Brooklyn,NY",1443 Myrtle Avenue, Brooklyn,NY,11237 +-73.904114,40.721191,"DD/BR [drivethru-yes] [wifi-yes]-Flushing,NY",6103 Flushing Ave, Flushing,NY,11378 +-73.990692,40.686703,"DD/BR [drivethru-no] [wifi-no]-Brooklyn,NY",148 Smith St, Brooklyn,NY,11201 +-73.909668,40.824532,"DD [drivethru-no] [wifi-yes]-Bronx,NY",511 E 163rd St, Bronx,NY,10451 +-73.92242,40.80467,"DD [drivethru-yes] [wifi-yes]-Bronx,NY",114 Bruckner Boulevard, Bronx,NY,10454 +-73.911255,40.805416,"DD [drivethru-no] [wifi-yes]-Bronx,NY",281 Bruckner Blvd, Bronx,NY,10454 +-73.928238,40.815998,"DD [drivethru-no] [wifi-yes]-Bronx,NY",350-370 Grand Concourse, Bronx,NY,10451 +-73.869781,40.749481,"DD/BR [drivethru-no] [wifi-yes]-Corona,NY",3804 Junction Blvd, Corona,NY,11368 +-73.890541,40.748959,"DD [drivethru-no] [wifi-yes]-Jackson Heights,NY",7520 37th Ave, Jackson Heights,NY,11372 +-73.883526,40.743252,"DD/BR [drivethru-no] [wifi-no]-Elmhurst,NY",8111 Broadway, Elmhurst,NY,11373 +-73.874603,40.735123,"DD [drivethru-no] [wifi-no]-Elmhurst,NY",8801 Queens Blvd Sterns Mall, Elmhurst,NY,11373 +-73.89672,40.70061,"DD/BR [drivethru-no] [wifi-yes]-Ridgewood,NY",6040 Myrtle Avenue, Ridgewood,NY,11385 +-73.90702,40.65488,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1427 Linden Boulevard, Brooklyn,NY,11212 +-73.89073,40.6587,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1939 Linden Boulevard, Brooklyn,NY,11207 +-73.94444,40.71491,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",352 Graham Avenue, Brooklyn,NY,11211 +-73.942406,40.701473,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",13 Graham Ave, Brooklyn,NY,11206 +-73.952113,40.734081,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",356 McGuinness Blvd, Brooklyn,NY,11222 +-73.906754,40.712803,"DD [drivethru-no] [wifi-yes]-Ridgewood,NY",5602 Metropolitan Ave, Ridgewood,NY,11385 +-73.87626,40.82902,"DD [drivethru-no] [wifi-yes]-Bronx,NY",1583 Westchester Avenue, Bronx,NY,10472 +-73.96115,40.59792,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",2419 Coney Island Avenue, Brooklyn,NY,11223 +-73.95728,40.60847,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1691 E 16th Street, Brooklyn,NY,11229 +-73.98445,40.59626,"DD/BR [drivethru-yes] [wifi-yes]-Brooklyn,NY",2630 86th Street, Brooklyn,NY,11223 +-74.121337,40.608969,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",764 Manor Rd, Staten Island,NY,10314 +-74.16543,40.58772,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",77 A Richmond Hill Rd, Staten Island,NY,10314 +-74.15846,40.6133,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",1445 Richmond Ave, Staten Island,NY,10314 +-74.162605,40.607143,"DD/BR [drivethru-no] [wifi-yes]-Staten Island,NY",1700 Richmond Ave, Staten Island,NY,10314 +-74.165398,40.590687,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",2275/2375 Richmond Ave [Heartland Shopping Center], Staten Island,NY,10314 +-73.997358,40.664592,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",668 3rd Ave, Brooklyn,NY,11232 +-73.894264,40.86248,"DD [drivethru-no] [wifi-yes]-Bronx,NY",327 E Fordham Rd, Bronx,NY,10458 +-73.911594,40.699838,"DD [drivethru-no] [wifi-yes]-Ridgewood,NY",325 Wyckoff Ave, Ridgewood,NY,11385 +-73.923073,40.743389,"DD/BR [drivethru-no] [wifi-yes]-Sunnyside,NY",4128 Queens Blvd, Sunnyside,NY,11104 +-73.8159,40.7394,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",15367 Horace Harding Expressway, Flushing,NY,11367 +-73.789528,40.667263,"DD [drivethru-no] [wifi-no]-Jamaica,NY",13344 150th St, Jamaica,NY,11436 +-73.828762,40.760611,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",13640 39th Ave, Flushing,NY,11354 +-73.75644,40.74861,"DD [drivethru-no] [wifi-yes]-Oakland Gardens,NY",6158 Springfield Boulevard, Oakland Gardens,NY,11364 +-73.81285,40.79268,"DD [drivethru-no] [wifi-yes]-Whitestone,NY",1029 Clintonville Street, Whitestone,NY,11357 +-74.127777,40.564659,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",86 Guyon Ave, Staten Island,NY,10306 +-74.11378,40.56637,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",2704 Hylan Blvd [Tysens Park Shopping Center], Staten Island,NY,10306 +-74.104017,40.587002,"DD [drivethru-no] [wifi-yes]-Staten Island,NY",1781 Richmond Rd, Staten Island,NY,10306 +-73.953979,40.730007,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",892 Manhattan Ave, Brooklyn,NY,11222 +-73.86492,40.679111,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1213 Liberty Ave, Brooklyn,NY,11208 +-73.722549,40.725037,"DD [drivethru-no] [wifi-yes]-Bellerose,NY",24501 Jamaica Ave, Bellerose,NY,11426 +-73.715157,40.745533,"DD [drivethru-no] [wifi-yes]-Glen Oaks,NY",25609 Union Turnpike, Glen Oaks,NY,11004 +-73.91647,40.67672,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1993 Atlantic Avenue, Brooklyn,NY,11233 +-73.92178,40.6525,"DD/BR [drivethru-yes] [wifi-yes]-Brooklyn,NY",5901 Church Avenue, Brooklyn,NY,11203 +-73.73481,40.664909,"DD [drivethru-no] [wifi-yes]-Rosedale,NY",24501 Francis Lewis Blvd, Rosedale,NY,11422 +-73.98024,40.688168,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",17 Flatbush Ave, Brooklyn,NY,11217 +-73.925858,40.612488,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",2344 Flatbush Ave, Brooklyn,NY,11234 +-73.953072,40.599316,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1815 Avenue U, Brooklyn,NY,11229 +-73.872583,40.775627,"DD/BR [drivethru-no] [wifi-no]-Flushing,NY",Grand Central Pkwy [LaGuardia Airport], Flushing,NY,11371 +-73.954857,40.587704,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1427 Sheepshead Bay Rd, Brooklyn,NY,11235 +-73.946528,40.599975,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",2501 Avenue U, Brooklyn,NY,11229 +-73.933538,40.596481,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",2302 Knapp St, Brooklyn,NY,11229 +-73.899582,40.825005,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",1041 Prospect Ave, Bronx,NY,10459 +-73.87654,40.71302,"DD/BR [drivethru-no] [wifi-yes]-Middle Village,NY",7513 Metropolitan Avenue, Middle Village,NY,11379 +-73.828298,40.885809,"DD [drivethru-yes] [wifi-yes]-Bronx,NY",4090 Boston Rd, Bronx,NY,10475 +-73.791397,40.673607,"DD [drivethru-yes] [wifi-yes]-Jamaica,NY",14601 Rockaway Blvd, Jamaica,NY,11436 +-73.89828,40.67775,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",43 Jamaica Avenue, Brooklyn,NY,11207 +-73.82752,40.766774,"DD [drivethru-no] [wifi-yes]-Flushing,NY",3402 Union St, Flushing,NY,11354 +-73.827569,40.757575,"DD [drivethru-no] [wifi-yes]-Flushing,NY",4159 Kissena Blvd, Flushing,NY,11355 +-73.834061,40.769314,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",3015 Stratton St, Flushing,NY,11354 +-73.83405,40.86406,"DD [drivethru-yes] [wifi-yes]-Bronx,NY",1780 E Gun Hill Road, Bronx,NY,10469 +-73.837776,40.580372,"DD/BR [drivethru-no] [wifi-yes]-Far Rockaway,NY",269 Beach 116th St, Far Rockaway,NY,11694 +-73.814661,40.696908,"DD [drivethru-no] [wifi-no]-Jamaica,NY",13430 Atlantic Ave, Jamaica,NY,11419 +-73.91154,40.85471,"DD [drivethru-no] [wifi-yes]-Bronx,NY",26 Burnside Avenue, Bronx,NY,10453 +-73.8973,40.84447,"DD/BR [drivethru-yes] [wifi-yes]-Bronx,NY",4115 3rd Avenue, Bronx,NY,10457 +-73.91521,40.83929,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",140 E 170th Street, Bronx,NY,10452 +-73.904709,40.812466,"DD [drivethru-no] [wifi-yes]-Bronx,NY",843 East 149th St, Bronx,NY,10455 +-73.918799,40.825694,"DD [drivethru-no] [wifi-no]-Bronx,NY",260 E 161st St, Bronx,NY,10451 +-73.92259,40.81738,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",274 E 149th Street, Bronx,NY,10451 +-73.81085,40.70315,"DD/BR [drivethru-yes] [wifi-yes]-Jamaica,NY",13850 Jamaica Avenue, Jamaica,NY,11435 +-73.96098,40.66328,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",40 Empire Boulevard, Brooklyn,NY,11225 +-73.964228,40.641187,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1506 Cortelyou Rd, Brooklyn,NY,11226 +-73.958801,40.650798,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",873 Flatbush Ave, Brooklyn,NY,11226 +-73.96399,40.64907,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1700 Church Avenue, Brooklyn,NY,11226 +-73.929669,40.756424,"DD/BR [drivethru-no] [wifi-yes]-Long Island City,NY",3102 36th Ave, Long Island City,NY,11106 +-73.922797,40.760934,"DD/BR [drivethru-no] [wifi-no]-Long Island City,NY",3401 Broadway, Long Island City,NY,11106 +-73.880424,40.679295,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",245 Highland Place, Brooklyn,NY,11208 +-73.843933,40.72197,"DD/BR [drivethru-no] [wifi-yes]-Forest Hills,NY",6366 108th St, Forest Hills,NY,11375 +-73.86187,40.730297,"DD [drivethru-no] [wifi-yes]-Rego Park,NY",9637 Queens Blvd, Rego Park,NY,11374 +-73.91026,40.77583,"DD [drivethru-no] [wifi-yes]-Astoria,NY",3114 Ditmars Boulevard, Astoria,NY,11105 +-73.856195,40.748999,"DD/BR [drivethru-no] [wifi-yes]-Flushing,NY",9925 Horace Harding Expy, Flushing,NY,11368 +-73.854111,40.742043,"DD/BR [drivethru-no] [wifi-yes]-Corona,NY",5401 108th St, Corona,NY,11368 +-73.833054,40.715317,"DD/BR [drivethru-no] [wifi-yes]-Forest Hills,NY",11716 Queens Blvd, Forest Hills,NY,11375 +-73.907822,40.769188,"DD [drivethru-no] [wifi-no]-Astoria,NY",4307 Astoria Blvd, Astoria,NY,11105 +-73.996727,40.575459,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",3015 Mermaid Ave, Brooklyn,NY,11224 +-73.984697,40.578994,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1620 Neptune Ave [Hess], Brooklyn,NY,11224 +-73.97655,40.59661,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",203 Avenue U, Brooklyn,NY,11223 +-73.980965,40.575703,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1243 Surf Ave, Brooklyn,NY,11224 +-73.855095,40.720894,"DD [drivethru-no] [wifi-yes]-Forest Hills,NY",7167 Yellowstone Bd, Forest Hills,NY,11375 +-73.817858,40.702361,"DD [drivethru-no] [wifi-yes]-Richmond Hill,NY",13504 Jamaica Ave, Richmond,NY,11428 +-73.808631,40.701926,"DD/BR [drivethru-no] [wifi-yes]-Jamaica,NY",14617 Jamaica Ave, Jamaica,NY,11435 +-73.79912,40.66304,"DD [drivethru-no] [wifi-yes]-Jamaica,NY",13801 Queens Boulevard, Jamaica,NY,11430 +-73.84471,40.720274,"DD [drivethru-no] [wifi-yes]-Forest Hills,NY",10712 71st Ave, Forest Hills,NY,11375 +-73.884195,40.632116,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",6000 Shore Pkwy [Mobil Station], Brooklyn,NY,11236 +-73.903503,40.646439,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1375 Rockaway Pkwy, Brooklyn,NY,11236 +-73.890999,40.649982,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",11010 Flatlands Ave, Brooklyn,NY,11207 +-73.947456,40.629005,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",2926 Avenue I, Brooklyn,NY,11210 +-73.888023,40.632011,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",2092 Rockaway Pkwy, Brooklyn,NY,11236 +-73.91081,40.61742,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",6620 Avenue U, Brooklyn,NY,11234 +-73.92049,40.66145,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",241A Rockaway Parkway, Brooklyn,NY,11212 +-73.84634,40.83706,"DD [drivethru-no] [wifi-yes]-Bronx,NY",2400 Westchester Avenue, Bronx,NY,10461 +-74.028818,40.621952,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",8704 Fourth Ave, Brooklyn,NY,11209 +-74.000982,40.676327,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",289 Hamilton Ave, Brooklyn,NY,11231 +-73.87312,40.68336,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",3319 Fulton Street, Brooklyn,NY,11208 +-74.00208,40.607698,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",8513 18th Ave, Brooklyn,NY,11214 +-73.99934,40.62467,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",6502 14th Avenue, Brooklyn,NY,11219 +-73.99369,40.615444,"DD/BR [drivethru-no] [wifi-no]-Brooklyn,NY",7121 18th Ave, Brooklyn,NY,11204 +-73.85652,40.87054,"DD/BR [drivethru-yes] [wifi-yes]-Bronx,NY",3080 Boston Road, Bronx,NY,10469 +-73.865059,40.863735,"DD [drivethru-no] [wifi-yes]-Bronx,NY",2515 Boston Rd, Bronx,NY,10467 +-73.84893,40.890633,"DD [drivethru-no] [wifi-yes]-Bronx,NY",980 E 233rd St, Bronx,NY,10466 +-73.95195,40.68979,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",573 Lafayette Avenue, Brooklyn,NY,11205 +-73.770515,40.762684,"DD [drivethru-no] [wifi-no]-Bayside,NY",2340 Bell Blvd, Bayside,NY,11361 +-73.784164,40.759453,"DD [drivethru-no] [wifi-yes]-Bayside,NY",2605 Francis Lewis Blvd, Bayside,NY,11361 +-73.739004,40.767331,"DD/BR [drivethru-yes] [wifi-yes]-Little Neck,NY",24809 Northern Blvd, Little Neck,NY,11362 +-73.762177,40.761265,"DD/BR [drivethru-yes] [wifi-yes]-Bayside,NY",21920 Northern Blvd, Bayside,NY,11361 +-73.771317,40.763931,"DD/BR [drivethru-no] [wifi-yes]-Bayside,NY",4008 Bell Blvd, Bayside,NY,11361 +-73.950356,40.669514,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",542 Eastern Pkwy, Brooklyn,NY,11225 +-73.884993,40.858427,"DD [drivethru-no] [wifi-yes]-Bronx,NY",601 E Fordham Rd, Bronx,NY,10458 +-73.90296,40.85989,"DD [drivethru-no] [wifi-yes]-Bronx,NY",2350 Jerome Avenue, Bronx,NY,10458 +-73.898661,40.858947,"DD/BR [drivethru-no] [wifi-yes]-Bronx,NY",2366 Grand Concourse, Bronx,NY,10458 +-73.8831,40.8483,"DD/BR [drivethru-no] [wifi-no]-Bronx,NY",2241 Southern Boulevard, Bronx,NY,10460 +-73.88635,40.87828,"DD [drivethru-yes] [wifi-yes]-Bronx,NY",3276 Jerome Avenue, Bronx,NY,10468 +-73.89101,40.854,"DD [drivethru-no] [wifi-yes]-Bronx,NY",4521 3rd Avenue, Bronx,NY,10457 +-73.758882,40.740492,"DD/BR [drivethru-no] [wifi-yes]-Bayside,NY",21522 73rd Ave [Bell Blvd Oakland Gardens], Bayside,NY,11364 +-73.73685,40.717914,"DD [drivethru-no] [wifi-yes]-Queens Village,NY",21816 Jamaica Ave, Queens Village,NY,11428 +-73.792816,40.710659,"DD [drivethru-no] [wifi-yes]-Jamaica,NY",16904 Hillside Ave, Jamaica,NY,11432 +-73.76807,40.6923,"DD [drivethru-no] [wifi-yes]-Jamaica,NY",15902 Jamaica Avenue, Jamaica,NY,11425 +-73.869804,40.733681,"DD [drivethru-no] [wifi-yes]-Elmhurst,NY",9123 Queens Blvd, Elmhurst,NY,11373 +-73.891258,40.746994,"DD/BR [drivethru-no] [wifi-yes]-Jackson Heights,NY",7413 Roosevelt Ave, Jackson Heights,NY,11372 +-73.911098,40.768813,"DD/BR [drivethru-no] [wifi-yes]-Astoria,NY",2412 Steinway St, Astoria,NY,11103 +-73.903893,40.771152,"DD/BR [drivethru-no] [wifi-yes]-Astoria,NY",4322 Ditmars Blvd, Astoria,NY,11105 +-73.907166,40.77383,"DD [drivethru-no] [wifi-yes]-Astoria,NY",3723 Ditmars Blvd, Astoria,NY,11105 +-78.742355,42.159203,"DD [drivethru-yes] [wifi-yes]-Salamanca,NY",721 Broad St, Salamanca,NY,14779 +-78.87099,42.97033,"DD [drivethru-yes] [wifi-yes]-Kenmore,NY",3155 Delaware Avenue, Kenmore,NY,14217 +-78.86869,42.947968,"DD [drivethru-yes] [wifi-yes]-Buffalo,NY",2340 Delaware Ave, Buffalo,NY,14216 +-78.852448,42.981033,"DD [drivethru-yes] [wifi-yes]-Tonawanda,NY",2200 Sheridan Dr, Tonawanda,NY,14223 +-78.822128,42.97958,"DD [drivethru-yes] [wifi-yes]-Amherst,NY",2155 Eggert Rd, Amherst,NY,14226 +-78.87292,42.89028,"DD [drivethru-no] [wifi-yes]-Buffalo,NY",598 Main, Buffalo,NY,14202 +-78.865249,42.897869,"DD [drivethru-no] [wifi-no]-Buffalo,NY",665 Elm St [Roswell Hospital], Buffalo,NY,14203 +-78.85203,42.998536,"DD [drivethru-yes] [wifi-no]-Tonawanda,NY",2225 Colvin Blvd, Tonawanda,NY,14150 +-78.822266,42.991032,"DD [drivethru-no] [wifi-no]-Amherst,NY",1355 Niagara Falls Blvd [Rt 62], Amherst,NY,14226 +-78.908844,43.238228,"DD [drivethru-yes] [wifi-yes]-Ransomville,NY",2560 Youngstown Lockport Rd, Ransomville,NY,14131 +-78.958018,43.016684,"DD [drivethru-yes] [wifi-yes]-Grand Island,NY",2024 Grand Island Blvd, Grand Island,NY,14072 +-78.638435,42.971897,"DD [drivethru-yes] [wifi-yes]-Clarence,NY",9430 Main St, Clarence,NY,14031 +-78.885268,43.143281,"DD [drivethru-yes] [wifi-no]-Sanborn,NY",2939 Saunders Settlement Rd, Sanborn,NY,14132 +-78.83743,43.12829,"DD [drivethru-yes] [wifi-yes]-Sanborn,NY",3821 Lockport Road, Sanborn,NY,14132 +-78.927101,43.098969,"DD [drivethru-yes] [wifi-yes]-Niagara Falls,NY",2260 Niagara Falls Blvd, Niagara Falls,NY,14304 +-78.876488,43.052197,"DD [drivethru-yes] [wifi-yes]-North Tonawanda,NY",255 Meadow Dr, North Tonawanda,NY,14120 +-78.822517,43.011639,"DD [drivethru-yes] [wifi-yes]-Tonawanda,NY",2112 Niagara Falls Blvd Rt 62, Tonawanda,NY,14150 +-78.697038,42.912346,"DD [drivethru-yes] [wifi-yes]-Depew,NY",5760 Transit Road, Depew,NY,14043 +-78.753426,42.831142,"DD [drivethru-yes] [wifi-yes]-West Seneca,NY",1145 Union Rd, West Seneca,NY,14224 +-78.696754,42.876724,"DD [drivethru-yes] [wifi-yes]-Depew,NY",4891 Transit Rd, Depew,NY,14043 +-79.240784,42.124542,"DD [drivethru-yes] [wifi-no]-Jamestown,NY",2930 N Main Street Ext [Kwik Fill], Jamestown,NY,14701 +-78.626175,42.768024,"DD/BR [drivethru-no] [wifi-yes]-East Aurora,NY",230 Main St, East Aurora,NY,14052 +-78.698875,42.93758,"DD [drivethru-yes] [wifi-yes]-Cheektowaga,NY",5090 Genesee St, Cheektowaga,NY,14225 +-78.754074,42.910034,"DD [drivethru-yes] [wifi-yes]-Cheektowaga,NY",3501 Union Rd [SR 277], Cheektowaga,NY,14225 +-78.824279,42.763422,"DD [drivethru-yes] [wifi-no]-Hamburg,NY",4909 S Park Ave, Hamburg,NY,14075 +-78.85444,42.74949,"DD [drivethru-yes] [wifi-yes]-Hamburg,NY",5073 Camp Road, Hamburg,NY,14075 +-78.75416,42.93302,"DD [drivethru-no] [wifi-yes]-Cheektowaga,NY",4395 Union Road, Cheektowaga,NY,14225 +-78.697121,42.952923,"DD [drivethru-yes] [wifi-yes]-Williamsville,NY",6800 Transit Rd, Williamsville,NY,14221 +-78.786263,42.973476,"DD [drivethru-yes] [wifi-yes]-Amherst,NY",727 Maple Rd, Amherst,NY,14221 +-78.750534,43.035689,"DD [drivethru-yes] [wifi-yes]-Amherst,NY",55 Cross Point Pkwy, Amherst,NY,14068 +-78.687576,42.509464,"DD [drivethru-yes] [wifi-yes]-Springville,NY",565 West Main St, Springville,NY,14141 +-78.759787,42.960265,"DD [drivethru-yes] [wifi-yes]-Williamsville,NY",5165 Main St, Williamsville,NY,14221 +-78.867264,42.907883,"DD [drivethru-no] [wifi-no]-Buffalo,NY",1264 Main St [Delta Sonic], Buffalo,NY,14209 +-77.678471,43.206984,"DD [drivethru-no] [wifi-no]-Greece,NY",1877 W Ridge Rd [Hess], Greece,NY,14615 +-78.81411,42.959557,"DD [drivethru-yes] [wifi-yes]-Amherst,NY",3640 Main St, Amherst,NY,14226 +-78.69689,43.14883,"DD [drivethru-yes] [wifi-yes]-Lockport,NY",5696 South Transit Road, Lockport,NY,14094 +-78.412392,42.075668,"DD [drivethru-yes] [wifi-yes]-Olean,NY",855 East State St, Olean,NY,14760 +-78.477737,42.080006,"DD [drivethru-yes] [wifi-yes]-Allegheny,NY",3242 W State St, Allegheny,NY,14706 +-79.317558,42.458508,"DD [drivethru-yes] [wifi-yes]-Dunkirk,NY",3929 Vineyard Dr, Dunkirk,NY,14048 +-78.976028,43.098129,"DD [drivethru-no] [wifi-no]-Niagara Falls,NY",1900 Military Rd [Prime Outlet at Niagara Falls], Niagara Falls,NY,14304 +-78.98768,43.08921,"DD [drivethru-yes] [wifi-yes]-Niagara Falls,NY",6601 Niagara Falls Boulevard, Niagara Falls,NY,14304 +-78.834847,43.062811,"DD [drivethru-yes] [wifi-yes]-North Tonawanda,NY",3819 Forest Pkwy, North Tonawanda,NY,14120 +-78.752609,42.907082,"DD [drivethru-no] [wifi-no]-Cheektowaga,NY",2285 Walden Ave [Delta Sonic], Cheektowaga,NY,14225 +-73.928601,40.829245,"DD [drivethru-no] [wifi-no]-Bronx,NY",1 E 161st St [Yankee Stadium], Bronx,NY,10451 +-73.790459,40.643067,"DD [drivethru-no] [wifi-no]-Jamaica,NY",500 Teminal Dr [JFK Int'l Airport], Jamaica,NY,11430 +-73.783321,40.642676,"DD [drivethru-no] [wifi-no]-Jamaica,NY",500 Terminal Drive [Terminal 5 FC SS], Jamaica,NY,11430 +-73.794402,40.653185,"DD [drivethru-no] [wifi-no]-Jamaica,NY",JFK Int'l Terminal 5 7NC [Post Self Serve], Jamaica,NY,11430 +-76.125018,43.082906,"DD [drivethru-no] [wifi-no]-Syracuse,NY",3060 Court St [Hess], Syracuse,NY,13208 +-73.940423,40.815083,"DD [drivethru-no] [wifi-yes]-New York,NY",525 Lenox Ave, New York,NY,10037 +-73.956439,40.778346,"DD [drivethru-no] [wifi-no]-New York,NY",1248 Lexington Ave, New York,NY,10028 +-74.008692,40.706775,"DD [drivethru-no] [wifi-yes]-New York,NY",50 Pine St, New York,NY,10005 +-73.987544,40.751978,"DD [drivethru-no] [wifi-no]-New York,NY",1369 Broadway, New York,NY,10018 +-73.994865,40.755344,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",484 9th Ave, New York,NY,10018 +-73.977194,40.754068,"DD [drivethru-no] [wifi-yes]-New York,NY",52 Vanderbilt Ave, New York,NY,10017 +-73.93692,40.804806,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",2083 Lexington Ave [145 East 125th St], New York,NY,10035 +-73.956526,40.766321,"DD [drivethru-no] [wifi-yes]-New York,NY",411 E 70th St, New York,NY,10021 +-73.822605,40.753738,"DD [drivethru-no] [wifi-yes]-Flushing,NY",4405 Kissena Blvd, Flushing,NY,11355 +-73.901535,40.819897,"DD [drivethru-no] [wifi-yes]-Bronx,NY",839 Prospect Ave, Bronx,NY,10459 +-73.087982,40.858448,"DD [drivethru-yes] [wifi-no]-Centereach,NY",2165 Middle Country Rd, Centereach,NY,11720 +-73.24123,40.74574,"DD [drivethru-no] [wifi-yes]-Bay Shore,NY",1403 Brentwood Road, Bay Shore,NY,11706 +-73.355736,40.683102,"DD [drivethru-no] [wifi-no]-Lindenhurst,NY",274 E Montauk Hwy [Hess], Lindenhurst,NY,11757 +-73.367432,40.681671,"DD/BR [drivethru-yes] [wifi-yes]-Lindenhurst,NY",280 E Sunrise Hwy, Lindenhurst,NY,11757 +-73.24737,40.78095,"DD [drivethru-no] [wifi-yes]-Brentwood,NY",759 Suffolk Avenue, Brentwood,NY,11717 +-73.396919,40.880962,"DD/BR [drivethru-no] [wifi-yes]-Huntington,NY",200 E Main St, Huntington,NY,11743 +-72.846384,40.944219,"DD [drivethru-no] [wifi-yes]-Wading River,NY",6346 Rt 25 A, Wading River,NY,11792 +-73.052139,40.930733,"DD [drivethru-no] [wifi-no]-Port Jefferson Station,NY",501 Route 112 [Hess], Port Jefferson Station,NY,11776 +-72.429146,41.063965,"DD [drivethru-no] [wifi-yes]-Southold,NY",53345 Route 25 Unit #1, Southold,NY,11971 +-73.278656,40.838978,"DD/BR [drivethru-no] [wifi-yes]-Commack,NY",115 Veterans Highway, Commack,NY,11725 +-73.266806,40.846217,"DD [drivethru-no] [wifi-no]-Commack,NY",1173 Jericho Tpke [Hess], Commack,NY,11725 +-73.19141,40.73103,"DD/BR [drivethru-no] [wifi-yes]-East Islip,NY",13 W Main St, East Islip,NY,11730 +-73.212921,40.803425,"DD/BR [drivethru-no] [wifi-yes]-Hauppauge,NY",205 Wheeler Rd, Hauppauge,NY,11788 +-73.012985,40.888824,"DD/BR [drivethru-no] [wifi-yes]-Coram,NY",1852 Route 112, Coram,NY,11727 +-73.353905,40.683731,"DD [drivethru-no] [wifi-yes]-Lindenhurst,NY",330 E Montauk Hwy, Lindenhurst,NY,11757 +-73.391739,40.669376,"DD/BR [drivethru-no] [wifi-yes]-Copiague,NY",925 Montauk Hwy, Copiague,NY,11726 +-73.42759,40.7147,"DD [drivethru-yes] [wifi-yes]-Farmingdale,NY",203 Broadhollow Rd, Farmingdale,NY,11735 +-73.423088,40.738579,"DD [drivethru-no] [wifi-no]-Farmingdale,NY",1350 Route 110 And Conklin Street, Farmingdale,NY,11735 +-73.085114,40.734699,"DD [drivethru-no] [wifi-yes]-Sayville,NY",165 Main St, Sayville,NY,11782 +-73.058731,40.862286,"DD/BR [drivethru-no] [wifi-yes]-Centereach,NY",1311 Middle Country Rd, Centereach,NY,11720 +-73.01349,40.82949,"DD [drivethru-no] [wifi-yes]-Farmingville,NY",1105 Horseblock Rd, Farmingville,NY,11738 +-73.03818,40.83314,"DD/BR [drivethru-no] [wifi-yes]-Farmingville,NY",628 Horseblock Road, Farmingville,NY,11738 +-72.343323,40.919304,"DD [drivethru-no] [wifi-no]-Water Mill,NY",1138 Montauk Hwy [Hess], Water Mill,NY,11976 +-73.166,40.84927,"DD/BR [drivethru-yes] [wifi-yes]-Smithtown,NY",731 Nesconset Hwy, Smithtown,NY,11787 +-72.517044,40.880188,"DD/BR [drivethru-no] [wifi-yes]-Hampton Bays,NY",127 E Montauk Hwy, Hampton Bays,NY,11946 +-73.063377,40.835335,"DD [drivethru-no] [wifi-yes]-Farmingville,NY",1075 Portion Rd, Farmingville,NY,11738 +-73.125609,40.904948,"DD/BR [drivethru-no] [wifi-yes]-Stony Brook,NY",1085 Route 25a, Stony Brook,NY,11790 +-73.38204,40.83455,"DD/BR [drivethru-no] [wifi-yes]-Huntington Station,NY",795 East Jericho Tpk, Huntington Station,NY,11746 +-73.32948,40.76194,"DD/BR [drivethru-no] [wifi-yes]-Deer Park,NY",1906 Deer Park Avenue, Deer Park,NY,11729 +-73.32031,40.73695,"DD/BR [drivethru-no] [wifi-yes]-North Babylon,NY",1201 Deer Park Ave [#1203], North Babylon,NY,11703 +-73.23066,40.72744,"DD/BR [drivethru-no] [wifi-yes]-Bay Shore,NY",529 E Main Street, Bay Shore,NY,11706 +-73.26391,40.73272,"DD/BR [drivethru-no] [wifi-yes]-Bay Shore,NY",1261 Sunrise Hwy, Bay Shore,NY,11706 +-73.154451,40.860569,"DD [drivethru-no] [wifi-yes]-Saint James,NY",665 Middle Country Rd, Saint James,NY,11780 +-72.984238,40.825691,"DD/BR [drivethru-yes] [wifi-yes]-Medford,NY",3197 Horseblock Road [Medford Plaza Shopping Center], Medford,NY,11763 +-73.00174,40.766659,"DD/BR [drivethru-no] [wifi-yes]-Patchogue,NY",369 E Main St, Patchogue,NY,11772 +-72.60934,40.823065,"DD [drivethru-no] [wifi-no]-Quogue,NY",38 Montauk Hwy [Hess], Quogue,NY,11959 +-73.236747,40.808129,"DD [drivethru-no] [wifi-yes]-Hauppauge,NY",694 Motor Pkwy, Hauppauge,NY,11788 +-73.41811,40.68412,"DD/BR [drivethru-no] [wifi-yes]-Amityville,NY",355 Broadway, Amityville,NY,11701 +-73.391328,40.694955,"DD [drivethru-no] [wifi-yes]-Lindenhurst,NY",155 W Sunrise Hwy, Lindenhurst,NY,11757 +-72.676476,40.93192,"DD/BR [drivethru-no] [wifi-yes]-Riverhead,NY",1051 Old Country Rd, Riverhead,NY,11901 +-73.118286,40.754066,"DD [drivethru-no] [wifi-yes]-Bohemia,NY",4541 Sunrise Hwy, Bohemia,NY,11716 +-73.104935,40.808636,"DD [drivethru-no] [wifi-yes]-Ronkonkoma,NY",90 Railroad Ave [Ronkonkoma Station Plaza], Ronkonkoma,NY,11779 +-73.137534,40.788046,"DD [drivethru-no] [wifi-no]-Bohemia,NY",3072 Veterans Memorial Hwy [Hess], Bohamia,NY,11716 +-73.310852,40.766041,"DD/BR [drivethru-no] [wifi-yes]-Deer Park,NY",501 Commack Rd, Deer Park,NY,11729 +-73.278236,40.772373,"DD [drivethru-no] [wifi-no]-Bay Shore,NY",195 Pine Aire Dr, Bay Shore,NY,11706 +-73.16946,40.87822,"DD/BR [drivethru-no] [wifi-yes]-Saint James,NY",430 North Country Rd Ste 1, Saint James,NY,11780 +-73.125569,40.787136,"DD [drivethru-no] [wifi-no]-Ronkonkoma,NY",3415 Veterans Hwy [Hess], Ronkonkoma,NY,11779 +-73.13045,40.74183,"DD/BR [drivethru-no] [wifi-yes]-Oakdale,NY",1243 Montauk Hwy, Oakdale,NY,11769 +-73.411685,40.818233,"DD/BR [drivethru-no] [wifi-yes]-Huntington Station,NY",281 Walt Whitman Road, Huntington Station,NY,11746 +-73.26075,40.884613,"DD/BR [drivethru-no] [wifi-yes]-Kings Park,NY",101 Pulaski Rd, Kings Park,NY,11754 +-73.29439,40.83846,"DD [drivethru-no] [wifi-yes]-Commack,NY",169A Commack Rd, Commack,NY,11725 +-73.276192,40.8447,"DD/BR [drivethru-yes] [wifi-yes]-Commack,NY",2073 Jericho Tpke, Commack,NY,11725 +-72.245926,40.948147,"DD [drivethru-no] [wifi-no]-Wainscott,NY",346 Montauk Hwy [Hess], Wainscott,NY,11975 +-72.316132,40.93239,"DD [drivethru-no] [wifi-no]-Bridgehampton,NY",2044 Montauk Hwy [Bridgehampton Commons], Bridgehampton,NY,11932 +-73.29045,40.816039,"DD/BR [drivethru-no] [wifi-yes]-Commack,NY",20 Vanderbilt Pkwy, Commack,NY,11725 +-73.068848,40.945923,"DD [drivethru-no] [wifi-yes]-Port Jefferson,NY",122 Main St, Port Jefferson,NY,11777 +-73.05013,40.92247,"DD/BR [drivethru-no] [wifi-no]-Port Jefferson Station,NY",5017 Nesconset Highway, Port Jefferson Station,NY,11776 +-73.02259,40.934699,"DD [drivethru-no] [wifi-no]-Mount Sinai,NY",381 Route 25A, Mount Sinai,NY,11766 +-73.059294,40.747035,"DD [drivethru-no] [wifi-no]-Bayport,NY",640 Montauk Hwy [Hess], Bayport,NY,11705 +-73.10927,40.82661,"DD/BR [drivethru-no] [wifi-yes]-Ronkonkoma,NY",125 Portion Rd, Ronkonkoma,NY,11779 +-73.07251,40.806908,"DD/BR [drivethru-no] [wifi-no]-Holbrook,NY",411 Furrows Rd, Holbrook,NY,11741 +-73.302254,40.841908,"DD [drivethru-no] [wifi-yes]-Commack,NY",6166 Jericho Tpke, Commack,NY,11725 +-73.331245,40.838173,"DD [drivethru-no] [wifi-yes]-East Northport,NY",1946 Jericho Tpke [Elwood Shopping Center Unit #7], East Northport,NY,11731 +-72.999161,40.869873,"DD/BR [drivethru-no] [wifi-yes]-Coram,NY",350 Middle Country Rd Suite A, Coram,NY,11727 +-73.00891,40.78574,"DD [drivethru-no] [wifi-yes]-Patchogue,NY",500 Medford Avenue, Patchogue,NY,11772 +-73.25601,40.81212,"DD [drivethru-no] [wifi-yes]-Hauppauge,NY",160 Adams Ave, Hauppauge,NY,11788 +-73.220642,40.786854,"DD/BR [drivethru-no] [wifi-yes]-Brentwood,NY",1694 Islip Ave, Brentwood,NY,11717 +-73.41563,40.78909,"DD/BR [drivethru-no] [wifi-yes]-Melville,NY",116 Broadhollow Road, Melville,NY,11747 +-73.423286,40.828613,"DD [drivethru-no] [wifi-yes]-Huntington,NY",336 W Jericho Tpke, Huntington,NY,11743 +-73.427673,40.872013,"DD [drivethru-no] [wifi-yes]-Huntington,NY",21 Wall St, Huntington,NY,11743 +-73.411797,40.837372,"DD/BR [drivethru-no] [wifi-yes]-Huntington Station,NY",1888 New York Ave, Huntington Station,NY,11746 +-73.40969,40.81224,"DD [drivethru-no] [wifi-yes]-Melville,NY",516 Walt Whitman Road, Melville,NY,11747 +-73.418419,40.859467,"DD [drivethru-no] [wifi-yes]-Huntington,NY",838 New York Avenue, Huntington,NY,11743 +-73.039495,40.752862,"DD [drivethru-no] [wifi-yes]-Blue Point,NY",33 Montauk Hwy, Blue Point,NY,11715 +-72.865466,40.79605,"DD [drivethru-no] [wifi-no]-Shirley,NY",525 William Floys Pkwy [Hess], Shirley,NY,11967 +-72.864548,40.783562,"DD/BR [drivethru-no] [wifi-no]-Shirley,NY",440 William Floyd Pkwy, Shirley,NY,11967 +-72.809288,40.825764,"DD [drivethru-no] [wifi-no]-Manorville,NY",285 Wading River Rd [Hess], Manorville,NY,11949 +-72.86635,40.79953,"DD/BR [drivethru-no] [wifi-yes]-Shirley,NY",545 William Floyd Pkwy, Shirley,NY,11967 +-73.421908,40.750448,"DD [drivethru-no] [wifi-yes]-Farmingdale,NY",2109 Broadhollow Rd, Farmingdale,NY,11735 +-72.399208,40.896351,"DD [drivethru-no] [wifi-no]-Southhampton,NY",20 CR 39, Southhampton,NY,11968 +-72.709932,40.923368,"DD [drivethru-no] [wifi-no]-Riverhead,NY",1879 Old Country Rd [Hess], Riverhead,NY,11901 +-73.32321,40.8719,"DD/BR [drivethru-no] [wifi-yes]-East Northport,NY",314 Larkfield Rd, East Northport,NY,11731 +-73.19273,40.81528,"DD [drivethru-yes] [wifi-yes]-Hauppauge,NY",1275 Veterans Memorial Highway, Hauppauge,NY,11788 +-73.20357,40.85657,"DD/BR [drivethru-yes] [wifi-yes]-Smithtown,NY",235 W Main Street, Smithtown,NY,11787 +-73.343353,40.703579,"DD [drivethru-no] [wifi-yes]-West Babylon,NY",393 Little East Neck Rd # 397, West Babylon,NY,11704 +-72.84545,40.80573,"DD/BR [drivethru-no] [wifi-no]-Mastic,NY",1495 Montauk Highway # 12, Mastic,NY,11950 +-73.171997,40.747364,"DD [drivethru-no] [wifi-yes]-Islip Terrace,NY",3309 Sunrise Hwy, Islip Terrace,NY,11752 +-73.253792,40.883472,"DD [drivethru-no] [wifi-no]-Kings Park,NY",36 Indian Head Road [Hess], Kings Park,NY,11754 +-73.188721,40.834656,"DD/BR [drivethru-no] [wifi-yes]-Smithtown,NY",560 Smithtown Byp, Smithtown,NY,11787 +-73.335728,40.89507,"DD [drivethru-no] [wifi-yes]-Northport,NY",650 Fort Salonga Rd, Northport,NY,11768 +-73.364197,40.865608,"DD [drivethru-no] [wifi-yes]-Greenlawn,NY",112 Broadway, Greenlawn,NY,11740 +-73.29337,40.73883,"DD/BR [drivethru-no] [wifi-yes]-Bay Shore,NY",19 Bay Shore Road, Bay Shore,NY,11706 +-73.11192,40.78228,"DD [drivethru-no] [wifi-yes]-Bohemia,NY",1573 Lakeland Ave [Lakeland Ave/ Smithtown Rd], Bohemia,NY,11716 +-73.261139,40.767773,"DD/BR [drivethru-no] [wifi-yes]-Bay Shore,NY",1750 Fifth Ave, Bay Shore,NY,11706 +-72.974571,40.943569,"DD/BR [drivethru-no] [wifi-yes]-Miller Place,NY",725 Route 25A, Miller Place,NY,11764 +-73.393158,40.715881,"DD [drivethru-yes] [wifi-yes]-North Lindenhurst,NY",1011 Route 109, North Lindenhurst,NY,11757 +-73.207734,40.737807,"DD [drivethru-no] [wifi-no]-Islip,NY",214 Islip Ave [Hess], Islip,NY,11751 +-72.425529,40.892722,"DD [drivethru-no] [wifi-no]-Southhampton,NY",816 County Road 39 [Hess], Southampton,NY,11968 +-75.624458,42.388916,"DD [drivethru-yes] [wifi-yes]-Bainbridge,NY",1320 E River Rd [XtraMart], Bainbridge,NY,13733 +-77.040596,42.140327,"DD [drivethru-yes] [wifi-no]-Corning,NY",125 Conhocton St, Corning,NY,14830 +-75.13717,42.17015,"DD [drivethru-no] [wifi-no]-Walton,NY",2 West St [ Hess Corner Of West And Delaware], Walton,NY,13856 +-76.2979,42.49422,"DD [drivethru-yes] [wifi-yes]-Dryden,NY",36 North Street, Dryden,NY,13053 +-75.978028,42.123728,"DD [drivethru-no] [wifi-no]-Johnson City,NY",709 Harry L Dr [Hess], Johnson City,NY,13790 +-75.934013,42.105221,"DD [drivethru-yes] [wifi-yes]-Binghamton,NY",211 Main St, Binghamton,NY,13905 +-76.0046,42.09531,"DD [drivethru-yes] [wifi-yes]-Vestal,NY",3000 Vestal Parkway East, Vestal,NY,13850 +-73.825485,40.842793,"DD [drivethru-yes] [wifi-yes]-Endwell,NY",3521 Country Club Rd, Endwell,NY,13760 +-77.333344,42.338528,"DD [drivethru-yes] [wifi-no]-Bath,NY",350 W Morris St, Bath,NY,14810 +-75.89357,42.095078,"DD [drivethru-no] [wifi-no]-Binghamton,NY",236 Conklin Ave [Hess], Binghamton,NY,13903 +-75.93892,42.11208,"DD [drivethru-no] [wifi-no]-Binghamton,NY",61 Glenwood Avenue [Hess], Binghamton,NY,13905 +-75.971512,42.124619,"DD [drivethru-yes] [wifi-yes]-Johnson City,NY",216 Reynolds Rd, Johnson City,NY,13790 +-75.979437,42.09592,"DD [drivethru-no] [wifi-no]-Vestal,NY",3808 Vestal Pkwy [Hess], Vestal,NY,13850 +-76.13111,42.58781,"DD [drivethru-yes] [wifi-yes]-McGraw,NY",3742 Us Route 11, McGraw,NY,13101 +-76.04653,42.09934,"DD [drivethru-no] [wifi-yes]-Endicott,NY",1400 E Main Street, Endicott,NY,13760 +-76.056668,42.095115,"DD [drivethru-no] [wifi-no]-Endicott,NY",503 E Main St [Hess], Endicott,NY,13760 +-76.04922,42.08715,"DD [drivethru-yes] [wifi-no]-Vestal,NY",201 Vestal Parkway West, Vestal,NY,13850 +-76.87838,42.160709,"DD [drivethru-yes] [wifi-yes]-Horseheads,NY",3317 Chambers Rd, Horseheads,NY,14845 +-76.834335,42.150917,"DD [drivethru-yes] [wifi-yes]-Elmira Heights,NY",2501 Corning Rd, Elmira Heights,NY,14903 +-76.822655,42.157059,"DD [drivethru-yes] [wifi-no]-Horseheads,NY",1020 Center St, Horseheads,NY,14845 +-76.800011,42.092403,"DD [drivethru-yes] [wifi-yes]-Elmira,NY",301 Madison Ave, Elmira,NY,14901 +-75.957716,42.112185,"DD [drivethru-yes] [wifi-no]-Johnson City,NY",120 Baldwin St, Johnson City,NY,13790 +-75.921515,42.099532,"DD [drivethru-no] [wifi-no]-Binghamton,NY",63 Main St [Hess], Binghampton,NY,13905 +-75.887949,42.168,"DD [drivethru-no] [wifi-no]-Binghamton,NY",1454 Upper Front St [Hess], Binghampton,NY,13901 +-75.89394,42.16123,"DD [drivethru-yes] [wifi-yes]-Binghamton,NY",1315 Upper Front Street, Binghamton,NY,13901 +-76.262589,42.102489,"DD [drivethru-no] [wifi-yes]-Owego,NY",135 Park St, Owego,NY,13827 +-75.76738,42.163166,"DD [drivethru-no] [wifi-no]-Sanitaria Springs,NY",781 State Rt 7 [Hess], Sanitaria Springs,NY,13833 +-75.972204,42.334987,"DD [drivethru-yes] [wifi-yes]-Whitney Point,NY",2920 US Route 11, Whitney Point,NY,13862 +-76.153168,42.070709,"DD [drivethru-yes] [wifi-yes]-Apalachin,NY",7858 SR 434, Apalachin,NY,13732 +-76.207832,42.580814,"DD [drivethru-yes] [wifi-yes]-Cortland,NY",927 Tompkins St State Hwy 13, Cortland,NY,13045 +-75.484287,42.285956,"DD [drivethru-yes] [wifi-no]-Bainbridge,NY",117 State Hwy 7 [Hess], Bainbridge,NY,13733 +-76.86964,42.37342,"DD [drivethru-yes] [wifi-yes]-Watkins Glen,NY",311 S Franklin St, Watkins Glen,NY,14891 +-75.050331,42.447777,"DD [drivethru-no] [wifi-no]-Oneonta,NY",4967 State Hwy 23 [Hess], Oneonta,NY,13820 +-75.055733,42.457485,"DD [drivethru-no] [wifi-yes]-Oneonta,NY",374 Main St, Oneonta,NY,13820 +-75.09567,42.4554,"DD [drivethru-yes] [wifi-yes]-Oneonta,NY",433 Chestnut St, Oneonta,NY,13820 +-76.521038,42.418872,"DD [drivethru-yes] [wifi-yes]-Ithaca,NY",408 Elmira Rd, Ithaca,NY,14850 +-75.525734,42.551285,"DD [drivethru-no] [wifi-no]-Norwich,NY",6157 State Hwy 12 [Hess], Norwich,NY,13815 +-75.52299,42.51324,"DD [drivethru-yes] [wifi-yes]-Norwich,NY",5697 State Highway 12, Norwich,NY,13815 +-77.667252,42.3475,"DD [drivethru-yes] [wifi-yes]-Hornell,NY",1050 State Route 36, Hornell,NY,14843 +-76.400922,42.471454,"DD [drivethru-yes] [wifi-yes]-Freeville,NY",1414 Dryden Rd, Freeville,NY,13068 +-76.191018,42.590955,"DD [drivethru-yes] [wifi-yes]-Cortland,NY",162 Tompkins St [Expressmart], Cortland,NY,13045 +-76.191347,42.632595,"DD [drivethru-yes] [wifi-yes]-Homer,NY",31 S West St [Expressmart], Homer,NY,13077 +-76.51715,42.421999,"DD [drivethru-no] [wifi-no]-Ithaca,NY",366 Elmira Rd [Hess], Ithaca,NY,14850 +-76.508072,42.438141,"DD [drivethru-yes] [wifi-yes]-Ithaca,NY",205 S Meadow St, Ithaca,NY,14850 +-75.846443,42.102688,"DD [drivethru-yes] [wifi-yes]-Binghamton,NY",715 Upper Court St, Binghamton,NY,13904 +-76.135536,42.747195,"DD [drivethru-yes] [wifi-no]-Preble,NY",7073 Rt 281, Preble,NY,13141 +-75.976768,42.096031,"DD [drivethru-yes] [wifi-no]-Vestal,NY",4005 Vestal Pkwy, Vestal,NY,13850 +-77.352829,42.971649,"DD [drivethru-yes] [wifi-yes]-Farmington,NY",1297 Route 332, Farmington,NY,14425 +-77.41338,42.98428,"DD [drivethru-yes] [wifi-yes]-Victor,NY",167 W Main Street, Victor,NY,14564 +-77.446693,43.216621,"DD [drivethru-yes] [wifi-yes]-Webster,NY",873 Holt Rd, Webster,NY,14580 +-77.611557,43.087303,"DD [drivethru-yes] [wifi-yes]-Henrietta,NY",942 Jefferson Rd, Henrietta,NY,14467 +-77.50512,43.18759,"DD [drivethru-no] [wifi-yes]-Webster,NY",1841 Empire Boulevard, Webster,NY,14580 +-77.499946,43.196944,"DD [drivethru-yes] [wifi-yes]-Webster,NY",2100 Empire Blvd, Webster,NY,14580 +-77.647057,43.236729,"DD [drivethru-yes] [wifi-yes]-Greece,NY",3665 Dewey Ave, Greece,NY,14616 +-77.93227,43.197517,"DD [drivethru-yes] [wifi-yes]-Brockport,NY",995 Transit Way [Hess], Brockport,NY,14420 +-77.666046,43.253002,"DD [drivethru-yes] [wifi-no]-Rochester,NY",2044 Latta Rd, Rochester,NY,14612 +-77.651886,43.20319,"DD [drivethru-no] [wifi-yes]-Rochester,NY",933 W Ridge Rd [Hess], Rochester,NY,14615 +-77.805606,43.119787,"DD [drivethru-no] [wifi-no]-North Chili,NY",4371 Buffalo Rd [Hess], North Chili,NY,14514 +-77.94102,42.11686,"DD [drivethru-yes] [wifi-yes]-Wellsville,NY",38 W Dyke Street, Wellsville,NY,14895 +-77.514214,43.094456,"DD [drivethru-no] [wifi-no]-Pittsford,NY",57 North Main Street, Pittsford,NY,14534 +-77.47747,43.12961,"DD [drivethru-yes] [wifi-yes]-Penfield,NY",1802 Penfield Road, Penfield,NY,14526 +-77.567162,43.128971,"DD [drivethru-no] [wifi-yes]-Rochester,NY",1760 Monroe Ave, Rochester,NY,14618 +-77.593117,43.125458,"DD [drivethru-no] [wifi-no]-Brighton,NY",1677 Elmwood Ave [Hess], Brighton,NY,14620 +-77.68748,43.131855,"DD [drivethru-no] [wifi-yes]-Rochester,NY",2150 Chili Ave [Walmart], Rochester,NY,14624 +-77.6316,43.09692,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",2740 West Henrietta Road, Rochester,NY,14623 +-77.581688,43.095924,"DD [drivethru-no] [wifi-no]-Brighton,NY",3000 S Winton Rd [Hess], Brighton,NY,14623 +-77.658432,43.093029,"DD [drivethru-no] [wifi-no]-Brighton,NY",222 Jefferson Rd [Hess], Brighton,NY,14623 +-77.73259,43.164986,"DD [drivethru-no] [wifi-no]-Gates,NY",719 Elmgrove Rd [Hess], Gates,NY,14606 +-77.732948,43.14374,"DD [drivethru-yes] [wifi-no]-Rochester,NY",2960 Buffalo Rd, Rochester,NY,14624 +-77.4422,43.06921,"DD [drivethru-yes] [wifi-no]-Fairport,NY",650 Moseley Rd, Fairport,NY,14450 +-77.410507,43.064388,"DD [drivethru-no] [wifi-no]-Fairport,NY",7409 Pittsford Palmyra Rd [Hess], Fairport,NY,14450 +-77.44176,43.13375,"DD [drivethru-yes] [wifi-yes]-Penfield,NY",2055 Fairport Nine Mile Point Road, Penfield,NY,14526 +-77.262963,42.878388,"DD [drivethru-yes] [wifi-no]-Canandaigua,NY",170 Eastern Blvd, Canandaigua,NY,14424 +-77.237244,42.872402,"DD [drivethru-no] [wifi-no]-Canandaigua,NY",4202 Recreation Dr [Wal Mart], Canandaigua,NY,14424 +-77.46209,43.101349,"DD [drivethru-yes] [wifi-yes]-Fairport,NY",1311 Fairport Rd, Fairport,NY,14450 +-77.654015,43.054707,"DD [drivethru-no] [wifi-no]-Henrietta,NY",4900 W Henrietta Rd [Hess], Henrietta,NY,14467 +-77.795554,43.218271,"DD [drivethru-no] [wifi-no]-Spencerport,NY",5028 W Ridge Rd [Hess], Spencerport,NY,14559 +-78.191284,42.999874,"DD [drivethru-no] [wifi-yes]-Batavia,NY",136 W Main St, Batavia,NY,14020 +-77.61118,43.19459,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",277 Ridge Road East, Rochester,NY,14621 +-77.601051,43.209702,"DD [drivethru-yes] [wifi-yes]-Irondequoit,NY",2255 Hudson Ave, Irondequoit,NY,14617 +-77.71723,42.56798,"DD [drivethru-yes] [wifi-yes]-Dansville,NY",9475 Airport Plaza, Dansville,NY,14437 +-77.61224,43.05978,"DD [drivethru-yes] [wifi-yes]-Henrietta,NY",3068 E Henrietta Road, Henrietta,NY,14467 +-77.559036,43.146233,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",1691 East Ave, Rochester,NY,14610 +-77.561032,43.188542,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",2299 Culver Rd, Rochester,NY,14609 +-77.591886,43.196623,"DD [drivethru-no] [wifi-no]-Rochester,NY",975 E Ridge Rd [Hess], Rochester,NY,14621 +-77.647514,43.164536,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",573 Lyell Ave, Rochester,NY,14606 +-77.631622,43.178509,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",741 Lake Ave, Rochester,NY,14613 +-77.679081,43.164794,"DD [drivethru-no] [wifi-no]-Rochester,NY",1954 Lyell Ave [Hess], Rochester,NY,14606 +-77.744385,43.108128,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",3152 Chili Ave, Rochester,NY,14624 +-77.791449,43.218224,"DD [drivethru-yes] [wifi-yes]-Spencerport,NY",5017 West Ridge Rd, Spencerport,NY,14559 +-77.701523,43.169353,"DD [drivethru-no] [wifi-no]-Gates,NY",459 Spencerport Rd [Hess], Gates,NY,14606 +-77.781982,42.800591,"DD [drivethru-yes] [wifi-yes]-Geneseo,NY",4310 Lakeville Rd, Geneseo,NY,14454 +-77.619141,43.12088,"DD [drivethru-no] [wifi-yes]-Rochester,NY",1500 Mount Hope Ave, Rochester,NY,14620 +-77.668716,43.130913,"DD [drivethru-no] [wifi-no]-Rochester,NY",1200 Brooks Ave, Rochester,NY,14624 +-77.663902,43.115238,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",1300 Scottsville Rd, Rochester,NY,14624 +-77.690819,43.149994,"DD [drivethru-yes] [wifi-yes]-Westgate,NY",1482 Buffalo Rd, Westgate,NY,14624 +-77.59808,43.14907,"DD [drivethru-yes] [wifi-yes]-Rochester,NY",300 Monroe Avenue, Rochester,NY,14607 +-77.734101,42.910115,"DD [drivethru-yes] [wifi-no]-Avon,NY",265 E Main St, Avon,NY,14414 +-77.713158,42.866417,"DD [drivethru-yes] [wifi-yes]-Avon,NY",2781 Lakeville Rd, Avon,NY,14414 +-77.696709,43.22385,"DD [drivethru-yes] [wifi-no]-Rochester,NY",1090 Long Pond Road, Rochester,NY,14626 +-77.476341,43.061512,"DD [drivethru-yes] [wifi-no]-Pittsford,NY",690 Pittsford Victor Rd, Pittsford,NY,14534 +-77.430458,43.214104,"DD [drivethru-yes] [wifi-yes]-Webster,NY",62 North Ave, Webster,NY,14580 +-73.854607,42.639362,"DD [drivethru-no] [wifi-yes]-Slingerlands,NY",1365 New Scotland Rd, Slingerlands,NY,12159 +-77.732811,43.214882,"DD [drivethru-no] [wifi-no]-Rochester,NY",3860 Ridge Rd W [Hess], Rochester,NY,14626 +-73.941285,42.759541,"DD [drivethru-yes] [wifi-yes]-Schenectady,NY",300 Wayto Rd, Schenectady,NY,12303 +-73.87861,42.214953,"DD [drivethru-no] [wifi-yes]-Catskill,NY",213 W Bridge St, Catskill,NY,12414 +-73.794853,42.970837,"DD [drivethru-yes] [wifi-yes]-Malta,NY",509 SR 67, Malta,NY,12020 +-74.118973,42.763798,"DD [drivethru-yes] [wifi-no]-Duanesburg,NY",6030 Duanesburg Rd [Mobil Station], Duanesburg,NY,12056 +-74.116002,44.311541,"DD [drivethru-yes] [wifi-yes]-Saranac Lake,NY",600 Lake Flower Ave [Saranac Lake Plaza], Saranac Lake,NY,12983 +-73.849159,43.011246,"DD [drivethru-no] [wifi-yes]-Ballston Spa,NY",2007 Doubleday Ave, Ballston Spa,NY,12020 +-73.850082,43.045616,"DD [drivethru-no] [wifi-no]-Ballston Spa,NY",451 Geyser Rd [Cumberland Farms], Ballston Spa,NY,12020 +-73.850494,42.99305,"DD [drivethru-yes] [wifi-yes]-Ballston Spa,NY",194 Church Ave, Ballston Spa,NY,12020 +-74.194481,43.053791,"DD [drivethru-yes] [wifi-yes]-Broadalbin,NY",3682 State Hwy 30, Broadalbin,NY,12025 +-73.784103,42.903782,"DD [drivethru-no] [wifi-no]-Clifton Park,NY",100 Commerce Drive [Hess], Clifton Park,NY,12065 +-73.61376,43.317004,"DD [drivethru-no] [wifi-no]-Queensbury,NY",756 Quaker Rd [Hess], Queensbury,NY,12804 +-73.890349,42.697773,"DD [drivethru-no] [wifi-no]-Guilderland,NY",2060 Western Ave [Star Plaza], Guilderland,NY,12084 +-73.848946,42.728928,"DD [drivethru-yes] [wifi-yes]-Albany,NY",392 Karner Rd, Albany,NY,12205 +-73.848587,42.695824,"DD [drivethru-no] [wifi-no]-Albany,NY",141 Washington Ave Ext [WalMart #2152], Albany,NY,12205 +-74.310653,42.703487,"DD [drivethru-yes] [wifi-yes]-Schoharie,NY",106 Park Place, Schoharie,NY,12157 +-73.835762,42.719879,"DD [drivethru-yes] [wifi-no]-Colonie,NY",1636 Central Ave, Colonie,NY,12205 +-74.359161,42.948978,"DD [drivethru-yes] [wifi-yes]-Fultonville,NY",121 Riverside Drive, Fultonville,NY,12072 +-74.217379,43.048,"DD [drivethru-yes] [wifi-yes]-Amsterdam,NY",218 State Hwy 30S, Amsterdam,NY,12010 +-74.179983,42.937822,"DD [drivethru-yes] [wifi-yes]-Amsterdam,NY",160 Church St, Amsterdam,NY,12012 +-74.187332,42.968708,"DD [drivethru-yes] [wifi-yes]-Amsterdam,NY",4882 State Hwy 30, Amsterdam,NY,12010 +-73.767273,42.254463,"DD [drivethru-no] [wifi-yes]-Hudson,NY",3 Healy Blvd, Hudson,NY,12534 +-73.78112,42.247654,"DD [drivethru-no] [wifi-no]-Hudson,NY",6 Green St [Hess], Hudson,NY,12534 +-73.755898,42.282253,"DD [drivethru-no] [wifi-no]-Hudson,NY",460 Fairview Ave [Walmart], Hudson,NY,12534 +-73.759789,42.273609,"DD [drivethru-no] [wifi-no]-Hudson,NY",365 Fairview Ave [Hess], Hudson,NY,12534 +-73.72326,42.27263,"DD [drivethru-yes] [wifi-no]-Hudson,NY",811 Rte 66, Hudson,NY,12534 +-73.685081,43.329578,"DD [drivethru-yes] [wifi-yes]-Queensbury,NY",474 Aviation Rd, Queensbury,NY,12804 +-73.608826,43.315243,"DD [drivethru-yes] [wifi-yes]-Queensbury,NY",365 Dix Ave, Queensbury,NY,12804 +-73.68303,43.24187,"DD [drivethru-yes] [wifi-yes]-Gansevoort,NY",1299 Saratoga Road, Gansevoort,NY,12831 +-73.71167,43.42823,"DD [drivethru-yes] [wifi-yes]-Lake George,NY",1412 SR 9 [Xtramart], Lake George,NY,12845 +-73.66776,43.32759,"DD [drivethru-yes] [wifi-yes]-Queensbury,NY",713 Upper Glen Street, Queensbury,NY,12804 +-73.63681,43.291649,"DD [drivethru-yes] [wifi-yes]-South Glens Falls,NY",95 Saratoga Ave, South Glens Falls,NY,12803 +-73.754881,42.765445,"DD [drivethru-no] [wifi-no]-Latham,NY",951 New Loudon Rd [Hess], Latham,NY,12110 +-73.822273,42.771179,"DD [drivethru-yes] [wifi-no]-Latham,NY",1198 Troy Schenectady Rd, Latham,NY,12110 +-73.76218,42.73668,"DD [drivethru-yes] [wifi-yes]-Latham,NY",667 New Loudon Rd, Latham,NY,12110 +-73.77198,42.754318,"DD [drivethru-yes] [wifi-no]-Latham,NY",650 Troy Schenectady Rd, Latham,NY,12110 +-74.361744,43.01909,"DD [drivethru-no] [wifi-no]-Johnstown,NY",285 N Comrie Ave [Hess], Johnstown,NY,12095 +-74.36102,43.01498,"DD [drivethru-yes] [wifi-yes]-Johnstown,NY",209 N Comrie Ave [Johnstown Shopping Center], Johnstown,NY,12095 +-73.637589,43.301525,"DD [drivethru-no] [wifi-no]-South Glens Falls,NY",66-70 Main St [Hess], South Glens Falls,NY,12803 +-73.688889,42.426929,"DD [drivethru-yes] [wifi-yes]-Valatie,NY",3366 Rt 9H, Valatie,NY,12184 +-73.818497,42.473476,"DD [drivethru-no] [wifi-yes]-Ravena,NY",2381 US Route 9W, Ravena,NY,12143 +-73.50835,43.2915,"DD [drivethru-yes] [wifi-yes]-Fort Edward,NY",374 Upper Broadway, Fort Edward,NY,12828 +-73.682312,43.32999,"DD [drivethru-no] [wifi-no]-Queensbury,NY",527 Aviation Rd [Hess], Queensbury,NY,12804 +-73.66557,43.30142,"DD [drivethru-yes] [wifi-yes]-Queensbury,NY",22 Main Street, Queensbury,NY,12804 +-73.670326,43.250092,"DD [drivethru-no] [wifi-no]-Fort Edward,NY",411 Reynolds Rd [Hess], Fort Edward,NY,12828 +-73.367523,42.546723,"DD [drivethru-yes] [wifi-no]-Stephentown,NY",15943 SR 22, Stephentown,NY,12168 +-73.831131,42.37442,"DD [drivethru-yes] [wifi-yes]-West Coxsackie,NY",12165 State Route 9w, West Coxsackie,NY,12192 +-74.323433,43.05648,"DD [drivethru-yes] [wifi-yes]-Gloversville,NY",198 Second Ave, Gloversville,NY,12078 +-73.5237,43.10218,"DD [drivethru-yes] [wifi-yes]-Greenwich,NY",1133 State Route 29, Greenwich,NY,12834 +-73.346707,42.852144,"DD [drivethru-yes] [wifi-no]-Hoosick Falls,NY",4744 SR 7, Hoosick Falls,NY,12090 +-73.729945,42.867407,"DD [drivethru-yes] [wifi-yes]-Halfmoon,NY",325 Rt 146, Halfmoon,NY,12065 +-73.688026,42.902653,"DD [drivethru-yes] [wifi-yes]-Mechanicville,NY",16 S Central Ave, Mechanicville,NY,12118 +-74.267632,43.109692,"DD [drivethru-yes] [wifi-yes]-Mayfield,NY",2470 State Hwy 30, Mayfield,NY,12117 +-73.508064,44.577644,"DD [drivethru-yes] [wifi-yes]-Peru,NY",654 Bear Swamp Rd, Peru,NY,12972 +-74.026611,42.781685,"DD [drivethru-yes] [wifi-no]-Rotterdam,NY",1128 Duanesburg Rd, Rotterdam,NY,12306 +-73.755868,43.485677,"DD [drivethru-yes] [wifi-no]-Lake George,NY",3624 SR 9, Lake George,NY,12845 +-73.987991,42.292107,"DD [drivethru-yes] [wifi-no]-Cairo,NY",7555 Route 32, Cairo,NY,12413 +-73.787689,43.073856,"DD [drivethru-yes] [wifi-yes]-Saratoga Springs,NY",207 S Broadway, Saratoga Springs,NY,12866 +-73.80385,43.07948,"DD [drivethru-yes] [wifi-yes]-Saratoga Springs,NY",80 West Avenue, Saratoga Springs,NY,12866 +-73.792671,43.026875,"DD [drivethru-no] [wifi-no]-Ballston Spa,NY",2954 US Rt 9, Ballston Spa,NY,12020 +-73.769142,43.120026,"DD [drivethru-yes] [wifi-yes]-Saratoga Springs,NY",647 Maple Ave, Saratoga Springs,NY,12866 +-73.748169,43.100075,"DD [drivethru-yes] [wifi-yes]-Saratoga Springs,NY",3014 Rt 50, Saratoga Springs,NY,12866 +-73.719269,44.722359,"DD [drivethru-no] [wifi-no]-Dannemora,NY",1165 Rt 374 & Reservoir Rd, Dannemora,NY,12929 +-73.347977,44.699532,"DD [drivethru-yes] [wifi-yes]-Plattsburgh,NY",693 SR 3, Plattsburgh,NY,12901 +-73.456551,44.70694,"DD [drivethru-yes] [wifi-yes]-Plattsburgh,NY",7155 SR 9, Plattsburgh,NY,12901 +-73.47718,44.69752,"DD [drivethru-yes] [wifi-yes]-Plattsburgh,NY",311 Cornelia Street, Plattsburgh,NY,12901 +-73.483859,44.651797,"DD [drivethru-yes] [wifi-yes]-Plattsburgh,NY",1 Archie Bordeau Rd, Plattsburgh,NY,12901 +-73.803474,42.657367,"DD [drivethru-no] [wifi-yes]-Albany,NY",601 New Scotland Ave, Albany,NY,12208 +-73.790222,42.665226,"DD [drivethru-no] [wifi-yes]-Albany,NY",1066 Madison Av, Albany,NY,12210 +-74.310071,44.847798,"DD [drivethru-yes] [wifi-yes]-Malone,NY",3414 State Route 11, Malone,NY,12953 +-74.285033,44.849696,"DD [drivethru-no] [wifi-no]-Malone,NY",3 Spaulding Ave, Malone,NY,12953 +-73.682716,42.579285,"DD [drivethru-yes] [wifi-no]-Castleton On Hudson,NY",95 Miller Rd, Castleton On Hudson,NY,12033 +-73.714634,42.603097,"DD [drivethru-yes] [wifi-no]-East Greenbush,NY",557 Columbia Tpke, East Greenbush,NY,12061 +-73.67379,42.551437,"DD [drivethru-yes] [wifi-yes]-Schodack,NY",1792 Columbia Tpke, Schodack,NY,12033 +-73.702019,42.620148,"DD [drivethru-yes] [wifi-yes]-East Greenbush,NY",97 Troy Rd, East Greenbush,NY,12061 +-73.723289,42.607468,"DD [drivethru-no] [wifi-no]-Clinton Heights,NY",380 Columbia Tpke [Hess], Clinton Heights,NY,12144 +-73.733643,42.679592,"DD [drivethru-yes] [wifi-yes]-Menands,NY",60 Broadway, Menands,NY,12204 +-73.76797,42.65255,"DD [drivethru-no] [wifi-yes]-Albany,NY",439 Madison Avenue, Albany,NY,12210 +-73.74385,42.64201,"DD [drivethru-yes] [wifi-yes]-Rensselaer,NY",448 Broadway, Rensselaer,NY,12144 +-73.796745,42.685764,"DD [drivethru-yes] [wifi-yes]-Albany,NY",1040 Central Ave, Albany,NY,12205 +-73.817238,42.711758,"DD [drivethru-no] [wifi-no]-Colonie,NY",41 Wolf Rd, Colonie,NY,12205 +-73.775978,42.705044,"DD [drivethru-yes] [wifi-no]-Albany,NY",457 Albany Shaker Rd, Albany,NY,12211 +-73.847865,42.684679,"DD [drivethru-yes] [wifi-yes]-Guilderland,NY",1573 Western Ave, Guilderland,NY,12203 +-73.801016,42.723364,"DD [drivethru-yes] [wifi-no]-Colonie,NY",186 Wolf Rd, Colonie,NY,12205 +-73.818581,42.627224,"DD [drivethru-no] [wifi-yes]-Delmar,NY",232 Delaware Ave, Delmar,NY,12054 +-73.785141,42.67609,"DD [drivethru-yes] [wifi-no]-Albany,NY",677 Central Ave, Albany,NY,12206 +-73.828819,42.678131,"DD [drivethru-no] [wifi-yes]-Albany,NY",1232 Western Ave [Suite 1], Albany,NY,12203 +-73.75901,42.654537,"DD [drivethru-no] [wifi-no]-Albany,NY",One Commerce Plaza [Twin Twrs Wash Ave], Albany,NY,12210 +-73.792496,42.601234,"DD [drivethru-yes] [wifi-no]-Glenmont,NY",415 Route 9W, Glenmont,NY,12077 +-73.82039,42.68974,"DD [drivethru-yes] [wifi-yes]-Albany,NY",1425 Washington Ave, Albany,NY,12206 +-73.78997,42.608078,"DD [drivethru-no] [wifi-no]-Glenmont,NY",311 Route 9w [Walmart], Glenmont,NY,12077 +-73.751686,42.651024,"DD [drivethru-no] [wifi-no]-Albany,NY",39 N Pearl St, Albany,NY,12207 +-73.770287,42.604771,"DD [drivethru-yes] [wifi-no]-Glenmont,NY",68 US Highway 9 West [Cumberland Farms], Glenmont,NY,12077 +-73.884813,42.763339,"DD [drivethru-no] [wifi-no]-Schenectady,NY",2222 Central Ave [Hess], Schenectady,NY,12304 +-73.91225,42.78405,"DD [drivethru-yes] [wifi-no]-Schenectady,NY",2500 Albany St, Schenectady,NY,12304 +-73.88839,42.86116,"DD [drivethru-yes] [wifi-yes]-Rexford,NY",1607 Route 146, Rexford,NY,12148 +-73.931335,42.871166,"DD [drivethru-yes] [wifi-yes]-Scotia,NY",266 Saratoga Rd, Scotia,NY,12302 +-74.172806,42.964493,"DD [drivethru-yes] [wifi-no]-Glenville,NY",245 Saratoga Rd, Glenville,NY,12302 +-73.89884,42.90962,"DD [drivethru-no] [wifi-yes]-Burnt Hills,NY",809b State Route 50, Burnt Hills,NY,12027 +-74.0084,42.854473,"DD [drivethru-yes] [wifi-yes]-Glenville,NY",2915 Amsterdam Rd, Glenville,NY,12302 +-73.960045,42.824169,"DD [drivethru-no] [wifi-yes]-Scotia,NY",17 Mohawk Ave, Scotia,NY,12302 +-73.940323,42.842815,"DD [drivethru-no] [wifi-no]-Glenville,NY",123 Freemans Bridge Rd [Hess], Glenville,NY,12302 +-73.934387,42.836739,"DD [drivethru-yes] [wifi-no]-Glenville,NY",65 Freemans Bridge, Glenville,NY,12302 +-73.90403,42.804718,"DD [drivethru-no] [wifi-yes]-Schenectady,NY",1621 Union St, Schenectady,NY,12309 +-73.9789,42.79002,"DD [drivethru-yes] [wifi-yes]-Schenectady,NY",3045 Broadway, Schenectady,NY,12306 +-73.778687,42.863049,"DD [drivethru-yes] [wifi-yes]-Clifton Park,NY",602 Plank Rd, Clifton Park,NY,12065 +-73.770988,42.819279,"DD [drivethru-yes] [wifi-no]-Clifton Park,NY",1532 Crescent Rd, Clifton Park,NY,12065 +-73.7752,42.8853,"DD [drivethru-yes] [wifi-no]-Clifton Park,NY",1752b Parkwood Drive, Clifton Park,NY,12065 +-73.768684,42.86245,"DD [drivethru-no] [wifi-no]-Clifton Park,NY",1698 Rt 9 [Hess], Clifton Park,NY,12065 +-73.742226,42.83802,"DD [drivethru-yes] [wifi-yes]-Clifton Park,NY",1530 Rt 9, Clifton Park,NY,12065 +-73.983559,42.812126,"DD [drivethru-yes] [wifi-yes]-Rotterdam,NY",135 W Campbell Rd, Rotterdam,NY,12306 +-73.925514,42.799259,"DD [drivethru-yes] [wifi-yes]-Schenectady,NY",1200 State St, Schenectady,NY,12304 +-73.89318,42.77085,"DD [drivethru-yes] [wifi-no]-Schenectady,NY",3526 State Street, Schenectady,NY,12304 +-74.637646,44.96624,"DD [drivethru-yes] [wifi-no]-Akwesasne,NY",935 State Route 37, Akwesasne,NY,13655 +-73.957512,42.780586,"DD [drivethru-no] [wifi-no]-Schenectady,NY",1900 Curry Rd, Schenectady,NY,12306 +-73.763761,42.820223,"DD [drivethru-no] [wifi-no]-Clifton Park,NY",1513 Crescent Rd [Hess], Clifton Park,NY,12065 +-73.95619,42.80275,"DD [drivethru-yes] [wifi-no]-Schenectady,NY",1420 Broadway, Schenectady,NY,12306 +-73.641579,42.74596,"DD [drivethru-yes] [wifi-yes]-Troy,NY",749 Hoosick Rd, Troy,NY,12180 +-73.691058,42.728835,"DD [drivethru-yes] [wifi-no]-Troy,NY",65 Congress St, Troy,NY,12180 +-73.64616,42.69718,"DD [drivethru-yes] [wifi-yes]-Wynantskill,NY",69 Main Avenue, Wynantskill,NY,12198 +-73.698151,42.64431,"DD [drivethru-yes] [wifi-no]-Rensselaer,NY",324 Troy Rd, Rensselaer,NY,12144 +-73.699089,42.64241,"DD [drivethru-no] [wifi-no]-Rensselaer,NY",279 Troy Rd [Walmart], Rensselaer,NY,12061 +-73.70344,42.73063,"DD [drivethru-yes] [wifi-yes]-Watervliet,NY",318 19th Street, Watervliet,NY,12189 +-73.68953,42.73122,"DD [drivethru-no] [wifi-yes]-Troy,NY",363 Broadway, Troy,NY,12180 +-73.675352,42.739046,"DD [drivethru-no] [wifi-no]-Troy,NY",175 Hoosick St [Hess], Troy,NY,12180 +-73.68929,42.70027,"DD [drivethru-yes] [wifi-yes]-Troy,NY",59 Vandenburgh Avenue, Troy,NY,12180 +-73.695244,42.73595,"DD [drivethru-yes] [wifi-yes]-Green Island,NY",25 Lower Hudson Rd, Green Island,NY,12183 +-73.67778,42.707462,"DD [drivethru-yes] [wifi-no]-Troy,NY",505 Campbell Ave [Cumberland Farms], Troy,NY,12180 +-73.676913,42.739155,"DD [drivethru-yes] [wifi-yes]-Troy,NY",120 Hoosick St [Troy Plaza], Troy,NY,12180 +-73.672852,42.784592,"DD [drivethru-yes] [wifi-yes]-Lansingburg,NY",849 Second Ave [Riverside Plaza], Lansingburg,NY,12182 +-73.686775,42.730911,"DD [drivethru-yes] [wifi-yes]-Troy,NY",310 A Broadway Ave, Troy,NY,12182 +-73.700386,42.754066,"DD [drivethru-no] [wifi-no]-Cohoes,NY",601 Saratoga St [Hess], Cohoes,NY,12047 +-74.46449,42.67976,"DD [drivethru-yes] [wifi-yes]-Cobleskill,NY",990 East Main Rd #1 Route 7 East, Cobleskill,NY,12043 +-74.503067,42.668839,"DD [drivethru-no] [wifi-no]-Cobleskill,NY",1723 State Rte 7 [Hess], Cobleskill,NY,12043 +-73.697807,42.774021,"DD [drivethru-yes] [wifi-yes]-Cohoes,NY",92 Saratoga St, Cohoes,NY,12047 +-73.759125,42.754166,"DD [drivethru-yes] [wifi-yes]-Latham,NY",890 New Loudon Rd, Latham,NY,12110 +-73.80196,42.76381,"DD [drivethru-yes] [wifi-yes]-Latham,NY",1003 Troy Schenectady Rd, Latham,NY,12110 +-73.762283,42.738201,"DD [drivethru-no] [wifi-yes]-Latham,NY",688 New Loudon Rd, Latham,NY,12110 +-73.532771,40.865046,"DD [drivethru-no] [wifi-no]-Oyster Bay,NY",16 Pinehollow Rd [Hess], Oyster Bay,NY,11771 +-73.571189,40.751018,"DD [drivethru-yes] [wifi-no]-Westbury,NY",705 Old Country Rd, Westbury,NY,11590 +-73.58789,40.75811,"DD [drivethru-no] [wifi-yes]-Westbury,NY",253 Post Avenue, Westbury,NY,11590 +-73.687294,40.83083,"DD [drivethru-no] [wifi-yes]-Port Washington,NY",55 Main St, Port Washington,NY,11050 +-73.7068,40.84184,"DD [drivethru-no] [wifi-yes]-Port Washington,NY",158 Shore Road, Port Washington,NY,11050 +-73.49614,40.74097,"DD/BR [drivethru-no] [wifi-yes]-Bethpage,NY",597 Hicksville Rd, Bethpage,NY,11714 +-73.53165,40.78094,"DD [drivethru-no] [wifi-yes]-Jericho,NY",336 N Broadway, Jericho,NY,11753 +-73.470062,40.776466,"DD [drivethru-no] [wifi-yes]-Plainview,NY",1068 Old Country Rd, Plainview,NY,11803 +-73.53374,40.74789,"DD/BR [drivethru-no] [wifi-no]-Hicksville,NY",420 Newbridge Road, Hicksville,NY,11801 +-73.510307,40.756844,"DD [drivethru-no] [wifi-yes]-Hicksville,NY",495 S Broadway Ste 6, Hicksville,NY,11801 +-73.540932,40.766598,"DD [drivethru-no] [wifi-yes]-Hicksville,NY",388 W John St, Hicksville,NY,11801 +-73.527351,40.771774,"DD/BR [drivethru-no] [wifi-yes]-Hicksville,NY",100 North Broadway, Hicksville,NY,11801 +-73.50336,40.78584,"DD [drivethru-no] [wifi-yes]-Plainview,NY",337 South Oyster Bay Rd, Plainview,NY,11803 +-73.527885,40.767838,"DD/BR [drivethru-no] [wifi-yes]-Hicksville,NY",24 Newbridge Rd, Hicksville,NY,11801 +-73.53535,40.86114,"DD/BR [drivethru-no] [wifi-yes]-Oyster Bay,NY",159 Pine Hollow Rd, Oyster Bay,NY,11771 +-73.662422,40.588802,"DD [drivethru-no] [wifi-yes]-Long Beach,NY",51 E Park Ave, Long Beach,NY,11561 +-73.669991,40.654953,"DD [drivethru-no] [wifi-yes]-Lynbrook,NY",355 Sunrise Hwy, Lynbrook,NY,11563 +-73.635582,40.739731,"DD [drivethru-no] [wifi-yes]-Mineola,NY",120 Old Country Rd, Mineola,NY,11501 +-73.605309,40.640236,"DD/BR [drivethru-no] [wifi-yes]-Baldwin,NY",989 Atlantic Ave # 991, Baldwin,NY,11510 +-73.54924,40.663429,"DD/BR [drivethru-yes] [wifi-yes]-Merrick,NY",56 E Sunrise Hwy, Merrick,NY,11566 +-73.43468,40.66883,"DD/BR [drivethru-no] [wifi-yes]-Massapequa,NY",5477-5515 Merrick Road, Massapequa,NY,11758 +-73.47074,40.67773,"DD [drivethru-no] [wifi-yes]-Massapequa,NY",20 Broadway, Massapequa,NY,11758 +-73.483025,40.715813,"DD/BR [drivethru-no] [wifi-yes]-Massapequa,NY",1399 Hicksville Rd, Massapequa,NY,11758 +-73.45486,40.67735,"DD [drivethru-no] [wifi-yes]-Massapequa Park,NY",4886 Sunrise Hwy, Massapequa Park,NY,11762 +-73.48188,40.70059,"DD [drivethru-no] [wifi-yes]-Seaford,NY",1041 Hicksville Road, Seaford,NY,11783 +-73.43296,40.70135,"DD [drivethru-no] [wifi-yes]-Massapequa,NY",1000 Carmans Road, Massapequa,NY,11758 +-73.559235,40.724617,"DD/BR [drivethru-no] [wifi-yes]-East Meadow,NY",2080 Hempstead Tpke, East Meadow,NY,11554 +-73.527992,40.691872,"DD [drivethru-yes] [wifi-yes]-North Bellmore,NY",2813 Jerusalem Ave, North Bellmore,NY,11710 +-73.536186,40.706329,"DD [drivethru-no] [wifi-yes]-East Meadow,NY",2675 North Jerusalem Rd, East Meadow,NY,11554 +-73.522331,40.664268,"DD/BR [drivethru-no] [wifi-yes]-Bellmore,NY",2800 Merrick Rd, Bellmore,NY,11710 +-73.508926,40.672157,"DD/BR [drivethru-no] [wifi-yes]-Wantagh,NY",3267 Sunrise Hwy, Wantagh,NY,11793 +-73.70107,40.75196,"DD/BR [drivethru-no] [wifi-yes]-New Hyde Park,NY",2062 Lakeville Road, New Hyde Park,NY,11040 +-73.63993,40.64084,"DD [drivethru-no] [wifi-yes]-Oceanside,NY",2885 Long Beach Road, Oceanside,NY,11572 +-73.65385,40.63432,"DD [drivethru-no] [wifi-yes]-Oceanside,NY",3151 Lawson Boulevard, Oceanside,NY,11572 +-73.638443,40.646592,"DD [drivethru-no] [wifi-no]-Oceanside,NY",2650 Long Beach Rd [Hess], Oceanside,NY,11572 +-73.632445,40.865857,"DD/BR [drivethru-no] [wifi-yes]-Glen Cove,NY",5 Brewster Street, Glen Cove,NY,11542 +-73.447937,40.728645,"DD [drivethru-yes] [wifi-yes]-Farmingdale,NY",575 Fulton St, Farmingdale,NY,11735 +-73.4549,40.76464,"DD/BR [drivethru-no] [wifi-yes]-Old Bethpage,NY",726 Old Bethpage Rd, Old Bethpage,NY,11804 +-73.650719,40.754601,"DD [drivethru-no] [wifi-yes]-Williston Park,NY",276 Hillside Ave, Williston Park,NY,11596 +-73.6492,40.772369,"DD/BR [drivethru-no] [wifi-yes]-Albertson,NY",1051 Willis Ave, Albertson,NY,11507 +-73.617722,40.747601,"DD/BR [drivethru-no] [wifi-yes]-Carle Place,NY",202 Glen Cove Rd, Carle Place,NY,11514 +-73.62601,40.75421,"DD/BR [drivethru-no] [wifi-yes]-Mineola,NY",265 E Jericho Turnpike, Mineola,NY,11501 +-73.473319,40.72616,"DD [drivethru-no] [wifi-no]-Farmingdale,NY",4000 Hempstead Tpke [Hess], Farmingdale,NY,11735 +-73.4874,40.72531,"DD/BR [drivethru-no] [wifi-yes]-Bethpage,NY",4025B Hempstead Turnpike, Bethpage,NY,11714 +-73.735748,40.801753,"DD [drivethru-no] [wifi-yes]-Great Neck,NY",566 Middle Neck Rd, Great Neck,NY,11023 +-73.462021,40.729813,"DD [drivethru-no] [wifi-no]-Farmingdale,NY",34 Hempstead Tpke, Farmingdale,NY,11735 +-73.4842,40.66651,"DD/BR [drivethru-no] [wifi-yes]-Seaford,NY",4007 Merrick Road, Seaford,NY,11783 +-73.632248,40.653999,"DD [drivethru-yes] [wifi-no]-Rockville Centre,NY",574 Merrick Rd, Rockville Centre,NY,11570 +-73.635709,40.8461,"DD [drivethru-no] [wifi-no]-Glen Cove,NY",86 Glen Cove Ave [Hess], Glen Cove,NY,11542 +-73.63456,40.84115,"DD/BR [drivethru-no] [wifi-yes]-Sea Cliff,NY",347 Glen Cove Avenue, Sea Cliff,NY,11579 +-73.62791,40.833491,"DD/BR [drivethru-no] [wifi-yes]-Glen Head,NY",36 Glen Head Rd, Glen Head,NY,11545 +-73.62128,40.85995,"DD/BR [drivethru-no] [wifi-yes]-Glen Cove,NY",285 Glen Street, Glen Cove,NY,11542 +-73.780642,42.861948,"DD [drivethru-no] [wifi-yes]-Clifton Park,NY",2 Clifton Country Rd, Clifton Park,NY,12065 +-73.663193,40.798656,"DD/BR [drivethru-no] [wifi-yes]-Roslyn,NY",1063 Northern Blvd, Roslyn,NY,11576 +-73.593498,40.644329,"DD/BR [drivethru-no] [wifi-yes]-Freeport,NY",389 Atlantic Ave #391, Freeport,NY,11520 +-73.649147,40.785885,"DD [drivethru-no] [wifi-yes]-Roslyn Heights,NY",191 Mineola Ave #219, Roslyn Heights,NY,11577 +-73.6269,40.80736,"DD [drivethru-no] [wifi-yes]-Greenvale,NY",1 Glen Cove Road, Greenvale,NY,11548 +-73.68847,40.73188,"DD [drivethru-no] [wifi-no]-New Hyde Park,NY",601 Jericho Turnpike, New Hyde Park,NY,11040 +-73.70387,40.63739,"DD [drivethru-no] [wifi-yes]-Hewlett,NY",31 Franklin Avenue, Hewlett,NY,11557 +-73.695786,40.658562,"DD [drivethru-yes] [wifi-yes]-Valley Stream,NY",120 E Sunrise Hwy, Valley Stream,NY,11581 +-73.64789,40.65856,"DD [drivethru-no] [wifi-yes]-Rockville Centre,NY",61 N Village Avenue, Rockville Centre,NY,11570 +-73.63734,40.70434,"DD [drivethru-no] [wifi-yes]-Hempstead,NY",1 Front Street, Hempstead,NY,11550 +-73.58022,40.65665,"DD [drivethru-no] [wifi-yes]-Freeport,NY",35-37 E Sunrise Highway, Freeport,NY,11520 +-73.57325,40.71424,"DD [drivethru-no] [wifi-yes]-East Meadow,NY",329 Merrick Ave, East Meadow,NY,11554 +-73.472954,40.783455,"DD [drivethru-no] [wifi-yes]-Plainview,NY",156 Manetto Hill Road, Plainview,NY,11803 +-73.55032,40.72519,"DD [drivethru-no] [wifi-yes]-East Meadow,NY",2295 Hempstead Turnpike, East Meadow,NY,11554 +-73.527306,40.724407,"DD/BR [drivethru-no] [wifi-yes]-Levittown,NY",2944 Hempstead Tpke, Levittown,NY,11756 +-73.506866,40.725777,"DD [drivethru-no] [wifi-yes]-Levittown,NY",3497 Hempstead Tpke, Levittown,NY,11756 +-73.655491,40.705393,"DD [drivethru-no] [wifi-no]-West Hempstead,NY",435 Hempstead Tpke [Hess], West Hempstead,NY,11552 +-73.72612,40.78763,"DD [drivethru-no] [wifi-yes]-Great Neck,NY",35 N Station Plaza, Great Neck,NY,11021 +-73.61628,40.70033,"DD/BR [drivethru-yes] [wifi-yes]-Hempstead,NY",247 Greenwich Street, Hempstead,NY,11550 +-73.59885,40.71605,"DD/BR [drivethru-no] [wifi-yes]-Uniondale,NY",976 Hempstead Turnpike, Uniondale,NY,11553 +-73.66783,40.6893,"DD/BR [drivethru-no] [wifi-yes]-Franklin Square,NY",662 Dogwood Avenue, Franklin Square,NY,11010 +-73.66093,40.71593,"DD [drivethru-no] [wifi-yes]-Garden City,NY",334 Nassau Boulevard, Garden City,NY,11530 +-73.48188,40.742867,"DD [drivethru-no] [wifi-yes]-Bethpage,NY",515 Stewart Ave, Bethpage,NY,11714 +-73.607786,40.656053,"DD [drivethru-yes] [wifi-yes]-Baldwin,NY",764 Sunrise Hwy, Baldwin,NY,11510 +-73.493996,40.771034,"DD/BR [drivethru-no] [wifi-yes]-Plainview,NY",587 Old Country Rd, Plainview,NY,11803 +-73.54295,40.75799,"DD [drivethru-yes] [wifi-yes]-Hicksville,NY",490 W Old Country Road, Hicksville,NY,11801 +-73.649239,40.605598,"DD [drivethru-yes] [wifi-yes]-Island Park,NY",4261 Austin Blvd, Island Park,NY,11558 +-73.768202,40.656716,"DD [drivethru-no] [wifi-yes]-Jamaica,NY",17725 Rockaway Blvd, Jamaica,NY,11434 +-73.59654,40.746519,"DD [drivethru-no] [wifi-no]-Westbury,NY",467 Old Country Rd, Westbury,NY,11590 +-73.55821,40.65374,"DD/BR [drivethru-no] [wifi-yes]-Merrick,NY",1731 Merrick Road, Merrick,NY,11566 +-73.609451,40.668941,"DD/BR [drivethru-no] [wifi-yes]-Baldwin,NY",1680 Grand Ave, Baldwin,NY,11510 +-73.557152,40.6754,"DD/BR [drivethru-no] [wifi-yes]-Merrick,NY",1766 Merrick Ave N, Merrick,NY,11566 +-73.699509,40.797516,"DD [drivethru-no] [wifi-yes]-Manhasset,NY",370 Plandome Rd, Manhasset,NY,11030 +-73.50233,40.82433,"DD/BR [drivethru-no] [wifi-yes]-Syosset,NY",59 Jackson Ave, Syosset,NY,11791 +-73.684052,40.692032,"DD [drivethru-yes] [wifi-yes]-Franklin Square,NY",595 Franklin Ave, Franklin Square,NY,11010 +-73.684913,40.748076,"DD [drivethru-no] [wifi-no]-New Hyde Park,NY",1600 Hillside Ave, New Hyde Park,NY,11040 +-73.560837,40.779404,"DD/BR [drivethru-yes] [wifi-yes]-Jericho,NY",81 Jericho Tpke, Jericho,NY,11753 +-73.55239,40.74771,"DD/BR [drivethru-no] [wifi-yes]-Westbury,NY",840 Carman Avenue, Westbury,NY,11590 +-73.71919,40.70843,"DD/BR [drivethru-no] [wifi-yes]-Elmont,NY",219 Hempstead Turnpike, Elmont,NY,11003 +-73.681,40.708168,"DD [drivethru-no] [wifi-yes]-Franklin Square,NY",1106 Hempstead Tpke, Franklin Square,NY,11010 +-73.467202,40.816352,"DD [drivethru-no] [wifi-yes]-Woodbury,NY",8285 Jericho Tpke, Woodbury,NY,11797 +-73.656929,40.705471,"DD/BR [drivethru-no] [wifi-yes]-West Hempstead,NY",475 Hempstead Tpke, West Hempstead,NY,11552 +-73.59298,40.70177,"DD/BR [drivethru-yes] [wifi-yes]-Uniondale,NY",545 Uniondale Avenue, Uniondale,NY,11553 +-73.629211,40.697559,"DD/BR [drivethru-yes] [wifi-no]-Hempstead,NY",579 Peninsula Blvd, Hempstead,NY,11550 +-73.72507,40.69042,"DD/BR [drivethru-no] [wifi-yes]-Elmont,NY",23819 Linden Boulevard, Elmont,NY,11003 +-73.70618,40.66716,"DD/BR [drivethru-no] [wifi-yes]-Valley Stream,NY",207 W Merrick Road, Valley Stream,NY,11580 +-73.660805,40.666992,"DD/BR [drivethru-no] [wifi-yes]-Lynbrook,NY",6 Ocean Ave, Lynbrook,NY,11563 +-73.70818,40.6895,"DD [drivethru-no] [wifi-yes]-Elmont,NY",1791 Dutch Broadway, Elmont,NY,11003 +-73.65773,40.743458,"DD [drivethru-no] [wifi-yes]-Garden City Park,NY",2458 Jericho Tpke, Garden City Park,NY,11040 +-73.64049,40.74939,"DD [drivethru-yes] [wifi-yes]-Mineola,NY",126 Jericho Turnpike, Mineola,NY,11501 +-73.63503,40.72509,"DD/BR [drivethru-no] [wifi-yes]-Garden City,NY",165 7th Street, Garden City,NY,11530 +-73.735321,40.624023,"DD [drivethru-no] [wifi-no]-Lawrence,NY",299 Burnside Ave, Lawrence,NY,11559 +-73.589912,40.679939,"DD/BR [drivethru-no] [wifi-yes]-Roosevelt,NY",306 Nassau Rd # 308, Roosevelt,NY,11575 +-73.50742,40.69511,"DD/BR [drivethru-no] [wifi-no]-Wantagh,NY",1148 Wantagh Avenue, Wantagh,NY,11793 +-73.540237,40.683735,"DD [drivethru-no] [wifi-yes]-Bellmore,NY",1526 Newbridge Rd, Bellmore,NY,11710 +-73.655746,40.640808,"DD [drivethru-no] [wifi-no]-Oceanside,NY",550 Atlantic Ave [Hess], Oceanside,NY,11572 +-74.132614,40.563548,"DD [drivethru-yes] [wifi-yes]-Staten Island,NY",3291 Amboy Rd, Staten Island,NY,10306 +-73.906045,40.695087,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",1379 Halsey St, Brooklyn,NY,11237 +-73.880248,40.882063,"DD [drivethru-no] [wifi-yes]-Bronx,NY",47 E Gun Hill Rd, Bronx,NY,10467 +-73.987287,40.692106,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",387 Jay St, Brooklyn,NY,11201 +-73.941097,40.712025,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",809 Grand St, Brooklyn,NY,11211 +-73.997818,40.638268,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",4912 Fort Hamilton Pkwy, Brooklyn,NY,11219 +-73.92486,40.810423,"DD [drivethru-no] [wifi-yes]-Bronx,NY",262 Alexander Ave, Bronx,NY,10454 +-73.958106,40.646303,"DD [drivethru-no] [wifi-no]-Brooklyn,NY",1014 Flatbush Ave, Brooklyn,NY,11226 +-73.797142,40.590422,"DD/BR [drivethru-no] [wifi-yes]-Arverne,NY",6820 Rockaway Beach Blvd, Arverne,NY,11692 +-76.238632,43.460209,"DD [drivethru-yes] [wifi-yes]-Mexico,NY",3378 Main St, Mexico,NY,13114 +-77.3187,43.06441,"DD [drivethru-yes] [wifi-yes]-Macedon,NY",1231 State Route 31, Macedon,NY,14502 +-75.184354,43.250415,"DD [drivethru-yes] [wifi-no]-Barneveld,NY",8035 State Route 12, Barneveld,NY,13304 +-75.037148,43.014626,"DD [drivethru-yes] [wifi-no]-Ilion,NY",40 First St, Ilion,NY,13357 +-74.992638,43.022514,"DD [drivethru-yes] [wifi-no]-Herkimer,NY",505 West State Street, Herkimer,NY,13350 +-74.993492,43.023132,"DD [drivethru-no] [wifi-no]-Herkimer,NY",103 North Caroline St [Walmart], Herkimer,NY,13350 +-73.449004,44.681087,"DD [drivethru-yes] [wifi-yes]-Plattsburgh,NY",11 Skyway Plaza, Plattsburgh,NY,12901 +-75.375053,43.051792,"DD [drivethru-yes] [wifi-yes]-Clinton,NY",33 Utica St, Clinton,NY,13323 +-75.545753,42.827482,"DD [drivethru-yes] [wifi-yes]-Hamilton,NY",34 Utica St, Hamilton,NY,13346 +-74.80219,43.01711,"DD [drivethru-no] [wifi-no]-Iroquois Travel Plaza [NYS Thruway] Little Falls,NY",2576 State Route 5 S [Tisi Rd], Little Falls,NY,13365 +-75.24453,43.10769,"DD [drivethru-yes] [wifi-no]-Utica,NY",31 Schuyler Street, Utica,NY,13502 +-75.94447,43.97636,"DD [drivethru-yes] [wifi-yes]-Watertown,NY",1250 Arsenal Street, Watertown,NY,13601 +-75.917412,43.976543,"DD [drivethru-no] [wifi-no]-Watertown,NY",20823 NYS Rt 3 [Walmart], Watertown,NY,13601 +-75.91378,43.95944,"DD [drivethru-yes] [wifi-yes]-Watertown,NY",1238 Washington Street, Watertown,NY,13601 +-75.702339,44.157948,"DD [drivethru-no] [wifi-no]-Fort Drum,NY",Mt Belvedere Ave [Bldg P10720 Clark Hall], Fort Drum,NY,13602 +-75.807442,44.046532,"DD [drivethru-no] [wifi-no]-Fort Drum,NY",10730 Memorial Dr, Fort Drum,NY,13602 +-74.88887,44.917858,"DD [drivethru-yes] [wifi-yes]-Massena,NY",432 Main Street, Massena,NY,13662 +-77.003886,42.856897,"DD [drivethru-yes] [wifi-no]-Geneva,NY",477 Hamilton St, Geneva,NY,14456 +-75.27538,43.1382,"DD [drivethru-yes] [wifi-yes]-Marcy,NY",9221 River Road, Marcy,NY,13403 +-75.292542,43.117939,"DD [drivethru-yes] [wifi-yes]-Whitesboro,NY",81 Oriskany Blvd, Whitesboro,NY,13492 +-75.22065,43.107712,"DD [drivethru-yes] [wifi-no]-Utica,NY",112 N Genesee Street, Utica,NY,13502 +-75.278084,43.055305,"DD [drivethru-yes] [wifi-yes]-New Hartford,NY",45 Kellogg Rd, New Hartford,NY,13413 +-75.322549,43.08173,"DD [drivethru-yes] [wifi-no]-New Hartford,NY",8471 Seneca Turnpike, New Hartford,NY,13413 +-75.222313,43.090153,"DD [drivethru-yes] [wifi-yes]-Utica,NY",1133 Mohawk St [Rite Aid Plaza], Utica,NY,13501 +-75.236946,43.12632,"DD [drivethru-yes] [wifi-yes]-Utica,NY",9827 River Rd, Utica,NY,13502 +-76.059158,43.104923,"DD [drivethru-yes] [wifi-yes]-Dewitt,NY",6681 Collamer Rd, Dewitt,NY,13057 +-76.157158,43.121861,"DD [drivethru-yes] [wifi-yes]-North Syracuse,NY",5194 W Taft Rd, North Syracuse,NY,13212 +-76.091988,43.089779,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",6584 Thompson Rd, Syracuse,NY,13206 +-76.119926,43.162842,"DD [drivethru-yes] [wifi-yes]-Cicero,NY",8083 Brewerton Rd Rt 11, Cicero,NY,13039 +-75.751373,43.090347,"DD [drivethru-yes] [wifi-yes]-Canastota,NY",369 North Peterboro St, Canastota,NY,13032 +-75.861298,43.054039,"DD [drivethru-yes] [wifi-yes]-Chittenango,NY",900 E Genesee St, Chittenango,NY,13037 +-75.982224,43.004192,"DD [drivethru-no] [wifi-yes]-Manlius,NY",306 Fayette St, Manlius,NY,13104 +-75.824659,44.042107,"DD [drivethru-no] [wifi-no]-Fort Drum,NY",10207 N Riva Ridge Loop [Jack T Sweet Complex], Fort Drum,NY,13602 +-76.13039,43.28715,"DD [drivethru-yes] [wifi-yes]-Central Square,NY",3041 East Avenue, Central Square,NY,13036 +-76.13954,43.23224,"DD [drivethru-yes] [wifi-yes]-Brewerton,NY",9555 Brewerton Road, Brewerton,NY,13029 +-75.849379,42.929842,"DD [drivethru-no] [wifi-yes]-Cazenovia,NY",135 Albany St, Cazenovia,NY,13035 +-76.227547,43.140015,"DD [drivethru-yes] [wifi-yes]-Liverpool,NY",7645 Oswego Rd, Liverpool,NY,13090 +-76.328407,43.158882,"DD [drivethru-no] [wifi-yes]-Baldwinsville,NY",34 E Genesee St, Baldwinsville,NY,13027 +-76.059409,43.03348,"DD [drivethru-no] [wifi-no]-Fayetteville,NY",407 E Genesee St [Hess], Fayetteville,NY,13066 +-76.351562,43.151394,"DD [drivethru-yes] [wifi-yes]-Baldwinsville,NY",2244 Downer St, Baldwinsville,NY,13027 +-75.966667,43.155441,"DD [drivethru-yes] [wifi-yes]-Bridgeport,NY",8010 SR 31, Bridgeport,NY,13030 +-75.8354,44.05003,"DD [drivethru-yes] [wifi-yes]-Evans Mills,NY",26370 Us Route 11, Evans Mills,NY,13637 +-76.1175,43.4043,"DD [drivethru-yes] [wifi-yes]-Parish,NY",2877 Sr 69, Parish,NY,13131 +-76.225166,43.185822,"DD [drivethru-no] [wifi-yes]-Clay,NY",4155 SR 31 [Great Northern Mall], Clay,NY,13041 +-76.412308,43.317993,"DD [drivethru-yes] [wifi-yes]-Fulton,NY",314 S 2nd St, Fulton,NY,13069 +-76.42305,43.32393,"DD [drivethru-yes] [wifi-yes]-Fulton,NY",9 West 1st Street, Fulton,NY,13069 +-76.434746,43.318089,"DD [drivethru-yes] [wifi-yes]-Fulton,NY",810 W Broadway, Fulton,NY,13069 +-76.830757,42.903343,"DD [drivethru-yes] [wifi-yes]-Seneca Falls,NY",2100 Routes 5 & 20, Seneca Falls,NY,13148 +-76.219947,43.186031,"DD [drivethru-yes] [wifi-yes]-Clay,NY",4206 NYS Rt 31, Clay,NY,13041 +-76.91816,42.95897,"DD [drivethru-no] [wifi-no]-Junius Ponds Travel Plaza [NYS Thruway] Phelps,NY",1399 Nine Foot Rd [Junius Ponds Travel Plaza I-90 WB MM 324], Phelps,NY,14532 +-77.055511,42.656685,"DD [drivethru-yes] [wifi-yes]-Penn Yan,NY",203 Lake St, Penn Yan,NY,14527 +-77.282455,43.225647,"DD [drivethru-yes] [wifi-yes]-Ontario,NY",6250 Furnace Rd, Ontario,NY,14519 +-75.622497,43.966303,"DD [drivethru-yes] [wifi-yes]-Carthage,NY",4 S Broad St, Carthage,NY,13619 +-76.143311,42.983372,"DD [drivethru-no] [wifi-no]-Syracuse,NY",6020 S Salina St [Hess], Syracuse,NY,13205 +-76.269188,43.041389,"DD [drivethru-yes] [wifi-yes]-Camillus,NY",5300 W Genesee St, Camillus,NY,13031 +-76.147453,43.074921,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",131 P & C Pkwy [Transportation Ctr], Syracuse,NY,13208 +-76.170082,43.048244,"DD [drivethru-no] [wifi-no]-Syracuse,NY",758 Erie Blvd W [Hess], Syracuse,NY,13204 +-76.147217,43.050781,"DD [drivethru-no] [wifi-no]-Syracuse,NY",400 Erie Blvd E [Hess], Syracuse,NY,13202 +-76.152039,43.049393,"DD [drivethru-no] [wifi-no]-Syracuse,NY",217 S Salina St at E Fayette Ave, Syracuse,NY,13202 +-76.171684,43.069736,"DD [drivethru-no] [wifi-yes]-Syracuse,NY",9520 Carousel Ctr Dr [Carousel Mall Unit 9520], Syracuse,NY,13290 +-76.17786,43.00563,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",4886 W Seneca Turnpike, Syracuse,NY,13215 +-76.27055,43.041205,"DD [drivethru-no] [wifi-no]-Camillus,NY",5323 W Genesee St [Hess], Camillus,NY,13031 +-76.22675,43.04848,"DD [drivethru-no] [wifi-yes]-Syracuse,NY",3336 W Genesee Street, Syracuse,NY,13219 +-76.06612,43.06118,"DD [drivethru-yes] [wifi-yes]-East Syracuse,NY",4 Chevy Drive Suite 1, East Syracuse,NY,13057 +-76.089035,43.078899,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",6378 Thompson Rd, Syracuse,NY,13206 +-76.185406,43.100695,"DD [drivethru-no] [wifi-no]-Liverpool,NY",1075 7th North St [Hess], Liverpool,NY,13088 +-76.183195,43.120499,"DD [drivethru-no] [wifi-no]-Liverpool,NY",4803 W Taft Rd [Hess], Liverpool,NY,13088 +-76.14357,43.119148,"DD [drivethru-yes] [wifi-yes]-North Syracuse,NY",3800 Brewerton Rd Ste 1, North Syracuse,NY,13212 +-76.16973,43.09122,"DD [drivethru-yes] [wifi-yes]-Liverpool,NY",409 7th North Street, Liverpool,NY,13088 +-76.216587,43.123015,"DD [drivethru-yes] [wifi-yes]-Liverpool,NY",7281 Oswego Rd, Liverpool,NY,13090 +-76.065559,43.038429,"DD [drivethru-no] [wifi-yes]-Dewitt,NY",3649 Erie Blvd E [Shoppingtown Mall], Dewitt,NY,13214 +-76.10612,43.06886,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",2921 James Street, Syracuse,NY,13206 +-76.176079,43.062393,"DD [drivethru-no] [wifi-no]-Syracuse,NY",685 Hiawatha Blvd West [Hess], Syracuse,NY,13204 +-75.150764,44.59697,"DD [drivethru-yes] [wifi-yes]-Canton,NY",103 East Main St, Canton,NY,13617 +-76.13663,43.04219,"DD [drivethru-no] [wifi-yes]-Syracuse,NY",746 S Crouse Avenue, Syracuse,NY,13210 +-75.39182,43.079809,"DD [drivethru-yes] [wifi-no]-Clinton,NY",7481 State Route 5, Clinton,NY,13323 +-76.142036,43.010525,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",3915 S Salina, Syracuse,NY,13205 +-75.482989,43.777612,"DD [drivethru-yes] [wifi-yes]-Lowville,NY",7389 Utica Blvd, Lowville,NY,13367 +-75.242462,43.096104,"DD [drivethru-yes] [wifi-no]-Utica,NY",1300 Genesee St, Utica,NY,13502 +-75.645724,43.078618,"DD [drivethru-yes] [wifi-yes]-Oneida,NY",213 Genesee St, Oneida,NY,13421 +-75.596557,43.117647,"DD [drivethru-yes] [wifi-no]-Verona,NY",5264 Willow Place, Verona,NY,13478 +-76.530296,43.45282,"DD [drivethru-yes] [wifi-yes]-Oswego,NY",255 West Seneca St, Oswego,NY,13126 +-76.490142,43.460668,"DD [drivethru-yes] [wifi-yes]-Oswego,NY",105 State Route 104, Oswego,NY,13126 +-75.43949,43.23046,"DD [drivethru-yes] [wifi-yes]-Rome,NY",1701 Black River Boulevard, Rome,NY,13440 +-75.48547,43.22446,"DD [drivethru-yes] [wifi-no]-Rome,NY",1155 Erie Boulevard West, Rome,NY,13440 +-77.089615,43.046974,"DD [drivethru-yes] [wifi-yes]-Newark,NY",242 E Union St, Newark,NY,14513 +-76.3629,43.034716,"DD [drivethru-no] [wifi-no]-Camillus,NY",2053 W Genesee Tpke [Hess], Camillus,NY,13031 +-75.276719,43.094096,"DD [drivethru-yes] [wifi-no]-New Hartford,NY",1707 Burrstone Rd, New Hartford,NY,13413 +-76.187374,43.033345,"DD [drivethru-yes] [wifi-no]-Syracuse,NY",400 Velasko Rd, Syracuse,NY,13219 +-76.152641,43.059908,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",649 N Salina St, Syracuse,NY,13208 +-76.146009,43.105105,"DD [drivethru-yes] [wifi-yes]-Syracuse,NY",2723 Brewerton Rd [Expressmart], Syracuse,NY,13211 +-76.126335,43.56197,"DD [drivethru-yes] [wifi-yes]-Pulaski,NY",4760 Salina St Rt 11 & 13, Pulaski,NY,13142 +-76.113948,43.17584,"DD [drivethru-yes] [wifi-no]-Cicero,NY",5865 SR 31, Cicero,NY,13039 +-74.986732,44.678741,"DD [drivethru-yes] [wifi-yes]-Potsdam,NY",132 Market St, Potsdam,NY,13676 +-76.563438,42.932926,"DD [drivethru-no] [wifi-no]-Auburn,NY",2 E Genesee St, Auburn,NY,13021 +-76.566312,42.934453,"DD [drivethru-no] [wifi-no]-Auburn,NY",68 North St [Hess], Auburn,NY,13021 +-76.551247,42.944157,"DD [drivethru-yes] [wifi-no]-Auburn,NY",149 Grant Ave, Auburn,NY,13021 +-76.571326,42.937379,"DD [drivethru-yes] [wifi-yes]-Auburn,NY",160 State St [Expressmart], Auburn,NY,13021 +-76.031258,43.810375,"DD [drivethru-yes] [wifi-no]-Adams,NY",48 West Church St, Adams,NY,13605 +-76.167949,42.606591,"DD [drivethru-yes] [wifi-yes]-Cortland,NY",152 Clinton St, Cortland,NY,13045 +-76.12678,43.14502,"DD [drivethru-yes] [wifi-yes]-North Syracuse,NY",818 N Main Street, North Syracuse,NY,13212 +-74.006749,40.71362,"DD [drivethru-no] [wifi-no]-New York,NY",2 Penn Plz [Penn Station], New York,NY,10121 +-73.992622,40.751865,"DD [drivethru-no] [wifi-no]-New York,NY",2 Penn Plz [Store 1], New York,NY,10121 +-77.881615,42.878445,"DD [drivethru-no] [wifi-no]-New York,NY",2 Penn Plz [SW Concourse], New York,NY,10121 +-73.91745,40.866711,"DD [drivethru-no] [wifi-yes]-New York,NY",3936 10th Ave [BP], New York,NY,10034 +-73.981842,40.754775,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",25 W 43rd St, New York,NY,10036 +-73.952339,40.810814,"DD [drivethru-no] [wifi-yes]-New York,NY",321 W 125th St, New York,NY,10027 +-73.93383,40.84918,"DD [drivethru-no] [wifi-yes]-New York,NY",1416 Saint Nicholas Avenue, New York,NY,10033 +-74.00552,40.72733,"DD [drivethru-no] [wifi-yes]-New York,NY",175 Varick St, New York,NY,10014 +-73.93727,40.85063,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",728 W 181st Street, New York,NY,10033 +-73.986984,40.747154,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",360 W 31st St [21 Penn Plaza], New York,NY,10001 +-73.97053,40.75818,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",153 E 53rd Street, New York,NY,10022 +-73.95034,40.777519,"DD [drivethru-no] [wifi-yes]-New York,NY",355 E 86th St, New York,NY,10028 +-73.94907,40.78153,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",1760 2nd Avenue, New York,NY,10128 +-73.97654,40.74789,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",567 3rd Avenue, New York,NY,10016 +-73.978737,40.755779,"DD [drivethru-no] [wifi-yes]-New York,NY",6 East 46th St, New York,NY,10017 +-73.95612,40.81358,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",1342 Amsterdam Avenue, New York,NY,10027 +-73.971451,40.792309,"DD [drivethru-no] [wifi-no]-New York,NY",687 Amsterdam Ave, New York,NY,10025 +-73.9418,40.82301,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",2730 Frederick Douglass Boulevard, New York,NY,10039 +-73.94814,40.80137,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",53 West 116th Street, New York,NY,10026 +-73.946918,40.784501,"DD [drivethru-no] [wifi-yes]-New York,NY",1873 2nd Ave, New York,NY,10029 +-73.965032,40.75968,"DD [drivethru-no] [wifi-yes]-New York,NY",1093 Second Ave, New York,NY,10022 +-73.937843,40.848321,"DD [drivethru-no] [wifi-yes]-New York,NY",4199 Broadway, New York,NY,10033 +-74.014118,40.708117,"DD [drivethru-no] [wifi-yes]-New York,NY",19 Rector St, New York,NY,10006 +-74.006973,40.706715,"DD [drivethru-no] [wifi-no]-New York,NY",100 Maiden Lane, New York,NY,10038 +-73.986656,40.718296,"DD/BR [drivethru-no] [wifi-no]-New York,NY",140 Delancey St, New York,NY,10002 +-73.995745,40.716522,"DD [drivethru-no] [wifi-yes]-New York,NY",149 Canal St, New York,NY,10002 +-74.006538,40.71101,"DD [drivethru-no] [wifi-yes]-New York,NY",132 Nassau St, New York,NY,10038 +-73.96937,40.757575,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",875 3rd Ave, New York,NY,10022 +-73.984314,40.761414,"DD [drivethru-no] [wifi-yes]-New York,NY",210 W 50th St, New York,NY,10019 +-73.93428,40.853378,"DD [drivethru-no] [wifi-yes]-New York,NY",4353 Broadway, New York,NY,10033 +-73.95712,40.77052,"DD [drivethru-no] [wifi-yes]-New York,NY",1433 2nd Avenue, New York,NY,10021 +-73.95869,40.76411,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",1225 1st Avenue, New York,NY,10065 +-74.00722,40.71306,"DD [drivethru-no] [wifi-yes]-New York,NY",250 Broadway, New York,NY,10007 +-73.99663,40.73765,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",536 Avenue Of The Americas, New York,NY,10011 +-73.953117,40.783127,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",1392 Lexington Ave, New York,NY,10128 +-73.952345,40.78064,"DD [drivethru-no] [wifi-yes]-New York,NY",200 E 89th St, New York,NY,10128 +-73.94955,40.65047,"DD/BR [drivethru-no] [wifi-yes]-Brooklyn,NY",1467 Nostrand Avenue, Brooklyn,NY,11226 +-74.00329,40.73354,"DD [drivethru-no] [wifi-yes]-New York,NY",75 Christopher St, New York,NY,10014 +-73.980632,40.742515,"DD [drivethru-no] [wifi-yes]-New York,NY",412 3rd Ave, New York,NY,10016 +-73.981818,40.740629,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",355 3rd Ave, New York,NY,10010 +-73.976527,40.744061,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",601 2nd Ave, New York,NY,10016 +-73.976784,40.750701,"DD [drivethru-no] [wifi-yes]-New York,NY",370 Lexington Ave, New York,NY,10017 +-73.97354,40.74871,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",250 East 40th Street, New York,NY,10016 +-73.999395,40.733806,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",406 6th Ave, New York,NY,10011 +-73.98516,40.73967,"DD [drivethru-no] [wifi-yes]-New York,NY",127 E 23rd Street, New York,NY,10010 +-73.992867,40.743168,"DD [drivethru-no] [wifi-yes]-New York,NY",101 W 23rd St, New York,NY,10011 +-73.97925,40.72993,"DD [drivethru-no] [wifi-yes]-New York,NY",520 E 14th Street, New York,NY,10009 +-73.971244,40.794946,"DD [drivethru-no] [wifi-yes]-New York,NY",2568 Broadway, New York,NY,10025 +-73.945702,40.808098,"DD [drivethru-no] [wifi-yes]-New York,NY",105 West 125th St, New York,NY,10027 +-73.973242,40.752439,"DD [drivethru-no] [wifi-no]-New York,NY",712 3rd Ave, New York,NY,10017 +-73.970581,40.759205,"DD [drivethru-no] [wifi-yes]-New York,NY",638 Lexington Ave, New York,NY,10022 +-74.007721,40.714687,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",100 Chambers St, New York,NY,10007 +-74.009113,40.708865,"DD [drivethru-no] [wifi-no]-New York,NY",49 Nassau St, New York,NY,10038 +-74.00862,40.71407,"DD [drivethru-no] [wifi-yes]-New York,NY",130 Church St, New York,NY,10007 +-73.98999,40.767326,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",815 10th Ave, New York,NY,10019 +-73.971715,40.750208,"DD [drivethru-no] [wifi-yes]-New York,NY",800 Second Ave, New York,NY,10017 +-73.97512,40.78754,"DD [drivethru-no] [wifi-yes]-New York,NY",535 Amsterdam Ave Unit A, New York,NY,10024 +-73.990746,40.748459,"DD [drivethru-no] [wifi-yes]-New York,NY",152 W 31st St, New York,NY,10001 +-73.96142,40.760388,"DD [drivethru-no] [wifi-no]-New York,NY",1099 1st Ave, New York,NY,10065 +-74.00488,40.71587,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",321 Broadway, New York,NY,10007 +-73.943359,40.836533,"DD [drivethru-no] [wifi-yes]-New York,NY",3851 Broadway, New York,NY,10032 +-73.92984,40.8549,"DD [drivethru-no] [wifi-yes]-New York,NY",1599 St Nicholas Ave, New York,NY,10040 +-74.01004,40.709988,"DD [drivethru-no] [wifi-no]-New York,NY",2 Cortlandt St [Aka 173 Broadway], New York,NY,10007 +-73.997833,40.756123,"DD [drivethru-no] [wifi-no]-New York,NY",466 10th Ave [BP], New York,NY,10018 +-73.920921,40.867645,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",4942 Broadway, New York,NY,10034 +-73.925453,40.862434,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",130 Dyckman St, New York,NY,10040 +-73.981475,40.732251,"DD [drivethru-no] [wifi-no]-New York,NY",266 First Ave, New York,NY,10009 +-73.998619,40.729454,"DD [drivethru-no] [wifi-yes]-New York,NY",234 Thompson St, New York,NY,10012 +-73.994221,40.752358,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",316 W 34th St, New York,NY,10001 +-73.979019,40.740231,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",476 Second Ave, New York,NY,10016 +-73.979553,40.746197,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",140 E 34th St, New York,NY,10016 +-73.98201,40.74754,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",51 East 34th St, New York,NY,10016 +-73.983316,40.730584,"DD [drivethru-no] [wifi-no]-New York,NY",215 1st Ave, New York,NY,10003 +-73.951736,40.769871,"DD [drivethru-no] [wifi-no]-New York,NY",1443 York Ave, New York,NY,10075 +-73.94576,40.79008,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",1880 3rd Avenue, New York,NY,10029 +-73.95384,40.78768,"DD [drivethru-no] [wifi-yes]-New York,NY",1391 Madison Avenue, New York,NY,10029 +-73.98609,40.72652,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",100 1st Avenue, New York,NY,10009 +-73.959351,40.806316,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",2258 First Ave [Aka 401 East 116th St], New York,NY,10035 +-73.983651,40.759611,"DD [drivethru-no] [wifi-no]-New York,NY",168 W 48th St, New York,NY,10036 +-73.98967,40.755459,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",240 W 40th St, New York,NY,10018 +-73.986771,40.73299,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",218 E 14th St, New York,NY,10003 +-73.985023,40.722042,"DD/BR [drivethru-no] [wifi-no]-New York,NY",250 E Houston St, New York,NY,10002 +-73.94369,40.793193,"DD [drivethru-no] [wifi-yes]-New York,NY",1972 3rd Ave, New York,NY,10029 +-73.974635,40.790298,"DD [drivethru-no] [wifi-yes]-New York,NY",2424 Broadway [Broadway And 89th], New York,NY,10024 +-74.000687,40.747635,"DD [drivethru-no] [wifi-no]-New York,NY",243 9th Ave, New York,NY,10001 +-73.97899,40.75844,"DD [drivethru-no] [wifi-yes]-New York,NY",30 Rockefeller Centre [Mezzanine L], New York,NY,10112 +-73.976017,40.760267,"DD [drivethru-no] [wifi-no]-New York,NY",666 5th Ave, New York,NY,10103 +-73.982895,40.766953,"DD [drivethru-no] [wifi-yes]-New York,NY",973 8th Ave, New York,NY,10019 +-73.9911,40.75368,"DD [drivethru-no] [wifi-no]-New York,NY",265 W 37th St, New York,NY,10018 +-73.941071,40.798546,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",159 E 116th St, New York,NY,10029 +-73.94813,40.7955,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",1630 Madison Avenue, New York,NY,10029 +-73.89373,40.725639,"DD [drivethru-no] [wifi-no]-Maspeth,NY",5951 Queens Mid-Town Expy, Maspeth,NY,11378 +-73.944862,40.823471,"DD [drivethru-no] [wifi-yes]-New York,NY",680 St Nicholas Ave, New York,NY,10030 +-73.95654,40.80283,"DD/br [drivethru-no] [wifi-yes]-New York,NY",2103 Frederick Douglass Boulevard, New York,NY,10026 +-73.967888,40.792614,"DD [drivethru-no] [wifi-yes]-New York,NY",730 Columbus Ave, New York,NY,10025 +-73.96951,40.79795,"DD [drivethru-no] [wifi-yes]-New York,NY",2661 Broadway, New York,NY,10025 +-73.96596,40.8001,"DD [drivethru-no] [wifi-yes]-New York,NY",929 Amsterdam Ave, New York,NY,10025 +-73.21719,40.80984,"DD [drivethru-yes] [wifi-no]-Hauppauge,NY",410 Wheeler Rd, Hauppauge,NY,11788 +-73.15731,40.81011,"DD [drivethru-no] [wifi-no]-Ronkonkoma,NY",3775 Expressway Dr,N Ronkonkoma,NY,11779 +-72.99797,40.82305,"DD [drivethru-no] [wifi-no]-Medford,NY",286 Express Drive South, Medford,NY,11763 +-73.9859,40.74661,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",302 5th Avenue, New York,NY,10001 +-73.989204,40.736027,"DD [drivethru-no] [wifi-yes]-New York,NY",101 E 16th St [Union Square East], New York,NY,10003 +-73.948419,40.774177,"DD [drivethru-no] [wifi-no]-New York,NY",1571 York Ave, New York,NY,10028 +-73.994553,40.760628,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",606 10th Avenue, New York,NY,10036 +-73.97598,40.76212,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",55 West 55th Street, New York,NY,10019 +-73.93658,40.82059,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",110 West 145th Street, New York,NY,10039 +-73.948738,40.828339,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",3600 Broadway, New York,NY,10031 +-73.993925,40.746189,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",289 7th Ave, New York,NY,10001 +-73.998399,40.745696,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",269 8th Ave, New York,NY,10011 +-74.00703,40.72913,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",395 Hudson St, New York,NY,10014 +-73.97953,40.735794,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",361 First Ave, New York,NY,10010 +-73.984483,40.736842,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",243 3rd Ave, New York,NY,10003 +-74.005132,40.708645,"DD [drivethru-no] [wifi-yes]-New York,NY",64 Fulton St, New York,NY,10038 +-74.007889,40.710487,"DD [drivethru-no] [wifi-yes]-New York,NY",139 Fulton St, New York,NY,10038 +-74.000605,40.717218,"DD [drivethru-no] [wifi-yes]-New York,NY",139 Centre St, New York,NY,10013 +-74.00466,40.721462,"DD [drivethru-no] [wifi-yes]-New York,NY",381 Canal St, New York,NY,10013 +-73.999959,40.718821,"DD [drivethru-no] [wifi-yes]-New York,NY",125 Lafayette St, New York,NY,10013 +-73.96338,40.75768,"DD [drivethru-no] [wifi-yes]-New York,NY",1024 1st Avenue, New York,NY,10022 +-73.952576,40.807995,"DD [drivethru-no] [wifi-yes]-New York,NY",2264 Frederick Douglas Blvd, New York,NY,10027 +-73.953028,40.798499,"DD [drivethru-no] [wifi-yes]-New York,NY",111 Central Park North, New York,NY,10026 +-73.992539,40.753742,"DD [drivethru-yes] [wifi-no]-New York,NY",525 8th Ave, New York,NY,10018 +-73.982655,40.744889,"DD/BR [drivethru-no] [wifi-yes]-New York,NY",455 Park Ave S, New York,NY,10016 +-73.885939,40.764626,"DD [drivethru-no] [wifi-yes]-East Elmhurst,NY",83-10 Astoria Blvd, East Elmhurst,NY,11370 +-73.98193,40.61333,"DD [drivethru-no] [wifi-yes]-Brooklyn,NY",6627 Bay Parkway, Brooklyn,NY,11204 +-73.11335,40.86021,"DD/BR [drivethru-no] [wifi-yes]-Lake Grove,NY",2815 Middle Country Road, Lake Grove,NY,11755 +-73.90111,40.71445,"DD/BR [drivethru-no] [wifi-yes]-Middle Village,NY",6122 Fresh Pond Road, Middle Village,NY,11379 +-84.3154,39.29568,"DD [drivethru-yes] [wifi-yes]-Mason,OH",9791 Mason Montgomery Rd, Mason,OH,45040 +-84.225343,39.638122,"DD/BR [drivethru-yes] [wifi-yes]-Dayton,OH",7777 Springboro Pike, Dayton,OH,45449 +-84.51157,39.101589,"DD/BR [drivethru-no] [wifi-no]-Cincinnati,OH",511 Walnut St, Cincinnati,OH,45202 +-82.957603,40.085949,"DD/BR [drivethru-no] [wifi-yes]-Columbus,OH",2255 E Dublin Granville Rd, Columbus,OH,43229 +-83.016884,40.132568,"DD [drivethru-yes] [wifi-yes]-Columbus,OH",8235 N High St, Columbus,OH,43235 +-82.864449,40.048157,"DD/BR [drivethru-yes] [wifi-yes]-Gahanna,OH",1111 N Hamilton Rd, Gahanna,OH,43230 +-82.83255,39.954903,"DD [drivethru-yes] [wifi-yes]-Reynoldsburg,OH",6144 E Main St [Reynoldsburg Commons], Reynoldsburg,OH,43068 +-80.74045,41.222241,"DD [drivethru-yes] [wifi-yes]-Warren,OH",1501 Niles Cortland Rd SE, Warren,OH,44484 +-84.549704,39.377764,"DD [drivethru-yes] [wifi-yes]-Hamilton,OH",1871 Erie Blvd, Hamilton,OH,45011 +-84.498657,39.319981,"DD/BR [drivethru-yes] [wifi-no]-Fairfield,OH",6641 Dixie Hwy, Fairfield,OH,45014 +-84.136197,39.123054,"DD [drivethru-yes] [wifi-yes]-Owensville,OH",110 West Main St Hess, Owensville,OH,45160 +-84.256865,39.190491,"DD [drivethru-yes] [wifi-yes]-Milford,OH",880 State Route 28, Milford,OH,45150 +-84.394149,39.226357,"DD [drivethru-yes] [wifi-yes]-Blue Ash,OH",9188 Plainfield Rd [Shell], Blue Ash,OH,45236 +-84.442467,39.145691,"DD [drivethru-yes] [wifi-yes]-Cincinnati,OH",2700 Madison Rd, Cincinnati,OH,45209 +-84.409919,39.344336,"DD [drivethru-no] [wifi-yes]-West Chester,OH",7809 Cin-Day Rd West, West Chester,OH,45069 +-84.243706,39.046115,"DD [drivethru-yes] [wifi-yes]-Amelia,OH",1264 SR 125, Amelia,OH,45102 +-84.247719,39.091066,"DD [drivethru-yes] [wifi-yes]-Batavia,OH",4382 Elick Ln, Batavia,OH,45103 +-84.371408,39.202537,"DD [drivethru-no] [wifi-yes]-Cincinnati,OH",8051 Montgomery Rd, Cincinnati,OH,45236 +-84.475294,39.416407,"DD [drivethru-yes] [wifi-no]-Hamilton,OH",4200 Hamilton Middletown Rd [Shell Oil], Hamilton,OH,45011 +-84.466937,39.287713,"DD [drivethru-yes] [wifi-no]-Springdale,OH",11595 Princeton Pike, Springdale,OH,45246 +-84.265946,39.267485,"DD [drivethru-yes] [wifi-yes]-Loveland,OH",226 Loveland Madeira Rd, Loveland,OH,45140 +-84.392281,39.295285,"DD [drivethru-yes] [wifi-yes]-Sharonville,OH",12045 Lebanon Rd, Sharonville,OH,45241 +-84.340698,39.259125,"DD [drivethru-yes] [wifi-yes]-Cincinnati,OH",10809 Montgomery Rd, Cincinnati,OH,45242 +-84.601146,39.188942,"DD [drivethru-yes] [wifi-no]-Cincinnati,OH",5431 N Bend Rd, Cincinnati,OH,45247 +-84.334211,39.073098,"DD [drivethru-yes] [wifi-yes]-Cincinnati,OH",8000 Beechmont Ave, Cincinnati,OH,45255 +-84.618155,39.141048,"DD [drivethru-yes] [wifi-yes]-Cincinnati,OH",5991 Glenway Ave, Cincinnati,OH,45238 +-84.511179,39.10049,"DD [drivethru-no] [wifi-no]-Cincinnati,OH",425 Walnut St [Ste 140], Cincinnati,OH,45202 +-84.499977,39.134983,"DD/BR [drivethru-yes] [wifi-yes]-Cincinnati,OH",435 E Martin Luther King Dr, Cincinnati,OH,45229 +-84.259879,39.35764,"DD [drivethru-yes] [wifi-no]-Mason,OH",2430 Kings Mills Rd [Shell], Mason,OH,45040 +-84.776133,39.242201,"DD [drivethru-yes] [wifi-yes]-Harrison,OH",9990 Harrison Ave, Harrison,OH,45030 +-81.434822,41.626148,"DD/BR [drivethru-yes] [wifi-yes]-Willoughby,OH",35535 Euclid Ave, Willoughby,OH,44094 +-82.020691,41.467033,"DD [drivethru-yes] [wifi-yes]-Avon,OH",36071 Chester Rd, Avon,OH,44011 +-81.745712,41.380386,"DD [drivethru-no] [wifi-no]-Parma,OH",8911 Day Drive, Parma,OH,44129 +-81.763131,41.389193,"DD [drivethru-yes] [wifi-yes]-Parma Heights,OH",6317 Pearl Rd, Parma Heights,OH,44130 +-81.921188,41.416878,"DD/BR [drivethru-no] [wifi-yes]-North Olmsted,OH",26963 Lorain Rd, North Olmsted,OH,44070 +-81.08654,41.46312,"DD [drivethru-yes] [wifi-yes]-Middlefield,OH",15560 W High St, Middlefield,OH,44062 +-81.338173,41.409122,"DD [drivethru-yes] [wifi-yes]-Bainbridge,OH",16870 Chillicothe Rd, Bainbridge,OH,44023 +-80.947426,41.789749,"DD/BR [drivethru-yes] [wifi-yes]-Geneva,OH",1150 S Broadway, Geneva,OH,44041 +-81.471512,41.519905,"DD [drivethru-yes] [wifi-yes]-Mayfield Heights,OH",5790 Mayfield Rd, Mayfield Heights,OH,44124 +-82.077305,41.413865,"DD [drivethru-yes] [wifi-yes]-Elyria,OH",994 N Abbe Rd, Elyria,OH,44035 +-81.296646,41.664989,"DD/BR [drivethru-yes] [wifi-yes]-Mentor,OH",9584 Johnnycake Ridge, Mentor,OH,44060 +-81.251617,41.726357,"DD/BR [drivethru-yes] [wifi-yes]-Painesville,OH",255 Richmond St, Painesville,OH,44077 +-81.437569,41.386692,"DD [drivethru-no] [wifi-yes]-Solon,OH",6353 Som Center Rd, Solon,OH,44139 +-81.853165,41.446251,"DD/BR [drivethru-yes] [wifi-yes]-Fairview Park,OH",21015 Lorain Rd, Fairview Park,OH,44126 +-81.216988,41.58596,"DD/BR [drivethru-yes] [wifi-yes]-Chardon,OH",370 Center St [Sr 44], Chardon,OH,44024 +-82.209015,41.420609,"DD/BR [drivethru-yes] [wifi-yes]-Lorain,OH",5494 Leavitt Rd, Lorain,OH,44053 +-81.362846,41.70467,"DD/BR [drivethru-yes] [wifi-yes]-Mentor,OH",7742 Lakeshore Blvd, Mentor,OH,44060 +-81.360874,41.661081,"DD [drivethru-yes] [wifi-no]-Mentor,OH",7825 Mentor Ave, Mentor,OH,44060 +-81.824959,41.371807,"DD/BR [drivethru-yes] [wifi-yes]-Middleburg Heights,OH",17801 Bagley Rd, Middleburg Heights,OH,44130 +-81.835216,41.312627,"DD [drivethru-yes] [wifi-yes]-Strongsville,OH",14009 Pearl Rd, Strongsville,OH,44136 +-83.467593,41.534762,"DD [drivethru-no] [wifi-no]-Perrysburg,OH",26416 Baker Dr [Petro Travel Center], Perrysburg,OH,43551 +-82.588667,40.759698,"DD [drivethru-yes] [wifi-yes]-Mansfield,OH",2094 Park Avenue West, Mansfield,OH,44906 +-82.625313,41.335716,"DD [drivethru-yes] [wifi-yes]-Milan,OH",10916 Highway 250, Milan,OH,44846 +-83.607903,41.677433,"DD [drivethru-no] [wifi-yes]-Toledo,OH",2709 W Central Ave, Toledo,OH,43606 +-83.642919,41.37828,"DD [drivethru-no] [wifi-no]-Bowling Green,OH",705 Ridge St [Bowling Green State Univ], Bowling Green,OH,43402 +-81.389008,40.834904,"DD [drivethru-yes] [wifi-yes]-Canton,OH",3255 Cleveland Ave NW, Canton,OH,44707 +-81.482208,41.181091,"DD [drivethru-yes] [wifi-yes]-Stow,OH",750 E Steels Corner Rd, Stow,OH,44224 +-81.479256,41.132801,"DD/BR [drivethru-yes] [wifi-yes]-Cuyahoga Falls,OH",310 Tallmadge Rd, Cuyahoga Falls,OH,44221 +-81.475403,41.163155,"DD [drivethru-yes] [wifi-yes]-Cuyahoga Falls,OH",1064 Graham Rd, Cuyahoga Falls,OH,44224 +-81.509711,41.313851,"DD [drivethru-yes] [wifi-yes]-Macedonia,OH",815 E Aurora Rd, Macedonia,OH,44056 +-81.570412,41.110104,"DD [drivethru-no] [wifi-yes]-Akron,OH",1712 W Market St, Akron,OH,44313 +-81.120232,40.901817,"DD [drivethru-yes] [wifi-yes]-Alliance,OH",1041 West State St., Alliance,OH,44601 +-80.744688,41.100528,"DD [drivethru-yes] [wifi-yes]-Austintown,OH",4812 Mahoning Ave, Austintown,OH,44515 +-80.629884,41.024234,"DD [drivethru-no] [wifi-yes]-Poland,OH",1301 Boardman Poland Rd, Poland,OH,44514 +-81.463036,41.026913,"DD [drivethru-yes] [wifi-no]-Akron,OH",1830 E Waterloo Rd, Akron,OH,44306 +-80.662701,41.015095,"DD [drivethru-yes] [wifi-yes]-Boardman,OH",7635 Market St, Boardman,OH,44512 +-81.862633,41.158321,"DD [drivethru-yes] [wifi-yes]-Medina,OH",1209 N Court St, Medina,OH,44256 +-81.786392,41.136436,"DD/BR [drivethru-yes] [wifi-yes]-Medina,OH",2739 Medina Rd, Medina,OH,44256 +-81.554785,41.010169,"DD [drivethru-yes] [wifi-yes]-Akron,OH",3305 Manchester Rd, Akron,OH,44319 +-81.442078,41.10091,"DD [drivethru-yes] [wifi-yes]-Tallmadge,OH",196 Tallmadge Circle, Tallmadge,OH,44278 +-80.633516,40.987889,"DD [drivethru-yes] [wifi-yes]-Youngstown,OH",1001 E Western Reserve Rd, Youngstown,OH,44514 +-80.56798,41.17915,"DD [drivethru-yes] [wifi-yes]-Hubbard,OH",2373 North Main St, Hubbard,OH,44425 +-80.728782,41.024648,"DD [drivethru-yes] [wifi-yes]-Canfield,OH",4299 Boardman Canfield Rd, Canfield,OH,44406 +-80.722021,41.143157,"DD [drivethru-yes] [wifi-yes]-Girard,OH",2720 Salt Springs Rd, Girard,OH,44420 +-80.768365,41.127707,"DD [drivethru-yes] [wifi-yes]-Austintown,OH",1123 N Canfield Niles Rd, Austintown,OH,44515 +-81.436623,40.879597,"DD/BR [drivethru-yes] [wifi-yes]-North Canton,OH",4898 Portage St NW, North Canton,OH,44720 +-80.651414,40.884941,"DD [drivethru-yes] [wifi-yes]-Columbiana,OH",44985 State Route 14, Columbiana,OH,44408 +-81.429915,40.795887,"DD [drivethru-yes] [wifi-yes]-Canton,OH",4561 Tuscarawas St W, Canton,OH,44708 +-81.399261,40.825397,"DD [drivethru-no] [wifi-yes]-Canton,OH",2644 Fulton Dr, Canton,OH,44718 +-81.341949,41.23941,"DD/BR [drivethru-yes] [wifi-yes]-Streetsboro,OH",9168 State Route 14, Streetsboro,OH,44241 +-80.844526,41.281418,"DD [drivethru-yes] [wifi-yes]-Warren,OH",4429 Mahoning Ave NW, Warren,OH,44483 +-80.782435,41.267095,"DD [drivethru-yes] [wifi-yes]-Warren,OH",3481 Elm Rd NE, Warren,OH,44483 +-80.777627,41.218881,"DD [drivethru-yes] [wifi-yes]-Warren,OH",3545 Youngstown Rd SE, Warren,OH,44484 +-81.440208,41.203064,"DD [drivethru-yes] [wifi-yes]-Hudson,OH",5075 Darrow Rd, Hudson,OH,44236 +-80.822182,40.900952,"DD/BR [drivethru-yes] [wifi-yes]-Salem,OH",2823 E State St, Salem,OH,44460 +-81.728664,41.04472,"DD [drivethru-yes] [wifi-yes]-Wadsworth,OH",809 High St, Wadsworth,OH,44281 +-80.868451,40.900983,"DD [drivethru-yes] [wifi-yes]-Salem,OH",855 W State St, Salem,OH,44460 +-81.219902,41.156834,"DD [drivethru-yes] [wifi-yes]-Ravenna,OH",1370 E Main St, Ravenna,OH,44266 +-80.683619,41.024514,"DD [drivethru-no] [wifi-no]-Boardman,OH",748 Boardman Canfield Rd, Boardman,OH,44512 +-81.824791,41.238167,"DD [drivethru-yes] [wifi-yes]-Brunswick,OH",3868 Center Rd, Brunswick,OH,44212 +-81.808716,41.404129,"DD [drivethru-yes] [wifi-yes]-Brook Park,OH",15800 Snow Rd, Brook Park,OH,44142 +-81.811829,41.451187,"DD/BR [drivethru-yes] [wifi-yes]-Cleveland,OH",16204 Lorain Ave, Cleveland,OH,44111 +-81.565024,41.447225,"DD [drivethru-yes] [wifi-yes]-Cleveland,OH",4140 Lee Rd, Cleveland,OH,44128 +-81.734612,41.426888,"DD/BR [drivethru-yes] [wifi-yes]-Brooklyn,OH",4740 Ridge Rd, Brooklyn,OH,44144 +-81.526436,41.609707,"DD [drivethru-yes] [wifi-yes]-Euclid,OH",22200 Lakeshore Blvd, Euclid,OH,44123 +-81.684731,41.364746,"DD [drivethru-yes] [wifi-yes]-Parma,OH",7422 Broadview Rd, Parma,OH,44134 +-81.693771,41.496914,"DD [drivethru-no] [wifi-no]-Cleveland,OH",230 W Huron Rd [Suite 7218], Cleveland,OH,44113 +-81.697441,41.405212,"DD/BR [drivethru-yes] [wifi-yes]-Parma,OH",2080 Snow Rd, Parma,OH,44134 +-81.527626,41.520908,"DD/BR [drivethru-yes] [wifi-yes]-South Euclid,OH",4233 Mayfield Rd, South Euclid,OH,44121 +-81.497757,41.425434,"DD/BR [drivethru-yes] [wifi-yes]-Warrensville Heights,OH",4959 Richmond Rd, Warrensville Heights,OH,44146 +-81.838635,41.411843,"DD [drivethru-no] [wifi-no]-Cleveland,OH",5300 Riverside Dr [Cleveland Hopkin Int'l Airport], Cleveland,OH,44135 +-81.818726,41.484856,"DD [drivethru-yes] [wifi-yes]-Lakewood,OH",17609 Detroit Ave [Unit 1], Lakewood,OH,44107 +-81.768767,41.48015,"DD [drivethru-no] [wifi-yes]-Lakewood,OH",1520 W 117th St, Lakewood,OH,44107 +-97.599213,35.511214,"DD [drivethru-yes] [wifi-yes]-Oklahoma City,OK",4400 NW 39th St, Oklahoma City,OK,73112 +-97.565678,35.506357,"DD [drivethru-yes] [wifi-yes]-Oklahoma City,OK",3612 N May Ave, Oklahoma City,OK,73112 +-97.44147,35.449629,"DD [drivethru-no] [wifi-yes]-Del City,OK",1600 S Sunnylane Rd, Del City,OK,73115 +-97.48594,35.62467,"DD [drivethru-yes] [wifi-yes]-Edmond,OK",3201 S Broadway, Edmond,OK,73013 +-77.182675,40.2105,"DD [drivethru-no] [wifi-no]-Carlisle,PA",712 N Hanover St [Hess], Carlisle,PA,17013 +-80.104678,40.695277,"DD [drivethru-no] [wifi-yes]-Cranberry Township,PA",20411 Rt 19 [Unit 1], Cranberry Township,PA,16066 +-75.214661,40.002655,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",4160 Monument Rd [Pathmark Shopping Center], Philadelphia,PA,19131 +-78.39985,40.48607,"DD/BR [drivethru-yes] [wifi-yes]-Altoona,PA",3132 Pleasant Valley Boulevard, Altoona,PA,16602 +-80.095459,42.069332,"DD/BR [drivethru-no] [wifi-no]-Erie,PA",654 Millcreek Mall Unit 570, Erie,PA,16565 +-80.086632,42.054329,"DD [drivethru-yes] [wifi-yes]-Erie,PA",7165 Peach St, Erie,PA,16509 +-78.402771,41.034687,"DD [drivethru-yes] [wifi-yes]-Clearfield,PA",14319 Clearfield Shawville Ste 100, Clearfield,PA,16830 +-78.236282,39.999287,"DD [drivethru-yes] [wifi-yes]-Breezewood,PA",16520 Lincoln Hwy, Breezewood,PA,15533 +-78.724107,40.478158,"DD [drivethru-yes] [wifi-yes]-Ebensburg,PA",541 S Center St, Ebensburg,PA,15931 +-77.83199,40.810171,"DD [drivethru-no] [wifi-yes]-State College,PA",1381 E College Ave, State College,PA,16801 +-77.878269,40.76046,"DD [drivethru-yes] [wifi-yes]-State College,PA",3180 W College Ave, State College,PA,16801 +-78.85797,40.27129,"DD [drivethru-yes] [wifi-yes]-Johnstown,PA",1439 Scalp Avenue, Johnstown,PA,15904 +-77.86295,40.79343,"DD [drivethru-no] [wifi-no]-State College,PA",200 W College Avenue, State College,PA,16801 +-80.05489,40.62029,"DD [drivethru-yes] [wifi-yes]-Wexford,PA",11175 Perry Highway, Wexford,PA,15090 +-79.70403,40.32521,"DD [drivethru-no] [wifi-no]-Irwin,PA",9725 Route 30, Irwin,PA,15642 +-79.5059778,40.3035611,"DD [drivethru-yes] [wifi-yes]-Greensburg,PA",5233 SR 30, Greensburg,PA,15601 +-80.280936,40.604623,"DD [drivethru-yes] [wifi-yes]-Aliquippa,PA",2658 Brodhead Rd, Aliquippa,PA,15001 +-80.280807,40.691761,"DD [drivethru-no] [wifi-no]-Monaca,PA",Pa Rt 18 [Walmart Plaza], Monaca,PA,15061 +-79.694191,40.42754,"DD [drivethru-yes] [wifi-yes]-Murrysville,PA",3980 William Penn Hwy, Murrysville,PA,15668 +-80.354546,41.029499,"DD [drivethru-yes] [wifi-yes]-New Castle,PA",2503 Wilmington Rd, New Castle,PA,16105 +-80.344139,41.001793,"DD/BR [drivethru-yes] [wifi-yes]-New Castle,PA",134 N Mill St, New Castle,PA,16101 +-79.518183,40.810752,"DD [drivethru-yes] [wifi-yes]-Kittanning,PA",300 S Water St, Kittanning,PA,16201 +-79.391242,40.312239,"DD [drivethru-yes] [wifi-yes]-Latrobe,PA",300 Lloyd Ave, Latrobe,PA,15650 +-79.173594,40.614208,"DD [drivethru-yes] [wifi-no]-Indiana,PA",1669 Oakland Ave, Indiana,PA,15701 +-79.837563,40.203251,"DD [drivethru-yes] [wifi-yes]-Belle Vernon,PA",5120 SR 51, Belle Vernon,PA,15012 +-80.44376,41.23371,"DD [drivethru-yes] [wifi-yes]-Hermitage,PA",3560 E State Street, Hermitage,PA,16148 +-79.93932,40.92997,"DD [drivethru-yes] [wifi-yes]-Butler,PA",540 Butler Crossings, Butler,PA,16001 +-79.757276,40.604558,"DD [drivethru-yes] [wifi-yes]-Tarentum,PA",301 E 10th Ave, Tarentum,PA,15084 +-79.549976,40.282518,"DD [drivethru-yes] [wifi-yes]-Greensburg,PA",1295 S Main St, Greensburg,PA,15601 +-77.180664,40.200653,"DD [drivethru-yes] [wifi-yes]-Carlisle,PA",402 E High St, Carlisle,PA,17013 +-76.930145,40.344097,"DD [drivethru-no] [wifi-no]-Marysville,PA",104 N State Rd [Hess], Marysville,PA,17053 +-76.392067,40.367405,"DD [drivethru-no] [wifi-no]-Schaefferstown,PA",Rts 501 & 897 [Hess], Schaefferstown,PA,17088 +-76.83448,40.17826,"DD [drivethru-no] [wifi-no]-Etters,PA",486 Fishing Creek Road [Hess], Etters,PA,17319 +-76.820107,40.153404,"DD [drivethru-no] [wifi-no]-Etters,PA",55 Robinhood Dr [Hess], Etters,PA,17319 +-76.82362,40.33625,"DD/BR [drivethru-yes] [wifi-yes]-Harrisburg,PA",4342 Linglestown Road, Harrisburg,PA,17112 +-76.39804,40.054709,"DD [drivethru-no] [wifi-yes]-Lancaster,PA",582 Centerville Rd, Lancaster,PA,17601 +-76.652115,40.293591,"DD [drivethru-yes] [wifi-yes]-Hershey,PA",605 Park Ave, Hershey,PA,17033 +-76.501701,40.331902,"DD [drivethru-no] [wifi-no]-Annville,PA",750 E Main St [Hess], Annville,PA,17003 +-76.251541,40.354492,"DD [drivethru-no] [wifi-no]-Richland,PA",600 E Linden St [Hess], Richland,PA,17087 +-76.511836,40.452066,"DD [drivethru-no] [wifi-no]-Jonestown,PA",1 Lickdale Road [Hess], Jonestown,PA,17038 +-76.705215,39.960789,"DD/BR [drivethru-yes] [wifi-yes]-York,PA",1015 Mt Rose Ave, York,PA,17403 +-76.752548,39.954922,"DD [drivethru-no] [wifi-no]-West York,PA",1129 W Market St [Hess], West York,PA,17404 +-76.590354,40.277571,"DD [drivethru-no] [wifi-no]-Campbelltown,PA",322 West Main St [Hess], Campbelltown,PA,7010 +-76.569046,40.320484,"DD [drivethru-no] [wifi-yes]-Palmyra,PA",100 N Londonderry Sq [Walmart], Palmyra,PA,17078 +-76.18647,39.91075,"DD [drivethru-no] [wifi-no]-New Providence,PA",2281 Beaver Valley Pike [Hess], New Providence,PA,17560 +-76.74503,39.98199,"DD [drivethru-yes] [wifi-yes]-York,PA",701 Loucks Road Ste A, York,PA,17404 +-76.88228,40.21214,"DD [drivethru-no] [wifi-no]-New Cumberland,PA",710 Limekiln Road [Hess], New Cumberland,PA,17070 +-76.728508,40.018429,"DD [drivethru-no] [wifi-no]-Emigsville,PA",3311 North George St Ext [Hess], Emigsville,PA,17318 +-76.888008,40.241474,"DD [drivethru-no] [wifi-no]-Lemoyme,PA",402 S 3rd St [Hess], Lemoyne,PA,17043 +-76.68732,39.93019,"DD/BR [drivethru-yes] [wifi-yes]-York,PA",2175 South Queen Street, York,PA,17402 +-76.928108,40.299534,"DD [drivethru-yes] [wifi-yes]-Enola,PA",421 N Enola Rd, Enola,PA,17025 +-76.734131,39.980377,"DD [drivethru-no] [wifi-yes]-York,PA",1312 N George St, York,PA,17404 +-76.98239,40.23971,"DD [drivethru-yes] [wifi-yes]-Mechanicsburg,PA",5306 Carlisle Pike, Mechanicsburg,PA,17050 +-76.47287,40.03198,"DD [drivethru-no] [wifi-no]-Columbia,PA",1792 Columbia Avenue [Hess], Columbia,PA,17512 +-76.38189,40.15028,"DD [drivethru-no] [wifi-no]-Manheim,PA",675 Lancaster Road [Hess], Manheim,PA,17545 +-76.213348,40.085129,"DD/BR [drivethru-yes] [wifi-yes]-Leola,PA",366 W Main St, Leola,PA,17540 +-76.24476,40.11409,"DD [drivethru-no] [wifi-no]-Leola,PA",3180 Oregon Pike [Hess], Leola,PA,17540 +-76.484833,40.109447,"DD [drivethru-yes] [wifi-yes]-Mount Joy,PA",807 E Main St, Mount Joy,PA,17552 +-76.98414,39.82478,"DD [drivethru-yes] [wifi-yes]-Hanover,PA",391 Eisenhower Drive, Hanover,PA,17331 +-76.960175,39.773975,"DD [drivethru-yes] [wifi-yes]-Hanover,PA",1400 Baltimore St, Hanover,PA,17331 +-76.993546,39.816105,"DD [drivethru-no] [wifi-no]-Hanover,PA",998 Carlisle St [Hess], Hanover,PA,17331 +-76.255417,40.218521,"DD [drivethru-no] [wifi-no]-Lititz,PA",128th Division Hwy [Hess], Lititz,PA,17543 +-76.307846,40.166492,"DD [drivethru-no] [wifi-no]-Lititz,PA",511 Furnace Hills Pike [Hess], Lititz,PA,17543 +-76.95431,40.23792,"DD [drivethru-no] [wifi-no]-Camp Hill,PA",4175 Market Street [Hess], Camp Hill,PA,17011 +-76.92365,40.252597,"DD [drivethru-yes] [wifi-yes]-Camp Hill,PA",503 N 21st St [Holy Spirit Hospital], Camp Hill,PA,17011 +-76.318314,40.071381,"DD [drivethru-yes] [wifi-yes]-Lancaster,PA",1838 Fruitville Pike, Lancaster,PA,17601 +-76.671631,40.284885,"DD [drivethru-no] [wifi-no]-Swatara,PA",4300 Derry St [Hess], Swatara,PA,17111 +-76.841049,40.256008,"DD/BR [drivethru-no] [wifi-yes]-Harrisburg,PA",2820 Paxton St, Harrisburg,PA,17111 +-76.774727,40.259453,"DD [drivethru-no] [wifi-no]-Harrisburg,PA",6821 Paxton St [Hess], Harrisburg,PA,17111 +-76.793175,40.319534,"DD [drivethru-no] [wifi-no]-Harrisburg,PA",5575 Allentown Blvd [Hess], Harrisburg,PA,17112 +-76.350319,40.093418,"DD [drivethru-yes] [wifi-yes]-East Petersburg,PA",2006 Miller Rd, East Petersburg,PA,17520 +-76.35117,40.08284,"DD [drivethru-no] [wifi-no]-Lancaster,PA",1660 Rohrerstown Road [Hess], Lancaster,PA,17601 +-76.725209,40.35319,"DD [drivethru-no] [wifi-no]-Harrisburg,PA",7833 Linglestown Rd [WilcoHess], Harrisburg,PA,17112 +-76.827866,40.294533,"DD [drivethru-yes] [wifi-yes]-Harrisburg,PA",4005 Jonestown Rd, Harrisburg,PA,17109 +-76.816805,40.278974,"DD [drivethru-yes] [wifi-yes]-Harrisburg,PA",4212 Union Deposit Rd, Harrisburg,PA,17111 +-76.017268,39.99169,"DD [drivethru-no] [wifi-no]-Gap,PA",5387 Lincoln Hwy [Hess], Gap,PA,17527 +-76.356888,40.038479,"DD [drivethru-yes] [wifi-yes]-Lancaster,PA",1906 Columbia Ave, Lancaster,PA,17603 +-76.58638,40.13853,"DD [drivethru-no] [wifi-no]-Elizabethtown,PA",1500 S Market Street [Hess], Elizabethtown,PA,17022 +-76.098068,40.221291,"DD/BR [drivethru-yes] [wifi-yes]-Denver,PA",2055 N Reading Rd, Denver,PA,17517 +-76.192581,40.022079,"DD [drivethru-no] [wifi-no]-Lancaster,PA",5 Hartman Bridge Rd Hess, Lancaster,PA,17602 +-76.23217,40.03024,"DD [drivethru-yes] [wifi-yes]-Lancaster,PA",2120 Lincoln Highway East, Lancaster,PA,17602 +-76.450455,40.339001,"DD [drivethru-no] [wifi-no]-Lebanon,PA",2190 Cumberland St [Hess], Lebanon,PA,17042 +-76.436462,40.237434,"DD [drivethru-no] [wifi-no]-Manheim,PA",3190 Lebanon Rd [Hess], Manheim,PA,17545 +-76.38861,40.30855,"DD [drivethru-no] [wifi-no]-Lebanon,PA",302 E Evergreen Road [Hess], Lebanon,PA,17042 +-76.45084,40.33911,"DD/BR [drivethru-yes] [wifi-yes]-Lebanon,PA",2199 Cumberland Street, Lebanon,PA,17042 +-76.724792,40.044178,"DD [drivethru-yes] [wifi-yes]-Manchester,PA",105 Glen Dr, Manchester,PA,17345 +-77.616591,39.925139,"DD/BR [drivethru-yes] [wifi-yes]-Chambersburg,PA",1479 Lincoln Way E, Chambersburg,PA,17201 +-77.639744,39.929978,"DD [drivethru-no] [wifi-no]-Chambersburg,PA",1070 Lincoln Way E [Hess], Chambersburg,PA,17201 +-77.564384,40.625923,"DD [drivethru-no] [wifi-yes]-Burnham,PA",324 South Logan Blvd, Burnham,PA,17009 +-77.603973,40.587173,"DD [drivethru-yes] [wifi-yes]-Lewistown,PA",10470 US Hwy 522 South, Lewistown,PA,17044 +-76.631332,39.918545,"DD/BR [drivethru-yes] [wifi-no]-Red Lion,PA",3103 Cape Horn Road, Red Lion,PA,17356 +-77.12072,40.23388,"DD [drivethru-yes] [wifi-yes]-Carlisle,PA",1651 Harrisburg Pike, Carlisle,PA,17015 +-76.88343,40.260803,"DD [drivethru-no] [wifi-yes]-Harrisburg,PA",107 N 2nd St, Harrisburg,PA,17101 +-76.87465,40.2645,"DD [drivethru-no] [wifi-no]-Harrisburg,PA",1100 Market Street [Hess], Harrisburg,PA,17103 +-75.36401,40.0944,"DD [drivethru-yes] [wifi-yes]-King Of Prussia,PA",132 West Dekalb Pke, King Of Prussia,PA,19406 +-75.688194,40.246464,"DD [drivethru-yes] [wifi-yes]-Stowe,PA",1601 West High St, Stowe,PA,19464 +-75.5206,40.52006,"DD [drivethru-no] [wifi-yes]-Emmaus,PA",4030 Chestnut Street, Emmaus,PA,18049 +-75.84051,40.48495,"DD [drivethru-no] [wifi-no]-Fleetwood,PA",14243 Kutztown Road [Hess], Fleetwood,PA,19522 +-75.922562,40.413609,"DD/BR [drivethru-yes] [wifi-yes]-Temple,PA",5334 Allentown Pike, Temple,PA,19560 +-75.513779,40.124126,"DD [drivethru-no] [wifi-yes]-Phoenixville,PA",123 Nutt Rd, Phoenixville,PA,19460 +-75.977112,39.793434,"DD [drivethru-yes] [wifi-yes]-Oxford,PA",321 N 3rd St [Oxford Square SC], Oxford,PA,19363 +-75.98913,40.34168,"DD/BR [drivethru-yes] [wifi-yes]-Wyomissing,PA",1 Cheltenham Drive, Wyomissing,PA,19610 +-75.895988,40.449406,"DD/BR [drivethru-yes] [wifi-yes]-Blandon,PA",8448 Allentown Pike, Blandon,PA,19510 +-75.727188,39.84343,"DD/BR [drivethru-yes] [wifi-no]-Kennett Square,PA",745 W Cypress St, Kennett Square,PA,19348 +-75.578812,39.968048,"DD [drivethru-no] [wifi-yes]-West Chester,PA",1009 W Chester Pike, West Chester,PA,19382 +-75.30774,40.66657,"DD [drivethru-yes] [wifi-yes]-Bethlehem,PA",4460 Easton Avenue, Bethlehem,PA,18020 +-75.335022,40.653992,"DD [drivethru-no] [wifi-no]-Butztown,PA",3283 Easton Ave [Hess], Butztown,PA,18017 +-75.34784,40.64009,"DD [drivethru-yes] [wifi-yes]-Bethlehem,PA",1910 Stefko Boulevard, Bethlehem,PA,18017 +-75.370323,40.63063,"DD [drivethru-yes] [wifi-yes]-Bethlehem,PA",1301 Linden St, Bethlehem,PA,18018 +-75.413078,40.652069,"DD [drivethru-yes] [wifi-yes]-Bethlehem,PA",3055 Schoenersville Rd, Bethlehem,PA,18017 +-75.38205,40.61037,"DD [drivethru-no] [wifi-yes]-Bethlehem,PA",213 W 4th Street, Bethlehem,PA,18015 +-75.348122,40.668922,"DD [drivethru-yes] [wifi-no]-Bethlehem,PA",3606 Linden St, Bethlehem,PA,18020 +-75.29618,40.83921,"DD [drivethru-yes] [wifi-yes]-Wind Gap,PA",855 S Broadway, Wind Gap,PA,18091 +-75.233701,40.871809,"DD [drivethru-yes] [wifi-no]-Bangor,PA",439 Blue Valley Dr, Bangor,PA,18013 +-75.935036,39.980534,"DD/BR [drivethru-yes] [wifi-yes]-Parkesburg,PA",760 Commons Dr [West Sadsbury Commons], Parkesburg,PA,19365 +-75.301498,39.965141,"DD [drivethru-yes] [wifi-yes]-Havertown,PA",2804 Township Line Rd, Havertown,PA,19083 +-75.340876,40.579882,"DD [drivethru-yes] [wifi-no]-Hellertown,PA",730 Main St, Hellertown,PA,18055 +-75.286873,40.094448,"DD [drivethru-yes] [wifi-no]-Conshohocken,PA",108 W Ridge Pike, Consohocken,PA,19428 +-75.344734,39.877762,"DD [drivethru-no] [wifi-yes]-Woodlyn,PA",1300 Macdade Blvd, Wooklyn,PA,19094 +-75.95881,41.2482,"DD [drivethru-no] [wifi-yes]-Plymouth Meeting,PA",511 West Germantown Park, Plymouth Meeting,PA,18651 +-75.481049,40.621628,"DD [drivethru-yes] [wifi-yes]-Whitehall,PA",1174 Macarthur Rd, Whitehall,PA,18052 +-75.454422,40.57761,"DD [drivethru-no] [wifi-yes]-Allentown,PA",402 W Emaus Ave, Allentown,PA,18103 +-75.97837,40.30623,"DD/BR [drivethru-yes] [wifi-yes]-Shillington,PA",2241 Lancaster Pike, Shillington,PA,19607 +-75.487564,40.55901,"DD [drivethru-no] [wifi-yes]-Allentown,PA",3039 Lehigh St, Allentown,PA,18103 +-75.98844,40.30254,"DD [drivethru-no] [wifi-no]-Reading,PA",2336 Lancaster Pike [Hess], Reading,PA,19607 +-75.443993,40.616291,"DD [drivethru-no] [wifi-no]-Allentown,PA",733-51 Hanover Ave [Hess], Allentown,PA,18109 +-75.48928,40.63948,"DD [drivethru-yes] [wifi-yes]-Whitehall,PA",2267 Macarthur Road, Whitehall,PA,18052 +-75.939175,40.316125,"DD [drivethru-yes] [wifi-yes]-Reading,PA",800 Lancaster Ave, Reading,PA,19607 +-75.522774,40.579582,"DD/BR [drivethru-yes] [wifi-yes]-Allentown,PA",3219 Hamilton Blvd, Allentown,PA,18103 +-75.59234,40.7537,"DD [drivethru-yes] [wifi-no]-Walnutport,PA",325 S Best Avenue, Walnutport,PA,18088 +-75.31425,40.73002,"DD [drivethru-yes] [wifi-yes]-Nazareth,PA",848 Nazareth Pike, Nazareth,PA,18064 +-75.474098,40.587849,"DD [drivethru-no] [wifi-no]-Allentown,PA",1043 Lehigh St [Hess], Allentown,PA,18105 +-75.540268,40.040688,"DD [drivethru-yes] [wifi-yes]-Malvern,PA",210 West Lancaster Ave, Malvern,PA,19355 +-75.61562,40.24397,"DD [drivethru-yes] [wifi-yes]-Pottstown,PA",1495 E High Street, Pottstown,PA,19464 +-75.54803,40.02104,"DD [drivethru-no] [wifi-no]-West Chester,PA",1594 West Chester Pke, West Chester,PA,19382 +-75.350235,39.902134,"DD/BR [drivethru-no] [wifi-yes]-Swarthmore,PA",1 S Chester Rd, Swarthmore,PA,19081 +-75.423813,40.045639,"DD [drivethru-no] [wifi-yes]-Devon,PA",891 Lancaster Ave, Devon,PA,19333 +-75.69982,40.50023,"DD [drivethru-no] [wifi-no]-Topton,PA",8 E Weiss Street [Hess], Topton,PA,19562 +-76.072395,40.32832,"DD [drivethru-no] [wifi-no]-Wernersville,PA",328 E Penn Ave [Hess], Wernersville,PA,19565 +-76.036034,40.326534,"DD [drivethru-yes] [wifi-yes]-Sinking Spring,PA",3818 Penn Ave, Sinking Spring,PA,19608 +-75.40229,40.130936,"DD [drivethru-yes] [wifi-no]-Norristown,PA",2601 Egypt Rd, Norristown,PA,19403 +-75.48122,40.042152,"DD [drivethru-yes] [wifi-yes]-Paoli,PA",49 E Lancaster Ave, Paoli,PA,19301 +-75.29437,40.00957,"DD/BR [drivethru-no] [wifi-yes]-Ardmore,PA",163 W Lancaster Avenue, Ardmore,PA,19003 +-75.527481,40.053043,"DD [drivethru-no] [wifi-no]-Malvern,PA",201 Morehall Rd [Lukoil], Malvern,PA,19355 +-75.437134,39.913223,"DD [drivethru-no] [wifi-yes]-Media,PA",1165 W Baltimore Pike #B, Media,PA,19063 +-75.271269,39.938566,"DD [drivethru-no] [wifi-yes]-Lansdowne,PA",23 E Baltimore Ave, Lansdowne,PA,19050 +-75.38694,40.584881,"DD [drivethru-no] [wifi-no]-Bethlehem,PA",3655 Rt 378, Bethlehem,PA,18015 +-75.287285,39.958202,"DD [drivethru-no] [wifi-no]-Drexel Hill,PA",712 N Landsdowne Ave, Drexel Hill,PA,19026 +-75.6535,40.06057,"DD [drivethru-no] [wifi-no]-Exton,PA",100 East Uwchlan Avenue [Exxon], Exton,PA,19341 +-75.28801,39.907108,"DD [drivethru-yes] [wifi-yes]-Glenolden,PA",146 N Macdade Blvd, Glenolden,PA,19036 +-75.308342,39.885559,"DD [drivethru-no] [wifi-yes]-Prospect Park,PA",921 Lincoln Ave [Rt 420 & Lincoln Ave], Prospect Park,PA,19076 +-75.2649,39.918217,"DD [drivethru-no] [wifi-yes]-Collingdale,PA",5 Macdade Blvd, Collingdale,PA,19023 +-75.839836,40.2962,"DD [drivethru-no] [wifi-no]-Reading,PA",5900 Perkiomen Ave [Walmart], Reading,PA,19606 +-75.364754,39.912918,"DD [drivethru-no] [wifi-yes]-Media,PA",400 E Baltimore Pike, Media,PA,19063 +-76.0033,40.56052,"DD/BR [drivethru-yes] [wifi-yes]-Hamburg,PA",1618 Mountain Road, Hamburg,PA,19526 +-75.976624,40.53841,"DD [drivethru-no] [wifi-no]-Hamburg,PA",16617 Pottsville Pike [Hess], Hamburg,PA,19526 +-75.473534,39.898045,"DD [drivethru-yes] [wifi-yes]-Concordville,PA",1110 Baltimore Pike, Concordville,PA,19331 +-75.314354,39.92382,"DD [drivethru-no] [wifi-yes]-Springfield,PA",100 Baltimore Pike, Springfield,PA,19064 +-75.346855,39.913902,"DD [drivethru-no] [wifi-yes]-Springfield,PA",1158 Baltimore Pike, Springfield,PA,19064 +-75.379898,40.161976,"DD [drivethru-no] [wifi-no]-Norristown,PA",3001 W Germantown Pike [BP Gas Station], Norristown,PA,19403 +-75.376411,40.131729,"DD [drivethru-yes] [wifi-yes]-Norristown,PA",1941 Main St, Norristown,PA,19403 +-75.27373,39.90866,"DD [drivethru-yes] [wifi-yes]-Sharon Hill,PA",1100 Chester Pike, Sharon Hill,PA,19079 +-75.3019,39.88628,"DD [drivethru-no] [wifi-yes]-Norwood,PA",600 Chester Pike, Norwood,PA,19074 +-75.31761,39.89482,"DD [drivethru-no] [wifi-yes]-Folsom,PA",1601 Macdade Boulevard, Folsom,PA,19033 +-75.566658,40.56068,"DD [drivethru-no] [wifi-no]-Allentown,PA",5640 Hamilton Blvd [Hess], Allentown,PA,18106 +-75.743,39.99651,"DD [drivethru-yes] [wifi-yes]-Downingtown,PA",3907 West Lincoln Highway, Downingtown,PA,19335 +-75.2529,40.6875,"DD [drivethru-yes] [wifi-yes]-Palmer,PA",2500 Nazareth Road, Palmer,PA,18045 +-75.536041,40.236805,"DD [drivethru-yes] [wifi-yes]-Limerick,PA",6 Kugler Rd, Limerick,PA,19468 +-75.464019,40.19379,"DD [drivethru-no] [wifi-no]-Collegeville,PA",150 E Main St [Hess], Collegeville,PA,19426 +-75.453316,40.208744,"DD [drivethru-yes] [wifi-no]-Collegeville,PA",125 Gravel Pike, Collegeville,PA,19426 +-75.458372,40.178444,"DD [drivethru-yes] [wifi-no]-Collegeville,PA",407 2nd Ave, Collegeville,PA,19426 +-75.431129,39.888355,"DD [drivethru-yes] [wifi-yes]-Media,PA",5101 Pennell Rd, Media,PA,19063 +-75.44885,39.85005,"DD [drivethru-yes] [wifi-yes]-Boothwyn,PA",608 Conchester Highway, Boothwyn,PA,19061 +-75.625702,40.362564,"DD [drivethru-yes] [wifi-yes]-Bechtelsville,PA",830 Rt 100 N, Bechtelsville,PA,19505 +-75.66455,40.16999,"DD [drivethru-no] [wifi-yes]-Pottstown,PA",2321 Pottstown Pike, Pottstown,PA,19465 +-75.53902,39.85274,"DD [drivethru-no] [wifi-yes]-Chadds Ford,PA",257 Wilmington W Chester Pike, Chadds Ford,PA,19317 +-75.68859,40.07896,"DD [drivethru-no] [wifi-yes]-Chester Springs,PA",157 Pottstown Pike, Chester Springs,PA,19425 +-75.31112,39.97168,"DD [drivethru-no] [wifi-yes]-Havertown,PA",901 West Chester Pike, Havertown,PA,19083 +-75.322845,39.953976,"DD [drivethru-yes] [wifi-yes]-Drexel Hill,PA",5060 Township Line Rd, Drexel Hill,PA,19026 +-75.37622,39.86673,"DD [drivethru-no] [wifi-yes]-Brookhaven,PA",2705 Edgemont Avenue, Brookhaven,PA,19015 +-75.438717,40.633673,"DD [drivethru-yes] [wifi-yes]-Allentown,PA",261 Lloyd St, Allentown,PA,18109 +-75.49138,40.69413,"DD [drivethru-yes] [wifi-yes]-Northampton,PA",1679 Nor Bath Boulevard, Northampton,PA,18067 +-75.511451,40.664369,"DD [drivethru-yes] [wifi-yes]-Whitehall,PA",3670 MacArthur Rd, Whitehall,PA,18052 +-75.25705,40.679649,"DD [drivethru-yes] [wifi-yes]-Easton,PA",2926 William Penn Hwy, Easton,PA,18045 +-75.186653,40.72744,"DD [drivethru-yes] [wifi-yes]-Forks,PA",225 Towncenter Blvd [Forks Plaza], Forks,PA,18040 +-75.59534,39.96377,"DD [drivethru-no] [wifi-yes]-West Chester,PA",607 E Market Street, West Chester,PA,19382 +-75.444489,40.623905,"DD [drivethru-no] [wifi-no]-Allentown,PA",824 Union Blvd [Hess], Allentown,PA,18109 +-75.460281,40.605534,"DD [drivethru-no] [wifi-yes]-Allentown,PA",215 W Hamilton St [American Plaza Mall], Allentown,PA,18101 +-75.53232,40.61118,"DD [drivethru-no] [wifi-yes]-Allentown,PA",1403 North Cedar Crest Boulevard Ste 150, Allentown,PA,18104 +-75.470711,40.604488,"DD [drivethru-no] [wifi-yes]-Allentown,PA",112 North 6th St, Allentown,PA,18101 +-75.490423,40.641149,"DD [drivethru-no] [wifi-yes]-Whitehall,PA",2364 Macarthur Rd, Whitehall,PA,18052 +-75.49154,40.60764,"DD [drivethru-yes] [wifi-yes]-Allentown,PA",1427 Tilghman Street, Allentown,PA,18102 +-75.44759,40.62409,"DD [drivethru-yes] [wifi-yes]-Allentown,PA",709 Union Boulevard, Allentown,PA,18109 +-75.62786,39.96415,"DD [drivethru-yes] [wifi-yes]-West Chester,PA",750 Miles Road, West Chester,PA,19380 +-75.57073,40.61278,"DD [drivethru-yes] [wifi-no]-Allentown,PA",1825 Pope Road, Allentown,PA,18104 +-75.563347,40.589989,"DD [drivethru-no] [wifi-yes]-Allentown,PA",4793 W Tilghman St, Allentown,PA,18104 +-75.595957,40.648415,"DD [drivethru-no] [wifi-no]-Orefield,PA",3640 Route 309 [Hess], Orefield,PA,18069 +-75.273689,39.955246,"DD [drivethru-yes] [wifi-yes]-Upper Darby,PA",1500 Garrett Rd, Upper Darby,PA,19082 +-75.258263,39.953732,"DD [drivethru-no] [wifi-no]-Upper Darby,PA",6898 Marshall Rd, Upper Darby,PA,19082 +-75.595795,40.648136,"DD [drivethru-yes] [wifi-yes]-Orefield,PA",3626 Rt 309, Orefield,PA,18069 +-75.675194,39.864929,"DD [drivethru-no] [wifi-yes]-Kennett Square,PA",934 E Baltimore Pike, Kennett Square,PA,19348 +-75.6953,40.2478,"DD [drivethru-yes] [wifi-no]-Douglassville,PA",955 Ben Franklin Highway West, Douglassville,PA,19518 +-75.707367,40.828568,"DD [drivethru-no] [wifi-yes]-Lehighton,PA",92 Bridge St, Lehighton,PA,18235 +-75.926567,40.371826,"DD [drivethru-no] [wifi-yes]-Reading,PA",1905 N 5th St, Reading,PA,19605 +-75.87798,40.32641,"DD [drivethru-no] [wifi-no]-Reading,PA",2855 Perkiomen Avenue [Hess], Reading,PA,19606 +-75.624385,40.327522,"DD [drivethru-yes] [wifi-no]-Boyertown,PA",849 E Philadelphia Ave, Boyertown,PA,19512 +-75.55068,40.56757,"DD [drivethru-yes] [wifi-yes]-Allentown,PA",4777 Hamilton Boulevard, Allentown,PA,18103 +-75.626564,40.584721,"DD [drivethru-no] [wifi-yes]-Fogelsville,PA",241 Rt 100, Fogelsville,PA,18051 +-75.581062,40.555477,"DD [drivethru-yes] [wifi-yes]-Trexlertown,PA",6366 Hamilton Blvd, Trexlertown,PA,18087 +-75.620651,40.02879,"DD [drivethru-no] [wifi-yes]-Exton,PA",318 E Lincoln Hwy, Exton,PA,19341 +-75.62829,40.02825,"DD [drivethru-no] [wifi-yes]-Exton,PA",102 N Pottstown Pike, Exton,PA,19341 +-75.258202,39.957634,"DD [drivethru-no] [wifi-yes]-Upper Darby,PA",126 S 69th St, Upper Darby,PA,19082 +-75.846386,40.298958,"DD [drivethru-yes] [wifi-no]-Reading,PA",5401 Perkiomen Ave, Reading,PA,19606 +-75.393326,40.085533,"DD [drivethru-no] [wifi-no]-King Of Prussia,PA",160 N Gulph Rd, King of Prussia,PA,19406 +-75.35007,39.93896,"DD [drivethru-no] [wifi-yes]-Springfield,PA",819 W Sproul Road, Springfield,PA,19064 +-75.86277,40.155373,"DD [drivethru-yes] [wifi-yes]-Elverson,PA",800 Crossings Blvd, Elverson,PA,19520 +-75.386681,40.506886,"DD [drivethru-yes] [wifi-no]-Coopersburg,PA",318 S 3rd St, Coopersburg,PA,18036 +-75.32616,40.10869,"DD [drivethru-yes] [wifi-no]-Norristown,PA",939 East Main Street, Norristown,PA,19401 +-75.34684,40.11541,"DD [drivethru-no] [wifi-yes]-Norristown,PA",151 West Main Street, Norristown,PA,19401 +-75.33283,40.13419,"DD [drivethru-yes] [wifi-yes]-Norristown,PA",1882 Markley Street, Norristown,PA,19401 +-75.67841,40.03245,"DD/BR [drivethru-yes] [wifi-yes]-Downingtown,PA",376 W Uwchlan Avenue, Downingtown,PA,19335 +-75.775948,39.824791,"DD [drivethru-no] [wifi-yes]-Avondale,PA",81 Baltimore Pike, Avondale,PA,19311 +-75.462288,40.620258,"DD/BR [drivethru-yes] [wifi-yes]-Allentown,PA",1870 Catasauqua Rd, Allentown,PA,18102 +-75.228279,40.690231,"DD [drivethru-no] [wifi-yes]-Easton,PA",1300 Northampton St, Easton,PA,18042 +-75.270569,40.702621,"DD [drivethru-no] [wifi-no]-Easton,PA",3722 Easton Nazareth Rd [Walmart], Easton,PA,18045 +-75.20921,40.69151,"DD [drivethru-no] [wifi-yes]-Easton,PA",54 Centre Sq, Easton,PA,18042 +-75.211028,40.67719,"DD [drivethru-yes] [wifi-yes]-Easton,PA",700 Philadelphia Rd, Easton,PA,18042 +-75.392426,40.9244,"DD [drivethru-yes] [wifi-yes]-Brodheadsville,PA",118 Rt 209 [Regency Plaza Ste 15], Brodheadsville,PA,18322 +-75.882401,41.245399,"DD [drivethru-no] [wifi-yes]-Wilkes Barre,PA",41 Public Square, Wilkes Barre,PA,18701 +-75.666168,41.41328,"DD [drivethru-yes] [wifi-yes]-Scranton,PA",100 Mulberry St, Scranton,PA,18503 +-76.759411,41.21139,"DD [drivethru-yes] [wifi-yes]-Muncy,PA",1380 E Penn St, Muncy,PA,17756 +-76.545876,41.987118,"DD [drivethru-yes] [wifi-no]-Sayre,PA",949 North Elmira St, Sayre,PA,18840 +-75.7473,41.9643,"DD [drivethru-yes] [wifi-no]-Hallstead,PA",364 Hallstead Plaza [Route 11], Hallstead,PA,18822 +-75.579208,41.505428,"DD [drivethru-yes] [wifi-yes]-Eynon,PA",671 Scranton Carbondale Hwy, Eynon,PA,18403 +-75.549713,41.33197,"DD [drivethru-yes] [wifi-yes]-Daleville,PA",Rt 502 & 435 [Shop Rite Shopping Ctr], Daleville,PA,18444 +-75.360313,41.128407,"DD [drivethru-yes] [wifi-no]-Mount Pocono,PA",38 Sterling Ave, Mount Pocono,PA,18344 +-75.93616,41.53573,"DD [drivethru-yes] [wifi-yes]-Tunkhannock,PA",2 Lane Hill Road, Tunkhannock,PA,18657 +-75.880409,41.223495,"DD [drivethru-no] [wifi-yes]-Wilkes Barre,PA",495 Johnson St, Wilkes Barre,PA,18702 +-76.438746,41.004207,"DD [drivethru-yes] [wifi-yes]-Bloomsburg,PA",895 New Berwick Hwy, Bloomsburg,PA,17815 +-75.055695,41.358349,"DD [drivethru-yes] [wifi-yes]-Hawley,PA",604 Rt 739 at I-84, Hawley,PA,18428 +-76.23566,41.05376,"DD [drivethru-yes] [wifi-yes]-Berwick,PA",219 West Front Street, Berwick,PA,18603 +-77.45338,41.13473,"DD [drivethru-yes] [wifi-yes]-Lock Haven,PA",420 Bellefonte Avenue, Lock Haven,PA,17745 +-76.263716,41.666148,"DD [drivethru-no] [wifi-yes]-Wyalusing,PA",RR 1 Rt 6, Wyalusing,PA,18853 +-76.837418,40.833271,"DD [drivethru-yes] [wifi-yes]-Hummels Wharf,PA",Rt 15 & Monroe St, Hummels Wharf,PA,17831 +-77.29799,41.7506,"DD [drivethru-no] [wifi-yes]-Wellsboro,PA",7 Main Street, Wellsboro,PA,16901 +-75.94561,41.24036,"DD [drivethru-yes] [wifi-yes]-Plymouth,PA",22 W Main St, Plymouth,PA,18651 +-75.87252,41.2861,"DD/BR [drivethru-yes] [wifi-yes]-Kingston,PA",1318 Wyoming Avenue, Kingston,PA,18704 +-75.405388,41.404056,"DD [drivethru-no] [wifi-yes]-Hamlin,PA",569 Hamlin Hwy, Hamlim,PA,18427 +-75.462237,41.001685,"DD [drivethru-yes] [wifi-no]-Effort,PA",3198 PA Route 115, Effort,PA,18330 +-75.954628,41.331982,"DD [drivethru-yes] [wifi-yes]-Dallas,PA",3168 Memorial Hwy, Dallas,PA,18612 +-75.96742,40.7932,"DD [drivethru-no] [wifi-no]-Tamaqua,PA",307 Center Stree [Hess], Tamaqua,PA,18252 +-75.969084,40.796618,"DD [drivethru-yes] [wifi-no]-Tamaqua,PA",30 Center St, Tamaqua,PA,18252 +-75.98112,40.82319,"DD [drivethru-yes] [wifi-no]-Tamaqua,PA",9 Mahanoy Avenue, Tamaqua,PA,18252 +-75.797539,41.314747,"DD [drivethru-no] [wifi-no]-Pittston,PA",308 S Main St, Pittston,PA,18640 +-75.806473,41.325439,"DD [drivethru-no] [wifi-yes]-Pittston,PA",801 Wyoming Ave, Pittston,PA,18643 +-76.559341,40.791615,"DD [drivethru-yes] [wifi-yes]-Shamokin,PA",200 W Sunbury St, Shamokin,PA,17872 +-75.50578,41.04217,"DD [drivethru-yes] [wifi-yes]-Blakeslee,PA",57 Route 940, Blakeslee,PA,18610 +-75.304155,41.036377,"DD [drivethru-yes] [wifi-yes]-Tannersville,PA",28 Alger Ave, Tannersville,PA,18372 +-76.19073,40.6824,"DD [drivethru-yes] [wifi-yes]-Pottsville,PA",413 Claude A Lord Boulevard, Pottsville,PA,17901 +-76.2351,40.67301,"DD [drivethru-yes] [wifi-yes]-Pottsville,PA",3 Westwood Centre, Pottsville,PA,17901 +-75.695442,41.487835,"DD [drivethru-yes] [wifi-yes]-Clarks Summit,PA",927 S State St, Clarks Summit,PA,18411 +-76.892715,40.969868,"DD [drivethru-yes] [wifi-yes]-Lewisburg,PA",600 N Derr Dr, Lewisburg,PA,17837 +-74.72743,41.35281,"DD [drivethru-yes] [wifi-yes]-Milford,PA",141 Rt 209 [Corner of Rt 6/206 and Strand St], Milford,PA,18337 +-75.611229,41.468678,"DD [drivethru-yes] [wifi-yes]-Dickson City,PA",1510 Main St, Dickson City,PA,18519 +-75.642437,41.468582,"DD [drivethru-yes] [wifi-yes]-Scranton,PA",1251 Scranton Carbondale Hwy, Scranton,PA,18508 +-75.980011,40.979537,"DD [drivethru-yes] [wifi-yes]-Hazleton,PA",1190 N Church St [Rt 309], Hazleton,PA,18202 +-76.1935,40.7277,"DD [drivethru-yes] [wifi-yes]-Saint Clair,PA",400 Terry Rich Boulevard, Saint Clair,PA,17970 +-75.222895,40.987236,"DD [drivethru-yes] [wifi-yes]-Stroudsburg,PA",1163 N Nine St, Stroudsburg,PA,18360 +-75.262978,40.999415,"DD [drivethru-yes] [wifi-yes]-Bartonsville,PA",5 Rt 611, Bartonsville,PA,18321 +-75.149306,41.002954,"DD [drivethru-yes] [wifi-no]-East Stroudsburg,PA",5200 Seven Bridge Rd, East Stroudsburg,PA,18301 +-75.183789,41.005585,"DD/BR [drivethru-no] [wifi-yes]-East Stroudsburg,PA",246 N Courtland St, East Stroudsburg,PA,18301 +-75.197055,40.984405,"DD [drivethru-yes] [wifi-yes]-Stroudsburg,PA",823 Main Street, Stroudsburg,PA,18360 +-75.884245,41.16425,"DD [drivethru-yes] [wifi-no]-Mountain Top,PA",28 N Mountain Blvd, Mountain Top,PA,18707 +-75.168063,41.442009,"DD [drivethru-yes] [wifi-yes]-Hawley,PA",2527 Route 6, Hawley,PA,18428 +-75.647911,41.396168,"DD [drivethru-no] [wifi-yes]-Scranton,PA",1141 Moosic St, Scranton,PA,18505 +-76.39663,40.56085,"DD [drivethru-no] [wifi-no]-Pine Grove,PA",6 Tremont Road [Hess], Pine Grove,PA,17963 +-75.67422,41.3985,"DD [drivethru-yes] [wifi-yes]-Scranton,PA",1101 South Washington Avenue, Scranton,PA,18505 +-75.66447,41.43106,"DD [drivethru-yes] [wifi-yes]-Scranton,PA",1339 North Main Avenue, Scranton,PA,18508 +-75.716316,41.387047,"DD [drivethru-no] [wifi-no]-Taylor,PA",1325 S Main Ave [Walmart], Taylor,PA,18517 +-75.6245,41.42769,"DD [drivethru-no] [wifi-yes]-Dunmore,PA",702 North Blakely Street, Dunmore,PA,18512 +-75.70212,41.37291,"DD [drivethru-yes] [wifi-yes]-Moosic,PA",3525 Birney Avenue, Moosic,PA,18507 +-75.68981,41.37596,"DD [drivethru-yes] [wifi-yes]-Scranton,PA",742 Davis Street, Scranton,PA,18505 +-77.052414,41.239716,"DD [drivethru-yes] [wifi-yes]-Williamsport,PA",1975 W 4th St, Williamsport,PA,17701 +-76.993927,41.23378,"DD [drivethru-yes] [wifi-yes]-Williamsport,PA",30 E Southern Ave, Williamsport,PA,17702 +-76.963173,41.248482,"DD [drivethru-yes] [wifi-yes]-Williamsport,PA",1900 E 3rd St, Williamsport,PA,17701 +-74.80307,41.32165,"DD [drivethru-no] [wifi-yes]-Milford,PA",107 E Hartford St, Milford,PA,18337 +-76.783445,40.87592,"DD [drivethru-yes] [wifi-yes]-Sunbury,PA",1183 N 4th St, Sunbury,PA,17801 +-75.50183,41.57342,"DD [drivethru-yes] [wifi-yes]-Carbondale,PA",40 S Main Street, Carbondale,PA,18407 +-76.608635,40.961617,"DD [drivethru-yes] [wifi-yes]-Danville,PA",341 Walnut St, Danville,PA,17821 +-76.44919,41.78201,"DD [drivethru-no] [wifi-yes]-Towanda,PA",382 York Avenue, Towanda,PA,18848 +-75.2561,41.5729,"DD/BR [drivethru-yes] [wifi-yes]-Honesdale,PA",1181 Texas Palmyra Highway [Honesdale Mall], Honesdale,PA,18431 +-75.331481,41.097009,"DD [drivethru-yes] [wifi-no]-Swiftwater,PA",2055 Route 611, Swiftwater,PA,18370 +-75.107689,41.051018,"DD [drivethru-yes] [wifi-yes]-East Stroudsburg,PA",8 Liberty Square, East Stroudsburg,PA,18301 +-75.85493,41.24952,"DD [drivethru-yes] [wifi-yes]-Wilkes Barre,PA",532 Scott Street, Wilkes Barre,PA,18702 +-75.820989,41.258822,"DD [drivethru-no] [wifi-yes]-Wilkes Barre,PA",1146 Hwy 315 Blvd, Wilkes Barre,PA,18702 +-75.289864,40.166813,"DD [drivethru-yes] [wifi-no]-Blue Bell,PA",1399 Skippack Pike, Blue Bell,PA,19422 +-75.318873,40.145334,"DD [drivethru-no] [wifi-yes]-East Norriton,PA",100 W Germantown Pike, East Norriton,PA,19401 +-75.387392,40.044034,"DD [drivethru-no] [wifi-yes]-Wayne,PA",110 E Lancaster Ave, Wayne,PA,19087 +-75.43898,39.830769,"DD [drivethru-no] [wifi-yes]-Boothwyn,PA",2343 Chichester Ave, Boothwyn,PA,19061 +-75.36062,39.981571,"DD [drivethru-no] [wifi-no]-Broomall,PA",2590 W Chester Pike, Broomall,PA,19008 +-79.986617,40.392282,"DD [drivethru-yes] [wifi-yes]-Pittsburgh,PA",2150 Brownsville Rd, Pittsburgh,PA,15210 +-79.834998,40.35535,"DD [drivethru-yes] [wifi-yes]-McKeesport,PA",2525 5th Ave, McKeesport,PA,15132 +-79.843307,40.504673,"DD [drivethru-no] [wifi-yes]-Verona,PA",630 Allegheny River Blvd, Verona,PA,15147 +-79.80184,40.37748,"DD/BR [drivethru-yes] [wifi-yes]-North Versailles,PA",1121 Lincoln Highway, North Versailles,PA,15137 +-79.956352,40.442192,"DD [drivethru-no] [wifi-yes]-Pittsburgh,PA",3907 Forbes Ave, Pittsburgh,PA,15213 +-79.975283,40.336118,"DD [drivethru-yes] [wifi-yes]-Pleasant Hills,PA",360 Curry Hollow Rd, Pleasant Hills,PA,15236 +-80.035728,40.393818,"DD [drivethru-no] [wifi-yes]-Pittsburgh,PA",2961 W Liberty Ave, Pittsburgh,PA,15216 +-79.919807,40.438225,"DD [drivethru-no] [wifi-yes]-Pittsburgh,PA",5889 Forbes Ave, Pittsburgh,PA,15217 +-79.947832,40.511554,"DD [drivethru-yes] [wifi-yes]-Etna,PA",911 Butler St, Etna,PA,15223 +-80.220263,40.516188,"DD [drivethru-yes] [wifi-yes]-Coraopolis,PA",830 Beaver Grade Rd, Coraopolis,PA,15108 +-80.069269,40.438901,"DD [drivethru-yes] [wifi-yes]-Crafton,PA",45 Foster Ave, Crafton,PA,15205 +-79.924271,40.415035,"DD [drivethru-yes] [wifi-yes]-Pittsburgh,PA",4578 Browns Hill Rd, Pittsburgh,PA,15217 +-80.031621,40.51772,"DD [drivethru-yes] [wifi-yes]-Pittsburgh,PA",800 W View Park Dr, Pittsburgh,PA,15229 +-79.823463,40.459225,"DD [drivethru-yes] [wifi-yes]-Penn Hills,PA",344 Rodi Rd, Penn Hills,PA,15235 +-79.990761,40.438829,"DD [drivethru-no] [wifi-no]-Pittsburgh,PA",1001 5th Ave [Consol Energy Center], Pittsburgh,PA,15219 +-79.995924,40.440892,"DD [drivethru-no] [wifi-yes]-Pittsburgh,PA",601 Grant St, Pittsburgh,PA,15219 +-80.0024,40.44093,"DD [drivethru-no] [wifi-yes]-Pittsburgh,PA",28 Market Square, Pittsburgh,PA,15222 +-75.165021,40.00319,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",2145 W Allegheny Ave, Philadelphia,PA,19132 +-75.241495,39.87917,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",8000 Essington Ave [Philadelphia Airport Term D], Philadelphia,PA,19153 +-75.179527,40.032303,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",5753 Wayne Ave [Germantown Plaza], Philadelphia,PA,19144 +-74.94102,40.22752,"DD/BR [drivethru-no] [wifi-yes]-Newtown,PA",30 Richboro Newtown Road [Newtown Depot Shopping Center], Newtown,PA,18940 +-75.143901,39.932303,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",1100 S Columbus Blvd, Philadelphia,PA,19147 +-75.09811,40.22142,"DD [drivethru-no] [wifi-yes]-Warminster,PA",1055 York Road, Warminster,PA,18974 +-75.04479,40.17101,"DD [drivethru-no] [wifi-yes]-Southampton,PA",554 2nd Street Pike, Southampton,PA,18966 +-74.88368,40.13197,"DD [drivethru-yes] [wifi-yes]-Levittown,PA",4001 New Rodgers Road, Levittown,PA,19056 +-74.81778,40.1408,"DD [drivethru-yes] [wifi-yes]-Levittown,PA",8333 Bristol Pike, Levittown,PA,19057 +-75.008948,40.134505,"DD [drivethru-yes] [wifi-no]-Feasterville Trevose,PA",15 Bustleton Pike, Feasterville Trevose,PA,19053 +-75.067909,40.119719,"DD [drivethru-no] [wifi-yes]-Huntingdon Valley,PA",618 Welsh Rd, Huntingdon Valley,PA,19006 +-75.159095,39.948631,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1100 Walnut St, Philadelphia,PA,19107 +-75.119652,40.044331,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",6190 N Front St [Adams Run Shopping Center], Philadelphia,PA,19120 +-75.143822,40.039028,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1345 W Olney Ave, Philadelphia,PA,19141 +-75.13116,40.0335,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",5401 N 5th Street, Philadelphia,PA,19120 +-75.143829,39.961044,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",329 Spring Garden, Philadelphia,PA,19123 +-75.150887,39.950684,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",634 Market St, Philadelphia,PA,19106 +-75.155296,39.951474,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",901 Market St [Gallery Mall], Philadelphia,PA,19107 +-75.154549,39.9496,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",808 Chestnut St, Philadelphia,PA,19107 +-75.156776,40.097511,"DD/BR [drivethru-no] [wifi-yes]-Glenside,PA",230 S Easton Rd, Glenside,PA,19038 +-75.159607,40.077595,"DD [drivethru-yes] [wifi-yes]-Wyncote,PA",8250 Ogontz Ave, Wyncote,PA,19095 +-75.269592,39.979889,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",7520 City Line Ave, Philadelphia,PA,19151 +-75.226349,39.977558,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1501 N 52nd St, Philadelphia,PA,19131 +-74.9515,40.36436,"DD [drivethru-no] [wifi-yes]-New Hope,PA",1 N Main Street, New Hope,PA,18938 +-74.88721,40.2313,"DD [drivethru-no] [wifi-yes]-Yardley,PA",1050 Stonyhill Road, Yardley,PA,19067 +-75.01789,40.1302,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",13328 Philmont Avenue, Philadelphia,PA,19116 +-75.177345,40.015556,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",2901 Abbotsford Ave, Philadelphia,PA,19129 +-75.196159,40.009644,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",4268 Ridge Ave, Philadelphia,PA,19129 +-75.15873,40.04175,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",5301 Chew Avenue, Philadelphia,PA,19138 +-75.214043,40.109226,"DD [drivethru-yes] [wifi-yes]-Flourtown,PA",1821 Bethlehem Pike, Flourtown,PA,19031 +-75.22483,40.20979,"DD [drivethru-no] [wifi-yes]-Hatfield,PA",1250 Bethlehem Pike, Hatfield,PA,19454 +-75.220996,39.915213,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",6600 Essington Ave, Philadelphia,PA,19153 +-75.31228,40.31404,"DD/BR [drivethru-yes] [wifi-yes]-Souderton,PA",653 East Broad Street, Souderton,PA,18964 +-74.853889,40.11158,"DD [drivethru-yes] [wifi-yes]-Bristol,PA",5007 Bristol Pike, Bristol,PA,19007 +-74.881699,40.124584,"DD [drivethru-no] [wifi-no]-Bristol,PA",2919 Rt 413 [Hess], Bristol,PA,19007 +-75.15976,39.9692,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",839 N Broad St, Philadelphia,PA,19123 +-74.911469,40.093575,"DD [drivethru-no] [wifi-yes]-Croydon,PA",308 Bristol Pike, Croydon,PA,19021 +-75.11568,40.04952,"DD/BR [drivethru-no] [wifi-no]-Cheltenham,PA",81 Cheltenham Avenue, Cheltenham,PA,19012 +-75.135857,39.968948,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",917 W Girard Ave [#31], Philadelphia,PA,19123 +-75.15883,39.97881,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1420 Cecil B Moore Avenue, Philadelphia,PA,19121 +-74.902382,40.177559,"DD [drivethru-yes] [wifi-yes]-Langhorne,PA",1255 E Old Lincoln hwy, Langhorne,PA,19047 +-75.15044,39.91229,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",2805-2809 South Front Street, Philadelphia,PA,19148 +-74.876717,40.168125,"DD [drivethru-yes] [wifi-yes]-Levittown,PA",997 Woodbourne Rd, Levittown,PA,19057 +-74.916702,40.157829,"DD [drivethru-yes] [wifi-no]-Penndel,PA",200 Lincoln Hwy, Penndel,PA,19047 +-75.162392,39.952377,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1 E Penn Sq, Philadelphia,PA,19107 +-75.16673,39.95382,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1600 John F Kennedy Boulevard [4 Penn Ctr], Philadelphia,PA,19103 +-75.23164,39.9593,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",5506 Chestnut Street, Philadelphia,PA,19139 +-75.06816,40.06789,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",7970 Dungan Road, Philadelphia,PA,19111 +-75.056999,40.051342,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",7512 Bustleton Ave, Philadelphia,PA,19152 +-75.097183,40.026188,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",813 Adams Ave, Philadelphia,PA,19124 +-74.922585,40.13031,"DD [drivethru-no] [wifi-no]-Bensalem,PA",5716 Hulmeville Rd, Bensalem,PA,19020 +-74.94825,40.13896,"DD [drivethru-yes] [wifi-no]-Bensalem,PA",3610 Bristol Road, Bensalem,PA,19020 +-74.7985,40.209282,"DD [drivethru-no] [wifi-yes]-Morrisville,PA",395 W Trenton Ave, Morrisville,PA,19067 +-75.169243,39.938339,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1551 Washington Ave, Philadelphia,PA,19146 +-75.1633,39.94912,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1324 Walnut St, Philadelphia,PA,19107 +-75.24531,39.92386,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",7000 Chester Avenue, Philadelphia,PA,19142 +-75.10264,40.04402,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",5901 Rising Sun Avenue, Philadelphia,PA,19120 +-75.22937,39.92901,"DD/BR [drivethru-yes] [wifi-yes]-Philadelphia,PA",6110 Woodland Avenue, Philadelphia,PA,19142 +-75.083542,40.062141,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",7300 Rising Sun Ave, Philadelphia,PA,19111 +-75.085281,40.077377,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",8000 Pine Rd, Philadelphia,PA,19111 +-75.059509,40.047649,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",2327 Cottman Ave, Philadelphia,PA,19149 +-75.121574,40.155159,"DD [drivethru-yes] [wifi-yes]-Willow Grove,PA",1035 Easton Rd, Willow Grove,PA,19090 +-74.880093,40.17906,"DD [drivethru-no] [wifi-no]-Langhorne,PA",2300 E Lincoln Hwy, Langhorne,PA,19047 +-74.932016,40.174323,"DD [drivethru-no] [wifi-no]-Langhorne,PA",628 W Maple Ave, Langhorne,PA,19047 +-75.11007,40.03915,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",5680 Rising Sun Avenue, Philadelphia,PA,19120 +-75.02901,40.05773,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",2998 Welsh Road, Philadelphia,PA,19152 +-75.0327,40.091412,"DD/BR [drivethru-yes] [wifi-yes]-Philadelphia,PA",9834 Bustleton Ave, Philadelphia,PA,19115 +-75.103192,40.18949,"DD [drivethru-no] [wifi-no]-Hatboro,PA",598 N York Rd, Hatboro,PA,19040 +-75.014252,40.057159,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",3218 Willits Rd [Sunoco], Philadelphia,PA,19136 +-75.17408,40.019356,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",5051 Wissahickon Ave, Philadelphia,PA,19144 +-75.00695,40.06901,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",3320 Grant Avenue [Unit 18b Village Shire Shopping Center], Philadelphia,PA,19114 +-75.025558,40.076366,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",9490 Blue Grass Rd, Philadelphia,PA,19114 +-75.032738,40.076065,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",9173 Roosevelt Blvd, Philadelphia,PA,19114 +-75.098824,40.070187,"DD [drivethru-no] [wifi-yes]-Elkins Park,PA",2 Township Line Rd, Elkins Park,PA,19027 +-75.4203,40.30418,"DD [drivethru-yes] [wifi-yes]-Lansdale,PA",787 Sumneytown Pike, Lansdale,PA,19438 +-75.13573,40.1525,"DD [drivethru-yes] [wifi-yes]-Willow Grove,PA",3608 Welsh Road, Willow Grove,PA,19090 +-75.115784,40.131611,"DD [drivethru-yes] [wifi-yes]-Abington,PA",1701 Old York Rd, Abington,PA,19001 +-74.961926,40.121553,"DD [drivethru-yes] [wifi-yes]-Bensalem,PA",3401 Street Rd, Bensalem,PA,19020 +-75.167625,40.142315,"DD [drivethru-no] [wifi-no]-Dresher,PA",1713 Limekiln Pike, Dresher,PA,19025 +-75.243004,40.140488,"DD/BR [drivethru-no] [wifi-yes]-Ambler,PA",881 W Butler Pike, Ambler,PA,19002 +-75.216026,40.158585,"DD [drivethru-yes] [wifi-no]-Ambler,PA",371 E Butler Ave, Ambler,PA,19002 +-75.17904,40.17828,"DD [drivethru-no] [wifi-yes]-Horsham,PA",810 Welsh Road, Horsham,PA,19044 +-75.165771,39.951267,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1507 Chestnut St, Philadelphia,PA,19102 +-75.119545,39.977215,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",2530 Aramingo Ave, Philadelphia,PA,19125 +-75.11267,39.99569,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",1829 East Allegheny Avenue, Philadelphia,PA,19134 +-75.125595,39.972015,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",717 E Girard Ave, Philadelphia,PA,19125 +-74.97048,40.0857,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",4046 Woodhaven Road, Philadelphia,PA,19154 +-74.97602,40.09635,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",12375 Academy Rd [Parkwood Shopping Center], Philadelphia,PA,19154 +-74.98621,40.06299,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",9900 Frankford Avenue, Philadelphia,PA,19114 +-75.15201,39.95094,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",701 Market Street [Mellon Independence Ctr], Philadelphia,PA,19106 +-75.224838,40.210876,"DD [drivethru-no] [wifi-no]-Montgomeryville,PA",1109 Bethlehem Pike, Montgomeryville,PA,19446 +-75.1558,39.95142,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",938 Market St, Philadelphia,PA,19107 +-74.99396,40.0463,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",9240 State Road, Philadelphia,PA,19114 +-74.95147,40.20794,"DD [drivethru-no] [wifi-yes]-Holland,PA",1492 Buck Road [Village Shire Shopping Center], Holland,PA,18966 +-75.232094,39.998386,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",5100 City Ave, Philadelphia,PA,19131 +-75.17349,39.95206,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",2001 Chestnut Street, Philadelphia,PA,19103 +-75.13723,40.11725,"DD [drivethru-no] [wifi-yes]-Roslyn,PA",937 Easton Road, Roslyn,PA,19001 +-75.15874,39.95023,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1105 Chestnut Street, Philadelphia,PA,19107 +-75.165398,39.952564,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",2 Penn Center Plaza [Suburban Station], Philadelphia,PA,19102 +-75.165359,39.952511,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1500 Market St, Philadelphia,PA,19102 +-75.163261,39.962631,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1500 Spring Garden St, Philadelphia,PA,19130 +-75.153755,39.914463,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",330 W Oregon Ave [Whitman Plaza], Philadelphia,PA,19148 +-75.1695,39.92517,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",2025 S Broad Street, Philadelphia,PA,19148 +-75.166023,39.940483,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",809 S Broad St, Philadelphia,PA,19147 +-75.496719,40.398178,"DD/BR [drivethru-yes] [wifi-yes]-Pennsburg,PA",400 Main St, Pennsburg,PA,18073 +-75.35493,40.43802,"DD [drivethru-yes] [wifi-yes]-Quakertown,PA",120 South West End Boulevard, Quakertown,PA,18951 +-75.416412,40.435295,"DD [drivethru-yes] [wifi-yes]-Quakertown,PA",1918 John Fries Hwy, Quakertown,PA,18951 +-75.06929,40.034924,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",6401 Roosevelt Blvd, Philadelphia,PA,19149 +-75.077286,40.023178,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",5272 Frankford Ave [Frankford Transportation Center], Philadelphia,PA,19124 +-75.095749,40.005741,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",1820 Torresdale Ave, Philadelphia,PA,19124 +-75.06922,40.0135,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",5233 Torresdale Avenue #45, Philadelphia,PA,19124 +-75.099098,39.992134,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",3501 Aramingo Ave [Aramingo Plaza], Philadelphia,PA,19134 +-75.093422,39.997322,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",2300 E Butler St, Philadelphia,PA,19137 +-75.24535,39.96938,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",416 N 63rd Street # 36, Philadelphia,PA,19151 +-75.230934,40.044754,"DD/BR [drivethru-yes] [wifi-yes]-Philadelphia,PA",7104 Ridge Ave, Philadelphia,PA,19128 +-75.217155,40.035595,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",6191 Ridge Ave, Philadelphia,PA,19128 +-75.14415,40.36718,"DD [drivethru-no] [wifi-no]-Doylestown,PA",3611 N Easton Road, Doylestown,PA,18902 +-75.209091,40.026665,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",5643 Ridge Ave, Philadelphia,PA,19128 +-75.040527,40.087158,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1619 Grant Ave [Ste 5], Philadelphia,PA,19115 +-75.017647,40.119202,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",11725 Bustleton Ave, Philadelphia,PA,19106 +-75.0308,40.10358,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",842 Red Lion Rd, Philadelphia,PA,19115 +-75.015018,40.095681,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",10050 Roosevelt Blvd, Philadelphia,PA,19116 +-75.160873,39.93174,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1401 S 10th St, Philadelphia,PA,19147 +-75.14787,40.02457,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",4700 N Broad Street, Philadelphia,PA,19141 +-75.121628,40.026176,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",5001 Rising Sun Ave, Philadelphia,PA,19120 +-75.121136,40.2192,"DD [drivethru-yes] [wifi-yes]-Warminster,PA",1425 W Street Rd, Warminster,PA,18976 +-75.11713,40.14141,"DD [drivethru-yes] [wifi-yes]-Willow Grove,PA",2618 Easton Road, Willow Grove,PA,19090 +-75.09767,40.20548,"DD [drivethru-no] [wifi-yes]-Warminster,PA",590 W Street Road, Warminster,PA,18974 +-75.139435,40.204018,"DD [drivethru-yes] [wifi-yes]-Horsham,PA",1250 Easton Rd, Horsham,PA,19044 +-74.8316,40.19082,"DD [drivethru-yes] [wifi-yes]-Fairless Hills,PA",555 Lincoln Highway, Fairless Hills,PA,19030 +-75.143318,40.044678,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",6017 N Broad St, Philadelphia,PA,19141 +-75.141655,39.992168,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",532 W Lehigh Ave #46, Philadelphia,PA,19133 +-76.686211,40.288866,"DD [drivethru-no] [wifi-no]-Hershey,PA",100 West Hershey Park [Hershey Park-2 locations], Hershey,PA,17033 +-75.017,40.1392,"DD [drivethru-no] [wifi-yes]-Huntingdon Valley,PA",2112 County Line Road, Huntingdon Valley,PA,19006 +-74.97305,40.15358,"DD [drivethru-yes] [wifi-yes]-Trevose,PA",1866 Brownsville Road, Trevose,PA,19053 +-75.186058,39.922375,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",2308 W Passyunk Ave, Philadelphia,PA,19145 +-75.197983,39.938198,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",3313 Wharton St, Philadelphia,PA,19146 +-75.283371,40.241684,"DD [drivethru-no] [wifi-no]-Lansdale,PA",1739 N Broad St #45, Lansdale,PA,19446 +-75.229052,39.89501,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",8000 Essington Ave ste A21, Philadelphia,PA,19153 +-75.248976,39.87563,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",8000 Essington Ave [Philly Airport], Philadelphia,PA,19153 +-75.23782,39.90486,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",7601 Lindbergh Boulevard, Philadelphia,PA,19153 +-75.22973,40.26459,"DD [drivethru-no] [wifi-yes]-Lansdale,PA",549 Doylestown Road, Lansdale,PA,19446 +-75.011429,40.207935,"DD/BR [drivethru-no] [wifi-yes]-Richboro,PA",800 Bustleton Pike, Richboro,PA,18954 +-74.998795,40.148754,"DD [drivethru-no] [wifi-yes]-Lower Southampton,PA",110 E Street Rd, Lower Southampton,PA,19047 +-75.158508,39.951935,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",1113 Market St [Reading Headhouse Terminal], Philadelphia,PA,19107 +-75.087616,40.258369,"DD [drivethru-yes] [wifi-yes]-Jamison,PA",1625 Kendarbren Dr, Jamison,PA,18929 +-75.181107,40.161003,"DD [drivethru-no] [wifi-no]-Ambler,PA",1146 Limekiln Pike, Ambler,PA,19002 +-75.13992,40.22185,"DD [drivethru-yes] [wifi-yes]-Warrington,PA",334 Easton Road, Warrington,PA,18976 +-74.775772,40.208218,"DD [drivethru-no] [wifi-no]-Morrisville,PA",2 W Bridge St [Getty], Morrisville,PA,19067 +-75.010193,40.0508,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",8902 Frankford Ave, Philadelphia,PA,19136 +-75.036232,40.038631,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",7500 Frankford Ave, Philadelphia,PA,19136 +-75.05166,40.02156,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",6409 Torresdale Avenue Unit 13, Philadelphia,PA,19135 +-75.03606,40.02968,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",7221 Torresdale Avenue, Philadelphia,PA,19135 +-75.05463,40.03082,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",6608 Frankford Avenue, Philadelphia,PA,19135 +-75.13052,40.01446,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",221 West Hunting Park Avenue, Philadelphia,PA,19140 +-75.010508,40.215814,"DD [drivethru-no] [wifi-no]-Richboro,PA",1008 2nd Street Pike [Hess], Richboro,PA,18954 +-75.08728,40.19249,"DD [drivethru-no] [wifi-yes]-Warminster,PA",360 Jacksonville Road, Warminster,PA,18974 +-75.122589,40.006992,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",300 Erie Ave, Philadelphia,PA,19134 +-75.08532,40.033733,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",5801 Oxford Ave, Philadelphia,PA,19149 +-75.07852,40.03833,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",6323 Castor Avenue, Philadelphia,PA,19149 +-75.088264,40.045338,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",6391 Oxford Ave, Philadelphia,PA,19111 +-75.113848,40.012189,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",700 E Hunting Park Ave, Philadelphia,PA,19124 +-74.99441,40.08175,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",3200 Red Lion Road, Philadelphia,PA,19114 +-75.177757,39.918304,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",2654 S 18th St, Philadelphia,PA,19145 +-74.89048,40.172241,"DD [drivethru-no] [wifi-yes]-Langhorne,PA",1615 E Lincoln Hwy, Langhorne,PA,19047 +-74.833832,40.172359,"DD [drivethru-no] [wifi-yes]-Levittown,PA",8621 New Falls Rd, Levittown,PA,19054 +-75.05154,40.06489,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",8298 Bustleton Avenue, Philadelphia,PA,19152 +-75.378897,40.272327,"DD [drivethru-yes] [wifi-yes]-Harleysville,PA",345 Main St, Harleysville,PA,19438 +-75.2495,40.4009,"DD/BR [drivethru-no] [wifi-yes]-Perkasie,PA",230 Route 313, Perkasie,PA,18944 +-75.178377,40.06714,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",8113 Stenton Ave, Philadelphia,PA,19150 +-74.945763,40.094711,"DD [drivethru-yes] [wifi-yes]-Bensalem,PA",2901 Hulmville Rd, Bensalem,PA,19020 +-74.965576,40.071396,"DD [drivethru-yes] [wifi-yes]-Bensalem,PA",1301 Bristol Pike, Bensalem,PA,19020 +-74.976166,40.122173,"DD [drivethru-no] [wifi-yes]-Trevose,PA",2451 Lincoln Hwy, Trevose,PA,19053 +-75.143639,39.923805,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1850 S Columbus Blvd, Philadelphia,PA,19148 +-75.171837,40.081028,"DD/BR [drivethru-yes] [wifi-yes]-Philadelphia,PA",1630 Wadsworth Ave, Philadelphia,PA,19150 +-75.166908,39.95372,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",1600 John F Kennedy Boulevard [Suburban Station], Philadelphia,PA,19103 +-75.167191,39.950592,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",117 S 16th St, Philadelphia,PA,19102 +-75.129005,40.304089,"DD [drivethru-no] [wifi-yes]-Doylestown,PA",278 South Main St, Doylestown,PA,18901 +-75.15091,40.00941,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",3705 Germantown Avenue, Philadelphia,PA,19140 +-75.13569,40.01274,"DD [drivethru-yes] [wifi-yes]-Philadelphia,PA",4017-59 North 5 St, Philadelphia,PA,19132 +-75.15286,40.00186,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",3216 North Broad Street, Philadelphia,PA,19140 +-75.16568,40.05804,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",1325 East Washington Lane, Philadelphia,PA,19138 +-75.14137,40.05424,"DD [drivethru-yes] [wifi-no]-Philadelphia,PA",6620 N Broad Street, Philadelphia,PA,19126 +-75.19312,39.95293,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",3437 Walnut Street, Philadelphia,PA,19104 +-75.208275,39.958009,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",4301 Market St, Philadelphia,PA,19104 +-75.180176,39.954464,"DD [drivethru-no] [wifi-yes]-Philadelphia,PA",30th & Market St Station, Philadelphia,PA,19104 +-75.182404,39.954845,"DD [drivethru-no] [wifi-no]-Philadelphia,PA",2951 Market St [30th St Station], Philadelphia,PA,19104 +-71.5345,41.870396,"DD [drivethru-yes] [wifi-yes]-Smithfield,RI",471 Putnam Pike, Smithfield,RI,2917 +-71.533569,41.870125,"DD [drivethru-no] [wifi-no]-Greenville,RI",446 Putnam Pike [Stop & Shop], Greenville,RI,2828 +-71.516396,41.78875,"DD [drivethru-yes] [wifi-yes]-Johnston,RI",1999 Plainfield Pike, Johnston,RI,2919 +-71.458122,41.756657,"DD [drivethru-no] [wifi-yes]-Cranston,RI",189 Sockanosset Cross Rd, Cranston,RI,2920 +-71.444473,41.801994,"DD [drivethru-yes] [wifi-yes]-Cranston,RI",900 Cranston St, Cranston,RI,2920 +-71.44715,41.78281,"DD [drivethru-yes] [wifi-yes]-Cranston,RI",1111 Park Avenue, Cranston,RI,2910 +-71.472481,41.781784,"DD [drivethru-yes] [wifi-yes]-Cranston,RI",235 Atwood Ave, Cranston,RI,2920 +-71.477177,41.778733,"DD [drivethru-no] [wifi-no]-Cranston,RI",305 Phenix Ave [Hess], Cranston,RI,2920 +-71.460876,41.755863,"DD [drivethru-no] [wifi-no]-Cranston,RI",8 Chapel View Blvd, Cranston,RI,2920 +-71.424934,41.760635,"DD [drivethru-yes] [wifi-no]-Warwick,RI",1719 Elmwood Ave, Warwick,RI,2888 +-71.4163,41.75224,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",860 Post Road, Warwick,RI,2888 +-71.422653,41.749306,"DD [drivethru-yes] [wifi-no]-Warwick,RI",2128 Elmwood Ave, Warwick,RI,2888 +-71.43528,41.75262,"DD [drivethru-yes] [wifi-no]-Warwick,RI",27 Jefferson Boulevard, Warwick,RI,2888 +-71.55681,41.83334,"DD [drivethru-yes] [wifi-yes]-Johnston,RI",2738 Hartford Avenue, Johnston,RI,2919 +-71.46255,41.62888,"DD [drivethru-yes] [wifi-yes]-North Kingstown,RI",6166 Post Road, North Kingstown,RI,2852 +-71.5058,41.6626,"DD [drivethru-yes] [wifi-yes]-East Greenwich,RI",1239 Division Road, East Greenwich,RI,2818 +-71.45642,41.6092,"DD [drivethru-yes] [wifi-yes]-North Kingstown,RI",6923 Post Road, North Kingstown,RI,2852 +-71.454163,41.654709,"DD [drivethru-yes] [wifi-yes]-East Greenwich,RI",720 Main St, East Greenwich,RI,2818 +-71.492439,41.625469,"DD [drivethru-yes] [wifi-yes]-East Greenwich,RI",2611 S County Trail, East Greenwich,RI,2818 +-71.391063,41.766617,"DD [drivethru-no] [wifi-no]-Cranston,RI",2148 Broad St, Cranston,RI,2905 +-71.43442,41.80849,"DD [drivethru-yes] [wifi-no]-Providence,RI",552 Cranston Street, Providence,RI,2907 +-71.318008,41.510177,"DD [drivethru-yes] [wifi-yes]-Newport,RI",194 Connell Hwy, Newport,RI,2840 +-71.297539,41.525051,"DD [drivethru-yes] [wifi-yes]-Middletown,RI",811 W Main Rd, Middletown,RI,2842 +-71.28346,41.52172,"DD [drivethru-yes] [wifi-yes]-Middletown,RI",536 E Main Road, Middletown,RI,2842 +-71.307564,41.483372,"DD [drivethru-no] [wifi-yes]-Newport,RI",7 Memorial Blvd, Newport,RI,2840 +-71.30991,41.49339,"DD [drivethru-no] [wifi-yes]-Newport,RI",137 Broadway, Newport,RI,2840 +-71.31786,41.51058,"DD [drivethru-no] [wifi-no]-Newport,RI",199 Connell Highway [Walmart], Newport,RI,2840 +-71.295312,41.518149,"DD [drivethru-yes] [wifi-yes]-Middletown,RI",159 E Main Rd, Middletown,RI,2842 +-71.42131,41.814472,"DD [drivethru-yes] [wifi-yes]-Providence,RI",315 Broad St, Providence,RI,2907 +-71.389778,41.823082,"DD [drivethru-no] [wifi-yes]-Providence,RI",133 Gano St, Providence,RI,2906 +-71.400452,41.854053,"DD [drivethru-yes] [wifi-yes]-Providence,RI",1245 N Main St, Providence,RI,2904 +-71.402931,41.849869,"DD [drivethru-yes] [wifi-no]-North Providence,RI",1075 N Main St, North Providence,RI,2904 +-71.411196,41.824151,"DD [drivethru-no] [wifi-yes]-Providence,RI",141 West Minister St, Providence,RI,2903 +-71.507317,41.684772,"DD [drivethru-yes] [wifi-yes]-West Warwick,RI",275 Cowesett Ave, West Warwick,RI,2893 +-71.524269,41.696106,"DD [drivethru-yes] [wifi-yes]-West Warwick,RI",88 W Warwick Ave, West Warwick,RI,2893 +-71.543404,41.662476,"DD [drivethru-yes] [wifi-yes]-Coventry,RI",2276 New London Tpke [Coventry Crossing], Coventry,RI,2816 +-71.485954,41.718731,"DD [drivethru-no] [wifi-yes]-Warwick,RI",699 Bald Hill Rd, Warwick,RI,2886 +-71.566948,41.681232,"DD [drivethru-yes] [wifi-yes]-Coventry,RI",851 Tioque Ave, Coventry,RI,2816 +-71.505669,41.712379,"DD [drivethru-yes] [wifi-yes]-West Warwick,RI",283 Providence St, West Warwick,RI,2893 +-71.479752,41.726482,"DD [drivethru-no] [wifi-yes]-Warwick,RI",400 Bald Hill Rd, Warwick,RI,2886 +-71.56437,41.68168,"DD [drivethru-yes] [wifi-yes]-Coventry,RI",800 Tiogue Avenue, Coventry,RI,2816 +-71.49698,41.69674,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",1016 Centerville Road, Warwick,RI,2886 +-71.485123,41.389469,"DD [drivethru-no] [wifi-yes]-Narragansett,RI",855 Point Judith Rd, Narragansett,RI,2882 +-71.480484,41.442329,"DD [drivethru-yes] [wifi-yes]-Wakefield,RI",231 Old Tower Hill Rd, Wakefield,RI,2879 +-71.51112,41.4656,"DD [drivethru-no] [wifi-yes]-South Kingstown,RI",1892 Kingstown Road, South Kingstown,RI,2879 +-71.45689,41.49601,"DD [drivethru-no] [wifi-yes]-Saunderstown,RI",3045 Tower Hill Road, Saunderstown,RI,2874 +-71.437752,41.491211,"DD [drivethru-yes] [wifi-yes]-Narragansett,RI",1189 Boston Neck Rd, Narragansett,RI,2882 +-71.404816,41.76429,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",422 Warwick Ave, Warwick,RI,2888 +-71.5244,41.48528,"DD [drivethru-no] [wifi-yes]-Kingston,RI",120 Fortin Road, Kingston,RI,2881 +-71.62551,41.49301,"DD [drivethru-yes] [wifi-yes]-Richmond,RI",418 Kingstown Road, Richmond,RI,2892 +-71.48072,41.4273,"DD [drivethru-yes] [wifi-yes]-Narragansett,RI",94 Point Judith Road, Narragansett,RI,2882 +-71.458759,41.43152,"DD [drivethru-no] [wifi-yes]-Narragansett,RI",3 Pier Market Pl, Narragansett,RI,2882 +-71.44036,41.78184,"DD [drivethru-no] [wifi-yes]-Cranston,RI",630 Reservoir Avenue, Cranston,RI,2910 +-71.437134,41.774338,"DD [drivethru-no] [wifi-yes]-Cranston,RI",480 Pontiac Ave, Cranston,RI,2910 +-71.588051,42.005154,"DD [drivethru-yes] [wifi-yes]-North Smithfield,RI",941 Victory Hwy, North Smithfield,RI,2896 +-71.513223,41.979704,"DD [drivethru-no] [wifi-no]-North Smithfield,RI",120 Eddie Dowling Hwy [WalMart], North Smithfield,RI,2896 +-71.50891,42.00777,"DD [drivethru-yes] [wifi-yes]-Woonsocket,RI",240 Social Street, Woonsocket,RI,2895 +-71.487732,41.953579,"DD [drivethru-yes] [wifi-yes]-Lincoln,RI",1319 Eddie Dowling Hwy, Lincoln,RI,2865 +-71.480202,42.015686,"DD [drivethru-yes] [wifi-yes]-Woonsocket,RI",1431 Diamond Hill Rd, Woonsocket,RI,2895 +-71.498503,42.004548,"DD [drivethru-yes] [wifi-yes]-Woonsocket,RI",308 Cumberland St, Woonsocket,RI,2895 +-71.515549,41.985424,"DD [drivethru-yes] [wifi-yes]-Woonsocket,RI",1338 Park Ave, Woonsocket,RI,2895 +-71.43631,41.82451,"DD [drivethru-yes] [wifi-yes]-Providence,RI",579 Atwells Avenue Unit 3 Bldg E, Providence,RI,2909 +-71.46332,41.71577,"DD [drivethru-no] [wifi-no]-Warwick,RI",708 Greenwich Avenue, Warwick,RI,2886 +-71.438752,41.727203,"DD [drivethru-no] [wifi-no]-Warwick,RI",2003 Post Rd, Warwick,RI,2886 +-71.398514,41.71117,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",2456 Warwick Ave, Warwick,RI,2889 +-71.46024,41.6998,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",1346 Greenwich Avenue, Warwick,RI,2886 +-71.41923,41.70477,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",2677 W Shore Road, Warwick,RI,2889 +-71.40679,41.73277,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",1582 Warwick Avenue, Warwick,RI,2889 +-71.385925,41.702137,"DD [drivethru-no] [wifi-no]-Warwick,RI",1710 West Shore Rd, Warwick,RI,2889 +-71.43532,41.725671,"DD [drivethru-no] [wifi-no]-Warwick,RI",2000 Post Rd [TF Green Airport], Warwick,RI,2886 +-71.43511,41.73529,"DD [drivethru-yes] [wifi-yes]-Warwick,RI",1678 Post Road, Warwick,RI,2888 +-71.391136,41.873623,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",105 Cedar St, Pawtucket,RI,2860 +-71.413887,41.871086,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",750 Mineral Spring Ave, Pawtucket,RI,2860 +-71.36251,41.88006,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",337 Armistice Boulevard, Pawtucket,RI,2861 +-71.35448,41.86135,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",81 Newport Avenue, Pawtucket,RI,2861 +-71.37824,41.89021,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",109 East Street, Pawtucket,RI,2860 +-71.390198,41.88113,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",205 Dexter St, Pawtucket,RI,2860 +-71.449571,41.888863,"DD [drivethru-no] [wifi-yes]-Lincoln,RI",1600 Louisquisset Pike, Lincoln,RI,2865 +-71.44809,41.887469,"DD [drivethru-no] [wifi-no]-Lincoln,RI",1600b Louisquisset Pike [Unit 2 Twin Rivers], Lincoln,RI,2865 +-71.3998,41.91354,"DD [drivethru-yes] [wifi-yes]-Cumberland,RI",20 Ann And Hope Way, Cumberland,RI,2864 +-71.35406,41.89186,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",1414 Newport Avenue, Pawtucket,RI,2861 +-71.37633,41.88456,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",421 Broadway, Pawtucket,RI,2860 +-71.42877,41.86826,"DD [drivethru-no] [wifi-no]-North Providence,RI",1132 Mineral Spring Avenue, North Providence,RI,2904 +-71.36723,41.88652,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",372 Cottage Street, Pawtucket,RI,2861 +-71.37695,41.87372,"DD [drivethru-no] [wifi-yes]-Pawtucket,RI",192 Division Street, Pawtucket,RI,2860 +-71.34141,41.89059,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",1113 Central Avenue, Pawtucket,RI,2861 +-71.387321,41.886845,"DD [drivethru-yes] [wifi-no]-Central Falls,RI",542 Broad St, Central Falls,RI,2863 +-71.399948,41.880753,"DD [drivethru-yes] [wifi-yes]-Pawtucket,RI",465 Lonsdale Ave, Pawtucket,RI,2860 +-71.246445,41.609818,"DD [drivethru-yes] [wifi-yes]-Portsmouth,RI",3001 E Main Rd, Portsmouth,RI,2871 +-71.270844,41.577942,"DD [drivethru-yes] [wifi-yes]-Portsmouth,RI",1550 W Main Rd, Portsmouth,RI,2871 +-71.51757,41.996864,"DD [drivethru-yes] [wifi-yes]-Woonsocket,RI",711 Front St [Heritage Place], Woonsocket,RI,2895 +-71.469597,41.98214,"DD [drivethru-yes] [wifi-yes]-Cumberland,RI",3781 Mendon Rd, Cumberland,RI,2864 +-71.47906,41.98546,"DD [drivethru-yes] [wifi-no]-Cumberland,RI",4120 Mendon Road, Cumberland,RI,2864 +-71.670898,41.826229,"DD [drivethru-yes] [wifi-yes]-North Scituate,RI",1199 Chopmist Hill Rd, North Scituate,RI,2857 +-71.784202,41.425878,"DD [drivethru-yes] [wifi-yes]-Ashaway,RI",231 Main St, Ashaway,RI,2804 +-71.14653,41.62678,"DD [drivethru-yes] [wifi-yes]-Tiverton,RI",1735 Stafford Road, Tiverton,RI,2878 +-71.19095,41.6604,"DD [drivethru-yes] [wifi-yes]-Tiverton,RI",496 Main Road, Tiverton,RI,2878 +-71.453743,41.825035,"DD [drivethru-no] [wifi-no]-Providence,RI",422 Manton Ave [Hess], Providence,RI,2909 +-71.44421,41.81767,"DD [drivethru-yes] [wifi-yes]-Providence,RI",51 Manton Avenue, Providence,RI,2909 +-71.566556,41.690691,"DD [drivethru-yes] [wifi-yes]-Coventry,RI",24 Coventry Shoppers Park [Main St], Coventry,RI,2816 +-71.52359,41.71592,"DD [drivethru-yes] [wifi-yes]-West Warwick,RI",970 Main Street, West Warwick,RI,2893 +-71.66098,41.906624,"DD [drivethru-yes] [wifi-yes]-Chepachet,RI",1018 Putnam Pike, Chepachet,RI,2814 +-71.70253,41.955418,"DD [drivethru-yes] [wifi-yes]-Pascoag,RI",1 South Main St, Pascoag,RI,2859 +-71.642937,41.968227,"DD [drivethru-yes] [wifi-yes]-Burrillville,RI",1452 Broncos Hwy [Unit A-1], Burrillville,RI,2826 +-71.684937,41.510446,"DD [drivethru-yes] [wifi-yes]-Richmond,RI",26 Kingstown Rd, Richmond,RI,2898 +-71.4157,41.82129,"DD [drivethru-no] [wifi-yes]-Providence,RI",69 Empire Street, Providence,RI,2903 +-71.42882,41.85371,"DD [drivethru-yes] [wifi-yes]-Providence,RI",740 Branch Avenue, Providence,RI,2904 +-71.697608,41.514012,"DD [drivethru-no] [wifi-no]-Wyoming,RI",1214 Main St, Wyoming,RI,2898 +-71.444954,41.842686,"DD [drivethru-no] [wifi-yes]-Providence,RI",1009 Smith St, Providence,RI,2908 +-71.461159,41.812141,"DD [drivethru-yes] [wifi-yes]-Providence,RI",672 Plainfield St, Providence,RI,2909 +-71.42114,41.78889,"DD [drivethru-yes] [wifi-yes]-Providence,RI",860 Elmwood Avenue, Providence,RI,2907 +-71.41021,41.77199,"DD [drivethru-yes] [wifi-yes]-Cranston,RI",283 Park Avenue, Cranston,RI,2905 +-71.40697,41.804744,"DD [drivethru-yes] [wifi-yes]-Providence,RI",850 Eddy St, Providence,RI,2905 +-71.39711,41.79246,"DD [drivethru-yes] [wifi-yes]-Providence,RI",820 Allens Avenue, Providence,RI,2905 +-71.410751,41.823109,"DD [drivethru-no] [wifi-yes]-Providence,RI",78 Dorrance St, Providence,RI,2903 +-71.443878,41.832264,"DD [drivethru-no] [wifi-yes]-Providence,RI",1082 Chalkstone Ave #B, Providence,RI,2908 +-71.363342,41.783325,"DD [drivethru-yes] [wifi-yes]-East Providence,RI",3348 Pawtucket Ave, East Providence,RI,2771 +-71.364956,41.812501,"DD [drivethru-no] [wifi-yes]-East Providence,RI",481 Warren Ave, East Providence,RI,2914 +-71.370872,41.819572,"DD [drivethru-yes] [wifi-yes]-East Providence,RI",235 Taunton Ave, East Providence,RI,2914 +-71.359062,41.810989,"DD [drivethru-yes] [wifi-yes]-East Providence,RI",2371 Pawtucket Ave, East Providence,RI,2914 +-71.35435,41.85317,"DD [drivethru-yes] [wifi-yes]-Rumford,RI",223 Newport Avenue, Rumford,RI,2916 +-71.33334,41.78642,"DD [drivethru-no] [wifi-no]-East Providence,RI",900 Wampanoag Trail, East Providence,RI,2915 +-71.36165,41.83136,"DD [drivethru-yes] [wifi-yes]-Rumford,RI",399 N Broadway, Rumford,RI,2916 +-71.34741,41.76068,"DD [drivethru-no] [wifi-yes]-Riverside,RI",925 Willett Avenue, Riverside,RI,2915 +-71.36063,41.82127,"DD [drivethru-yes] [wifi-yes]-East Providence,RI",484 Taunton Avenue, East Providence,RI,2914 +-71.41956,41.84071,"DD [drivethru-yes] [wifi-yes]-North Providence,RI",50 Admiral Street, North Providence,RI,2908 +-71.651741,41.585842,"DD [drivethru-yes] [wifi-yes]-Exeter,RI",260 Nooseneck Hill Rd, Exeter,RI,2822 +-71.57301,41.64908,"DD [drivethru-yes] [wifi-yes]-West Greenwich,RI",111 Hopkins Hill Road, West Greenwich,RI,2817 +-71.604195,41.656979,"DD [drivethru-yes] [wifi-yes]-West Greenwich,RI",49 Nooseneck Hill Rd, West Greenwich,RI,2817 +-71.66703,41.613277,"DD [drivethru-yes] [wifi-yes]-West Greenwich,RI",780 Victory Hwy, West Greenwich,RI,2817 +-71.435847,41.727574,"DD [drivethru-no] [wifi-no]-Warwick,RI",2000 Post Rd [TF Green Airport], Warwick,RI,2888 +-71.47744,41.734535,"DD [drivethru-yes] [wifi-yes]-Cranston,RI",1288 Oaklawn Ave, Cranston,RI,2920 +-71.488564,41.714077,"DD [drivethru-yes] [wifi-no]-Warwick,RI",895 Bald Hill Rd, Warwick,RI,2886 +-71.390457,41.858673,"DD [drivethru-no] [wifi-yes]-Pawtucket,RI",727 East Ave, Pawtucket,RI,2860 +-71.624008,41.387848,"DD [drivethru-yes] [wifi-yes]-Charlestown,RI",3983 Old Post Rd, Charlestown,RI,2813 +-71.448105,41.86433,"DD [drivethru-yes] [wifi-no]-North Providence,RI",1588 Mineral Spring Ave, North Providence,RI,2904 +-71.444405,41.865334,"DD [drivethru-yes] [wifi-yes]-North Providence,RI",1484 Mineral Spring Ave, North Providence,RI,2904 +-71.464645,41.861145,"DD [drivethru-yes] [wifi-yes]-North Providence,RI",1871 Mineral Spring Ave, North Providence,RI,2904 +-71.472549,41.827248,"DD [drivethru-yes] [wifi-yes]-Johnston,RI",602 Killingly St, Johnston,RI,2919 +-71.512154,41.827198,"DD [drivethru-no] [wifi-no]-Johnston,RI",1680 Hartford Ave, Johnston,RI,2919 +-71.819478,41.368357,"DD [drivethru-yes] [wifi-yes]-Westerly,RI",164 Granite St, Westerly,RI,2891 +-71.518997,41.915604,"DD [drivethru-yes] [wifi-yes]-Smithfield,RI",970 Douglas Pike, Smithfield,RI,2917 +-71.472405,41.854564,"DD [drivethru-yes] [wifi-no]-North Providence,RI",1800 Smith St, North Providence,RI,2911 +-71.82001,41.36991,"DD [drivethru-yes] [wifi-yes]-Westerly,RI",139 Granite Street, Westerly,RI,2891 +-71.43459,41.94209,"DD [drivethru-yes] [wifi-yes]-Cumberland,RI",1700 Mendon Road, Cumberland,RI,2864 +-71.475868,41.934956,"DD [drivethru-yes] [wifi-yes]-Lincoln,RI",629 George Washington Hwy, Lincoln,RI,2865 +-71.40348,41.94454,"DD [drivethru-yes] [wifi-yes]-Cumberland,RI",2077 Diamond Hill Road, Cumberland,RI,2864 +-71.437492,41.854671,"DD [drivethru-no] [wifi-yes]-Providence,RI",1 Peter Pan Way Peter Pan Bus Station, Providence,RI,2904 +-71.76693,41.351814,"DD [drivethru-yes] [wifi-yes]-Westerly,RI",224 Post Rd, Westerly,RI,2891 +-71.500511,41.582756,"DD [drivethru-yes] [wifi-yes]-North Kingstown,RI",1241 Ten Rod Rd, North Kingstown,RI,2852 +-71.424886,41.526036,"DD [drivethru-no] [wifi-no]-Saunderstown,RI",1820 Boston Neck Rd [Hess], Saunderstown,RI,2874 +-71.500954,41.78994,"DD [drivethru-no] [wifi-no]-Johnston,RI",1789 Plainfield Pike [Hess], Johnston,RI,2919 +-71.42189,41.82325,"DD [drivethru-no] [wifi-yes]-Providence,RI",119 Atwells Avenue, Providence,RI,2903 +-71.49865,41.823372,"DD [drivethru-yes] [wifi-yes]-Johnston,RI",1491 Atwood Ave, Johnston,RI,2919 +-71.419594,41.832977,"DD [drivethru-yes] [wifi-yes]-Providence,RI",251 Smith St, Providence,RI,2908 +-71.417933,41.823315,"DD [drivethru-no] [wifi-no]-Providence,RI",One Lasalle Square [Dunkin' Donuts Center], Providence,RI,2903 +-71.427193,41.829697,"DD [drivethru-yes] [wifi-yes]-Providence,RI",14 Pleasant Valley Pkwy, Providence,RI,2908 +-71.41081,41.85783,"DD [drivethru-no] [wifi-no]-Providence,RI",440 Smithfield Avenue, Providence,RI,2904 +-71.39426,41.78845,"DD [drivethru-no] [wifi-yes]-Providence,RI",81 Washington, Providence,RI,2903 +-71.41702,41.81987,"DD [drivethru-no] [wifi-no]-Providence,RI",5515 Providence Place Mall, Providence,RI,2903 +-71.55026,41.52821,"DD [drivethru-yes] [wifi-yes]-Exeter,RI",561b S County Trail, Exeter,RI,2822 +-71.27863,41.69273,"DD [drivethru-no] [wifi-yes]-Bristol,RI",8 Gooding Avenue, Bristol,RI,2809 +-71.276794,41.670643,"DD [drivethru-no] [wifi-yes]-Bristol,RI",467 Hope St, Bristol,RI,2809 +-71.260567,41.681431,"DD [drivethru-yes] [wifi-yes]-Bristol,RI",416 Metacom Ave, Bristol,RI,2809 +-71.2828,41.73154,"DD [drivethru-yes] [wifi-yes]-Warren,RI",375 Main Street, Warren,RI,2885 +-71.307167,41.739063,"DD [drivethru-no] [wifi-yes]-Barrington,RI",258 County Rd, Barrington,RI,2806 +-71.2686,41.71819,"DD [drivethru-yes] [wifi-yes]-Warren,RI",621 Metacom Avenue, Warren,RI,2885 +-71.267517,41.713837,"DD [drivethru-yes] [wifi-yes]-Warren,RI",670 Metacom Ave, Warren,RI,2885 +-71.49023,41.86061,"DD [drivethru-yes] [wifi-yes]-Johnston,RI",39A Putnam Pike, Johnston,RI,2919 +-71.50723,41.86852,"DD [drivethru-no] [wifi-no]-Smithfield,RI",263 Putnam Pike [Hess], Smithfield,RI,2917 +-71.525101,41.870384,"DD [drivethru-yes] [wifi-yes]-Smithfield,RI",385 Putnam Pike, Smithfield,RI,2917 +-71.476402,41.881073,"DD [drivethru-yes] [wifi-yes]-Smithfield,RI",151 Douglas Pike Unit 10, Smithfield,RI,2917 +-71.418691,41.784677,"DD [drivethru-no] [wifi-no]-Providence,RI",1000 Elmwood Ave [Roger Williams Zoo], Providence,RI,2907 +-80.036357,33.01803,"DD [drivethru-no] [wifi-no]-Goose Creek,SC",509 Goose Creek Blvd [Hess], Goose Creek,SC,29445 +-75.224099,40.02679,"DD [drivethru-no] [wifi-no]-Prosperity,SC",2221 SC Hwy 773 [WilcoHess], Prosperity,SC,19127 +-81.078343,33.998242,"DD [drivethru-no] [wifi-no]-West Columbia,SC",1208 Sunset Blvd [Hess], West Columbia,SC,29169 +-80.566353,33.270081,"DD [drivethru-no] [wifi-no]-Saint George,SC",9587 Charleston Hwy [Travel Plaza], Saint George,SC,29477 +-82.257706,34.705284,"DD [drivethru-no] [wifi-yes]-Simpsonville,SC",697 Fairview Rd, Simpsonville,SC,29680 +-81.450876,35.167557,"DD [drivethru-no] [wifi-no]-Blacksburg,SC",2768 E Cherokee St [WilcoHess], Blacksburg,SC,29702 +-82.25479,34.94344,"DD [drivethru-yes] [wifi-yes]-Greer,SC",1129 W Wade Hampton Boulevard, Greer,SC,29650 +-82.563499,34.826191,"DD [drivethru-yes] [wifi-yes]-Easley,SC",5308 Calhoun Memorial Highway, Easley,SC,29640 +-82.42636,34.98039,"DD [drivethru-yes] [wifi-no]-Travelers Rest,SC",520 N Highway 25, Travelers Rest,SC,29690 +-82.835777,34.691078,"DD [drivethru-no] [wifi-yes]-Clemson,SC",1068 Tiger Blvd, Clemson,SC,29631 +-82.761261,34.708504,"DD [drivethru-no] [wifi-yes]-Central,SC",1286 Eighteen Mile Rd, Central,SC,29630 +-82.103706,34.910297,"DD [drivethru-yes] [wifi-yes]-Duncan,SC",1520 E Main St, Duncan,SC,29334 +-82.2616,34.861,"DD [drivethru-yes] [wifi-yes]-Greenville,SC",101 The Parkway, Greenville,SC,29615 +-82.39151,34.886593,"DD [drivethru-yes] [wifi-yes]-Greenville,SC",2903 N Pleasantburg Dr, Greenville,SC,29609 +-82.27,34.81965,"DD [drivethru-yes] [wifi-yes]-Greenville,SC",1779 Woodruff Road, Greenville,SC,29607 +-82.34698,34.89129,"DD [drivethru-yes] [wifi-yes]-Greenville,SC",2423 Wade Hampton Boulevard, Greenville,SC,29615 +-82.36012,34.84197,"DD [drivethru-yes] [wifi-yes]-Greenville,SC",1551 Laurens Road, Greenville,SC,29607 +-82.309685,34.778505,"DD [drivethru-yes] [wifi-yes]-Mauldin,SC",101 S Main St, Mauldin,SC,29662 +-82.630257,34.538822,"DD [drivethru-no] [wifi-yes]-Anderson,SC",1807 E Greenville St [Hwy 81], Anderson,SC,29621 +-82.66425,34.53272,"DD [drivethru-yes] [wifi-no]-Anderson,SC",2933 N Main Street, Anderson,SC,29621 +-79.864273,32.79401,"DD [drivethru-yes] [wifi-yes]-Mount Pleasant,SC",840 Coleman Blvd, Mount Pleasant,SC,29464 +-78.891876,33.684311,"DD/BR [drivethru-yes] [wifi-yes]-Myrtle Beach,SC",301 South Kings Hwy, Myrtle Beach,SC,29577 +-80.14215,33.0395,"DD [drivethru-no] [wifi-no]-Summerville,SC",1518 N Main Street [Hess], Summerville,SC,29483 +-80.23844,33.0558,"DD [drivethru-no] [wifi-no]-Summerville,SC",2908 W 5th North Street [Hess], Summerville,SC,29483 +-79.84632,32.8167,"DD [drivethru-yes] [wifi-yes]-Mount Pleasant,SC",1522 N Highway 17, Mount Pleasant,SC,29464 +-80.154697,32.962588,"DD [drivethru-no] [wifi-no]-Ladson,SC",4306 Ladson Rd [Hess], Ladson,SC,29456 +-80.169882,32.971525,"DD [drivethru-no] [wifi-no]-Summerville,SC",1401 Old Trolley Rd [Hess], Summerville,SC,29485 +-80.086173,33.016158,"DD [drivethru-no] [wifi-no]-Goose Creek,SC",971A Crowfield Blvd [Hess], Goose Creek,SC,29445 +-80.066338,32.976227,"DD [drivethru-yes] [wifi-yes]-North Charleston,SC",9155 University Blvd, North Charleston,SC,29406 +-80.053571,32.933132,"DD [drivethru-no] [wifi-no]-North Charleston,SC",2685 Ashley Phosphate Rd [Hess], North Charleston,SC,29418 +-80.060824,32.974864,"DD [drivethru-no] [wifi-no]-North Charleston,SC",8976 University Blvd [Hess], North Charleston,SC,29420 +-80.054161,33.022514,"DD [drivethru-no] [wifi-no]-Goose Creek,SC",429 St James Ave [Hess], Goose Creek,SC,29445 +-80.098865,32.987971,"DD [drivethru-no] [wifi-no]-Ladson,SC",3208 Ladson Rd [Hess], Ladson,SC,29456 +-81.055507,32.312395,"DD [drivethru-yes] [wifi-no]-Hardeeville,SC",524 Independence Blvd, Hardeeville,SC,29927 +-80.02265,32.78848,"DD [drivethru-yes] [wifi-no]-Charleston,SC",1843 Savannah Highway, Charleston,SC,29407 +-80.035683,32.883877,"DD [drivethru-no] [wifi-no]-Charleston,SC",5500 International Blvd [Ste 101], Charleston,SC,29418 +-80.041121,32.791692,"DD [drivethru-no] [wifi-no]-Charleston,SC",2245 Savannah Hwy [Hess], Charleston,SC,29414 +-80.05188,32.86644,"DD [drivethru-no] [wifi-no]-North Charleston,SC",5777 Dorchester Road [Hess], North Charleston,SC,29418 +-78.882849,34.063455,"DD [drivethru-no] [wifi-no]-Loris,SC",5370 Broad St [WilcoHess], Loris,SC,29569 +-79.535589,34.344778,"DD [drivethru-no] [wifi-no]-Latta,SC",1504 Hwy 38 W [WilcoHess], Latta,SC,29565 +-80.70927,32.216101,"DD [drivethru-yes] [wifi-no]-Hilton Head Island,SC",4 Southwood Park Dr, Hilton Head Island,SC,29926 +-79.809678,34.191123,"DD [drivethru-yes] [wifi-yes]-Florence,SC",2123 W Evans St, Florence,SC,29501 +-79.59259,34.200733,"DD [drivethru-yes] [wifi-no]-Florence,SC",6515 E Palmetto St [The Markette Store Ste 20], Florence,SC,29506 +-78.863152,33.709953,"DD [drivethru-no] [wifi-yes]-Myrtle Beach,SC",3001 North Kings Hwy [Ste 6], Myrtle Beach,SC,29577 +-79.931496,32.781631,"DD [drivethru-no] [wifi-yes]-Charleston,SC",200 Meeting St, Charleston,SC,29401 +-80.0461,33.00962,"DD [drivethru-yes] [wifi-yes]-Goose Creek,SC",216 Saint James Avenue, Goose Creek,SC,29445 +-80.11069,32.80294,"DD [drivethru-no] [wifi-no]-Charleston,SC",3622 Savannah Highway [Hess], Charleston,SC,29455 +-80.025406,32.796767,"DD [drivethru-no] [wifi-no]-Charleston,SC",1602 Hwy 7 [Hess], Charleston,SC,29407 +-80.03787,32.74384,"DD [drivethru-no] [wifi-no]-Johns Island,SC",2790 Maybank Highway [Hess], Johns Island,SC,29455 +-80.076772,32.927891,"DD [drivethru-no] [wifi-no]-North Charleston,SC",3490 Ashley Phosphate Rd [Hess], North Charleston,SC,29418 +-80.07061,32.891464,"DD [drivethru-yes] [wifi-yes]-North Charleston,SC",7013 A Dorchester Rd, North Charleston,SC,29418 +-80.68643,32.92736,"DD [drivethru-yes] [wifi-yes]-Walterboro,SC",1457 Bells Hwy, Walterboro,SC,29488 +-78.7921,33.77886,"DD [drivethru-no] [wifi-yes]-Myrtle Beach,SC",9700 North Kings Hwy [Lake Arrowhead], Myrtle Beach,SC,29572 +-78.81892,33.74678,"DD/BR [drivethru-no] [wifi-yes]-Myrtle Beach,SC",7600 North Kings Hwy, Myrtle Beach,SC,29572 +-78.681931,33.826675,"DD [drivethru-yes] [wifi-yes]-North Myrtle Beach,SC",118 Highway 17 S [Sundial Center], North Myrtle Beach,SC,29582 +-79.96836,32.74257,"DD [drivethru-yes] [wifi-yes]-Charleston,SC",754 Folly Road, Charleston,SC,29412 +-80.70637,32.44038,"DD [drivethru-yes] [wifi-yes]-Beaufort,SC",2427 Boundary St, Beaufort,SC,29906 +-79.030273,33.57185,"DD/BR [drivethru-yes] [wifi-yes]-Murrells Inlet,SC",2901 S Hwy 17, Murrells Inlet,SC,29576 +-80.01886,32.875458,"DD [drivethru-yes] [wifi-yes]-North Charleston,SC",4930 Center Pointe Dr [Bldg D Ste 105], North Charleston,SC,29418 +-78.64614,33.86383,"DD/BR [drivethru-yes] [wifi-yes]-Little River,SC",593 Highway 90 East, Little River,SC,29566 +-78.93811,33.744209,"DD/BR [drivethru-yes] [wifi-yes]-Myrtle Beach,SC",4883 A Hwy 501, Myrtle Beach,SC,29579 +-78.973747,33.619572,"DD/BR [drivethru-yes] [wifi-yes]-Surfside Beach,SC",8709 US Hwy 17, Surfside Beach,SC,29575 +-80.118866,32.921116,"DD [drivethru-no] [wifi-no]-North Charleston,SC",8620 Dorchester Rd [Hess], North Charleston,SC,29420 +-81.024994,34.975903,"DD/BR [drivethru-yes] [wifi-no]-Rock Hill,SC",2677 Celanese Rd, Rock Hill,SC,29732 +-81.117429,33.978644,"DD [drivethru-no] [wifi-no]-West Columbia,SC",3006 Augusta Rd [Hess], West Columbia,SC,29170 +-80.39775,33.960114,"DD [drivethru-yes] [wifi-no]-Sumter,SC",2567 Broad St, Sumter,SC,29150 +-80.9921,35.06,"DD/BR [drivethru-yes] [wifi-yes]-Fort Mill,SC",5009 Lake Vista Drive, Fort Mill,SC,29708 +-81.08723,34.03159,"DD/BR [drivethru-no] [wifi-no]-Columbia,SC",1525 Broad River Road, Columbia,SC,29210 +-81.076581,33.98647,"DD [drivethru-no] [wifi-no]-West Columbia,SC",1400 Augusta Rd [Hess], West Columbia,SC,29169 +-80.96819,34.019,"DD [drivethru-yes] [wifi-no]-Columbia,SC",4727 Forest Drive, Columbia,SC,29206 +-80.34639,33.92886,"DD [drivethru-no] [wifi-no]-Sumter,SC",101 Broad St [Hess], Sumter,SC,29150 +-81.12363,34.04503,"DD [drivethru-no] [wifi-no]-Columbia,SC",637 Saint Andrews Road [Hess], Columbia,SC,29210 +-80.97975,34.214183,"DD [drivethru-yes] [wifi-no]-Blythewood,SC",235 Blythewood Rd, Blythewood,SC,29016 +-80.92121,34.09713,"DD [drivethru-yes] [wifi-no]-Columbia,SC",9311 Two Notch Road, Columbia,SC,29223 +-80.856898,34.096827,"DD [drivethru-yes] [wifi-yes]-Columbia,SC",1011 Wildewood Centre Dr, Columbia,SC,29229 +-81.15821,34.07288,"DD [drivethru-no] [wifi-no]-Columbia,SC",271 Harbison Boulevard [Hess], Columbia,SC,29212 +-80.487257,33.980601,"DD [drivethru-no] [wifi-no]-Sumter,SC",370 Rhodes Ave [Bldg 1403], Sumter,SC,29152 +-81.842108,33.602565,"DD [drivethru-no] [wifi-no]-Graniteville,SC",574 Bettis Academy Rd [Hess], Graniteville,SC,29829 +-81.767029,33.563866,"DD [drivethru-yes] [wifi-yes]-Aiken,SC",3526 Richland Ave W, Aiken,SC,29801 +-81.719582,33.523271,"DD/BR [drivethru-yes] [wifi-yes]-Aiken,SC",1909B Whiskey Rd, Aiken,SC,29803 +-81.001101,34.507322,"DD [drivethru-no] [wifi-no]-Winnsboro,SC",10959 State Hwy 200 [WilcoHess], Winnsboro,SC,19180 +-80.283856,34.190749,"DD [drivethru-no] [wifi-no]-Bishopville,SC",1340 Sumter Hwy [WilcoHess], Bishopville,SC,29010 +-81.234139,33.95029,"DD [drivethru-yes] [wifi-no]-Lexington,SC",1123 S Lake Dr, Lexington,SC,29073 +-80.95813,34.89394,"DD/BR [drivethru-yes] [wifi-no]-Rock Hill,SC",1932 Springsteen Road, Rock Hill,SC,29730 +-81.041954,34.03194,"DD [drivethru-no] [wifi-no]-Columbia,SC",3514 Main St [Hess], Columbia,SC,29203 +-80.878747,33.632437,"DD [drivethru-no] [wifi-no]-St Matthews,SC",1300 Burke Rd [WilcoHess], St Matthews,SC,29135 +-79.199402,33.98954,"DD [drivethru-no] [wifi-no]-Aynor,SC",2949 Hwy 501 E [WilcoHess], Aynor,SC,29511 +-79.019791,33.764618,"DD [drivethru-no] [wifi-no]-Conway,SC",1931 Hwy 544 [Hess], Conway,SC,29526 +-79.087097,33.843239,"DD [drivethru-no] [wifi-no]-Conway,SC",2208 Hwy 378 [Hess], Conway,SC,29527 +-79.056091,33.858494,"DD [drivethru-no] [wifi-no]-Conway,SC",2301 Main St [WilcoHess], Conway,SC,29526 +-78.618942,33.874607,"DD [drivethru-no] [wifi-no]-Little River,SC",1444 Hwy 17 [WilcoHess], Little River,SC,29566 +-78.675903,33.873295,"DD [drivethru-no] [wifi-no]-Little River,SC",3297 Hwy 9 E [WilcoHess], Little River,SC,29566 +-78.811348,33.854965,"DD [drivethru-no] [wifi-no]-Longs,SC",6869 Hwy 90 [WilcoHess], Longs,SC,29568 +-79.027229,33.588226,"DD [drivethru-no] [wifi-no]-Murrells Inlet,SC",4326 Hwy 17 Bypass [Hess], Murrells Inlet,SC,29576 +-79.006065,33.67334,"DD [drivethru-no] [wifi-no]-Myrtle Beach,SC",6222 Hwy 707 [WilcoHess], Myrtle Beach,SC,29588 +-86.342496,36.220762,"DD [drivethru-yes] [wifi-yes]-Lebanon,TN",1645 W Main St, Lebanon,TN,37087 +-86.780864,36.166399,"DD [drivethru-no] [wifi-yes]-Nashville,TN",400 Charlotte Ave [Music City Central Transit Hub], Nashville,TN,37219 +-86.57254,36.21899,"DD/BR [drivethru-yes] [wifi-yes]-Old Hickory,TN",14835 Lebanon Rd [Coolview Commons], Old Hickory,TN,37138 +-85.826658,35.232621,"DD [drivethru-no] [wifi-no]-Monteagle,TN",640 Dixie Lee Ave [WilcoHess], Monteagle,TN,37356 +-87.321483,36.62523,"DD [drivethru-yes] [wifi-yes]-Clarksville,TN",1761 Tiny Town Rd [Ste A], Clarksville,TN,37042 +-87.06601,35.605522,"DD [drivethru-yes] [wifi-no]-Columbia,TN",1245 Trotwood Ave, Columbia,TN,38401 +-87.408928,36.578491,"DD [drivethru-yes] [wifi-yes]-Clarksville,TN",1645 Fort Campbell Blvd, Clarksville,TN,37042 +-89.890513,35.110279,"DD/BR [drivethru-yes] [wifi-yes]-Memphis,TN",5150 Poplar Ave, Memphis,TN,38117 +-89.760582,35.068718,"DD [drivethru-yes] [wifi-yes]-Germantown,TN",9077 Poplar Ave Ste 106, Germantown,TN,38138 +-89.83651,35.171051,"DD [drivethru-yes] [wifi-yes]-Memphis,TN",1674 Whitten Rd Suite 108, Memphis,TN,38134 +-90.010169,35.136201,"DD [drivethru-yes] [wifi-yes]-Memphis,TN",1540 Union Ave, Memphis,TN,38104 +-89.76329,35.2045,"DD [drivethru-yes] [wifi-yes]-Lakeland,TN",8984 US Highway 64, Lakeland,TN,38002 +-84.274521,35.825661,"DD [drivethru-yes] [wifi-no]-Lenior City,TN",1021 Highway 321 N, Lenior City,TN,37771 +-84.064117,35.863514,"DD [drivethru-yes] [wifi-yes]-Knoxville,TN",9411 Northshore Dr, Knoxville,TN,37922 +-84.09377,35.92394,"DD [drivethru-yes] [wifi-yes]-Knoxville,TN",423 N Cedar Bluff Rd, Knoxville,TN,37923 +-83.338368,36.108974,"DD [drivethru-no] [wifi-no]-White Pine,TN",3663 Roy Messer Hwy [WilcoHess], White Pine,TN,37890 +-84.17519,35.8964,"DD [drivethru-no] [wifi-yes]-Knoxville,TN",715 Campbell Station Rd [Units 101 & 102], Knoxville,TN,37934 +-84.235336,35.873344,"DD [drivethru-no] [wifi-no]-Knoxville,TN",615 N Watt Rd, Knoxville,TN,37934 +-83.606704,35.978459,"DD [drivethru-yes] [wifi-no]-Kodak,TN",3422 Winfield Dunn Pkwy, Kodak,TN,37764 +-83.578044,35.816611,"DD [drivethru-no] [wifi-yes]-Pigeon Forge,TN",2209 Parkway, Pigeon Forge,TN,37863 +-83.518354,35.711367,"DD [drivethru-no] [wifi-yes]-Gatlinburg,TN",812 Parkway [Ste 106], Gatlinburg,TN,37738 +-83.568938,35.872475,"DD [drivethru-yes] [wifi-no]-Sevierville,TN",330 Winfield Dunn Pkwy, Sevierville,TN,37876 +-83.834037,35.906535,"DD [drivethru-yes] [wifi-no]-Knoxville,TN",7618 Chapman Hwy, Knoxville,TN,37920 +-83.996415,35.730937,"DD [drivethru-yes] [wifi-yes]-Maryville,TN",1810 W Broadway Ave, Maryville,TN,37801 +-84.026306,35.93084,"DD [drivethru-no] [wifi-yes]-Knoxville,TN",7114 Kingston Pike, Knoxville,TN,37919 +-86.800571,36.139072,"DD [drivethru-no] [wifi-yes]-Nashville,TN",1500 21st Ave S [Ste 1510], Nashville,TN,37212 +-86.615379,36.190514,"DD/BR [drivethru-yes] [wifi-yes]-Hermitage,TN",5205 Old Hickory Blvd [Suite110], Hermitage,TN,37076 +-86.697662,36.329849,"DD/BR [drivethru-yes] [wifi-yes]-Goodlettsville,TN",430 Long Hollow Pike [Suite A], Goodlettsville,TN,37072 +-87.1741,36.02677,"DD [drivethru-yes] [wifi-yes]-Fairview,TN",1425 North Hwy 96, Fairview,TN,37062 +-86.897839,35.929838,"DD [drivethru-yes] [wifi-no]-Franklin,TN",1441 New Hwy 96 West, Franklin,TN,37064 +-86.80188,35.95915,"DD/BR [drivethru-yes] [wifi-no]-Franklin,TN",9100A Carothers Pkwy [Suite 101], Franklin,TN,37067 +-87.03684,36.39411,"DD [drivethru-yes] [wifi-yes]-Pleasant View,TN",2601 Highway 49 East, Pleasant View,TN,37146 +-86.66162,36.04539,"DD [drivethru-no] [wifi-no]-Antioch,TN",5272 Cane Ridge Rd, Antioch,TN,37013 +-85.94783,36.178322,"DD [drivethru-no] [wifi-no]-Gordonsville,TN",502 Gordonsville Hwy [Hess], Gordonsville,TN,38563 +-86.959534,36.059059,"DD [drivethru-yes] [wifi-yes]-Nashville,TN",7201 Highway 70 S, Nashville,TN,37221 +-86.493172,35.973171,"DD/BR [drivethru-yes] [wifi-no]-Smyrna,TN",806 Nissan Dr, Smyrna,TN,37167 +-87.378113,36.073048,"DD [drivethru-yes] [wifi-no]-Dickson,TN",105 Mathis Dr, Dickson,TN,37055 +-86.881912,36.507526,"DD [drivethru-yes] [wifi-yes]-Springfield,TN",1001 Memorial Blvd, Springfield,TN,37172 +-87.339006,36.022046,"DD [drivethru-yes] [wifi-no]-Dickson,TN",2331 Hwy 46 S, Dickson,TN,37055 +-86.699662,36.136855,"DD [drivethru-yes] [wifi-yes]-Nashville,TN",847 Briley Pkwy, Nashville,TN,37217 +-86.694733,36.086914,"DD [drivethru-yes] [wifi-yes]-Nashville,TN",326 Harding Pl, Nashville,TN,37211 +-86.916676,35.76976,"DD/BR [drivethru-yes] [wifi-no]-Spring Hill,TN",2098 Wall St, Spring Hill,TN,37374 +-86.74413,36.14407,"DD [drivethru-no] [wifi-yes]-Nashville,TN",601 Fesslers Ln, Nashville,TN,37210 +-86.498451,36.35976,"DD [drivethru-yes] [wifi-yes]-Gallatin,TN",1545 Nashville Pike [Suite 101], Gallatin,TN,37066 +-82.330967,36.308264,"DD [drivethru-yes] [wifi-no]-Johnson City,TN",607 Twin Oaks Dr [Shell], Johnson City,TN,37601 +-83.264328,36.221703,"DD [drivethru-yes] [wifi-yes]-Morristown,TN",2531 E Morris Blvd, Morristown,TN,37813 +-85.243207,35.128648,"DD [drivethru-yes] [wifi-yes]-Hixson,TN",5311 Hwy 153, Hixson,TN,37343 +-85.157139,35.011879,"DD [drivethru-no] [wifi-no]-Chattanooga,TN",7647 E Brainerd Rd, Chattanooga,TN,37421 +-82.3903,36.3337,"DD [drivethru-yes] [wifi-yes]-Johnson City,TN",900 Sunset Dr, Johnson City,TN,37604 +-84.645082,35.464067,"DD [drivethru-yes] [wifi-yes]-Athens,TN",2632 Decatur Pike, Athens,TN,37303 +-82.552035,36.55962,"DD [drivethru-yes] [wifi-yes]-Kingsport,TN",120 East Stone Dr, Kingsport,TN,37660 +-82.76942,36.18326,"DD [drivethru-yes] [wifi-yes]-Greeneville,TN",3130 E Andrew Johnson Hwy, Greeneville,TN,37745 +-97.089419,32.7505,"DD [drivethru-no] [wifi-no]-Arlington,TX",1 Legends Way [Dallas Cowboy Stadium], Arlington,TX,76011 +-97.037326,32.890776,"DD [drivethru-no] [wifi-no]-Dallas,TX",300 Terminal Road T-D 23 [DFW Airport], Dallas,TX,75261 +-97.037326,32.8932,"DD [drivethru-no] [wifi-no]-Dallas,TX",500 Terminal Rd [DFW Airport], Dallas,TX,75261 +-106.414116,31.785063,"DD [drivethru-yes] [wifi-no]-El Paso,TX",6045 Montana Ave [ste 100], El Paso,TX,79925 +-96.77034,33.026985,"DD/BR [drivethru-yes] [wifi-yes]-Plano,TX",2001 Coit Rd [Suite 321], Plano,TX,75075 +-97.07795,33.073837,"DD [drivethru-no] [wifi-yes]-Highland Village,TX",3060 FM 407 Suite A [Walmart], Highland Village,TX,75077 +-96.64282,32.86103,"DD [drivethru-no] [wifi-yes]-Garland,TX",803 W Centerville Rd, Garland,TX,75041 +-96.812752,33.08382,"DD [drivethru-yes] [wifi-yes]-Plano,TX",7317 Parkwood Road Suite 193, Plano,TX,75024 +-96.037007,32.904629,"DD [drivethru-no] [wifi-no]-Dallas,TX",100 Terminal Rd [Term A], Dallas,TX,75261 +-96.038304,32.897461,"DD [drivethru-no] [wifi-no]-Dallas,TX",200 Terminal Rd [DFW Intl Airport], Dallas,TX,75261 +-96.666163,33.167678,"DD [drivethru-yes] [wifi-yes]-McKinney,TX",3201 W Eldorado Pkwy, McKinney,TX,75070 +-96.916237,33.020866,"DD/BR [drivethru-yes] [wifi-yes]-Carrollton,TX",1008 W Hebron Pkwy, Carrollton,TX,75010 +-96.848663,33.025646,"DD [drivethru-yes] [wifi-yes]-Carrollton,TX",3216 E Hebron Pkwy, Carrollton,TX,75010 +-96.9446,32.597831,"DD/BR [drivethru-yes] [wifi-yes]-Cedar Hill,TX",650 Uptown Blvd, Cedar Hill,TX,75104 +-96.803795,32.932091,"DD/BR [drivethru-yes] [wifi-yes]-Dallas,TX",13535 Preston Rd, Dallas,TX,75240 +-98.511039,33.972115,"DD [drivethru-no] [wifi-no]-Sheppard AFB,TX",Sheppard Air Force Base [Bldg 450], Sheppard AFB,TX,76311 +-106.260464,31.792453,"DD [drivethru-yes] [wifi-no]-El Paso,TX",12379 Edgemere Blvd [Ste 101], El Paso,TX,79936 +-106.427656,31.870455,"DD [drivethru-no] [wifi-no]-El Paso,TX",9114 Dyer St, El Paso,TX,79924 +-106.302934,31.727191,"DD [drivethru-yes] [wifi-yes]-El Paso,TX",1355 George Dieter Dr [Bldg B], El Paso,TX,79936 +-106.3446,31.75356,"DD [drivethru-yes] [wifi-no]-El Paso,TX",1105 N Yarbrough Dr, El Paso,TX,79925 +-106.559409,31.859524,"DD [drivethru-yes] [wifi-yes]-El Paso,TX",655 E Redd Rd [ste 101], El Paso,TX,79912 +-106.437679,31.81255,"DD [drivethru-yes] [wifi-no]-Fort Bliss,TX",1310 Cassidy Rd [Bldg 1310], Fort Bliss,TX,79916 +-95.336201,29.986263,"DD [drivethru-no] [wifi-no]-Houston,TX",3950 S Terminal Rd [Bush Intl Airport], Houston,TX,77032 +-95.4109116,29.7449112,"DD [drivethru-yes] [wifi-yes]-Houston,TX",2330 S Shepherd Dr, Houston,TX,77019 +-97.14792,32.892245,"DD/BR [drivethru-yes] [wifi-yes]-Colleyville,TX",5695 Colleyville Blvd, Colleyville,TX,76034 +-97.186378,32.844837,"DD [drivethru-yes] [wifi-yes]-Hurst,TX",1661 Precinct Line Rd, Hurst,TX,76054 +-97.185086,32.938073,"DD [drivethru-yes] [wifi-yes]-Southlake,TX",2255 W Southlake Blvd, Southlake,TX,76092 +-97.484718,32.761822,"DD/BR [drivethru-yes] [wifi-yes]-Fort Worth,TX",9629 White Settlement Rd, Fort Worth,TX,76108 +-101.744297,35.192389,"DD [drivethru-no] [wifi-no]-Amarillo,TX",8500 I-40 E [Petro TC], Amarillo,TX,79118 +-95.20544,29.69084,"DD [drivethru-no] [wifi-yes]-Pasadena,TX",631 Southmore Avenue, Pasadena,TX,77502 +-95.47448,29.70592,"DD [drivethru-no] [wifi-yes]-Bellaire,TX",5406 Bellaire Blvd, Bellaire,TX,77401 +-95.275316,29.657815,"DD/BR [drivethru-no] [wifi-no]-Houston,TX",7800 Airport Blvd [Houston Hobby Airport], Houston,TX,77061 +-95.565275,29.736752,"DD [drivethru-yes] [wifi-no]-Houston,TX",10705 Westheimer Rd, Houston,TX,77042 +-97.655014,30.522959,"DD [drivethru-yes] [wifi-yes]-Round Rock,TX",1500 S AW Grimes Blvd [Turtle Creek Market Bldg 4], Round Rock,TX,78664 +-97.8297806,30.4805851,"DD [drivethru-yes] [wifi-yes]-Cedar Park,TX",1851 S Lakeline Blvd, Cedar Park,TX,78613 +-97.753876,30.425955,"DD [drivethru-yes] [wifi-yes]-Austin,TX",12200 Research Blvd, Austin,TX,78759 +-96.749969,33.073296,"DD [drivethru-yes] [wifi-no]-Plano,TX",7212 Independence Pkwy Suite B, Plano,TX,75025 +-94.14444,30.11801,"DD [drivethru-yes] [wifi-yes]-Beaumont,TX",4370 E Lucas Drive, Beaumont,TX,77708 +-94.12973,30.089809,"DD [drivethru-yes] [wifi-yes]-Beaumont,TX",920 N 11th St, Beaumont,TX,77702 +-96.84977,32.843935,"DD [drivethru-no] [wifi-no]-Dallas,TX",8008 Cedar Springs Rd, Dallas,TX,75235 +-99.3064651,31.4349117,"DD [drivethru-yes] [wifi-yes]-Bossier City,TX",1701 Jimmie Davis Hwy, Bossier City,TX,71112 +-95.1802146,29.6505533,"DD/BR [drivethru-yes] [wifi-yes]-Pasadena,TX",4130 Fairmint Pkwy, Pasadena,TX,77504 +-95.64339,29.88784,"DD/BR [drivethru-yes] [wifi-yes]-Houston,TX",7510 Highway 6 North, Houston,TX,77095 +-95.44131,30.01759,"DD [drivethru-no] [wifi-no]-Houston,TX",814 Fm 1960 Road West, Houston,TX,77090 +-95.1650528,29.9802773,"DD [drivethru-yes] [wifi-yes]-Humble,TX",18315 W Lake Houston Pkwy, Humble,TX,77346 +-97.054156,32.076541,"DD [drivethru-no] [wifi-no]-Hillsboro,TX",101 Cornelius Rd S [Petro Travel Center], Hillsboro,TX,76645 +-96.866089,33.152977,"DD [drivethru-yes] [wifi-yes]-Frisco,TX",2875 Main St, Frisco,TX,75034 +-96.849,32.8429,"DD [drivethru-no] [wifi-no]-Dallas,TX",8008 Cedar Springs Rd [Dallas Love Field Airport], Dallas,TX,75235 +-98.472664,29.527201,"DD [drivethru-no] [wifi-no]-San Antonio,TX",9800 Airport Blvd [Suite 174 Terminal 1], San Antonio,TX,78216 +-98.629013,29.408171,"DD [drivethru-yes] [wifi-yes]-San Antonio,TX",7000 W Military Dr, San Antonio,TX,78227 +-98.3892593,29.5107155,"DD/BR [drivethru-yes] [wifi-yes]-Windcrest,TX",5105 Walzem Rd, Windcrest,TX,78218 +-98.710911,29.49653,"DD [drivethru-yes] [wifi-no]-San Antonio,TX",11026 Culebra Rd, San Antonio,TX,78253 +-98.40583,29.552841,"DD [drivethru-yes] [wifi-yes]-Nacogdoches,TX",12311 Nacogdoches Rd, San Antonio,TX,78217 +-111.88507,40.790976,"DD [drivethru-yes] [wifi-no]-Salt Lake City,UT",217 E 400 S, Salt Lake City,UT,84111 +-111.848206,40.726143,"DD [drivethru-yes] [wifi-yes]-Salt Lake City,UT",1479 E 2100 S, Salt Lake City,UT,84105 +-111.979515,40.652668,"DD [drivethru-yes] [wifi-yes]-Taylorsville,UT",3705 W 5400 S, Taylorsville,UT,84129 +-111.878461,40.884318,"DD [drivethru-yes] [wifi-yes]-Bountiful,UT",95 E 500 S,Bountiful,UT,84010 +-111.8845367,40.6128769,"DD [drivethru-yes] [wifi-yes]-Midvale,UT",7219 S Grandeur View Way, Midvale,UT,84047 +-112.024865,40.710825,"DD [drivethru-yes] [wifi-no]-West Valley City,UT",5567 W High Market Dr, West Valley City,UT,84120 +-111.93995,41.15959,"DD [drivethru-yes] [wifi-no]-South Ogden,UT",5693 Harrison Blvd, South Ogden,UT,84403 +-111.98066,40.542759,"DD [drivethru-yes] [wifi-yes]-South Jordan,UT",11429 South District Main Dr [Ste 100],South Jordan,UT,84095 +-79.937668,36.747669,"DD [drivethru-no] [wifi-no]-Bassett,VA",5740 Virginia Ave [WilcoHess], Bassett,VA,24055 +-77.155357,38.765474,"DD [drivethru-no] [wifi-yes]-Alexandria,VA",7001 Manchester Blvd Ste G, Alexandria,VA,22310 +-77.319287,37.184325,"DD [drivethru-no] [wifi-no]-Disputanta,VA",4610 County Dr [Wilco Hess], Disputanta,VA,23842 +-77.399742,37.651497,"DD [drivethru-yes] [wifi-yes]-Mechanicsville,VA",9225 Atlee Rd [Ste 5201], Mechanicsville,VA,23116 +-77.44827,37.35505,"DD [drivethru-no] [wifi-yes]-Chester,VA",4417 W Hundred Rd, Chester,VA,23831 +-76.510445,37.238049,"DD [drivethru-no] [wifi-no]-Gloucester Point,VA",1569 George Washington Mem Hwy [Hess], Gloucester Point,VA,23061 +-76.526321,37.41396,"DD [drivethru-no] [wifi-no]-Gloucester,VA",6692 George Washington Mem Hwy [WilcoHess], Gloucester,VA,23061 +-77.66047,37.40578,"DD/BR [drivethru-yes] [wifi-yes]-Midlothian,VA",13847 Hull Street Rd, Midlothian,VA,23112 +-77.61124,37.50238,"DD [drivethru-yes] [wifi-yes]-Richmond,VA",11556 Busy St [Courthouse Place], Richmond,VA,23236 +-77.734566,36.941422,"DD [drivethru-no] [wifi-no]-Warfield,VA",12461 Old Stage Rd [Davis Travel Center], Warfield,VA,23889 +-77.325732,37.260924,"DD/BR [drivethru-yes] [wifi-yes]-Hopewell,VA",5113 Oaklawn Blvd, Hopewell,VA,23860 +-77.616152,37.651746,"DD [drivethru-yes] [wifi-no]-Richmond,VA",4050 Spring Oak Dr, Richmond,VA,23233 +-77.497879,37.615479,"DD/BR [drivethru-no] [wifi-yes]-Richmond,VA",7300 Staples Mill Rd, Richmond,VA,23228 +-77.486039,37.556153,"DD/BR [drivethru-no] [wifi-yes]-Richmond,VA",11 S Nansemond St, Richmond,VA,23221 +-76.1356,36.8551,"DD [drivethru-yes] [wifi-yes]-Virginia Beach,VA",627 Independence Blvd, Virginia Beach,VA,23462 +-76.638804,36.722349,"DD [drivethru-no] [wifi-no]-Suffolk,VA",1555 Holland Rd [WilcoHess], Suffolk,VA,23434 +-76.461128,37.154346,"DD/BR [drivethru-yes] [wifi-no]-Grafton,VA",5026 George Washington Mem Hwy, Grafton,VA,23692 +-76.475191,37.17316,"DD [drivethru-yes] [wifi-yes]-Yorktown,VA",6605 George Washington Mem Hwy, Yorktown,VA,23692 +-76.44577,37.021744,"DD [drivethru-no] [wifi-no]-Newport News,VA",6104 Jefferson Ave [WilcoHess], Newport News,VA,23605 +-76.519386,37.137383,"DD [drivethru-yes] [wifi-yes]-Newport News,VA",12753 Jefferson Avenue, Newport News,VA,23602 +-76.410446,36.865154,"DD [drivethru-yes] [wifi-yes]-Chesapeake,VA",3277 Western Branch Blvd, Chesapeake,VA,23321 +-76.455757,37.10899,"DD [drivethru-no] [wifi-no]-Yorktown,VA",1724 George Washington Mem Hwy [Hess], Yorktown,VA,23693 +-76.493179,37.070019,"DD [drivethru-yes] [wifi-yes]-Newport News,VA",12425 Warwick Blvd, Newport News,VA,23606 +-76.476295,37.076813,"DD [drivethru-no] [wifi-no]-Newport News,VA",11702 Jefferson Ave [WilcoHess], Newport News,VA,23606 +-76.466168,37.060146,"DD [drivethru-yes] [wifi-no]-Newport News,VA",11202 Jefferson Ave, Newport News,VA,23601 +-76.219856,36.915333,"DD [drivethru-no] [wifi-yes]-Norfolk,VA",2300 E Little Creek Rd, Norfolk,VA,23518 +-76.75304,37.338714,"DD [drivethru-yes] [wifi-no]-Williamsburg,VA",6384 Richmond Rd, Williamsburg,VA,23188 +-76.32579,36.79765,"DD [drivethru-yes] [wifi-yes]-Portsmouth,VA",4701 George Washington Hwy, Portsmouth,VA,23702 +-76.279167,36.713402,"DD/BR [drivethru-yes] [wifi-yes]-Chesapeake,VA",1100 Cedar Rd, Chesapeake,VA,23322 +-76.610472,36.686691,"DD [drivethru-no] [wifi-no]-Suffolk,VA",1129 Carolina Rd [WilcoHess], Suffolk,VA,23434 +-76.039047,36.874378,"DD [drivethru-yes] [wifi-no]-Virginia Beach,VA",2196 First Colonial Rd [Unit #133], Virginia Beach,VA,23454 +-76.20631,36.81281,"DD [drivethru-yes] [wifi-yes]-Virginia Beach,VA",6119 Indian River Rd, Virginia Beach,VA,23464 +-76.09536,36.834315,"DD [drivethru-no] [wifi-no]-Virginia Beach,VA",197 S Rosemont Rd [WilcoHess], Virginia Beach,VA,23452 +-76.073097,36.911179,"DD [drivethru-yes] [wifi-yes]-Virginia Beach,VA",2928 Shore Dr, Virginia Beach,VA,23451 +-76.059204,36.75502,"DD [drivethru-no] [wifi-no]-Virginia Beach,VA",4873 Haygood Rd [WilcoHess], Virginia Beach,VA,23455 +-76.179918,36.838295,"DD [drivethru-yes] [wifi-yes]-Virginia Beach,VA",5600 Princess Anne Rd, Virginia Beach,VA,23462 +-76.302338,36.88065,"DD [drivethru-yes] [wifi-no]-Norfolk,VA",3901 Hampton Blvd, Norfolk,VA,23508 +-76.384496,36.804334,"DD [drivethru-no] [wifi-no]-Portsmouth,VA",3601 Airline Blvd [WilcoHess], Portsmouth,VA,23701 +-76.241913,36.737671,"DD [drivethru-no] [wifi-no]-Chesapeake,VA",600 Battlefield Blvd N, Chesapeake,VA,23320 +-76.71981,37.284744,"DD [drivethru-yes] [wifi-yes]-Williamsburg,VA",1347 Richmond Rd, Williamsburg,VA,23185 +-76.130462,36.800709,"DD [drivethru-no] [wifi-no]-Virginia Beach,VA",4404 Princess Anne Rd [WilcoHess], Virginia Beach,VA,23462 +-76.109795,36.816471,"DD/BR [drivethru-yes] [wifi-yes]-Virginia Beach,VA",3900 Holland Rd, Virginia Beach,VA,23452 +-76.251808,36.768063,"DD/BR [drivethru-no] [wifi-yes]-Chesapeake,VA",1435 Battlefield Blvd N, Chesapeake,VA,23320 +-76.42441,36.821151,"DD [drivethru-yes] [wifi-no]-Chesapeake,VA",4444 Portsmouth Blvd, Chesapeake,VA,23321 +-76.134422,36.806961,"DD [drivethru-yes] [wifi-yes]-Virginia Beach,VA",4540 Princess Anne Rd, Virginia Beach,VA,23462 +-76.399927,37.039022,"DD [drivethru-no] [wifi-no]-Hampton,VA",2129 W Mercury Blvd, Hampton,VA,23666 +-76.273292,36.818513,"DD [drivethru-yes] [wifi-no]-Chesapeake,VA",1336 Poindexter St, Chesapeake,VA,23324 +-76.728172,37.348994,"DD [drivethru-no] [wifi-no]-Williamsburg,VA",549 E Rochanbeau Dr [Great Wolf Lodge], Williamsburg,VA,23188 +-76.682259,37.273083,"DD [drivethru-no] [wifi-no]-Williamsburg,VA",395 Second St [Hess], Williamsburg,VA,23185 +-77.173104,38.880016,"DD [drivethru-no] [wifi-yes]-Falls Church,VA",101 E Annandale Rd, Falls Church,VA,22046 +-77.05628,38.86056,"DD [drivethru-no] [wifi-yes]-Arlington,VA",1413 S Fern [Ste 6], Arlington,VA,22202 +-77.36233,38.937224,"DD [drivethru-no] [wifi-no]-Reston,VA",2280 Hunters Woods Plz, Reston,VA,20191 +-77.12621,38.85158,"DD/BR [drivethru-yes] [wifi-yes]-Falls Church,VA",5701 Columbia Pike, Falls Church,VA,22041 +-77.453735,38.835312,"DD [drivethru-no] [wifi-yes]-Centreville,VA",14631 Lee Hwy, Centreville,VA,20121 +-77.1436,38.695217,"DD [drivethru-yes] [wifi-no]-Fort Belvoir,VA",5985 13th St, Fort Belvoir,VA,22060 +-77.152588,38.721272,"DD [drivethru-no] [wifi-no]-Fort Belvoir,VA",6095 Gorgas Rd [Bldg 2304], Fort Belvoir,VA,22060 +-77.058517,38.775272,"DD/BR [drivethru-no] [wifi-yes]-Alexandria,VA",1500 Belle View Blvd, Alexandria,VA,22307 +-77.564011,39.115326,"DD/BR [drivethru-no] [wifi-yes]-Leesburg,VA",521 J E Market St, Leesburg,VA,20176 +-77.292466,38.843915,"DD [drivethru-no] [wifi-yes]-Fairfax,VA",10020 Main St, Fairfax,VA,22031 +-77.650063,38.785604,"DD [drivethru-no] [wifi-yes]-Gainesville,VA",7901 Stonewall Shops Sq, Gainesville,VA,20155 +-77.082481,38.807453,"DD [drivethru-no] [wifi-yes]-Alexandria,VA",3050 Duke St, Alexandria,VA,22314 +-77.132964,38.807368,"DD [drivethru-no] [wifi-yes]-Alexandria,VA",504D S Van Dorn St, Alexandria,VA,22304 +-77.160408,38.802219,"DD/BR [drivethru-no] [wifi-no]-Alexandria,VA",6451 Edsall Rd, Alexandria,VA,22312 +-77.519173,39.017597,"DD/BR [drivethru-yes] [wifi-yes]-Ashburn,VA",42876 Truro Parish Dr, Ashburn,VA,20148 +-77.08298,38.75175,"DD [drivethru-no] [wifi-yes]-Alexandria,VA",7611 D Richmond Highway [South Valley Plaza], Alexandria,VA,22306 +-77.313766,38.826111,"DD [drivethru-no] [wifi-yes]-Fairfax,VA",10633 Braddock Rd, Fairfax,VA,22032 +-77.39785,38.88105,"DD [drivethru-no] [wifi-yes]-Fairfax,VA",13061 Lee Jackson Memorial Hwy, Fairfax,VA,22033 +-77.27405,38.86484,"DD [drivethru-no] [wifi-yes]-Fairfax,VA",9550 Fairfax Boulevard, Fairfax,VA,22031 +-77.311028,38.654102,"DD/BR [drivethru-yes] [wifi-yes]-Woodbridge,VA",13585 Minnieville Rd, Woodbridge,VA,22192 +-77.448753,38.958317,"DD [drivethru-no] [wifi-no]-Sterling,VA",45020 Aviation Dr [Dulles Airport-4 locations], Sterling,VA,20166 +-77.182485,38.782221,"DD [drivethru-no] [wifi-yes]-Springfield,VA",6800 Commerce St, Springfield,VA,22150 +-77.145887,38.704741,"DD [drivethru-no] [wifi-no]-Fort Belvoir,VA",7500 Heller Loop [National Geospatial Int Agency], Fort Belvoir,VA,22060 +-77.0516,38.83524,"DD/BR [drivethru-no] [wifi-yes]-Alexandria,VA",3325 Jefferson Davis Highway, Alexandria,VA,22305 +-77.057518,38.806332,"DD [drivethru-no] [wifi-yes]-Alexandria,VA",1640 King St, Alexandria,VA,22314 +-77.27046,38.62926,"DD/BR [drivethru-yes] [wifi-yes]-Woodbridge,VA",13607 Jeff Davis Highway, Woodbridge,VA,22191 +-77.27978,38.67789,"DD/BR [drivethru-yes] [wifi-yes]-Lake Ridge,VA",2201 Old Bridge Road [Tackett's Mill Shopping Ctr], Lake Ridge,VA,22192 +-77.112119,38.81213,"DD [drivethru-no] [wifi-yes]-Alexandria,VA",4653 Duke St, Alexandria,VA,22304 +-77.18393,38.77148,"DD [drivethru-no] [wifi-yes]-Springfield,VA",6715 Backlick Road [Ste H], Springfield,VA,22150 +-77.35804,39.040085,"DD [drivethru-no] [wifi-yes]-Sterling,VA",20789 Great Falls Plaza, Sterling,VA,20165 +-77.3312,38.561096,"DD/BR [drivethru-yes] [wifi-yes]-Dumfries,VA",18021 Main St, Dumfries,VA,22026 +-77.37325,38.95831,"DD [drivethru-no] [wifi-no]-Herndon,VA",141 Spring Street [Ste 200], Herndon,VA,20170 +-77.410324,38.978252,"DD [drivethru-no] [wifi-yes]-Sterling,VA",23070 Oak Grove Rd, Sterling,VA,20166 +-77.37449,39.01571,"DD/BR [drivethru-no] [wifi-yes]-Sterling,VA",47010 Community Plaza Ste 180, Sterling,VA,20164 +-77.043638,38.855676,"DD [drivethru-no] [wifi-no]-Arlington,VA",1 National Airport Cart 1 Post North Pier, Arlington,VA,22202 +-77.042024,38.851851,"DD [drivethru-no] [wifi-no]-Arlington,VA",1 National Airport Cart 2 Post Center Pier, Arlingotn,VA,22202 +-77.049332,38.85796,"DD [drivethru-no] [wifi-yes]-Arlington,VA",1687 Crystal Square Arc, Arlington,VA,22202 +-77.227752,38.878689,"DD [drivethru-no] [wifi-yes]-Vienna,VA",2750 Gallows Rd, Vienna,VA,22180 +-77.502144,38.774391,"DD [drivethru-no] [wifi-no]-Manassas,VA",8386 Sudley Rd [Walmart], Manassas,VA,20109 +-77.46136,38.76061,"DD [drivethru-yes] [wifi-yes]-Manassas,VA",8985 Centreville Road, Manassas,VA,20110 +-77.489861,38.769691,"DD/BR [drivethru-no] [wifi-no]-Manassas,VA",8525 Rolling Rd, Manassas,VA,20110 +-77.171371,38.773335,"DD [drivethru-no] [wifi-yes]-Springfield,VA",6699 Frontier Dr [Ste C], Springfield,VA,22150 +-77.10403,38.89593,"DD/BR [drivethru-no] [wifi-yes]-Arlington,VA",3520 Lee Highway, Arlington,VA,22207 +-77.321381,38.853038,"DD [drivethru-no] [wifi-yes]-Fairfax,VA",10955 Fairfax Blvd [Ste 102], Fairfax,VA,22030 +-77.088722,38.862003,"DD/BR [drivethru-no] [wifi-yes]-Arlington,VA",3100 Columbia Pike, Arlington,VA,22204 +-77.269852,38.897834,"DD [drivethru-no] [wifi-yes]-Vienna,VA",314 Maple Ave W, Vienna,VA,22180 +-77.227,38.9169,"DD/BR [drivethru-no] [wifi-yes]-McLean,VA",8119 Watson Street, McLean,VA,22102 +-77.384391,38.51046,"DD/BR [drivethru-no] [wifi-no]-Quantico,VA",27130 Telegraph Rd [MDIA Offices Quantico MCB], Quantico,VA,22134 +-77.484279,39.01504,"DD [drivethru-no] [wifi-yes]-Ashburn,VA",44110 Ashburn Village Blvd, Ashburn,VA,20147 +-77.085894,38.891199,"DD [drivethru-no] [wifi-yes]-Arlington,VA",2201 Wilson Blvd, Arlington,VA,22201 +-77.450158,38.745715,"DD/BR [drivethru-no] [wifi-yes]-Manassas,VA",9685 Liberia Ave, Manassas,VA,20110 +-80.01194,37.225353,"DD [drivethru-no] [wifi-no]-Roanoke,VA",4350 Brambleton Ave [WilcoHess], Roanoke,VA,24018 +-79.895912,37.275185,"DD [drivethru-no] [wifi-no]-Vinton,VA",400 Virginia Ave [WilcoHess], Vinton,VA,24179 +-79.91046,37.28998,"DD [drivethru-no] [wifi-no]-Roanoke,VA",2121 Orange Ave NE [WilcoHess], Roanoke,VA,24012 +-80.769325,37.048523,"DD [drivethru-no] [wifi-no]-Pulaski,VA",640 E Main St [WilcoHess], Pulaski,VA,24301 +-80.41613,37.177948,"DD [drivethru-no] [wifi-no]-Blacksburg,VA",3980 S Main St [WilcoHess], Blacksburg,VA,24060 +-80.421303,37.236294,"DD [drivethru-no] [wifi-no]-Blacksburg,VA",825 N Main St [WilcoHess], Blacksburg,VA,24060 +-80.399406,37.201954,"DD [drivethru-no] [wifi-no]-Blacksburg,VA",2211 S Main St, Blacksburg,VA,24060 +-78.877579,38.065796,"DD [drivethru-no] [wifi-no]-Waynesboro,VA",780 E Main St, Waynesboro,VA,22980 +-78.92247,38.079697,"DD [drivethru-no] [wifi-no]-Waynesboro,VA",2601 W Main St [WilcoHess], Waynesboro,VA,22980 +-77.496483,38.296185,"DD/BR [drivethru-no] [wifi-yes]-Fredericksburg,VA",2229 Plank Rd [Rt 3 Village Ctr], Fredericksburg,VA,22401 +-79.04762,38.13829,"DD/BR [drivethru-yes] [wifi-yes]-Staunton,VA",1028 Richmond Avenue, Staunton,VA,24401 +-78.21689,39.08238,"DD [drivethru-no] [wifi-yes]-Stephens City,VA",740 Fairfax Street, Stephens City,VA,22655 +-78.178696,39.092224,"DD/BR [drivethru-yes] [wifi-yes]-Stephens City,VA",760 Warrior Dr, Stephens City,VA,22655 +-78.083782,39.081889,"DD/BR [drivethru-yes] [wifi-no]-Boyce,VA",8153 John Mosby Hwy, Boyce,VA,22620 +-77.533463,38.278194,"DD/BR [drivethru-no] [wifi-yes]-Fredericksburg,VA",2601 Salem Church Rd [Ste 111], Fredericksburg,VA,22407 +-77.52069,38.29327,"DD [drivethru-yes] [wifi-no]-Fredericksburg,VA",3544 Plank Road [Waverly Village Ctr], Fredericksburg,VA,22407 +-80.038744,37.249531,"DD [drivethru-yes] [wifi-yes]-Roanoke,VA",5044 Keagy Rd [Keagy Village Ctr], Roanoke,VA,24018 +-78.17722,39.20961,"DD/BR [drivethru-no] [wifi-yes]-Winchester,VA",1462 N Frederick Pike, Winchester,VA,22603 +-78.10989,38.240044,"DD [drivethru-no] [wifi-no]-Orange,VA",120 Berry Hill Rd [WilcoHess], Orange,VA,22960 +-78.15477,39.16071,"DD/BR [drivethru-no] [wifi-yes]-Winchester,VA",992 Millwood Pike, Winchester,VA,22602 +-78.140594,39.18528,"DD/BR [drivethru-no] [wifi-yes]-Winchester,VA",1208 Berryville Rd, Winchester,VA,22601 +-78.17045,39.18516,"DD/BR [drivethru-no] [wifi-yes]-Winchester,VA",303 W Boscawen Street, Winchester,VA,22601 +-78.18671,39.15587,"DD [drivethru-no] [wifi-yes]-Winchester,VA",2605 Valley Avenue, Winchester,VA,22601 +-77.42033,38.47485,"DD/BR [drivethru-no] [wifi-yes]-Stafford,VA",305 Garrisonville Road Ste 102, Stafford,VA,22554 +-80.579384,37.142616,"DD [drivethru-no] [wifi-no]-Radford,VA",7455 Lee Hwy [WilcoHess], Radford,VA,24141 +-80.586029,37.126762,"DD [drivethru-no] [wifi-no]-Radford,VA",1102 W Main St [WilcoHess], Radford,VA,24141 +-78.19076,38.92193,"DD/BR [drivethru-no] [wifi-yes]-Front Royal,VA",202 S Commerce Avenue, Front Royal,VA,22630 +-78.19671,38.95715,"DD/BR [drivethru-no] [wifi-yes]-Front Royal,VA",9886 Winchester Road, Front Royal,VA,22630 +-78.358649,38.989055,"DD [drivethru-no] [wifi-yes]-Strasburg,VA",314 W King St [Shell Oil], Strasburg,VA,22357 +-78.52487,38.87079,"DD/BR [drivethru-no] [wifi-yes]-Woodstock,VA",345 W Reservoir Road, Woodstock,VA,22664 +-78.438225,38.966213,"DD [drivethru-no] [wifi-no]-Toms Brook,VA",1014 Mount Olive Rd [WilcoHess], Toms Brook,VA,22660 +-78.882515,38.43298,"DD [drivethru-no] [wifi-no]-Harrisonburg,VA",1437 S Main St [WilcoHess], Harrisonburg,VA,22801 +-80.034996,37.279472,"DD [drivethru-no] [wifi-no]-Salem,VA",1000 Electric Rd [WilcoHess], Salem,VA,24153 +-80.40358,37.130398,"DD [drivethru-no] [wifi-no]-Christiansburg,VA",204 Roanoke St [WilcoHess], Christiansburg,VA,24073 +-79.234503,37.930501,"DD [drivethru-no] [wifi-no]-Raphine,VA",713 Oakland Cir [WilcoHess], Raphine,VA,24472 +-77.787793,38.697979,"DD [drivethru-no] [wifi-no]-Warrenton,VA",700 James Madison Hwy [Walmart], Warrenton,VA,20186 +-79.969887,37.235497,"DD/BR [drivethru-no] [wifi-yes]-Roanoke,VA",3620 Franklin Rd Sw, Roanoke,VA,24014 +-78.394768,38.194298,"DD [drivethru-yes] [wifi-yes]-Ruckersville,VA",5920 Seminole Trail, Ruckersville,VA,22963 +-78.500263,38.034732,"DD/BR [drivethru-no] [wifi-yes]-Charlottesville,VA",1509 University Ave, Charlottesville,VA,22903 +-78.464783,38.096329,"DD [drivethru-no] [wifi-no]-Charlottesville,VA",2235 Seminole Ln [WilcoHess], Charolttesville,VA,22901 +-79.34492,36.58101,"DD [drivethru-no] [wifi-no]-Danville,VA",1264 S Boston Road [WilcoHess], Danville,VA,24540 +-78.334335,37.904499,"DD [drivethru-yes] [wifi-yes]-Palmyra,VA",271 Turkeysaq Trail, Palmyra,VA,22963 +-78.926967,36.674731,"DD [drivethru-no] [wifi-no]-South Boston,VA",2190 Philpott Rd [WilcoHess], South Boston,VA,24592 +-79.135239,37.381138,"DD [drivethru-no] [wifi-no]-Lynchburg,VA",3732 Campbell Ave [WilcoHess], Lynchburg,VA,24501 +-78.927658,36.760838,"DD [drivethru-no] [wifi-no]-Halifax,VA",391 S Main St [WilcoHess], Halifax,VA,24558 +-79.223969,37.396736,"DD [drivethru-no] [wifi-no]-Lynchburg,VA",2501 Lakeside Dr [WilcoHess], Lynchburg,VA,24501 +-77.559374,36.606768,"DD [drivethru-no] [wifi-no]-Skippers,VA",781 Moores Ferry Rd [WilcoHess], Skippers,VA,23879 +-78.456291,38.033932,"DD [drivethru-no] [wifi-no]-Charlottesville,VA",1172 Richmond Rd, Charlottesville,VA,22911 +-79.230171,37.350132,"DD [drivethru-no] [wifi-no]-Lynchburg,VA",8017 Timberlake Rd [WilcoHess], Lynchburg,VA,24502 +-79.18127,37.36173,"DD [drivethru-no] [wifi-no]-Lynchburg,VA",3001 Wards Rd [WilcoHess], Lynchburg,VA,24502 +-79.859156,36.628608,"DD [drivethru-no] [wifi-no]-Ridgeway,VA",4801 Greensboro Rd [WilcoHess], Ridgeway,VA,24148 +-79.93745,36.74622,"DD [drivethru-no] [wifi-no]-Bassett,VA",5484 Virginia Avenue [WilcoHess], Bassett,VA,24055 +-81.931583,36.712426,"DD [drivethru-yes] [wifi-yes]-Abingdon,VA",24468 Lee Hwy, Abingdon,VA,24211 +-80.91827,36.67113,"DD [drivethru-no] [wifi-no]-Galax,VA",509 E Stuart Drive [WilcoHess], Galax,VA,24333 +-80.979919,36.936714,"DD [drivethru-no] [wifi-no]-Wytheville,VA",110 Ready Mix Rd [WilcoHess], Wytheville,VA,24382 +-80.992558,36.937909,"DD [drivethru-no] [wifi-no]-Wytheville,VA",1318 E Lee Hwy [WilcoHess], Wytheville,VA,24382 +-73.247163,44.536075,"DD [drivethru-yes] [wifi-no]-Colchester,VT",25 Macrae Rd, Colchester,VT,5446 +-73.12629,44.6505,"DD [drivethru-yes] [wifi-yes]-Milton,VT",250 Route 7 S [Redwood Plz Shopping Ctr], Milton,VT,5468 +-72.59254,44.57567,"DD [drivethru-yes] [wifi-no]-Morrisville,VT",157 Vt Route 15 W, Morrisville,VT,5661 +-72.476959,43.293495,"DD [drivethru-yes] [wifi-yes]-Springfield,VT",50 Clinton St, Springfield,VT,5156 +-73.12363,44.49604,"DD [drivethru-no] [wifi-yes]-Essex Junction,VT",122 Pearl Street, Essex Junction,VT,5452 +-73.12058,44.44296,"DD [drivethru-no] [wifi-no]-Williston,VT",863 Harvest Lane [Walmart], Williston,VT,5495 +-73.10591,44.44786,"DD [drivethru-no] [wifi-yes]-Williston,VT",10 Simons Plaza, Williston,VT,5495 +-73.03207,44.50283,"DD [drivethru-yes] [wifi-yes]-Essex,VT",134 Jericho Road, Essex,VT,5453 +-73.117538,44.920147,"DD [drivethru-yes] [wifi-yes]-Swanton,VT",Rt 78 1st St, Swanton,VT,5488 +-73.21558,44.48035,"DD [drivethru-no] [wifi-yes]-Burlington,VT",80 Pearl Street, Burlington,VT,5401 +-73.18105,44.46526,"DD [drivethru-no] [wifi-yes]-Burlington,VT",155 Dorset Street [University Mall], Burlington,VT,5403 +-72.930359,43.643974,"DD [drivethru-no] [wifi-yes]-Rutland,VT",Woodstock Ave Rt 4 E, Rutland,VT,5701 +-73.00387,43.60419,"DD [drivethru-yes] [wifi-yes]-Rutland,VT",446 West Street, Rutland,VT,5701 +-72.975304,43.624069,"DD [drivethru-no] [wifi-yes]-Rutland,VT",219 N Main St [Tenny Brook Mkt], Rutland,VT,5701 +-72.970222,43.598499,"DD [drivethru-yes] [wifi-yes]-Rutland,VT",142 S Main St, Rutland,VT,5701 +-72.015694,44.419262,"DD [drivethru-no] [wifi-yes]-Saint Johnsbury,VT",473 Railroad St, Saint Johnsbury,VT,5819 +-72.664787,43.922085,"DD [drivethru-no] [wifi-yes]-Randolph,VT",14 South Main St, Randolph,VT,5060 +-72.438896,43.086357,"DD [drivethru-no] [wifi-yes]-Westminster,VT",5190 US Rt 5, Westminster,VT,5158 +-73.20815,44.45991,"DD [drivethru-no] [wifi-yes]-Burlington,VT",206 Shelburne Road, Burlington,VT,5401 +-73.175529,44.467918,"DD [drivethru-no] [wifi-yes]-South Burlington,VT",1220 Williston Rd, South Burlington,VT,5401 +-73.202194,44.489082,"DD [drivethru-yes] [wifi-yes]-Burlington,VT",465-471 Riverside Ave, Burlington,VT,5401 +-73.16774,44.492928,"DD [drivethru-yes] [wifi-yes]-Colchester,VT",156 College Pkwy, Colchester,VT,5446 +-72.000824,44.520618,"DD [drivethru-no] [wifi-no]-Lyndonville,VT",78 Broad St US 5 & 91 [Mobil], Lyndonville,VT,5851 +-72.474836,44.179572,"DD [drivethru-yes] [wifi-yes]-Barre,VT",571 US Rt 302, Barre,VT,5641 +-72.407822,43.406429,"DD [drivethru-yes] [wifi-yes]-Ascutney,VT",100 Rt 131, Ascutney,VT,5030 +-73.074188,44.793745,"DD [drivethru-yes] [wifi-no]-Saint Albans,VT",725 Fairfax Rd, Saint Albans,VT,5478 +-73.07953,44.83499,"DD [drivethru-yes] [wifi-yes]-Saint Albans,VT",138 Swanton Road, Saint Albans,VT,5478 +-73.08818,44.80239,"DD [drivethru-no] [wifi-no]-Saint Albans,VT",171 S Main Street, Saint Albans,VT,5478 +-73.210703,44.434154,"DD [drivethru-no] [wifi-yes]-South Burlington,VT",1335 Shelburne Rd, South Burlington,VT,5403 +-72.504463,44.199974,"DD [drivethru-no] [wifi-yes]-Barre,VT",283 N Main St, Barre,VT,5641 +-73.206865,43.608405,"DD [drivethru-yes] [wifi-yes]-Castleton,VT",2194 Main St, Castleton,VT,5735 +-72.44862,43.1369,"DD [drivethru-no] [wifi-no]-Bellows Falls,VT",124 Rockingham Street, Bellows Falls,VT,5101 +-73.181907,44.122234,"DD [drivethru-yes] [wifi-yes]-New Haven,VT",5356 Ethan Allen Hwy, New Haven,VT,5472 +-73.1969,42.88322,"DD [drivethru-yes] [wifi-no]-Bennington,VT",237 North Street, Bennington,VT,5201 +-73.21136,42.90045,"DD [drivethru-yes] [wifi-no]-Bennington,VT",209 Northside Drive, Bennington,VT,5201 +-73.165108,44.012768,"DD [drivethru-yes] [wifi-yes]-Middlebury,VT",16 Court St, Middlebury,VT,5753 +-73.060341,43.173985,"DD [drivethru-no] [wifi-yes]-Manchester Center,VT",4604 Main St, Manchester Center,VT,5255 +-72.420179,43.647106,"DD [drivethru-yes] [wifi-no]-Quechee,VT",7024 Woodstock Rd, Quechee,VT,5059 +-72.345139,43.646008,"DD [drivethru-yes] [wifi-yes]-White River Junction,VT",521 N Hartland St, White River Junction,VT,5001 +-73.23246,43.51695,"DD [drivethru-no] [wifi-yes]-Poultney,VT",10 E Main Street[ Mobil Station], Poultney,VT,5764 +-73.265152,43.591862,"DD [drivethru-no] [wifi-yes]-Fair Haven,VT",26 Main St, Fair Haven,VT,5743 +-72.56503,42.83942,"DD [drivethru-yes] [wifi-no]-Brattleboro,VT",469 Canal Street, Brattleboro,VT,5301 +-72.56014,42.8558,"DD [drivethru-yes] [wifi-yes]-Brattleboro,VT",Putney Road, Brattleboro,VT,5301 +-72.695389,44.454708,"DD [drivethru-no] [wifi-no]-Stowe,VT",911 S Main St Rt 10, Stowe,VT,5672 +-72.615707,42.866116,"DD [drivethru-yes] [wifi-yes]-Brattleboro,VT",327 Marlboro Rd, Brattleboro,VT,5301 +-72.57586,44.25598,"DD [drivethru-yes] [wifi-yes]-Montpelier,VT",51 Berlin Street, Montpelier,VT,5602 +-72.7016,43.39601,"DD [drivethru-no] [wifi-yes]-Ludlow,VT",195 Main St, Ludlow,VT,5149 +-88.348262,44.243759,"DD [drivethru-yes] [wifi-yes]-Appleton,WI",W3208 County Road KK, Appleton,WI,54915 +-89.02528,42.83611,"DD/BR [drivethru-yes] [wifi-yes]-Edgerton,WI",11180 Goede Road, Edgerton,WI,53534 +-89.460437,43.192043,"DD [drivethru-yes] [wifi-yes]-Waunakee,WI",404 W Main St, Waunakee,WI,53597 +-89.400385,43.05896,"DD [drivethru-yes] [wifi-yes]-Madison,WI",801 S Park St, Madison,WI,53715 +-89.03114,42.65129,"DD/BR [drivethru-yes] [wifi-yes]-Janesville,WI",1905 Center Avenue, Janesville,WI,53546 +-89.004216,42.708664,"DD [drivethru-yes] [wifi-yes]-Janesville,WI",2121 Milton Avenue, Janesville,WI,53545 +-89.503065,43.049003,"DD [drivethru-yes] [wifi-yes]-Madison,WI",739 S Gammon Rd, Madison,WI,53719 +-89.7773758,43.575462,"DD [drivethru-yes] [wifi-yes]-Lake Delton,WI",1171 S Wisconsin Dells Pkwy, Lake Delton,WI,53940 +-89.786739,43.61583,"DD [drivethru-yes] [wifi-yes]-Wisconsin Dells,WI",2415 Wisconsin Dells Pkwy, Wisconsin Dells,WI,53965 +-87.910604,43.118598,"DD [drivethru-no] [wifi-yes]-Whitefish Bay,WI",106 W Silver Spring Dr [Ste A], Whitefish Bay,WI,53217 +-87.94655,42.872532,"DD [drivethru-yes] [wifi-yes]-Oak Creek,WI",2345 W Ryan Rd [Ste A], Oak Creek,WI,53154 +-87.9119,42.95911,"DD [drivethru-no] [wifi-yes]-Milwaukee,WI",151 W Layton Avenue, Milwaukee,WI,53207 +-87.967627,43.006797,"DD [drivethru-yes] [wifi-yes]-West Milwaukee,WI",2068 Miller Park Way, West Milwaukee,WI,53219 +-87.9196,43.03913,"DD [drivethru-no] [wifi-yes]-Milwaukee,WI",622 W Wisconsin Avenue, Milwaukee,WI,53203 +-88.047169,42.991896,"DD [drivethru-yes] [wifi-yes]-West Allis,WI",2865 S 108th St, West Allis,WI,53227 +-87.8532,42.71919,"DD/BR [drivethru-yes] [wifi-yes]-Racine,WI",6026 Washington Avenue, Racine,WI,53406 +-87.94922,42.56752,"DD [drivethru-yes] [wifi-no]-Kenosha,WI",11748 75th Street, Kenosha,WI,53142 +-88.255883,43.037969,"DD [drivethru-yes] [wifi-yes]-Waukesha,WI",2450 N Grandview Blvd, Waukesha,WI,53188 +-87.856801,42.566295,"DD [drivethru-yes] [wifi-yes]-Kenosha,WI",4028 75th St, Kenosha,WI,53142 +-88.104369,43.119432,"DD [drivethru-yes] [wifi-yes]-Menomonee Falls,WI",N56W15560 Silver Spring Dr, Menomonee Falls,WI,53051 +-80.229834,39.321686,"DD [drivethru-no] [wifi-yes]-Bridgeport,WV",50 Genesis Blvd, Bridgeport,WV,26330 +-77.84875,39.3204,"DD/BR [drivethru-yes] [wifi-yes]-Ranson,WV",33 West Virginia Way Ste 1, Ranson,WV,25438 +-80.242652,39.295983,"DD [drivethru-yes] [wifi-yes]-Bridgeport,WV",20 S Wedge St, Bridgeport,WV,26330 +-77.95849,39.47815,"DD [drivethru-yes] [wifi-yes]-Martinsburg,WV",1294 Edwin Miller Boulevard, Martinsburg,WV,25404 +-81.1856523,37.8111615,"DD [drivethru-yes] [wifi-yes]-Beckley,WV",4223 Robert C Byrd Dr, Beckley,WV,25801 +-79.9232096,39.6204818,"DD [drivethru-yes] [wifi-yes]-Morgantown,WV",1899 Earl L Core Rd, Morgantown,WV,26505 diff --git a/Winter-2023/Digital Earth/election_2016_votes_and_reps.xlsx b/Winter-2023/Digital Earth/election_2016_votes_and_reps.xlsx new file mode 100755 index 0000000..9840e39 Binary files /dev/null and b/Winter-2023/Digital Earth/election_2016_votes_and_reps.xlsx differ diff --git a/Winter-2023/Digital Earth/elevation_10arcmin.tfw b/Winter-2023/Digital Earth/elevation_10arcmin.tfw new file mode 100755 index 0000000..d24f7fd --- /dev/null +++ b/Winter-2023/Digital Earth/elevation_10arcmin.tfw @@ -0,0 +1,6 @@ +0.1666666754 +0.0000000000 +0.0000000000 +-0.1666666754 +-179.9166666623 +89.9166744854 diff --git a/Winter-2023/Digital Earth/elevation_10arcmin.tif b/Winter-2023/Digital Earth/elevation_10arcmin.tif new file mode 100755 index 0000000..e45d1a6 Binary files /dev/null and b/Winter-2023/Digital Earth/elevation_10arcmin.tif differ diff --git a/Winter-2023/Digital Earth/elevation_10arcmin.tif.aux.xml b/Winter-2023/Digital Earth/elevation_10arcmin.tif.aux.xml new file mode 100755 index 0000000..412d097 --- /dev/null +++ b/Winter-2023/Digital Earth/elevation_10arcmin.tif.aux.xml @@ -0,0 +1,28524 @@ + + + Generic + + + NEAREST + + + + + -353 + 6241 + 256 + 1 + 0 + 2|0|1|0|2|1|2|1|5|7|41|35|1736|19457|28571|24720|23869|23881|24052|23799|21291|18126|16979|16388|17168|17272|15480|14243|12981|13168|11923|11128|10026|9103|8404|7457|7307|6850|6231|5887|5466|5129|4658|4754|4436|4332|4073|4080|4025|3857|4149|3792|3819|3705|3809|3760|3401|3648|3354|3267|3132|2871|2694|2486|2419|2387|2307|2148|2081|1863|1716|1748|1651|1553|1482|1417|1364|1244|1184|1166|1082|1023|1044|1005|1043|991|951|914|816|897|933|874|813|763|778|906|908|727|680|627|661|763|834|616|580|555|534|796|817|523|454|442|434|493|437|382|342|402|351|438|403|399|339|315|335|437|349|289|292|280|283|416|385|245|146|157|151|150|120|114|139|105|126|134|89|117|129|108|105|113|122|137|121|123|124|147|149|153|146|120|123|169|147|136|127|137|121|157|125|150|123|142|140|147|152|146|146|159|140|158|147|145|142|155|150|171|149|173|184|170|171|200|184|195|195|217|166|212|162|159|186|170|193|193|229|201|222|211|192|178|155|163|124|129|116|120|89|94|77|82|65|49|55|55|43|46|24|19|29|31|15|26|23|16|8|3|12|1|3|4|1|1|2|2|1|1|1|0|2|2|0|0|0|0|0|1 + + + + + Rowid + 0 + 0 + + + VALUE + 0 + 0 + + + COUNT + 0 + 0 + + + 0 + -353 + 1 + + + 1 + -331 + 1 + + + 2 + -289 + 1 + + + 3 + -238 + 1 + + + 4 + -232 + 1 + + + 5 + -208 + 1 + + + 6 + -185 + 2 + + + 7 + -161 + 1 + + + 8 + -136 + 1 + + + 9 + -128 + 1 + + + 10 + -125 + 1 + + + 11 + -122 + 1 + + + 12 + -121 + 1 + + + 13 + -119 + 1 + + + 14 + -113 + 1 + + + 15 + -112 + 1 + + + 16 + -111 + 1 + + + 17 + -109 + 1 + + + 18 + -100 + 1 + + + 19 + -97 + 1 + + + 20 + -92 + 1 + + + 21 + -90 + 2 + + + 22 + -88 + 2 + + + 23 + -87 + 2 + + + 24 + -85 + 2 + + + 25 + -83 + 4 + + + 26 + -82 + 1 + + + 27 + -81 + 2 + + + 28 + -80 + 4 + + + 29 + -79 + 5 + + + 30 + -78 + 1 + + + 31 + -77 + 2 + + + 32 + -76 + 3 + + + 33 + -75 + 1 + + + 34 + -74 + 3 + + + 35 + -71 + 3 + + + 36 + -70 + 1 + + + 37 + -69 + 2 + + + 38 + -68 + 2 + + + 39 + -66 + 2 + + + 40 + -64 + 1 + + + 41 + -63 + 2 + + + 42 + -58 + 2 + + + 43 + -57 + 1 + + + 44 + -56 + 3 + + + 45 + -55 + 2 + + + 46 + -54 + 3 + + + 47 + -53 + 1 + + + 48 + -52 + 3 + + + 49 + -50 + 1 + + + 50 + -47 + 3 + + + 51 + -46 + 2 + + + 52 + -45 + 4 + + + 53 + -44 + 3 + + + 54 + -41 + 3 + + + 55 + -40 + 3 + + + 56 + -36 + 2 + + + 57 + -34 + 3 + + + 58 + -33 + 1 + + + 59 + -32 + 6 + + + 60 + -31 + 31 + + + 61 + -30 + 170 + + + 62 + -29 + 320 + + + 63 + -28 + 355 + + + 64 + -27 + 210 + + + 65 + -26 + 130 + + + 66 + -25 + 81 + + + 67 + -24 + 67 + + + 68 + -23 + 47 + + + 69 + -22 + 49 + + + 70 + -21 + 44 + + + 71 + -20 + 51 + + + 72 + -19 + 43 + + + 73 + -18 + 56 + + + 74 + -17 + 64 + + + 75 + -16 + 57 + + + 76 + -15 + 51 + + + 77 + -14 + 45 + + + 78 + -13 + 53 + + + 79 + -12 + 48 + + + 80 + -11 + 52 + + + 81 + -10 + 42 + + + 82 + -9 + 40 + + + 83 + -8 + 43 + + + 84 + -7 + 47 + + + 85 + -6 + 33 + + + 86 + -5 + 66 + + + 87 + -4 + 53 + + + 88 + -3 + 103 + + + 89 + -2 + 175 + + + 90 + -1 + 332 + + + 91 + 0 + 521 + + + 92 + 1 + 3938 + + + 93 + 2 + 1876 + + + 94 + 3 + 1891 + + + 95 + 4 + 1903 + + + 96 + 5 + 1852 + + + 97 + 6 + 1671 + + + 98 + 7 + 1623 + + + 99 + 8 + 1528 + + + 100 + 9 + 1414 + + + 101 + 10 + 1374 + + + 102 + 11 + 1352 + + + 103 + 12 + 1274 + + + 104 + 13 + 1231 + + + 105 + 14 + 1285 + + + 106 + 15 + 1245 + + + 107 + 16 + 1190 + + + 108 + 17 + 1254 + + + 109 + 18 + 1148 + + + 110 + 19 + 1176 + + + 111 + 20 + 1171 + + + 112 + 21 + 1120 + + + 113 + 22 + 1093 + + + 114 + 23 + 1151 + + + 115 + 24 + 1085 + + + 116 + 25 + 1078 + + + 117 + 26 + 1037 + + + 118 + 27 + 1038 + + + 119 + 28 + 1069 + + + 120 + 29 + 1071 + + + 121 + 30 + 1037 + + + 122 + 31 + 1019 + + + 123 + 32 + 1007 + + + 124 + 33 + 1053 + + + 125 + 34 + 1013 + + + 126 + 35 + 947 + + + 127 + 36 + 1023 + + + 128 + 37 + 997 + + + 129 + 38 + 1000 + + + 130 + 39 + 934 + + + 131 + 40 + 961 + + + 132 + 41 + 927 + + + 133 + 42 + 951 + + + 134 + 43 + 971 + + + 135 + 44 + 950 + + + 136 + 45 + 894 + + + 137 + 46 + 940 + + + 138 + 47 + 962 + + + 139 + 48 + 969 + + + 140 + 49 + 936 + + + 141 + 50 + 957 + + + 142 + 51 + 917 + + + 143 + 52 + 991 + + + 144 + 53 + 981 + + + 145 + 54 + 966 + + + 146 + 55 + 944 + + + 147 + 56 + 955 + + + 148 + 57 + 910 + + + 149 + 58 + 913 + + + 150 + 59 + 928 + + + 151 + 60 + 896 + + + 152 + 61 + 983 + + + 153 + 62 + 868 + + + 154 + 63 + 968 + + + 155 + 64 + 921 + + + 156 + 65 + 942 + + + 157 + 66 + 954 + + + 158 + 67 + 937 + + + 159 + 68 + 931 + + + 160 + 69 + 923 + + + 161 + 70 + 923 + + + 162 + 71 + 935 + + + 163 + 72 + 892 + + + 164 + 73 + 887 + + + 165 + 74 + 931 + + + 166 + 75 + 851 + + + 167 + 76 + 873 + + + 168 + 77 + 926 + + + 169 + 78 + 896 + + + 170 + 79 + 943 + + + 171 + 80 + 928 + + + 172 + 81 + 933 + + + 173 + 82 + 871 + + + 174 + 83 + 928 + + + 175 + 84 + 905 + + + 176 + 85 + 884 + + + 177 + 86 + 936 + + + 178 + 87 + 943 + + + 179 + 88 + 895 + + + 180 + 89 + 920 + + + 181 + 90 + 920 + + + 182 + 91 + 846 + + + 183 + 92 + 886 + + + 184 + 93 + 895 + + + 185 + 94 + 877 + + + 186 + 95 + 935 + + + 187 + 96 + 935 + + + 188 + 97 + 902 + + + 189 + 98 + 880 + + + 190 + 99 + 868 + + + 191 + 100 + 906 + + + 192 + 101 + 926 + + + 193 + 102 + 989 + + + 194 + 103 + 944 + + + 195 + 104 + 888 + + + 196 + 105 + 930 + + + 197 + 106 + 969 + + + 198 + 107 + 988 + + + 199 + 108 + 915 + + + 200 + 109 + 914 + + + 201 + 110 + 953 + + + 202 + 111 + 912 + + + 203 + 112 + 945 + + + 204 + 113 + 958 + + + 205 + 114 + 895 + + + 206 + 115 + 905 + + + 207 + 116 + 922 + + + 208 + 117 + 952 + + + 209 + 118 + 855 + + + 210 + 119 + 903 + + + 211 + 120 + 912 + + + 212 + 121 + 891 + + + 213 + 122 + 954 + + + 214 + 123 + 914 + + + 215 + 124 + 905 + + + 216 + 125 + 924 + + + 217 + 126 + 923 + + + 218 + 127 + 921 + + + 219 + 128 + 929 + + + 220 + 129 + 931 + + + 221 + 130 + 912 + + + 222 + 131 + 957 + + + 223 + 132 + 928 + + + 224 + 133 + 911 + + + 225 + 134 + 908 + + + 226 + 135 + 949 + + + 227 + 136 + 958 + + + 228 + 137 + 947 + + + 229 + 138 + 988 + + + 230 + 139 + 907 + + + 231 + 140 + 921 + + + 232 + 141 + 914 + + + 233 + 142 + 937 + + + 234 + 143 + 854 + + + 235 + 144 + 891 + + + 236 + 145 + 895 + + + 237 + 146 + 930 + + + 238 + 147 + 944 + + + 239 + 148 + 916 + + + 240 + 149 + 920 + + + 241 + 150 + 982 + + + 242 + 151 + 917 + + + 243 + 152 + 922 + + + 244 + 153 + 906 + + + 245 + 154 + 935 + + + 246 + 155 + 907 + + + 247 + 156 + 1180 + + + 248 + 157 + 988 + + + 249 + 158 + 866 + + + 250 + 159 + 866 + + + 251 + 160 + 859 + + + 252 + 161 + 899 + + + 253 + 162 + 862 + + + 254 + 163 + 847 + + + 255 + 164 + 834 + + + 256 + 165 + 820 + + + 257 + 166 + 820 + + + 258 + 167 + 791 + + + 259 + 168 + 821 + + + 260 + 169 + 733 + + + 261 + 170 + 810 + + + 262 + 171 + 809 + + + 263 + 172 + 871 + + + 264 + 173 + 955 + + + 265 + 174 + 886 + + + 266 + 175 + 906 + + + 267 + 176 + 865 + + + 268 + 177 + 804 + + + 269 + 178 + 813 + + + 270 + 179 + 819 + + + 271 + 180 + 897 + + + 272 + 181 + 874 + + + 273 + 182 + 781 + + + 274 + 183 + 832 + + + 275 + 184 + 795 + + + 276 + 185 + 786 + + + 277 + 186 + 787 + + + 278 + 187 + 798 + + + 279 + 188 + 734 + + + 280 + 189 + 744 + + + 281 + 190 + 740 + + + 282 + 191 + 768 + + + 283 + 192 + 735 + + + 284 + 193 + 782 + + + 285 + 194 + 745 + + + 286 + 195 + 751 + + + 287 + 196 + 815 + + + 288 + 197 + 723 + + + 289 + 198 + 727 + + + 290 + 199 + 724 + + + 291 + 200 + 704 + + + 292 + 201 + 747 + + + 293 + 202 + 701 + + + 294 + 203 + 727 + + + 295 + 204 + 686 + + + 296 + 205 + 707 + + + 297 + 206 + 745 + + + 298 + 207 + 753 + + + 299 + 208 + 698 + + + 300 + 209 + 706 + + + 301 + 210 + 714 + + + 302 + 211 + 676 + + + 303 + 212 + 713 + + + 304 + 213 + 717 + + + 305 + 214 + 654 + + + 306 + 215 + 708 + + + 307 + 216 + 687 + + + 308 + 217 + 660 + + + 309 + 218 + 690 + + + 310 + 219 + 652 + + + 311 + 220 + 684 + + + 312 + 221 + 686 + + + 313 + 222 + 710 + + + 314 + 223 + 663 + + + 315 + 224 + 658 + + + 316 + 225 + 669 + + + 317 + 226 + 638 + + + 318 + 227 + 605 + + + 319 + 228 + 639 + + + 320 + 229 + 694 + + + 321 + 230 + 632 + + + 322 + 231 + 642 + + + 323 + 232 + 656 + + + 324 + 233 + 659 + + + 325 + 234 + 653 + + + 326 + 235 + 631 + + + 327 + 236 + 658 + + + 328 + 237 + 618 + + + 329 + 238 + 627 + + + 330 + 239 + 608 + + + 331 + 240 + 656 + + + 332 + 241 + 604 + + + 333 + 242 + 595 + + + 334 + 243 + 635 + + + 335 + 244 + 657 + + + 336 + 245 + 616 + + + 337 + 246 + 613 + + + 338 + 247 + 594 + + + 339 + 248 + 688 + + + 340 + 249 + 565 + + + 341 + 250 + 594 + + + 342 + 251 + 625 + + + 343 + 252 + 665 + + + 344 + 253 + 647 + + + 345 + 254 + 648 + + + 346 + 255 + 649 + + + 347 + 256 + 596 + + + 348 + 257 + 646 + + + 349 + 258 + 624 + + + 350 + 259 + 618 + + + 351 + 260 + 631 + + + 352 + 261 + 624 + + + 353 + 262 + 624 + + + 354 + 263 + 627 + + + 355 + 264 + 615 + + + 356 + 265 + 680 + + + 357 + 266 + 679 + + + 358 + 267 + 633 + + + 359 + 268 + 672 + + + 360 + 269 + 619 + + + 361 + 270 + 640 + + + 362 + 271 + 659 + + + 363 + 272 + 686 + + + 364 + 273 + 660 + + + 365 + 274 + 672 + + + 366 + 275 + 659 + + + 367 + 276 + 632 + + + 368 + 277 + 671 + + + 369 + 278 + 678 + + + 370 + 279 + 652 + + + 371 + 280 + 687 + + + 372 + 281 + 663 + + + 373 + 282 + 675 + + + 374 + 283 + 639 + + + 375 + 284 + 637 + + + 376 + 285 + 609 + + + 377 + 286 + 664 + + + 378 + 287 + 662 + + + 379 + 288 + 615 + + + 380 + 289 + 663 + + + 381 + 290 + 698 + + + 382 + 291 + 685 + + + 383 + 292 + 681 + + + 384 + 293 + 690 + + + 385 + 294 + 666 + + + 386 + 295 + 677 + + + 387 + 296 + 663 + + + 388 + 297 + 693 + + + 389 + 298 + 657 + + + 390 + 299 + 645 + + + 391 + 300 + 646 + + + 392 + 301 + 676 + + + 393 + 302 + 719 + + + 394 + 303 + 725 + + + 395 + 304 + 726 + + + 396 + 305 + 719 + + + 397 + 306 + 682 + + + 398 + 307 + 659 + + + 399 + 308 + 694 + + + 400 + 309 + 652 + + + 401 + 310 + 625 + + + 402 + 311 + 651 + + + 403 + 312 + 634 + + + 404 + 313 + 672 + + + 405 + 314 + 609 + + + 406 + 315 + 673 + + + 407 + 316 + 639 + + + 408 + 317 + 626 + + + 409 + 318 + 613 + + + 410 + 319 + 631 + + + 411 + 320 + 629 + + + 412 + 321 + 587 + + + 413 + 322 + 606 + + + 414 + 323 + 580 + + + 415 + 324 + 606 + + + 416 + 325 + 616 + + + 417 + 326 + 609 + + + 418 + 327 + 622 + + + 419 + 328 + 562 + + + 420 + 329 + 590 + + + 421 + 330 + 587 + + + 422 + 331 + 596 + + + 423 + 332 + 550 + + + 424 + 333 + 568 + + + 425 + 334 + 582 + + + 426 + 335 + 602 + + + 427 + 336 + 568 + + + 428 + 337 + 601 + + + 429 + 338 + 626 + + + 430 + 339 + 635 + + + 431 + 340 + 593 + + + 432 + 341 + 619 + + + 433 + 342 + 596 + + + 434 + 343 + 585 + + + 435 + 344 + 570 + + + 436 + 345 + 595 + + + 437 + 346 + 549 + + + 438 + 347 + 595 + + + 439 + 348 + 563 + + + 440 + 349 + 571 + + + 441 + 350 + 543 + + + 442 + 351 + 542 + + + 443 + 352 + 553 + + + 444 + 353 + 561 + + + 445 + 354 + 533 + + + 446 + 355 + 576 + + + 447 + 356 + 564 + + + 448 + 357 + 565 + + + 449 + 358 + 538 + + + 450 + 359 + 532 + + + 451 + 360 + 523 + + + 452 + 361 + 540 + + + 453 + 362 + 548 + + + 454 + 363 + 565 + + + 455 + 364 + 544 + + + 456 + 365 + 501 + + + 457 + 366 + 537 + + + 458 + 367 + 530 + + + 459 + 368 + 525 + + + 460 + 369 + 588 + + + 461 + 370 + 502 + + + 462 + 371 + 555 + + + 463 + 372 + 572 + + + 464 + 373 + 539 + + + 465 + 374 + 510 + + + 466 + 375 + 530 + + + 467 + 376 + 531 + + + 468 + 377 + 522 + + + 469 + 378 + 543 + + + 470 + 379 + 501 + + + 471 + 380 + 499 + + + 472 + 381 + 496 + + + 473 + 382 + 488 + + + 474 + 383 + 533 + + + 475 + 384 + 507 + + + 476 + 385 + 522 + + + 477 + 386 + 498 + + + 478 + 387 + 519 + + + 479 + 388 + 508 + + + 480 + 389 + 501 + + + 481 + 390 + 517 + + + 482 + 391 + 548 + + + 483 + 392 + 494 + + + 484 + 393 + 529 + + + 485 + 394 + 544 + + + 486 + 395 + 510 + + + 487 + 396 + 520 + + + 488 + 397 + 516 + + + 489 + 398 + 519 + + + 490 + 399 + 510 + + + 491 + 400 + 523 + + + 492 + 401 + 537 + + + 493 + 402 + 500 + + + 494 + 403 + 540 + + + 495 + 404 + 559 + + + 496 + 405 + 515 + + + 497 + 406 + 495 + + + 498 + 407 + 535 + + + 499 + 408 + 527 + + + 500 + 409 + 510 + + + 501 + 410 + 511 + + + 502 + 411 + 473 + + + 503 + 412 + 485 + + + 504 + 413 + 487 + + + 505 + 414 + 522 + + + 506 + 415 + 502 + + + 507 + 416 + 506 + + + 508 + 417 + 514 + + + 509 + 418 + 512 + + + 510 + 419 + 457 + + + 511 + 420 + 479 + + + 512 + 421 + 469 + + + 513 + 422 + 465 + + + 514 + 423 + 502 + + + 515 + 424 + 464 + + + 516 + 425 + 456 + + + 517 + 426 + 480 + + + 518 + 427 + 529 + + + 519 + 428 + 519 + + + 520 + 429 + 430 + + + 521 + 430 + 460 + + + 522 + 431 + 496 + + + 523 + 432 + 418 + + + 524 + 433 + 459 + + + 525 + 434 + 436 + + + 526 + 435 + 460 + + + 527 + 436 + 491 + + + 528 + 437 + 428 + + + 529 + 438 + 460 + + + 530 + 439 + 452 + + + 531 + 440 + 416 + + + 532 + 441 + 478 + + + 533 + 442 + 454 + + + 534 + 443 + 469 + + + 535 + 444 + 440 + + + 536 + 445 + 422 + + + 537 + 446 + 429 + + + 538 + 447 + 452 + + + 539 + 448 + 423 + + + 540 + 449 + 461 + + + 541 + 450 + 494 + + + 542 + 451 + 440 + + + 543 + 452 + 429 + + + 544 + 453 + 458 + + + 545 + 454 + 440 + + + 546 + 455 + 444 + + + 547 + 456 + 410 + + + 548 + 457 + 420 + + + 549 + 458 + 433 + + + 550 + 459 + 438 + + + 551 + 460 + 419 + + + 552 + 461 + 418 + + + 553 + 462 + 393 + + + 554 + 463 + 421 + + + 555 + 464 + 432 + + + 556 + 465 + 431 + + + 557 + 466 + 434 + + + 558 + 467 + 419 + + + 559 + 468 + 428 + + + 560 + 469 + 408 + + + 561 + 470 + 438 + + + 562 + 471 + 408 + + + 563 + 472 + 393 + + + 564 + 473 + 406 + + + 565 + 474 + 413 + + + 566 + 475 + 428 + + + 567 + 476 + 391 + + + 568 + 477 + 410 + + + 569 + 478 + 451 + + + 570 + 479 + 396 + + + 571 + 480 + 403 + + + 572 + 481 + 401 + + + 573 + 482 + 445 + + + 574 + 483 + 357 + + + 575 + 484 + 382 + + + 576 + 485 + 392 + + + 577 + 486 + 391 + + + 578 + 487 + 405 + + + 579 + 488 + 373 + + + 580 + 489 + 398 + + + 581 + 490 + 362 + + + 582 + 491 + 362 + + + 583 + 492 + 360 + + + 584 + 493 + 362 + + + 585 + 494 + 363 + + + 586 + 495 + 341 + + + 587 + 496 + 386 + + + 588 + 497 + 378 + + + 589 + 498 + 363 + + + 590 + 499 + 366 + + + 591 + 500 + 360 + + + 592 + 501 + 364 + + + 593 + 502 + 343 + + + 594 + 503 + 385 + + + 595 + 504 + 324 + + + 596 + 505 + 376 + + + 597 + 506 + 365 + + + 598 + 507 + 355 + + + 599 + 508 + 385 + + + 600 + 509 + 350 + + + 601 + 510 + 388 + + + 602 + 511 + 362 + + + 603 + 512 + 337 + + + 604 + 513 + 341 + + + 605 + 514 + 347 + + + 606 + 515 + 334 + + + 607 + 516 + 329 + + + 608 + 517 + 301 + + + 609 + 518 + 344 + + + 610 + 519 + 377 + + + 611 + 520 + 359 + + + 612 + 521 + 319 + + + 613 + 522 + 327 + + + 614 + 523 + 353 + + + 615 + 524 + 333 + + + 616 + 525 + 364 + + + 617 + 526 + 341 + + + 618 + 527 + 329 + + + 619 + 528 + 326 + + + 620 + 529 + 321 + + + 621 + 530 + 315 + + + 622 + 531 + 320 + + + 623 + 532 + 344 + + + 624 + 533 + 323 + + + 625 + 534 + 329 + + + 626 + 535 + 326 + + + 627 + 536 + 340 + + + 628 + 537 + 294 + + + 629 + 538 + 350 + + + 630 + 539 + 324 + + + 631 + 540 + 305 + + + 632 + 541 + 335 + + + 633 + 542 + 307 + + + 634 + 543 + 323 + + + 635 + 544 + 319 + + + 636 + 545 + 337 + + + 637 + 546 + 309 + + + 638 + 547 + 327 + + + 639 + 548 + 327 + + + 640 + 549 + 321 + + + 641 + 550 + 309 + + + 642 + 551 + 304 + + + 643 + 552 + 340 + + + 644 + 553 + 277 + + + 645 + 554 + 263 + + + 646 + 555 + 319 + + + 647 + 556 + 300 + + + 648 + 557 + 312 + + + 649 + 558 + 318 + + + 650 + 559 + 306 + + + 651 + 560 + 325 + + + 652 + 561 + 296 + + + 653 + 562 + 342 + + + 654 + 563 + 304 + + + 655 + 564 + 296 + + + 656 + 565 + 310 + + + 657 + 566 + 290 + + + 658 + 567 + 288 + + + 659 + 568 + 307 + + + 660 + 569 + 299 + + + 661 + 570 + 290 + + + 662 + 571 + 294 + + + 663 + 572 + 297 + + + 664 + 573 + 269 + + + 665 + 574 + 275 + + + 666 + 575 + 306 + + + 667 + 576 + 298 + + + 668 + 577 + 276 + + + 669 + 578 + 290 + + + 670 + 579 + 317 + + + 671 + 580 + 289 + + + 672 + 581 + 291 + + + 673 + 582 + 289 + + + 674 + 583 + 264 + + + 675 + 584 + 284 + + + 676 + 585 + 263 + + + 677 + 586 + 276 + + + 678 + 587 + 284 + + + 679 + 588 + 263 + + + 680 + 589 + 279 + + + 681 + 590 + 268 + + + 682 + 591 + 292 + + + 683 + 592 + 281 + + + 684 + 593 + 316 + + + 685 + 594 + 287 + + + 686 + 595 + 277 + + + 687 + 596 + 288 + + + 688 + 597 + 279 + + + 689 + 598 + 269 + + + 690 + 599 + 280 + + + 691 + 600 + 280 + + + 692 + 601 + 286 + + + 693 + 602 + 255 + + + 694 + 603 + 260 + + + 695 + 604 + 286 + + + 696 + 605 + 255 + + + 697 + 606 + 272 + + + 698 + 607 + 289 + + + 699 + 608 + 268 + + + 700 + 609 + 286 + + + 701 + 610 + 281 + + + 702 + 611 + 249 + + + 703 + 612 + 260 + + + 704 + 613 + 286 + + + 705 + 614 + 238 + + + 706 + 615 + 276 + + + 707 + 616 + 265 + + + 708 + 617 + 252 + + + 709 + 618 + 240 + + + 710 + 619 + 253 + + + 711 + 620 + 273 + + + 712 + 621 + 267 + + + 713 + 622 + 252 + + + 714 + 623 + 248 + + + 715 + 624 + 232 + + + 716 + 625 + 272 + + + 717 + 626 + 259 + + + 718 + 627 + 260 + + + 719 + 628 + 268 + + + 720 + 629 + 263 + + + 721 + 630 + 223 + + + 722 + 631 + 244 + + + 723 + 632 + 250 + + + 724 + 633 + 225 + + + 725 + 634 + 274 + + + 726 + 635 + 254 + + + 727 + 636 + 253 + + + 728 + 637 + 245 + + + 729 + 638 + 252 + + + 730 + 639 + 233 + + + 731 + 640 + 212 + + + 732 + 641 + 254 + + + 733 + 642 + 230 + + + 734 + 643 + 256 + + + 735 + 644 + 257 + + + 736 + 645 + 229 + + + 737 + 646 + 216 + + + 738 + 647 + 262 + + + 739 + 648 + 216 + + + 740 + 649 + 244 + + + 741 + 650 + 207 + + + 742 + 651 + 243 + + + 743 + 652 + 249 + + + 744 + 653 + 244 + + + 745 + 654 + 252 + + + 746 + 655 + 207 + + + 747 + 656 + 247 + + + 748 + 657 + 212 + + + 749 + 658 + 243 + + + 750 + 659 + 239 + + + 751 + 660 + 226 + + + 752 + 661 + 232 + + + 753 + 662 + 222 + + + 754 + 663 + 226 + + + 755 + 664 + 233 + + + 756 + 665 + 235 + + + 757 + 666 + 225 + + + 758 + 667 + 221 + + + 759 + 668 + 229 + + + 760 + 669 + 218 + + + 761 + 670 + 245 + + + 762 + 671 + 211 + + + 763 + 672 + 238 + + + 764 + 673 + 211 + + + 765 + 674 + 234 + + + 766 + 675 + 210 + + + 767 + 676 + 215 + + + 768 + 677 + 233 + + + 769 + 678 + 198 + + + 770 + 679 + 236 + + + 771 + 680 + 217 + + + 772 + 681 + 231 + + + 773 + 682 + 238 + + + 774 + 683 + 206 + + + 775 + 684 + 227 + + + 776 + 685 + 199 + + + 777 + 686 + 206 + + + 778 + 687 + 219 + + + 779 + 688 + 220 + + + 780 + 689 + 190 + + + 781 + 690 + 208 + + + 782 + 691 + 182 + + + 783 + 692 + 209 + + + 784 + 693 + 209 + + + 785 + 694 + 228 + + + 786 + 695 + 211 + + + 787 + 696 + 231 + + + 788 + 697 + 184 + + + 789 + 698 + 214 + + + 790 + 699 + 225 + + + 791 + 700 + 245 + + + 792 + 701 + 199 + + + 793 + 702 + 190 + + + 794 + 703 + 222 + + + 795 + 704 + 212 + + + 796 + 705 + 178 + + + 797 + 706 + 207 + + + 798 + 707 + 207 + + + 799 + 708 + 217 + + + 800 + 709 + 206 + + + 801 + 710 + 191 + + + 802 + 711 + 213 + + + 803 + 712 + 191 + + + 804 + 713 + 238 + + + 805 + 714 + 210 + + + 806 + 715 + 198 + + + 807 + 716 + 213 + + + 808 + 717 + 203 + + + 809 + 718 + 214 + + + 810 + 719 + 204 + + + 811 + 720 + 185 + + + 812 + 721 + 201 + + + 813 + 722 + 189 + + + 814 + 723 + 190 + + + 815 + 724 + 180 + + + 816 + 725 + 184 + + + 817 + 726 + 198 + + + 818 + 727 + 198 + + + 819 + 728 + 162 + + + 820 + 729 + 200 + + + 821 + 730 + 196 + + + 822 + 731 + 199 + + + 823 + 732 + 177 + + + 824 + 733 + 172 + + + 825 + 734 + 183 + + + 826 + 735 + 193 + + + 827 + 736 + 185 + + + 828 + 737 + 192 + + + 829 + 738 + 169 + + + 830 + 739 + 191 + + + 831 + 740 + 199 + + + 832 + 741 + 156 + + + 833 + 742 + 227 + + + 834 + 743 + 189 + + + 835 + 744 + 199 + + + 836 + 745 + 181 + + + 837 + 746 + 186 + + + 838 + 747 + 168 + + + 839 + 748 + 177 + + + 840 + 749 + 198 + + + 841 + 750 + 187 + + + 842 + 751 + 177 + + + 843 + 752 + 202 + + + 844 + 753 + 187 + + + 845 + 754 + 194 + + + 846 + 755 + 194 + + + 847 + 756 + 177 + + + 848 + 757 + 177 + + + 849 + 758 + 170 + + + 850 + 759 + 183 + + + 851 + 760 + 199 + + + 852 + 761 + 203 + + + 853 + 762 + 204 + + + 854 + 763 + 188 + + + 855 + 764 + 220 + + + 856 + 765 + 179 + + + 857 + 766 + 186 + + + 858 + 767 + 191 + + + 859 + 768 + 191 + + + 860 + 769 + 210 + + + 861 + 770 + 175 + + + 862 + 771 + 179 + + + 863 + 772 + 171 + + + 864 + 773 + 190 + + + 865 + 774 + 187 + + + 866 + 775 + 172 + + + 867 + 776 + 177 + + + 868 + 777 + 184 + + + 869 + 778 + 162 + + + 870 + 779 + 168 + + + 871 + 780 + 165 + + + 872 + 781 + 150 + + + 873 + 782 + 168 + + + 874 + 783 + 202 + + + 875 + 784 + 150 + + + 876 + 785 + 158 + + + 877 + 786 + 172 + + + 878 + 787 + 173 + + + 879 + 788 + 171 + + + 880 + 789 + 163 + + + 881 + 790 + 221 + + + 882 + 791 + 181 + + + 883 + 792 + 164 + + + 884 + 793 + 193 + + + 885 + 794 + 161 + + + 886 + 795 + 184 + + + 887 + 796 + 164 + + + 888 + 797 + 180 + + + 889 + 798 + 168 + + + 890 + 799 + 153 + + + 891 + 800 + 169 + + + 892 + 801 + 164 + + + 893 + 802 + 152 + + + 894 + 803 + 174 + + + 895 + 804 + 166 + + + 896 + 805 + 160 + + + 897 + 806 + 186 + + + 898 + 807 + 160 + + + 899 + 808 + 189 + + + 900 + 809 + 136 + + + 901 + 810 + 174 + + + 902 + 811 + 166 + + + 903 + 812 + 152 + + + 904 + 813 + 193 + + + 905 + 814 + 151 + + + 906 + 815 + 182 + + + 907 + 816 + 161 + + + 908 + 817 + 167 + + + 909 + 818 + 157 + + + 910 + 819 + 161 + + + 911 + 820 + 162 + + + 912 + 821 + 176 + + + 913 + 822 + 171 + + + 914 + 823 + 166 + + + 915 + 824 + 147 + + + 916 + 825 + 174 + + + 917 + 826 + 157 + + + 918 + 827 + 154 + + + 919 + 828 + 156 + + + 920 + 829 + 177 + + + 921 + 830 + 167 + + + 922 + 831 + 179 + + + 923 + 832 + 173 + + + 924 + 833 + 172 + + + 925 + 834 + 174 + + + 926 + 835 + 176 + + + 927 + 836 + 161 + + + 928 + 837 + 161 + + + 929 + 838 + 183 + + + 930 + 839 + 162 + + + 931 + 840 + 148 + + + 932 + 841 + 155 + + + 933 + 842 + 137 + + + 934 + 843 + 154 + + + 935 + 844 + 177 + + + 936 + 845 + 149 + + + 937 + 846 + 147 + + + 938 + 847 + 160 + + + 939 + 848 + 144 + + + 940 + 849 + 180 + + + 941 + 850 + 170 + + + 942 + 851 + 160 + + + 943 + 852 + 185 + + + 944 + 853 + 156 + + + 945 + 854 + 149 + + + 946 + 855 + 176 + + + 947 + 856 + 137 + + + 948 + 857 + 137 + + + 949 + 858 + 141 + + + 950 + 859 + 151 + + + 951 + 860 + 149 + + + 952 + 861 + 154 + + + 953 + 862 + 151 + + + 954 + 863 + 164 + + + 955 + 864 + 156 + + + 956 + 865 + 166 + + + 957 + 866 + 160 + + + 958 + 867 + 175 + + + 959 + 868 + 166 + + + 960 + 869 + 137 + + + 961 + 870 + 157 + + + 962 + 871 + 153 + + + 963 + 872 + 176 + + + 964 + 873 + 151 + + + 965 + 874 + 151 + + + 966 + 875 + 158 + + + 967 + 876 + 158 + + + 968 + 877 + 166 + + + 969 + 878 + 145 + + + 970 + 879 + 144 + + + 971 + 880 + 162 + + + 972 + 881 + 154 + + + 973 + 882 + 137 + + + 974 + 883 + 153 + + + 975 + 884 + 155 + + + 976 + 885 + 168 + + + 977 + 886 + 150 + + + 978 + 887 + 148 + + + 979 + 888 + 170 + + + 980 + 889 + 136 + + + 981 + 890 + 172 + + + 982 + 891 + 149 + + + 983 + 892 + 136 + + + 984 + 893 + 162 + + + 985 + 894 + 156 + + + 986 + 895 + 158 + + + 987 + 896 + 152 + + + 988 + 897 + 135 + + + 989 + 898 + 160 + + + 990 + 899 + 155 + + + 991 + 900 + 160 + + + 992 + 901 + 148 + + + 993 + 902 + 144 + + + 994 + 903 + 138 + + + 995 + 904 + 158 + + + 996 + 905 + 161 + + + 997 + 906 + 169 + + + 998 + 907 + 153 + + + 999 + 908 + 163 + + + 1000 + 909 + 130 + + + 1001 + 910 + 170 + + + 1002 + 911 + 161 + + + 1003 + 912 + 158 + + + 1004 + 913 + 173 + + + 1005 + 914 + 168 + + + 1006 + 915 + 149 + + + 1007 + 916 + 140 + + + 1008 + 917 + 151 + + + 1009 + 918 + 174 + + + 1010 + 919 + 187 + + + 1011 + 920 + 144 + + + 1012 + 921 + 135 + + + 1013 + 922 + 169 + + + 1014 + 923 + 162 + + + 1015 + 924 + 158 + + + 1016 + 925 + 152 + + + 1017 + 926 + 139 + + + 1018 + 927 + 132 + + + 1019 + 928 + 136 + + + 1020 + 929 + 163 + + + 1021 + 930 + 176 + + + 1022 + 931 + 168 + + + 1023 + 932 + 160 + + + 1024 + 933 + 149 + + + 1025 + 934 + 146 + + + 1026 + 935 + 147 + + + 1027 + 936 + 173 + + + 1028 + 937 + 147 + + + 1029 + 938 + 155 + + + 1030 + 939 + 145 + + + 1031 + 940 + 155 + + + 1032 + 941 + 143 + + + 1033 + 942 + 167 + + + 1034 + 943 + 175 + + + 1035 + 944 + 167 + + + 1036 + 945 + 157 + + + 1037 + 946 + 146 + + + 1038 + 947 + 162 + + + 1039 + 948 + 163 + + + 1040 + 949 + 176 + + + 1041 + 950 + 147 + + + 1042 + 951 + 155 + + + 1043 + 952 + 155 + + + 1044 + 953 + 176 + + + 1045 + 954 + 149 + + + 1046 + 955 + 162 + + + 1047 + 956 + 170 + + + 1048 + 957 + 163 + + + 1049 + 958 + 148 + + + 1050 + 959 + 174 + + + 1051 + 960 + 169 + + + 1052 + 961 + 130 + + + 1053 + 962 + 172 + + + 1054 + 963 + 147 + + + 1055 + 964 + 173 + + + 1056 + 965 + 148 + + + 1057 + 966 + 152 + + + 1058 + 967 + 140 + + + 1059 + 968 + 149 + + + 1060 + 969 + 163 + + + 1061 + 970 + 124 + + + 1062 + 971 + 143 + + + 1063 + 972 + 140 + + + 1064 + 973 + 135 + + + 1065 + 974 + 137 + + + 1066 + 975 + 156 + + + 1067 + 976 + 167 + + + 1068 + 977 + 150 + + + 1069 + 978 + 143 + + + 1070 + 979 + 147 + + + 1071 + 980 + 130 + + + 1072 + 981 + 138 + + + 1073 + 982 + 150 + + + 1074 + 983 + 163 + + + 1075 + 984 + 151 + + + 1076 + 985 + 131 + + + 1077 + 986 + 166 + + + 1078 + 987 + 160 + + + 1079 + 988 + 147 + + + 1080 + 989 + 125 + + + 1081 + 990 + 146 + + + 1082 + 991 + 139 + + + 1083 + 992 + 138 + + + 1084 + 993 + 149 + + + 1085 + 994 + 130 + + + 1086 + 995 + 156 + + + 1087 + 996 + 158 + + + 1088 + 997 + 162 + + + 1089 + 998 + 142 + + + 1090 + 999 + 172 + + + 1091 + 1000 + 140 + + + 1092 + 1001 + 171 + + + 1093 + 1002 + 136 + + + 1094 + 1003 + 156 + + + 1095 + 1004 + 140 + + + 1096 + 1005 + 147 + + + 1097 + 1006 + 163 + + + 1098 + 1007 + 151 + + + 1099 + 1008 + 141 + + + 1100 + 1009 + 158 + + + 1101 + 1010 + 140 + + + 1102 + 1011 + 128 + + + 1103 + 1012 + 135 + + + 1104 + 1013 + 137 + + + 1105 + 1014 + 164 + + + 1106 + 1015 + 143 + + + 1107 + 1016 + 129 + + + 1108 + 1017 + 133 + + + 1109 + 1018 + 141 + + + 1110 + 1019 + 137 + + + 1111 + 1020 + 128 + + + 1112 + 1021 + 146 + + + 1113 + 1022 + 144 + + + 1114 + 1023 + 129 + + + 1115 + 1024 + 154 + + + 1116 + 1025 + 118 + + + 1117 + 1026 + 163 + + + 1118 + 1027 + 130 + + + 1119 + 1028 + 152 + + + 1120 + 1029 + 109 + + + 1121 + 1030 + 139 + + + 1122 + 1031 + 139 + + + 1123 + 1032 + 157 + + + 1124 + 1033 + 159 + + + 1125 + 1034 + 136 + + + 1126 + 1035 + 164 + + + 1127 + 1036 + 148 + + + 1128 + 1037 + 124 + + + 1129 + 1038 + 167 + + + 1130 + 1039 + 146 + + + 1131 + 1040 + 140 + + + 1132 + 1041 + 148 + + + 1133 + 1042 + 139 + + + 1134 + 1043 + 148 + + + 1135 + 1044 + 149 + + + 1136 + 1045 + 161 + + + 1137 + 1046 + 160 + + + 1138 + 1047 + 148 + + + 1139 + 1048 + 140 + + + 1140 + 1049 + 136 + + + 1141 + 1050 + 153 + + + 1142 + 1051 + 138 + + + 1143 + 1052 + 171 + + + 1144 + 1053 + 134 + + + 1145 + 1054 + 144 + + + 1146 + 1055 + 147 + + + 1147 + 1056 + 148 + + + 1148 + 1057 + 145 + + + 1149 + 1058 + 132 + + + 1150 + 1059 + 150 + + + 1151 + 1060 + 155 + + + 1152 + 1061 + 164 + + + 1153 + 1062 + 138 + + + 1154 + 1063 + 171 + + + 1155 + 1064 + 129 + + + 1156 + 1065 + 121 + + + 1157 + 1066 + 127 + + + 1158 + 1067 + 146 + + + 1159 + 1068 + 156 + + + 1160 + 1069 + 146 + + + 1161 + 1070 + 121 + + + 1162 + 1071 + 176 + + + 1163 + 1072 + 142 + + + 1164 + 1073 + 142 + + + 1165 + 1074 + 135 + + + 1166 + 1075 + 152 + + + 1167 + 1076 + 126 + + + 1168 + 1077 + 163 + + + 1169 + 1078 + 134 + + + 1170 + 1079 + 129 + + + 1171 + 1080 + 139 + + + 1172 + 1081 + 129 + + + 1173 + 1082 + 141 + + + 1174 + 1083 + 178 + + + 1175 + 1084 + 133 + + + 1176 + 1085 + 153 + + + 1177 + 1086 + 148 + + + 1178 + 1087 + 150 + + + 1179 + 1088 + 142 + + + 1180 + 1089 + 148 + + + 1181 + 1090 + 150 + + + 1182 + 1091 + 149 + + + 1183 + 1092 + 146 + + + 1184 + 1093 + 152 + + + 1185 + 1094 + 135 + + + 1186 + 1095 + 147 + + + 1187 + 1096 + 136 + + + 1188 + 1097 + 143 + + + 1189 + 1098 + 116 + + + 1190 + 1099 + 126 + + + 1191 + 1100 + 134 + + + 1192 + 1101 + 141 + + + 1193 + 1102 + 167 + + + 1194 + 1103 + 136 + + + 1195 + 1104 + 124 + + + 1196 + 1105 + 152 + + + 1197 + 1106 + 135 + + + 1198 + 1107 + 120 + + + 1199 + 1108 + 136 + + + 1200 + 1109 + 132 + + + 1201 + 1110 + 130 + + + 1202 + 1111 + 140 + + + 1203 + 1112 + 144 + + + 1204 + 1113 + 119 + + + 1205 + 1114 + 160 + + + 1206 + 1115 + 121 + + + 1207 + 1116 + 136 + + + 1208 + 1117 + 135 + + + 1209 + 1118 + 138 + + + 1210 + 1119 + 135 + + + 1211 + 1120 + 145 + + + 1212 + 1121 + 151 + + + 1213 + 1122 + 146 + + + 1214 + 1123 + 131 + + + 1215 + 1124 + 129 + + + 1216 + 1125 + 126 + + + 1217 + 1126 + 134 + + + 1218 + 1127 + 122 + + + 1219 + 1128 + 145 + + + 1220 + 1129 + 119 + + + 1221 + 1130 + 125 + + + 1222 + 1131 + 125 + + + 1223 + 1132 + 147 + + + 1224 + 1133 + 162 + + + 1225 + 1134 + 162 + + + 1226 + 1135 + 170 + + + 1227 + 1136 + 155 + + + 1228 + 1137 + 177 + + + 1229 + 1138 + 152 + + + 1230 + 1139 + 130 + + + 1231 + 1140 + 123 + + + 1232 + 1141 + 128 + + + 1233 + 1142 + 161 + + + 1234 + 1143 + 142 + + + 1235 + 1144 + 131 + + + 1236 + 1145 + 134 + + + 1237 + 1146 + 121 + + + 1238 + 1147 + 138 + + + 1239 + 1148 + 125 + + + 1240 + 1149 + 128 + + + 1241 + 1150 + 129 + + + 1242 + 1151 + 136 + + + 1243 + 1152 + 126 + + + 1244 + 1153 + 144 + + + 1245 + 1154 + 125 + + + 1246 + 1155 + 141 + + + 1247 + 1156 + 114 + + + 1248 + 1157 + 122 + + + 1249 + 1158 + 123 + + + 1250 + 1159 + 130 + + + 1251 + 1160 + 122 + + + 1252 + 1161 + 119 + + + 1253 + 1162 + 138 + + + 1254 + 1163 + 109 + + + 1255 + 1164 + 132 + + + 1256 + 1165 + 141 + + + 1257 + 1166 + 119 + + + 1258 + 1167 + 123 + + + 1259 + 1168 + 123 + + + 1260 + 1169 + 137 + + + 1261 + 1170 + 143 + + + 1262 + 1171 + 135 + + + 1263 + 1172 + 132 + + + 1264 + 1173 + 125 + + + 1265 + 1174 + 126 + + + 1266 + 1175 + 124 + + + 1267 + 1176 + 129 + + + 1268 + 1177 + 124 + + + 1269 + 1178 + 144 + + + 1270 + 1179 + 129 + + + 1271 + 1180 + 137 + + + 1272 + 1181 + 139 + + + 1273 + 1182 + 122 + + + 1274 + 1183 + 128 + + + 1275 + 1184 + 134 + + + 1276 + 1185 + 136 + + + 1277 + 1186 + 117 + + + 1278 + 1187 + 100 + + + 1279 + 1188 + 126 + + + 1280 + 1189 + 128 + + + 1281 + 1190 + 119 + + + 1282 + 1191 + 126 + + + 1283 + 1192 + 126 + + + 1284 + 1193 + 119 + + + 1285 + 1194 + 115 + + + 1286 + 1195 + 129 + + + 1287 + 1196 + 121 + + + 1288 + 1197 + 118 + + + 1289 + 1198 + 126 + + + 1290 + 1199 + 110 + + + 1291 + 1200 + 108 + + + 1292 + 1201 + 130 + + + 1293 + 1202 + 116 + + + 1294 + 1203 + 114 + + + 1295 + 1204 + 112 + + + 1296 + 1205 + 120 + + + 1297 + 1206 + 129 + + + 1298 + 1207 + 110 + + + 1299 + 1208 + 132 + + + 1300 + 1209 + 119 + + + 1301 + 1210 + 133 + + + 1302 + 1211 + 111 + + + 1303 + 1212 + 122 + + + 1304 + 1213 + 122 + + + 1305 + 1214 + 117 + + + 1306 + 1215 + 130 + + + 1307 + 1216 + 114 + + + 1308 + 1217 + 137 + + + 1309 + 1218 + 113 + + + 1310 + 1219 + 133 + + + 1311 + 1220 + 133 + + + 1312 + 1221 + 119 + + + 1313 + 1222 + 117 + + + 1314 + 1223 + 117 + + + 1315 + 1224 + 114 + + + 1316 + 1225 + 112 + + + 1317 + 1226 + 109 + + + 1318 + 1227 + 111 + + + 1319 + 1228 + 133 + + + 1320 + 1229 + 103 + + + 1321 + 1230 + 121 + + + 1322 + 1231 + 108 + + + 1323 + 1232 + 125 + + + 1324 + 1233 + 110 + + + 1325 + 1234 + 132 + + + 1326 + 1235 + 124 + + + 1327 + 1236 + 103 + + + 1328 + 1237 + 108 + + + 1329 + 1238 + 103 + + + 1330 + 1239 + 111 + + + 1331 + 1240 + 113 + + + 1332 + 1241 + 120 + + + 1333 + 1242 + 98 + + + 1334 + 1243 + 92 + + + 1335 + 1244 + 106 + + + 1336 + 1245 + 114 + + + 1337 + 1246 + 95 + + + 1338 + 1247 + 99 + + + 1339 + 1248 + 104 + + + 1340 + 1249 + 112 + + + 1341 + 1250 + 105 + + + 1342 + 1251 + 106 + + + 1343 + 1252 + 104 + + + 1344 + 1253 + 127 + + + 1345 + 1254 + 100 + + + 1346 + 1255 + 109 + + + 1347 + 1256 + 102 + + + 1348 + 1257 + 104 + + + 1349 + 1258 + 106 + + + 1350 + 1259 + 105 + + + 1351 + 1260 + 119 + + + 1352 + 1261 + 99 + + + 1353 + 1262 + 113 + + + 1354 + 1263 + 88 + + + 1355 + 1264 + 113 + + + 1356 + 1265 + 108 + + + 1357 + 1266 + 82 + + + 1358 + 1267 + 75 + + + 1359 + 1268 + 97 + + + 1360 + 1269 + 108 + + + 1361 + 1270 + 94 + + + 1362 + 1271 + 99 + + + 1363 + 1272 + 130 + + + 1364 + 1273 + 100 + + + 1365 + 1274 + 99 + + + 1366 + 1275 + 112 + + + 1367 + 1276 + 95 + + + 1368 + 1277 + 93 + + + 1369 + 1278 + 97 + + + 1370 + 1279 + 101 + + + 1371 + 1280 + 110 + + + 1372 + 1281 + 100 + + + 1373 + 1282 + 114 + + + 1374 + 1283 + 104 + + + 1375 + 1284 + 94 + + + 1376 + 1285 + 110 + + + 1377 + 1286 + 112 + + + 1378 + 1287 + 103 + + + 1379 + 1288 + 89 + + + 1380 + 1289 + 99 + + + 1381 + 1290 + 113 + + + 1382 + 1291 + 99 + + + 1383 + 1292 + 94 + + + 1384 + 1293 + 96 + + + 1385 + 1294 + 94 + + + 1386 + 1295 + 100 + + + 1387 + 1296 + 80 + + + 1388 + 1297 + 98 + + + 1389 + 1298 + 98 + + + 1390 + 1299 + 97 + + + 1391 + 1300 + 97 + + + 1392 + 1301 + 94 + + + 1393 + 1302 + 94 + + + 1394 + 1303 + 96 + + + 1395 + 1304 + 98 + + + 1396 + 1305 + 89 + + + 1397 + 1306 + 86 + + + 1398 + 1307 + 91 + + + 1399 + 1308 + 102 + + + 1400 + 1309 + 88 + + + 1401 + 1310 + 76 + + + 1402 + 1311 + 85 + + + 1403 + 1312 + 110 + + + 1404 + 1313 + 98 + + + 1405 + 1314 + 94 + + + 1406 + 1315 + 99 + + + 1407 + 1316 + 97 + + + 1408 + 1317 + 93 + + + 1409 + 1318 + 89 + + + 1410 + 1319 + 96 + + + 1411 + 1320 + 109 + + + 1412 + 1321 + 86 + + + 1413 + 1322 + 86 + + + 1414 + 1323 + 88 + + + 1415 + 1324 + 80 + + + 1416 + 1325 + 107 + + + 1417 + 1326 + 86 + + + 1418 + 1327 + 96 + + + 1419 + 1328 + 104 + + + 1420 + 1329 + 77 + + + 1421 + 1330 + 101 + + + 1422 + 1331 + 92 + + + 1423 + 1332 + 101 + + + 1424 + 1333 + 83 + + + 1425 + 1334 + 85 + + + 1426 + 1335 + 89 + + + 1427 + 1336 + 93 + + + 1428 + 1337 + 89 + + + 1429 + 1338 + 103 + + + 1430 + 1339 + 91 + + + 1431 + 1340 + 90 + + + 1432 + 1341 + 81 + + + 1433 + 1342 + 118 + + + 1434 + 1343 + 87 + + + 1435 + 1344 + 89 + + + 1436 + 1345 + 93 + + + 1437 + 1346 + 83 + + + 1438 + 1347 + 84 + + + 1439 + 1348 + 103 + + + 1440 + 1349 + 84 + + + 1441 + 1350 + 84 + + + 1442 + 1351 + 106 + + + 1443 + 1352 + 86 + + + 1444 + 1353 + 91 + + + 1445 + 1354 + 89 + + + 1446 + 1355 + 100 + + + 1447 + 1356 + 92 + + + 1448 + 1357 + 83 + + + 1449 + 1358 + 90 + + + 1450 + 1359 + 73 + + + 1451 + 1360 + 82 + + + 1452 + 1361 + 94 + + + 1453 + 1362 + 84 + + + 1454 + 1363 + 101 + + + 1455 + 1364 + 95 + + + 1456 + 1365 + 70 + + + 1457 + 1366 + 92 + + + 1458 + 1367 + 91 + + + 1459 + 1368 + 96 + + + 1460 + 1369 + 87 + + + 1461 + 1370 + 90 + + + 1462 + 1371 + 87 + + + 1463 + 1372 + 96 + + + 1464 + 1373 + 88 + + + 1465 + 1374 + 101 + + + 1466 + 1375 + 82 + + + 1467 + 1376 + 89 + + + 1468 + 1377 + 94 + + + 1469 + 1378 + 83 + + + 1470 + 1379 + 78 + + + 1471 + 1380 + 72 + + + 1472 + 1381 + 80 + + + 1473 + 1382 + 82 + + + 1474 + 1383 + 79 + + + 1475 + 1384 + 77 + + + 1476 + 1385 + 96 + + + 1477 + 1386 + 85 + + + 1478 + 1387 + 92 + + + 1479 + 1388 + 89 + + + 1480 + 1389 + 89 + + + 1481 + 1390 + 92 + + + 1482 + 1391 + 90 + + + 1483 + 1392 + 86 + + + 1484 + 1393 + 73 + + + 1485 + 1394 + 83 + + + 1486 + 1395 + 78 + + + 1487 + 1396 + 86 + + + 1488 + 1397 + 78 + + + 1489 + 1398 + 84 + + + 1490 + 1399 + 77 + + + 1491 + 1400 + 71 + + + 1492 + 1401 + 74 + + + 1493 + 1402 + 80 + + + 1494 + 1403 + 90 + + + 1495 + 1404 + 83 + + + 1496 + 1405 + 82 + + + 1497 + 1406 + 85 + + + 1498 + 1407 + 76 + + + 1499 + 1408 + 94 + + + 1500 + 1409 + 68 + + + 1501 + 1410 + 83 + + + 1502 + 1411 + 77 + + + 1503 + 1412 + 80 + + + 1504 + 1413 + 93 + + + 1505 + 1414 + 69 + + + 1506 + 1415 + 85 + + + 1507 + 1416 + 78 + + + 1508 + 1417 + 75 + + + 1509 + 1418 + 82 + + + 1510 + 1419 + 79 + + + 1511 + 1420 + 92 + + + 1512 + 1421 + 93 + + + 1513 + 1422 + 65 + + + 1514 + 1423 + 71 + + + 1515 + 1424 + 83 + + + 1516 + 1425 + 83 + + + 1517 + 1426 + 77 + + + 1518 + 1427 + 81 + + + 1519 + 1428 + 60 + + + 1520 + 1429 + 96 + + + 1521 + 1430 + 67 + + + 1522 + 1431 + 89 + + + 1523 + 1432 + 72 + + + 1524 + 1433 + 68 + + + 1525 + 1434 + 81 + + + 1526 + 1435 + 66 + + + 1527 + 1436 + 81 + + + 1528 + 1437 + 82 + + + 1529 + 1438 + 55 + + + 1530 + 1439 + 69 + + + 1531 + 1440 + 81 + + + 1532 + 1441 + 71 + + + 1533 + 1442 + 72 + + + 1534 + 1443 + 61 + + + 1535 + 1444 + 77 + + + 1536 + 1445 + 81 + + + 1537 + 1446 + 67 + + + 1538 + 1447 + 68 + + + 1539 + 1448 + 68 + + + 1540 + 1449 + 68 + + + 1541 + 1450 + 68 + + + 1542 + 1451 + 69 + + + 1543 + 1452 + 85 + + + 1544 + 1453 + 68 + + + 1545 + 1454 + 73 + + + 1546 + 1455 + 77 + + + 1547 + 1456 + 69 + + + 1548 + 1457 + 66 + + + 1549 + 1458 + 72 + + + 1550 + 1459 + 59 + + + 1551 + 1460 + 73 + + + 1552 + 1461 + 74 + + + 1553 + 1462 + 65 + + + 1554 + 1463 + 66 + + + 1555 + 1464 + 63 + + + 1556 + 1465 + 57 + + + 1557 + 1466 + 63 + + + 1558 + 1467 + 73 + + + 1559 + 1468 + 71 + + + 1560 + 1469 + 77 + + + 1561 + 1470 + 59 + + + 1562 + 1471 + 55 + + + 1563 + 1472 + 83 + + + 1564 + 1473 + 67 + + + 1565 + 1474 + 78 + + + 1566 + 1475 + 79 + + + 1567 + 1476 + 65 + + + 1568 + 1477 + 64 + + + 1569 + 1478 + 67 + + + 1570 + 1479 + 72 + + + 1571 + 1480 + 62 + + + 1572 + 1481 + 77 + + + 1573 + 1482 + 75 + + + 1574 + 1483 + 53 + + + 1575 + 1484 + 59 + + + 1576 + 1485 + 79 + + + 1577 + 1486 + 69 + + + 1578 + 1487 + 65 + + + 1579 + 1488 + 59 + + + 1580 + 1489 + 65 + + + 1581 + 1490 + 60 + + + 1582 + 1491 + 68 + + + 1583 + 1492 + 72 + + + 1584 + 1493 + 80 + + + 1585 + 1494 + 82 + + + 1586 + 1495 + 57 + + + 1587 + 1496 + 66 + + + 1588 + 1497 + 63 + + + 1589 + 1498 + 61 + + + 1590 + 1499 + 82 + + + 1591 + 1500 + 56 + + + 1592 + 1501 + 67 + + + 1593 + 1502 + 74 + + + 1594 + 1503 + 71 + + + 1595 + 1504 + 57 + + + 1596 + 1505 + 75 + + + 1597 + 1506 + 80 + + + 1598 + 1507 + 65 + + + 1599 + 1508 + 63 + + + 1600 + 1509 + 58 + + + 1601 + 1510 + 75 + + + 1602 + 1511 + 63 + + + 1603 + 1512 + 86 + + + 1604 + 1513 + 76 + + + 1605 + 1514 + 75 + + + 1606 + 1515 + 52 + + + 1607 + 1516 + 65 + + + 1608 + 1517 + 50 + + + 1609 + 1518 + 68 + + + 1610 + 1519 + 61 + + + 1611 + 1520 + 61 + + + 1612 + 1521 + 59 + + + 1613 + 1522 + 64 + + + 1614 + 1523 + 55 + + + 1615 + 1524 + 48 + + + 1616 + 1525 + 67 + + + 1617 + 1526 + 69 + + + 1618 + 1527 + 73 + + + 1619 + 1528 + 60 + + + 1620 + 1529 + 63 + + + 1621 + 1530 + 61 + + + 1622 + 1531 + 82 + + + 1623 + 1532 + 45 + + + 1624 + 1533 + 51 + + + 1625 + 1534 + 64 + + + 1626 + 1535 + 69 + + + 1627 + 1536 + 51 + + + 1628 + 1537 + 69 + + + 1629 + 1538 + 49 + + + 1630 + 1539 + 66 + + + 1631 + 1540 + 58 + + + 1632 + 1541 + 59 + + + 1633 + 1542 + 67 + + + 1634 + 1543 + 57 + + + 1635 + 1544 + 61 + + + 1636 + 1545 + 52 + + + 1637 + 1546 + 50 + + + 1638 + 1547 + 61 + + + 1639 + 1548 + 66 + + + 1640 + 1549 + 59 + + + 1641 + 1550 + 60 + + + 1642 + 1551 + 66 + + + 1643 + 1552 + 63 + + + 1644 + 1553 + 65 + + + 1645 + 1554 + 60 + + + 1646 + 1555 + 60 + + + 1647 + 1556 + 58 + + + 1648 + 1557 + 57 + + + 1649 + 1558 + 64 + + + 1650 + 1559 + 54 + + + 1651 + 1560 + 52 + + + 1652 + 1561 + 62 + + + 1653 + 1562 + 63 + + + 1654 + 1563 + 69 + + + 1655 + 1564 + 66 + + + 1656 + 1565 + 54 + + + 1657 + 1566 + 56 + + + 1658 + 1567 + 55 + + + 1659 + 1568 + 72 + + + 1660 + 1569 + 51 + + + 1661 + 1570 + 53 + + + 1662 + 1571 + 67 + + + 1663 + 1572 + 70 + + + 1664 + 1573 + 51 + + + 1665 + 1574 + 41 + + + 1666 + 1575 + 49 + + + 1667 + 1576 + 56 + + + 1668 + 1577 + 47 + + + 1669 + 1578 + 71 + + + 1670 + 1579 + 64 + + + 1671 + 1580 + 51 + + + 1672 + 1581 + 64 + + + 1673 + 1582 + 49 + + + 1674 + 1583 + 41 + + + 1675 + 1584 + 56 + + + 1676 + 1585 + 45 + + + 1677 + 1586 + 59 + + + 1678 + 1587 + 50 + + + 1679 + 1588 + 47 + + + 1680 + 1589 + 54 + + + 1681 + 1590 + 64 + + + 1682 + 1591 + 71 + + + 1683 + 1592 + 53 + + + 1684 + 1593 + 52 + + + 1685 + 1594 + 60 + + + 1686 + 1595 + 65 + + + 1687 + 1596 + 57 + + + 1688 + 1597 + 46 + + + 1689 + 1598 + 47 + + + 1690 + 1599 + 59 + + + 1691 + 1600 + 49 + + + 1692 + 1601 + 65 + + + 1693 + 1602 + 57 + + + 1694 + 1603 + 60 + + + 1695 + 1604 + 51 + + + 1696 + 1605 + 53 + + + 1697 + 1606 + 58 + + + 1698 + 1607 + 45 + + + 1699 + 1608 + 50 + + + 1700 + 1609 + 47 + + + 1701 + 1610 + 55 + + + 1702 + 1611 + 53 + + + 1703 + 1612 + 49 + + + 1704 + 1613 + 49 + + + 1705 + 1614 + 64 + + + 1706 + 1615 + 63 + + + 1707 + 1616 + 42 + + + 1708 + 1617 + 44 + + + 1709 + 1618 + 65 + + + 1710 + 1619 + 51 + + + 1711 + 1620 + 55 + + + 1712 + 1621 + 63 + + + 1713 + 1622 + 58 + + + 1714 + 1623 + 48 + + + 1715 + 1624 + 55 + + + 1716 + 1625 + 38 + + + 1717 + 1626 + 46 + + + 1718 + 1627 + 48 + + + 1719 + 1628 + 58 + + + 1720 + 1629 + 48 + + + 1721 + 1630 + 55 + + + 1722 + 1631 + 48 + + + 1723 + 1632 + 49 + + + 1724 + 1633 + 54 + + + 1725 + 1634 + 46 + + + 1726 + 1635 + 56 + + + 1727 + 1636 + 48 + + + 1728 + 1637 + 58 + + + 1729 + 1638 + 55 + + + 1730 + 1639 + 41 + + + 1731 + 1640 + 42 + + + 1732 + 1641 + 52 + + + 1733 + 1642 + 55 + + + 1734 + 1643 + 52 + + + 1735 + 1644 + 43 + + + 1736 + 1645 + 44 + + + 1737 + 1646 + 53 + + + 1738 + 1647 + 56 + + + 1739 + 1648 + 56 + + + 1740 + 1649 + 50 + + + 1741 + 1650 + 43 + + + 1742 + 1651 + 53 + + + 1743 + 1652 + 46 + + + 1744 + 1653 + 62 + + + 1745 + 1654 + 54 + + + 1746 + 1655 + 54 + + + 1747 + 1656 + 58 + + + 1748 + 1657 + 40 + + + 1749 + 1658 + 38 + + + 1750 + 1659 + 57 + + + 1751 + 1660 + 41 + + + 1752 + 1661 + 49 + + + 1753 + 1662 + 50 + + + 1754 + 1663 + 55 + + + 1755 + 1664 + 45 + + + 1756 + 1665 + 55 + + + 1757 + 1666 + 45 + + + 1758 + 1667 + 46 + + + 1759 + 1668 + 47 + + + 1760 + 1669 + 36 + + + 1761 + 1670 + 48 + + + 1762 + 1671 + 46 + + + 1763 + 1672 + 55 + + + 1764 + 1673 + 44 + + + 1765 + 1674 + 44 + + + 1766 + 1675 + 38 + + + 1767 + 1676 + 41 + + + 1768 + 1677 + 65 + + + 1769 + 1678 + 54 + + + 1770 + 1679 + 34 + + + 1771 + 1680 + 48 + + + 1772 + 1681 + 43 + + + 1773 + 1682 + 39 + + + 1774 + 1683 + 48 + + + 1775 + 1684 + 41 + + + 1776 + 1685 + 44 + + + 1777 + 1686 + 42 + + + 1778 + 1687 + 56 + + + 1779 + 1688 + 41 + + + 1780 + 1689 + 39 + + + 1781 + 1690 + 43 + + + 1782 + 1691 + 46 + + + 1783 + 1692 + 59 + + + 1784 + 1693 + 47 + + + 1785 + 1694 + 42 + + + 1786 + 1695 + 43 + + + 1787 + 1696 + 53 + + + 1788 + 1697 + 40 + + + 1789 + 1698 + 32 + + + 1790 + 1699 + 38 + + + 1791 + 1700 + 42 + + + 1792 + 1701 + 49 + + + 1793 + 1702 + 38 + + + 1794 + 1703 + 43 + + + 1795 + 1704 + 45 + + + 1796 + 1705 + 55 + + + 1797 + 1706 + 38 + + + 1798 + 1707 + 54 + + + 1799 + 1708 + 44 + + + 1800 + 1709 + 48 + + + 1801 + 1710 + 42 + + + 1802 + 1711 + 46 + + + 1803 + 1712 + 45 + + + 1804 + 1713 + 47 + + + 1805 + 1714 + 36 + + + 1806 + 1715 + 51 + + + 1807 + 1716 + 54 + + + 1808 + 1717 + 54 + + + 1809 + 1718 + 37 + + + 1810 + 1719 + 30 + + + 1811 + 1720 + 38 + + + 1812 + 1721 + 47 + + + 1813 + 1722 + 43 + + + 1814 + 1723 + 37 + + + 1815 + 1724 + 43 + + + 1816 + 1725 + 39 + + + 1817 + 1726 + 45 + + + 1818 + 1727 + 45 + + + 1819 + 1728 + 43 + + + 1820 + 1729 + 37 + + + 1821 + 1730 + 30 + + + 1822 + 1731 + 32 + + + 1823 + 1732 + 46 + + + 1824 + 1733 + 49 + + + 1825 + 1734 + 34 + + + 1826 + 1735 + 30 + + + 1827 + 1736 + 44 + + + 1828 + 1737 + 39 + + + 1829 + 1738 + 48 + + + 1830 + 1739 + 47 + + + 1831 + 1740 + 47 + + + 1832 + 1741 + 44 + + + 1833 + 1742 + 39 + + + 1834 + 1743 + 48 + + + 1835 + 1744 + 46 + + + 1836 + 1745 + 32 + + + 1837 + 1746 + 37 + + + 1838 + 1747 + 46 + + + 1839 + 1748 + 38 + + + 1840 + 1749 + 32 + + + 1841 + 1750 + 34 + + + 1842 + 1751 + 44 + + + 1843 + 1752 + 40 + + + 1844 + 1753 + 38 + + + 1845 + 1754 + 41 + + + 1846 + 1755 + 37 + + + 1847 + 1756 + 37 + + + 1848 + 1757 + 36 + + + 1849 + 1758 + 38 + + + 1850 + 1759 + 37 + + + 1851 + 1760 + 48 + + + 1852 + 1761 + 40 + + + 1853 + 1762 + 43 + + + 1854 + 1763 + 39 + + + 1855 + 1764 + 39 + + + 1856 + 1765 + 50 + + + 1857 + 1766 + 35 + + + 1858 + 1767 + 29 + + + 1859 + 1768 + 47 + + + 1860 + 1769 + 34 + + + 1861 + 1770 + 34 + + + 1862 + 1771 + 37 + + + 1863 + 1772 + 42 + + + 1864 + 1773 + 43 + + + 1865 + 1774 + 42 + + + 1866 + 1775 + 50 + + + 1867 + 1776 + 42 + + + 1868 + 1777 + 38 + + + 1869 + 1778 + 36 + + + 1870 + 1779 + 41 + + + 1871 + 1780 + 36 + + + 1872 + 1781 + 30 + + + 1873 + 1782 + 44 + + + 1874 + 1783 + 50 + + + 1875 + 1784 + 45 + + + 1876 + 1785 + 37 + + + 1877 + 1786 + 29 + + + 1878 + 1787 + 36 + + + 1879 + 1788 + 42 + + + 1880 + 1789 + 50 + + + 1881 + 1790 + 29 + + + 1882 + 1791 + 50 + + + 1883 + 1792 + 42 + + + 1884 + 1793 + 38 + + + 1885 + 1794 + 44 + + + 1886 + 1795 + 42 + + + 1887 + 1796 + 48 + + + 1888 + 1797 + 42 + + + 1889 + 1798 + 39 + + + 1890 + 1799 + 46 + + + 1891 + 1800 + 34 + + + 1892 + 1801 + 31 + + + 1893 + 1802 + 33 + + + 1894 + 1803 + 31 + + + 1895 + 1804 + 43 + + + 1896 + 1805 + 42 + + + 1897 + 1806 + 27 + + + 1898 + 1807 + 26 + + + 1899 + 1808 + 53 + + + 1900 + 1809 + 49 + + + 1901 + 1810 + 40 + + + 1902 + 1811 + 32 + + + 1903 + 1812 + 48 + + + 1904 + 1813 + 42 + + + 1905 + 1814 + 34 + + + 1906 + 1815 + 40 + + + 1907 + 1816 + 31 + + + 1908 + 1817 + 42 + + + 1909 + 1818 + 37 + + + 1910 + 1819 + 29 + + + 1911 + 1820 + 46 + + + 1912 + 1821 + 45 + + + 1913 + 1822 + 33 + + + 1914 + 1823 + 38 + + + 1915 + 1824 + 44 + + + 1916 + 1825 + 33 + + + 1917 + 1826 + 42 + + + 1918 + 1827 + 47 + + + 1919 + 1828 + 55 + + + 1920 + 1829 + 41 + + + 1921 + 1830 + 29 + + + 1922 + 1831 + 36 + + + 1923 + 1832 + 34 + + + 1924 + 1833 + 39 + + + 1925 + 1834 + 47 + + + 1926 + 1835 + 39 + + + 1927 + 1836 + 51 + + + 1928 + 1837 + 47 + + + 1929 + 1838 + 34 + + + 1930 + 1839 + 44 + + + 1931 + 1840 + 44 + + + 1932 + 1841 + 48 + + + 1933 + 1842 + 41 + + + 1934 + 1843 + 45 + + + 1935 + 1844 + 41 + + + 1936 + 1845 + 47 + + + 1937 + 1846 + 41 + + + 1938 + 1847 + 37 + + + 1939 + 1848 + 43 + + + 1940 + 1849 + 43 + + + 1941 + 1850 + 41 + + + 1942 + 1851 + 32 + + + 1943 + 1852 + 32 + + + 1944 + 1853 + 39 + + + 1945 + 1854 + 37 + + + 1946 + 1855 + 41 + + + 1947 + 1856 + 33 + + + 1948 + 1857 + 39 + + + 1949 + 1858 + 28 + + + 1950 + 1859 + 39 + + + 1951 + 1860 + 37 + + + 1952 + 1861 + 22 + + + 1953 + 1862 + 53 + + + 1954 + 1863 + 38 + + + 1955 + 1864 + 40 + + + 1956 + 1865 + 35 + + + 1957 + 1866 + 28 + + + 1958 + 1867 + 37 + + + 1959 + 1868 + 44 + + + 1960 + 1869 + 37 + + + 1961 + 1870 + 48 + + + 1962 + 1871 + 29 + + + 1963 + 1872 + 35 + + + 1964 + 1873 + 32 + + + 1965 + 1874 + 41 + + + 1966 + 1875 + 51 + + + 1967 + 1876 + 29 + + + 1968 + 1877 + 38 + + + 1969 + 1878 + 27 + + + 1970 + 1879 + 30 + + + 1971 + 1880 + 40 + + + 1972 + 1881 + 53 + + + 1973 + 1882 + 49 + + + 1974 + 1883 + 42 + + + 1975 + 1884 + 43 + + + 1976 + 1885 + 34 + + + 1977 + 1886 + 41 + + + 1978 + 1887 + 27 + + + 1979 + 1888 + 37 + + + 1980 + 1889 + 35 + + + 1981 + 1890 + 41 + + + 1982 + 1891 + 24 + + + 1983 + 1892 + 29 + + + 1984 + 1893 + 47 + + + 1985 + 1894 + 33 + + + 1986 + 1895 + 30 + + + 1987 + 1896 + 34 + + + 1988 + 1897 + 36 + + + 1989 + 1898 + 23 + + + 1990 + 1899 + 36 + + + 1991 + 1900 + 36 + + + 1992 + 1901 + 39 + + + 1993 + 1902 + 28 + + + 1994 + 1903 + 38 + + + 1995 + 1904 + 35 + + + 1996 + 1905 + 27 + + + 1997 + 1906 + 42 + + + 1998 + 1907 + 37 + + + 1999 + 1908 + 41 + + + 2000 + 1909 + 38 + + + 2001 + 1910 + 32 + + + 2002 + 1911 + 33 + + + 2003 + 1912 + 35 + + + 2004 + 1913 + 39 + + + 2005 + 1914 + 36 + + + 2006 + 1915 + 41 + + + 2007 + 1916 + 32 + + + 2008 + 1917 + 38 + + + 2009 + 1918 + 44 + + + 2010 + 1919 + 30 + + + 2011 + 1920 + 29 + + + 2012 + 1921 + 29 + + + 2013 + 1922 + 40 + + + 2014 + 1923 + 27 + + + 2015 + 1924 + 30 + + + 2016 + 1925 + 24 + + + 2017 + 1926 + 32 + + + 2018 + 1927 + 37 + + + 2019 + 1928 + 29 + + + 2020 + 1929 + 32 + + + 2021 + 1930 + 37 + + + 2022 + 1931 + 34 + + + 2023 + 1932 + 41 + + + 2024 + 1933 + 39 + + + 2025 + 1934 + 37 + + + 2026 + 1935 + 28 + + + 2027 + 1936 + 32 + + + 2028 + 1937 + 26 + + + 2029 + 1938 + 38 + + + 2030 + 1939 + 33 + + + 2031 + 1940 + 21 + + + 2032 + 1941 + 28 + + + 2033 + 1942 + 33 + + + 2034 + 1943 + 31 + + + 2035 + 1944 + 27 + + + 2036 + 1945 + 35 + + + 2037 + 1946 + 33 + + + 2038 + 1947 + 22 + + + 2039 + 1948 + 30 + + + 2040 + 1949 + 35 + + + 2041 + 1950 + 35 + + + 2042 + 1951 + 35 + + + 2043 + 1952 + 34 + + + 2044 + 1953 + 30 + + + 2045 + 1954 + 40 + + + 2046 + 1955 + 33 + + + 2047 + 1956 + 34 + + + 2048 + 1957 + 30 + + + 2049 + 1958 + 48 + + + 2050 + 1959 + 28 + + + 2051 + 1960 + 35 + + + 2052 + 1961 + 28 + + + 2053 + 1962 + 46 + + + 2054 + 1963 + 34 + + + 2055 + 1964 + 36 + + + 2056 + 1965 + 27 + + + 2057 + 1966 + 32 + + + 2058 + 1967 + 33 + + + 2059 + 1968 + 31 + + + 2060 + 1969 + 38 + + + 2061 + 1970 + 32 + + + 2062 + 1971 + 34 + + + 2063 + 1972 + 47 + + + 2064 + 1973 + 37 + + + 2065 + 1974 + 25 + + + 2066 + 1975 + 35 + + + 2067 + 1976 + 37 + + + 2068 + 1977 + 41 + + + 2069 + 1978 + 42 + + + 2070 + 1979 + 32 + + + 2071 + 1980 + 36 + + + 2072 + 1981 + 42 + + + 2073 + 1982 + 40 + + + 2074 + 1983 + 39 + + + 2075 + 1984 + 35 + + + 2076 + 1985 + 36 + + + 2077 + 1986 + 27 + + + 2078 + 1987 + 43 + + + 2079 + 1988 + 34 + + + 2080 + 1989 + 32 + + + 2081 + 1990 + 33 + + + 2082 + 1991 + 31 + + + 2083 + 1992 + 42 + + + 2084 + 1993 + 30 + + + 2085 + 1994 + 29 + + + 2086 + 1995 + 49 + + + 2087 + 1996 + 24 + + + 2088 + 1997 + 35 + + + 2089 + 1998 + 39 + + + 2090 + 1999 + 36 + + + 2091 + 2000 + 34 + + + 2092 + 2001 + 38 + + + 2093 + 2002 + 29 + + + 2094 + 2003 + 38 + + + 2095 + 2004 + 39 + + + 2096 + 2005 + 29 + + + 2097 + 2006 + 37 + + + 2098 + 2007 + 38 + + + 2099 + 2008 + 38 + + + 2100 + 2009 + 41 + + + 2101 + 2010 + 35 + + + 2102 + 2011 + 30 + + + 2103 + 2012 + 30 + + + 2104 + 2013 + 26 + + + 2105 + 2014 + 28 + + + 2106 + 2015 + 30 + + + 2107 + 2016 + 34 + + + 2108 + 2017 + 28 + + + 2109 + 2018 + 43 + + + 2110 + 2019 + 27 + + + 2111 + 2020 + 28 + + + 2112 + 2021 + 29 + + + 2113 + 2022 + 41 + + + 2114 + 2023 + 42 + + + 2115 + 2024 + 36 + + + 2116 + 2025 + 31 + + + 2117 + 2026 + 29 + + + 2118 + 2027 + 38 + + + 2119 + 2028 + 30 + + + 2120 + 2029 + 29 + + + 2121 + 2030 + 35 + + + 2122 + 2031 + 25 + + + 2123 + 2032 + 34 + + + 2124 + 2033 + 32 + + + 2125 + 2034 + 28 + + + 2126 + 2035 + 27 + + + 2127 + 2036 + 25 + + + 2128 + 2037 + 26 + + + 2129 + 2038 + 33 + + + 2130 + 2039 + 44 + + + 2131 + 2040 + 36 + + + 2132 + 2041 + 43 + + + 2133 + 2042 + 42 + + + 2134 + 2043 + 23 + + + 2135 + 2044 + 26 + + + 2136 + 2045 + 31 + + + 2137 + 2046 + 36 + + + 2138 + 2047 + 30 + + + 2139 + 2048 + 33 + + + 2140 + 2049 + 30 + + + 2141 + 2050 + 35 + + + 2142 + 2051 + 42 + + + 2143 + 2052 + 31 + + + 2144 + 2053 + 32 + + + 2145 + 2054 + 26 + + + 2146 + 2055 + 32 + + + 2147 + 2056 + 28 + + + 2148 + 2057 + 25 + + + 2149 + 2058 + 13 + + + 2150 + 2059 + 32 + + + 2151 + 2060 + 33 + + + 2152 + 2061 + 33 + + + 2153 + 2062 + 30 + + + 2154 + 2063 + 28 + + + 2155 + 2064 + 34 + + + 2156 + 2065 + 37 + + + 2157 + 2066 + 20 + + + 2158 + 2067 + 27 + + + 2159 + 2068 + 28 + + + 2160 + 2069 + 36 + + + 2161 + 2070 + 29 + + + 2162 + 2071 + 23 + + + 2163 + 2072 + 32 + + + 2164 + 2073 + 36 + + + 2165 + 2074 + 30 + + + 2166 + 2075 + 22 + + + 2167 + 2076 + 31 + + + 2168 + 2077 + 35 + + + 2169 + 2078 + 33 + + + 2170 + 2079 + 25 + + + 2171 + 2080 + 21 + + + 2172 + 2081 + 18 + + + 2173 + 2082 + 34 + + + 2174 + 2083 + 20 + + + 2175 + 2084 + 20 + + + 2176 + 2085 + 29 + + + 2177 + 2086 + 31 + + + 2178 + 2087 + 37 + + + 2179 + 2088 + 35 + + + 2180 + 2089 + 32 + + + 2181 + 2090 + 26 + + + 2182 + 2091 + 29 + + + 2183 + 2092 + 33 + + + 2184 + 2093 + 29 + + + 2185 + 2094 + 25 + + + 2186 + 2095 + 26 + + + 2187 + 2096 + 31 + + + 2188 + 2097 + 32 + + + 2189 + 2098 + 36 + + + 2190 + 2099 + 33 + + + 2191 + 2100 + 30 + + + 2192 + 2101 + 34 + + + 2193 + 2102 + 34 + + + 2194 + 2103 + 45 + + + 2195 + 2104 + 39 + + + 2196 + 2105 + 30 + + + 2197 + 2106 + 40 + + + 2198 + 2107 + 39 + + + 2199 + 2108 + 40 + + + 2200 + 2109 + 43 + + + 2201 + 2110 + 39 + + + 2202 + 2111 + 41 + + + 2203 + 2112 + 33 + + + 2204 + 2113 + 25 + + + 2205 + 2114 + 32 + + + 2206 + 2115 + 35 + + + 2207 + 2116 + 35 + + + 2208 + 2117 + 41 + + + 2209 + 2118 + 32 + + + 2210 + 2119 + 35 + + + 2211 + 2120 + 36 + + + 2212 + 2121 + 33 + + + 2213 + 2122 + 37 + + + 2214 + 2123 + 41 + + + 2215 + 2124 + 31 + + + 2216 + 2125 + 29 + + + 2217 + 2126 + 29 + + + 2218 + 2127 + 36 + + + 2219 + 2128 + 36 + + + 2220 + 2129 + 19 + + + 2221 + 2130 + 53 + + + 2222 + 2131 + 42 + + + 2223 + 2132 + 40 + + + 2224 + 2133 + 42 + + + 2225 + 2134 + 29 + + + 2226 + 2135 + 29 + + + 2227 + 2136 + 32 + + + 2228 + 2137 + 30 + + + 2229 + 2138 + 34 + + + 2230 + 2139 + 38 + + + 2231 + 2140 + 26 + + + 2232 + 2141 + 37 + + + 2233 + 2142 + 47 + + + 2234 + 2143 + 35 + + + 2235 + 2144 + 36 + + + 2236 + 2145 + 35 + + + 2237 + 2146 + 29 + + + 2238 + 2147 + 34 + + + 2239 + 2148 + 35 + + + 2240 + 2149 + 34 + + + 2241 + 2150 + 30 + + + 2242 + 2151 + 40 + + + 2243 + 2152 + 27 + + + 2244 + 2153 + 28 + + + 2245 + 2154 + 31 + + + 2246 + 2155 + 35 + + + 2247 + 2156 + 17 + + + 2248 + 2157 + 18 + + + 2249 + 2158 + 23 + + + 2250 + 2159 + 37 + + + 2251 + 2160 + 31 + + + 2252 + 2161 + 33 + + + 2253 + 2162 + 31 + + + 2254 + 2163 + 32 + + + 2255 + 2164 + 22 + + + 2256 + 2165 + 24 + + + 2257 + 2166 + 29 + + + 2258 + 2167 + 20 + + + 2259 + 2168 + 26 + + + 2260 + 2169 + 22 + + + 2261 + 2170 + 33 + + + 2262 + 2171 + 26 + + + 2263 + 2172 + 27 + + + 2264 + 2173 + 33 + + + 2265 + 2174 + 36 + + + 2266 + 2175 + 32 + + + 2267 + 2176 + 28 + + + 2268 + 2177 + 27 + + + 2269 + 2178 + 29 + + + 2270 + 2179 + 29 + + + 2271 + 2180 + 36 + + + 2272 + 2181 + 26 + + + 2273 + 2182 + 22 + + + 2274 + 2183 + 37 + + + 2275 + 2184 + 22 + + + 2276 + 2185 + 32 + + + 2277 + 2186 + 25 + + + 2278 + 2187 + 16 + + + 2279 + 2188 + 29 + + + 2280 + 2189 + 20 + + + 2281 + 2190 + 26 + + + 2282 + 2191 + 14 + + + 2283 + 2192 + 35 + + + 2284 + 2193 + 20 + + + 2285 + 2194 + 21 + + + 2286 + 2195 + 25 + + + 2287 + 2196 + 31 + + + 2288 + 2197 + 30 + + + 2289 + 2198 + 31 + + + 2290 + 2199 + 25 + + + 2291 + 2200 + 26 + + + 2292 + 2201 + 27 + + + 2293 + 2202 + 21 + + + 2294 + 2203 + 25 + + + 2295 + 2204 + 26 + + + 2296 + 2205 + 27 + + + 2297 + 2206 + 36 + + + 2298 + 2207 + 31 + + + 2299 + 2208 + 28 + + + 2300 + 2209 + 30 + + + 2301 + 2210 + 27 + + + 2302 + 2211 + 23 + + + 2303 + 2212 + 21 + + + 2304 + 2213 + 29 + + + 2305 + 2214 + 30 + + + 2306 + 2215 + 29 + + + 2307 + 2216 + 23 + + + 2308 + 2217 + 22 + + + 2309 + 2218 + 19 + + + 2310 + 2219 + 15 + + + 2311 + 2220 + 24 + + + 2312 + 2221 + 17 + + + 2313 + 2222 + 28 + + + 2314 + 2223 + 19 + + + 2315 + 2224 + 28 + + + 2316 + 2225 + 21 + + + 2317 + 2226 + 19 + + + 2318 + 2227 + 33 + + + 2319 + 2228 + 33 + + + 2320 + 2229 + 27 + + + 2321 + 2230 + 22 + + + 2322 + 2231 + 25 + + + 2323 + 2232 + 35 + + + 2324 + 2233 + 24 + + + 2325 + 2234 + 25 + + + 2326 + 2235 + 28 + + + 2327 + 2236 + 31 + + + 2328 + 2237 + 31 + + + 2329 + 2238 + 21 + + + 2330 + 2239 + 27 + + + 2331 + 2240 + 26 + + + 2332 + 2241 + 24 + + + 2333 + 2242 + 21 + + + 2334 + 2243 + 21 + + + 2335 + 2244 + 21 + + + 2336 + 2245 + 25 + + + 2337 + 2246 + 25 + + + 2338 + 2247 + 31 + + + 2339 + 2248 + 27 + + + 2340 + 2249 + 32 + + + 2341 + 2250 + 25 + + + 2342 + 2251 + 21 + + + 2343 + 2252 + 24 + + + 2344 + 2253 + 20 + + + 2345 + 2254 + 30 + + + 2346 + 2255 + 21 + + + 2347 + 2256 + 37 + + + 2348 + 2257 + 24 + + + 2349 + 2258 + 19 + + + 2350 + 2259 + 17 + + + 2351 + 2260 + 30 + + + 2352 + 2261 + 30 + + + 2353 + 2262 + 26 + + + 2354 + 2263 + 28 + + + 2355 + 2264 + 22 + + + 2356 + 2265 + 24 + + + 2357 + 2266 + 30 + + + 2358 + 2267 + 29 + + + 2359 + 2268 + 32 + + + 2360 + 2269 + 37 + + + 2361 + 2270 + 29 + + + 2362 + 2271 + 33 + + + 2363 + 2272 + 26 + + + 2364 + 2273 + 32 + + + 2365 + 2274 + 24 + + + 2366 + 2275 + 36 + + + 2367 + 2276 + 25 + + + 2368 + 2277 + 35 + + + 2369 + 2278 + 29 + + + 2370 + 2279 + 29 + + + 2371 + 2280 + 32 + + + 2372 + 2281 + 22 + + + 2373 + 2282 + 33 + + + 2374 + 2283 + 35 + + + 2375 + 2284 + 38 + + + 2376 + 2285 + 40 + + + 2377 + 2286 + 52 + + + 2378 + 2287 + 42 + + + 2379 + 2288 + 39 + + + 2380 + 2289 + 33 + + + 2381 + 2290 + 39 + + + 2382 + 2291 + 39 + + + 2383 + 2292 + 30 + + + 2384 + 2293 + 35 + + + 2385 + 2294 + 24 + + + 2386 + 2295 + 28 + + + 2387 + 2296 + 27 + + + 2388 + 2297 + 38 + + + 2389 + 2298 + 42 + + + 2390 + 2299 + 20 + + + 2391 + 2300 + 41 + + + 2392 + 2301 + 42 + + + 2393 + 2302 + 40 + + + 2394 + 2303 + 30 + + + 2395 + 2304 + 22 + + + 2396 + 2305 + 21 + + + 2397 + 2306 + 17 + + + 2398 + 2307 + 29 + + + 2399 + 2308 + 27 + + + 2400 + 2309 + 18 + + + 2401 + 2310 + 19 + + + 2402 + 2311 + 34 + + + 2403 + 2312 + 42 + + + 2404 + 2313 + 20 + + + 2405 + 2314 + 26 + + + 2406 + 2315 + 26 + + + 2407 + 2316 + 22 + + + 2408 + 2317 + 27 + + + 2409 + 2318 + 28 + + + 2410 + 2319 + 19 + + + 2411 + 2320 + 20 + + + 2412 + 2321 + 17 + + + 2413 + 2322 + 31 + + + 2414 + 2323 + 17 + + + 2415 + 2324 + 24 + + + 2416 + 2325 + 24 + + + 2417 + 2326 + 32 + + + 2418 + 2327 + 19 + + + 2419 + 2328 + 23 + + + 2420 + 2329 + 14 + + + 2421 + 2330 + 25 + + + 2422 + 2331 + 20 + + + 2423 + 2332 + 22 + + + 2424 + 2333 + 27 + + + 2425 + 2334 + 16 + + + 2426 + 2335 + 26 + + + 2427 + 2336 + 15 + + + 2428 + 2337 + 28 + + + 2429 + 2338 + 22 + + + 2430 + 2339 + 18 + + + 2431 + 2340 + 19 + + + 2432 + 2341 + 20 + + + 2433 + 2342 + 25 + + + 2434 + 2343 + 21 + + + 2435 + 2344 + 29 + + + 2436 + 2345 + 26 + + + 2437 + 2346 + 28 + + + 2438 + 2347 + 11 + + + 2439 + 2348 + 25 + + + 2440 + 2349 + 21 + + + 2441 + 2350 + 26 + + + 2442 + 2351 + 23 + + + 2443 + 2352 + 20 + + + 2444 + 2353 + 25 + + + 2445 + 2354 + 21 + + + 2446 + 2355 + 19 + + + 2447 + 2356 + 19 + + + 2448 + 2357 + 22 + + + 2449 + 2358 + 21 + + + 2450 + 2359 + 24 + + + 2451 + 2360 + 23 + + + 2452 + 2361 + 24 + + + 2453 + 2362 + 20 + + + 2454 + 2363 + 29 + + + 2455 + 2364 + 20 + + + 2456 + 2365 + 25 + + + 2457 + 2366 + 23 + + + 2458 + 2367 + 15 + + + 2459 + 2368 + 30 + + + 2460 + 2369 + 21 + + + 2461 + 2370 + 21 + + + 2462 + 2371 + 31 + + + 2463 + 2372 + 23 + + + 2464 + 2373 + 24 + + + 2465 + 2374 + 13 + + + 2466 + 2375 + 17 + + + 2467 + 2376 + 21 + + + 2468 + 2377 + 16 + + + 2469 + 2378 + 23 + + + 2470 + 2379 + 16 + + + 2471 + 2380 + 25 + + + 2472 + 2381 + 17 + + + 2473 + 2382 + 24 + + + 2474 + 2383 + 19 + + + 2475 + 2384 + 19 + + + 2476 + 2385 + 22 + + + 2477 + 2386 + 22 + + + 2478 + 2387 + 16 + + + 2479 + 2388 + 23 + + + 2480 + 2389 + 23 + + + 2481 + 2390 + 20 + + + 2482 + 2391 + 14 + + + 2483 + 2392 + 18 + + + 2484 + 2393 + 19 + + + 2485 + 2394 + 24 + + + 2486 + 2395 + 26 + + + 2487 + 2396 + 23 + + + 2488 + 2397 + 29 + + + 2489 + 2398 + 18 + + + 2490 + 2399 + 25 + + + 2491 + 2400 + 19 + + + 2492 + 2401 + 22 + + + 2493 + 2402 + 21 + + + 2494 + 2403 + 19 + + + 2495 + 2404 + 20 + + + 2496 + 2405 + 16 + + + 2497 + 2406 + 26 + + + 2498 + 2407 + 19 + + + 2499 + 2408 + 22 + + + 2500 + 2409 + 20 + + + 2501 + 2410 + 16 + + + 2502 + 2411 + 23 + + + 2503 + 2412 + 22 + + + 2504 + 2413 + 30 + + + 2505 + 2414 + 29 + + + 2506 + 2415 + 33 + + + 2507 + 2416 + 23 + + + 2508 + 2417 + 28 + + + 2509 + 2418 + 22 + + + 2510 + 2419 + 24 + + + 2511 + 2420 + 32 + + + 2512 + 2421 + 19 + + + 2513 + 2422 + 27 + + + 2514 + 2423 + 23 + + + 2515 + 2424 + 27 + + + 2516 + 2425 + 29 + + + 2517 + 2426 + 33 + + + 2518 + 2427 + 36 + + + 2519 + 2428 + 24 + + + 2520 + 2429 + 21 + + + 2521 + 2430 + 36 + + + 2522 + 2431 + 33 + + + 2523 + 2432 + 30 + + + 2524 + 2433 + 45 + + + 2525 + 2434 + 34 + + + 2526 + 2435 + 29 + + + 2527 + 2436 + 36 + + + 2528 + 2437 + 32 + + + 2529 + 2438 + 41 + + + 2530 + 2439 + 50 + + + 2531 + 2440 + 42 + + + 2532 + 2441 + 31 + + + 2533 + 2442 + 39 + + + 2534 + 2443 + 40 + + + 2535 + 2444 + 39 + + + 2536 + 2445 + 39 + + + 2537 + 2446 + 26 + + + 2538 + 2447 + 29 + + + 2539 + 2448 + 35 + + + 2540 + 2449 + 33 + + + 2541 + 2450 + 29 + + + 2542 + 2451 + 28 + + + 2543 + 2452 + 29 + + + 2544 + 2453 + 32 + + + 2545 + 2454 + 32 + + + 2546 + 2455 + 47 + + + 2547 + 2456 + 23 + + + 2548 + 2457 + 39 + + + 2549 + 2458 + 28 + + + 2550 + 2459 + 37 + + + 2551 + 2460 + 20 + + + 2552 + 2461 + 25 + + + 2553 + 2462 + 32 + + + 2554 + 2463 + 20 + + + 2555 + 2464 + 23 + + + 2556 + 2465 + 20 + + + 2557 + 2466 + 22 + + + 2558 + 2467 + 26 + + + 2559 + 2468 + 22 + + + 2560 + 2469 + 18 + + + 2561 + 2470 + 20 + + + 2562 + 2471 + 17 + + + 2563 + 2472 + 19 + + + 2564 + 2473 + 22 + + + 2565 + 2474 + 24 + + + 2566 + 2475 + 17 + + + 2567 + 2476 + 19 + + + 2568 + 2477 + 19 + + + 2569 + 2478 + 15 + + + 2570 + 2479 + 25 + + + 2571 + 2480 + 27 + + + 2572 + 2481 + 15 + + + 2573 + 2482 + 27 + + + 2574 + 2483 + 26 + + + 2575 + 2484 + 16 + + + 2576 + 2485 + 21 + + + 2577 + 2486 + 21 + + + 2578 + 2487 + 14 + + + 2579 + 2488 + 15 + + + 2580 + 2489 + 26 + + + 2581 + 2490 + 17 + + + 2582 + 2491 + 13 + + + 2583 + 2492 + 18 + + + 2584 + 2493 + 18 + + + 2585 + 2494 + 16 + + + 2586 + 2495 + 19 + + + 2587 + 2496 + 19 + + + 2588 + 2497 + 14 + + + 2589 + 2498 + 23 + + + 2590 + 2499 + 19 + + + 2591 + 2500 + 15 + + + 2592 + 2501 + 20 + + + 2593 + 2502 + 19 + + + 2594 + 2503 + 15 + + + 2595 + 2504 + 9 + + + 2596 + 2505 + 20 + + + 2597 + 2506 + 16 + + + 2598 + 2507 + 22 + + + 2599 + 2508 + 17 + + + 2600 + 2509 + 18 + + + 2601 + 2510 + 12 + + + 2602 + 2511 + 18 + + + 2603 + 2512 + 23 + + + 2604 + 2513 + 13 + + + 2605 + 2514 + 15 + + + 2606 + 2515 + 20 + + + 2607 + 2516 + 20 + + + 2608 + 2517 + 16 + + + 2609 + 2518 + 15 + + + 2610 + 2519 + 16 + + + 2611 + 2520 + 16 + + + 2612 + 2521 + 16 + + + 2613 + 2522 + 12 + + + 2614 + 2523 + 22 + + + 2615 + 2524 + 18 + + + 2616 + 2525 + 20 + + + 2617 + 2526 + 19 + + + 2618 + 2527 + 22 + + + 2619 + 2528 + 14 + + + 2620 + 2529 + 10 + + + 2621 + 2530 + 22 + + + 2622 + 2531 + 19 + + + 2623 + 2532 + 20 + + + 2624 + 2533 + 15 + + + 2625 + 2534 + 17 + + + 2626 + 2535 + 13 + + + 2627 + 2536 + 14 + + + 2628 + 2537 + 17 + + + 2629 + 2538 + 15 + + + 2630 + 2539 + 17 + + + 2631 + 2540 + 20 + + + 2632 + 2541 + 19 + + + 2633 + 2542 + 23 + + + 2634 + 2543 + 11 + + + 2635 + 2544 + 23 + + + 2636 + 2545 + 14 + + + 2637 + 2546 + 11 + + + 2638 + 2547 + 19 + + + 2639 + 2548 + 12 + + + 2640 + 2549 + 12 + + + 2641 + 2550 + 21 + + + 2642 + 2551 + 14 + + + 2643 + 2552 + 16 + + + 2644 + 2553 + 22 + + + 2645 + 2554 + 14 + + + 2646 + 2555 + 15 + + + 2647 + 2556 + 11 + + + 2648 + 2557 + 16 + + + 2649 + 2558 + 22 + + + 2650 + 2559 + 23 + + + 2651 + 2560 + 13 + + + 2652 + 2561 + 11 + + + 2653 + 2562 + 23 + + + 2654 + 2563 + 16 + + + 2655 + 2564 + 17 + + + 2656 + 2565 + 16 + + + 2657 + 2566 + 15 + + + 2658 + 2567 + 25 + + + 2659 + 2568 + 16 + + + 2660 + 2569 + 17 + + + 2661 + 2570 + 19 + + + 2662 + 2571 + 18 + + + 2663 + 2572 + 18 + + + 2664 + 2573 + 24 + + + 2665 + 2574 + 13 + + + 2666 + 2575 + 19 + + + 2667 + 2576 + 18 + + + 2668 + 2577 + 16 + + + 2669 + 2578 + 23 + + + 2670 + 2579 + 19 + + + 2671 + 2580 + 20 + + + 2672 + 2581 + 19 + + + 2673 + 2582 + 14 + + + 2674 + 2583 + 19 + + + 2675 + 2584 + 23 + + + 2676 + 2585 + 17 + + + 2677 + 2586 + 23 + + + 2678 + 2587 + 27 + + + 2679 + 2588 + 15 + + + 2680 + 2589 + 19 + + + 2681 + 2590 + 21 + + + 2682 + 2591 + 28 + + + 2683 + 2592 + 27 + + + 2684 + 2593 + 16 + + + 2685 + 2594 + 18 + + + 2686 + 2595 + 19 + + + 2687 + 2596 + 21 + + + 2688 + 2597 + 26 + + + 2689 + 2598 + 24 + + + 2690 + 2599 + 17 + + + 2691 + 2600 + 27 + + + 2692 + 2601 + 15 + + + 2693 + 2602 + 18 + + + 2694 + 2603 + 16 + + + 2695 + 2604 + 18 + + + 2696 + 2605 + 17 + + + 2697 + 2606 + 14 + + + 2698 + 2607 + 16 + + + 2699 + 2608 + 12 + + + 2700 + 2609 + 15 + + + 2701 + 2610 + 19 + + + 2702 + 2611 + 17 + + + 2703 + 2612 + 23 + + + 2704 + 2613 + 8 + + + 2705 + 2614 + 15 + + + 2706 + 2615 + 21 + + + 2707 + 2616 + 5 + + + 2708 + 2617 + 17 + + + 2709 + 2618 + 13 + + + 2710 + 2619 + 15 + + + 2711 + 2620 + 9 + + + 2712 + 2621 + 24 + + + 2713 + 2622 + 14 + + + 2714 + 2623 + 9 + + + 2715 + 2624 + 13 + + + 2716 + 2625 + 14 + + + 2717 + 2626 + 16 + + + 2718 + 2627 + 10 + + + 2719 + 2628 + 14 + + + 2720 + 2629 + 13 + + + 2721 + 2630 + 13 + + + 2722 + 2631 + 12 + + + 2723 + 2632 + 16 + + + 2724 + 2633 + 21 + + + 2725 + 2634 + 15 + + + 2726 + 2635 + 12 + + + 2727 + 2636 + 20 + + + 2728 + 2637 + 7 + + + 2729 + 2638 + 12 + + + 2730 + 2639 + 23 + + + 2731 + 2640 + 10 + + + 2732 + 2641 + 17 + + + 2733 + 2642 + 21 + + + 2734 + 2643 + 16 + + + 2735 + 2644 + 12 + + + 2736 + 2645 + 13 + + + 2737 + 2646 + 15 + + + 2738 + 2647 + 24 + + + 2739 + 2648 + 17 + + + 2740 + 2649 + 11 + + + 2741 + 2650 + 14 + + + 2742 + 2651 + 20 + + + 2743 + 2652 + 11 + + + 2744 + 2653 + 9 + + + 2745 + 2654 + 17 + + + 2746 + 2655 + 6 + + + 2747 + 2656 + 8 + + + 2748 + 2657 + 10 + + + 2749 + 2658 + 15 + + + 2750 + 2659 + 13 + + + 2751 + 2660 + 6 + + + 2752 + 2661 + 14 + + + 2753 + 2662 + 10 + + + 2754 + 2663 + 20 + + + 2755 + 2664 + 18 + + + 2756 + 2665 + 14 + + + 2757 + 2666 + 21 + + + 2758 + 2667 + 11 + + + 2759 + 2668 + 17 + + + 2760 + 2669 + 11 + + + 2761 + 2670 + 7 + + + 2762 + 2671 + 11 + + + 2763 + 2672 + 7 + + + 2764 + 2673 + 14 + + + 2765 + 2674 + 16 + + + 2766 + 2675 + 12 + + + 2767 + 2676 + 9 + + + 2768 + 2677 + 14 + + + 2769 + 2678 + 17 + + + 2770 + 2679 + 8 + + + 2771 + 2680 + 13 + + + 2772 + 2681 + 8 + + + 2773 + 2682 + 23 + + + 2774 + 2683 + 22 + + + 2775 + 2684 + 19 + + + 2776 + 2685 + 13 + + + 2777 + 2686 + 15 + + + 2778 + 2687 + 20 + + + 2779 + 2688 + 12 + + + 2780 + 2689 + 11 + + + 2781 + 2690 + 20 + + + 2782 + 2691 + 16 + + + 2783 + 2692 + 22 + + + 2784 + 2693 + 17 + + + 2785 + 2694 + 12 + + + 2786 + 2695 + 17 + + + 2787 + 2696 + 16 + + + 2788 + 2697 + 15 + + + 2789 + 2698 + 21 + + + 2790 + 2699 + 20 + + + 2791 + 2700 + 13 + + + 2792 + 2701 + 10 + + + 2793 + 2702 + 13 + + + 2794 + 2703 + 11 + + + 2795 + 2704 + 15 + + + 2796 + 2705 + 13 + + + 2797 + 2706 + 11 + + + 2798 + 2707 + 14 + + + 2799 + 2708 + 16 + + + 2800 + 2709 + 14 + + + 2801 + 2710 + 11 + + + 2802 + 2711 + 6 + + + 2803 + 2712 + 13 + + + 2804 + 2713 + 18 + + + 2805 + 2714 + 13 + + + 2806 + 2715 + 14 + + + 2807 + 2716 + 11 + + + 2808 + 2717 + 15 + + + 2809 + 2718 + 15 + + + 2810 + 2719 + 15 + + + 2811 + 2720 + 13 + + + 2812 + 2721 + 9 + + + 2813 + 2722 + 16 + + + 2814 + 2723 + 12 + + + 2815 + 2724 + 20 + + + 2816 + 2725 + 16 + + + 2817 + 2726 + 16 + + + 2818 + 2727 + 14 + + + 2819 + 2728 + 11 + + + 2820 + 2729 + 19 + + + 2821 + 2730 + 12 + + + 2822 + 2731 + 19 + + + 2823 + 2732 + 12 + + + 2824 + 2733 + 24 + + + 2825 + 2734 + 16 + + + 2826 + 2735 + 12 + + + 2827 + 2736 + 11 + + + 2828 + 2737 + 16 + + + 2829 + 2738 + 19 + + + 2830 + 2739 + 18 + + + 2831 + 2740 + 21 + + + 2832 + 2741 + 21 + + + 2833 + 2742 + 15 + + + 2834 + 2743 + 18 + + + 2835 + 2744 + 15 + + + 2836 + 2745 + 14 + + + 2837 + 2746 + 17 + + + 2838 + 2747 + 20 + + + 2839 + 2748 + 26 + + + 2840 + 2749 + 17 + + + 2841 + 2750 + 19 + + + 2842 + 2751 + 24 + + + 2843 + 2752 + 18 + + + 2844 + 2753 + 17 + + + 2845 + 2754 + 16 + + + 2846 + 2755 + 14 + + + 2847 + 2756 + 10 + + + 2848 + 2757 + 16 + + + 2849 + 2758 + 15 + + + 2850 + 2759 + 16 + + + 2851 + 2760 + 16 + + + 2852 + 2761 + 15 + + + 2853 + 2762 + 17 + + + 2854 + 2763 + 20 + + + 2855 + 2764 + 23 + + + 2856 + 2765 + 18 + + + 2857 + 2766 + 10 + + + 2858 + 2767 + 19 + + + 2859 + 2768 + 18 + + + 2860 + 2769 + 9 + + + 2861 + 2770 + 16 + + + 2862 + 2771 + 12 + + + 2863 + 2772 + 16 + + + 2864 + 2773 + 17 + + + 2865 + 2774 + 14 + + + 2866 + 2775 + 17 + + + 2867 + 2776 + 15 + + + 2868 + 2777 + 26 + + + 2869 + 2778 + 17 + + + 2870 + 2779 + 20 + + + 2871 + 2780 + 26 + + + 2872 + 2781 + 23 + + + 2873 + 2782 + 12 + + + 2874 + 2783 + 11 + + + 2875 + 2784 + 11 + + + 2876 + 2785 + 18 + + + 2877 + 2786 + 14 + + + 2878 + 2787 + 17 + + + 2879 + 2788 + 20 + + + 2880 + 2789 + 7 + + + 2881 + 2790 + 12 + + + 2882 + 2791 + 16 + + + 2883 + 2792 + 14 + + + 2884 + 2793 + 12 + + + 2885 + 2794 + 13 + + + 2886 + 2795 + 11 + + + 2887 + 2796 + 7 + + + 2888 + 2797 + 15 + + + 2889 + 2798 + 13 + + + 2890 + 2799 + 16 + + + 2891 + 2800 + 15 + + + 2892 + 2801 + 18 + + + 2893 + 2802 + 9 + + + 2894 + 2803 + 12 + + + 2895 + 2804 + 15 + + + 2896 + 2805 + 9 + + + 2897 + 2806 + 13 + + + 2898 + 2807 + 10 + + + 2899 + 2808 + 16 + + + 2900 + 2809 + 14 + + + 2901 + 2810 + 15 + + + 2902 + 2811 + 17 + + + 2903 + 2812 + 13 + + + 2904 + 2813 + 17 + + + 2905 + 2814 + 8 + + + 2906 + 2815 + 14 + + + 2907 + 2816 + 16 + + + 2908 + 2817 + 9 + + + 2909 + 2818 + 18 + + + 2910 + 2819 + 16 + + + 2911 + 2820 + 5 + + + 2912 + 2821 + 14 + + + 2913 + 2822 + 19 + + + 2914 + 2823 + 8 + + + 2915 + 2824 + 14 + + + 2916 + 2825 + 10 + + + 2917 + 2826 + 15 + + + 2918 + 2827 + 13 + + + 2919 + 2828 + 12 + + + 2920 + 2829 + 9 + + + 2921 + 2830 + 9 + + + 2922 + 2831 + 14 + + + 2923 + 2832 + 11 + + + 2924 + 2833 + 15 + + + 2925 + 2834 + 10 + + + 2926 + 2835 + 11 + + + 2927 + 2836 + 12 + + + 2928 + 2837 + 16 + + + 2929 + 2838 + 14 + + + 2930 + 2839 + 14 + + + 2931 + 2840 + 13 + + + 2932 + 2841 + 18 + + + 2933 + 2842 + 14 + + + 2934 + 2843 + 12 + + + 2935 + 2844 + 15 + + + 2936 + 2845 + 7 + + + 2937 + 2846 + 11 + + + 2938 + 2847 + 10 + + + 2939 + 2848 + 13 + + + 2940 + 2849 + 8 + + + 2941 + 2850 + 9 + + + 2942 + 2851 + 14 + + + 2943 + 2852 + 17 + + + 2944 + 2853 + 7 + + + 2945 + 2854 + 7 + + + 2946 + 2855 + 15 + + + 2947 + 2856 + 21 + + + 2948 + 2857 + 15 + + + 2949 + 2858 + 6 + + + 2950 + 2859 + 13 + + + 2951 + 2860 + 11 + + + 2952 + 2861 + 10 + + + 2953 + 2862 + 11 + + + 2954 + 2863 + 15 + + + 2955 + 2864 + 13 + + + 2956 + 2865 + 14 + + + 2957 + 2866 + 11 + + + 2958 + 2867 + 11 + + + 2959 + 2868 + 17 + + + 2960 + 2869 + 14 + + + 2961 + 2870 + 8 + + + 2962 + 2871 + 13 + + + 2963 + 2872 + 16 + + + 2964 + 2873 + 13 + + + 2965 + 2874 + 17 + + + 2966 + 2875 + 13 + + + 2967 + 2876 + 7 + + + 2968 + 2877 + 13 + + + 2969 + 2878 + 15 + + + 2970 + 2879 + 16 + + + 2971 + 2880 + 18 + + + 2972 + 2881 + 10 + + + 2973 + 2882 + 13 + + + 2974 + 2883 + 12 + + + 2975 + 2884 + 19 + + + 2976 + 2885 + 15 + + + 2977 + 2886 + 12 + + + 2978 + 2887 + 16 + + + 2979 + 2888 + 22 + + + 2980 + 2889 + 12 + + + 2981 + 2890 + 23 + + + 2982 + 2891 + 16 + + + 2983 + 2892 + 16 + + + 2984 + 2893 + 18 + + + 2985 + 2894 + 14 + + + 2986 + 2895 + 17 + + + 2987 + 2896 + 19 + + + 2988 + 2897 + 17 + + + 2989 + 2898 + 26 + + + 2990 + 2899 + 18 + + + 2991 + 2900 + 14 + + + 2992 + 2901 + 14 + + + 2993 + 2902 + 22 + + + 2994 + 2903 + 18 + + + 2995 + 2904 + 16 + + + 2996 + 2905 + 20 + + + 2997 + 2906 + 16 + + + 2998 + 2907 + 13 + + + 2999 + 2908 + 19 + + + 3000 + 2909 + 20 + + + 3001 + 2910 + 12 + + + 3002 + 2911 + 25 + + + 3003 + 2912 + 11 + + + 3004 + 2913 + 14 + + + 3005 + 2914 + 13 + + + 3006 + 2915 + 9 + + + 3007 + 2916 + 9 + + + 3008 + 2917 + 12 + + + 3009 + 2918 + 12 + + + 3010 + 2919 + 16 + + + 3011 + 2920 + 15 + + + 3012 + 2921 + 9 + + + 3013 + 2922 + 22 + + + 3014 + 2923 + 8 + + + 3015 + 2924 + 10 + + + 3016 + 2925 + 10 + + + 3017 + 2926 + 14 + + + 3018 + 2927 + 11 + + + 3019 + 2928 + 15 + + + 3020 + 2929 + 13 + + + 3021 + 2930 + 13 + + + 3022 + 2931 + 8 + + + 3023 + 2932 + 12 + + + 3024 + 2933 + 16 + + + 3025 + 2934 + 19 + + + 3026 + 2935 + 15 + + + 3027 + 2936 + 8 + + + 3028 + 2937 + 14 + + + 3029 + 2938 + 18 + + + 3030 + 2939 + 8 + + + 3031 + 2940 + 12 + + + 3032 + 2941 + 14 + + + 3033 + 2942 + 6 + + + 3034 + 2943 + 11 + + + 3035 + 2944 + 12 + + + 3036 + 2945 + 7 + + + 3037 + 2946 + 10 + + + 3038 + 2947 + 9 + + + 3039 + 2948 + 15 + + + 3040 + 2949 + 13 + + + 3041 + 2950 + 11 + + + 3042 + 2951 + 12 + + + 3043 + 2952 + 11 + + + 3044 + 2953 + 10 + + + 3045 + 2954 + 10 + + + 3046 + 2955 + 8 + + + 3047 + 2956 + 8 + + + 3048 + 2957 + 12 + + + 3049 + 2958 + 6 + + + 3050 + 2959 + 5 + + + 3051 + 2960 + 11 + + + 3052 + 2961 + 13 + + + 3053 + 2962 + 16 + + + 3054 + 2963 + 15 + + + 3055 + 2964 + 10 + + + 3056 + 2965 + 11 + + + 3057 + 2966 + 13 + + + 3058 + 2967 + 14 + + + 3059 + 2968 + 11 + + + 3060 + 2969 + 12 + + + 3061 + 2970 + 12 + + + 3062 + 2971 + 14 + + + 3063 + 2972 + 13 + + + 3064 + 2973 + 8 + + + 3065 + 2974 + 9 + + + 3066 + 2975 + 12 + + + 3067 + 2976 + 11 + + + 3068 + 2977 + 6 + + + 3069 + 2978 + 16 + + + 3070 + 2979 + 13 + + + 3071 + 2980 + 10 + + + 3072 + 2981 + 6 + + + 3073 + 2982 + 13 + + + 3074 + 2983 + 14 + + + 3075 + 2984 + 19 + + + 3076 + 2985 + 10 + + + 3077 + 2986 + 9 + + + 3078 + 2987 + 8 + + + 3079 + 2988 + 11 + + + 3080 + 2989 + 9 + + + 3081 + 2990 + 10 + + + 3082 + 2991 + 9 + + + 3083 + 2992 + 11 + + + 3084 + 2993 + 4 + + + 3085 + 2994 + 13 + + + 3086 + 2995 + 13 + + + 3087 + 2996 + 5 + + + 3088 + 2997 + 14 + + + 3089 + 2998 + 10 + + + 3090 + 2999 + 17 + + + 3091 + 3000 + 11 + + + 3092 + 3001 + 9 + + + 3093 + 3002 + 11 + + + 3094 + 3003 + 10 + + + 3095 + 3004 + 8 + + + 3096 + 3005 + 11 + + + 3097 + 3006 + 10 + + + 3098 + 3007 + 12 + + + 3099 + 3008 + 12 + + + 3100 + 3009 + 6 + + + 3101 + 3010 + 11 + + + 3102 + 3011 + 7 + + + 3103 + 3012 + 5 + + + 3104 + 3013 + 8 + + + 3105 + 3014 + 9 + + + 3106 + 3015 + 12 + + + 3107 + 3016 + 9 + + + 3108 + 3017 + 10 + + + 3109 + 3018 + 16 + + + 3110 + 3019 + 7 + + + 3111 + 3020 + 9 + + + 3112 + 3021 + 9 + + + 3113 + 3022 + 13 + + + 3114 + 3023 + 13 + + + 3115 + 3024 + 13 + + + 3116 + 3025 + 13 + + + 3117 + 3026 + 8 + + + 3118 + 3027 + 12 + + + 3119 + 3028 + 10 + + + 3120 + 3029 + 10 + + + 3121 + 3030 + 15 + + + 3122 + 3031 + 10 + + + 3123 + 3032 + 16 + + + 3124 + 3033 + 15 + + + 3125 + 3034 + 17 + + + 3126 + 3035 + 12 + + + 3127 + 3036 + 12 + + + 3128 + 3037 + 7 + + + 3129 + 3038 + 15 + + + 3130 + 3039 + 13 + + + 3131 + 3040 + 22 + + + 3132 + 3041 + 10 + + + 3133 + 3042 + 12 + + + 3134 + 3043 + 13 + + + 3135 + 3044 + 11 + + + 3136 + 3045 + 12 + + + 3137 + 3046 + 21 + + + 3138 + 3047 + 21 + + + 3139 + 3048 + 21 + + + 3140 + 3049 + 21 + + + 3141 + 3050 + 18 + + + 3142 + 3051 + 16 + + + 3143 + 3052 + 20 + + + 3144 + 3053 + 16 + + + 3145 + 3054 + 19 + + + 3146 + 3055 + 20 + + + 3147 + 3056 + 17 + + + 3148 + 3057 + 17 + + + 3149 + 3058 + 18 + + + 3150 + 3059 + 19 + + + 3151 + 3060 + 13 + + + 3152 + 3061 + 11 + + + 3153 + 3062 + 18 + + + 3154 + 3063 + 23 + + + 3155 + 3064 + 15 + + + 3156 + 3065 + 21 + + + 3157 + 3066 + 17 + + + 3158 + 3067 + 21 + + + 3159 + 3068 + 22 + + + 3160 + 3069 + 22 + + + 3161 + 3070 + 14 + + + 3162 + 3071 + 13 + + + 3163 + 3072 + 15 + + + 3164 + 3073 + 13 + + + 3165 + 3074 + 20 + + + 3166 + 3075 + 17 + + + 3167 + 3076 + 12 + + + 3168 + 3077 + 12 + + + 3169 + 3078 + 13 + + + 3170 + 3079 + 19 + + + 3171 + 3080 + 9 + + + 3172 + 3081 + 9 + + + 3173 + 3082 + 10 + + + 3174 + 3083 + 13 + + + 3175 + 3084 + 5 + + + 3176 + 3085 + 7 + + + 3177 + 3086 + 14 + + + 3178 + 3087 + 8 + + + 3179 + 3088 + 14 + + + 3180 + 3089 + 10 + + + 3181 + 3090 + 12 + + + 3182 + 3091 + 13 + + + 3183 + 3092 + 8 + + + 3184 + 3093 + 11 + + + 3185 + 3094 + 12 + + + 3186 + 3095 + 12 + + + 3187 + 3096 + 13 + + + 3188 + 3097 + 10 + + + 3189 + 3098 + 15 + + + 3190 + 3099 + 6 + + + 3191 + 3100 + 9 + + + 3192 + 3101 + 6 + + + 3193 + 3102 + 11 + + + 3194 + 3103 + 8 + + + 3195 + 3104 + 9 + + + 3196 + 3105 + 7 + + + 3197 + 3106 + 6 + + + 3198 + 3107 + 10 + + + 3199 + 3108 + 8 + + + 3200 + 3109 + 8 + + + 3201 + 3110 + 7 + + + 3202 + 3111 + 6 + + + 3203 + 3112 + 6 + + + 3204 + 3113 + 9 + + + 3205 + 3114 + 9 + + + 3206 + 3115 + 8 + + + 3207 + 3116 + 6 + + + 3208 + 3117 + 5 + + + 3209 + 3118 + 2 + + + 3210 + 3119 + 3 + + + 3211 + 3120 + 8 + + + 3212 + 3121 + 4 + + + 3213 + 3122 + 3 + + + 3214 + 3123 + 6 + + + 3215 + 3124 + 5 + + + 3216 + 3125 + 10 + + + 3217 + 3126 + 8 + + + 3218 + 3127 + 5 + + + 3219 + 3128 + 1 + + + 3220 + 3129 + 8 + + + 3221 + 3130 + 9 + + + 3222 + 3131 + 3 + + + 3223 + 3132 + 5 + + + 3224 + 3133 + 3 + + + 3225 + 3134 + 8 + + + 3226 + 3135 + 7 + + + 3227 + 3136 + 6 + + + 3228 + 3137 + 5 + + + 3229 + 3138 + 6 + + + 3230 + 3139 + 7 + + + 3231 + 3140 + 4 + + + 3232 + 3141 + 8 + + + 3233 + 3142 + 1 + + + 3234 + 3143 + 9 + + + 3235 + 3144 + 6 + + + 3236 + 3145 + 4 + + + 3237 + 3146 + 5 + + + 3238 + 3147 + 7 + + + 3239 + 3148 + 5 + + + 3240 + 3149 + 7 + + + 3241 + 3150 + 9 + + + 3242 + 3151 + 4 + + + 3243 + 3152 + 5 + + + 3244 + 3153 + 11 + + + 3245 + 3154 + 9 + + + 3246 + 3155 + 5 + + + 3247 + 3156 + 6 + + + 3248 + 3157 + 4 + + + 3249 + 3158 + 8 + + + 3250 + 3159 + 7 + + + 3251 + 3160 + 7 + + + 3252 + 3161 + 7 + + + 3253 + 3162 + 1 + + + 3254 + 3163 + 5 + + + 3255 + 3164 + 8 + + + 3256 + 3165 + 6 + + + 3257 + 3166 + 6 + + + 3258 + 3167 + 7 + + + 3259 + 3168 + 3 + + + 3260 + 3169 + 6 + + + 3261 + 3170 + 2 + + + 3262 + 3171 + 7 + + + 3263 + 3172 + 3 + + + 3264 + 3173 + 5 + + + 3265 + 3174 + 11 + + + 3266 + 3175 + 3 + + + 3267 + 3176 + 9 + + + 3268 + 3177 + 8 + + + 3269 + 3178 + 6 + + + 3270 + 3179 + 3 + + + 3271 + 3180 + 6 + + + 3272 + 3181 + 7 + + + 3273 + 3182 + 6 + + + 3274 + 3183 + 4 + + + 3275 + 3184 + 4 + + + 3276 + 3185 + 3 + + + 3277 + 3186 + 8 + + + 3278 + 3187 + 7 + + + 3279 + 3188 + 8 + + + 3280 + 3189 + 5 + + + 3281 + 3190 + 5 + + + 3282 + 3191 + 5 + + + 3283 + 3192 + 6 + + + 3284 + 3193 + 7 + + + 3285 + 3194 + 12 + + + 3286 + 3195 + 9 + + + 3287 + 3196 + 14 + + + 3288 + 3197 + 10 + + + 3289 + 3198 + 2 + + + 3290 + 3199 + 2 + + + 3291 + 3200 + 2 + + + 3292 + 3201 + 3 + + + 3293 + 3202 + 7 + + + 3294 + 3203 + 7 + + + 3295 + 3204 + 6 + + + 3296 + 3205 + 8 + + + 3297 + 3206 + 4 + + + 3298 + 3207 + 10 + + + 3299 + 3208 + 7 + + + 3300 + 3209 + 2 + + + 3301 + 3210 + 3 + + + 3302 + 3211 + 3 + + + 3303 + 3212 + 4 + + + 3304 + 3213 + 1 + + + 3305 + 3214 + 7 + + + 3306 + 3215 + 4 + + + 3307 + 3216 + 2 + + + 3308 + 3217 + 6 + + + 3309 + 3218 + 5 + + + 3310 + 3219 + 6 + + + 3311 + 3220 + 3 + + + 3312 + 3221 + 9 + + + 3313 + 3223 + 1 + + + 3314 + 3224 + 3 + + + 3315 + 3225 + 9 + + + 3316 + 3226 + 3 + + + 3317 + 3227 + 6 + + + 3318 + 3228 + 6 + + + 3319 + 3229 + 5 + + + 3320 + 3230 + 4 + + + 3321 + 3231 + 3 + + + 3322 + 3232 + 5 + + + 3323 + 3233 + 5 + + + 3324 + 3234 + 2 + + + 3325 + 3235 + 5 + + + 3326 + 3236 + 7 + + + 3327 + 3237 + 4 + + + 3328 + 3238 + 4 + + + 3329 + 3239 + 6 + + + 3330 + 3240 + 6 + + + 3331 + 3241 + 5 + + + 3332 + 3242 + 3 + + + 3333 + 3243 + 5 + + + 3334 + 3244 + 6 + + + 3335 + 3245 + 8 + + + 3336 + 3246 + 4 + + + 3337 + 3247 + 5 + + + 3338 + 3248 + 2 + + + 3339 + 3249 + 5 + + + 3340 + 3250 + 2 + + + 3341 + 3251 + 6 + + + 3342 + 3252 + 8 + + + 3343 + 3253 + 2 + + + 3344 + 3254 + 6 + + + 3345 + 3255 + 5 + + + 3346 + 3256 + 4 + + + 3347 + 3257 + 3 + + + 3348 + 3258 + 2 + + + 3349 + 3259 + 4 + + + 3350 + 3260 + 3 + + + 3351 + 3261 + 4 + + + 3352 + 3262 + 4 + + + 3353 + 3263 + 3 + + + 3354 + 3264 + 4 + + + 3355 + 3265 + 5 + + + 3356 + 3266 + 5 + + + 3357 + 3267 + 6 + + + 3358 + 3268 + 6 + + + 3359 + 3270 + 4 + + + 3360 + 3271 + 3 + + + 3361 + 3272 + 4 + + + 3362 + 3273 + 5 + + + 3363 + 3274 + 5 + + + 3364 + 3275 + 6 + + + 3365 + 3276 + 6 + + + 3366 + 3277 + 9 + + + 3367 + 3278 + 4 + + + 3368 + 3279 + 7 + + + 3369 + 3280 + 5 + + + 3370 + 3281 + 5 + + + 3371 + 3282 + 7 + + + 3372 + 3283 + 6 + + + 3373 + 3284 + 3 + + + 3374 + 3285 + 6 + + + 3375 + 3286 + 10 + + + 3376 + 3287 + 4 + + + 3377 + 3288 + 6 + + + 3378 + 3289 + 6 + + + 3379 + 3290 + 3 + + + 3380 + 3291 + 9 + + + 3381 + 3292 + 3 + + + 3382 + 3293 + 7 + + + 3383 + 3294 + 6 + + + 3384 + 3295 + 4 + + + 3385 + 3296 + 3 + + + 3386 + 3297 + 8 + + + 3387 + 3298 + 4 + + + 3388 + 3299 + 5 + + + 3389 + 3300 + 2 + + + 3390 + 3301 + 5 + + + 3391 + 3302 + 5 + + + 3392 + 3303 + 4 + + + 3393 + 3304 + 1 + + + 3394 + 3305 + 6 + + + 3395 + 3306 + 4 + + + 3396 + 3307 + 3 + + + 3397 + 3308 + 10 + + + 3398 + 3309 + 2 + + + 3399 + 3310 + 2 + + + 3400 + 3311 + 3 + + + 3401 + 3312 + 2 + + + 3402 + 3313 + 4 + + + 3403 + 3314 + 6 + + + 3404 + 3315 + 4 + + + 3405 + 3316 + 6 + + + 3406 + 3317 + 5 + + + 3407 + 3318 + 1 + + + 3408 + 3319 + 7 + + + 3409 + 3320 + 8 + + + 3410 + 3321 + 3 + + + 3411 + 3322 + 1 + + + 3412 + 3323 + 6 + + + 3413 + 3324 + 8 + + + 3414 + 3325 + 4 + + + 3415 + 3326 + 1 + + + 3416 + 3327 + 6 + + + 3417 + 3328 + 4 + + + 3418 + 3329 + 6 + + + 3419 + 3330 + 8 + + + 3420 + 3331 + 10 + + + 3421 + 3332 + 7 + + + 3422 + 3333 + 2 + + + 3423 + 3334 + 7 + + + 3424 + 3335 + 4 + + + 3425 + 3336 + 8 + + + 3426 + 3337 + 1 + + + 3427 + 3338 + 4 + + + 3428 + 3339 + 1 + + + 3429 + 3340 + 3 + + + 3430 + 3341 + 5 + + + 3431 + 3342 + 6 + + + 3432 + 3343 + 2 + + + 3433 + 3344 + 4 + + + 3434 + 3345 + 2 + + + 3435 + 3346 + 2 + + + 3436 + 3347 + 3 + + + 3437 + 3348 + 6 + + + 3438 + 3349 + 2 + + + 3439 + 3350 + 6 + + + 3440 + 3351 + 6 + + + 3441 + 3352 + 10 + + + 3442 + 3353 + 5 + + + 3443 + 3354 + 6 + + + 3444 + 3355 + 7 + + + 3445 + 3356 + 4 + + + 3446 + 3357 + 2 + + + 3447 + 3358 + 7 + + + 3448 + 3359 + 5 + + + 3449 + 3360 + 3 + + + 3450 + 3361 + 4 + + + 3451 + 3362 + 5 + + + 3452 + 3363 + 7 + + + 3453 + 3364 + 5 + + + 3454 + 3365 + 4 + + + 3455 + 3366 + 8 + + + 3456 + 3367 + 3 + + + 3457 + 3368 + 6 + + + 3458 + 3369 + 5 + + + 3459 + 3370 + 11 + + + 3460 + 3371 + 3 + + + 3461 + 3372 + 4 + + + 3462 + 3373 + 5 + + + 3463 + 3374 + 3 + + + 3464 + 3375 + 3 + + + 3465 + 3376 + 5 + + + 3466 + 3377 + 1 + + + 3467 + 3378 + 3 + + + 3468 + 3379 + 1 + + + 3469 + 3380 + 1 + + + 3470 + 3381 + 5 + + + 3471 + 3382 + 1 + + + 3472 + 3383 + 2 + + + 3473 + 3384 + 4 + + + 3474 + 3385 + 4 + + + 3475 + 3386 + 4 + + + 3476 + 3387 + 3 + + + 3477 + 3388 + 5 + + + 3478 + 3389 + 5 + + + 3479 + 3390 + 5 + + + 3480 + 3391 + 7 + + + 3481 + 3392 + 4 + + + 3482 + 3393 + 2 + + + 3483 + 3394 + 1 + + + 3484 + 3395 + 4 + + + 3485 + 3396 + 4 + + + 3486 + 3397 + 3 + + + 3487 + 3398 + 1 + + + 3488 + 3399 + 4 + + + 3489 + 3400 + 2 + + + 3490 + 3401 + 5 + + + 3491 + 3402 + 7 + + + 3492 + 3403 + 9 + + + 3493 + 3404 + 4 + + + 3494 + 3405 + 6 + + + 3495 + 3406 + 2 + + + 3496 + 3407 + 3 + + + 3497 + 3408 + 4 + + + 3498 + 3409 + 6 + + + 3499 + 3410 + 7 + + + 3500 + 3411 + 9 + + + 3501 + 3412 + 6 + + + 3502 + 3414 + 4 + + + 3503 + 3415 + 3 + + + 3504 + 3416 + 8 + + + 3505 + 3417 + 3 + + + 3506 + 3418 + 6 + + + 3507 + 3419 + 3 + + + 3508 + 3420 + 7 + + + 3509 + 3421 + 1 + + + 3510 + 3422 + 4 + + + 3511 + 3423 + 5 + + + 3512 + 3424 + 2 + + + 3513 + 3425 + 4 + + + 3514 + 3426 + 4 + + + 3515 + 3427 + 7 + + + 3516 + 3428 + 1 + + + 3517 + 3429 + 1 + + + 3518 + 3430 + 5 + + + 3519 + 3431 + 4 + + + 3520 + 3432 + 6 + + + 3521 + 3433 + 6 + + + 3522 + 3434 + 8 + + + 3523 + 3435 + 7 + + + 3524 + 3436 + 5 + + + 3525 + 3437 + 4 + + + 3526 + 3438 + 5 + + + 3527 + 3439 + 5 + + + 3528 + 3440 + 7 + + + 3529 + 3441 + 8 + + + 3530 + 3442 + 3 + + + 3531 + 3443 + 6 + + + 3532 + 3444 + 4 + + + 3533 + 3445 + 8 + + + 3534 + 3446 + 7 + + + 3535 + 3447 + 2 + + + 3536 + 3448 + 5 + + + 3537 + 3450 + 6 + + + 3538 + 3451 + 6 + + + 3539 + 3452 + 5 + + + 3540 + 3453 + 7 + + + 3541 + 3454 + 6 + + + 3542 + 3455 + 7 + + + 3543 + 3456 + 4 + + + 3544 + 3457 + 4 + + + 3545 + 3458 + 1 + + + 3546 + 3459 + 3 + + + 3547 + 3460 + 7 + + + 3548 + 3461 + 4 + + + 3549 + 3462 + 3 + + + 3550 + 3463 + 6 + + + 3551 + 3464 + 6 + + + 3552 + 3465 + 3 + + + 3553 + 3466 + 2 + + + 3554 + 3467 + 3 + + + 3555 + 3468 + 6 + + + 3556 + 3469 + 4 + + + 3557 + 3470 + 2 + + + 3558 + 3471 + 4 + + + 3559 + 3472 + 4 + + + 3560 + 3473 + 2 + + + 3561 + 3474 + 3 + + + 3562 + 3475 + 1 + + + 3563 + 3476 + 2 + + + 3564 + 3477 + 4 + + + 3565 + 3478 + 3 + + + 3566 + 3479 + 5 + + + 3567 + 3480 + 6 + + + 3568 + 3481 + 5 + + + 3569 + 3482 + 1 + + + 3570 + 3483 + 1 + + + 3571 + 3484 + 4 + + + 3572 + 3485 + 5 + + + 3573 + 3486 + 5 + + + 3574 + 3487 + 3 + + + 3575 + 3488 + 2 + + + 3576 + 3489 + 8 + + + 3577 + 3490 + 5 + + + 3578 + 3491 + 5 + + + 3579 + 3492 + 5 + + + 3580 + 3493 + 4 + + + 3581 + 3494 + 3 + + + 3582 + 3495 + 5 + + + 3583 + 3496 + 8 + + + 3584 + 3497 + 6 + + + 3585 + 3498 + 3 + + + 3586 + 3499 + 6 + + + 3587 + 3500 + 1 + + + 3588 + 3501 + 10 + + + 3589 + 3502 + 4 + + + 3590 + 3503 + 4 + + + 3591 + 3504 + 7 + + + 3592 + 3505 + 7 + + + 3593 + 3506 + 6 + + + 3594 + 3507 + 2 + + + 3595 + 3508 + 4 + + + 3596 + 3509 + 3 + + + 3597 + 3510 + 2 + + + 3598 + 3511 + 2 + + + 3599 + 3512 + 7 + + + 3600 + 3513 + 3 + + + 3601 + 3514 + 1 + + + 3602 + 3515 + 6 + + + 3603 + 3516 + 7 + + + 3604 + 3517 + 6 + + + 3605 + 3518 + 6 + + + 3606 + 3519 + 2 + + + 3607 + 3520 + 2 + + + 3608 + 3521 + 4 + + + 3609 + 3522 + 4 + + + 3610 + 3523 + 5 + + + 3611 + 3524 + 3 + + + 3612 + 3525 + 5 + + + 3613 + 3527 + 2 + + + 3614 + 3528 + 6 + + + 3615 + 3529 + 6 + + + 3616 + 3530 + 5 + + + 3617 + 3531 + 7 + + + 3618 + 3532 + 4 + + + 3619 + 3533 + 6 + + + 3620 + 3534 + 6 + + + 3621 + 3535 + 7 + + + 3622 + 3536 + 4 + + + 3623 + 3537 + 7 + + + 3624 + 3538 + 8 + + + 3625 + 3539 + 5 + + + 3626 + 3540 + 6 + + + 3627 + 3541 + 3 + + + 3628 + 3542 + 3 + + + 3629 + 3543 + 1 + + + 3630 + 3544 + 7 + + + 3631 + 3545 + 4 + + + 3632 + 3546 + 4 + + + 3633 + 3547 + 3 + + + 3634 + 3548 + 3 + + + 3635 + 3549 + 5 + + + 3636 + 3550 + 5 + + + 3637 + 3551 + 5 + + + 3638 + 3552 + 4 + + + 3639 + 3553 + 5 + + + 3640 + 3554 + 3 + + + 3641 + 3555 + 4 + + + 3642 + 3556 + 4 + + + 3643 + 3557 + 5 + + + 3644 + 3558 + 8 + + + 3645 + 3559 + 5 + + + 3646 + 3560 + 4 + + + 3647 + 3561 + 5 + + + 3648 + 3562 + 2 + + + 3649 + 3563 + 8 + + + 3650 + 3564 + 4 + + + 3651 + 3565 + 9 + + + 3652 + 3566 + 5 + + + 3653 + 3567 + 6 + + + 3654 + 3568 + 7 + + + 3655 + 3569 + 5 + + + 3656 + 3570 + 8 + + + 3657 + 3571 + 3 + + + 3658 + 3572 + 4 + + + 3659 + 3573 + 7 + + + 3660 + 3574 + 8 + + + 3661 + 3575 + 6 + + + 3662 + 3576 + 6 + + + 3663 + 3577 + 2 + + + 3664 + 3578 + 6 + + + 3665 + 3579 + 4 + + + 3666 + 3580 + 6 + + + 3667 + 3581 + 5 + + + 3668 + 3582 + 8 + + + 3669 + 3583 + 4 + + + 3670 + 3584 + 9 + + + 3671 + 3585 + 5 + + + 3672 + 3586 + 5 + + + 3673 + 3587 + 7 + + + 3674 + 3588 + 5 + + + 3675 + 3589 + 6 + + + 3676 + 3590 + 5 + + + 3677 + 3591 + 1 + + + 3678 + 3592 + 5 + + + 3679 + 3593 + 4 + + + 3680 + 3594 + 3 + + + 3681 + 3595 + 3 + + + 3682 + 3596 + 4 + + + 3683 + 3597 + 1 + + + 3684 + 3598 + 3 + + + 3685 + 3599 + 3 + + + 3686 + 3600 + 8 + + + 3687 + 3601 + 6 + + + 3688 + 3602 + 4 + + + 3689 + 3603 + 1 + + + 3690 + 3604 + 4 + + + 3691 + 3605 + 4 + + + 3692 + 3606 + 6 + + + 3693 + 3607 + 10 + + + 3694 + 3608 + 3 + + + 3695 + 3609 + 4 + + + 3696 + 3610 + 4 + + + 3697 + 3611 + 6 + + + 3698 + 3612 + 4 + + + 3699 + 3613 + 5 + + + 3700 + 3614 + 8 + + + 3701 + 3615 + 4 + + + 3702 + 3616 + 3 + + + 3703 + 3617 + 5 + + + 3704 + 3618 + 8 + + + 3705 + 3619 + 4 + + + 3706 + 3620 + 8 + + + 3707 + 3621 + 3 + + + 3708 + 3622 + 6 + + + 3709 + 3623 + 3 + + + 3710 + 3624 + 5 + + + 3711 + 3625 + 1 + + + 3712 + 3626 + 3 + + + 3713 + 3627 + 7 + + + 3714 + 3629 + 5 + + + 3715 + 3630 + 6 + + + 3716 + 3631 + 6 + + + 3717 + 3632 + 3 + + + 3718 + 3633 + 5 + + + 3719 + 3634 + 7 + + + 3720 + 3635 + 5 + + + 3721 + 3636 + 3 + + + 3722 + 3637 + 5 + + + 3723 + 3638 + 5 + + + 3724 + 3639 + 3 + + + 3725 + 3640 + 5 + + + 3726 + 3641 + 5 + + + 3727 + 3642 + 4 + + + 3728 + 3643 + 6 + + + 3729 + 3644 + 4 + + + 3730 + 3645 + 5 + + + 3731 + 3646 + 2 + + + 3732 + 3647 + 7 + + + 3733 + 3648 + 3 + + + 3734 + 3649 + 10 + + + 3735 + 3650 + 4 + + + 3736 + 3651 + 5 + + + 3737 + 3652 + 3 + + + 3738 + 3653 + 7 + + + 3739 + 3654 + 1 + + + 3740 + 3655 + 5 + + + 3741 + 3656 + 1 + + + 3742 + 3657 + 5 + + + 3743 + 3658 + 9 + + + 3744 + 3659 + 7 + + + 3745 + 3660 + 9 + + + 3746 + 3661 + 13 + + + 3747 + 3662 + 9 + + + 3748 + 3663 + 7 + + + 3749 + 3664 + 6 + + + 3750 + 3665 + 3 + + + 3751 + 3666 + 4 + + + 3752 + 3667 + 2 + + + 3753 + 3668 + 3 + + + 3754 + 3669 + 8 + + + 3755 + 3670 + 6 + + + 3756 + 3671 + 6 + + + 3757 + 3672 + 5 + + + 3758 + 3673 + 4 + + + 3759 + 3674 + 7 + + + 3760 + 3675 + 5 + + + 3761 + 3676 + 5 + + + 3762 + 3677 + 4 + + + 3763 + 3678 + 6 + + + 3764 + 3679 + 5 + + + 3765 + 3680 + 8 + + + 3766 + 3681 + 3 + + + 3767 + 3682 + 7 + + + 3768 + 3683 + 6 + + + 3769 + 3684 + 2 + + + 3770 + 3685 + 9 + + + 3771 + 3686 + 4 + + + 3772 + 3687 + 2 + + + 3773 + 3688 + 9 + + + 3774 + 3689 + 5 + + + 3775 + 3690 + 4 + + + 3776 + 3691 + 8 + + + 3777 + 3692 + 5 + + + 3778 + 3693 + 4 + + + 3779 + 3694 + 4 + + + 3780 + 3695 + 1 + + + 3781 + 3696 + 5 + + + 3782 + 3697 + 5 + + + 3783 + 3698 + 7 + + + 3784 + 3699 + 11 + + + 3785 + 3700 + 6 + + + 3786 + 3701 + 7 + + + 3787 + 3702 + 7 + + + 3788 + 3703 + 8 + + + 3789 + 3704 + 9 + + + 3790 + 3705 + 5 + + + 3791 + 3706 + 6 + + + 3792 + 3707 + 5 + + + 3793 + 3708 + 7 + + + 3794 + 3709 + 5 + + + 3795 + 3710 + 8 + + + 3796 + 3711 + 8 + + + 3797 + 3712 + 7 + + + 3798 + 3713 + 7 + + + 3799 + 3714 + 4 + + + 3800 + 3715 + 8 + + + 3801 + 3716 + 2 + + + 3802 + 3717 + 4 + + + 3803 + 3718 + 7 + + + 3804 + 3719 + 4 + + + 3805 + 3720 + 3 + + + 3806 + 3721 + 10 + + + 3807 + 3722 + 4 + + + 3808 + 3723 + 7 + + + 3809 + 3724 + 5 + + + 3810 + 3725 + 5 + + + 3811 + 3726 + 6 + + + 3812 + 3727 + 7 + + + 3813 + 3728 + 10 + + + 3814 + 3729 + 5 + + + 3815 + 3730 + 4 + + + 3816 + 3731 + 5 + + + 3817 + 3732 + 6 + + + 3818 + 3733 + 6 + + + 3819 + 3734 + 8 + + + 3820 + 3735 + 7 + + + 3821 + 3736 + 5 + + + 3822 + 3737 + 3 + + + 3823 + 3738 + 2 + + + 3824 + 3739 + 3 + + + 3825 + 3740 + 8 + + + 3826 + 3741 + 10 + + + 3827 + 3742 + 7 + + + 3828 + 3743 + 5 + + + 3829 + 3744 + 4 + + + 3830 + 3745 + 10 + + + 3831 + 3746 + 5 + + + 3832 + 3747 + 3 + + + 3833 + 3748 + 4 + + + 3834 + 3749 + 5 + + + 3835 + 3750 + 4 + + + 3836 + 3751 + 1 + + + 3837 + 3752 + 7 + + + 3838 + 3753 + 4 + + + 3839 + 3754 + 9 + + + 3840 + 3755 + 4 + + + 3841 + 3756 + 5 + + + 3842 + 3757 + 6 + + + 3843 + 3758 + 11 + + + 3844 + 3759 + 5 + + + 3845 + 3760 + 9 + + + 3846 + 3761 + 3 + + + 3847 + 3762 + 6 + + + 3848 + 3763 + 5 + + + 3849 + 3764 + 6 + + + 3850 + 3765 + 6 + + + 3851 + 3766 + 4 + + + 3852 + 3767 + 4 + + + 3853 + 3768 + 5 + + + 3854 + 3769 + 4 + + + 3855 + 3770 + 5 + + + 3856 + 3771 + 6 + + + 3857 + 3772 + 4 + + + 3858 + 3773 + 1 + + + 3859 + 3774 + 5 + + + 3860 + 3775 + 3 + + + 3861 + 3776 + 4 + + + 3862 + 3777 + 4 + + + 3863 + 3778 + 1 + + + 3864 + 3779 + 9 + + + 3865 + 3780 + 3 + + + 3866 + 3781 + 6 + + + 3867 + 3782 + 5 + + + 3868 + 3783 + 5 + + + 3869 + 3784 + 2 + + + 3870 + 3785 + 5 + + + 3871 + 3786 + 7 + + + 3872 + 3787 + 5 + + + 3873 + 3788 + 9 + + + 3874 + 3789 + 5 + + + 3875 + 3790 + 2 + + + 3876 + 3791 + 2 + + + 3877 + 3792 + 4 + + + 3878 + 3793 + 3 + + + 3879 + 3794 + 6 + + + 3880 + 3795 + 1 + + + 3881 + 3796 + 3 + + + 3882 + 3797 + 5 + + + 3883 + 3798 + 6 + + + 3884 + 3799 + 4 + + + 3885 + 3800 + 3 + + + 3886 + 3801 + 7 + + + 3887 + 3802 + 5 + + + 3888 + 3803 + 5 + + + 3889 + 3804 + 8 + + + 3890 + 3805 + 6 + + + 3891 + 3806 + 4 + + + 3892 + 3807 + 6 + + + 3893 + 3808 + 3 + + + 3894 + 3809 + 5 + + + 3895 + 3810 + 4 + + + 3896 + 3811 + 8 + + + 3897 + 3812 + 5 + + + 3898 + 3813 + 8 + + + 3899 + 3814 + 5 + + + 3900 + 3815 + 4 + + + 3901 + 3816 + 4 + + + 3902 + 3817 + 6 + + + 3903 + 3818 + 6 + + + 3904 + 3819 + 6 + + + 3905 + 3820 + 4 + + + 3906 + 3821 + 7 + + + 3907 + 3822 + 7 + + + 3908 + 3823 + 5 + + + 3909 + 3824 + 7 + + + 3910 + 3825 + 7 + + + 3911 + 3826 + 9 + + + 3912 + 3827 + 8 + + + 3913 + 3828 + 14 + + + 3914 + 3829 + 13 + + + 3915 + 3830 + 5 + + + 3916 + 3831 + 3 + + + 3917 + 3832 + 5 + + + 3918 + 3833 + 6 + + + 3919 + 3834 + 3 + + + 3920 + 3835 + 6 + + + 3921 + 3836 + 8 + + + 3922 + 3837 + 3 + + + 3923 + 3838 + 12 + + + 3924 + 3839 + 3 + + + 3925 + 3840 + 5 + + + 3926 + 3841 + 7 + + + 3927 + 3842 + 7 + + + 3928 + 3843 + 5 + + + 3929 + 3844 + 2 + + + 3930 + 3845 + 10 + + + 3931 + 3846 + 5 + + + 3932 + 3847 + 9 + + + 3933 + 3848 + 5 + + + 3934 + 3849 + 8 + + + 3935 + 3850 + 3 + + + 3936 + 3851 + 7 + + + 3937 + 3852 + 4 + + + 3938 + 3853 + 6 + + + 3939 + 3854 + 4 + + + 3940 + 3855 + 5 + + + 3941 + 3856 + 3 + + + 3942 + 3857 + 4 + + + 3943 + 3858 + 6 + + + 3944 + 3859 + 10 + + + 3945 + 3860 + 7 + + + 3946 + 3861 + 7 + + + 3947 + 3862 + 9 + + + 3948 + 3863 + 2 + + + 3949 + 3864 + 6 + + + 3950 + 3865 + 4 + + + 3951 + 3866 + 5 + + + 3952 + 3867 + 8 + + + 3953 + 3868 + 7 + + + 3954 + 3869 + 4 + + + 3955 + 3870 + 7 + + + 3956 + 3871 + 5 + + + 3957 + 3872 + 4 + + + 3958 + 3873 + 6 + + + 3959 + 3874 + 2 + + + 3960 + 3875 + 8 + + + 3961 + 3876 + 2 + + + 3962 + 3877 + 5 + + + 3963 + 3878 + 4 + + + 3964 + 3879 + 6 + + + 3965 + 3880 + 5 + + + 3966 + 3881 + 5 + + + 3967 + 3882 + 7 + + + 3968 + 3883 + 4 + + + 3969 + 3884 + 8 + + + 3970 + 3885 + 7 + + + 3971 + 3886 + 5 + + + 3972 + 3887 + 1 + + + 3973 + 3888 + 5 + + + 3974 + 3889 + 4 + + + 3975 + 3890 + 9 + + + 3976 + 3891 + 5 + + + 3977 + 3892 + 4 + + + 3978 + 3893 + 1 + + + 3979 + 3894 + 7 + + + 3980 + 3895 + 3 + + + 3981 + 3896 + 2 + + + 3982 + 3897 + 2 + + + 3983 + 3898 + 2 + + + 3984 + 3899 + 5 + + + 3985 + 3900 + 3 + + + 3986 + 3901 + 6 + + + 3987 + 3902 + 4 + + + 3988 + 3903 + 4 + + + 3989 + 3904 + 6 + + + 3990 + 3905 + 4 + + + 3991 + 3906 + 8 + + + 3992 + 3907 + 12 + + + 3993 + 3908 + 6 + + + 3994 + 3909 + 6 + + + 3995 + 3910 + 1 + + + 3996 + 3911 + 5 + + + 3997 + 3912 + 10 + + + 3998 + 3913 + 3 + + + 3999 + 3914 + 5 + + + 4000 + 3915 + 4 + + + 4001 + 3916 + 8 + + + 4002 + 3917 + 10 + + + 4003 + 3918 + 6 + + + 4004 + 3919 + 5 + + + 4005 + 3920 + 7 + + + 4006 + 3921 + 2 + + + 4007 + 3922 + 3 + + + 4008 + 3923 + 4 + + + 4009 + 3924 + 8 + + + 4010 + 3925 + 7 + + + 4011 + 3926 + 5 + + + 4012 + 3927 + 5 + + + 4013 + 3928 + 4 + + + 4014 + 3929 + 7 + + + 4015 + 3930 + 9 + + + 4016 + 3931 + 9 + + + 4017 + 3932 + 3 + + + 4018 + 3933 + 4 + + + 4019 + 3935 + 4 + + + 4020 + 3936 + 5 + + + 4021 + 3937 + 6 + + + 4022 + 3938 + 2 + + + 4023 + 3939 + 5 + + + 4024 + 3940 + 4 + + + 4025 + 3941 + 5 + + + 4026 + 3942 + 3 + + + 4027 + 3943 + 4 + + + 4028 + 3944 + 8 + + + 4029 + 3945 + 3 + + + 4030 + 3946 + 3 + + + 4031 + 3947 + 5 + + + 4032 + 3948 + 3 + + + 4033 + 3949 + 7 + + + 4034 + 3950 + 10 + + + 4035 + 3951 + 2 + + + 4036 + 3952 + 5 + + + 4037 + 3953 + 3 + + + 4038 + 3954 + 8 + + + 4039 + 3955 + 3 + + + 4040 + 3956 + 6 + + + 4041 + 3957 + 1 + + + 4042 + 3958 + 3 + + + 4043 + 3959 + 4 + + + 4044 + 3960 + 5 + + + 4045 + 3961 + 10 + + + 4046 + 3962 + 2 + + + 4047 + 3963 + 4 + + + 4048 + 3964 + 7 + + + 4049 + 3965 + 3 + + + 4050 + 3966 + 4 + + + 4051 + 3967 + 4 + + + 4052 + 3968 + 5 + + + 4053 + 3969 + 5 + + + 4054 + 3970 + 7 + + + 4055 + 3971 + 3 + + + 4056 + 3972 + 5 + + + 4057 + 3973 + 2 + + + 4058 + 3974 + 5 + + + 4059 + 3975 + 7 + + + 4060 + 3976 + 6 + + + 4061 + 3977 + 11 + + + 4062 + 3978 + 7 + + + 4063 + 3979 + 3 + + + 4064 + 3980 + 4 + + + 4065 + 3981 + 13 + + + 4066 + 3982 + 5 + + + 4067 + 3983 + 6 + + + 4068 + 3984 + 8 + + + 4069 + 3985 + 2 + + + 4070 + 3986 + 7 + + + 4071 + 3987 + 5 + + + 4072 + 3988 + 12 + + + 4073 + 3989 + 9 + + + 4074 + 3990 + 9 + + + 4075 + 3991 + 3 + + + 4076 + 3992 + 4 + + + 4077 + 3993 + 7 + + + 4078 + 3994 + 3 + + + 4079 + 3995 + 5 + + + 4080 + 3996 + 2 + + + 4081 + 3997 + 11 + + + 4082 + 3998 + 6 + + + 4083 + 3999 + 5 + + + 4084 + 4000 + 3 + + + 4085 + 4001 + 5 + + + 4086 + 4002 + 4 + + + 4087 + 4003 + 4 + + + 4088 + 4004 + 6 + + + 4089 + 4005 + 7 + + + 4090 + 4006 + 3 + + + 4091 + 4007 + 3 + + + 4092 + 4008 + 3 + + + 4093 + 4009 + 4 + + + 4094 + 4010 + 4 + + + 4095 + 4011 + 4 + + + 4096 + 4012 + 5 + + + 4097 + 4013 + 8 + + + 4098 + 4014 + 4 + + + 4099 + 4015 + 4 + + + 4100 + 4016 + 7 + + + 4101 + 4017 + 4 + + + 4102 + 4018 + 6 + + + 4103 + 4019 + 6 + + + 4104 + 4020 + 3 + + + 4105 + 4021 + 2 + + + 4106 + 4022 + 9 + + + 4107 + 4023 + 4 + + + 4108 + 4024 + 9 + + + 4109 + 4025 + 10 + + + 4110 + 4026 + 10 + + + 4111 + 4027 + 6 + + + 4112 + 4028 + 8 + + + 4113 + 4029 + 5 + + + 4114 + 4030 + 5 + + + 4115 + 4031 + 7 + + + 4116 + 4032 + 5 + + + 4117 + 4033 + 5 + + + 4118 + 4034 + 6 + + + 4119 + 4035 + 8 + + + 4120 + 4036 + 6 + + + 4121 + 4037 + 5 + + + 4122 + 4038 + 3 + + + 4123 + 4039 + 5 + + + 4124 + 4040 + 8 + + + 4125 + 4041 + 6 + + + 4126 + 4042 + 3 + + + 4127 + 4043 + 6 + + + 4128 + 4044 + 4 + + + 4129 + 4045 + 1 + + + 4130 + 4046 + 5 + + + 4131 + 4047 + 6 + + + 4132 + 4048 + 7 + + + 4133 + 4049 + 2 + + + 4134 + 4050 + 7 + + + 4135 + 4051 + 7 + + + 4136 + 4052 + 1 + + + 4137 + 4053 + 5 + + + 4138 + 4054 + 5 + + + 4139 + 4055 + 7 + + + 4140 + 4056 + 7 + + + 4141 + 4057 + 3 + + + 4142 + 4058 + 5 + + + 4143 + 4059 + 3 + + + 4144 + 4060 + 6 + + + 4145 + 4061 + 3 + + + 4146 + 4062 + 4 + + + 4147 + 4063 + 4 + + + 4148 + 4064 + 4 + + + 4149 + 4065 + 8 + + + 4150 + 4066 + 4 + + + 4151 + 4067 + 3 + + + 4152 + 4068 + 6 + + + 4153 + 4069 + 6 + + + 4154 + 4070 + 4 + + + 4155 + 4071 + 12 + + + 4156 + 4072 + 3 + + + 4157 + 4073 + 4 + + + 4158 + 4074 + 4 + + + 4159 + 4075 + 3 + + + 4160 + 4076 + 5 + + + 4161 + 4077 + 4 + + + 4162 + 4078 + 4 + + + 4163 + 4079 + 7 + + + 4164 + 4080 + 3 + + + 4165 + 4081 + 5 + + + 4166 + 4082 + 4 + + + 4167 + 4083 + 9 + + + 4168 + 4084 + 8 + + + 4169 + 4085 + 6 + + + 4170 + 4086 + 5 + + + 4171 + 4087 + 2 + + + 4172 + 4088 + 4 + + + 4173 + 4089 + 6 + + + 4174 + 4090 + 7 + + + 4175 + 4091 + 7 + + + 4176 + 4092 + 7 + + + 4177 + 4093 + 7 + + + 4178 + 4094 + 6 + + + 4179 + 4095 + 8 + + + 4180 + 4096 + 14 + + + 4181 + 4097 + 8 + + + 4182 + 4098 + 1 + + + 4183 + 4099 + 2 + + + 4184 + 4100 + 3 + + + 4185 + 4101 + 7 + + + 4186 + 4102 + 7 + + + 4187 + 4103 + 7 + + + 4188 + 4104 + 5 + + + 4189 + 4105 + 5 + + + 4190 + 4106 + 5 + + + 4191 + 4107 + 4 + + + 4192 + 4108 + 4 + + + 4193 + 4109 + 5 + + + 4194 + 4110 + 6 + + + 4195 + 4111 + 2 + + + 4196 + 4112 + 4 + + + 4197 + 4113 + 3 + + + 4198 + 4114 + 7 + + + 4199 + 4115 + 4 + + + 4200 + 4116 + 1 + + + 4201 + 4117 + 6 + + + 4202 + 4118 + 12 + + + 4203 + 4119 + 7 + + + 4204 + 4120 + 3 + + + 4205 + 4121 + 6 + + + 4206 + 4122 + 7 + + + 4207 + 4123 + 11 + + + 4208 + 4124 + 2 + + + 4209 + 4125 + 3 + + + 4210 + 4126 + 3 + + + 4211 + 4127 + 8 + + + 4212 + 4128 + 4 + + + 4213 + 4129 + 2 + + + 4214 + 4130 + 6 + + + 4215 + 4131 + 8 + + + 4216 + 4132 + 5 + + + 4217 + 4133 + 6 + + + 4218 + 4134 + 5 + + + 4219 + 4135 + 4 + + + 4220 + 4136 + 6 + + + 4221 + 4137 + 3 + + + 4222 + 4138 + 6 + + + 4223 + 4139 + 6 + + + 4224 + 4140 + 5 + + + 4225 + 4141 + 4 + + + 4226 + 4142 + 7 + + + 4227 + 4143 + 10 + + + 4228 + 4144 + 6 + + + 4229 + 4145 + 8 + + + 4230 + 4146 + 6 + + + 4231 + 4147 + 4 + + + 4232 + 4148 + 5 + + + 4233 + 4149 + 8 + + + 4234 + 4150 + 5 + + + 4235 + 4151 + 7 + + + 4236 + 4152 + 9 + + + 4237 + 4153 + 7 + + + 4238 + 4154 + 7 + + + 4239 + 4155 + 3 + + + 4240 + 4156 + 1 + + + 4241 + 4157 + 4 + + + 4242 + 4158 + 6 + + + 4243 + 4159 + 13 + + + 4244 + 4160 + 4 + + + 4245 + 4161 + 7 + + + 4246 + 4162 + 3 + + + 4247 + 4163 + 6 + + + 4248 + 4164 + 8 + + + 4249 + 4165 + 4 + + + 4250 + 4166 + 10 + + + 4251 + 4167 + 4 + + + 4252 + 4168 + 7 + + + 4253 + 4169 + 6 + + + 4254 + 4170 + 3 + + + 4255 + 4171 + 5 + + + 4256 + 4172 + 6 + + + 4257 + 4173 + 7 + + + 4258 + 4174 + 3 + + + 4259 + 4175 + 4 + + + 4260 + 4176 + 2 + + + 4261 + 4177 + 5 + + + 4262 + 4178 + 3 + + + 4263 + 4179 + 6 + + + 4264 + 4180 + 5 + + + 4265 + 4181 + 8 + + + 4266 + 4182 + 8 + + + 4267 + 4183 + 9 + + + 4268 + 4184 + 5 + + + 4269 + 4185 + 6 + + + 4270 + 4186 + 5 + + + 4271 + 4187 + 12 + + + 4272 + 4188 + 9 + + + 4273 + 4189 + 4 + + + 4274 + 4190 + 1 + + + 4275 + 4191 + 3 + + + 4276 + 4192 + 6 + + + 4277 + 4193 + 8 + + + 4278 + 4194 + 5 + + + 4279 + 4195 + 7 + + + 4280 + 4196 + 6 + + + 4281 + 4197 + 3 + + + 4282 + 4198 + 6 + + + 4283 + 4199 + 5 + + + 4284 + 4200 + 8 + + + 4285 + 4201 + 6 + + + 4286 + 4202 + 2 + + + 4287 + 4203 + 8 + + + 4288 + 4204 + 5 + + + 4289 + 4205 + 4 + + + 4290 + 4206 + 11 + + + 4291 + 4207 + 1 + + + 4292 + 4208 + 5 + + + 4293 + 4209 + 5 + + + 4294 + 4210 + 9 + + + 4295 + 4211 + 6 + + + 4296 + 4212 + 2 + + + 4297 + 4213 + 13 + + + 4298 + 4214 + 4 + + + 4299 + 4215 + 3 + + + 4300 + 4216 + 6 + + + 4301 + 4217 + 8 + + + 4302 + 4218 + 6 + + + 4303 + 4219 + 6 + + + 4304 + 4220 + 5 + + + 4305 + 4221 + 5 + + + 4306 + 4222 + 4 + + + 4307 + 4223 + 5 + + + 4308 + 4224 + 4 + + + 4309 + 4225 + 4 + + + 4310 + 4226 + 9 + + + 4311 + 4227 + 8 + + + 4312 + 4228 + 10 + + + 4313 + 4229 + 3 + + + 4314 + 4230 + 9 + + + 4315 + 4231 + 10 + + + 4316 + 4232 + 6 + + + 4317 + 4233 + 14 + + + 4318 + 4235 + 6 + + + 4319 + 4236 + 12 + + + 4320 + 4237 + 9 + + + 4321 + 4238 + 5 + + + 4322 + 4239 + 5 + + + 4323 + 4240 + 6 + + + 4324 + 4241 + 3 + + + 4325 + 4242 + 5 + + + 4326 + 4243 + 6 + + + 4327 + 4244 + 4 + + + 4328 + 4245 + 7 + + + 4329 + 4246 + 5 + + + 4330 + 4247 + 3 + + + 4331 + 4248 + 4 + + + 4332 + 4249 + 6 + + + 4333 + 4250 + 6 + + + 4334 + 4251 + 8 + + + 4335 + 4252 + 6 + + + 4336 + 4253 + 4 + + + 4337 + 4254 + 4 + + + 4338 + 4255 + 5 + + + 4339 + 4256 + 4 + + + 4340 + 4257 + 7 + + + 4341 + 4258 + 5 + + + 4342 + 4259 + 2 + + + 4343 + 4260 + 6 + + + 4344 + 4261 + 6 + + + 4345 + 4262 + 9 + + + 4346 + 4263 + 9 + + + 4347 + 4264 + 5 + + + 4348 + 4265 + 8 + + + 4349 + 4266 + 6 + + + 4350 + 4267 + 7 + + + 4351 + 4268 + 3 + + + 4352 + 4269 + 3 + + + 4353 + 4270 + 6 + + + 4354 + 4271 + 2 + + + 4355 + 4272 + 3 + + + 4356 + 4273 + 6 + + + 4357 + 4274 + 6 + + + 4358 + 4275 + 4 + + + 4359 + 4276 + 4 + + + 4360 + 4277 + 8 + + + 4361 + 4278 + 4 + + + 4362 + 4279 + 5 + + + 4363 + 4280 + 6 + + + 4364 + 4281 + 11 + + + 4365 + 4282 + 5 + + + 4366 + 4283 + 4 + + + 4367 + 4284 + 5 + + + 4368 + 4285 + 4 + + + 4369 + 4286 + 7 + + + 4370 + 4287 + 5 + + + 4371 + 4288 + 5 + + + 4372 + 4289 + 10 + + + 4373 + 4290 + 8 + + + 4374 + 4291 + 6 + + + 4375 + 4292 + 6 + + + 4376 + 4293 + 7 + + + 4377 + 4294 + 4 + + + 4378 + 4295 + 6 + + + 4379 + 4296 + 7 + + + 4380 + 4297 + 8 + + + 4381 + 4298 + 10 + + + 4382 + 4299 + 7 + + + 4383 + 4300 + 3 + + + 4384 + 4301 + 3 + + + 4385 + 4302 + 9 + + + 4386 + 4303 + 5 + + + 4387 + 4304 + 8 + + + 4388 + 4305 + 7 + + + 4389 + 4306 + 5 + + + 4390 + 4307 + 5 + + + 4391 + 4308 + 5 + + + 4392 + 4309 + 5 + + + 4393 + 4310 + 6 + + + 4394 + 4311 + 5 + + + 4395 + 4312 + 3 + + + 4396 + 4313 + 8 + + + 4397 + 4314 + 4 + + + 4398 + 4315 + 9 + + + 4399 + 4316 + 8 + + + 4400 + 4317 + 5 + + + 4401 + 4318 + 2 + + + 4402 + 4319 + 9 + + + 4403 + 4320 + 4 + + + 4404 + 4321 + 7 + + + 4405 + 4322 + 5 + + + 4406 + 4323 + 4 + + + 4407 + 4324 + 7 + + + 4408 + 4325 + 7 + + + 4409 + 4326 + 2 + + + 4410 + 4327 + 3 + + + 4411 + 4328 + 7 + + + 4412 + 4329 + 1 + + + 4413 + 4330 + 7 + + + 4414 + 4331 + 14 + + + 4415 + 4332 + 7 + + + 4416 + 4333 + 4 + + + 4417 + 4334 + 5 + + + 4418 + 4335 + 7 + + + 4419 + 4336 + 7 + + + 4420 + 4337 + 4 + + + 4421 + 4338 + 8 + + + 4422 + 4339 + 6 + + + 4423 + 4340 + 5 + + + 4424 + 4341 + 5 + + + 4425 + 4342 + 6 + + + 4426 + 4343 + 3 + + + 4427 + 4344 + 4 + + + 4428 + 4345 + 7 + + + 4429 + 4346 + 4 + + + 4430 + 4347 + 4 + + + 4431 + 4348 + 6 + + + 4432 + 4349 + 4 + + + 4433 + 4350 + 5 + + + 4434 + 4351 + 6 + + + 4435 + 4352 + 6 + + + 4436 + 4353 + 3 + + + 4437 + 4354 + 4 + + + 4438 + 4355 + 8 + + + 4439 + 4356 + 7 + + + 4440 + 4357 + 7 + + + 4441 + 4358 + 6 + + + 4442 + 4359 + 11 + + + 4443 + 4360 + 5 + + + 4444 + 4361 + 6 + + + 4445 + 4362 + 6 + + + 4446 + 4363 + 4 + + + 4447 + 4364 + 2 + + + 4448 + 4365 + 6 + + + 4449 + 4366 + 4 + + + 4450 + 4367 + 4 + + + 4451 + 4368 + 3 + + + 4452 + 4369 + 6 + + + 4453 + 4370 + 7 + + + 4454 + 4371 + 4 + + + 4455 + 4372 + 4 + + + 4456 + 4373 + 3 + + + 4457 + 4374 + 8 + + + 4458 + 4375 + 7 + + + 4459 + 4376 + 5 + + + 4460 + 4377 + 6 + + + 4461 + 4378 + 2 + + + 4462 + 4379 + 7 + + + 4463 + 4380 + 6 + + + 4464 + 4381 + 6 + + + 4465 + 4382 + 10 + + + 4466 + 4383 + 9 + + + 4467 + 4384 + 10 + + + 4468 + 4385 + 7 + + + 4469 + 4386 + 10 + + + 4470 + 4387 + 4 + + + 4471 + 4388 + 4 + + + 4472 + 4389 + 4 + + + 4473 + 4390 + 5 + + + 4474 + 4391 + 7 + + + 4475 + 4392 + 5 + + + 4476 + 4393 + 6 + + + 4477 + 4394 + 4 + + + 4478 + 4395 + 3 + + + 4479 + 4396 + 4 + + + 4480 + 4397 + 4 + + + 4481 + 4398 + 2 + + + 4482 + 4399 + 8 + + + 4483 + 4400 + 8 + + + 4484 + 4401 + 9 + + + 4485 + 4402 + 8 + + + 4486 + 4403 + 1 + + + 4487 + 4404 + 6 + + + 4488 + 4405 + 5 + + + 4489 + 4406 + 5 + + + 4490 + 4407 + 8 + + + 4491 + 4408 + 3 + + + 4492 + 4409 + 5 + + + 4493 + 4410 + 9 + + + 4494 + 4411 + 8 + + + 4495 + 4412 + 10 + + + 4496 + 4413 + 10 + + + 4497 + 4414 + 6 + + + 4498 + 4415 + 6 + + + 4499 + 4416 + 5 + + + 4500 + 4417 + 8 + + + 4501 + 4418 + 5 + + + 4502 + 4419 + 3 + + + 4503 + 4420 + 5 + + + 4504 + 4421 + 4 + + + 4505 + 4422 + 5 + + + 4506 + 4423 + 8 + + + 4507 + 4424 + 4 + + + 4508 + 4425 + 6 + + + 4509 + 4426 + 6 + + + 4510 + 4427 + 8 + + + 4511 + 4428 + 4 + + + 4512 + 4429 + 7 + + + 4513 + 4430 + 2 + + + 4514 + 4431 + 6 + + + 4515 + 4432 + 7 + + + 4516 + 4433 + 9 + + + 4517 + 4434 + 1 + + + 4518 + 4435 + 6 + + + 4519 + 4436 + 2 + + + 4520 + 4437 + 4 + + + 4521 + 4438 + 4 + + + 4522 + 4439 + 6 + + + 4523 + 4440 + 1 + + + 4524 + 4441 + 5 + + + 4525 + 4442 + 8 + + + 4526 + 4443 + 7 + + + 4527 + 4444 + 8 + + + 4528 + 4445 + 5 + + + 4529 + 4446 + 7 + + + 4530 + 4447 + 8 + + + 4531 + 4448 + 11 + + + 4532 + 4449 + 9 + + + 4533 + 4450 + 5 + + + 4534 + 4451 + 7 + + + 4535 + 4452 + 9 + + + 4536 + 4453 + 11 + + + 4537 + 4454 + 9 + + + 4538 + 4455 + 7 + + + 4539 + 4456 + 9 + + + 4540 + 4457 + 10 + + + 4541 + 4458 + 7 + + + 4542 + 4459 + 5 + + + 4543 + 4460 + 4 + + + 4544 + 4462 + 4 + + + 4545 + 4463 + 3 + + + 4546 + 4464 + 6 + + + 4547 + 4465 + 3 + + + 4548 + 4466 + 6 + + + 4549 + 4467 + 5 + + + 4550 + 4468 + 5 + + + 4551 + 4469 + 9 + + + 4552 + 4470 + 11 + + + 4553 + 4471 + 7 + + + 4554 + 4472 + 4 + + + 4555 + 4473 + 6 + + + 4556 + 4474 + 7 + + + 4557 + 4475 + 1 + + + 4558 + 4476 + 4 + + + 4559 + 4477 + 3 + + + 4560 + 4478 + 13 + + + 4561 + 4479 + 6 + + + 4562 + 4480 + 7 + + + 4563 + 4481 + 7 + + + 4564 + 4482 + 6 + + + 4565 + 4483 + 6 + + + 4566 + 4484 + 7 + + + 4567 + 4485 + 9 + + + 4568 + 4486 + 7 + + + 4569 + 4487 + 7 + + + 4570 + 4488 + 9 + + + 4571 + 4489 + 11 + + + 4572 + 4490 + 8 + + + 4573 + 4491 + 4 + + + 4574 + 4492 + 6 + + + 4575 + 4493 + 5 + + + 4576 + 4494 + 5 + + + 4577 + 4495 + 9 + + + 4578 + 4496 + 10 + + + 4579 + 4497 + 9 + + + 4580 + 4498 + 8 + + + 4581 + 4499 + 7 + + + 4582 + 4500 + 10 + + + 4583 + 4501 + 7 + + + 4584 + 4502 + 4 + + + 4585 + 4503 + 3 + + + 4586 + 4504 + 4 + + + 4587 + 4505 + 7 + + + 4588 + 4506 + 3 + + + 4589 + 4507 + 4 + + + 4590 + 4508 + 4 + + + 4591 + 4509 + 9 + + + 4592 + 4510 + 2 + + + 4593 + 4511 + 7 + + + 4594 + 4512 + 7 + + + 4595 + 4513 + 7 + + + 4596 + 4514 + 6 + + + 4597 + 4515 + 7 + + + 4598 + 4516 + 10 + + + 4599 + 4517 + 11 + + + 4600 + 4518 + 5 + + + 4601 + 4519 + 9 + + + 4602 + 4520 + 10 + + + 4603 + 4521 + 2 + + + 4604 + 4522 + 6 + + + 4605 + 4523 + 6 + + + 4606 + 4524 + 9 + + + 4607 + 4525 + 6 + + + 4608 + 4526 + 9 + + + 4609 + 4527 + 8 + + + 4610 + 4528 + 6 + + + 4611 + 4529 + 8 + + + 4612 + 4530 + 5 + + + 4613 + 4531 + 10 + + + 4614 + 4532 + 10 + + + 4615 + 4533 + 3 + + + 4616 + 4534 + 6 + + + 4617 + 4535 + 10 + + + 4618 + 4536 + 11 + + + 4619 + 4537 + 8 + + + 4620 + 4538 + 7 + + + 4621 + 4539 + 8 + + + 4622 + 4540 + 3 + + + 4623 + 4541 + 9 + + + 4624 + 4542 + 10 + + + 4625 + 4543 + 3 + + + 4626 + 4544 + 4 + + + 4627 + 4545 + 10 + + + 4628 + 4546 + 12 + + + 4629 + 4547 + 3 + + + 4630 + 4549 + 7 + + + 4631 + 4550 + 6 + + + 4632 + 4551 + 6 + + + 4633 + 4552 + 5 + + + 4634 + 4553 + 7 + + + 4635 + 4554 + 9 + + + 4636 + 4555 + 7 + + + 4637 + 4556 + 4 + + + 4638 + 4557 + 4 + + + 4639 + 4558 + 5 + + + 4640 + 4559 + 3 + + + 4641 + 4560 + 9 + + + 4642 + 4561 + 6 + + + 4643 + 4562 + 8 + + + 4644 + 4563 + 9 + + + 4645 + 4564 + 6 + + + 4646 + 4565 + 6 + + + 4647 + 4566 + 5 + + + 4648 + 4567 + 8 + + + 4649 + 4568 + 9 + + + 4650 + 4569 + 9 + + + 4651 + 4570 + 8 + + + 4652 + 4571 + 3 + + + 4653 + 4572 + 5 + + + 4654 + 4573 + 10 + + + 4655 + 4574 + 5 + + + 4656 + 4575 + 3 + + + 4657 + 4576 + 7 + + + 4658 + 4577 + 7 + + + 4659 + 4578 + 9 + + + 4660 + 4579 + 6 + + + 4661 + 4580 + 8 + + + 4662 + 4581 + 8 + + + 4663 + 4582 + 5 + + + 4664 + 4583 + 6 + + + 4665 + 4584 + 5 + + + 4666 + 4585 + 6 + + + 4667 + 4586 + 4 + + + 4668 + 4587 + 6 + + + 4669 + 4588 + 11 + + + 4670 + 4589 + 7 + + + 4671 + 4590 + 7 + + + 4672 + 4591 + 8 + + + 4673 + 4592 + 11 + + + 4674 + 4593 + 3 + + + 4675 + 4594 + 7 + + + 4676 + 4595 + 10 + + + 4677 + 4596 + 7 + + + 4678 + 4597 + 8 + + + 4679 + 4598 + 9 + + + 4680 + 4599 + 7 + + + 4681 + 4600 + 8 + + + 4682 + 4601 + 13 + + + 4683 + 4602 + 7 + + + 4684 + 4603 + 10 + + + 4685 + 4604 + 12 + + + 4686 + 4605 + 5 + + + 4687 + 4606 + 11 + + + 4688 + 4607 + 9 + + + 4689 + 4608 + 4 + + + 4690 + 4609 + 7 + + + 4691 + 4610 + 8 + + + 4692 + 4611 + 5 + + + 4693 + 4612 + 9 + + + 4694 + 4613 + 7 + + + 4695 + 4614 + 8 + + + 4696 + 4615 + 4 + + + 4697 + 4616 + 4 + + + 4698 + 4617 + 3 + + + 4699 + 4618 + 7 + + + 4700 + 4619 + 8 + + + 4701 + 4620 + 10 + + + 4702 + 4621 + 12 + + + 4703 + 4622 + 7 + + + 4704 + 4623 + 4 + + + 4705 + 4624 + 7 + + + 4706 + 4625 + 5 + + + 4707 + 4626 + 12 + + + 4708 + 4627 + 11 + + + 4709 + 4628 + 5 + + + 4710 + 4629 + 6 + + + 4711 + 4630 + 6 + + + 4712 + 4631 + 10 + + + 4713 + 4632 + 7 + + + 4714 + 4633 + 6 + + + 4715 + 4634 + 9 + + + 4716 + 4635 + 3 + + + 4717 + 4636 + 6 + + + 4718 + 4637 + 8 + + + 4719 + 4638 + 7 + + + 4720 + 4639 + 10 + + + 4721 + 4640 + 9 + + + 4722 + 4641 + 7 + + + 4723 + 4642 + 7 + + + 4724 + 4643 + 1 + + + 4725 + 4644 + 11 + + + 4726 + 4645 + 6 + + + 4727 + 4646 + 13 + + + 4728 + 4647 + 9 + + + 4729 + 4648 + 7 + + + 4730 + 4649 + 9 + + + 4731 + 4650 + 5 + + + 4732 + 4651 + 5 + + + 4733 + 4652 + 9 + + + 4734 + 4653 + 5 + + + 4735 + 4654 + 6 + + + 4736 + 4655 + 6 + + + 4737 + 4656 + 6 + + + 4738 + 4657 + 8 + + + 4739 + 4658 + 5 + + + 4740 + 4659 + 10 + + + 4741 + 4660 + 11 + + + 4742 + 4661 + 10 + + + 4743 + 4662 + 7 + + + 4744 + 4663 + 6 + + + 4745 + 4664 + 6 + + + 4746 + 4665 + 7 + + + 4747 + 4666 + 7 + + + 4748 + 4667 + 8 + + + 4749 + 4668 + 8 + + + 4750 + 4669 + 5 + + + 4751 + 4670 + 9 + + + 4752 + 4671 + 7 + + + 4753 + 4672 + 5 + + + 4754 + 4673 + 10 + + + 4755 + 4674 + 3 + + + 4756 + 4675 + 8 + + + 4757 + 4676 + 7 + + + 4758 + 4677 + 10 + + + 4759 + 4678 + 4 + + + 4760 + 4679 + 9 + + + 4761 + 4680 + 8 + + + 4762 + 4681 + 6 + + + 4763 + 4682 + 10 + + + 4764 + 4683 + 8 + + + 4765 + 4684 + 7 + + + 4766 + 4685 + 3 + + + 4767 + 4686 + 13 + + + 4768 + 4687 + 11 + + + 4769 + 4688 + 11 + + + 4770 + 4689 + 5 + + + 4771 + 4690 + 8 + + + 4772 + 4691 + 7 + + + 4773 + 4692 + 11 + + + 4774 + 4693 + 7 + + + 4775 + 4694 + 13 + + + 4776 + 4695 + 13 + + + 4777 + 4696 + 5 + + + 4778 + 4697 + 8 + + + 4779 + 4698 + 7 + + + 4780 + 4699 + 16 + + + 4781 + 4700 + 8 + + + 4782 + 4701 + 5 + + + 4783 + 4702 + 6 + + + 4784 + 4703 + 3 + + + 4785 + 4704 + 4 + + + 4786 + 4705 + 7 + + + 4787 + 4706 + 8 + + + 4788 + 4707 + 10 + + + 4789 + 4708 + 8 + + + 4790 + 4709 + 10 + + + 4791 + 4710 + 14 + + + 4792 + 4711 + 10 + + + 4793 + 4712 + 11 + + + 4794 + 4713 + 6 + + + 4795 + 4714 + 6 + + + 4796 + 4715 + 6 + + + 4797 + 4716 + 5 + + + 4798 + 4717 + 8 + + + 4799 + 4718 + 5 + + + 4800 + 4719 + 6 + + + 4801 + 4720 + 14 + + + 4802 + 4721 + 7 + + + 4803 + 4722 + 9 + + + 4804 + 4723 + 10 + + + 4805 + 4724 + 10 + + + 4806 + 4725 + 6 + + + 4807 + 4726 + 3 + + + 4808 + 4727 + 8 + + + 4809 + 4728 + 8 + + + 4810 + 4729 + 3 + + + 4811 + 4730 + 4 + + + 4812 + 4731 + 5 + + + 4813 + 4732 + 3 + + + 4814 + 4733 + 7 + + + 4815 + 4734 + 6 + + + 4816 + 4735 + 1 + + + 4817 + 4736 + 7 + + + 4818 + 4737 + 6 + + + 4819 + 4738 + 5 + + + 4820 + 4739 + 9 + + + 4821 + 4740 + 6 + + + 4822 + 4741 + 5 + + + 4823 + 4742 + 7 + + + 4824 + 4743 + 4 + + + 4825 + 4744 + 11 + + + 4826 + 4745 + 8 + + + 4827 + 4746 + 12 + + + 4828 + 4747 + 5 + + + 4829 + 4748 + 3 + + + 4830 + 4749 + 5 + + + 4831 + 4750 + 14 + + + 4832 + 4751 + 5 + + + 4833 + 4752 + 12 + + + 4834 + 4753 + 9 + + + 4835 + 4754 + 11 + + + 4836 + 4755 + 5 + + + 4837 + 4756 + 3 + + + 4838 + 4757 + 7 + + + 4839 + 4758 + 6 + + + 4840 + 4759 + 15 + + + 4841 + 4760 + 13 + + + 4842 + 4761 + 12 + + + 4843 + 4762 + 11 + + + 4844 + 4763 + 9 + + + 4845 + 4764 + 6 + + + 4846 + 4765 + 9 + + + 4847 + 4766 + 4 + + + 4848 + 4767 + 6 + + + 4849 + 4768 + 6 + + + 4850 + 4769 + 7 + + + 4851 + 4770 + 4 + + + 4852 + 4771 + 8 + + + 4853 + 4772 + 4 + + + 4854 + 4773 + 9 + + + 4855 + 4774 + 4 + + + 4856 + 4775 + 11 + + + 4857 + 4776 + 5 + + + 4858 + 4777 + 5 + + + 4859 + 4778 + 4 + + + 4860 + 4779 + 4 + + + 4861 + 4780 + 7 + + + 4862 + 4781 + 7 + + + 4863 + 4782 + 2 + + + 4864 + 4783 + 7 + + + 4865 + 4784 + 9 + + + 4866 + 4785 + 8 + + + 4867 + 4786 + 10 + + + 4868 + 4787 + 3 + + + 4869 + 4788 + 6 + + + 4870 + 4789 + 6 + + + 4871 + 4790 + 16 + + + 4872 + 4791 + 6 + + + 4873 + 4792 + 4 + + + 4874 + 4793 + 5 + + + 4875 + 4794 + 5 + + + 4876 + 4795 + 9 + + + 4877 + 4796 + 2 + + + 4878 + 4797 + 7 + + + 4879 + 4798 + 7 + + + 4880 + 4799 + 6 + + + 4881 + 4800 + 4 + + + 4882 + 4801 + 5 + + + 4883 + 4802 + 6 + + + 4884 + 4803 + 12 + + + 4885 + 4804 + 5 + + + 4886 + 4805 + 4 + + + 4887 + 4806 + 6 + + + 4888 + 4807 + 9 + + + 4889 + 4808 + 3 + + + 4890 + 4809 + 4 + + + 4891 + 4810 + 6 + + + 4892 + 4811 + 5 + + + 4893 + 4812 + 6 + + + 4894 + 4813 + 6 + + + 4895 + 4814 + 7 + + + 4896 + 4815 + 5 + + + 4897 + 4816 + 8 + + + 4898 + 4817 + 14 + + + 4899 + 4818 + 3 + + + 4900 + 4819 + 7 + + + 4901 + 4820 + 9 + + + 4902 + 4821 + 7 + + + 4903 + 4822 + 4 + + + 4904 + 4823 + 6 + + + 4905 + 4824 + 6 + + + 4906 + 4825 + 7 + + + 4907 + 4826 + 6 + + + 4908 + 4827 + 11 + + + 4909 + 4828 + 6 + + + 4910 + 4829 + 6 + + + 4911 + 4830 + 11 + + + 4912 + 4831 + 2 + + + 4913 + 4832 + 8 + + + 4914 + 4833 + 5 + + + 4915 + 4834 + 4 + + + 4916 + 4835 + 7 + + + 4917 + 4836 + 6 + + + 4918 + 4837 + 6 + + + 4919 + 4838 + 8 + + + 4920 + 4839 + 8 + + + 4921 + 4840 + 11 + + + 4922 + 4841 + 8 + + + 4923 + 4842 + 9 + + + 4924 + 4843 + 5 + + + 4925 + 4844 + 13 + + + 4926 + 4845 + 10 + + + 4927 + 4846 + 7 + + + 4928 + 4847 + 7 + + + 4929 + 4848 + 4 + + + 4930 + 4849 + 9 + + + 4931 + 4850 + 4 + + + 4932 + 4851 + 5 + + + 4933 + 4852 + 6 + + + 4934 + 4853 + 7 + + + 4935 + 4854 + 8 + + + 4936 + 4855 + 8 + + + 4937 + 4856 + 6 + + + 4938 + 4857 + 10 + + + 4939 + 4858 + 3 + + + 4940 + 4859 + 9 + + + 4941 + 4860 + 4 + + + 4942 + 4861 + 8 + + + 4943 + 4862 + 3 + + + 4944 + 4863 + 5 + + + 4945 + 4864 + 6 + + + 4946 + 4865 + 10 + + + 4947 + 4866 + 8 + + + 4948 + 4867 + 5 + + + 4949 + 4868 + 7 + + + 4950 + 4869 + 3 + + + 4951 + 4870 + 8 + + + 4952 + 4871 + 5 + + + 4953 + 4872 + 8 + + + 4954 + 4873 + 5 + + + 4955 + 4874 + 5 + + + 4956 + 4875 + 10 + + + 4957 + 4876 + 9 + + + 4958 + 4877 + 9 + + + 4959 + 4878 + 14 + + + 4960 + 4879 + 11 + + + 4961 + 4880 + 9 + + + 4962 + 4881 + 4 + + + 4963 + 4882 + 5 + + + 4964 + 4883 + 8 + + + 4965 + 4884 + 9 + + + 4966 + 4885 + 9 + + + 4967 + 4886 + 10 + + + 4968 + 4887 + 6 + + + 4969 + 4888 + 6 + + + 4970 + 4889 + 5 + + + 4971 + 4890 + 8 + + + 4972 + 4891 + 4 + + + 4973 + 4892 + 7 + + + 4974 + 4893 + 7 + + + 4975 + 4894 + 2 + + + 4976 + 4895 + 9 + + + 4977 + 4896 + 9 + + + 4978 + 4897 + 9 + + + 4979 + 4898 + 6 + + + 4980 + 4899 + 8 + + + 4981 + 4900 + 3 + + + 4982 + 4901 + 10 + + + 4983 + 4902 + 12 + + + 4984 + 4903 + 9 + + + 4985 + 4904 + 3 + + + 4986 + 4905 + 6 + + + 4987 + 4906 + 10 + + + 4988 + 4907 + 8 + + + 4989 + 4908 + 12 + + + 4990 + 4909 + 4 + + + 4991 + 4910 + 5 + + + 4992 + 4911 + 4 + + + 4993 + 4912 + 8 + + + 4994 + 4913 + 6 + + + 4995 + 4914 + 8 + + + 4996 + 4915 + 5 + + + 4997 + 4916 + 3 + + + 4998 + 4917 + 3 + + + 4999 + 4918 + 14 + + + 5000 + 4919 + 5 + + + 5001 + 4920 + 12 + + + 5002 + 4921 + 10 + + + 5003 + 4922 + 10 + + + 5004 + 4923 + 10 + + + 5005 + 4924 + 6 + + + 5006 + 4925 + 11 + + + 5007 + 4926 + 6 + + + 5008 + 4927 + 5 + + + 5009 + 4928 + 4 + + + 5010 + 4929 + 11 + + + 5011 + 4930 + 5 + + + 5012 + 4931 + 13 + + + 5013 + 4932 + 11 + + + 5014 + 4933 + 8 + + + 5015 + 4934 + 13 + + + 5016 + 4935 + 9 + + + 5017 + 4936 + 11 + + + 5018 + 4937 + 8 + + + 5019 + 4938 + 8 + + + 5020 + 4939 + 15 + + + 5021 + 4940 + 4 + + + 5022 + 4941 + 7 + + + 5023 + 4942 + 6 + + + 5024 + 4943 + 13 + + + 5025 + 4944 + 11 + + + 5026 + 4945 + 12 + + + 5027 + 4946 + 6 + + + 5028 + 4947 + 7 + + + 5029 + 4948 + 9 + + + 5030 + 4949 + 10 + + + 5031 + 4950 + 5 + + + 5032 + 4951 + 10 + + + 5033 + 4952 + 7 + + + 5034 + 4953 + 8 + + + 5035 + 4954 + 9 + + + 5036 + 4955 + 12 + + + 5037 + 4956 + 7 + + + 5038 + 4957 + 7 + + + 5039 + 4958 + 4 + + + 5040 + 4959 + 5 + + + 5041 + 4960 + 5 + + + 5042 + 4961 + 7 + + + 5043 + 4962 + 8 + + + 5044 + 4963 + 7 + + + 5045 + 4964 + 10 + + + 5046 + 4965 + 8 + + + 5047 + 4966 + 11 + + + 5048 + 4967 + 8 + + + 5049 + 4968 + 11 + + + 5050 + 4969 + 9 + + + 5051 + 4970 + 6 + + + 5052 + 4971 + 10 + + + 5053 + 4972 + 5 + + + 5054 + 4973 + 12 + + + 5055 + 4974 + 11 + + + 5056 + 4975 + 8 + + + 5057 + 4976 + 2 + + + 5058 + 4977 + 13 + + + 5059 + 4978 + 7 + + + 5060 + 4979 + 7 + + + 5061 + 4980 + 8 + + + 5062 + 4981 + 7 + + + 5063 + 4982 + 10 + + + 5064 + 4983 + 12 + + + 5065 + 4984 + 4 + + + 5066 + 4985 + 8 + + + 5067 + 4986 + 7 + + + 5068 + 4987 + 9 + + + 5069 + 4988 + 14 + + + 5070 + 4989 + 7 + + + 5071 + 4990 + 6 + + + 5072 + 4991 + 9 + + + 5073 + 4992 + 11 + + + 5074 + 4993 + 8 + + + 5075 + 4994 + 9 + + + 5076 + 4995 + 11 + + + 5077 + 4996 + 7 + + + 5078 + 4997 + 11 + + + 5079 + 4998 + 5 + + + 5080 + 4999 + 11 + + + 5081 + 5000 + 6 + + + 5082 + 5001 + 7 + + + 5083 + 5002 + 12 + + + 5084 + 5003 + 10 + + + 5085 + 5004 + 8 + + + 5086 + 5005 + 6 + + + 5087 + 5006 + 3 + + + 5088 + 5007 + 19 + + + 5089 + 5008 + 8 + + + 5090 + 5009 + 5 + + + 5091 + 5010 + 8 + + + 5092 + 5011 + 7 + + + 5093 + 5012 + 9 + + + 5094 + 5013 + 9 + + + 5095 + 5014 + 6 + + + 5096 + 5015 + 6 + + + 5097 + 5016 + 4 + + + 5098 + 5017 + 9 + + + 5099 + 5018 + 11 + + + 5100 + 5019 + 6 + + + 5101 + 5020 + 6 + + + 5102 + 5021 + 5 + + + 5103 + 5022 + 11 + + + 5104 + 5023 + 11 + + + 5105 + 5024 + 6 + + + 5106 + 5025 + 13 + + + 5107 + 5026 + 2 + + + 5108 + 5027 + 10 + + + 5109 + 5028 + 11 + + + 5110 + 5029 + 8 + + + 5111 + 5030 + 9 + + + 5112 + 5031 + 7 + + + 5113 + 5032 + 8 + + + 5114 + 5033 + 4 + + + 5115 + 5034 + 5 + + + 5116 + 5035 + 4 + + + 5117 + 5036 + 8 + + + 5118 + 5037 + 5 + + + 5119 + 5038 + 11 + + + 5120 + 5039 + 10 + + + 5121 + 5040 + 3 + + + 5122 + 5041 + 10 + + + 5123 + 5042 + 9 + + + 5124 + 5043 + 11 + + + 5125 + 5044 + 11 + + + 5126 + 5045 + 7 + + + 5127 + 5046 + 8 + + + 5128 + 5047 + 3 + + + 5129 + 5048 + 9 + + + 5130 + 5049 + 5 + + + 5131 + 5050 + 12 + + + 5132 + 5051 + 2 + + + 5133 + 5052 + 2 + + + 5134 + 5053 + 8 + + + 5135 + 5054 + 9 + + + 5136 + 5055 + 9 + + + 5137 + 5056 + 8 + + + 5138 + 5057 + 2 + + + 5139 + 5058 + 7 + + + 5140 + 5059 + 11 + + + 5141 + 5060 + 4 + + + 5142 + 5061 + 8 + + + 5143 + 5062 + 3 + + + 5144 + 5063 + 9 + + + 5145 + 5064 + 10 + + + 5146 + 5065 + 11 + + + 5147 + 5066 + 5 + + + 5148 + 5067 + 5 + + + 5149 + 5068 + 8 + + + 5150 + 5069 + 2 + + + 5151 + 5070 + 6 + + + 5152 + 5071 + 5 + + + 5153 + 5072 + 10 + + + 5154 + 5073 + 7 + + + 5155 + 5074 + 10 + + + 5156 + 5075 + 12 + + + 5157 + 5076 + 3 + + + 5158 + 5077 + 4 + + + 5159 + 5078 + 2 + + + 5160 + 5079 + 8 + + + 5161 + 5080 + 5 + + + 5162 + 5081 + 8 + + + 5163 + 5082 + 9 + + + 5164 + 5083 + 5 + + + 5165 + 5084 + 3 + + + 5166 + 5085 + 3 + + + 5167 + 5086 + 9 + + + 5168 + 5087 + 9 + + + 5169 + 5088 + 6 + + + 5170 + 5089 + 6 + + + 5171 + 5090 + 9 + + + 5172 + 5091 + 9 + + + 5173 + 5092 + 3 + + + 5174 + 5093 + 4 + + + 5175 + 5094 + 6 + + + 5176 + 5095 + 8 + + + 5177 + 5096 + 6 + + + 5178 + 5097 + 8 + + + 5179 + 5098 + 5 + + + 5180 + 5099 + 3 + + + 5181 + 5100 + 8 + + + 5182 + 5101 + 3 + + + 5183 + 5102 + 5 + + + 5184 + 5103 + 5 + + + 5185 + 5104 + 8 + + + 5186 + 5105 + 7 + + + 5187 + 5106 + 4 + + + 5188 + 5107 + 9 + + + 5189 + 5108 + 6 + + + 5190 + 5109 + 6 + + + 5191 + 5110 + 7 + + + 5192 + 5111 + 5 + + + 5193 + 5112 + 9 + + + 5194 + 5113 + 5 + + + 5195 + 5114 + 7 + + + 5196 + 5115 + 8 + + + 5197 + 5116 + 4 + + + 5198 + 5117 + 5 + + + 5199 + 5118 + 8 + + + 5200 + 5119 + 3 + + + 5201 + 5120 + 3 + + + 5202 + 5121 + 9 + + + 5203 + 5122 + 3 + + + 5204 + 5123 + 7 + + + 5205 + 5124 + 5 + + + 5206 + 5125 + 6 + + + 5207 + 5126 + 9 + + + 5208 + 5127 + 10 + + + 5209 + 5128 + 4 + + + 5210 + 5129 + 6 + + + 5211 + 5130 + 10 + + + 5212 + 5131 + 6 + + + 5213 + 5132 + 7 + + + 5214 + 5133 + 3 + + + 5215 + 5134 + 1 + + + 5216 + 5135 + 4 + + + 5217 + 5136 + 4 + + + 5218 + 5137 + 3 + + + 5219 + 5138 + 7 + + + 5220 + 5139 + 7 + + + 5221 + 5140 + 2 + + + 5222 + 5141 + 7 + + + 5223 + 5142 + 8 + + + 5224 + 5143 + 8 + + + 5225 + 5144 + 1 + + + 5226 + 5145 + 7 + + + 5227 + 5146 + 3 + + + 5228 + 5147 + 4 + + + 5229 + 5148 + 6 + + + 5230 + 5149 + 5 + + + 5231 + 5150 + 6 + + + 5232 + 5151 + 4 + + + 5233 + 5152 + 6 + + + 5234 + 5153 + 3 + + + 5235 + 5154 + 2 + + + 5236 + 5155 + 2 + + + 5237 + 5156 + 3 + + + 5238 + 5157 + 4 + + + 5239 + 5158 + 5 + + + 5240 + 5159 + 6 + + + 5241 + 5160 + 6 + + + 5242 + 5161 + 2 + + + 5243 + 5162 + 6 + + + 5244 + 5163 + 7 + + + 5245 + 5164 + 6 + + + 5246 + 5165 + 4 + + + 5247 + 5166 + 3 + + + 5248 + 5167 + 3 + + + 5249 + 5168 + 9 + + + 5250 + 5169 + 7 + + + 5251 + 5170 + 3 + + + 5252 + 5171 + 9 + + + 5253 + 5172 + 5 + + + 5254 + 5173 + 7 + + + 5255 + 5174 + 5 + + + 5256 + 5175 + 3 + + + 5257 + 5176 + 5 + + + 5258 + 5177 + 5 + + + 5259 + 5178 + 5 + + + 5260 + 5179 + 5 + + + 5261 + 5180 + 4 + + + 5262 + 5181 + 2 + + + 5263 + 5182 + 4 + + + 5264 + 5183 + 3 + + + 5265 + 5184 + 3 + + + 5266 + 5185 + 4 + + + 5267 + 5186 + 7 + + + 5268 + 5187 + 4 + + + 5269 + 5188 + 3 + + + 5270 + 5189 + 7 + + + 5271 + 5190 + 3 + + + 5272 + 5191 + 4 + + + 5273 + 5192 + 4 + + + 5274 + 5193 + 3 + + + 5275 + 5194 + 5 + + + 5276 + 5195 + 3 + + + 5277 + 5196 + 3 + + + 5278 + 5197 + 8 + + + 5279 + 5198 + 4 + + + 5280 + 5199 + 9 + + + 5281 + 5200 + 3 + + + 5282 + 5201 + 4 + + + 5283 + 5202 + 6 + + + 5284 + 5203 + 8 + + + 5285 + 5204 + 3 + + + 5286 + 5205 + 4 + + + 5287 + 5206 + 5 + + + 5288 + 5207 + 4 + + + 5289 + 5208 + 3 + + + 5290 + 5209 + 5 + + + 5291 + 5210 + 6 + + + 5292 + 5211 + 4 + + + 5293 + 5212 + 6 + + + 5294 + 5213 + 8 + + + 5295 + 5214 + 5 + + + 5296 + 5215 + 6 + + + 5297 + 5216 + 2 + + + 5298 + 5218 + 3 + + + 5299 + 5219 + 9 + + + 5300 + 5220 + 5 + + + 5301 + 5221 + 4 + + + 5302 + 5222 + 4 + + + 5303 + 5223 + 3 + + + 5304 + 5224 + 4 + + + 5305 + 5225 + 5 + + + 5306 + 5226 + 4 + + + 5307 + 5227 + 7 + + + 5308 + 5228 + 5 + + + 5309 + 5229 + 6 + + + 5310 + 5230 + 4 + + + 5311 + 5231 + 3 + + + 5312 + 5232 + 5 + + + 5313 + 5233 + 2 + + + 5314 + 5234 + 2 + + + 5315 + 5235 + 5 + + + 5316 + 5236 + 6 + + + 5317 + 5237 + 6 + + + 5318 + 5238 + 2 + + + 5319 + 5239 + 4 + + + 5320 + 5240 + 7 + + + 5321 + 5241 + 3 + + + 5322 + 5242 + 1 + + + 5323 + 5243 + 2 + + + 5324 + 5244 + 2 + + + 5325 + 5245 + 4 + + + 5326 + 5246 + 5 + + + 5327 + 5247 + 2 + + + 5328 + 5248 + 5 + + + 5329 + 5249 + 3 + + + 5330 + 5250 + 6 + + + 5331 + 5251 + 4 + + + 5332 + 5252 + 3 + + + 5333 + 5253 + 1 + + + 5334 + 5254 + 1 + + + 5335 + 5255 + 5 + + + 5336 + 5256 + 3 + + + 5337 + 5257 + 5 + + + 5338 + 5259 + 3 + + + 5339 + 5260 + 1 + + + 5340 + 5261 + 5 + + + 5341 + 5262 + 1 + + + 5342 + 5263 + 3 + + + 5343 + 5264 + 5 + + + 5344 + 5265 + 2 + + + 5345 + 5266 + 3 + + + 5346 + 5267 + 3 + + + 5347 + 5268 + 3 + + + 5348 + 5269 + 3 + + + 5349 + 5270 + 3 + + + 5350 + 5271 + 5 + + + 5351 + 5272 + 4 + + + 5352 + 5273 + 3 + + + 5353 + 5274 + 3 + + + 5354 + 5275 + 7 + + + 5355 + 5276 + 4 + + + 5356 + 5277 + 5 + + + 5357 + 5278 + 4 + + + 5358 + 5279 + 4 + + + 5359 + 5280 + 2 + + + 5360 + 5281 + 3 + + + 5361 + 5282 + 3 + + + 5362 + 5283 + 5 + + + 5363 + 5284 + 7 + + + 5364 + 5285 + 3 + + + 5365 + 5286 + 7 + + + 5366 + 5287 + 3 + + + 5367 + 5288 + 2 + + + 5368 + 5289 + 5 + + + 5369 + 5290 + 6 + + + 5370 + 5291 + 3 + + + 5371 + 5292 + 2 + + + 5372 + 5296 + 1 + + + 5373 + 5297 + 2 + + + 5374 + 5298 + 4 + + + 5375 + 5299 + 6 + + + 5376 + 5300 + 3 + + + 5377 + 5301 + 4 + + + 5378 + 5302 + 4 + + + 5379 + 5303 + 1 + + + 5380 + 5305 + 1 + + + 5381 + 5306 + 4 + + + 5382 + 5307 + 2 + + + 5383 + 5308 + 2 + + + 5384 + 5309 + 8 + + + 5385 + 5310 + 4 + + + 5386 + 5311 + 6 + + + 5387 + 5312 + 6 + + + 5388 + 5313 + 4 + + + 5389 + 5314 + 4 + + + 5390 + 5315 + 5 + + + 5391 + 5316 + 2 + + + 5392 + 5317 + 6 + + + 5393 + 5318 + 2 + + + 5394 + 5319 + 3 + + + 5395 + 5320 + 1 + + + 5396 + 5321 + 1 + + + 5397 + 5323 + 1 + + + 5398 + 5324 + 3 + + + 5399 + 5325 + 4 + + + 5400 + 5326 + 7 + + + 5401 + 5327 + 2 + + + 5402 + 5328 + 3 + + + 5403 + 5329 + 1 + + + 5404 + 5330 + 5 + + + 5405 + 5331 + 4 + + + 5406 + 5332 + 2 + + + 5407 + 5333 + 5 + + + 5408 + 5334 + 2 + + + 5409 + 5335 + 3 + + + 5410 + 5336 + 3 + + + 5411 + 5337 + 3 + + + 5412 + 5338 + 2 + + + 5413 + 5339 + 5 + + + 5414 + 5340 + 1 + + + 5415 + 5341 + 2 + + + 5416 + 5342 + 2 + + + 5417 + 5346 + 5 + + + 5418 + 5347 + 2 + + + 5419 + 5349 + 4 + + + 5420 + 5350 + 1 + + + 5421 + 5351 + 2 + + + 5422 + 5352 + 3 + + + 5423 + 5353 + 4 + + + 5424 + 5354 + 4 + + + 5425 + 5355 + 4 + + + 5426 + 5356 + 1 + + + 5427 + 5357 + 5 + + + 5428 + 5358 + 3 + + + 5429 + 5359 + 2 + + + 5430 + 5360 + 2 + + + 5431 + 5361 + 5 + + + 5432 + 5362 + 5 + + + 5433 + 5363 + 1 + + + 5434 + 5364 + 1 + + + 5435 + 5366 + 1 + + + 5436 + 5367 + 1 + + + 5437 + 5368 + 3 + + + 5438 + 5370 + 3 + + + 5439 + 5371 + 2 + + + 5440 + 5372 + 3 + + + 5441 + 5373 + 4 + + + 5442 + 5374 + 1 + + + 5443 + 5376 + 2 + + + 5444 + 5377 + 2 + + + 5445 + 5378 + 1 + + + 5446 + 5379 + 2 + + + 5447 + 5380 + 2 + + + 5448 + 5381 + 2 + + + 5449 + 5382 + 3 + + + 5450 + 5383 + 2 + + + 5451 + 5385 + 3 + + + 5452 + 5386 + 5 + + + 5453 + 5388 + 4 + + + 5454 + 5389 + 1 + + + 5455 + 5390 + 1 + + + 5456 + 5391 + 4 + + + 5457 + 5392 + 3 + + + 5458 + 5393 + 4 + + + 5459 + 5394 + 4 + + + 5460 + 5395 + 2 + + + 5461 + 5396 + 1 + + + 5462 + 5397 + 3 + + + 5463 + 5398 + 3 + + + 5464 + 5399 + 2 + + + 5465 + 5400 + 4 + + + 5466 + 5401 + 3 + + + 5467 + 5403 + 1 + + + 5468 + 5404 + 2 + + + 5469 + 5405 + 1 + + + 5470 + 5406 + 3 + + + 5471 + 5407 + 3 + + + 5472 + 5409 + 1 + + + 5473 + 5410 + 2 + + + 5474 + 5412 + 1 + + + 5475 + 5413 + 2 + + + 5476 + 5414 + 2 + + + 5477 + 5415 + 2 + + + 5478 + 5416 + 4 + + + 5479 + 5417 + 3 + + + 5480 + 5418 + 1 + + + 5481 + 5420 + 5 + + + 5482 + 5421 + 4 + + + 5483 + 5422 + 3 + + + 5484 + 5423 + 1 + + + 5485 + 5424 + 4 + + + 5486 + 5425 + 1 + + + 5487 + 5426 + 1 + + + 5488 + 5427 + 2 + + + 5489 + 5428 + 1 + + + 5490 + 5429 + 3 + + + 5491 + 5431 + 4 + + + 5492 + 5432 + 3 + + + 5493 + 5435 + 1 + + + 5494 + 5436 + 1 + + + 5495 + 5437 + 3 + + + 5496 + 5438 + 1 + + + 5497 + 5439 + 5 + + + 5498 + 5440 + 3 + + + 5499 + 5441 + 3 + + + 5500 + 5444 + 3 + + + 5501 + 5445 + 1 + + + 5502 + 5446 + 2 + + + 5503 + 5448 + 2 + + + 5504 + 5449 + 4 + + + 5505 + 5450 + 3 + + + 5506 + 5451 + 1 + + + 5507 + 5452 + 3 + + + 5508 + 5453 + 2 + + + 5509 + 5454 + 1 + + + 5510 + 5455 + 4 + + + 5511 + 5456 + 3 + + + 5512 + 5459 + 1 + + + 5513 + 5460 + 3 + + + 5514 + 5461 + 1 + + + 5515 + 5463 + 1 + + + 5516 + 5464 + 1 + + + 5517 + 5465 + 1 + + + 5518 + 5467 + 1 + + + 5519 + 5468 + 1 + + + 5520 + 5469 + 1 + + + 5521 + 5470 + 3 + + + 5522 + 5471 + 4 + + + 5523 + 5472 + 1 + + + 5524 + 5473 + 2 + + + 5525 + 5475 + 1 + + + 5526 + 5476 + 4 + + + 5527 + 5477 + 2 + + + 5528 + 5479 + 2 + + + 5529 + 5480 + 2 + + + 5530 + 5482 + 1 + + + 5531 + 5483 + 2 + + + 5532 + 5484 + 2 + + + 5533 + 5485 + 4 + + + 5534 + 5486 + 3 + + + 5535 + 5487 + 3 + + + 5536 + 5488 + 4 + + + 5537 + 5489 + 1 + + + 5538 + 5490 + 2 + + + 5539 + 5492 + 2 + + + 5540 + 5494 + 1 + + + 5541 + 5495 + 1 + + + 5542 + 5496 + 2 + + + 5543 + 5497 + 1 + + + 5544 + 5499 + 6 + + + 5545 + 5500 + 2 + + + 5546 + 5503 + 1 + + + 5547 + 5504 + 1 + + + 5548 + 5506 + 1 + + + 5549 + 5508 + 2 + + + 5550 + 5509 + 1 + + + 5551 + 5512 + 2 + + + 5552 + 5513 + 1 + + + 5553 + 5519 + 1 + + + 5554 + 5520 + 3 + + + 5555 + 5521 + 1 + + + 5556 + 5523 + 1 + + + 5557 + 5524 + 1 + + + 5558 + 5526 + 1 + + + 5559 + 5527 + 1 + + + 5560 + 5531 + 1 + + + 5561 + 5534 + 2 + + + 5562 + 5535 + 3 + + + 5563 + 5536 + 3 + + + 5564 + 5537 + 1 + + + 5565 + 5543 + 2 + + + 5566 + 5544 + 4 + + + 5567 + 5545 + 3 + + + 5568 + 5549 + 2 + + + 5569 + 5550 + 1 + + + 5570 + 5552 + 1 + + + 5571 + 5553 + 3 + + + 5572 + 5555 + 2 + + + 5573 + 5556 + 2 + + + 5574 + 5557 + 1 + + + 5575 + 5558 + 2 + + + 5576 + 5561 + 2 + + + 5577 + 5563 + 1 + + + 5578 + 5564 + 1 + + + 5579 + 5565 + 1 + + + 5580 + 5567 + 1 + + + 5581 + 5569 + 2 + + + 5582 + 5570 + 4 + + + 5583 + 5571 + 1 + + + 5584 + 5572 + 1 + + + 5585 + 5573 + 3 + + + 5586 + 5574 + 1 + + + 5587 + 5575 + 4 + + + 5588 + 5576 + 1 + + + 5589 + 5577 + 2 + + + 5590 + 5578 + 3 + + + 5591 + 5579 + 1 + + + 5592 + 5581 + 1 + + + 5593 + 5582 + 1 + + + 5594 + 5584 + 1 + + + 5595 + 5588 + 1 + + + 5596 + 5589 + 2 + + + 5597 + 5591 + 1 + + + 5598 + 5592 + 1 + + + 5599 + 5597 + 2 + + + 5600 + 5598 + 2 + + + 5601 + 5599 + 1 + + + 5602 + 5602 + 1 + + + 5603 + 5607 + 1 + + + 5604 + 5608 + 1 + + + 5605 + 5609 + 2 + + + 5606 + 5610 + 1 + + + 5607 + 5611 + 1 + + + 5608 + 5615 + 1 + + + 5609 + 5617 + 2 + + + 5610 + 5621 + 1 + + + 5611 + 5623 + 1 + + + 5612 + 5624 + 2 + + + 5613 + 5627 + 1 + + + 5614 + 5628 + 1 + + + 5615 + 5629 + 3 + + + 5616 + 5630 + 1 + + + 5617 + 5631 + 1 + + + 5618 + 5633 + 4 + + + 5619 + 5635 + 1 + + + 5620 + 5637 + 2 + + + 5621 + 5638 + 1 + + + 5622 + 5639 + 3 + + + 5623 + 5640 + 1 + + + 5624 + 5641 + 1 + + + 5625 + 5644 + 1 + + + 5626 + 5645 + 1 + + + 5627 + 5647 + 2 + + + 5628 + 5648 + 1 + + + 5629 + 5649 + 3 + + + 5630 + 5650 + 2 + + + 5631 + 5652 + 2 + + + 5632 + 5656 + 1 + + + 5633 + 5660 + 1 + + + 5634 + 5661 + 1 + + + 5635 + 5662 + 3 + + + 5636 + 5663 + 1 + + + 5637 + 5665 + 1 + + + 5638 + 5666 + 1 + + + 5639 + 5668 + 1 + + + 5640 + 5669 + 2 + + + 5641 + 5672 + 1 + + + 5642 + 5673 + 1 + + + 5643 + 5674 + 1 + + + 5644 + 5675 + 1 + + + 5645 + 5678 + 1 + + + 5646 + 5679 + 1 + + + 5647 + 5682 + 1 + + + 5648 + 5684 + 2 + + + 5649 + 5686 + 2 + + + 5650 + 5690 + 1 + + + 5651 + 5691 + 2 + + + 5652 + 5692 + 2 + + + 5653 + 5693 + 1 + + + 5654 + 5699 + 1 + + + 5655 + 5704 + 1 + + + 5656 + 5708 + 2 + + + 5657 + 5712 + 1 + + + 5658 + 5716 + 1 + + + 5659 + 5720 + 1 + + + 5660 + 5721 + 1 + + + 5661 + 5727 + 1 + + + 5662 + 5730 + 1 + + + 5663 + 5733 + 1 + + + 5664 + 5751 + 1 + + + 5665 + 5752 + 2 + + + 5666 + 5753 + 2 + + + 5667 + 5756 + 1 + + + 5668 + 5762 + 1 + + + 5669 + 5764 + 1 + + + 5670 + 5765 + 1 + + + 5671 + 5768 + 1 + + + 5672 + 5773 + 1 + + + 5673 + 5774 + 1 + + + 5674 + 5783 + 1 + + + 5675 + 5806 + 1 + + + 5676 + 5812 + 1 + + + 5677 + 5815 + 1 + + + 5678 + 5839 + 1 + + + 5679 + 5840 + 1 + + + 5680 + 5846 + 1 + + + 5681 + 5848 + 1 + + + 5682 + 5878 + 1 + + + 5683 + 5890 + 1 + + + 5684 + 5913 + 1 + + + 5685 + 5916 + 1 + + + 5686 + 5940 + 1 + + + 5687 + 5946 + 1 + + + 5688 + 5964 + 1 + + + 5689 + 6008 + 1 + + + 5690 + 6028 + 1 + + + 5691 + 6078 + 1 + + + 5692 + 6083 + 1 + + + 5693 + 6089 + 1 + + + 5694 + 6109 + 1 + + + 5695 + 6241 + 1 + + + + -353 + 6241 + 627.37933605715 + 815.3898942266 + 664860.679606863 + + + diff --git a/Winter-2023/Digital Earth/elevation_10arcmin.tif.ovr b/Winter-2023/Digital Earth/elevation_10arcmin.tif.ovr new file mode 100755 index 0000000..2ad1ed6 Binary files /dev/null and b/Winter-2023/Digital Earth/elevation_10arcmin.tif.ovr differ diff --git a/Winter-2023/Digital Earth/elevation_10arcmin.tif.vat.dbf b/Winter-2023/Digital Earth/elevation_10arcmin.tif.vat.dbf new file mode 100755 index 0000000..610d7c6 Binary files /dev/null and b/Winter-2023/Digital Earth/elevation_10arcmin.tif.vat.dbf differ diff --git a/Winter-2023/Digital Earth/geographic_lines.CPG b/Winter-2023/Digital Earth/geographic_lines.CPG new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/geographic_lines.CPG @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/geographic_lines.dbf b/Winter-2023/Digital Earth/geographic_lines.dbf new file mode 100755 index 0000000..06a57e9 Binary files /dev/null and b/Winter-2023/Digital Earth/geographic_lines.dbf differ diff --git a/Winter-2023/Digital Earth/geographic_lines.prj b/Winter-2023/Digital Earth/geographic_lines.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/geographic_lines.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/geographic_lines.shp b/Winter-2023/Digital Earth/geographic_lines.shp new file mode 100755 index 0000000..1d24753 Binary files /dev/null and b/Winter-2023/Digital Earth/geographic_lines.shp differ diff --git a/Winter-2023/Digital Earth/geographic_lines.shx b/Winter-2023/Digital Earth/geographic_lines.shx new file mode 100755 index 0000000..ec36913 Binary files /dev/null and b/Winter-2023/Digital Earth/geographic_lines.shx differ diff --git a/Winter-2023/Digital Earth/graticules_30deg.CPG b/Winter-2023/Digital Earth/graticules_30deg.CPG new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/graticules_30deg.CPG @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/graticules_30deg.dbf b/Winter-2023/Digital Earth/graticules_30deg.dbf new file mode 100755 index 0000000..749cefa Binary files /dev/null and b/Winter-2023/Digital Earth/graticules_30deg.dbf differ diff --git a/Winter-2023/Digital Earth/graticules_30deg.prj b/Winter-2023/Digital Earth/graticules_30deg.prj new file mode 100755 index 0000000..b13a717 --- /dev/null +++ b/Winter-2023/Digital Earth/graticules_30deg.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.017453292519943295]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/graticules_30deg.shp b/Winter-2023/Digital Earth/graticules_30deg.shp new file mode 100755 index 0000000..9925355 Binary files /dev/null and b/Winter-2023/Digital Earth/graticules_30deg.shp differ diff --git a/Winter-2023/Digital Earth/graticules_30deg.shx b/Winter-2023/Digital Earth/graticules_30deg.shx new file mode 100755 index 0000000..fd4af45 Binary files /dev/null and b/Winter-2023/Digital Earth/graticules_30deg.shx differ diff --git a/Winter-2023/Digital Earth/major_lakes_110m.CPG b/Winter-2023/Digital Earth/major_lakes_110m.CPG new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/major_lakes_110m.CPG @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/major_lakes_110m.dbf b/Winter-2023/Digital Earth/major_lakes_110m.dbf new file mode 100755 index 0000000..243773c Binary files /dev/null and b/Winter-2023/Digital Earth/major_lakes_110m.dbf differ diff --git a/Winter-2023/Digital Earth/major_lakes_110m.prj b/Winter-2023/Digital Earth/major_lakes_110m.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/major_lakes_110m.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/major_lakes_110m.shp b/Winter-2023/Digital Earth/major_lakes_110m.shp new file mode 100755 index 0000000..726df04 Binary files /dev/null and b/Winter-2023/Digital Earth/major_lakes_110m.shp differ diff --git a/Winter-2023/Digital Earth/major_lakes_110m.shx b/Winter-2023/Digital Earth/major_lakes_110m.shx new file mode 100755 index 0000000..649305d Binary files /dev/null and b/Winter-2023/Digital Earth/major_lakes_110m.shx differ diff --git a/Winter-2023/Digital Earth/major_rivers_110m.CPG b/Winter-2023/Digital Earth/major_rivers_110m.CPG new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/major_rivers_110m.CPG @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/major_rivers_110m.dbf b/Winter-2023/Digital Earth/major_rivers_110m.dbf new file mode 100755 index 0000000..e1c83e5 Binary files /dev/null and b/Winter-2023/Digital Earth/major_rivers_110m.dbf differ diff --git a/Winter-2023/Digital Earth/major_rivers_110m.prj b/Winter-2023/Digital Earth/major_rivers_110m.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/major_rivers_110m.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/major_rivers_110m.shp b/Winter-2023/Digital Earth/major_rivers_110m.shp new file mode 100755 index 0000000..4cc1268 Binary files /dev/null and b/Winter-2023/Digital Earth/major_rivers_110m.shp differ diff --git a/Winter-2023/Digital Earth/major_rivers_110m.shx b/Winter-2023/Digital Earth/major_rivers_110m.shx new file mode 100755 index 0000000..0fafbe0 Binary files /dev/null and b/Winter-2023/Digital Earth/major_rivers_110m.shx differ diff --git a/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.README.html b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.README.html new file mode 100755 index 0000000..0337247 --- /dev/null +++ b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.README.html @@ -0,0 +1,549 @@ + + + + + + +Natural Earth » Blog Archive » Admin 1 – States, Provinces - Free vector and raster map data at 1:10m, 1:50m, and 1:110m scales + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+
+ + +
+

Admin 1 – States, Provinces

+ +
+
+
states_thumb
+
Over 4,500 internal administrative divisions of countries

+

Natural Earth shows de facto boundaries by default according to who controls the territory, versus de jure. Adjusted to taste which boundaries are shown, hidden, and how they are rendered using the fclass_* properties paired with the POV worldview polygons above.

+ + + + +

+
+
+
+

states_banner

+

About

+

NOTE: This theme is still in beta!

+

Internal, first-order administrative boundaries and polygons for all but a few tiny countries. Includes name attributes (including diacritical marks), name variants, and some statistical codes (FIPS, ISO, HASC).

+

Looking for Cyrillic or Chinese characters? The GeoDB format preserves local scripts better than SHP format.

+

Admin-0 units that lack admin-1:

+

Antarctica, some disputed areas, tiny island nations, and principalities such as Monaco, Andorra, Liechtenstein, and San Marino.

+

How-to

+

Use the following selection statement to derive this theme from the 10m lakes:

+

“ScaleRank” <=2

+

Then punch those selected features through the admin-1 and save result as a new feature class.

+

Issues

+

This is the toughest dataset to keep current. Unlike the United States, other countries constantly rearrange their admin-1 units, slicing and combining them on a regular basis.

+

We need help making sure our statistical codes are correct if they are present and about half the dataset needs them added, still.

+

Just a few admin-1 units lack a name. For names we are unsure about, those are flagged as an attribute.

+

A separate version should be created for “region” groupings of admin-1. Many countries, like France, include top level regions and departments, both as admin-1 ranking. If we only have their “region” admin-1, the department version needs to be digitized.

+

Boundaries should perfectly match the following NEV themes:

+

Coastline, lake shoreline, admin-0 country boundary, river and lake centerlines.

+

Some boundaries in Brazil, north Africa, and central Asia do not have enough data points on straight line segments. This is a concern when reprojecting the data. This is planned to be corrected in a 1.1 update.

+

Resources:

+ +

Version History

+ + +

The master changelog is available on Github »

+
+ + + + +
+ +
+ + + + + +
+ + + + + + +
+
    +
  1. +
    + + + + +

    […] of the earth (which I initially thought), but also provides detailed shapefiles. I checked the Admin 1 – States and Provinces shapefile and it contains South Sudan. And all data is licensed as public domain. That's not a […]

    + + +
    +
  2. +
+
+
+ + + + + + + + +
+ + +
+ +
+ + + + + + + + + + \ No newline at end of file diff --git a/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.VERSION.txt b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.VERSION.txt new file mode 100755 index 0000000..d7445e2 --- /dev/null +++ b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.VERSION.txt @@ -0,0 +1 @@ +5.1.1 diff --git a/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.cpg b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.cpg new file mode 100755 index 0000000..3ad133c --- /dev/null +++ b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.cpg @@ -0,0 +1 @@ +UTF-8 \ No newline at end of file diff --git a/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.dbf b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.dbf new file mode 100755 index 0000000..07940a3 Binary files /dev/null and b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.dbf differ diff --git a/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.prj b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.shp b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.shp new file mode 100755 index 0000000..33f5b63 Binary files /dev/null and b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.shp differ diff --git a/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.shx b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.shx new file mode 100755 index 0000000..ad7fc28 Binary files /dev/null and b/Winter-2023/Digital Earth/ne_10m_admin_1_states_provinces_lakes.shx differ diff --git a/Winter-2023/Digital Earth/oceans_110m.dbf b/Winter-2023/Digital Earth/oceans_110m.dbf new file mode 100755 index 0000000..6887d69 Binary files /dev/null and b/Winter-2023/Digital Earth/oceans_110m.dbf differ diff --git a/Winter-2023/Digital Earth/oceans_110m.prj b/Winter-2023/Digital Earth/oceans_110m.prj new file mode 100755 index 0000000..b13a717 --- /dev/null +++ b/Winter-2023/Digital Earth/oceans_110m.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.017453292519943295]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/oceans_110m.shp b/Winter-2023/Digital Earth/oceans_110m.shp new file mode 100755 index 0000000..953e7a1 Binary files /dev/null and b/Winter-2023/Digital Earth/oceans_110m.shp differ diff --git a/Winter-2023/Digital Earth/oceans_110m.shp.xml b/Winter-2023/Digital Earth/oceans_110m.shp.xml new file mode 100755 index 0000000..c1c570a --- /dev/null +++ b/Winter-2023/Digital Earth/oceans_110m.shp.xml @@ -0,0 +1,2 @@ + +20130130222156001.0TRUEfile://\\CHRISTMAN-ROWAN\C$\DATA\IMGISexamples\Lab_1_Data\ne_110m_oceanLocal Area Network diff --git a/Winter-2023/Digital Earth/oceans_110m.shx b/Winter-2023/Digital Earth/oceans_110m.shx new file mode 100755 index 0000000..b665c27 Binary files /dev/null and b/Winter-2023/Digital Earth/oceans_110m.shx differ diff --git a/Winter-2023/Digital Earth/starbucks and dunkin.pdf b/Winter-2023/Digital Earth/starbucks and dunkin.pdf new file mode 100755 index 0000000..caff800 Binary files /dev/null and b/Winter-2023/Digital Earth/starbucks and dunkin.pdf differ diff --git a/Winter-2023/Digital Earth/starbucks.csv b/Winter-2023/Digital Earth/starbucks.csv new file mode 100755 index 0000000..f64744e --- /dev/null +++ b/Winter-2023/Digital Earth/starbucks.csv @@ -0,0 +1,10558 @@ +Longitude,Latitude,Name,Address,City,State,ZIP +-72.519871,42.3774,Amherst - Amherst MA (W),71 North Pleasant Street,Amherst,MA,01002 +-72.576485,42.174793,"Chicopee - Chicopee MA (D, W)",620 Memorial Dr,Chicopee,MA,01020 +-72.513806,42.066164,E. Longmeadow Center - East Longmeadow MA (W),42 N. Main Street,East Longmeadow,MA,01028 +-72.6401,42.1674,Holyoke Mall - Holyoke MA,50 Holyoke Street,Holyoke,MA,01040 +-72.63367,42.328757,Stop & Shop - Northampton #787 - Northampton MA,228 King St.,Northampton,MA,01060 +-72.632545,42.317836,Northampton - Northampton MA (W),211 Main Street,Northampton,MA,01060 +-72.727842,42.114416,Westfield East Main St. - Westfield MA (D),280A East Main Street,Westfield,MA,01085 +-72.584997,42.095758,Springfield E. Columbus Blvd. - Springfield MA (D),1089 East Columbus Ave.,Springfield,MA,01105 +-72.557076,42.056771,Longmeadow Shops/Springfield - Longmeadow MA (W),708 Bliss Road,Longmeadow,MA,01106 +-73.1994,42.4653,"Pittsfield - Pittsfield MA (D, W)",555 Hubbard Avenue,Pittsfield,MA,01201 +-73.183175,42.544936,Target Lanesborough T-2127 - Lanesboro MA,655 Cheshire Rd.,Lanesboro,MA,01237 +-71.737906,42.525124,"Leominster Commercial Road - Leominster MA (D, W)",14 Commercial Rd.,Leominster,MA,01453 +-71.7136,42.5219,Target Leominster T-1965 - Leominster MA,86 Orchard Hill Park Dr,Leominster,MA,01453 +-71.831689,42.208478,Auburn Centre - Auburn MA (W),434A Southbridge Street (Route 12),Auburn,MA,01501 +-71.6112,42.271,Roche Bros - Westboro #119 - Westboro MA,1100 Union St.,Westboro,MA,01581 +-71.61098,42.28485,Westborough Shopping Center - Westborough MA (W),140 Turnpike St.,Westborough,MA,01581 +-71.807395,42.288592,Worcester One West Boylston Street - Worcester MA (W),1 West Boylston Street,Worcester,MA,01605 +-71.793781,42.266083,"Worcester East Central Street - Worcester MA (D, W)",11 East Central Street,Worcester,MA,01605 +-71.423,42.300185,Wild Harvest/Framingham - Framingham MA (W),25 Prospect St.,Framingham,MA,01701 +-71.396735,42.298976,Framingham (B&N) - Framingham MA (W),1 Worcester Road,Framingham,MA,01701 +-71.453747,42.474883,Acton Kelly's Corner - Acton MA (W),411 Massachusettes Ave.,Acton,MA,01720 +-71.272923,42.489546,Bedford Great Road - Bedford MA (W),186 Great Road,Bedford,MA,01730 +-71.356227,42.455855,Concord - Concord MA (W),159 Sudbury Road,Concord,MA,01742 +-71.615698,42.353245,Solomon Pond Mall - Marlborough MA (W),601 Donald Lynch Boulevard,Marlborough,MA,01752 +-71.589958,42.338955,Marlborough - Marlborough MA (W),189 Boston Post Road West,Marlborough,MA,01752 +-71.545937,42.346732,Marlborough South Bolton St. - Marlborough MA (W),23 South Bolton Street,Marlborough,MA,01752 +-71.38647,42.299011,Natick Reloc - Natick MA (W),1346 Worcester Road,Natick,MA,01760 +-71.52031,42.29229,Southborough - Southborough MA (W),154 Turnpike Road Rte 9,Southborough,MA,01772 +-71.425057,42.360197,Sudbury - Sudbury MA (W),513 Boston Post Road,Sudbury,MA,01776 +-71.364,42.3168,Wayland - Wayland MA (W),44 Main Street,Wayland,MA,01778 +-71.133747,42.511386,"Woburn Commerce Way - Woburn MA (D, W)",99 Commerce Way,Woburn,MA,01801 +-71.12686,42.496136,Woburn West Cummings Park - Woburn MA (W),200 W. Cummings Park,Woburn,MA,01801 +-71.207654,42.486192,Marketplace at Burlington - Burlington MA (W),84 Burlington Mall Road,Burlington,MA,01803 +-71.140386,42.656336,Andover - Andover MA (W),14 Main Street,Andover,MA,01810 +-71.363581,42.62373,Chelmsford - Chelmsford MA (W),101 Drum Hill Road,Chelmsford,MA,01824 +-71.101788,42.80751,Haverhill 1116 Main St. - Haverhill MA (D),1116 Main Street,Haverhill,MA,01830 +-71.119178,42.786374,Target Haverhill T-2325 - Haverhill MA,35 Computer Dr,Haverhill,MA,01832 +-71.157374,42.744113,Methuen/The Loop - Methuen MA (W),90 Pleasant Valley St.,Methuen,MA,01844 +-71.16069,42.741867,Target Methuen T-2287 - Methuen MA,67 Pleasant Valley St.,Methuen,MA,01844 +-71.11551,42.665756,N. Andover/Rte 114 - North Andover MA (W),562 Turnpike Street,North Andover,MA,01845 +-71.317563,42.624594,Target Lowell T-2480 - Lowell MA,199 Plain St.,Lowell,MA,01852 +-71.288393,42.581165,"Billerica - Billerica MA (D, W)",199 Boston Road,Billerica,MA,01862 +-71.103657,42.515843,Reading - Reading MA (W),288 Main Street,Reading,MA,01867 +-71.095595,42.520226,Reading Walkers Brook - Reading MA (W),24 Walkers Brook Drive,Reading,MA,01867 +-71.422226,42.566941,Westford Valley Marketplace - Westford MA (W),174 Littleton Road,Westford,MA,01886 +-71.179656,42.55389,"Wilmington Crossing - Wilmington MA (D, W)",271 Main St.,Wilmington,MA,01887 +-71.151427,42.484071,Winchester - Winchester MA (W),542 Main Street,Winchester,MA,01890 +-71.022939,42.477696,Saugus - Saugus MA (W),723 Broadway,Saugus,MA,01906 +-71.017357,42.488115,Saugus The Shops at Saugus - Saugus MA (D),366 B Broadway,Saugus,MA,01906 +-70.900507,42.483693,Swampscot - Swampscott MA (W),1016 Paradise Road,Swampscott,MA,01907 +-70.909384,42.557979,Beverly 242 Elliott St. - Beverly MA (D),242 Elliott St.,Beverly,MA,01915 +-70.884866,42.585635,Beverly - Beverly MA (W),29 Enon Street,Beverly,MA,01915 +-70.968461,42.597024,Sheraton Ferncroft-Danvers - Danvers MA,50 Ferncroft Road,Danvers,MA,01923 +-70.8559,42.5028,Marblehead - Marblehead MA (W),89 Pleasant Street,Marblehead,MA,01945 +-70.8695,42.811,Newburyport - Newburyport MA (W),23 Market Square,Newburyport,MA,01950 +-70.948215,42.546963,Peabody - Peabody MA (W),240 Andover Street,Peabody,MA,01960 +-70.94468,42.54524,North Shore Mall - Peabody MA (W),210 Andover Street Space W. 133,Peabody,MA,01960 +-70.895191,42.518239,Salem-Dodge Street - Salem MA (W),211 Washington Street,Salem,MA,01970 +-71.148677,42.140992,Canton-Cobbs Corner - Canton MA (W),95 Washington Street,Canton,MA,02021 +-70.8001,42.2212,"Cohasset - Cohasset MA (D, W)",790 Chief Justice Hwy.,Cohasset,MA,02025 +-71.1689,42.2546,"Dedham Mall Pad - Dedham MA (D, W)",300 Providence Highway,Dedham,MA,02026 +-70.903896,42.249234,Hingham - Hingham MA (W),184 Lincoln Street,Hingham,MA,02043 +-70.90131,42.180709,Hingham Rte. 53 - Hingham MA (W),1 Derby Street,Hingham,MA,02043 +-70.746947,42.106219,"Marshfield - Marshfield MA (D, W)",784 Plain St.,Marshfield,MA,02050 +-71.405465,42.152919,Medway - Medway MA (W),67A Main Street,Medway,MA,02053 +-71.191669,42.177228,"Norwood Rte. 1 North - Norwood MA (D, W)",1000 Providence Highway,Norwood,MA,02062 +-71.07357,42.153305,Target Stoughton T-2258 - Stoughton MA,1 Hawes Way,Stoughton,MA,02072 +-71.218704,42.14,"Walpole Rt. 1 - Walpole MA (D, W)",985 Route 1,Walpole,MA,02081 +-71.2227,42.2231,RT 109/Westwood - Westwood MA (W),736 High Street,Westwood,MA,02090 +-71.147384,42.358821,Fanueil Hall - Boston MA (W),2-4 Faneuil Hall Market Place,Boston,MA,02101 +-71.0622,42.3096,12 Winter Street - Boston MA (W),12 Winter Street,Boston,MA,02106 +-71.05919,42.357665,27 School Street - Boston MA (W),27 School Street,Boston,MA,02106 +-71.067188,42.351456,One Charles Street - Boston MA (W),1 Charles Street,Boston,MA,02108 +-71.059394,42.359299,Steaming Kettle - Boston MA (W),63-65 Court Street,Boston,MA,02108 +-71.057883,42.357925,Devonshire - Boston MA (W),240 Washington St.,Boston,MA,02108 +-71.055933,42.359006,84 State Street - Boston MA (W),84 State Street,Boston,MA,02109 +-71.0509,42.3602,Boston Long Wharf Marriott - Boston MA,296 State St.,Boston,MA,02109 +-71.0575,42.3531,125 Summer St. - Boston MA (W),125 Summer Street,Boston,MA,02110 +-71.0569,42.3549,Federal Street - Boston MA (W),75-101 Federal Street,Boston,MA,02110 +-71.056813,42.356245,One Federal Bldg. - Boston MA (W),1 Federal Street,Boston,MA,02110 +-71.054882,42.3548,211 Congress - Boston MA (W),211 Congress Street,Boston,MA,02110 +-71.052083,42.355778,One International Place - Boston MA (W),1 International Place,Boston,MA,02110 +-71.0505,42.364,Two Atlantic Avenue - Boston MA (W),2 Atlantic Avenue,Boston,MA,02110 +-71.063713,42.349888,Boston DoubleTree - Boston MA,821 Washington Street,Boston,MA,02111 +-71.056389,42.352389,One Financial Center-Dewey Sq. - Boston MA (W),1 Financial Center,Boston,MA,02111 +-71.125893,42.358007,Cambridge Street - Boston MA (W),222 Cambridge Street,Boston,MA,02114 +-71.070714,42.358896,Charles Street - Boston MA (W),97 Charles Street,Boston,MA,02114 +-71.1045,42.3379,Childrens' Hospital - Boston MA (W),283 Longwood Avenue,Boston,MA,02115 +-71.089033,42.340188,Northeastern U - Curry Student Ctr. - Boston MA,346 Huntington Ave.,Boston,MA,02115 +-71.0878,42.3466,Mass Avenue at Havland - Boston MA (W),147-151 Massachusetts Avenue,Boston,MA,02115 +-71.086259,42.341792,Huntington Plaza - Boston MA (W),273 Huntington Ave.,Boston,MA,02115 +-71.091528,42.347489,62 Boylston - Boston MA (W),62 Boylston Street,Boston,MA,02116 +-71.0872,42.3481,350 Newbury - Boston MA (W),350 Newbury Street,Boston,MA,02116 +-71.080974,42.349244,755 Boylston St. - Boston MA (W),755 Boylston Street,Boston,MA,02116 +-71.079376,42.346921,Marriott Boston Copley-Mall Entrnc - Boston MA,110 Huntington Ave.,Boston,MA,02116 +-71.0789,42.3508,165 Newbury - Boston MA (W),165 Newbury Street,Boston,MA,02116 +-71.07758,42.348809,Westin Hotel Copley - Boston MA (W),10 Huntington Ave.,Boston,MA,02116 +-71.076156,42.348514,441 Stuart Street - Boston MA (W),441 Stuart Street,Boston,MA,02116 +-71.073,42.3515,443 Boylston Street - Boston MA (W),443 Boylston Street,Boston,MA,02116 +-71.066251,42.35115,City Place - Boston - Boston MA (W),143 Stuart Street,Boston,MA,02116 +-71.074482,42.342475,Tremont-South End - Boston MA (W),627 Tremont St.,Boston,MA,02118 +-71.0627,42.3293,Target Dorchester T-1898 - Boston MA,7 Allstate Rd.,Boston,MA,02125 +-71.162577,42.225436,BOS - Gate 25 - East Boston MA (A),Gate 25,East Boston,MA,02128 +-71.0248,42.3753,BOS - Terminal E. - Food Court - East Boston MA (A),Boston Logan Term E. Food Court,East Boston,MA,02128 +-71.024704,42.3763,BOS - Terminal B - Pier B - East Boston MA (A),Boston Logan Term B Pier A-Tampopo,East Boston,MA,02128 +-71.017957,42.367271,BOS Boston/LoganAirport Term C - Boston MA (A),LoganAirport terminal C,Boston,MA,02128 +-71.01709,42.36666,BOS - Terminal B - Gates 1-3 - East Boston MA (A),Boston Logan InternationalAirport,East Boston,MA,02128 +-71.01709,42.36666,BOS - Terminal A Delta - East Boston MA (A),Boston Logan InternationalAirport,East Boston,MA,02128 +-71.0128,42.3932,BOS Term B AA Pre-Security - Boston MA (A),440 McClellan Highway,Boston,MA,02128 +-71.012355,42.392594,"East Boston - East Boston MA (D, W)",430 McClellan Highway,East Boston,MA,02128 +-71.152968,42.287329,West Roxbury- Roche Bros. - West Roxbury MA (W),1810 Centre Street,West Roxbury,MA,02132 +-71.1596,42.3486,Brighton Village - Brighton MA (W),470 Washington St.,Brighton,MA,02135 +-71.1536,42.3589,Brighton/Soldiers Field - Brighton MA (W),1660-1670 Soldiers Field Rd.,Brighton,MA,02135 +-71.130605,42.40937,Cambridge Fresh Pond - Cambridge MA (W),222 Alewife Brook Parkway,Cambridge,MA,02138 +-71.120224,42.372253,Harvard Square - Cambridge MA (W),36 JFK Street,Cambridge,MA,02138 +-71.120081,42.37439,31 Church - Cambridge MA (W),31 Church Street,Cambridge,MA,02138 +-71.119564,42.382847,Shepard Post - Cambridge MA (W),1662 Massachusetts Ave.,Cambridge,MA,02138 +-71.112688,42.373896,Broadway Marketplace - Cambridge MA (W),468 Broadway,Cambridge,MA,02138 +-71.115294,42.357743,Cambridge Memorial Drive - Cambridge MA,750 Memorial Drive,Cambridge,MA,02139 +-71.104113,42.365662,Central Square - Cambridge MA (W),655 Massachussets Ave.,Cambridge,MA,02139 +-71.076376,42.367101,Cambridgeside - Cambridge MA (W),100 Cambridgeside Place,Cambridge,MA,02141 +-71.08788,42.363785,Cambridge Center - Cambridge MA (W),6 Cambridge Center,Cambridge,MA,02142 +-71.086199,42.362793,Marriott Boston Cambridge - Cambridge MA,2 Cambridge Center,Cambridge,MA,02142 +-71.113501,42.385463,Somerville Avenue - Somerville MA (W),711-723 Somerville Ave.,Somerville,MA,02143 +-71.121637,42.394967,Davis Square Plaza - Somerville MA (W),260 Elm Street,Somerville,MA,02144 +-71.136759,42.338833,Brookline-Washington Sq. - Brookline MA (W),1655 Beacon Street,Brookline,MA,02146 +-71.128565,42.347037,Harvard Street - Brookline MA (W),473 Havard Street,Brookline,MA,02146 +-71.121627,42.342435,Coolidge Corner - Brookline MA (W),277 Harvard St.,Brookline,MA,02146 +-70.998,42.4015,Target Revere T-1942 - Revere MA,36 Furlong Dr,Revere,MA,02151 +-71.117584,42.418938,Medford - Star Market - Medford MA (W),2151 Mystic Valley Parkway,Medford,MA,02153 +-71.041186,42.401669,Station Landing - Medford MA (W),5 Revere Beach Pkwy.,Medford,MA,02155 +-71.256422,42.325747,Newton Lower Falls - Newton MA (W),2322 Washington Street,Newton,MA,02162 +-71.214539,42.309807,Newton Upper Falls - Newton MA (W),244 Needham Street,Newton,MA,02164 +-71.16997,42.321808,Chestnut Hill - Chestnut Hill MA (W),1154-1160 Boylston Street,Chestnut Hill,MA,02167 +-71.151953,42.302885,South Brookline - South Brookline MA (W),183 Grove St.,South Brookline,MA,02167 +-71.0051,42.245087,Quincy - Star Markets - Quincy MA (W),130 Granite Street,Quincy,MA,02169 +-71.004075,42.25206,Quincy Monroe Place - Quincy MA (W),1245 Hancock Street,Quincy,MA,02169 +-70.986904,42.236525,Roche Bros - Quincy #513 - Quincy MA,101 Falls Boulevard,Quincy,MA,02169 +-71.2267,42.4475,Lexington - Lexington MA (W),1729 Massachusetts Ave.,Lexington,MA,02173 +-71.189551,42.425404,Mass. Ave. Arlington - Arlington MA (W),1465 Massachusetts Ave.,Arlington,MA,02174 +-71.065115,42.455369,Melrose Center - Melrose MA (W),521 Main Street,Melrose,MA,02176 +-71.176364,42.381103,Belmont/Cushing Sq - Belmont MA (W),112 Trapelo Rd.,Belmont,MA,02178 +-71.068138,42.27137,East Milton Square(552 Adams St) - Milton MA (W),552 Adams Street,Milton,MA,02186 +-70.955342,42.171124,Weymouth - Weymouth MA (W),980 Main St.,Weymouth,MA,02190 +-71.235222,42.293164,Needham - Needham MA (W),910 Highland Ave.,Needham,MA,02194 +-71.084614,42.346287,Boston Sheraton-Main Lobby - Boston MA,39 Dalton Street,Boston,MA,02199 +-71.044985,42.347679,Westin Boston Waterfront - Boston MA,425 Summer St.,Boston,MA,02210 +-71.042625,42.348824,Manulife Financial - Boston MA,601 Congress St.,Boston,MA,02210 +-71.03919,42.34774,Renaissance Boston Harbor Lobby - Boston MA,636 Congress St.,Boston,MA,02210 +-71.113825,42.350766,874 Commonwealth Avenue - Brookline MA (W),874 Commonwealth Ave.,Brookline,MA,02215 +-71.109619,42.350472,George Sherman Union Bldg. - Boston MA,775 Commonwealth Ave.,Boston,MA,02215 +-71.107699,42.338497,Beth Israel - Boston MA (W),364 Brookline Ave.,Boston,MA,02215 +-71.100916,42.344916,Fenway Triangle Trilogy - Boston MA (W),142-148 Brookline Avenue,Boston,MA,02215 +-71.099656,42.349347,School of Management - Boston MA,595 Commonwealth Ave.,Boston,MA,02215 +-71.0994,42.3488,Boston University-580 Commonwealth - Boston MA,580 Commonwealth Ave.,Boston,MA,02215 +-71.066116,42.05977,Brockton Belmont Street - Brockton MA (W),1285 Belmont Street,Brockton,MA,02301 +-70.847562,42.154312,"Hanover Washington St. - Hanover MA (D, W)",1972 Washington St.,Hanover,MA,02339 +-70.841184,42.135142,Target Hanover - T-2532 - Hanover MA,1167 Washington Street,Hanover,MA,02339 +-70.92933,42.111682,Target Abington T-2173 - Abington MA,375 Centre Ave.,Abington,MA,02351 +-70.715904,41.9537,"Plymouth Colony Place - Plymouth MA (D, W)",100 Colony Place Rt. 44,Plymouth,MA,02360 +-71.1433,42.0271,Target Easton T-2267 - Easton MA,41 Robert Dr,Easton,MA,02375 +-71.118855,42.333752,Brookline Village - Brookline MA (W),15 Harvard Street,Brookline,MA,02445 +-71.185124,42.358878,Newton Corner - Newton MA (W),259 Centre Street,Newton,MA,02458 +-71.194823,42.330036,Newton - Newton Centre MA (W),1269 Centre Street,Newton Centre,MA,02459 +-71.207695,42.350508,Newtonville - Newtonville MA (W),16-18 Austin Street,Newtonville,MA,02460 +-71.229688,42.326807,Waban - Waban MA (W),474 Woodward Street,Waban,MA,02468 +-71.181152,42.366631,Watertown - Mt. Auburn - Watertown MA (W),75 Mt Auburn Street,Watertown,MA,02472 +-71.157439,42.363459,Target Watertown T-1442 - Watertown MA,550 Arsenal Street,Watertown,MA,02472 +-71.2336,42.4531,Lexington/Bedford Rd. - Lexington MA (W),60 Bedford Street,Lexington,MA,02473 +-71.150768,42.414376,Arlington - Arlington MA (W),327 Broadway,Arlington,MA,02474 +-71.175713,42.39685,Belmont - Belmont MA (W),47 Leonard St.,Belmont,MA,02478 +-71.295368,42.297967,Wellesley Linden Square - Wellesley MA (W),101 Linden Street,Wellesley,MA,02481 +-71.296927,42.296016,Wellesley - Wellesley MA (W),68A Central Street,Wellesley,MA,02482 +-70.595967,41.752233,Bourne Rt. 6 - Bourne MA (W),2 Bridge Approach Street,Bourne,MA,02532 +-70.5994,41.5555,"Falmouth - Falmouth MA (D, W)",11 Davis Straights/ Route 28,Falmouth,MA,02540 +-70.742533,41.778705,Target Wareham T-2292 - Wareham MA,2421 Cranberry Hwy.,Wareham,MA,02571 +-70.681438,41.954989,Stop & Shop-Plymouth #469 - Plymouth MA,127 Samoset Street,Plymouth,MA,02571 +-70.0592,41.7021,Stop & Shop-Harwich #475 - Harwich MA,SR-39 & SR-137,Harwich,MA,02645 +-70.489235,41.61366,Roche Bros - Mashpee #117 - Mashpee MA,11 Donnas Lane,Mashpee,MA,02649 +-70.4854,41.6137,Mashpee - Mashpee MA (W),6 Market Street,Mashpee,MA,02649 +-69.9742,41.7762,Stop & Shop-Orleans #64 - Orleans MA,2110 Cranberry Cove Plaza,Orleans,MA,02653 +-70.1566,41.7105,Stop & Shop-South Dennis #461 - South Dennis MA,500 Rte 134,South Dennis,MA,02660 +-71.0025,41.6384,Target North Dartmouth T-2167 - North Dartmouth MA,479 State Rd.,North Dartmouth,MA,02747 +-71.31189,42.031842,Target Plainville T-1930 - Plainville MA,103 Taunton St.,Plainville,MA,02762 +-71.3253,41.7934,"Seekonk - Seekonk MA (D, W)",2 Commerce Way,Seekonk,MA,02771 +-71.0666,41.879,Taunton Depot - Taunton MA (W),65 H Taunton Depot Drive,Taunton,MA,02780 +-71.304981,41.736594,The Barrington Shopping Center - Barrington RI (W),180 County Road,Barrington,RI,02806 +-71.45246,41.656855,East Greenwich/Main St. - East Greenwich RI (W),555 Main Street,East Greenwich,RI,02818 +-71.314897,41.487664,Thames Street - Newport RI (W),212 Thames Street,Newport,RI,02840 +-71.296434,41.517065,Aquidneck Centre - Middletown RI (W),99 East Main Road,Middletown,RI,02842 +-71.502144,41.58148,"N. Kingstown Crossing - N. Kingstown RI (D, W)",1370 Ten Rod Road,N Kingstown,RI,02852 +-71.47998,41.935062,"Lincoln Mall Pad - Lincoln RI (D, W)",622 George Washington Hwy. (Rte 116),Lincoln,RI,02865 +-71.477537,41.938342,Target Lincoln T-2073 - Lincoln RI,620 George Washington Hwy.,Lincoln,RI,02865 +-71.488518,41.440337,Wakefield Belmont Plaza - Wakefield RI,600 Kingstown Rd.,Wakefield,RI,02879 +-71.498758,41.702331,"Warwick-Baldhill Rd. - Warwick RI (D, W)",25 Pace Blvd.,Warwick,RI,02886 +-71.480098,41.727347,Target Warwick North T-2430 - Warwick RI,400 Bald Hill Rd.,Warwick,RI,02886 +-71.435453,41.725833,PVD Main Food Court - Warwick RI (A),2000 Post Road,Warwick,RI,02886 +-71.435453,41.725833,PVD Baggage Claim - Warwick RI (A),2000 Post Road,Warwick,RI,02886 +-71.408403,41.733556,"WarwickAirport Rd. - WARWICK RI (D, W)",35Airport Rd.,Warwick,RI,02886 +-71.418787,41.822767,Hilton Providence Lobby - Providence RI,21 Atwells Ave.,Providence,RI,02903 +-71.413158,41.824634,Biltmore Hotel - Providence RI (W),11 Dorrance St.,Providence,RI,02903 +-71.412778,41.819369,Johnson & Wales University-Providen - Providence RI,59 Chestnut Street,Providence,RI,02903 +-71.409943,41.825739,Providence One Financial - Providence RI (W),1 Financial Plaza,Providence,RI,02903 +-71.397035,41.8216,Thayer Street - Providence RI (W),218 Thayer Street,Providence,RI,02906 +-71.389131,41.830123,Wayland Sq./Providence - Providence RI (W),468 Angell Street,Providence,RI,02906 +-71.45827,41.764187,Garden City-Cranston - Cranston RI (W),4 Midway Road,Cranston,RI,02910 +-71.073003,43.032125,"Epping Main St. - Epping NH (D, W)",96 Calef Highway,Epping,NH,03042 +-71.441205,42.707053,Nashua Webster Sq (NH) - Nashua NH (W),266 Daniel Webster Highway,Nashua,NH,03060 +-71.440793,42.702517,Pheasant Lane Mall - Nashua NH (W),310 Daniel Webster Hwy.,Nashua,NH,03060 +-71.537028,42.80102,"Nashua 611 Amherst St. - Nashua NH (D, W)",611 Amherst St.,Nashua,NH,03063 +-71.495837,42.767305,"Nashua Mall Power Center - Nashua NH (D, W)",10 Coliseum Avenue,Nashua,NH,03063 +-71.446572,42.927107,MHT - Manchester Post Sec New Wng - Manchester NH (A),1Airport Rd.,Manchester,NH,03103 +-71.438826,42.961275,"Manchester S. Willow St. - Manchester NH (D, W)",1111 South Willow St.,Manchester,NH,03103 +-71.47368,42.942813,Target Bedford T-2009 - Bedford NH,220 S. River Rd.,Bedford,NH,03110 +-71.563661,43.457105,Tilton Tanger Outlet - Tilton NH (W),120 Laconia Road Suite 100,Tilton,NH,03276 +-71.49391,43.222023,"Concord Loudon Road - Concord NH (D, W)",240 Loudon Road,Concord,NH,03301 +-72.305587,42.926103,Target Keene T-2120 - Keene NH,46 Ash Brook Rd.,Keene,NH,03431 +-72.288549,42.932597,"Keene - Keene NH (D, W)",281 West Street,Keene,NH,03431 +-70.792703,43.091983,"Portsmouth Woodbury Avenue - Portsmouth NH (D, W)",1855 Woodbury Avenue,Portsmouth,NH,03801 +-70.757446,43.077121,Portsmouth/Market Square/Cigar Stor - Portsmouth NH (W),1 Market Square,Portsmouth,NH,03801 +-70.887171,43.220996,"Dover NH - Dover NH (D, W)",11 Webb Place,Dover,NH,03820 +-70.932049,42.98977,Stop & Shop-Exeter #204 - Exeter NH,139 Portsmouth Ave.,Exeter,NH,03833 +-70.816414,43.048405,Target Greenland T-2530 - Greenland NH,1450 Greenland Rd.,Greenland,NH,03840 +-71.117165,44.02316,"N. Conway White Mountain Hwy. - North Conway NH (D, W)",1456 White Mountain Hwy.,North Conway,NH,03860 +-70.867625,42.881924,"Seabrook Lafayette Rd. - Seabrook NH (D, W)",271 Lafayette Rd.,Seabrook,NH,03874 +-70.8818,43.2329,Target - Somersworth T-2182 - Somersworth NH,11 Andrews Rd.,Somersworth,NH,03878 +-70.738168,43.108939,Kittery - Kittery ME (W),306 Highway 1,Kittery,ME,03904 +-70.514589,43.475288,Target Biddeford T-2166 - Biddeford ME,585 Alfred Rd.,Biddeford,ME,04005 +-69.914511,43.904446,"Brunswick Gurnet Drive - Brunswick ME (D, W)",10 Gurnet Road,Brunswick,ME,04011 +-70.2676,43.8023,ME Turnpike- Cumberland Center Trav - Cumberland Center ME,ME Turnpike South MM56,Cumberland Center,ME,04021 +-70.110404,43.822931,Freeport-Main Street - Freeport ME (W),49 Main Street,Freeport,ME,04032 +-70.32899,43.887547,ME- Gray Tunpike Travel Plaza - Gray ME,Maine Turnpike NORTH Mile Marker 57,Gray,ME,04039 +-70.56083,43.410433,Maine Turnpike Southbound - Kennebunk ME,Maine Turnpike Southbound MM 24,kennebunk,ME,04043 +-70.558448,43.409825,Maine Turnpike Northbound - Kennebunk ME,Maine Turnpike Northbound MM 24,Kennebunk,ME,04043 +-70.530604,43.396435,Stop & Shop - Kennebunk #294. - Kennebunk ME,87 Portland Rd.,Kennebunk,ME,04043 +-70.434477,43.50962,"Saco - Saco ME (D, W)",509 Main Street,Saco,ME,04072 +-69.985348,43.933623,Target Topsham T-2130 - Topsham ME,125 Topsham Fair Mall Rd.,Topsham,ME,04086 +-69.97645,43.93944,"Topsham Fair Mall Road - Topsham ME (D, W)",15 Winners Circle,Topsham,ME,04086 +-70.284198,43.654307,Hay Building - Portland ME (W),594 Congress Street,Portland,ME,04101 +-70.254685,43.657676,Exchange Street-Portland Maine - Portland ME (W),176 Middle St.,Portland,ME,04101 +-70.309086,43.654436,PWM - Main Term New Wing Post Sec - Portland ME (A),1001 Westbrook St.,Portland,ME,04102 +-70.29142,43.684297,"Portland 1080 Forest Ave. - Portland ME (D, W)",1080 Forest Avenue,Portland,ME,04103 +-70.289508,43.703889,Northgate Plaza - Portland ME (W),91 Auburn St.,Portland,ME,04103 +-70.233141,43.724593,"Falmouth Route 1 - Falmouth ME (D, W)",256 US Route 1,Falmouth,ME,04105 +-70.348282,43.63463,Maine Crossing - South Portland ME (W),200 Running Hill Road,South Portland,ME,04106 +-70.338168,43.634104,Maine Mall / South Portland - South Portland ME (W),364 Maine Mall Road,South Portland,ME,04106 +-70.234338,44.120621,"Auburn - Auburn ME (D, W)",35 Mount Auburn Avenue,Auburn,ME,04210 +-79.248096,43.90103,Target Augusta T-2315 - Augusta ME,43 Crossing Way,Augusta,ME,04330 +-69.77211,44.232323,ME-West Gardiner Travel Plaza - West Gardiner ME,Maine Turnpike Mile Marker 102,West Gardiner,ME,04345 +-68.745408,44.834978,"Bangor Mall Blvd. - Bangor ME (D, W)",38 Bangor Mall Blvd.,Bangor,ME,04401 +-68.74297,44.840022,Target Bangor T-1855 - Bangor ME,60 Longview Dr,Bangor,ME,04401 +-69.642494,44.5629,"Waterville Maine - Waterville ME (D, W)",2 Waterville Commons Drive,Waterville,ME,04903 +-73.179294,44.463661,Burlington Town Ctr. - Burlington VT (W),2072 Burlington Town Ctr,Burlington,VT,05402 +-73.208094,44.448764,South Burlington - South Burlington VT (W),580 Shelburne Road #9,South Burlington,VT,05403 +-73.17803,44.468906,Williston Rd. S. Burlington. - S. Burlington VT (W),1150 Williston Rd.,S. Burlington,VT,05403 +-73.0998,44.439,Maple Tree Place - Williston VT (W),10 Hawthorne Street,Williston,VT,05495 +-72.864786,41.816127,Avon Marketplace - Avon CT (W),380 West Main Street,Avon,CT,06001 +-72.73788,41.816941,Bloomfield - Gillete Ridge Plaza - Bloomfield CT (W),852 Cottage Grove Road,Bloomfield,CT,06002 +-72.92432,41.690381,Bristol Plaza - Bristol CT (W),641 Farmington Ave.,Bristol,CT,06010 +-72.82667,41.727455,Rte 4 Farmington - Farmington CT (W),838 Farmington Avenue,Farmington,CT,06032 +-72.7605,41.7263,Westfarms Mall - Farmington CT (W),500 Westfarms Rd.,Farmington,CT,06032 +-72.621467,41.721196,Glastonbury - Glastonbury CT (W),140 Glastonbury Road,Glastonbury,CT,06033 +-72.593614,41.706317,Stop & Shop-Glastonbury #605 - Glastonbury CT,55 Oak St.,Glastonbury,CT,06033 +-72.788574,41.952576,Granby - Granby CT (W),10 Hartford Ave. Space D-1,Granby,CT,06035 +-72.568359,41.767104,"Manchester Spencer Street - Manchester CT (D, W)",185 Spencer St.,Manchester,CT,06040 +-72.561189,41.804405,Manchester - Manchester CT (W),1428A Pleasant Valley Road,Manchester,CT,06040 +-72.52659,41.813719,"Manchester Deming St. - Manchester CT (D, W)",172 Deming Street,Manchester,CT,06040 +-72.83945,41.67543,Plainville - Plainville CT (W),275 New Britain Ave.,Plainville,CT,06062 +-72.678491,41.659918,Rocky Hill - Rocky Hill CT (W),412 Cromwell Avenue,Rocky Hill,CT,06067 +-72.799852,41.88112,Simsburytown Shops - Simsbury CT (W),930 Hopmeadow Rd.,Simsbury,CT,06070 +-72.587106,41.990288,Enfield - Enfield CT (W),9 Hazard Ave.,Enfield,CT,06082 +-72.65044,41.893585,Target - Windsor T-2213 - Windsor CT,1075 Kennedy Rd.,Windsor,CT,06095 +-73.048242,41.909638,Stop & Shop-Winsted #625 - Winsted CT,200 New Hartford Rd.,Winsted,CT,06098 +-72.676551,41.767218,Hartford/City Place - Hartford CT (W),185 Asylum Street,Hartford,CT,06103 +-72.669822,41.763675,Marriott Hartford - Lobby - Hartford CT,200 Columbus Blvd.,Hartford,CT,06106 +-72.744557,41.760502,LaSalle - West Hartford CT (W),21 LaSalle Road,West Hartford,CT,06107 +-72.65593,41.690859,"Wethersfield Rte. 99 & Mill St. - Wethersfield CT (D, W)",1090 Silas Deane Highway,Wethersfield,CT,06109 +-72.75937,41.726207,Corbin's Corner - West Hartford CT (W),1449B New Britain Ave.,West Hartford,CT,06111 +-72.723966,41.698157,Newington Main Street - Newington CT (W),995 Main Street,Newington,CT,06111 +-72.744811,41.786037,Bishops Corner - West Hartford CT (W),2475 Albany Avenue,West Hartford,CT,06117 +-71.9206,41.8493,Target Killingly T-2432 - Dayville CT,2177 Killingly Commons,Dayville,CT,06241 +-72.244671,41.805499,Storrs - Storrs CT (W),1244 Storrs Rd.,Storrs,CT,06268 +-72.210253,41.358193,"East Lyme - East Lyme CT (D, W)",267 Flanders Road,East Lyme,CT,06333 +-72.0522,41.3547,Stop & Shop-Groton #682 - Groton CT,220 SR-12,Groton,CT,06340 +-72.051068,41.346666,"Groton Rte. 1 - Groton CT (D, W)",985 A Poquonnock Rd.,Groton,CT,06340 +-72.027893,41.362848,Mystic Marriott Hotel & Spa - Groton CT,625 North Road,Groton,CT,06340 +-71.997417,41.582166,Target Lisbon T-2433 - Lisbon CT,195 River Rd.,Lisbon,CT,06351 +-72.099384,41.480015,Stop & Shop-Montville #678 - Montville CT,2020 Norwich-New London Turnpike,Montville,CT,06353 +-71.951235,41.372614,Mystic Outlet - Mystic CT (W),12 Coogan Blvd.,Mystic,CT,06355 +-72.081696,41.4865,Mohegan Sun - Uncasville CT,One Mohegan Sun Blvd.,Uncasville,CT,06382 +-73.079424,41.34246,Target Ansonia T-2249 - Ansonia CT,20 W. Main St.,Ansonia,CT,06401 +-72.829864,41.275429,A&P-Branford-#355 - Branford CT,1060 W. Main St.,Branford,CT,06405 +-72.827367,41.277177,"Branford - Branford CT (D, W)",6 N. Main St.,Branford,CT,06405 +-72.764796,41.297995,Stop & Shop-Branford #687 - Branford CT,22 Leetes Island Rd.,Branford,CT,06405 +-72.763958,41.29693,Travel Ctr-New Haven - Branford CT,3 E. Industrial Rd.,Branford,CT,06405 +-72.332533,41.57599,Colchester - Colchester CT (W),27 Broadway,Colchester,CT,06415 +-73.058379,41.312018,Derby New Haven Ave. - Derby CT (W),552 New Haven Avenue,Derby,CT,06418 +-72.598413,41.279834,Madison - CT - Madison CT (W),613 Boston Post Road,Madison,CT,06443 +-72.808089,41.509385,"Meriden S. Broad St. - Meriden CT (D, W)",500 South Broad Street,Meriden,CT,06450 +-73.0496,41.215,Target Milford T-2045 - Milford CT,1911 Boston Post Road,Milford,CT,06460 +-73.035697,41.238718,Post Mall Pad - Milford CT (W),1319 Boston Post Rd.,Milford,CT,06460 +-73.378919,41.41413,Bethel Big Y Plaza - Bethel CT (D),87A Stony Hill Road,Bethel,CT,06461 +-73.266769,41.327461,"Monroe Rt 25 - Monroe CT (D, W)",525 Main Street Ste. #1,Monroe,CT,06468 +-73.289157,41.418146,Newtown CT - Newtown CT (W),34 Church Hill Road,Newtown,CT,06470 +-72.87056,41.342631,Target North Haven T-1916 - North Haven CT,200 Universal Dr. N.,North Haven,CT,06473 +-72.854316,41.396889,North Haven - North Haven CT (W),166 Washington Avenue,North Haven,CT,06473 +-72.377071,41.29691,Old Saybrook Main Street - Old Saybrook CT (W),15 Main St.,Old Saybrook,CT,06475 +-73.012509,41.25796,Orange - Orange CT (W),538 Boston Post Rd.,Orange,CT,06477 +-72.985271,41.279864,Target Orange T-1955 - Orange CT,25 Boston Post Rd.,Orange,CT,06477 +-73.086517,41.39747,Seymour Rt. 67 - Seymour CT (D),253 West St.,Seymour,CT,06478 +-73.112373,41.289665,Shelton Crown Point Center - Shelton CT (W),504 Bridgeport Avenue,Shelton,CT,06484 +-73.231863,41.463296,Southbury - Southbury CT (W),775 South Main Street,Southbury,CT,06488 +-72.9007,41.619,Target Southington T-2434 - Southington CT,600 Executive Blvd.,Southington,CT,06489 +-72.873507,41.633958,Southington - Queen Street - Southington CT (W),613 Queen Street,Southington,CT,06489 +-72.606831,41.712651,"Glastonbury Hebron Avenue - Glastonbury CT (D, W)",70 Hebron Ave.,Glastonbury,CT,06498 +-72.930246,41.307892,New Haven / Chapel Street - New Haven CT (W),1068-1070 Chapel St.,New Haven,CT,06510 +-72.926129,41.306198,New Haven Chapel Square - New Haven CT (W),896 Chapel Street,New Haven,CT,06510 +-72.918497,41.370401,Hamden - Hamden CT (W),2100 Dixwell Avenue,Hamden,CT,06514 +-72.969258,41.273585,West Haven Saw Mill Road - West Haven CT,354 Saw Mill Road,West Haven,CT,06516 +-72.957396,41.272747,Stop & Shop-West Haven #696 - West Haven CT,460 Elm St.,West Haven,CT,06516 +-72.977223,41.339991,"Woodbridge-Merritt Parkway - Woodbridge CT (D, W)",1660 Litchfield Turnpike,Woodbridge,CT,06525 +-73.238088,41.288172,Target Trumbull West T-2361 - Trumbull CT,5065 Main Street,Trumbull,CT,06611 +-73.220014,41.230061,Trumbull Mall - Trumbull CT (W),5065 Main Street,Trumbull,CT,06611 +-73.196891,41.245066,Trumbull - Trumbull CT (W),938 White Plains Road,Trumbull,CT,06611 +-73.149832,41.233494,Target Trumbull T-1956 - Trumbull CT,120 Hawley Ln.,Trumbull,CT,06611 +-73.133904,41.198418,Stratford Barnum Avenue - Stratford CT (W),1106 Barnum Ave.,Stratford,CT,06614 +-73.035236,41.58138,Target Waterbury T-2156 - Waterbury CT,300 Chase Ave.,Waterbury,CT,06704 +-73.414387,41.568736,"New Milford - New Milford CT (D, W)",38 Danbury Road,New Milford,CT,06776 +-73.077577,41.821067,Target Torrington T-2305 - Torrington CT,1922 E. Main St.,Torrington,CT,06790 +-73.096813,41.59037,Watertown - Watertown CT (W),1156 Main St.,Watertown,CT,06795 +-73.526358,41.392842,Danbury-Mill Plain Rd. - Danbury CT (W),113 Mill Plain Road,Danbury,CT,06801 +-73.590144,41.042295,Cos Cob - Cos Cob CT (W),624 East Putnam Avenue,Cos Cob,CT,06807 +-73.480961,41.37998,Danbury Fair Mall - Danbury CT (W),7 Backus Avenue,Danbury,CT,06810 +-73.418389,41.426976,Danbury - Danbury CT (W),132 Federal Road,Danbury,CT,06811 +-73.522534,41.444532,New Fairfield - New Fairfield CT (W),5 Rt 39,New Fairfield,CT,06812 +-73.468646,41.0788,Darien - Darien CT (W),815 Post Road,Darien,CT,06820 +-73.482101,41.063007,Fairfield Boston Post Rd. - Fairfield CT (W),1740 Boston Post Rd.,Fairfield,CT,06824 +-73.252643,41.18189,Fairfield / Black Rock Tpk. - Fairfield CT (W),2171 Black Rock Turnpike,Fairfield,CT,06825 +-73.227115,41.175545,Stop & Shop-Fairfield # 673 - Fairfield CT,760 Villa Avenue,Fairfield,CT,06825 +-73.625568,41.024925,Greenwich - Greenwich CT (W),301 Greenwich Avenue,Greenwich,CT,06830 +-73.62476,41.032998,Putnam Plaza - Greenwich CT (W),78 East Putnam Avenue,Greenwich,CT,06830 +-73.495357,41.14638,New Canaan - New Canaan CT (W),88 Park Street,New Canaan,CT,06840 +-73.423658,41.15559,"Norwalk Rte 7 - Norwalk CT (D, W)",555 Main Street,Norwalk,CT,06851 +-73.403989,41.122108,Norwalk Dansk Plaza - Norwalk CT (W),56 Westport Ave.,Norwalk,CT,06851 +-73.49387,41.291625,Ridgefield - Ridgefield CT (W),90 Danbury Road,Ridgefield,CT,06877 +-73.576198,41.042049,Thruway / Riverside - Riverside CT (W),1253 East Putnam Ave.,Riverside,CT,06878 +-73.362327,41.14115,West Port - Westport CT (W),1 Parker Harding Plaza,Westport,CT,06880 +-73.333051,41.138441,Post Road #925/Westport II - Westport CT (W),925 Post Road East,Westport,CT,06880 +-73.301071,41.138317,Stop & Shop-Westport #653 - Westport CT,1790 Post Rd. E.,Westport,CT,06880 +-73.430532,41.190544,Wilton(River Road) - Wilton CT (W),21 River Road,Wilton,CT,06897 +-73.543192,41.055589,Target Stamford T-1544 - Stamford CT,21 Broad St.,Stamford,CT,06901 +-73.539018,41.055399,Stamford/Library - Stamford CT (W),96 Broad Street,Stamford,CT,06901 +-73.536078,41.053506,Stamford Town Center - Stamford CT (W),100 Greyrock Place,Stamford,CT,06901 +-73.545265,41.066795,Stamford-Ridgeway - Stamford CT (W),2139 Summer Street,Stamford,CT,06904 +-73.546815,41.1085,Stamford - Stamford CT (W),1055 High Ridge Road,Stamford,CT,06905 +-74.107344,40.668522,Stop & Shop - Bayonne #853 - Bayonne NJ,1 Lefante Way,Bayonne,NJ,07002 +-74.298294,40.84845,West Caldwell - West Caldwell NJ (W),546 Passaic Ave.,West Caldwell,NJ,07006 +-74.147019,40.879611,Clifton Route 3 - Clifton NJ (W),360 Rt 3,Clifton,NJ,07014 +-74.14123,40.826512,Stop & Shop-Clifton #813 - Clifton NJ,160 Kingsland Rd.,Clifton,NJ,07014 +-73.984474,40.813647,Edgewater - Edgewater NJ (W),457 River Road,Edgewater,NJ,07020 +-74.028784,40.873308,Fort Lee - Fort Lee NJ (W),136-38 Linwood Plaza,Fort Lee,NJ,07024 +-73.97497,40.86374,Fort Lee Route 4 E. - Fort Lee NJ (D),2215 SR-4 East,Fort Lee,NJ,07024 +-73.970889,40.84915,Fort Lee #2 - Fort Lee NJ (W),1605 Lemoine Ave.,Fort Lee,NJ,07024 +-73.966211,40.856366,A & P - Fort Lee #479 - Fort Lee NJ,2160 Lemoine Ave.,Fort Lee,NJ,07024 +-74.200987,40.797397,Glen Ridge - Glen Ridge NJ (W),710 Bloomfield Ave.,Glen Ridge,NJ,07028 +-74.030087,40.740186,Hoboken Washington St. - Hoboken NJ,314 Washington Ave.,Hoboken,NJ,07030 +-74.030025,40.736714,Newark St. Hoboken - Hoboken NJ (W),51 Newark Street,Hoboken,NJ,07030 +-74.025608,40.750962,Hoboken - 12th & Hudson - Hoboken NJ (W),1205 N. Hudson Street,Hoboken,NJ,07030 +-74.282801,40.678513,A & P Store-Kenilworth #867 - Kenilworth NJ,801 Kenilworth Blvd.,Kenilworth,NJ,07033 +-74.221885,40.651163,Linden - Linden NJ (W),693 West Edgar Road,Linden,NJ,07036 +-74.315352,40.795864,Livingston - Livingston NJ (W),1 West Mt. Pleasant Avenue,Livingston,NJ,07039 +-74.307593,40.724014,Millburn - Millburn NJ (W),343 Millburn Avenue,Millburn,NJ,07041 +-74.22298,40.818624,Bloomfield - Montclair NJ (W),701 Bloomfield Avenue,Montclair,NJ,07042 +-74.220025,40.814285,Montclair - Church & South Park - Montclair NJ,40 South Park St.,Montclair,NJ,07042 +-74.208183,40.83972,Upper Montclair - Upper Montclair NJ (W),572 Valley Road,Upper Montclair,NJ,07043 +-74.021206,40.801493,Target North Bergen Commons T-1865 - North Bergen NJ,7101 Tonnelle Ave.,North Bergen,NJ,07047 +-74.494627,40.615236,Warren - Warren NJ (W),4 Mount Bethel Rd.,Warren,NJ,07059 +-74.326108,40.821793,Roseland - Roseland NJ (W),43 Eisenhower Parkway,Roseland,NJ,07068 +-74.088832,40.83276,"East Rutherford Rt. 17 - East Rutherford NJ (D, W)",10 State Route 17,East Rutherford,NJ,07073 +-74.077354,40.80301,Sheraton Meadowlands - East Rutherford NJ,2 Meadowlands Plaza,East Rutherford,NJ,07073 +-74.363365,40.741185,The Mall at Short Hills - Shorthills NJ (W),1200 Morris Turnpike,Shorthills,NJ,07078 +-74.260055,40.746128,South Orange - South Orange NJ (W),11 Sloan Street,South Orange,NJ,07079 +-74.4274,40.549713,Target South Plainfield T-1929 - South Plainfield NJ,5000 Hadley Center Dr,South Plainfield,NJ,07080 +-74.304092,40.688687,Rt. 22 - Center Island - Union NJ (W),2698 Route 22 East,Union,NJ,07083 +-74.2854,40.7162,Target Union T-2141 - Union NJ,2235 Springfield Ave.,Union,NJ,07088 +-74.347322,40.652153,Westfield - Westfield NJ (W),117 Central Avenue,Westfield,NJ,07090 +-74.011505,40.7885,West New York - West New York NJ (W),55-1 Riverwalk Place,West New York,NJ,07093 +-74.044383,40.788418,Secaucus Harmon Meadow - Secaucus NJ (W),700 Plaza Drive,Secaucus,NJ,07094 +-74.300183,40.563278,Rt. 1 North Woodbridge - Woodbridge NJ (W),774 Route 1 N.,Woodbridge,NJ,07095 +-74.300178,40.553986,Woodbridge - Woodbridge NJ (W),250 Woodbridge Center Drive,Woodbridge,NJ,07095 +-74.2866,40.5538,Thomas Edison Travel Plza - Woodbridge NJ,New Jersey Turnpike Mile Post 92.9 S.,Woodbridge,NJ,07095 +-74.2863,40.554096,Grover Cleveland Travel Plaza - Woodbridge NJ,Mile Marker 92.9 NB NJ Turnpike,Woodbridge,NJ,07095 +-74.176261,40.74264,Rutgers U/Newark Robeson Stdnt Ctr. - Newark NJ,350 Martin Luther King Blvd.,Newark,NJ,07102 +-74.17135,40.736854,Broad Street Newark - Newark NJ (W),744 Broad St.,Newark,NJ,07102 +-74.164531,40.73534,HHilton Newark Penn Station - Newark NJ,1048 Raymond Blvd.,Newark,NJ,07102 +-74.15621,40.822962,Nutley - Nutley NJ (W),483 Franklin Avenue,Nutley,NJ,07110 +-74.17821,40.68987,EWR - Newark Term A Space 2 - Newark NJ (A),Newark InternationalAirport,Newark,NJ,07114 +-74.17821,40.68987,EWR - Newark Int'l Terminal - Newark NJ (A),Newark InternationalAirport,Newark,NJ,07114 +-74.17471,40.705498,EWR - Newark Term C Space B-50 - Newark NJ (A),Terminal C Space B-50,Newark,NJ,07114 +-74.174706,40.7041,EWR - Newark Term A Conc A1 Rotunda - Newark NJ (A),Term A Conc A10 Rotunda (Sp A27),Newark,NJ,07114 +-74.1693,40.712,EWR - Newark Term A Space A33 - Newark NJ (A),Terminal A Space A-26,Newark,NJ,07114 +-74.1654,40.7119,EWR - Newark Concourse C Space 86 - Newark NJ (A),Terminal C Space 86,Newark,NJ,07114 +-74.1745,40.662569,Jersey Gardens Mall - Elizabeth NJ (W),651 Kapkowski Road,Elizabeth,NJ,07201 +-74.035232,40.717287,Grove Point - Jersey City NJ (W),98 Christopher Columbus Drive,Jersey City,NJ,07302 +-74.0636,40.7343,Jersey City - Jersey City NJ (W),111 Town Square Place,Jersey City,NJ,07310 +-74.033883,40.732397,Target Jersey City T-1886 - Jersey City NJ,100 14th St.,Jersey City,NJ,07310 +-74.127106,41.028847,A & P Metro-Allendale #639 - Allendale NJ,45 Demercurio Dr,Allendale,NJ,07401 +-74.580675,41.109044,"Franklin NJ - Franklin NJ (D, W)",111 Rt. 23 South,Franklin,NJ,07416 +-74.212911,40.995481,Franklin Lakes - Franklin Lakes NJ (W),816 High Mountain Rd.,Franklin Lakes,NJ,07417 +-74.146356,41.097637,A & P Store-Mahwah #677 - Mahwah NJ,125 Franklin Tpke,Mahwah,NJ,07430 +-74.139352,40.985009,Midland Park Shopping Center - Midland Park NJ (W),85 Godwin Ave.,Midland Park,NJ,07432 +-74.238898,41.027025,Oakland - Oakland NJ (D),411 Rampo Valley Rd.,Oakland,NJ,07436 +-74.293568,41.007308,"Pompton Lakes - Pompton Lakes NJ (D, W)",45 Wanaque Avenue,Pompton Lakes,NJ,07442 +-74.144176,41.057112,Ramsey - Ramsey NJ (W),8 West Main Street,Ramsey,NJ,07446 +-74.127834,41.035458,Franklin Square - Ramsey - Ramsey NJ (W),561 North Franklin Turnpike,Ramsey,NJ,07446 +-74.115197,40.979019,Ridgewood - Ridgewood NJ (W),193 E. Ridgewood Ave.,Ridgewood,NJ,07451 +-74.130914,40.962158,Glen Rock - Glen Rock NJ (W),224 Rock Road,Glen Rock,NJ,07452 +-74.3101,40.9916,Target Riverdale - T2247 - Riverdale NJ,94 SR-23,Riverdale,NJ,07457 +-74.485214,41.189693,A&P-Vernon-#621 - Vernon NJ,530 CR-515,Vernon,NJ,07462 +-74.27144,40.942635,Wayne Rt. 23 - Wayne NJ (W),1606 Route 23 North,Wayne,NJ,07470 +-74.2571,40.8901,Willowbrook Mall - Wayne NJ (W),1400 Willowbrook Mall,Wayne,NJ,07470 +-74.256,40.8886,Macy's - Willowbrook - Wayne NJ (W),1100 Willowbrook Blvd.,Wayne,NJ,07470 +-74.225075,40.958228,Preakness Shopping Center - Wayne NJ (W),810 Hamburg Turnpike,Wayne,NJ,07470 +-74.2041,40.944583,Paterson-Hamburg Tpke - Wayne - Wayne NJ (D),183 Hamburg Turnpike,Wayne,NJ,07470 +-74.166809,41.010844,Wyckoff - Wyckoff NJ (W),325 Franklin Avenue,Wyckoff,NJ,07481 +-74.058508,40.883481,Hackensack - Hackensack NJ (W),360 Essex Street,Hackensack,NJ,07601 +-74.065497,40.882926,Hasbrouck Heights - Hasbrouck Heights NJ (W),201-211 Route 17 South,Hasbrouck Heights,NJ,07604 +-73.96103,40.972592,Closter - Closter NJ (W),234 Closter Dock Road,Closter,NJ,07624 +-74.030772,40.960223,Stop & Shop-Emerson #812 - Emerson NJ,600 Kinderkamack Road,Emerson,NJ,07630 +-73.995895,40.849494,Englewood - Englewood NJ (W),17 E. Palisades Avenue,Englewood,NJ,07631 +-74.040333,41.003665,Hillsdale - Hillsdale NJ (W),126 Broadway,Hillsdale,NJ,07642 +-74.043264,40.854927,"Rte 46 W. Little Ferry - Little Ferry NJ (D, W)",300-302 Route 46 West,Little Ferry,NJ,07643 +-73.945775,41.015621,"Northvale NJ - Northvale NJ (D, W)",271B Livingston St.,Northvale,NJ,07647 +-74.072189,40.920578,Garden State Plaza - Paramus NJ (W),28 Garden State Plaza,Paramus,NJ,07652 +-74.071213,40.907211,Rte 17N - Paramus - Paramus NJ (W),370 Route 17 N.,Paramus,NJ,07652 +-74.06572,40.919185,Rt. 4 - Paramus - Paramus NJ (W),East 65 Route 4 West,Paramus,NJ,07652 +-74.06062,40.91525,Target Paramus T-2381 - Paramus NJ,900 Bergen Town Center,Paramus,NJ,07652 +-74.044657,40.884055,Paramus - Paramus NJ (W),177 Route 17 South,Paramus,NJ,07652 +-74.031637,40.991937,Westwood Avenue - Westwood NJ (W),102 Westwood Avenue,Westwood,NJ,07675 +-73.982533,41.014282,Old Tappan - Old Tappan NJ (W),216 Old Tappan Road,Old Tappan,NJ,07675 +-74.065875,40.350786,Red Bank - Red Bank NJ (W),4-6 White Street,Red Bank,NJ,07701 +-74.063008,40.333965,Shrewsbury - Shrewsbury NJ (W),551 Route 35,Shrewsbury,NJ,07702 +-74.303845,40.307506,"Route 9 Manalapan - Manalapan NJ (D, W)",310 Route 9 North,Manalapan,NJ,07726 +-74.308786,40.241325,Route 537 Freehold - Freehold NJ (W),11 Village Center Drive,Freehold,NJ,07728 +-74.300086,40.253412,Freehold Raceway Mall - Freehold NJ,3710 Route 9,Freehold,NJ,07728 +-74.291101,40.257653,Freehold (B&N) - Freehold NJ (W),3981 US Highway 9,Freehold,NJ,07728 +-74.224499,40.137102,Howell - Route 9 - Howell NJ (W),4701 Rte. 9 No.,Howell,NJ,07731 +-74.167,40.3884,A&P - Holmdel - #656 - Holmdel NJ,2101 SR-35,Holmdel,NJ,07733 +-74.234211,40.409459,Matawan - Matawan NJ (W),265 Main Street,Matawan,NJ,07747 +-74.133376,40.410742,Rte 35-Middletown - Middletown NJ (W),2011 Route 35,Middletown,NJ,07748 +-74.306996,40.354541,Rte 9 Marlboro - Morganville NJ (W),67 Route 9 South,Morganville,NJ,07751 +-74.042614,40.27047,Route 35 - Oakhurst - Oakhurst NJ (W),2100 Highway 35,Oakhurst,NJ,07755 +-74.022896,40.2637,Neptune - Ocean Township NJ (W),2303 Route 66,Ocean Township,NJ,07755 +-74.506929,40.86652,Route 10 Denville - Denville NJ (W),3056 Route 10 West,Denville,NJ,07834 +-74.478881,40.893332,Denville Plaza - Denville NJ (W),2-28 West Main Street,Denville,NJ,07834 +-74.834101,40.855961,Target Washington Township T-2446 - Hackettstown NJ,68 US Highway 46 W.,Hackettstown,NJ,07840 +-74.546819,40.906501,Rockaway Ring Road - Rockaway NJ (W),395 Mount Hope Avenue,Rockaway,NJ,07866 +-74.546815,40.906457,Target Rockaway T-1864 - Rockaway NJ,381 Mt. Hope Ave.,Rockaway,NJ,07866 +-74.546152,40.900627,Rockaway Townsquare Mall - Rockaway NJ,301 Mt. Hope Avenue,Rockaway,NJ,07866 +-74.357588,40.716985,Summit - Summit NJ (W),2 Beechwood Road,Summit,NJ,07901 +-74.576447,40.6557,Bernards-Riverwalk - Basking Ridge NJ (W),655 Martinsville Road,Basking Ridge,NJ,07920 +-74.637413,40.683106,Village at Bedminster - Bedminster NJ,432 US Highway 202/206,Bedminster,NJ,07921 +-74.563106,40.720129,Bernardsville Center - Bernardsville NJ (W),80 Morristown Rd.,Bernardsville,NJ,07924 +-74.697015,40.77932,Chester Springs Shopping CEnter - Chester NJ (W),237 Route 206 South,Chester,NJ,07930 +-74.389531,40.788107,Florham Park - Florham Park NJ (W),184 Columbia Turnpike,Florham Park,NJ,07932 +-74.476439,40.670754,Gillette - Gillette NJ,977 Valley Road,Gillette,NJ,07933 +-74.410347,40.907498,East Hanover - Rt 10 - East Hanover NJ,405 Route 10 East,East Hanover,NJ,07936 +-74.41227,40.757053,Stop & Shop-Madison #861 - Madison NJ,133 Main St.,Madison,NJ,07940 +-74.398835,40.748767,Madison - Madison NJ (W),307-311 Main Street,Madison,NJ,07940 +-74.46366,40.842253,Stop & Shop-Morris Plains # 893 - Morris Plains NJ,245 Littleton Road,Morris Plains,NJ,07950 +-75.757031,39.682435,Target Cherry Hill T-1085 - Cherry Hill NJ,2137 SR-38,Cherry Hill,NJ,08002 +-75.030383,39.933621,Chapel & Haddonfield - Cherry Hill NJ (W),512 Haddonfield Road,Cherry Hill,NJ,08002 +-75.025747,39.940745,Macy's - Cherry Hill Mall - Cherry Hill NJ (W),2000 Route 38,Cherry Hill,NJ,08002 +-75.024,39.9314,Garden State Park - Cherry Hill NJ (W),2026 Route 70 West,Cherry Hill,NJ,08002 +-74.965028,39.863599,Cherry Hill - Cherry Hill NJ (W),480 Evesham Road,Cherry Hill,NJ,08003 +-74.9333,39.7747,ShopRite-West Berlin #531 - Berlin NJ,Rt 73 & Minck Avenue,Berlin,NJ,08009 +-75.042026,39.738447,Target Turnersville T-1132 - Turnersville NJ,4001 Black Horse Pike,Turnersville,NJ,08012 +-75.042096,39.803257,"Gloucester Township - Clementon NJ (D, W)",1490 Blackwood-Clementon Rd.,Clementon,NJ,08021 +-75.031579,39.897878,Haddonfield - Haddonfield NJ (W),214-216 Kings Highway,Haddonfield,NJ,08033 +-75.0114,39.914,Genuardi-Cherry Hill #49 - Cherry Hill NJ,Marlton Pike Ramp & Kings Hwy. S.,Cherry Hill,NJ,08034 +-74.991343,39.910375,"Rt. 70 West Cherry Hill - Cherry Hill NJ (D, W)",1192 East Rt. 70,Cherry Hill,NJ,08034 +-74.770993,39.619183,Farley Travel Plaza - Hammonton NJ,Atlantic City Expressway Mile Marker 20,Hammonton,NJ,08037 +-74.283356,39.71272,Target Stafford Township T-2392 - Manahawkin NJ,209 Recovery Rd.,Manahawkin,NJ,08050 +-74.9241,39.8901,Marlton - Evesham NJ (W),300 State Route 73,Evesham,NJ,08053 +-74.9206,39.8697,Genuardi-Marlton #0633 - Marlton NJ,710 Route 73 S.,Marlton,NJ,08053 +-74.8383,39.9816,Mount Laurel Centerton Square - Mount Laurel NJ (W),10 Centerton Road,Mount Laurel,NJ,08054 +-74.837094,39.982162,Target Mount Laurel T-1917 - Mount Laurel NJ,4 Centerton Rd.,Mount Laurel,NJ,08054 +-74.8136,39.8726,Medford - Medford NJ (W),560 Stokes Road,Medford,NJ,08055 +-74.9452,39.965,Moorestown-Wright's Hardware - Moorestown NJ (W),41 East Main Street,Moorestown,NJ,08057 +-75.4668,39.7067,John Fenwick Travel Plaza - Penns Grove NJ,Milepost 5.4 NB NJ Turnpike,Penns Grove,NJ,08069 +-74.9608,40.011,Target Delran T-2104 - Riverside NJ,4000 Route 130,Riverside,NJ,08075 +-74.949819,40.026014,"Delran - Delran NJ (D, W)",1340 Fairview Boulevard,Delran,NJ,08075 +-75.13463,39.769308,Target Mantua T-2384 - Sewell NJ,675 Woodbury Glassboro Rd.,Sewell,NJ,08080 +-75.076644,39.750081,"Sewell Washington Center - Sewell NJ (D, W)",304 Greentree Road,Sewell,NJ,08080 +-74.9914,39.7406,Target Gloucester T-2181 - Sicklerville NJ,1615 Berlin Cross Keys Rd.,Sicklerville,NJ,08081 +-75.022078,39.719341,Monroe - Monroe Township NJ (W),2090 Black Horse Pike North,Monroe Township,NJ,08094 +-75.123841,39.948609,Rutgers U/Camden-Student Union - Camden NJ,326 Penn St.,Camden,NJ,08102 +-74.500057,39.430322,Galloway - Absecon NJ (W),405 S. Pitney Road,Absecon,NJ,08205 +-74.873873,39.016771,Rio Grande - Rio Grande NJ (W),3301 Route 9 South,Rio Grande,NJ,08242 +-74.594523,39.331754,Somers Point - Somers Point NJ,55 Bethel Road,Somers Point,NJ,08244 +-74.631584,39.45272,Mays Landing Wrangleboro - Mays Landing NJ (W),760 Consumer Square,Mays Landing,NJ,08330 +-75.040605,39.423461,Target Millville T-2170 - Millville NJ,2116 N. 2nd St.,Millville,NJ,08332 +-75.040317,39.431603,Vineland NJ - Vineland NJ (W),3849 S. Delsea Road,Vineland,NJ,08360 +-74.447055,39.350951,Trump Plaza - Boardwalk - Atlantic City NJ,2600 Boardwalk,Atlantic City,NJ,08401 +-74.437131,39.361336,Atlantic City The Walk - Atlantic City NJ (W),120 North Michigan Avenue,Atlantic City,NJ,08401 +-74.435366,39.376797,The Borgata - Atlantic City NJ,1 Borgata Way,Atlantic City,NJ,08401 +-74.433904,39.353383,Caesars - Atlantic City - The Pier - Atlantic City NJ,1 Atlantic Ocean,Atlantic City,NJ,08401 +-74.419463,39.358119,Trump Taj Mahal-Atlantic City-Main - Atlantic City NJ,1000 Boardwalk at Virginia Ave.,Atlantic City,NJ,08401 +-74.499389,39.329892,Margate NJ - Margate City NJ,8005 Ventnor Ave.,Margate City,NJ,08402 +-74.7149,40.1292,"Bordentown - Bordentown NJ (D, W)",282 Dunns Mill Road,Bordentown,NJ,08505 +-74.525505,40.3117,Stop & Shop-Monroe Township #810 - Cranbury NJ,1600 Perrineville Road,Cranbury,NJ,08512 +-74.5238,40.3118,Molly Pitcher Adj Snackbar - Cranbury NJ,MM-71.7 S. New Jersey Tpke,Cranbury,NJ,08512 +-74.7823,40.3201,Hopewell - Pennington NJ (W),800 A Denow Road,Pennington,NJ,08534 +-74.598165,40.439283,Princeton Market Fair - Princeton NJ (W),3535 Rt. 1 Ste. 426,Princeton,NJ,08540 +-74.659545,40.350186,Princeton - Princeton NJ (W),100 Nassau Street,Princeton,NJ,08542 +-74.693794,40.20894,Hamilton Trenton - Hamilton NJ (W),1150 Whitehorse-Mercerville Road,Hamilton,NJ,08619 +-74.664897,40.173789,Woodrow Wilson Travel Plaza - N6 - Yardville NJ,Mile post 57.8-North NJ Turnpike,Yardville,NJ,08620 +-74.732351,40.279198,Rider University/Student Rec Center - Lawrenceville NJ,2083 Lawrenceville Rd.,Lawrenceville,NJ,08648 +-74.68302,40.294563,Mercer Mall - Lawrenceville NJ (W),301 Mercer Mall,Lawrenceville,NJ,08648 +-74.635972,40.17473,Richard Stockton Travel Plaza - Trenton NJ,200 Uncle Petes Rd.,Trenton,NJ,08691 +-74.16342,40.055477,"Lakewood NJ - Lakewood NJ (D, W)",1865 Route 70,Lakewood,NJ,08701 +-74.149559,40.058706,Target Brick T-1153 - Brick NJ,570 Rte. 70 West,Brick,NJ,08723 +-74.210714,39.846281,Forked River Travel Plaza-Gdn St. P - Forked River NJ,Garden State Parkway,Forked River,NJ,08731 +-74.061243,40.140357,Sea Girt - Sea Girt NJ (W),2150 Highway 35,Sea Girt,NJ,08750 +-74.182638,39.978964,Ocean County Mall - Toms River NJ,1201 HOOPER AVE,Toms River,NJ,08753 +-74.161529,39.954906,Stop & Shop-Toms River #811 - Toms River NJ,1214 Route 37 East,Toms River,NJ,08753 +-74.6239,40.5902,Bridgewater Commons - BRIDGEWATER NJ (W),400 Mall Commons Way,BRIDGEWATER,NJ,08807 +-74.618213,40.586458,Bridgewater Commons Relo - Bridgewater NJ,400 Commons Way,Bridgewater,NJ,08807 +-74.61375,40.58343,The Village at Bridgewater Commons - Bridgewater NJ,610 Commons Way 4300,Bridgewater,NJ,08807 +-74.400558,40.456099,"Route 18 & Tices East Brunswick - East Brunswick NJ (D, W)",300 Route 18 North,East Brunswick,NJ,08816 +-74.345927,40.555414,Edison - Edison NJ (W),1-11 Lincoln Highway,Edison,NJ,08820 +-74.5562,40.4371,Stop & Shop-Franklin #802 - Franklin TWP NJ,3333 Rt. 27,Franklin TWP,NJ,08823 +-74.339571,40.516381,Sheraton Edison - Edison NJ,125 Raritan Center Pkwy,Edison,NJ,08837 +-74.3338,40.5483,Menlo Park Mall - Edison NJ (W),100 Menol Park Dr.,Edison,NJ,08837 +-74.64537,40.500633,Hillsborough - Hillsborough NJ (W),601 Route 206 & 514,Hillsborough,NJ,08844 +-74.438604,40.448994,Joyce Kilmer Travel Plaza - Milltown NJ,Milepost 78.7 NB NJ Turnpike,Milltown,NJ,08850 +-74.5477,40.391,Target South Brunswick NJ T-2256 - South Brunswick NJ,4190 Rt 1 N.,South Brunswick,NJ,08852 +-74.441703,40.552523,Piscataway - Piscataway NJ (W),1364 Centennial Way,Piscataway,NJ,08854 +-74.308326,40.382779,A & P Store-Old Bridge #811 - Old Bridge NJ,3500 US-9,Old Bridge,NJ,08857 +-75.147422,40.681096,Stop & Shop - Phillipsburg #816 - Phillipsburg NJ,1278 US Hwy. 22,Phillipsburg,NJ,08865 +-74.52181,40.521763,Somerset - Somerset NJ (W),120 Cedar Grove Lane,Somerset,NJ,08873 +-74.486966,40.513795,Stop & Shop-Somerset #809 - Somerset NJ,980 Easton Ave.,Somerset,NJ,08873 +-74.688471,40.605163,Branchburg - Branchburg NJ (W),240 Raritan Valley College Drive,Branchburg,NJ,08876 +-74.276809,40.466193,Cheesequake Travel Plaza - South Amboy NJ,Garden State Parkway Mile Post 124,South Amboy,NJ,08879 +-74.764383,40.6204,Whitehouse Station - Whitehouse Station NJ (W),531 Route 22 East #8,Whitehouse Station,NJ,08889 +-74.444065,40.496103,New Brunswick - New Brunswick NJ (W),391 George Street,New Brunswick,NJ,08901 +-74.4629,40.4494,"North Brunswick NJ - North Brunswick NJ (D, W)",522 Shoppes Boulevard,North Brunswick,NJ,08902 +-74.004459,40.741913,15th & Ninth - New York NY (W),76 9th Ave.,New York,NY,10001 +-74.002962,40.757644,Javits Convention Ctr. Taxi North - New York NY,655 W. 34th St.,New York,NY,10001 +-73.999437,40.753049,33rd & Tenth - New York NY (W),450 W. 33rd Street,New York,NY,10001 +-73.994557,40.746948,Fashion Inst of Technology - New York NY,227 W. 27th St.,New York,NY,10001 +-73.99326,40.746956,28th & Seventh - New York NY (W),315 Seventh Avenue,New York,NY,10001 +-73.992757,40.752596,35th and 8th - New York NY (W),494 Eighth Ave.,New York,NY,10001 +-73.992541,40.748919,31st & 7th - New York NY (W),370 7th Avenue,New York,NY,10001 +-73.991186,40.744871,27th & Sixth - New York NY (W),776 Avenue of the Americas,New York,NY,10001 +-73.989787,40.750703,Macy's 35th Street Balcony - New York NY,151 W. 34th Street,New York,NY,10001 +-73.989787,40.750703,Macy's 5th Floor - Herald Square - New York NY (W),151 W. 34th Street,New York,NY,10001 +-73.989787,40.750703,Macy's 6th Floor - Herald Square - New York NY (W),151 W. 34th Street,New York,NY,10001 +-73.989787,40.750703,Herald Square- Macy's - New York NY,151 W. 34th Street,New York,NY,10001 +-73.989202,40.747897,31st and Sixth Avenue - New York NY (W),875 Sixth Ave.,New York,NY,10001 +-73.985311,40.748266,Empire State Building - New York NY (W),350 Fifth Avenue,New York,NY,10001 +-73.985097,40.747705,33rd Street and 5th Avenue (Old Ban - New York NY (W),334 Fifth Ave.,New York,NY,10001 +-73.98986,40.719354,Allen & Delancey - New York NY (W),80 Delancey Street,New York,NY,10002 +-73.996434,40.729714,New York University - New York NY,79 Washington Square,New York,NY,10003 +-73.991693,40.72992,Astor Place - New York NY (W),13-25 Astor Place,New York,NY,10003 +-73.990538,40.737047,17th and Broadway (41 Union Square - New York NY (W),41 Union Square West,New York,NY,10003 +-73.989809,40.73508,Union Square - New York NY (W),10 UNION SQUARE EAST,New York,NY,10003 +-73.988213,40.738087,19th & Park - New York NY (W),240 Park Avenue South,New York,NY,10003 +-73.987471,40.729445,2nd Ave. & 9th Street - New York NY,145 2nd Avenue,New York,NY,10003 +-73.9867,40.733946,15th & Third - New York NY (W),145 Third Avenue,New York,NY,10003 +-73.98136,40.732903,17th & First (Stuyvesant Town) - New York NY (W),286 First Avenue,New York,NY,10003 +-74.01324,40.704538,2 Broadway - New York NY (W),2 Broadway,New York,NY,10004 +-74.012784,40.702802,NY Plaza - New York NY (W),2 Water St.,New York,NY,10004 +-74.011044,40.705296,55 Broad Street - New York NY (W),55 Broad Street,New York,NY,10004 +-74.007693,40.712573,Battery Park Plaza - New York NY (W),1 Battery Park Plaza,New York,NY,10004 +-74.00954,40.708702,Liberty & Nassau - New York NY (W),55 Liberty Street,New York,NY,10005 +-74.009439,40.704537,Pearl & Hanover - New York NY (W),110 Pearl Street,New York,NY,10005 +-74.007275,40.7061,Pearl & Maiden - New York NY (W),80 Pine Street,New York,NY,10005 +-74.007085,40.705077,100 Wall St. (New World) - New York NY (W),100 Wall Street,New York,NY,10005 +-74.014614,40.709646,Marriott Financial Center - New York NY,85 West St.,New York,NY,10006 +-74.011395,40.709727,165 Broadway - 1 Liberty - New York NY (W),165 Broadway,New York,NY,10006 +-74.011454,40.709084,Broadway & Thames - New York NY (W),115 Broadway,New York,NY,10006 +-74.009485,40.710703,195 Broadway - New York NY (W),195 Broadway,New York,NY,10007 +-74.008971,40.713655,Church Street & Murray - New York NY,120 Church Street,New York,NY,10007 +-74.008794,40.715551,Chambers and West Broadway - New York NY (W),125 Chambers Street,New York,NY,10007 +-74.008428,40.712363,Broadway and Barclay (Woolworth) - New York NY (W),233 Broadway,New York,NY,10007 +-74.006078,40.714947,Broadway & Reade - New York NY (W),291 Broadway,New York,NY,10007 +-73.993232,40.741843,22nd St. & Sixth Ave. - New York NY (W),684 Avenue of the Americas,New York,NY,10010 +-73.991431,40.7404,21st & 5th - New York NY (W),4 W. 21st Street,New York,NY,10010 +-73.990382,40.741571,23rd btwn 5th & 6th - New York NY (W),14 W. 23rd St.,New York,NY,10010 +-73.986972,40.740159,23rd & Park - New York NY (W),304 Park Avenue South,New York,NY,10010 +-73.983186,40.7388,23rd & 3rd - New York NY (W),296-300 Third Avenue,New York,NY,10010 +-73.991963,40.744007,24th & 6th - New York NY (W),750 6th Avenue,New York,NY,10010 +-74.000025,40.732946,6th & Waverly (Waverly Place) - New York NY (W),378 6th Avenue,New York,NY,10011 +-73.998982,40.745452,West 23rd and 8th - New York NY (W),300 W. 23rd St.,New York,NY,10011 +-73.997311,40.736706,14th & Sixth - New York NY (W),510 Sixth Avenue,New York,NY,10011 +-73.994952,40.744376,23rd - 24th & 7th - New York NY (W),229 Seventh Avenue,New York,NY,10011 +-74.000605,40.743218,19th & 8th - New York NY (W),177 Eighth Avenue,New York,NY,10011 +-74.001476,40.741152,8th & 16th - New York NY (W),124 Eighth Avenue,New York,NY,10011 +-74.000281,40.726866,Houston & W. Broadway - New york NY,482 West Broadway,New york,NY,10012 +-73.997879,40.722386,72 Spring - New York NY (W),72 SPRING STREET,New York,NY,10012 +-73.995425,40.727247,Broadway and Bond - New York NY (W),665 Broadway,New York,NY,10012 +-74.003233,40.715703,Lafayette & Worth - New York NY (W),111 Worth Street,New York,NY,10013 +-74.002782,40.719019,Broadway & Canal - New York NY (W),405 Broadway,New York,NY,10013 +-74.000741,40.721363,Broadway & Grand - New York NY (W),471 Broadway,New York,NY,10013 +-74.000239,40.718237,Canal and Centre - New York NY (W),241 Canal Street,New York,NY,10013 +-74.00532,40.726008,Spring and Varick - New York NY (W),150 Varick Street,New York,NY,10013 +-74.007287,40.727746,Hudson & King - New York NY (W),345 Hudson St.,New York,NY,10014 +-74.006276,40.733703,Hudson & 10th - New York NY (W),518 Hudson Street,New York,NY,10014 +-74.002708,40.73311,Sheridan Square (72 Grove Street) - New York NY (W),72 Grove Street,New York,NY,10014 +-74.001692,40.737515,Greenwich Avenue - New York NY (W),93 Greenwich Avenue,New York,NY,10014 +-73.986901,40.745178,261 5th Avenue - New York NY (W),261 Fifth Avenue,New York,NY,10016 +-73.983754,40.744251,29th & Park-Park Ave. South - New York NY (W),424 Park Avenue South,New York,NY,10016 +-73.983693,40.749076,35th & 5th - NY NY (W),373 5th Avenue,NY,NY,10016 +-73.982683,40.748917,36th and Madison - New York NY (W),200 Madison Avenue,New York,NY,10016 +-73.979376,40.75076,39th & Park - New York NY (W),90 Park Ave.,New York,NY,10016 +-73.976756,40.743524,32nd @ 2nd Ave. - New York NY (W),585 2nd Avenue,New York,NY,10016 +-73.990764,40.751429,450 7th Avenue - New York NY (W),450 7th Avenue,New York,NY,10017 +-73.981204,40.746777,East 34th and Park - New York NY (W),3 Park Avenue,New York,NY,10017 +-73.979491,40.755363,545 Fifth Ave. - New York NY (W),545 Fifth Ave.,New York,NY,10017 +-73.979465,40.751758,41st & Madison - New York NY (W),295 Madison Avenue,New York,NY,10017 +-73.979139,40.753239,330 Madison - New York NY (W),330 Madison Ave.,New York,NY,10017 +-73.978856,40.753875,Madison & 44th - New York NY (W),340 Madison Avenue,New York,NY,10017 +-73.977921,40.753895,335 Madison Ave. - New York NY (W),335 Madison Avenue,New York,NY,10017 +-73.977385,40.751711,42nd & Park - New York NY (W),125 Park Ave.,New York,NY,10017 +-73.977258,40.753211,Grand Central Station 2 - New York NY (W),7800 Grand Central Station,New York,NY,10017 +-73.975905,40.756962,49th & Madison - New York NY (W),425 Madison Avenue,New York,NY,10017 +-73.975582,40.750784,150 E. 42nd Street - New York NY (W),150 E. 42nd Street,New York,NY,10017 +-73.975218,40.7557,JP Morgan Chase - NYC/Park Ave. - New York NY,270 Park Ave.,New York,NY,10017 +-73.974981,40.753223,450 Lexington Ave. - New York NY (W),450 Lexington Avenue,New York,NY,10017 +-73.974898,40.750126,41st & 3rd - New York NY (W),639 3rd Avenue,New York,NY,10017 +-73.974788,40.756441,48th & Park - New York NY (W),280 Park Avenue,New York,NY,10017 +-73.973458,40.754978,48th & Lexington - New York NY (W),511 Lexington Avenue,New York,NY,10017 +-73.973393,40.750069,42nd & Second - New York NY (W),220 East 42nd St.,New York,NY,10017 +-73.973319,40.751586,43rd St. & Third Ave. - New York NY (W),685 Third Avenue,New York,NY,10017 +-73.971475,40.753935,48th & 3rd - New York NY (W),757 Third Avenue,New York,NY,10017 +-73.937311,40.653166,Grand Central Station - New York NY (W),107 E. 43rd St.,New York,NY,10017 +-73.976773,40.750505,40th & Lexington (360 Lex) - New York NY (W),360 Lexington Avenue,New York,NY,10017 +-73.990822,40.755352,39th and 8th - New York NY (W),600 Eighth Ave.,New York,NY,10018 +-73.990186,40.751719,35th & 7th - New York NY (W),462 7th Avenue,New York,NY,10018 +-73.98865,40.753661,525 Seventh Avenue (New World) - New York NY (W),525 7th Avenue,New York,NY,10018 +-73.986892,40.752221,1372 Broadway - New York NY (W),1372 Broadway,New York,NY,10018 +-73.989125,40.762761,49th & 8th-World Wide Plaza - New York NY (W),325 W. 49th St.,New York,NY,10019 +-73.985624,40.756197,West 43rd and Broadway - New York NY (W),1500 Broadway,New York,NY,10019 +-73.98553,40.763888,52nd Street and 8th Ave. - New York NY (W),871 8th Avenue,New York,NY,10019 +-73.98449,40.767373,57th btwn 8th & 9th - New York NY (W),322 West 57th Street,New York,NY,10019 +-73.9839,40.760878,49th & 7th - New York NY (W),750 Seventh Avenue,New York,NY,10019 +-73.983364,40.762434,1656 Broadway - New York NY (W),1656 Broadway,New York,NY,10019 +-73.982908,40.767363,58th & 8th - New York NY (W),4 Columbus Circle,New York,NY,10019 +-73.982361,40.764275,54th & Broadway - New York NY (W),1710 Broadway,New York,NY,10019 +-73.982025,40.765219,Limited Brands-NYC - New York NY,1740 Broadway,New York,NY,10019 +-73.981202,40.764744,West 55th & 7th - New York NY (W),870 7th Avenue,New York,NY,10019 +-73.981141,40.761829,52nd & Seventh - New York NY (W),156 W. 52nd St.,New York,NY,10019 +-73.9789,40.762269,Hilton New York Marketplace - New York NY,1335 Avenue of the Americas,New York,NY,10019 +-73.978886,40.765025,57th & Seventh - New York NY (W),142 W. 57th Street,New York,NY,10019 +-73.978835,40.764112,120 W. 56th - New York NY (W),120 W. 56th Street,New York,NY,10019 +-73.978834,40.762089,53rd & Sixth - New York NY (W),1330 6th Ave.,New York,NY,10019 +-73.977652,40.763672,W. 56th & 6th - New York NY (W),1380 Sixth Avenue,New York,NY,10019 +-73.976957,40.764712,Sixth & 58th - New York NY (W),1411 Sixth Avenue,New York,NY,10019 +-73.986212,40.762181,Worldwide Plaza II - New York NY (W),825 Eighth Avenue,New York,NY,10019 +-73.982518,40.757931,NHL store @ 47th & 6th - New York NY (W),1185 Avenue of the Americas,New York,NY,10020 +-73.979464,40.758956,Rockefeller Center Subway - New York NY (W),30 Rockefeller Plaza,New York,NY,10020 +-73.991527,40.692481,Court Street-Brooklyn - Brooklyn NY (W),50 Court Street,Brooklyn,NY,10021 +-73.965869,40.76252,Third & 60th - New York NY (W),1021 Third Avenue,New York,NY,10021 +-73.963701,40.765941,Third @ 66th - New York NY (W),1128 Third Avenue,New York,NY,10021 +-73.961407,40.760359,60th & First - New York NY (W),1102 1st Ave.,New York,NY,10021 +-73.954798,40.770262,1st Avenue & 75th St. - New York NY (W),1445 First Avenue,New York,NY,10021 +-73.949862,40.772204,80th & York - New York NY (W),1515 York Avenue,New York,NY,10021 +-73.956757,40.771056,76th & Second - New York NY (W),1449 Second Avenue,New York,NY,10021 +-73.974272,40.758141,51st between Park & Madison - NY NY (W),45 E. 51st Street,NY,NY,10022 +-73.974238,40.762556,Trump Tower - New York NY (W),725 5th Avenue,New York,NY,10022 +-73.97312,40.761239,SONY - New York NY (W),550 Madison Avenue,New York,NY,10022 +-73.972635,40.756861,50th & Lexington - New York NY (W),560 Lexington Avenue,New York,NY,10022 +-73.972621,40.75907,Park Avenue Plaza - New York NY,55 E. 53rd St.,New York,NY,10022 +-73.970744,40.757868,52nd & Lexington - New York NY (W),599 Lexington,New York,NY,10022 +-73.970671,40.758856,53rd & Lexington - New York NY (W),630 Lexington Ave.,New York,NY,10022 +-73.970093,40.759594,55th & Lexington - New York NY (W),655 Lexington Avenue,New York,NY,10022 +-73.970009,40.760981,57th & Lexington - New York NY (W),116 E. 57th Street,New York,NY,10022 +-73.969395,40.761355,135 E. 57 Street (New World) - New York NY,135 East 57th Street,New York,NY,10022 +-73.968718,40.755088,50th & Second - New York NY (W),943 Second Avenue,New York,NY,10022 +-73.968244,40.761756,Bloomberg Building - New York NY (W),731 Lexington Avenue,New York,NY,10022 +-73.974002,40.756751,Waldorf-Astoria - New York NY,301 Park Ave.,New York,NY,10022 +-73.984764,40.769262,2 Columbus Ave. - New York NY (W),2 Columbus Avenue,New York,NY,10023 +-73.982709,40.771376,63rd & Broadway - New York NY (W),1889 Broadway,New York,NY,10023 +-73.982576,40.769196,60th & Broadway-II - New York NY (W),1841 Broadway,New York,NY,10023 +-73.982237,40.777463,70th & Broadway - New York NY (W),2045 Broadway,New York,NY,10023 +-73.981167,40.781078,2138 Broadway - New York NY (W),2140 Broadway,New York,NY,10023 +-73.978352,40.777985,73rd & Columbus - New York NY (W),267-275 Columbus Ave.,New York,NY,10023 +-73.976943,40.779973,76th & Columbus - New York NY (W),338 Columbus Avenue,New York,NY,10023 +-73.981472,40.774009,Columbus @ 67th - New York NY (W),152 - 154 Columbus Avenue,New York,NY,10023 +-73.978987,40.784972,Broadway @ 81st - New York NY (W),2252 Broadway,New York,NY,10024 +-73.975439,40.789452,Broadway btwn 87th & 88th - New York NY (W),2394 Broadway,New York,NY,10024 +-73.974333,40.783555,81st & Columbus - New York NY (W),444 Columbus Avenue,New York,NY,10024 +-73.972143,40.786544,86th & Columbus - New York NY (W),540 Columbus Avenue,New York,NY,10024 +-73.973081,40.792685,93rd and Broadway - New York NY (W),2498 Broadway,New York,NY,10025 +-73.973031,40.793673,95th & Broadway - New York NY (W),2521 Broadway,New York,NY,10025 +-73.970376,40.795974,98th & Broadway - New York NY (W),2600 Broadway,New York,NY,10025 +-73.968568,40.798902,103rd & Broadway - New York NY (W),2690 Broadway,New York,NY,10025 +-73.96642,40.804749,111th & Broadway - New York NY (W),2853 Broadway,New York,NY,10025 +-73.954109,40.806176,118th & Frederick Douglas Blvd. - New York NY (W),2195 Frederick Douglas Boulevard,New York,NY,10026 +-73.964973,40.807124,B'way & 114 Street (New World) - New York NY (W),2929 Broadway,New York,NY,10027 +-73.948229,40.808952,125th St. btwn Adam Clayton & FDB - New York NY,201 W. 125th Street,New York,NY,10027 +-73.944916,40.807539,125th Street and Lenox (UCO) - New York NY (W),77-83 West 125th Street,New York,NY,10027 +-73.956091,40.778781,Lexington & 85th - New York NY (W),1261 Lexington Avenue,New York,NY,10028 +-73.954979,40.777485,84th & Third Ave. - New York NY (W),1488 Third Avenue #A,New York,NY,10028 +-73.949971,40.776101,85th & First - New York NY (W),1631 1st Ave.,New York,NY,10028 +-73.954447,40.77466,Second @ 81st - New York NY (W),1559 2nd Avenue,New York,NY,10028 +-73.939846,40.84113,168th & Broadway - New York NY (W),4001 Broadway,New York,NY,10032 +-73.938648,40.85103,Washington Hgts/181st St. - New York NY (W),803 W. 181st St.,New York,NY,10033 +-73.992413,40.758772,43rd & Ninth - New York NY (W),593 Ninth Ave.,New York,NY,10036 +-73.989958,40.761619,47th & 9th - New York NY (W),682 9th Avenue,New York,NY,10036 +-73.989113,40.758128,43rd & 8th - New York NY (W),684 Eighth Avenue,New York,NY,10036 +-73.988719,40.756798,42nd & Eighth - New York NY (W),251 West 42nd Street,New York,NY,10036 +-73.986974,40.760515,47th & Eighth - NY NY (W),770 Eighth Ave.,NY,NY,10036 +-73.986225,40.755111,41st and Broadway - New York NY (W),1460 Broadway,New York,NY,10036 +-73.985719,40.75766,45th & Broadway - New York NY (W),1530 Broadway,New York,NY,10036 +-73.985066,40.759806,1585 Broadway (47th) - New York NY (W),1585 Broadway,New York,NY,10036 +-73.984927,40.759123,Marriott Marquis - Lobby - New York NY,1535 Broadway,New York,NY,10036 +-73.98395,40.754894,42nd & 6th - New York NY (W),1100 Avenue of the Americas,New York,NY,10036 +-73.976668,40.759237,575 Fifth Avenue - New York NY (W),575 Fifth Avenue,New York,NY,10036 +-73.982213,40.756831,45th St. & Sixth Ave. - New York NY (W),1166 Avenue of the Americas,New York,NY,10036 +-74.008127,40.710255,Nassau & Fulton - New York NY (W),130 Fulton Street,New York,NY,10038 +-74.007726,40.708098,100 Williams Street - New York NY (W),100 William Street,New York,NY,10038 +-74.006842,40.711851,38 Park Row - New York NY (W),38 Park Row,New York,NY,10038 +-73.941962,40.822876,145th & Bradhurst - New York NY (W),301 W. 145th St.,New York,NY,10039 +-73.952022,40.759155,Roosevelt Island - New York NY (W),455 Main Street,New York,NY,10044 +-73.959395,40.774129,Lexington & 78th - New York NY (W),1117 Lexington Ave.,New York,NY,10075 +-73.979809,40.760716,1290 Ave. of the Americas - New York NY (W),1290 6th Ave.,New York,NY,10104 +-73.97849,40.762837,1345 Ave. of the Americas Acquisiti - New York NY (W),1345 6th Ave.,New York,NY,10105 +-73.979464,40.758956,Rockefeller Center Concourse - New York NY (W),30 Rockefeller Plaza,New York,NY,10112 +-73.993056,40.751389,1 Penn Plaza - New York NY (W),1 Penn Plaza,New York,NY,10119 +-73.992,40.7497,Penn Station LIRR - New York NY (W),1 Penn Plaza Concourse Level,New York,NY,10119 +-73.9915,40.749565,Penn Station LIRR #2 - New York NY (W),1 Penn Plaza Concourse level,New York,NY,10119 +-73.955839,40.780241,87th & Lexington - New York NY (W),120 EAST 87TH ST,New York,NY,10128 +-73.947289,40.779057,90th & First - New York NY (W),400 East 90th Street,New York,NY,10128 +-73.954224,40.787214,96th & Madison - New York NY (W),1378 Madison Avenue,New York,NY,10128 +-73.951235,40.782606,92nd & 3rd - New York NY (W),1642 Third Avenue,New York,NY,10128 +-73.976017,40.754718,45th & Park Avenue - New York NY (W),230 Park Avenue,New York,NY,10169 +-74.01588,40.714452,250 Vesey Street World Financial - New York NY,250 Vesey Street,New York,NY,10281 +-74.115433,40.564728,Stop & Shop-Staten Island #581 - Staten Island NY,2754 Hylan Blvd.,Staten Island,NY,10306 +-74.110238,40.569844,Hylan Commons - Staten Island NY (W),2530 Hylan Blvd.,Staten Island,NY,10306 +-74.238014,40.528077,Target Staten Island T-2006 - Staten Island NY,2900 Veterans Rd. W.,Staten Island,NY,10309 +-74.186341,40.630406,Forest & Bard - Staten Island NY (W),480 Forest Ave.,Staten Island,NY,10310 +-74.168931,40.582223,Stop & Shop-Staten Island #512 - Staten Island NY,2795 Richmond Ave.,Staten Island,NY,10314 +-74.168915,40.58228,Staten Island Mall - Staten Island NY (W),2655 Richmond Avenue,Staten Island,NY,10314 +-74.168897,40.58234,Richmond Avenue - Staten Island NY (W),2505 Richmond Avenue,Staten Island,NY,10314 +-74.132326,40.61242,Victory & Bradley - Staten Island NY (W),2070 Victory Blvd.,Staten Island,NY,10314 +-73.9301,40.8192,Target Bronx Terminal T-2475 - Bronx NY,700 Exterior St.,Bronx,NY,10451 +-73.844351,40.847119,Morris Park Eastchester Rd. - Bronx - Bronx NY (W),1728 Eastchester Road,Bronx,NY,10461 +-73.862924,40.840037,1385 Metropolitan Ave. (UCO) - Bronx NY (W),1385 Metropolitan Avenue,Bronx,NY,10462 +-73.909912,40.885961,3503 Johnson Avenue Bronx - Bronx NY (W),3503 Johnson Avenue,Bronx,NY,10463 +-73.908644,40.873064,Target Riverdale T-1798 - Bronx NY,40 W. 225th St.,Bronx,NY,10463 +-73.906894,40.873416,225th Street - Kingsbridge Plaza UC - Bronx NY (W),50 W. 225th Street,Bronx,NY,10463 +-73.846743,41.012763,Ardsley - Ardsley NY (W),716-718 Saw Mill Road,Ardsley,NY,10502 +-73.829092,41.151855,Briarcliff Manor - Rte 9 - Briarcliff Manor NY (W),107 North State Rd.,Briarcliff Manor,NY,10510 +-73.669751,41.414542,Carmel NY - Carmel NY (W),1876 Route 6,Carmel,NY,10512 +-73.77255,41.1592,Chappaqua - Chappaqua NY (W),2 South Greeley Avenue,Chappaqua,NY,10514 +-73.856497,41.003198,"Dobbs Ferry NY - Dobbs Ferry NY (D, W)",45 Stanley Avenue,Dobbs Ferry,NY,10522 +-73.799184,41.01802,Central Avenue Hartsdale - ON-HOLD - Hartsdale NY (D),46 South Central Avenue,Hartsdale,NY,10530 +-73.796126,41.012428,Hartsdale Train Station - Hartsdale NY (W),223 E. Hartsdale Ave.,Hartsdale,NY,10530 +-73.759543,40.932047,Larchmont - Larchmont NY (W),1929 Palmer Avenue,Larchmont,NY,10538 +-73.742804,40.940651,Mamaroneck - Mamaroneck NY (W),1030 West Boston Post Rd.,Mamaroneck,NY,10543 +-73.728875,41.206887,Mt. Kisco - Mount Kisco NY (W),41 South Moger Avenue,Mount Kisco,NY,10549 +-73.720188,41.214596,Target Mt Kisco T-1954 - Mt Kisco NY,195A N. Bedford Rd.,Mt Kisco,NY,10549 +-73.81951,40.899571,Target Mt Vernon T-1887 - Mount Vernon NY,600 Garden Ave.,Mount Vernon,NY,10550 +-73.861874,41.144007,Ossining - Ossining NY (W),216 South Highland Avenue,Ossining,NY,10562 +-73.793272,41.134306,Pleasantville Memorial Plaza - Pleasantville NY (W),42 Memorial Plaza,Pleasantville,NY,10570 +-73.681291,41.002931,Rye Brook - Port Chester NY (W),118 S. Ridge Street,Port Chester,NY,10573 +-73.699808,41.04421,SUNY-Purchase-Fort Awesome - Purchase NY,735 Anderson Hill Road,Purchase,NY,10577 +-73.684972,40.983322,Rye - Rye NY (W),51 Purchase Street,Rye,NY,10580 +-73.818708,40.995535,Scarsdale/Midway - Scarsdale NY (W),975B Central Park Avenue,Scarsdale,NY,10583 +-73.807613,40.969188,Vernon Hills - Scarsdale NY (W),684 White Plains Road,Scarsdale,NY,10583 +-73.805391,40.975831,Downtown Scarsdale - Scarsdale NY (W),51 East Parkway,Scarsdale,NY,10583 +-73.6976,41.3342,Stop & Shop-Somers #513 - Somers NY,80 Birdsell Road,Somers,NY,10589 +-73.780416,41.274866,Yorktown - Yorktown Heights NY (W),1932 Commerce Street,Yorktown Heights,NY,10598 +-73.76716,41.032243,White Plains Renaissance Plaza - White Plains NY (W),200 Main Street,White Plains,NY,10601 +-73.758259,41.03146,The Westchester Mall - White Plains NY,125 Westchester Avenue,White Plains,NY,10601 +-73.872,40.9899,NY Ardsley Travel Plaza - Hastings on Hudson NY,mile post 6N NY Thru way,Hastings on Hudson,NY,10706 +-73.827653,40.950608,Tuckahoe Train Station - Tuckahoe NY (W),1 Depot Square,Tuckahoe,NY,10707 +-73.842683,40.927872,Yonkers Bronx River Road - Yonkers NY (W),841-851 Bronx River Road,Yonkers,NY,10708 +-73.834456,40.939527,Bronxville - Bronxville NY (W),29 Park Place,Bronxville,NY,10708 +-73.827078,40.981015,Yonkers - Yonkers NY (W),2458 Central Park Avenue,Yonkers,NY,10710 +-73.773365,40.921296,Stop & Shop-New Rochelle #529 - New Rochelle NY,2425 Palmer Ave.,New Rochelle,NY,10801 +-73.777896,40.906242,Wykagyl - New Rochelle NY (W),1278-80 North Avenue,New Rochelle,NY,10804 +-74.112247,41.111878,Suffern/Airmont - Airmont NY (W),215 Route 59,Airmont,NY,10901 +-74.126025,41.316332,Central Valley/Woodbury Commons - Central Valley NY (W),400 Evergreen Ct,Central Valley,NY,10917 +-74.3808,41.4524,"Middletown Orange Plaza - Middletown NY (D, W)",51 Orange Plaza Lane,Middletown,NY,10940 +-74.152896,41.317599,Target Monroe T-2024 - Monroe NY,128 Bailey Farm Rd.,Monroe,NY,10950 +-74.015772,41.09868,Nanuet Rockland Plaza - Nanuet NY (W),126 West Rockland Plaza,Nanuet,NY,10954 +-73.990539,41.144565,New City - New City NY,83 South Main,New City,NY,10956 +-73.918465,41.091221,Nyack - Nyack NY (W),80 Main Street,Nyack,NY,10960 +-74.1858,41.1547,Sloatsburg Travel Plaza - Sloatsburg NY,MM-33 N.,Sloatsburg,NY,10974 +-73.953294,41.098264,Palisades II - West Nyack NY,3530 PALISADES CENTER DR,West Nyack,NY,10994 +-73.952462,41.098136,Target Clarkstown/West Nyack T-1083 - West Nyack NY,4120 Palisades Ctr. Dr,West Nyack,NY,10994 +-73.684281,40.692002,Franklin Avenue Franklin Square - Franklin Square NY (W),640 Franklin Avenue,Franklin Square,NY,11010 +-73.732719,40.774027,"55 Northern Blvd. - Great Neck NY (D, W)",55 Northern Boulevard,Great Neck,NY,11021 +-73.729493,40.788753,Great Neck - Great Neck NY (W),71 Middle Neck Road,Great Neck,NY,11021 +-73.699816,40.79785,Manhasset - Manhasset NY (W),375 Plandome Road,Manhasset,NY,11030 +-73.688746,40.754593,New Hyde Park - New Hyde Park NY (W),1596 Union Turnpike,New Hyde Park,NY,11040 +-73.667162,40.752295,Stop & Shop-New Hyde Park #570 - New Hyde Park NY,653 Hillside Ave.,New Hyde Park,NY,11040 +-73.702965,40.837549,Stop & Shop-Port Washington #546 - Port Washington NY,65 Shore Road,Port Washington,NY,11050 +-73.688351,40.830546,Port Washington - Port Washington NY (W),72 Main Street,Port Washington,NY,11050 +-73.918238,40.760298,Steinway Street - Astoria NY (W),31-44 Steinway Street,Astoria,NY,11103 +-73.870852,40.733702,Queens Blvd. Sunnyside - Sunnyside NY (W),46-09 Queens Blvd.,Sunnyside,NY,11104 +-73.911156,40.776158,Astoria/Ditmars - Astoria NY (W),22-04 31st Street,Astoria,NY,11105 +-73.923265,40.7557,Kaufman Studios - Astoria NY (W),3711 35th Avenue,Astoria,NY,11106 +-73.995029,40.694758,Montague Street - Brooklyn NY (W),112 Montague Street,Brooklyn,NY,11201 +-73.993007,40.702496,Main Street DUMBO - Brooklyn NY (W),67 Front Street,Brooklyn,NY,11201 +-73.987212,40.693948,Polytechnic University Metro Tech - Brooklyn NY (W),6 Metro Tech,Brooklyn,NY,11201 +-73.992607,40.68849,Cobble Hill - Brooklyn NY (W),167 Court Street,Brooklyn,NY,11201 +-73.989806,40.619088,65th & 18th Avenue Bensonhurst - Brooklyn NY (W),6423 18th Avenue,Brooklyn,NY,11204 +-74.027442,40.631516,75th & 3rd Bay Ridge - Brooklyn NY (W),7419 3rd Avenue,Brooklyn,NY,11209 +-74.025981,40.620874,514 86th St. Brooklyn - Brooklyn NY (W),514 86th Street,Brooklyn,NY,11209 +-74.033096,40.619245,Bay Ridge - Brooklyn NY (W),9202 Third Avenue,Brooklyn,NY,11209 +-73.948421,40.632285,Hillel Place Brooklyn College - Brooklyn NY (W),33-42 Hillel Place,Brooklyn,NY,11210 +-73.946469,40.630965,Target Brooklyn College - Brooklyn NY,2201 Nostrand Ave.,Brooklyn,NY,11210 +-73.998456,40.605068,Bensonhurst 1971 86th St. - Brooklyn NY (W),1971 86th Street,Brooklyn,NY,11214 +-73.985658,40.581268,"Cropsey Avenue - Brooklyn NY (D, W)",3035 Cropsey Ave.,Brooklyn,NY,11214 +-73.977642,40.672047,Park Slope:164 7th Avenue Brooklyn - Brooklyn NY (W),166 7th Avenue,Brooklyn,NY,11215 +-73.977674,40.684422,Atlantic Terminal (UCO) - Brooklyn NY (W),139 Flatbush Ave.,Brooklyn,NY,11217 +-73.953955,40.730484,910 Manhattan Ave. Bklyn - Brooklyn NY (W),910 Manhattan Avenue,Brooklyn,NY,11222 +-73.991113,40.686249,164 Smith St. Bklyn - Brooklyn NY (W),164 Smith Street,Brooklyn,NY,11231 +-73.961219,40.577956,Brighton Beach - Brooklyn NY (W),607 Brighton Beach Avenue,Brooklyn,NY,11235 +-73.829741,40.757968,Flushing - Main Street - Flushing NY (W),41-02 Main Street,Flushing,NY,11354 +-73.83334,40.783826,Target Flushing T-1150 - Flushing NY,13505 20th Ave.,Flushing,NY,11356 +-73.794617,40.779737,Whitestone - Whitestone NY (W),138-11 20th Avenue,Whitestone,NY,11356 +-73.766379,40.760952,215th St. & Northern Blvd. Bayside - Bayside NY (W),215-29 Northern Blvd.,Bayside,NY,11361 +-73.767463,40.746157,Horace Harding Blvd. Little Neck - Little Neck NY,254-41 Horace Harding Expressway,Little Neck,NY,11362 +-73.777826,40.723053,Fresh Meadows - Fresh Meadows NY (W),61-51 188th Street,Fresh Meadows,NY,11365 +-73.872219,40.770798,LGA - Delta Flight Ctr-Delta Term - Flushing NY (A),La Guardia InternationalAirport,Flushing,NY,11371 +-73.861915,40.768063,LGA Delta Lower level arrival - Flushing NY (A),Delta Terminal: LaGuardiaAirport,Flushing,NY,11371 +-73.887355,40.749442,Jackson Heights 37th Avenue - Jackson Heights NY,78-25 37th Avenue,Jackson Heights,NY,11372 +-73.870798,40.734521,Queens Center Mall - Elmhurst NY,90-15 Queens Boulevard,Elmhurst,NY,11373 +-73.857265,40.706026,Stop & Shop-Forest Hills #539 - Forest Hills NY,8989 Union Turnpike,Forest Hills,NY,11375 +-73.85272,40.726223,67th & Queens Blvd. - Forest Hills NY (W),10102 Queens Blvd.,Forest Hills,NY,11375 +-73.846919,40.720926,Forest Hills (B&N) - Forest Hills NY (W),7000 Austin Street,Forest Hills,NY,11375 +-73.845936,40.718317,Continental Avenue - Forest Hills NY (W),107-12 Continental Avenue,Forest Hills,NY,11375 +-73.936174,40.749674,Tower Square - Woodside NY (W),51-06 Northern Blvd.,Woodside,NY,11377 +-73.868284,40.708464,The Shops at Atlas Park Queens - Glendale NY (W),8000 Cooper Avenue,Glendale,NY,11385 +-73.840393,40.661852,Howard Beach - Howard Beach NY (W),157-41 Cross Bay Blvd.,Howard Beach,NY,11414 +-73.831687,40.714609,118-24 Queens Blvd. Queens - Kew Gardens NY,118-24 Queens Blvd.,Kew Gardens,NY,11415 +-73.713969,40.726853,Bellerose Jericho & 251st - Bellerose NY (W),251-05 Jamaica Avenue,Bellerose,NY,11426 +-73.794622,40.654596,JFK - Delta Food Court - Jamaica NY (A),51 W. Courtyard,Jamaica,NY,11430 +-73.794622,40.654596,JFK - United Terminal Arrivals - Jamaica NY (A),51 W. Courtyard,Jamaica,NY,11430 +-73.7944,40.6542,JFK T7 Gate 7 - Jamaica NY (A),NY JFK InternationalAirport Delta Termi,Jamaica,NY,11430 +-73.794304,40.6541,JFK T2 Baggage Claim - Jamaica NY (A),Delta Terminal Terminal 2- Building 54,Jamaica,NY,11430 +-73.7934,40.6549,JFK T7 Pre Security Ticketing - Jamaica NY (A),NY JFK InternationalAirport Delta Termi,Jamaica,NY,11430 +-73.7932,40.6548,JFK - T8 American Air - Jamaica NY (A),51 W. Courtyard,Jamaica,NY,11430 +-73.782745,40.644412,JFK T1 pre security food court - jamaica NY (A),NY JFK INternationalAirport,jamaica,NY,11430 +-73.026003,40.811391,JFK T2 Gate 24 - Jamaica NY (A),Bldg 54,Jamaica,NY,11430 +-73.790306,40.721364,St. John's University - Queens - Jamaica NY,8000 Utopia Pkwy,Jamaica,NY,11432 +-73.608617,40.639518,Waldbaums-Baldwin Harbor-#452 - Baldwin Harbor NY,905 Atlantic Avenue,Baldwin Harbor,NY,11510 +-73.734499,40.623087,"Rockaway Tpke Cedarhurst - Cedarhurst NY (D, W)",316 Rockaway Tpke.,Cedarhurst,NY,11516 +-73.634391,40.725224,Village of Garden City - Garden City NY (W),184 7th St.,Garden City,NY,11530 +-73.615032,40.731012,Garden City Stewart Avenue - Garden City NY,581 Stewart Avenue,Garden City,NY,11530 +-73.611844,40.743529,Roosevelt Field Kiosk - Garden City NY (W),630 Old Country Rd.,Garden City,NY,11530 +-73.635506,40.848701,"Sea Cliff Glen Cove Ave. - Glen Cove NY (D, W)",202 Glen Cove Ave.,Glen Cove,NY,11542 +-73.631844,40.864365,Glen Cove - Glen Cove NY (W),5 School Street,Glen Cove,NY,11542 +-73.6263,40.8098,Wheatly Plaza-Greenvale - Greenvale NY (W),132 Wheatley Plaza,Greenvale,NY,11548 +-73.652367,40.705087,Stop & Shop-W. Hempstead #2552 - W. Hempstead NY,420 Hempstead Turnpike,W. Hempstead,NY,11552 +-73.593912,40.717611,Uniondale - Uniondale NY (W),1228 Hempstead Turnpike,Uniondale,NY,11553 +-73.699693,40.640015,Hewlett - Hewlett NY (W),1344 Broadway,Hewlett,NY,11557 +-73.667023,40.588654,Long Beach - Long Beach NY (W),101 West Park Avenue,Long Beach,NY,11561 +-73.6665,40.588659,Waldbaums-Long Beach-#658 - Long Beach NY,85 E. Park Ave.,Long Beach,NY,11561 +-73.654371,40.600187,"Island Park - Island Park NY (D, W)",4507 Austin Blvd.,Island Park,NY,11561 +-73.676678,40.655803,Lynbrook - Lynbrook NY (W),659 Sunrise Highway,Lynbrook,NY,11563 +-73.5575,40.67673,North Merrick - North Merrick NY (W),1713 Merrick Avenue,North Merrick,NY,11566 +-73.54931,40.656519,Merrick - Merrick NY (W),2015 Merrick Road,Merrick,NY,11566 +-73.645169,40.657002,Rockville Center - Rockville Center NY (W),21 North Park Ave.,Rockville Center,NY,11570 +-73.639533,40.624496,The Sands (Oceanside) - Oceanside NY (W),3549A Long Beach Road,Oceanside,NY,11572 +-73.650321,40.777799,Roslyn Heights - Roslyn Heights NY (W),373 Willis Avenue,Roslyn Heights,NY,11577 +-73.621475,40.793272,The Village of Westbury - Westbury NY (W),379 Glen Cove Road,Westbury,NY,11590 +-73.58768,40.743393,Target Westbury T-1139 - Westbury NY,999 Corporate Dr,Westbury,NY,11590 +-73.555126,40.755593,Westbury II - Westbury NY (W),1149 Old Country Road,Westbury,NY,11590 +-73.412413,40.669802,Stop & Shop-Amityville #550 - Amityville NY,351 Merrick Rd.,Amityville,NY,11701 +-73.359761,40.710193,Stop & Shop-Babylon #543 - Babylon NY,88 Golding Avenue,Babylon,NY,11704 +-73.306381,40.696788,West Babylon - West Babylon NY (D),519 Montauk Highway,West Babylon,NY,11704 +-73.048036,40.748106,Bayport - Bayport NY (W),911 Montauk Highway,Bayport,NY,11705 +-73.230644,40.72757,Stop & Shop - Bay Shore #551 - Bay Shore NY,533 Montauk Highway (rt 27A),Bay Shore,NY,11706 +-73.482618,40.725896,"Bethpage Stewart Avenue - Bethpage NY (D, W)",205 Stewart Ave.,Bethpage,NY,11714 +-73.116096,40.754773,"Bohemia - Oakdale NY (D, W)",4577 Sunrise Highway,Oakdale,NY,11716 +-73.080398,40.858642,Centereach - Centereach NY (W),1942 Middle Country Road,Centereach,NY,11720 +-73.20105,40.773878,Target Central Islip T-2102 - Central Islip NY,160 N. Research Pl,Central Islip,NY,11722 +-73.288701,40.806422,"Commack Crooked Hill - Commack NY (D, W)",125 Crooked Hill Road,Commack,NY,11725 +-73.272227,40.845271,"Jericho Tpke Commack - Commack NY (D, W)",2055A Jericho Tpke,Commack,NY,11725 +-73.330074,40.763117,Deer Park Rt. 231 - Deer Park NY (W),1932 Deer Park Avenue,Deer Park,NY,11729 +-73.327,40.7615,Tanger Outlets Deer Park - Deer Park NY,529 The Arches Circle,Deer Park,NY,11729 +-73.323975,40.839628,"East Northport Rte. 25 - East Northport NY (D, W)",3011 Jericho Tpke.,East Northport,NY,11731 +-73.321704,40.863765,"E. Northport Larkfield Rd. - East Northport NY (D, W)",506 Larkfield Rd.,East Northport,NY,11731 +-73.10832,40.94058,East Setauket - Setauket NY (W),246 Route 25-A,Setauket,NY,11733 +-73.073849,40.904363,East Setauket Nesconset HIghway - East Setauket NY (D),4020 Nesconset Highway,East Setauket,NY,11733 +-73.424384,40.727003,"Farmingdale - Farmingdale NY (D, W)",10 Michael Ave.,Farmingdale,NY,11735 +-73.419329,40.751607,Target Farmingdal T-1866 - Farmingdale NY,2121 Broadhollow Rd.,Farmingdale,NY,11735 +-73.020623,40.825985,Stop & Shop-Farmingville #562 - Farmingville NY,2350 N. Ocean Ave.,Farmingville,NY,11738 +-73.427597,40.871294,Huntington - Huntington NY (W),1 Wall Street,Huntington,NY,11743 +-73.366816,40.834459,Stop & Shop - Dix Hills #516 - Huntington NY,1111 E. Jericho Tpke,Huntington,NY,11743 +-73.412161,40.825262,Walt Whitman Mall - Huntington Station NY,160 Walt Whitman Road,Huntington Station,NY,11746 +-73.422295,40.757294,Melville - Melville NY (W),64 Broad Hollow Road,Melville,NY,11747 +-73.214936,40.72919,Islip Village - Islip NY (W),455 Main St.,Islip,NY,11751 +-73.532693,40.783727,Jericho - Jericho NY (W),475 North Broadway,Jericho,NY,11753 +-73.130125,40.864994,Smith Haven Mall - Lake Grove NY (W),528 Smith Haven Mall,Lake Grove,NY,11755 +-73.518622,40.725484,Levittown - Hempstead Tpke. - Levittown NY (W),3240 Hempstead Tpke,Levittown,NY,11756 +-73.474853,40.666753,Massapequa Village Square - Massapequa NY (W),4301 Merrick Road,Massapequa,NY,11758 +-73.4315,40.6854,Sunrise Mall - Massapequa NY (W),9165 Sunrise Mall,Massapequa,NY,11758 +-73.454626,40.666447,Southgate - Massapequa NY (W),4902 Merrick Road,Massapequa,NY,11762 +-72.996597,40.823812,Medford Route 112 - Medford NY (W),2717 Route 112,Medford,NY,11763 +-72.988644,40.82646,Target Medford T-1948 - Medford NY,2975 Horseblock Rd.,Medford,NY,11763 +-72.953959,40.810072,Stop & Shop-Medford #583 - Medford NY,700-60 Patchogue Yaphank Rd.,Medford,NY,11763 +-72.98711,40.9438,Stop & Shop-Miller Place #554 - Miller Place NY,385 Rt. 25 A & Miller Place Rd.,Miller Place,NY,11764 +-72.9862,40.943,Miller Place - Miller Place NY (W),385 Route 25 A,Miller Place,NY,11764 +-73.1235,40.833321,"Nesconset Smithtown Blvd. - Nesconset NY (D, W)",465 Smithtown Blvd.,Nesconset,NY,11767 +-73.331809,40.898579,Northport Village - Northport NY (W),832A Fort Salonga Road,Northport,NY,11768 +-73.024888,40.778524,Patchogue Waverly Plaza - Patchogue NY,371 North Service Rd.,Patchogue,NY,11772 +-73.068486,40.945832,Port Jefferson - Port Jefferson NY (W),201 Main Street,Port Jefferson,NY,11777 +-73.098881,40.786377,ISP - Islip Gate 4 SW Terminal - Ronkonkoma NY (A),100 Arrival Ave.,Ronkonkoma,NY,11779 +-73.093805,40.729874,Sayville - Sayville NY (W),59 Main Street,Sayville,NY,11782 +-73.055085,40.863218,"Selden - Selden NY (D, W)",1251 Middle Country Road,Selden,NY,11784 +-73.191523,40.855716,Smithtown - Smithtown NY (W),1 Miller Place,Smithtown,NY,11787 +-73.199422,40.828815,"Hauppauge - Route 111 - Hauppauge NY (D, W)",513 Hauppauge Rd. - Rte 111,Hauppauge,NY,11788 +-73.118513,40.87728,Stony Brook (347) - Stony Brook NY (W),1320 Stony Brook Road,Stony Brook,NY,11790 +-73.502503,40.810303,Syosset- South Oyster Bay - Syosset NY (W),390 Jericho Turnpike,Syosset,NY,11791 +-73.122698,40.917087,SUNY Stony Brook University Hospita - Stony Brook NY,250 Stony Brook Union,Stony Brook,NY,11794 +-73.123804,40.91449,Stony Brook University-Long Island- - Stony Brook NY,Student Activities Center,Stony Brook,NY,11794 +-73.465898,40.816343,Woodbury Commons - Woodbury NY (W),8285 Jericho Turnpike,Woodbury,NY,11797 +-73.5196,40.7642,Target Hicksville T-1855 - Hicksville NY,358 Broadway Mall,Hicksville,NY,11801 +-73.508925,40.767259,Hicksville Old Country Rd. & Newbri - Hicksville NY,180 E. Old Country Road,Hicksville,NY,11801 +-73.502981,40.782763,Plainview Centre - Plainview NY (W),399 South Oyster Bay Road,Plainview,NY,11803 +-72.704434,40.915875,Riverhead Tanger II - Riverhead NY (W),1770 West Main Street Suite 1400,Riverhead,NY,11901 +-72.301505,40.937809,Bridgehampton Village - Bridgehampton NY (W),2488 Montauk Hwy.,Bridgehampton,NY,11932 +-72.361026,41.102477,Greenport Front St. - Greenport NY (W),110 Front Street,Greenport,NY,11944 +-72.525183,40.87765,Hampton Bays - Hampton Bays NY (W),24 Montauk Highway,Hampton Bays,NY,11946 +-72.7885,40.8526,Manorville - Manorville NY (W),485 CR-111,Manorville,NY,11949 +-72.538863,40.985757,Mattituck - Mattituck NY (W),10095 Main Road,Mattituck,NY,11952 +-74.186905,42.96555,Target Amsterdam T-2461 - Amsterdam NY,4930 State Hwy. 30,Amsterdam,NY,12010 +-73.780671,42.861705,Clifton Park - Clifton Park NY (W),9 Clifton County Road,Clifton Park,NY,12065 +-73.896327,42.416317,New Baltimore Travel Plaza - Hannacroix NY,Mile Marker 127 South-NY State Thruway,Hannacroix,NY,12087 +-73.77206,42.755297,Target Latham T-1915 - Latham NY,675 Troy Schenectady Rd.,Latham,NY,12110 +-73.765696,42.751296,Latham Troy-Schenectady Road - Latham NY (D),549 Troy-Schenectady Road,Latham,NY,12110 +-73.761016,42.727485,Newton Plaza-Loudonville - Latham NY (W),594 New Loudon Road,Latham,NY,12110 +-74.070724,42.823013,NY Thruway Pattersonville Travel Pl - Pattersonville NY,Milepost 168 W.,Pattersonville,NY,12137 +-73.697449,42.647507,"East Greenbush - Rensselaer NY (D, W)",599 N. Greenbush Rd.,Rensselaer,NY,12144 +-73.855646,42.637602,Price Chopper - Slingerlands #159 - Slingerlands NY,1395 New Scotland Rd.,Slingerlands,NY,12159 +-73.858266,42.688639,Crossgates Mall - Albany NY (W),1 Crossgates Mall Road,Albany,NY,12203 +-73.839193,42.683474,Stuyvesant Plaza - Albany NY (W),1475 Western Avenue,Albany,NY,12203 +-73.830354,42.678445,"1244 Western Ave. - Albany NY (D, W)",1244 Western Avenue,Albany,NY,12203 +-73.784625,42.664203,College St. Rose - Albany NY,420 Western Ave.,Albany,NY,12203 +-73.820203,42.710678,Wolfe Road - Albany NY (W),18 Wolf Rd.,Albany,NY,12205 +-73.795494,42.727037,Colonie Albany-Shaker & Wolf Rd. - Albany NY (D),243 Wolf Rd.,Albany,NY,12205 +-73.752537,42.650154,North Pearl Street COB - Albany NY (W),10 North Pearl St.,Albany,NY,12207 +-73.776372,42.652059,New Scotland Avenue - Albany NY (W),62 New Scotland Ave.,Albany,NY,12208 +-73.80833,42.74142,ALB Concourse B Times Square - Albany NY (A),737 Albany-Shaker Road,Albany,NY,12211 +-73.913618,42.783641,"Schenectady Watt St. - Schenectady NY (D, W)",2441 Watt Street,Schenectady,NY,12304 +-73.890861,42.815404,Niskayuna- Albany - Niskayuna NY (W),2321-3 Nott Street East,Niskayuna,NY,12309 +-73.989011,41.962701,"Kingston NY - Kingston NY (D, W)",39 Massa Drive,Kingston,NY,12401 +-74.0152,42.018,NY Ulster Travel Plaza - Ruby NY,New York State Thruway Mile Post 96 Sout,Ruby,NY,12475 +-73.89207,41.5304,"Fishkill Ransley Square - Fishkill NY (D, W)",11 Merrit Boulevard (Route 9),Fishkill,NY,12524 +-73.943166,41.564959,Target Newburgh T-2076 - Newburgh NY,50 SR 17K,Newburgh,NY,12550 +-74.085216,41.747851,New Paltz - New Paltz NY (W),1 Plattekill Avenue,New Paltz,NY,12561 +-74.117991,41.706442,NY Plattekill Travel Plaza - Plattekill NY,Mile Post 65N,Plattekill,NY,12568 +-73.932154,41.726238,Mid-Hudson - Poughkeepsie NY (W),3434 North Road,Poughkeepsie,NY,12601 +-73.93048,41.661446,Poughkeepsie - IBM - Poughkeepsie NY (W),2519 South Road (Rte 9),Poughkeepsie,NY,12601 +-73.88016,41.698833,"Arlington Square - Route 44 - Poughkeepsie NY (D, W)",712 Duchess Tpke,Poughkeepsie,NY,12603 +-73.676618,43.326835,Target Queensbury T-1830 - Queensbury NY,578 Aviation Rd.,Queensbury,NY,12804 +-73.674827,43.329386,"Queensbury - Queensbury NY (D, W)",607 Aviation Rd.,Queensbury,NY,12804 +-73.785902,43.079639,Broadway-Saratoga Springs - Saratoga Springs NY (W),351 Broadway,Saratoga Springs,NY,12866 +-73.491071,44.70087,Target Plattsburgh T-2459 - Plattsburg NY,60 Smithfield Blvd.,Plattsburg,NY,12901 +-73.483634,44.696646,"Plattsburgh Cornelia St. - Plattsburgh NY (D, W)",359 Cornelia Street,Plattsburgh,NY,12901 +-73.985272,44.287393,Lake Placid Main St. - Lake Placid NY (W),90 Main St.,Lake Placid,NY,12946 +-76.12104,43.159517,Target Cicero T-2295 - Cicero NY,8061 Brewerton Rd.,Cicero,NY,13039 +-76.016541,43.028888,Fayetteville Syracuse - Fayetteville NY (W),217 West Genesee Street,Fayetteville,NY,13066 +-76.226421,43.136994,"Clay - Liverpool NY (D, W)",7567 Oswego Rd.,Liverpool,NY,13090 +-76.155279,43.047533,Armory Square - Syracuse NY (W),290 W. Jefferson Street,Syracuse,NY,13202 +-76.134949,43.041606,Syracuse University - Syracuse NY (W),177 Marshall Street,Syracuse,NY,13210 +-76.238312,43.047113,Target Camillus (Syracuse) T-2324 - Syracuse NY,3657 W. Genesee St.,Syracuse,NY,13219 +-76.170699,43.067057,Carousel Center Mall - Syracuse NY,9737 Carousel Ctr,Syracuse,NY,13290 +-74.8476,43.0534,NY Indian Castle Travel Plaza - Little falls NY,Rd #3 Rt 5S Mile Post 210E,Little falls,NY,13365 +-75.4262,43.1069,NY Oneida Travel Plaza - westmoreland NY,5365 State Rt 233 Mile Post 244E,westmoreland,NY,13490 +-75.962455,43.97021,Target Watertown T-2253 - Watertown NY,21855 Towne Center Dr,Watertown,NY,13601 +-75.944998,43.976271,"Watertown NY - Watertown NY (D, W)",1242 Arsenal Street,Watertown,NY,13601 +-75.055782,42.470899,SUNY Oneonta - Oneonta NY,46 Woodside Ave.,Oneonta,NY,13820 +-76.005807,42.094593,"Vestal Parkway - Vestal NY (D, W)",2540 Vestal Parkway,Vestal,NY,13850 +-76.001729,42.094123,Target Binghampton/Vestal T-1056 - Vestal NY,3112 Vestal Pkwy. E.,Vestal,NY,13850 +-75.950295,42.092418,"Vestal University Plaza - Vestal NY (D, W)",4706 Vestal Parkway East,Vestal,NY,13850 +-75.904623,42.136249,"Binghamton Front Street - Binghamton NY (D, W)",904 Upper Front Street,Binghamton,NY,13905 +-78.199,43.017,Target Batavia T-2382 - Batavia NY,4300 Veterens Memorial Dr,Batavia,NY,14020 +-78.698619,42.878841,Target - Cheektowaga/Depew T-2191 - Depew NY,4920 Transit Rd.,Depew,NY,14043 +-78.697503,42.868475,"Transit & French Cheektowaga - Depew NY (D, W)",4770 Transit Road,Depew,NY,14043 +-78.696964,43.031818,"Transit Commons - East Amherst NY (D, W)",9660 Transit Road,East Amherst,NY,14051 +-79.3426,42.4306,SUNY/Fredonia-Cranston Hall - Fredonia NY,Old Main Drive,Fredonia,NY,14063 +-78.782835,42.791854,Target Orchard Park T-1057. - Orchard Park NY,5622 Amanda Ln.,Orchard Park,NY,14127 +-78.876296,42.890929,235 Delaware Ave. - Buffalo NY (W),235 Delaware Ave.,Buffalo,NY,14202 +-78.86992,42.958163,"Delaware & Kenmore - Buffalo NY (D, W)",2730 Delaware Avenue,Buffalo,NY,14217 +-78.81207,42.788504,Hamburg - Blasdell NY (W),3540 McKinley Parkway,Blasdell,NY,14219 +-78.750603,42.961546,Williamsville-Dublin-Buffalo - Williamsville NY (W),5429 Main Street,Williamsville,NY,14221 +-78.729378,42.978395,"Williamsville Place - Amherst NY (D, W)",5395-5495 Sheridan Drive,Amherst,NY,14221 +-78.696887,42.991975,East View Plaza - Williamsville NY (W),8250 Transit Rd.,Williamsville,NY,14221 +-78.876581,42.922599,Elmwood-Store & Training Ctr. - Buffalo NY (W),933 Elmwood Avenue,Buffalo,NY,14222 +-78.836169,42.90361,Walden Galleria - Cheektowaga NY (W),1 Walden Avenue,Cheektowaga,NY,14225 +-78.77076,42.908935,"Walden & Anderson - Cheektowaga NY (D, W)",1775 Walden Avenue,Cheektowaga,NY,14225 +-78.818913,42.957395,University Plaza - Amherst NY (W),3500 Main Street,Amherst,NY,14226 +-78.822325,42.997324,Target Boulevard Mall T-1010 - Amherst NY,1575 Niagara Falls Blvd.,Amherst,NY,14228 +-78.822268,43.001069,Niagara Blvd. - Amherst NY (W),1703 Niagara Falls Boulevard,Amherst,NY,14228 +-78.785867,43.002876,The Commons Buffalo Univ. - Amherst NY (W),520 Lee Entrance,Amherst,NY,14228 +-79.059086,43.08621,Crowne Plaza-Niagara Falls NY-Lobby - Niagara Falls NY,300 Third Street,Niagara Falls,NY,14303 +-77.262523,42.877396,"Canandaigua Rt 5/20 - Canandaigua NY (D, W)",10 Muar St.,Canandaigua,NY,14424 +-77.173477,42.971473,NY Clifton Springs Travel Plaza - Clifton Springs NY,3236 Route 96,Clifton Springs,NY,14432 +-77.439723,43.070405,Perinton Square COB - Fairport NY (W),6720 Pittsford-Palmyra Rd.,Fairport,NY,14450 +-77.476923,43.130302,Penfield - Penfield NY (W),1806 Penfield Road,Penfield,NY,14526 +-77.514858,43.090239,Pittsford - Pittsford NY (W),5 State Street,Pittsford,NY,14534 +-77.441339,43.03178,Eastview Mall - Victor NY,7979 Pittsford-Victor Road,Victor,NY,14564 +-77.43636,43.02533,Victor - Victor NY,200 High Point Drive,Victor,NY,14564 +-77.461139,43.210514,Webster Hard & Ridge - Webster NY (D),944 Hard Road,Webster,NY,14580 +-77.451328,43.211432,Target Webster T-2038 - Webster NY,1050 Ridge Rd.,Webster,NY,14580 +-77.5895,43.144443,Monroe Ave.-Rochester - Rochester NY (W),680 Monroe Avenue,Rochester,NY,14607 +-77.670785,43.2064,"Greece West Ridge @ Center Place - Greece NY (D, W)",100 Center Place Drive,Greece,NY,14615 +-77.564745,43.126574,Twelve Corners - Brighton NY (W),1914 Monroe Avenue,Brighton,NY,14618 +-77.547115,43.111111,Clover Commons - Rochester NY (W),2900 Monroe Avenue,Rochester,NY,14618 +-77.617908,43.123192,Mt. Hope - Rochester NY (W),1380 Mount Hope Avenue,Rochester,NY,14620 +-77.57232,43.19944,Target - Irondequoit T-2211 - Irondequoit NY,50 Medley Centre Pkwy,Irondequoit,NY,14622 +-77.558752,43.203246,Irondequoit (Rochester) - Irondequoit NY (W),2255 E. Ridge Road,Irondequoit,NY,14622 +-77.63321,43.08094,The Marketplace Mall - Rochester NY,1 Miracle Mile Drive,Rochester,NY,14623 +-77.608344,43.088587,Henrietta Plaza - Henrietta NY (W),1100 Jefferson Road,Henrietta,NY,14623 +-77.748794,43.105814,Target Chili T-2528 - Rochester NY,3181 Chili Ave.,Rochester,NY,14624 +-77.688274,43.131746,Westgate Plaza NY - Rochester NY (D),2110 Chili Ave.,Rochester,NY,14624 +-77.701015,43.187827,"South Greece Long Pond & Ridgeway - Greece NY (D, W)",2590 Ridgeway Avenue,Greece,NY,14626 +-77.616959,43.137711,University of Rochester - Rochester NY,University of Rochester 201 Wilson Commo,Rochester,NY,14627 +-79.29115,42.097534,"Jamestown - Jamestown NY (D, W)",944 Fairmont Avenue,Jamestown,NY,14701 +-76.9474,42.1447,Target Big Flats T-2158 - Big Flats NY,930 Country Rd. 64,Big Flats,NY,14814 +-76.497369,42.440774,Ithaca on The Commons - Ithaca NY (W),130 E. Seneca Street,Ithaca,NY,14850 +-76.485274,42.441702,College Avenue Ithaca - Ithaca NY (W),402 College Avenue,Ithaca,NY,14850 +-80.304423,40.695422,Downtown Beaver - Beaver PA,596 3rd Street,Beaver,PA,15009 +-79.8458,40.1321,"Belle Vernon - Belle Vernon PA (D, W)",128 Pricedale Rd.,Belle Vernon,PA,15012 +-80.095706,40.382332,"Collier Town Square - Bridgeville PA (D, W)",1597 Washington Pike,Bridgeville,PA,15017 +-80.01423,40.623016,Target Richland Township North T-22 - Gibsonia PA,600 Grandview Crossing Dr,Gibsonia,PA,15044 +-79.954622,40.630732,Northtowne Square - Gibsonia PA (W),109 Northtowne Square Drive,Gibsonia,PA,15044 +-80.301937,40.682023,Target Monaca T-2100 - Monaca PA,87 Wagner Rd.,Monaca,PA,15061 +-80.300906,40.682477,"Monaca - Monaca PA (D, W)",118 Wagner Rd.,Monaca,PA,15061 +-79.750016,40.588205,Giant Eagle Mkt-New Kensington #8 - New Kensington PA,200 Tarentum Bridge Rd.,New Kensington,PA,15068 +-79.806405,40.593389,Pittsburgh Mills - Tarentum PA,2012A Butler Logan Rd.,Tarentum,PA,15084 +-79.7886,40.6149,"Frazer Pittsburgh Mills D/T - Tarentum PA (D, W)",2305 Pittsburgh Mills Blvd.,Tarentum,PA,15084 +-80.055563,40.617278,Wexford - Wexford PA (W),10590 Perry Highway,Wexford,PA,15090 +-80.092775,40.616819,Franklin Park - Wexford PA (W),100 VIP Drive,Wexford,PA,15090 +-80.02404,40.334087,South Park Shops - Bethel Park PA (W),5211 Library Road,Bethel Park,PA,15102 +-80.219898,40.516414,"Moon Township - Moon Township PA (D, W)",825 Beaver Grade Road,Moon Township,PA,15108 +-79.8984,40.4099,Stacks at the Waterfront - West Homestead PA (W),270 West Bridge Street,West Homestead,PA,15120 +-80.207348,40.56519,Sewickley II - Sewickley PA (W),425 Beaver Street,Sewickley,PA,15143 +-79.772192,40.432358,Giant Eagle Mkt-Monroeville #60 - Monroeville PA,4010 Monroville Blvd.,Monroeville,PA,15146 +-79.76717,40.438828,Miracle Mile S.C. - Pittsburgh PA (W),4100 William Penn Highway,Pittsburgh,PA,15146 +-79.8314,40.4968,PA Oakmont Travel Plaza - Verona PA,PA Turnpike East Milepost 49.3,Verona,PA,15147 +-79.984022,40.428655,Southside - Pittsburgh PA (W),1400 East Carson Street,Pittsburgh,PA,15203 +-79.87717,40.459399,"Robinson Town Centre - Pittsburgh PA (D, W)",1050 Park Manor Blvd.,Pittsburgh,PA,15205 +-79.928247,40.45898,Eastside - Pittsburgh PA (W),5932 Penn Circle South,Pittsburgh,PA,15206 +-79.96554,40.438572,Robinson Town Centre Mall - Pittsburgh PA (W),100 Robinson Ctr. Dr,Pittsburgh,PA,15213 +-79.957649,40.440978,Forbes & Atwood - Pittsburgh PA (W),3618 Forbes Avenue,Pittsburgh,PA,15213 +-79.948698,40.444785,Forbes & Craig - Pittsburgh PA (W),417 South Craig Street,Pittsburgh,PA,15213 +-80.044584,40.399293,Banksville Plaza - Pittsburgh PA,3145 Banksville Rd.,Pittsburgh,PA,15216 +-79.923099,40.43049,Murray Avenue - Pittsburgh PA (W),2345 Murray Ave.,Pittsburgh,PA,15217 +-79.919173,40.438038,Squirrel Hill - Pittsburgh PA (W),6304 Forbes Avenue,Pittsburgh,PA,15217 +-79.996777,40.440513,OMNI William Penn - Pittsburgh PA (W),530 William Penn Place,Pittsburgh,PA,15219 +-79.995221,40.441532,U.S. Steel Tower - Pittsburgh PA (W),600 Grant Street,Pittsburgh,PA,15219 +-79.992441,40.43976,Pittsburgh Marriott City Ctr. Lobby - Pittsburgh PA,112 Washington Pl,Pittsburgh,PA,15219 +-80.065857,40.392536,Mt. Lebanon (Greentree) - Pittsburgh PA (W),1717 Cochran Road,Pittsburgh,PA,15220 +-80.0455,40.420137,"Greentree - Pittsburgh PA (D, W)",971 Greentree Road,Pittsburgh,PA,15220 +-80.02116,40.529789,One Oliver Plaza - Pittsburgh PA (W),210 Sixth Avenue,Pittsburgh,PA,15222 +-80.002729,40.437626,Point Park University - Conestoga - Pittsburgh PA,7 Wood Street,Pittsburgh,PA,15222 +-80.002209,40.440208,Market Square - Pittsburgh PA (W),7 Market Square,Pittsburgh,PA,15222 +-80.002175,40.442694,Sixth St. - Pittsburgh PA (W),202 Sixth Street,Pittsburgh,PA,15222 +-79.947532,40.461189,Bloomfield/Liberty Ave. - Pittsburgh PA (W),4765 Liberty Avenue,Pittsburgh,PA,15224 +-79.939749,40.456675,Liberty & Baum - Pittsburgh PA (W),5310 Liberty Avenue,Pittsburgh,PA,15224 +-80.053217,40.347957,Galleria at Mt. Lebanon - Pittsburgh PA (W),1500 Washington Road,Pittsburgh,PA,15228 +-79.934871,40.451095,Shady Side - Pittsburgh PA (W),730 Copeland St.,Pittsburgh,PA,15232 +-79.812017,40.429973,Monroeville - Pittsburgh PA (W),3460 William Penn Highway,Pittsburgh,PA,15235 +-80.0351,40.55,Target Mount Nebo T-2077 - Pittsburgh PA,1279 Camp Horne Rd.,Pittsburgh,PA,15237 +-80.009365,40.50476,McKnight - Siebert - Pittsburgh PA (W),4885 McKnight Road,Pittsburgh,PA,15237 +-80.006561,40.522657,Target Pittsburgh/North Hills T-220 - Pittsburgh PA,4801 McKnight Rd.,Pittsburgh,PA,15237 +-79.842611,40.535425,Target Harmar T-2385 - Pittsburgh PA,2261 Freeport Rd.,Pittsburgh,PA,15238 +-79.887958,40.48677,Giant Eagle Mkt-Pittsburgh #72 - Pittsburgh PA,910 Freeport Rd.,Pittsburgh,PA,15238 +-80.184494,40.450737,Robinson Lafayette Plaza - Pittsburgh PA (W),225 Summit Park Drive,Pittsburgh,PA,15275 +-79.993069,40.437844,Duquesne University - Student Ctr. - Pittsburgh PA,600 Forbes Ave.,Pittsburgh,PA,15282 +-80.255427,40.24945,Giant Eagle Mkt-Washington #39 - Washington PA,331 Washington Rd.,Washington,PA,15301 +-80.232895,40.1814,"Washington PA - Washington Township PA (D, W)",110 Trinity Point Drive,Washington Township,PA,15301 +-80.173483,40.263131,"Canonsburg - Canonsburg PA (D, W)",111 Cavasina Dr.,Canonsburg,PA,15317 +-80.128549,40.269832,Peters Township - McMurray PA (W),4080 Washington Road,McMurray,PA,15317 +-80.08599,40.28008,McMurray - McMurray PA (D),465 Valleybrook Rd.,McMurray,PA,15317 +-79.755914,39.908045,Target Uniontown T-2184 - Uniontown PA,120 Matthew Dr,Uniontown,PA,15401 +-79.115749,40.027023,South Somerset Travel Plaza - Somerset PA,Pennsylvania Turnpike,Somerset,PA,15501 +-79.115105,40.027,PA N.Somerset Travel Plaza - Somerset PA,exit 110 Westbound milepost 112.3: 179,Somerset,PA,15501 +-79.078031,40.01739,"Somerset PA - Somerset PA (D, W)",1033 North Center Avenue,Somerset,PA,15501 +-78.5304,39.9985,PA Tpk South Midway TP - Bedford PA,PA Turnpike Eastbound MP 147.3: exit 146,Bedford,PA,15522 +-78.528659,39.984418,North Midway Travel Plaza - Bedford PA,Pennsylvania Turnpike,Bedford,PA,15522 +-78.24657,39.998962,"Breezewood - Breezewood PA (D, W)",16268 Lincoln Highway,Breezewood,PA,15533 +-79.5667,40.3028,"Greengate Centre - Greensburg PA (D, W)",2540 Greengate Centre Circle,Greensburg,PA,15601 +-79.691198,40.320209,Target Irwin T-2114 - North Huntingdon PA,8931 Rte 30,North Huntingdon,PA,15642 +-79.613106,40.2266,PA New Stanton Travel Plaza - New Stanton PA,PA turnpike Westbound Mile marker 77.6,New Stanton,PA,15672 +-79.178695,40.609244,"Indiana Commons - Indiana PA (D, W)",2125 Oakland Ave.,Indiana,PA,15701 +-79.15865,40.614957,IUPA - Folger Hall - Indiana PA,599 Pratt Dr,Indiana,PA,15705 +-78.8622,40.2889,Johnstown - Johnstown PA,109 Town Centre Drive,Johnstown,PA,15904 +-80.104613,40.698524,Giant Eagle Mkt-Cranberry Twp. #665 - Cranberry Township PA,20111 Hwy. 19,Cranberry Township,PA,16066 +-80.10712,40.684889,"Freedom Road - Cranberry Township PA (D, W)",1302 FREEDOM RD,Cranberry Township,PA,16066 +-80.143227,40.668061,Cranberry Commons - Cranberry Township PA (W),1713 Rte 228,Cranberry Township,PA,16066 +-80.447971,41.233422,Hermitage Square - Hermitage PA (D),3342 East State Street,Hermitage,PA,16148 +-79.380378,41.211235,Clarion University of PA - Chandler - Clarion PA,840 Wood Street,Clarion,PA,16214 +-80.085894,42.130391,State Street - Erie - Erie PA (W),502 State Street,Erie,PA,16501 +-80.098443,42.072631,Millcreek Mall - Erie PA (W),5800 Peach Street,Erie,PA,16507 +-80.103294,42.0652,"Millcreek Plaza - Erie PA (D, W)",350 Millcreek Plaza,Erie,PA,16565 +-78.090156,40.060497,Sideling Hill Travel Plaza - Waterfall PA,3744 N. Hess Rd.,Waterfall,PA,16689 +-77.863146,40.793267,State College - State College PA (W),232 West College Avenue,State College,PA,16801 +-77.856234,40.797391,Centre Court State College - State College PA (W),141 S. Garner Street,State College,PA,16801 +-77.906205,40.809197,"N. Atherton State College - State College PA (D, W)",2030 North Atherton Street,State College,PA,16803 +-76.934916,40.238782,Camp Hill Trindle Rd. - Camp Hill PA (W),3200 Trindle Road,Camp Hill,PA,17011 +-76.9302,40.2225,Capital City Mall - Camp Hill PA (W),3981 Capital City Mall Drive,Camp Hill,PA,17011 +-77.1638,40.1901,"Carlisle Crossing - Carlisle PA (D, W)",266 Westminster Drive,Carlisle,PA,17013 +-77.157859,40.196212,Target Carlisle T-2099 - Carlisle PA,246 Westminster Dr,Carlisle,PA,17013 +-76.671361,40.266099,Penn State Hershey Medical Ctr. Main - Hershey PA,600 Centerview Dr,Hershey,PA,17033 +-76.64683,40.29571,Hershey PA - Hershey PA (W),69B Outlet Square,Hershey,PA,17033 +-76.5394,40.22,PA Lawn Travel plaza - Lawn PA,Exit 266 Westbound Milepost 258.8,Lawn,PA,17041 +-77.010573,40.246637,Target Mechanicsburg T-2202 - Mechanicsburg PA,6440 Carlisle Pike,Mechanicsburg,PA,17050 +-76.78938,40.21638,PA Highspire Travel Plaza - Highspire PA,Milepost 247.4 E. Pennsylvania Tpke,Highspire,PA,17057 +-76.771,40.1997,MDT B3 - Middletown PA (A),One Terminal Drive,Middletown,PA,17057 +-76.881264,40.260295,Whitaker Cultural Center - Harrisburg PA,222 Market St.,Harrisburg,PA,17101 +-76.824665,40.278266,Union Square PA - Harrisburg PA (W),3901 Union Deposit Road,Harrisburg,PA,17109 +-76.800377,40.312646,Harrisburg Route 22 - Lower Paxton PA (W),5116 A Jonestown Road,Lower Paxton,PA,17109 +-76.828887,40.254408,"Paxton Street - Harrisburg PA - Harrisburg PA (D, W)",3462 Paxton Street,Harrisburg,PA,17111 +-76.797295,40.2494,Target - Harrisburg T-2186 - Harrisburg PA,4600 High Pointe Blvd.,Harrisburg,PA,17111 +-76.8633,40.2937,Harrisburg Brindle Road - Harrisburg PA (W),2545 Brindle Drive,Harrisburg,PA,17112 +-77.64216,39.947083,Target Chambersburg T-2241 - Chambersburg PA,913 Norland Ave.,Chambersburg,PA,17201 +-77.63972,39.929996,Chambersburg - Chambersburg PA (W),1098 East Lincoln Highway,Chambersburg,PA,17201 +-77.52193,40.057636,Shippensburg University - Lehman Li - Shippensburg PA,1871 Old Main Drive Ezra Lehman Memoria,Shippensburg,PA,17257 +-76.960623,39.769562,"South Hanover - Hanover PA (D, W)",1450 Baltimore Street,Hanover,PA,17331 +-76.67007,39.775555,"Shrewsbury Square - Shrewsbury PA (D, W)",14605 Mt. Airy Road,Shrewsbury,PA,17361 +-76.778125,39.949972,York Marketplace - York PA (W),2521 East Market Street,York,PA,17402 +-76.682268,39.911516,Olde Tollgate Village - York PA (W),2599 South Queen St.,York,PA,17402 +-76.704609,39.942243,Randolph Park - York PA (W),1722 South Queen St.,York,PA,17403 +-76.77958,39.966316,Target York West T-1875 - York PA,2250 York Crossing Dr,York,PA,17404 +-76.01769,40.1966,Bowmansville Travel Plaza - Bowmansville PA,Pennsylvania Turnpike E-MileMarker 289.9,Bowmansville,PA,17507 +-76.30474,40.130225,"Lititz PA - Lititz PA (D, W)",988-A Lititz Pike,Lititz,PA,17543 +-76.33722,40.06916,Park Center - Lancaster PA,142 Park City Center,Lancaster,PA,17601 +-76.323085,40.075057,"Fruitville Pike - Lancaster PA (D, W)",1950 Fruitville Pike,Lancaster,PA,17601 +-76.22322,40.027512,"Lancaster - Lancaster PA (D, W)",2208 Lincoln Highway East,Lancaster,PA,17601 +-76.2298,40.0362,Target Lancaster T-2072 - Lancaster PA,2385 Covered Bridge Dr,Lancaster,PA,17602 +-76.339778,40.038265,Stone Mill Plaza - Lancaster PA (W),1360 Columbia Ave.,Lancaster,PA,17603 +-76.996789,41.241234,Williamsport PA - Williamsport PA,154 Academy St.,Williamsport,PA,17701 +-77.457414,41.136018,Lock Haven University - Bentley Hal - Lock Haven PA,401 North Fairview Street,Lock Haven,PA,17745 +-76.832626,41.243749,Target Williamsport T-2437 - Muncy PA,170 S. Lycoming Mall Rd.,Muncy,PA,17756 +-76.450849,41.005059,Bloomsburg University of PA - Andru - Bloomsburg PA,400 East Second Street,Bloomsburg,PA,17815 +-76.8716,40.8235,"Selinsgrove PA - Selinsgrove PA (D, W)",105 Marketplace Blvd.,Selinsgrove,PA,17870 +-76.864542,40.79266,Target Selinsgrove T-2439 - Selinsgrove PA,501 Market Place Blvd.,Selinsgrove,PA,17870 +-75.416916,40.656284,"Avenue C - Bethlehem PA (D, W)",3209 Schoenersville Road,Bethlehem,PA,18017 +-75.4133,40.5441,Shops at Saucon Valley - Lehigh Valley PA,2900 Center Valley Parkway,Lehigh Valley,PA,18034 +-75.2841,40.7161,Easton - Easton PA (W),3712 Easton Nazareth Highway,Easton,PA,18045 +-75.2694,40.6867,Target Lower Nazareth T-2536 - Easton PA,3835 Dryland Way,Easton,PA,18045 +-75.48327,40.630276,Lehigh Valley Mall - Whitehall PA (W),250 Lehigh Valley Mall,Whitehall,PA,18052 +-75.492456,40.55432,"South Mall - Allentown PA (D, W)",3300 Lehigh Street,Allentown,PA,18103 +-75.54704,40.592343,"Tilghman St. - Allentown PA (D, W)",4025 W. Tilghman Street,Allentown,PA,18104 +-75.58849,40.573,PA Allentown Plaza - Allentown PA,PA turnpiek MM 55.9,Allentown,PA,18106 +-75.4424,40.6452,Target Hanover Township T-2399 - Allentown PA,912Airport Center Dr,Allentown,PA,18109 +-75.345505,41.0761,Great Wolf Lodge - Lobby - Scotrun PA,1 Great Wolf Drive (off Rte. 611 North),Scotrun,PA,18355 +-75.194969,40.985127,Downtown Stroudsburg PA - Stroudsburg PA,745 Main Street,Stroudsburg,PA,18360 +-74.445,39.3516,Tropicana Food Court - Atlantic City NJ,S Brighton Ave. & Boardwalk,Atlantic City,NJ,18401 +-74.418414,39.3617,Showboat Casino Elevator Lobby - Atlantic City NJ,801 Boardwalk,Atlantic City,NJ,18401 +-75.68549,41.47871,Clarks Summit - Clark Summit PA,1131 Northern Blvd.,Clark Summit,PA,18411 +-75.667658,41.408383,The Mall at Steamtown - Scranton PA (W),300 Lackawanna Ave.,Scranton,PA,18503 +-75.688095,41.3488,The Shoppes at Montage - Moosic PA (W),1011 Shoppes Blvd.,Moosic,PA,18507 +-75.6576,41.4063,University of Scranton - Student Un - Scranton PA,Monroe & Linden Streets,Scranton,PA,18510 +-75.636879,41.467142,"Dickson City - Dickson City PA (D, W)",1152 Commerce Blvd.,Dickson City,PA,18519 +-75.884705,41.2194,"Wilkes-Barre Marketplace - Wilkes-Barre PA (D, W)",2030 Wilkes Barre Township Marketplace,Wilkes-Barre,PA,18702 +-75.131314,40.324295,Genuardi-Doylestown #921 - Doylestown PA,73 Old Dublin Pike,Doylestown,PA,18901 +-75.130724,40.321994,"North Doylestown - Doylestown PA (D, W)",498 North Main Street,Doylestown,PA,18901 +-75.130582,40.310156,Doylestown-Rte. 611 & Main - Doylestown PA (W),10 North Main Street,Doylestown,PA,18901 +-75.127562,40.275827,South Doylestown - Doylestown PA (W),1745 South Easton Road,Doylestown,PA,18901 +-75.228306,40.265762,Genuardis-Chalfont #3022 - Chalfont PA,4275 County Line Rd.,Chalfont,PA,18914 +-75.086539,40.260979,Genuardi - Jamison #3037 - Jamison PA,2395 York Rd.,Jamison,PA,18929 +-75.243675,40.245877,"Montgomeryville - Montgomeryville PA (D, W)",738 Bethlehem Pike,Montgomeryville,PA,18936 +-74.95133,40.364537,New Hope - New Hope PA (W),4A East Bridge Street,New Hope,PA,18938 +-74.94183,40.23506,Genuardis - Newtown #3020 - Newtown PA,2890 South Eagle Road,Newtown,PA,18940 +-74.936935,40.22788,Newtown - Newtown PA (W),100 South State Street,Newtown,PA,18940 +-75.368147,40.4594,Target Richlandtown (Quakertown) T- - Quakertown PA,610 N. West End Blvd.,Quakertown,PA,18951 +-75.361185,40.447059,"Quakertown - Quakertown PA (D, W)",262 North Westend Boulevard,Quakertown,PA,18951 +-75.043697,40.174422,Upper Southampton - Upper Southampton Township PA (W),707 Street Road,Upper Southampton Township,PA,18966 +-75.099762,40.206647,Warminster - Warminster PA (W),601 York Road,Warminster,PA,18974 +-75.139895,40.223457,Genuardi - Warrington #651 - Warrington PA,389 Easton Rd.,Warrington,PA,18976 +-75.134528,40.121751,Genuardi-Roslyn #3035 - Roslyn PA,2350 Susquehanna Rd.,Roslyn,PA,19001 +-75.179794,40.178706,Maple Glen - Maple Glen PA (W),655 Welsh Road,Maple Glen,PA,19002 +-75.288421,40.008583,Suburban Square - Ardmore PA (W),41 St. James Place,Ardmore,PA,19003 +-75.240127,40.005426,Bala Cynwyd - Bala Cynwyd PA (W),138 Montogomery Ave.,Bala Cynwyd,PA,19004 +-75.093619,40.086284,Genuardi-Huntingdon Valley #4014 - Huntingdon Valley PA,737 Huntingdon Pike,Huntingdon Valley,PA,19006 +-75.072233,40.171587,"Huntingdon Valley - Huntingdon Valley PA (D, W)",2096 County Line Road,Huntingdon Valley,PA,19006 +-75.356893,39.981131,Broomall - Broomall PA (W),2500 West Chester Pike,Broomall,PA,19008 +-75.354502,39.957792,Lawrence Park - Broomall PA (W),1903 Sproul Rd.,Broomall,PA,19008 +-75.316453,40.02055,Bryn Mawr - Bryn Mawr PA (W),766 Lancaster Ave.,Bryn Mawr,PA,19010 +-75.154826,40.072195,Target Cheltenham - T-2527 - Cheltenham PA,2385 Cheltenham Ave.,Cheltenham,PA,19012 +-75.168274,40.14181,Dresher - Dresher PA (W),1401 Virginia Drive,Dresher,PA,19025 +-75.2139,40.109579,Genuardis-Flourtown #3012 - Flourtown PA,1844 Bethlehem Pike,Flourtown,PA,19031 +-75.213078,40.103802,Flourtown - Flourtown PA (W),1458 Bethlehem Pike,Flourtown,PA,19031 +-75.125885,40.100886,Jenkintown - Jenkintown PA (W),746 Old York Road,Jenkintown,PA,19046 +-74.907682,40.178924,Genuardi-Langhorne #32 - Langhorne PA,168 N. Flowers Mill Rd.,Langhorne,PA,19047 +-74.881605,40.178402,Oxford Valley Mall - Langhorne PA (W),2300 E. Lincoln Hwy.,Langhorne,PA,19047 +-74.880243,40.178644,Target Langhorne T-1135 - Langhorne PA,2331 E. Lincoln Hwy.,Langhorne,PA,19047 +-75.006635,40.153152,Feasterville - Feasterville PA (W),160 East Street Road,Feasterville,PA,19053 +-74.982387,40.14989,Travel Plaza-Milepost 351.9 - Trevose PA,Between 28&29 Westbound Milepost 351.9,Trevose,PA,19053 +-74.97111,40.1367,"Neshaminy - Trevose PA (D, W)",3619 Horizon Blvd.,Trevose,PA,19053 +-75.382017,39.915799,Media - PA - Media PA (W),443 East Baltimore Pike,Media,PA,19063 +-75.349538,39.913576,Target Springfield West T-2312 - Springfield PA,1200 Baltimore Pike,Springfield,PA,19064 +-75.344292,39.914066,Baltimore Pike Springfield - Springfield PA (W),1100 Baltimore Pike,Springfield,PA,19064 +-75.339577,39.915116,Genuardi-Springfield #3029 - Springfield PA,950 Baltimore Pike,Springfield,PA,19064 +-75.237262,39.996176,St. Josephs University - Merion Station PA,203 City Ave.,Merion Station,PA,19066 +-74.870139,40.197633,Oxford Oaks - Yardley PA (W),1621 Big Oak Road,Yardley,PA,19067 +-74.839047,40.242514,Yardley - Yardley PA (W),1 North Main Street,Yardley,PA,19067 +-75.442114,39.975158, Edgmont - Edgemont PA (W),4895 West Chester Pike,Edgemont,PA,19073 +-75.393178,39.985139,Newtown Square II - Newtown Square PA (W),3512 West Chester Pike,Newtown Square,PA,19073 +-75.31909,39.972492,Havertown - Havertown PA (W),1260 Westchester Pike,Havertown,PA,19083 +-75.284388,39.960169,Upper Darby-Bond SC - Upper Darby PA (W),1891 South State Road,Upper Darby,PA,19083 +-75.384879,40.043883,Wayne - Wayne PA (W),218 East Lancaster Avenue,Wayne,PA,19087 +-75.366561,40.039805,Genuardi - Wayne/St David's #1027 - Wayne PA,550 E. Lancaster Ave.,Wayne,PA,19087 +-75.120586,40.143372,Willow Grove Mall - Willow Grove PA,2500 Moreland Rd.,Willow Grove,PA,19090 +-75.27394,40.002149,Genuardi-Wynnewood #3038 - Wynnewood PA,50 E. Wynnewood Rd.,Wynnewood,PA,19096 +-75.167302,39.949696,16th & Walnut - Philadelphia PA (W),1528 Walnut Street,Philadelphia,PA,19102 +-75.166534,39.952739,Center Square - Philadelphia PA (W),1500 Market Street,Philadelphia,PA,19102 +-75.166388,39.947681,15th & Latimer - Philadelphia PA (W),254 South 15th Street,Philadelphia,PA,19102 +-75.164904,39.949064,The Bellevue - Philadelphia PA (W),200 S. Broad St.,Philadelphia,PA,19102 +-75.172449,39.953095,20th & Market - Philadelphia PA (W),1900 Market Street,Philadelphia,PA,19103 +-75.171739,39.952054,19th & Chestnut - Philadelphia PA (W),1839 Chestnut Street,Philadelphia,PA,19103 +-75.169868,39.952961,10 Penn Center - Philadelphia PA (W),1801 Market St.,Philadelphia,PA,19103 +-75.167019,39.954836,16th & Arch - Philadelphia PA (W),1600 Arch Street,Philadelphia,PA,19103 +-75.164588,39.945664,Broad & Pine Streets - Philadelphia PA (W),337-341 South Broad Street,Philadelphia,PA,19103 +-75.199316,39.952538,University of Pennsylvania - 1920 C - Philadelphia PA,3800 LOCUST WALK,Philadelphia,PA,19104 +-75.1989,39.9617,Drexel University - Pearlstein Buil - Philadelphia PA,Market Street (between 32nd & 33rd Stree,Philadelphia,PA,19104 +-75.193068,39.954513,34th & Chestnut - Philadelphia PA (W),3421 Chestnut St.,Philadelphia,PA,19104 +-75.193026,39.952998,Shopps @ Penn (Tuscany) - Philadelphia PA,3401 WALNUT ST,Philadelphia,PA,19104 +-75.157433,39.950073,10th & Chestnut - Philadelphia PA (W),1001-1005 Chestnut St.,Philadelphia,PA,19106 +-75.145342,39.951584,3rd & Arch - Philadelphia PA (W),57-63 North Third Street,Philadelphia,PA,19106 +-75.161817,39.95062,Macy's Center City - Philadelphia PA (W),1301 Chestnut Street,Philadelphia,PA,19107 +-75.160858,39.949316,12th & Walunt - Philadelphia PA (W),1201 Walnut St.,Philadelphia,PA,19107 +-75.160196,39.95176,1201 Market - Philadelphia PA (W),1201 Market Street,Philadelphia,PA,19107 +-75.15517,39.951345,The Gallery at Market East - Philadelphia PA (W),901 Market St.,Philadelphia,PA,19107 +-75.153224,39.947962,8th & Walnut - Philadelphia PA (W),200 Washington Square West,Philadelphia,PA,19107 +-75.002153,40.074503,Grant & Academy - Philadelphia PA (D),9430 Academy Road,Philadelphia,PA,19114 +-75.015571,40.095459,Red Lion Rd. & Roosevelt Blvd. -Phila - Philadelphia PA (D),10000 Roosevelt Blvd.,Philadelphia,PA,19116 +-75.20661,40.076517,Germantown Ave. - Philadelphia PA (W),8515 Germantown Avenue,Philadelphia,PA,19118 +-75.159662,39.952775,Temple U Bell Tech Ctr. - Philadelphia PA,1801-33 N. 12th Street,Philadelphia,PA,19122 +-75.225204,40.026336,Manayunk - Manayunk PA (W),4415 Main Street,Manayunk,PA,19127 +-75.214249,40.03209,Roxborough Ridge Commons - Philadelphia PA (W),6024 Ridge Avenue,Philadelphia,PA,19128 +-75.171525,39.96086,Callowhill Street - Philadelphia PA (W),1945 Callowhill Street,Philadelphia,PA,19130 +-75.235268,39.997074,City Avenue & Monument - Philadelphia PA (W),4040 City Avenue,Philadelphia,PA,19131 +-75.215133,40.001966,Target Philadelphia T-2124 - Philadelphia PA,4000 Monument Rd.,Philadelphia,PA,19131 +-75.090199,39.990215,Target Philadelphia/BridesbrgT-2075 - Philadelphia PA,2701 Castor Ave.,Philadelphia,PA,19134 +-75.157083,39.942592,9th & South - Philadelphia PA (W),600 9th Street,Philadelphia,PA,19147 +-75.149021,39.941746,4th & South - Philadelphia PA (W),347 South Street,Philadelphia,PA,19147 +-75.169693,39.922366,Broad & Jackson - Philadelphia PA (W),2201-2219 South Broad Street,Philadelphia,PA,19148 +-75.05818,40.049759,Target Phila-Cottman T-2418 - Philadelphia PA,7400 Bustleton Avenue,Philadelphia,PA,19152 +-75.483162,40.041979,Paoli - Paoli PA (W),15 East Lancaster Avenue,Paoli,PA,19301 +-75.690723,40.084246,Lionville - Lionville PA (W),801 N. Pottstown Pike,Lionville,PA,19341 +-75.664535,40.055328,Target Uwchlan Township T-2496 - Exton PA,180 Eagleview Boulevard,Exton,PA,19341 +-75.625974,40.033007,Exton Square Mall - Exton PA (W),258 Exton Square Pkwy.,Exton,PA,19341 +-75.62128,40.028706,"Exton PA - Exton PA (D, W)",300 E. Lincoln Highway,Exton,PA,19341 +-75.544276,39.86659,Chadds Ford - Glen Mills PA (W),511 Wilmington - W. Chester Pike,Glen Mills,PA,19342 +-75.50671,39.895,Target Concordville T-2172 - Glen Mills PA,600 Hatton Dr,Glen Mills,PA,19342 +-75.679678,39.863031,Kennett Square - Kennett Square PA (W),879 Baltimore Pike,Kennett Square,PA,19348 +-75.59431,39.9881,Gay Street & High Street - West Chester PA,2 West Gay Gay Street,West Chester,PA,19380 +-75.576679,39.968269,West Chester & Five Points - West Chester PA (W),1081 B West Chester Pike,West Chester,PA,19380 +-75.570415,39.998183,Genuardi-West Chester #0648 - West Chester PA,1375 Boot Rd.,West Chester,PA,19380 +-75.57139,39.912632,Dilworthtown - Westchester PA (W),1353 Wilmington Pike,Westchester,PA,19382 +-75.597397,39.953175,West Chester University - West Chester PA,700 High St.,West Chester,PA,19383 +-75.8414,39.8261,"Shoppes at Jenner's Village - West Grove PA (D, W)",35 Jenners Village Court,West Grove,PA,19390 +-75.4251,40.0704,PA Valley Forge Travel Plaza - Southeastern PA,Exit 326 Eastbound Milepost 324.6,Southeastern,PA,19399 +-75.313735,40.14267,Genuardis-Norristown #1003 - Norristown PA,25 W. Germantown Pike,Norristown,PA,19401 +-75.313516,40.142335,E. Norriton - East Norriton PA (W),28 Germantown Pike,East Norriton,PA,19401 +-75.403676,40.130637,Trooper - Norristown PA (W),2630 Egypt Lane,Norristown,PA,19403 +-75.391212,40.085727,King Of Prussia 2 - King of Prussia PA (W),160 N. Gulph Rd.,King of Prussia,PA,19406 +-75.385826,40.086758,The Court at King of Prussia Mall - King of Prussia PA (W),690 West Dekalb Pike,King of Prussia,PA,19406 +-75.364927,40.094149,King of Prussia - King of Prussia PA (W),140 W. Dekalb Pike,King of Prussia,PA,19406 +-75.357575,40.087077,Genuardis-King of Prussia #1007 - King of Prussia PA,310 S. Henderson Rd.,King of Prussia,PA,19406 +-75.299984,40.09834,Genuardi-Conshohocken - Conshohocken PA,200 W. ridge Pike,Conshohocken,PA,19428 +-75.29913,40.097864,Ridge & Butler - Conshohocken PA (W),2 East Ridge Pike,Conshohocken,PA,19428 +-75.294288,40.247678,Lansdale - Lansdale PA (W),884 West Main St.,Lansdale,PA,19446 +-75.279177,40.178203,North Wales - North Wales PA (D),271 Dekalb Pike,North Wales,PA,19454 +-75.242551,40.236821,Montgomery Mall - North Wales PA (W),281 Montgomery Mall,North Wales,PA,19454 +-75.282798,40.107441,Plymouth Meeting - Plymouth Meeting PA (W),413 West Germantown Pike,Plymouth Meeting,PA,19462 +-75.65259,40.26684,Target W. Pottsgrove Twp. T-2548 - Stowe PA,Upland Square Dr. #100,Stowe,PA,19464 +-75.559271,40.230056,Philadelphia Premium Outlets - Pottstown PA (W),18 Lightcap Road,Pottstown,PA,19464 +-75.50005,40.215106,Limerick Crossing S.C. - Limerick PA (D),5 West Ridge Pike,Limerick,PA,19468 +-75.497932,40.213785,Target Providence T-2131 - Royersford PA,1824 E. Ridge Pike,Royersford,PA,19468 +-75.2277,40.1855,Springhouse - Springhouse PA (W),1111 Bethlehem Pike Box 508,Springhouse,PA,19477 +-75.8048,40.1595,Brandywine/Peter Camiel Travel Plza - Elverson PA,PA Turnpike Westbound,Elverson,PA,19520 +-75.927578,40.396587,Target Muhlengerg Township T-2302 - Temple PA,4220 N. 5th St. Hwy.,Temple,PA,19560 +-75.861091,40.306533,Target Exeter Township T-2529 - Reading PA,4599 Perkiomen Ave.,Reading,PA,19606 +-75.978265,40.33934,"Wyomissing - Wyomissing PA (D, W)",2113 State Hill Road,Wyomissing,PA,19610 +-75.75012,39.6028,Safeway-Newark #4030 - Newark DE,2400 Peoples Plaza,Newark,DE,19702 +-75.748063,39.603977,"Glasgow - Newark DE (D, W)",2470 Pulaski Highway,Newark,DE,19702 +-75.690501,39.662651,Delaware House Travel Plaza - Newark DE,530 John F Kennedy Memorial Hwy.,Newark,DE,19702 +-75.65074,39.677334,Christiana Mall (DE) - Newark DE (W),430 Christiana Road,Newark,DE,19702 +-75.698985,39.450092,Middletown Crossing DE - Middletown DE (D),454 East Main Street,Middletown,DE,19709 +-75.747216,39.683204,Newark - Newark DE,141 East Main Street,Newark,DE,19711 +-75.498572,39.76768,Target Brandywine T-1146 - Wilmington DE,1050 Brandywine Pkwy,Wilmington,DE,19803 +-75.648297,39.728392,Kirkwood Highway (DE) - Wilmington DE (W),3926 Kirkwood Highway,Wilmington,DE,19808 +-75.505073,39.801546,Marsh & Silverside - Wilmington DE (W),1737 Marsh Road,Wilmington,DE,19810 +-75.500467,39.826548,Safeway-Wilmington #3040 - Wilmington DE,2522 Foulk Rd.,Wilmington,DE,19810 +-75.5064,39.1571,Safeway-Dover #1763 - Dover DE,190 John Hunn Brown,Dover,DE,19901 +-75.1035,38.5462,Giant-Millville #389 - Millville DE,220 Town Center Dr,Millville,DE,19967 +-75.1409,38.73612,Rehoboth - Rehoboth DE (W),4561 Highway One,Rehoboth,DE,19971 +-75.08851,38.715415,Safeway-Rehoboth Beach #2706 - Rehoboth Beach DE,4396 SR-1,Rehoboth Beach,DE,19971 +-75.086166,38.715685,301 Rehoboth Ave. - Rehoboth Beach DE (W),301 Rehoboth Ave.,Rehoboth Beach,DE,19971 +-75.114834,38.469131,Harris Teeter-Selbyville #327 - Selbyville DE,31221 Americana Parkway,Selbyville,DE,19975 +-77.041446,38.849329,DCA - Wash Nat'l-Reagan-Level 1 - Alexandria VA (A),Washington NationalAirport,Alexandria,VA,20001 +-77.026563,38.899416,Grand Hyatt Washington - Washington DC,1000 H St. NW,Washington,DC,20001 +-77.02513,38.902145,901 New York Avenue NW - Washington DC (W),901 New York Avenue NW,Washington,DC,20001 +-77.023923,38.901788,Renaissance DC Hotel Lobby - Washington DC,999 9th St. NW,Washington,DC,20001 +-77.023651,38.902968,Centerplate-DC Convention Center - Washington DC,801 Mt Vernon Ave.,Washington,DC,20001 +-77.021938,38.899824,7th & H - Washington DC (W),800 7th Street NW,Washington,DC,20001 +-77.021893,38.895626,7th & E. - Washington DC (W),443 7th Street NW,Washington,DC,20001 +-77.021547,38.919741,Howard University (UCO) - Washington DC (W),2225 Georgia Avenue NW,Washington,DC,20001 +-77.018135,38.903143,Safeway-Washington #2737 - Washington DC,490 L St. NW,Washington,DC,20001 +-77.01188,38.89641,500 New Jersey Ave. - Washington DC (W),500 New Jersey Avenue NW,Washington,DC,20001 +-77.006195,38.897007,Union Station DC - Washington DC (W),50 Massachusetts Avenue Space T-16,Washington,DC,20002 +-76.980849,38.901156,Safeway-Washington #4270 - Washington DC,1601 Maryland Ave. NE,Washington,DC,20002 +-77.002191,38.886939,Capitol Hill DC - Washington DC (W),237 Pennsylvania Ave. SE,Washington,DC,20003 +-76.994996,38.883734,Eastern Market (UCO) - Washington DC (W),401 8th Street SE,Washington,DC,20003 +-76.986285,38.883464,Safeway - Washington #4205 - Washington DC,415 14th St. SE,Washington,DC,20003 +-77.031248,38.896579,JW Marriott Washington DC Lobby - Washington DC,1331 Pennsylvania Ave. NW,Washington,DC,20004 +-77.03006,38.896427,13th & Penn - Washington DC (W),1301 Pennsylvania Ave. NW,Washington,DC,20004 +-77.026618,38.896234,Lincoln Square - Washington DC (W),555 11th Street NW,Washington,DC,20004 +-77.033879,38.902535,15th & K - Washington DC (W),1455 K St. NW,Washington,DC,20005 +-77.033089,38.901606,15th & I Streets - Washington DC (W),901 15th Street NW,Washington,DC,20005 +-77.032968,38.909749,1429 P Street (UCO) - Washington DC (W),1425 P Street NW,Washington,DC,20005 +-77.032312,38.899781,1401 New York Ave. - Washington DC (W),1401 New York Avenue NW,Washington,DC,20005 +-77.031809,38.899238,14th Street - Washington DC (W),700 14th Street NW,Washington,DC,20005 +-77.027979,38.899333,Marriott at Metro Center - Washington DC,775 12th St. NW,Washington,DC,20005 +-77.021504,38.894562,Liberty Place - Washington DC (W),325 Seventh Street NW,Washington,DC,20005 +-77.031944,38.90257,Hamilton Crowne Plaza - Washington DC,14th St. NW & K St. NW,Washington,DC,20005 +-77.044203,38.900949,20th & Penn - Washington DC (W),1919 Pennsylvania Avenue NW,Washington,DC,20006 +-77.043919,38.902073,19th & K Street - Washington DC (W),1900 K St. NW,Washington,DC,20006 +-77.042276,38.901247,International Square - Washington DC (W),1825 I Street NW,Washington,DC,20006 +-77.041605,38.900272,801 18th Street - Washington DC (W),801 18th Street,Washington,DC,20006 +-77.033172,38.904151,1110 Vermont Ave. NW - Washington DC (W),1110 Vermont Ave. NW,Washington,DC,20006 +-77.023468,38.899015,9th & G - Washington DC (W),701 9th Street NW,Washington,DC,20006 +-76.980493,38.878431,1730 Pennsylvania Avenue - Washington DC (W),1730 Pennsylvania Avenue,Washington,DC,20006 +-77.095791,38.91756,Safeway - Washington #693 - Washington DC,4865 MacArthur Blvd. NW,Washington,DC,20007 +-77.071562,38.920283,2300 Wisconsin Ave. - Washington DC (W),2302 Wisconsin Ave. NW,Washington,DC,20007 +-77.067664,38.915122,Georgetown - Washington DC (W),1810 Wisconsin Avenue NW,Washington,DC,20007 +-77.061901,38.904908,3122 M Street - Washington DC (W),3122 M St. NW,Washington,DC,20007 +-76.963607,38.878387,Washington Harbour - Washington DC (W),3050 K Street,Washington,DC,20007 +-77.064453,38.944853,Van Ness - Washington DC (W),4250 Connecticut Ave. NW,Washington,DC,20008 +-77.055466,38.930254,National Zoo - Washington DC (W),3000 Connecticut Avenue NW,Washington,DC,20008 +-77.048426,38.90287,22nd & K Street - Washington DC (W),2175 K Street NW,Washington,DC,20009 +-77.044802,38.912199,Dupont North - Washington DC (W),1700 Connecticut Avenue NW,Washington,DC,20009 +-77.043046,38.92272,Adams Morgan - Washington DC (W),1801 Columbia Road NW,Washington,DC,20009 +-77.0371,38.916788,16th & U Street - Washington DC (W),1600 U Street NW,Washington,DC,20009 +-77.029065,38.916738,13th & U (UCO) - Washington DC (W),1250 U Street NW,Washington,DC,20009 +-77.033697,38.929614,Target Columbia HeightsT-2259 - Washington DC,3100 14th St. NW,Washington,DC,20010 +-77.032712,38.929544,Columbia Heights - Washington DC (W),3107 14th Street NW,Washington,DC,20010 +-77.026124,38.968659,Safeway-Wash DC #1276 - Washington DC,6500 Piney Branch Rd. NW,Washington,DC,20012 +-77.085464,38.960783,Chevy Chase Pavillion - Washington DC (W),5335 Wisconsin Ave. NW,Washington,DC,20015 +-77.074559,38.963113,Chevy Chase Circle - Washington DC (W),5500 Connecticut Avenue,Washington,DC,20015 +-77.102842,38.926656,5185 MacArthur Blvd. - Washington DC (W),5185 MacArthur Blvd.,Washington,DC,20016 +-77.095684,38.944565,Spring Valley - Washington DC (W),4820 Massachusetts Ave. NW,Washington,DC,20016 +-77.084843,38.933583,Foxhall Square - Washington DC (W),3301 New Mexico Ave. NW,Washington,DC,20016 +-77.079661,38.948279,4513 Wisconsin Ave./Tenley - Washington DC (W),4513 Wisconsin Avenue NW,Washington,DC,20016 +-77.073222,38.935104,Friendship Center - Washington DC (W),3430 Wisconsin Avenue NW,Washington,DC,20016 +-76.966338,38.859312,Safeway-Wash DC #1445 - Washington DC,2845 Alabama Ave. SE,Washington,DC,20020 +-77.029513,38.884423,The Portals - Washington DC (W),1201 Maryland Avenue SW,Washington,DC,20024 +-77.020898,38.886164,Capital Gallery - Washington DC (W),600 Maryland Avenue SW,Washington,DC,20024 +-77.019317,38.885557,6th & C Street SW - Washington DC (W),550 C Street SW,Washington,DC,20024 +-77.015834,38.88497,3rd & D - Washington DC (W),409 3rd Street SW,Washington,DC,20024 +-77.014106,38.845436,Bolling AFB - Commissary Mall - Bolling AFB DC,185 Chappie James Blvd. SW,Bolling AFB,DC,20032 +-77.043683,38.910556,Dupont Circle - Washington DC (W),1501 Connecticut Avenue NW,Washington,DC,20036 +-77.043426,38.905847,19th & M Street - Washington DC (W),1205 19th St. NW,Washington,DC,20036 +-77.041971,38.907654,1301 Connecticut Ave. - Washington DC (W),1301 Connecticut Avenue NW,Washington,DC,20036 +-77.039309,38.90294,Farragut Square - Washington DC (W),1001 Conneticut Ave. NW,Washington,DC,20036 +-77.036867,38.902202,16th & K - Washington DC (W),1600 K Street,Washington,DC,20036 +-77.040305,38.903695,1734 L Street - Washington DC (W),1734 'L' Street NW,Washington,DC,20036 +-77.051588,38.90542,24th & M Streets - Washington DC,2400 M Street NW,Washington,DC,20037 +-77.050792,38.901056,George Washington Univ Hospital - Washington DC,900 23rd St. NW,Washington,DC,20037 +-77.047121,38.905452,22nd & M St. NW - Washington DC,2109 M Street NW,Washington,DC,20037 +-77.046642,38.909667,21st & P Street - Washington DC (W),2101 P St. NW,Washington,DC,20037 +-77.047349,38.899488,Gelman Library - Washington DC (W),2130 H Street NW,Washington,DC,20052 +-77.04414,38.895988,20th & E. - Washington DC (W),1957 E. Street NW,Washington,DC,20052 +-77.07613,38.912007,Georgetown University - Leavey Cent - Washington DC,3800 Reservoir Road,Washington,DC,20057 +-76.999349,38.932127,The Catholic University of America - Washington DC,620 Michigan Ave. NE,Washington,DC,20064 +-77.54818,38.939163,Harris Teeter-Chantilly/Dulles S. #2 - Aldie VA,42015 Village Center Plaza,Aldie,VA,20105 +-77.53101,38.739864,Super Target Manassas West ST-2323 - Manassas VA,9900 Sowder Village Sq,Manassas,VA,20109 +-77.501312,38.774307,Manassas - Manassas VA (W),8329 Sudley Road,Manassas,VA,20109 +-77.45905,38.76309,Manassas Junction - Manassas VA (W),8809 Centerville Road,Manassas,VA,20110 +-77.451188,38.746879,Liberia Ave. - Manassas VA (D),9650 Liberia Avenue,Manassas,VA,20110 +-77.362817,38.679667,Hoadly Village - Manassas VA (W),12853 Galveston Court,Manassas,VA,20112 +-77.450834,38.853852,Sully Station - Centreville VA (W),5623 Stone Road,Centreville,VA,20120 +-77.437268,38.836265,Centrewood - Centreville VA (W),14155 Saint Germain Dr.,Centreville,VA,20122 +-77.411734,38.833281,Giant Landover-Clifton #744 - Clifton VA,5740 Union Mill Rd.,Clifton,VA,20124 +-77.56631,38.7501,Safeway-Bristow #2635 - Bristow VA,12821 Braemar Village Plaza,Bristow,VA,20136 +-77.5455,38.732193,Harris Teeter-Bristow # 313 - Bristow VA,10438 Bristow Center Dr,Bristow,VA,20136 +-77.501708,39.036707,Ashburn Farm S/C - Ashburn VA (W),43330 Junction Plaza,Ashburn,VA,20147 +-77.486,39.0411,Harris Teeter-Ashburn #100 - Ashburn VA,Rt. 7 7 Belmont Ridge Road,Ashburn,VA,20147 +-77.480028,39.069522,"Ashbrook Commons - Ashburn VA (D, W)",20035 Ashbrook Commons Plaza,Ashburn,VA,20147 +-77.47623,39.022434,Farmwell Road - Ashburn VA (W),44060 Pipeline Plaza,Ashburn,VA,20147 +-77.473555,39.044175,Ashburn Village - Ashburn VA (W),44110 Ashburn Village Blvd.,Ashburn,VA,20147 +-77.47136,39.059464,Harris Teeter-Ashburn #242 - Ashburn VA,20070 Ashbrook Commons Plaza,Ashburn,VA,20147 +-77.5083,39.02562,Safeway-Ashburn #2650 - Ashburn VA,43150 Broadlands Center Plaza,Ashburn,VA,20148 +-77.508297,39.025619,Broadlands - Ashburn VA (W),43150 Broadlands Center Plaza,Ashburn,VA,20148 +-77.445178,38.897705,Chantilly Crossing - Chantilly VA (W),14423 Chantilly Crossing Lane,Chantilly,VA,20151 +-77.513619,38.914978,South Riding - South Riding VA (W),43114 Peacock Market #140,South Riding,VA,20152 +-77.48209,38.9027,Harris Teeter-Chantilly #309 - Chantilly VA,25401 Eastern Marketplace Plaza,Chantilly,VA,20152 +-77.617905,38.8014,Super Target-Gainesville ST-1873 - Gainesville VA,13301 Whitney Dr,Gainesville,VA,20155 +-77.617,38.7995,Harris Teeter-Gainesville #251 - Gainesville VA,7910 Crescent Park Dr,Gainesville,VA,20155 +-77.610758,38.796114,Gainesville - Gainesville VA (W),7375 Atlas Walk Way,Gainesville,VA,20155 +-77.419092,38.992686,Safeway-Sterling #1759 - Sterling Park VA,22350 Sterling Rd.,Sterling Park,VA,20164 +-77.400204,39.026225,Target Sterling T-1009 - Sterling VA,46201 Potomac Run Plaza,Sterling,VA,20164 +-77.380553,39.01852,Sterling - Sterling VA (W),21800 Town Center Plaza,Sterling,VA,20164 +-77.4129,39.038901,"Countryside Marketplace - Sterling VA (D, W)",3 Pidgeon Hill Drive,Sterling,VA,20165 +-77.398017,39.034281,Cascade Marketplace - Sterling VA (W),21019-21 Southbank Street,Sterling,VA,20165 +-77.438936,39.008895,Target Sterling West T-2272 - Sterling VA,45130 Columbia Pl,Sterling,VA,20166 +-77.4338,38.9985,IAD - West Bag Claim - Sterling VA (A),44844 Autopilot Dr,Sterling,VA,20166 +-77.43369,38.9987,IAD - Dulles Conc B Post Sec News - Sterling VA (A),44844 Aviation Dr,Sterling,VA,20166 +-77.43369,38.9987,IAD - Dulles Concourse D-15 - Sterling VA (A),44844 Aviation Dr,Sterling,VA,20166 +-77.4336,38.9983,IAD - Dulles Conc C - Gate 7 RELO - Sterling VA (A),44844 Autopilot Dr,Sterling,VA,20166 +-77.4336,38.9983,IAD - Dulles Midfield Term. C-3 - Sterling VA (A),44844 Autopilot Dr,Sterling,VA,20166 +-77.4336,38.9983,IAD Term C - Gate 24 - Sterling VA (A),44844 Autopilot Dr,Sterling,VA,20166 +-77.423402,39.032286,Dulles Town Center - kiosk - Dulles VA,21100 Dulles Town Circle,Dulles,VA,20166 +-77.6413,38.8542,Giant-Haymarket #790 - Haymarket VA,5581 Merchants View Square,Haymarket,VA,20169 +-77.390655,38.955151,Worldgate Centre - Herndon VA (W),13035 A Worldgate Drive,Herndon,VA,20170 +-77.3752,38.9678,Safeway-Herndon #1689 - Herndon VA,Elden Street & Post Drive,Herndon,VA,20170 +-79.475421,37.370791,"Village Center at Dulles - Centerville VA (D, W)",2407 Centerville Rd. Ste. B,Centerville,VA,20171 +-77.406556,38.907917,Franklin Farms - Herndon VA (W),13340B Franklin Farms Rd.,Herndon,VA,20171 +-77.394752,38.950308,Woodland Park Crossing - Herndon VA (W),2309 Woodland Crossing Drive,Herndon,VA,20171 +-77.375537,38.928278,Fox Mill Center - Herndon VA (W),2523 John Milton Dr.,Herndon,VA,20171 +-77.552431,39.108973,Leesburg (Bellwood Commons) - Leesburg VA (W),531 East Market Street,Leesburg,VA,20175 +-77.539164,39.113544,Battlefield - Leesburg VA (W),1011 Edwards Ferry Rd. NE,Leesburg,VA,20176 +-77.535654,39.115687,Super Target-Leesburg ST-1874 - Leesburg VA,1200 Edwards Ferry Rd.,Leesburg,VA,20176 +-77.5307,39.1276,Leesburg Corner - Fd Ct - Leesburg VA,241 Fort Rd. NE,Leesburg,VA,20176 +-77.496133,39.080006,Lansdowne Town Center - Ashburn VA (W),19353 Promenade Drive,Ashburn,VA,20176 +-77.815506,38.7052,Harris Teeter - Warrenton #329 - Warrenton VA,530 Fletcher Ave.,Warrenton,VA,20186 +-77.796829,38.730244,Safeway-Warrenton #1801 - Warrenton VA,189 W. Lee Hwy.,Warrenton,VA,20186 +-77.819228,38.715082,"Warrenton - Warrenton VA (D, W)",6435 Lee Highway,Warrenton,VA,20187 +-77.796031,38.728994,"Warrenton Village - Warrenton VA (D, W)",127 West Lee Highway Suite 200,Warrenton,VA,20188 +-77.370404,38.955099,Target Reston T-1088 - Reston VA,12197 Sunset Hills Rd.,Reston,VA,20190 +-77.355992,38.958831,One Freedom Square - Reston VA (W),11951 Freedom Drive,Reston,VA,20190 +-77.347767,38.952365,Plaza America - Reston VA (W),11610-A Plaza America Dr,Reston,VA,20190 +-77.362697,38.935954,Safeway - Reston #1570 - Reston VA,2304 Hunters Woods Plaza,Reston,VA,20191 +-77.330081,38.938082,South Lakes - Reston VA (W),11170 South Lakes Dr,Reston,VA,20191 +-77.328839,38.939445,Safeway - Reston #0005 - Reston VA,11120 South Lakes Dr,Reston,VA,20191 +-77.349945,38.97672,Giant-Reston #747 - Reston VA,1450 Reston Pkwy,Reston,VA,20194 +-77.002778,38.875944,Navy Yard - Washington DC,1200 New Jersey Ave. SE,Washington,DC,20374 +-77.247223,39.203269,Giant-Germantown #362 - Germantown MD,20944 Frederick Rd.,Germantown,MD,20576 +-76.902998,38.602301,Safeway-Waldorf #105 - Waldorf MD,10 King Street,Waldorf,MD,20601 +-76.919485,38.623878,Safeway-Waldorf #2661 - Waldorf MD,11380 Plaza Drive,Waldorf,MD,20603 +-76.918144,38.629467,Target Waldorf T-1008 - Waldorf MD,3300 Western Pkwy,Waldorf,MD,20603 +-76.917376,38.628028,Waldorf - Waldorf MD (W),3053 Waldorf Market Place,Waldorf,MD,20603 +-77.017659,38.6638,Manokeek - Accokeek MD (W),7045 Berry Road,Accokeek,MD,20607 +-76.876044,38.669026,Safeway-Brandywine #2853 - Brandywine MD,15916 S. Crain Hwy.,Brandywine,MD,20613 +-76.875831,38.66799,Target Brandywine T-2394 - Brandywine MD,15922 S. Crain Hwy.,Brandywine,MD,20613 +-77.072603,38.629566,Safeway-Bryans Road #1344 - Indian Head MD,3129 Marshall Hall Rd.,Indian Head,MD,20616 +-76.983277,38.531468,Safeway-La Plata #1938 - La Plata MD,6615 Crain Hwy.,La Plata,MD,20646 +-76.983107,38.530311,La Plata Shopping Center - La Plata MD (D),6675 Crain Hwy.,La Plata,MD,20646 +-76.9791,38.543236,Target La Plata T-2133 - La Plata MD,60 Shining Willow Way,La Plata,MD,20646 +-76.435026,38.3654,Lusby Commons - Lusby MD (W),11738 Rousby Hall Road,Lusby,MD,20657 +-76.596801,38.554386,Prince Frederick - Prince Frederick MD (W),721 N. Prince Frederick Blvd.,Prince Frederick,MD,20678 +-76.594678,38.544772,Safeway-Prince Frederick #1731 - Prince Frederick MD,400 W. Dares Beach Rd.,Prince Frederick,MD,20678 +-76.867563,39.076848,The Centre at Laurel - Laurel MD (W),13600 Baltimore Avenue,Laurel,MD,20707 +-76.862453,39.084107,Safeway-Laurel #4868 - Laurel MD,14100 Baltimore Ave.,Laurel,MD,20707 +-76.851924,39.096446,Laurel - Laurel MD (W),929 Washington Blvd.,Laurel,MD,20707 +-76.79001,38.963886,Safeway-Bowie #2713 - Bowie MD,12410 Fairwood Prky,Bowie,MD,20715 +-76.732156,38.980266,Bowie - Bowie MD (W),15480 Annapolis Road,Bowie,MD,20715 +-76.731849,38.980379,Giant-Bowie #310 - Bowie MD,15500 Annapolis Rd.,Bowie,MD,20715 +-76.73761,38.947449,Safeway-Bowie #1804 - Bowie MD,4100 Northview Dr,Bowie,MD,20716 +-76.727609,38.931188,Bowie Town Center - Bowie MD (W),3924 Town Center Boulevard,Bowie,MD,20716 +-76.720494,38.95118,Target Bowie T-1004 - Bowie MD,4600 Mitchellville Rd.,Bowie,MD,20716 +-76.822787,38.955834,Target Lanham T-2007 - Bowie MD,10401 Martin Luther King Hwy.,Bowie,MD,20720 +-76.82027,38.956107,"Vista Gardens - Lanham MD (D, W)",10621 Martin Luther King Jr. Highway,Lanham,MD,20720 +-76.846361,38.902611,Capital Centre (UCO) - Largo MD (W),861A Capital Center Blvd.,Largo,MD,20721 +-76.808059,39.098454,Target Laurel T-1007 - Laurel MD,3343 Laurel Ft Meade Rd.,Laurel,MD,20724 +-76.88858,38.76707,"Clinton MD - Clinton MD (D, W)",8919 A Woodyard Road Bld 4,Clinton,MD,20735 +-76.886926,38.773666,Safeway-Clinton #1443 - Clinton MD,8785 Branch Ave.,Clinton,MD,20735 +-76.930875,39.016232,"College Park - College Park MD (D, W)",4750 Cherry Hill Road,College Park,MD,20740 +-76.937449,38.984398,University of Maryland - College Park MD (W),7338 Baltimore Avenue,College Park,MD,20742 +-76.991687,38.725217,Safeway-Fort Washington #1882 - Fort Washington MD,952 E. Swan Creek Rd.,Fort Washington,MD,20744 +-76.88524,38.847992,Target District Heigts T-1897 - Forestville MD,3101 Donnell Dr,Forestville,MD,20747 +-76.884588,38.844949,PennMar - Forestville MD (W),3450 Donnell Drive,Forestville,MD,20747 +-76.662439,38.718625,Safeway-Dunkirk #1129 - Dunkirk MD,10276 Southern Maryland Blvd.,Dunkirk,MD,20754 +-76.6566,38.7369,Dunkirk - Dunkirk MD (W),2981 Plaza Drive,Dunkirk,MD,20754 +-76.88351,38.8155,Andrews Air Force Base - Andrews AFB MD,1684 Starkey Ave.,Andrews AFB,MD,20762 +-76.896309,39.008128,Greenbelt Marriott - Lobby - Greenbelt MD,6400 Ivy Lane,Greenbelt,MD,20770 +-76.874826,38.994111,Safeway-Greenbelt #107 - Greenbelt MD,7595 Greenbelt Road,Greenbelt,MD,20770 +-76.873276,38.993553,Greenway Shopping Center - Greenbelt MD (W),7541 Greenbelt Rd.,Greenbelt,MD,20770 +-76.822897,38.895856,Target Largo T-1006 - Largo MD,10500 Campus Way S.,Largo,MD,20774 +-76.822832,38.897296,Largo Plaza (UCO) - Largo MD (W),10586 Campus Way South,Largo,MD,20774 +-76.9839,38.974434,Target Hyattsville T-1890 - Hyattsville MD,1500 E. W. Hwy.,Hyattsville,MD,20782 +-76.954023,38.966554,Shoppes at Metro (UCO) - Hyattsville MD (W),3601 East-West Highway,Hyattsville,MD,20782 +-76.957266,38.98557,UMUC Conference Center - Lobby - Adelphi MD,3501 University Blvd. East,Adelphi,MD,20783 +-76.785482,39.169738,Columbia East - Jessup MD (W),7351 Assateague Drive,Jessup,MD,20794 +-77.096072,38.988154,7700 Norfolk Ave. - Bethesda MD (W),7700 Norfolk Ave.,Bethesda,MD,20814 +-77.09259,38.980738,7140 Wisconsin - Bethesda MD (W),7140 Wisconsin Avenue,Bethesda,MD,20814 +-77.09218,38.984649,East-West Hwy. - Bethesda MD (W),4520 East West Highway,Bethesda,MD,20814 +-77.098956,38.977748,Safeway-Bradley Blvd. - Bethesda MD,5000 Bradley Blvd.,Bethesda,MD,20815 +-77.086867,38.962954,Friendship Heights - Chevy Chase MD (W),5454 Wisconsin Avenue,Chevy Chase,MD,20815 +-77.077321,38.99591,North Chevy Chase - Chevy Chase MD (W),8542 Connecticut Avenue,Chevy Chase,MD,20815 +-77.120149,38.948631,Sumner Place - Bethesda MD (W),4701 Sangamore Road,Bethesda,MD,20816 +-77.120149,38.949528,Safeway-Bethesda #1716 - Bethesda MD,4701 Sangamore Rd.,Bethesda,MD,20816 +-77.106953,38.964356,Bethesda - Bethesda MD (W),5438 Westbard Avenue,Bethesda,MD,20816 +-77.123588,39.022703,Wildwood Center - Bethesda MD (W),10251 Old Georgetown Road,Bethesda,MD,20817 +-77.071037,39.130707,Old Silo S.C. - Olney MD (W),16806 Georgia Avenue,Olney,MD,20832 +-77.062508,39.150932,Olney Gardens - Olney MD (W),3126 Sandy Spring Road,Olney,MD,20832 +-77.198423,39.11683,Washingtonian Waterfront - Gaithersburg MD (W),213 Boardwalk Place,Gaithersburg,MD,20850 +-77.192677,39.09782,Fallsgrove - Rockville MD (W),14941 Shady Grove Road,Rockville,MD,20850 +-77.192087,39.097628,Safeway-Rockville #1956 - Rockville MD,14939 Shady Grove Rd.,Rockville,MD,20850 +-77.151111,39.085204,Rockville Town Square - Rockville MD (W),39 Maryland Avenue,Rockville,MD,20850 +-77.13729,39.07546,Wintergreen Plaza - Rockville MD (W),865 Rockville Pike,Rockville,MD,20852 +-77.125853,39.063896,Congressional Plaza - Rockville MD (W),1621 Rockville Pike,Rockville,MD,20852 +-77.115355,39.055176,Giant-Rockville #125 - Rockville MD,12051 Rockville Pike,Rockville,MD,20852 +-77.115097,39.049881,Mid-Pike Plaza - Rockville MD (W),11802 Rockville Pike,Rockville,MD,20852 +-77.109148,39.04969,Harris Teeter - North Bethesda #328 - Rockville MD,11845 Old Georgetown Rd.,Rockville,MD,20852 +-77.117967,39.05608,Montrose Crossing - Rockville MD (W),12091 Rockville Pike,Rockville,MD,20852 +-77.208618,39.017756,Potomac - Potomac MD (W),10116 River Road,Potomac,MD,20854 +-77.159042,39.062191,Potomac Woods Plaza - Rockville MD (W),1087 Seven Locks Rd.,Rockville,MD,20854 +-77.156464,39.039459,Cabin John Shopping Center - Potomac MD (W),7911 Tuckerman Lane,Potomac,MD,20854 +-76.926985,39.118001,"Burtonsville DC - Burtonsville MD (D, W)",15707 Columbia Pike,Burtonsville,MD,20866 +-77.201885,39.287746,Safeway-Damascus #2794 - Damascus MD,9807 Main St.,Damascus,MD,20872 +-77.291892,39.103353,Harris Teeter - Darnestown #325 - Darnestown MD,14104 Darnestown Rd.,Darnestown,MD,20874 +-77.279533,39.159853,Kingsview Shopping - Germantown MD,13408 Kingsview Village Avenue,Germantown,MD,20874 +-77.266575,39.180439,Safeway-Germantown #1579 - Germantown MD,19718 Germantown Rd.,Germantown,MD,20874 +-77.266307,39.18019,Germantown Town Center - Germantown MD (W),19724 Germantown Road,Germantown,MD,20874 +-77.249047,39.198954,Target Germantown T-1046 - Germantown MD,20900 Frederick Rd.,Germantown,MD,20876 +-77.248478,39.203269,Milestone - Germantown MD (W),20934 Frederick Road,Germantown,MD,20876 +-77.208603,39.149609,Gaithersburg - Gaithersburg MD (W),488 N. Frederick Avenue,Gaithersburg,MD,20877 +-77.20854,39.15289,Lakeforest Mall - Gaithersburg MD (W),701 Russell Ave.,Gaithersburg,MD,20877 +-77.170599,39.113331,Safeway-Rockville #1715 - Rockville MD,403 Redland Rd.,Rockville,MD,20877 +-77.254224,39.118168,Safeway-Gaithersburg #1089 - Gaithersburg MD,12251 Darnestown Road,Gaithersburg,MD,20878 +-77.251939,39.117698,Potomac Valley - Gaithersburg MD (W),12179 Darnestown Road,Gaithersburg,MD,20878 +-77.235185,39.122072,Kentlands - Gaithersburg MD (W),121 Market Street,Gaithersburg,MD,20878 +-77.220032,39.145083,First Field Shopping Center - Gaithersburg MD (D),505 Quince Orchard Road,Gaithersburg,MD,20878 +-77.216228,39.114411,Muddy Branch - Gaithersburg MD (W),898 Muddy Branch Rd.,Gaithersburg,MD,20878 +-77.185691,39.189371,Safeway-Gaithersburg #1620 - Gaithersburg MD,20211 Goshen Rd.,Gaithersburg,MD,20879 +-77.16544,39.155064,Flower Hill - Gaithersburg MD (W),18240 Flower Hill Way,Gaithersburg,MD,20879 +-77.07624,39.028392,Safeway-Kensington #2753 - Kensington MD,10541 Connecticut Ave.,Kensington,MD,20895 +-77.012506,39.020345,Woodmoor - Silver Spring MD (W),10103 Colesville Rd.,Silver Spring,MD,20901 +-77.008985,39.027978,Burnt Mills Shopping Center - Silver Spring MD (W),10731 Colesville Road,Silver Spring,MD,20901 +-77.057327,39.03882,Wheaton Plaza - Wheaton MD (W),2800 W. University Blvd.,Wheaton,MD,20902 +-76.976703,39.021611,Hillendale Shopping Center - Silver Spring MD (W),10155 New Hampshire Avenue,Silver Spring,MD,20903 +-76.954052,39.055597,Calverton - Silver Spring MD (W),12056 Cherry Hill Road,Silver Spring,MD,20904 +-76.953585,39.054001,Target Silver Spring T-1138 - Silver Spring MD,12000 Cherry Hill Rd.,Silver Spring,MD,20904 +-76.94713,39.08242,Safeway-Silver Spring #4115 - Silver Spring MD,13814 Outlet Dr,Silver Spring,MD,20904 +-76.99714,39.109074,Safeway-Silver Spring #1565 - Silver Spring MD,15449 New Hampshire Ave.,Silver Spring,MD,20905 +-77.079032,39.08012,Giant-Silver Spring #301 - Silver Spring MD,13781 Connecticut Ave.,Silver Spring,MD,20906 +-77.04716,39.090637,Plaza del Mercado - Silver Spring MD (W),2205 Bel Pre Road,Silver Spring,MD,20906 +-77.032276,38.993562,Silver Spring - Silver Spring MD (W),8399 Colesville Road,Silver Spring,MD,20910 +-77.030305,38.991411,Giant-Silver Spring #354 - Silver Spring MD,1280 E. West Hwy.,Silver Spring,MD,20910 +-77.026268,38.996309,Downtown Silver Spring - Silver Spring MD (W),915 Ellsworth Drive,Silver Spring,MD,20910 +-76.98811,38.987873,Hampshire-Langley (UCO) - Langley Park MD (W),7690 New Hampshire Avenue,Langley Park,MD,20912 +-76.232318,39.497136,Maryland House Travel Plaza - Aberdeen MD,MM-82 I-95,Aberdeen,MD,21001 +-76.317615,39.457765,Constant Friendship - Abingdon MD (D),412-B Constant Friendship Blvd.,Abingdon,MD,21009 +-76.316022,39.460045,Target Abingdon T-1871 - Abingdon MD,403 Constant Friendship Blvd.,Abingdon,MD,21009 +-76.50371,39.030025,Safeway-Arnold #2764 - Arnold MD,1451 Ritchie Hwy.,Arnold,MD,21012 +-76.351794,39.52382,Bel Air - Bel Air MD (W),620 Marketplace Drive,Bel Air,MD,21014 +-76.315469,39.546861,Amyclae - Bel Air MD (W),1200 Agora Drive,Bel Air,MD,21014 +-76.350456,39.525554,Target BWI Bel Air T-1002 - Bel Air MD,580 Marketplace Dr,Bel Air,MD,21014 +-76.324981,39.541905,Safeway - Bel Air #1652 - Bel Air MD,225 Brier Hill Dr,Bel Air,MD,21015 +-76.93568,39.211099,Giant-Clarksville #348 - Clarksville MD,6050 Daybreak Cir,Clarksville,MD,21029 +-76.644164,39.478127,Yorkridge Center North - Cockeysville MD (W),10540 York Road,Cockeysville,MD,21030 +-76.636136,39.464066,Timonium - Timonium MD (W),10015 York Road,Timonium,MD,21030 +-76.562562,38.939484,Safeway-Edgewater #2608 - Edgewater MD,5 Mayo Rd.,Edgewater,MD,21037 +-76.561818,38.941346,"Edgewater MD - Edgewater MD (D, W)",3059 Solomons Island Road,Edgewater,MD,21037 +-76.55178,38.991024,Safeway-Annapolis #2629 - Annapolis MD,2635 Housely Rd.,Annapolis,MD,21041 +-76.830833,39.276688,Route 40 - Ellicott City - Ellicott City MD (W),9251 Baltimore National Pike,Ellicott City,MD,21042 +-76.830244,39.277244,Safeway-Ellicott City #1281 - Ellicott City MD,10000 Baltimore Nat'l Pike,Ellicott City,MD,21042 +-76.812942,39.250651,Safeway-Ellicott City #1459 - Ellicott City MD,4370 Montgomery Road,Ellicott City,MD,21043 +-76.812112,39.250077,Target Ellicott City T-1042 - Ellicott City MD,4390 Montgomery Rd.,Ellicott City,MD,21043 +-76.803198,39.214388,The Shoppes at Shipley's Grant - Ellicott City MD (W),5705 Richards Valley Road,Ellicott City,MD,21043 +-76.889582,39.222383,Safeway-Columbia #1553 - Columbia MD,5485 Harpers Farm Road,Columbia,MD,21044 +-76.877862,39.212183,Howard County Community College - Columbia MD,10901 Little Patuxent Parkway,Columbia,MD,21044 +-76.861671,39.214737,Columbia Mall - Columbia MD (W),10300 Little Patuxent Pkwy.,Columbia,MD,21044 +-76.839436,39.176323,Snowden River - Columbia MD,7090 Deepage Drive,Columbia,MD,21045 +-76.820274,39.196617,Dobbin Center Way - Columbia MD (W),6490 Dobbins Center Way,Columbia,MD,21045 +-76.809628,39.196032,Target Columbia T-1044 - Columbia MD,6111 Dobbin Rd.,Columbia,MD,21045 +-76.86507,39.17124,Harris Teeter - Columbia #322 - Columbia MD,8620 Gilford Rd.,Columbia,MD,21046 +-76.6768,39.0684,Safeway-Gambrills #1596 - Gambrills MD,2644 Chapel Lake Dr.,Gambrills,MD,21054 +-76.635271,39.134165,Target Glen Burnie T-1003 - Glen Burnie MD,7951 Nolpark Ct,Glen Burnie,MD,21061 +-76.600944,39.138761,"Governor Plaza - Glen Burnie MD (D, W)",6653 Governor Richie Highway,Glen Burnie,MD,21061 +-76.600928,39.138744,Target Glen Burnie North T-1938 - Glen Burnie MD,6717 Ritchie Hwy.,Glen Burnie,MD,21061 +-76.598768,39.136372,Glen Burnie Center - Glen Burnie MD (W),4A Mountain Road,Glen Burnie,MD,21061 +-76.777146,39.209892,Giant Landover-Elkridge #344 - Elkridge MD,6020 Marshalee Dr,Elkridge,MD,21075 +-76.74219,39.132664,Safeway-Hanover #1926 - Hanover MD,2655 Old Annapolis Neck Rd.,Hanover,MD,21076 +-76.7314,39.163,Arundel Preserve - Hanover MD,7698 Dorchester Blvd.,Hanover,MD,21076 +-76.72583,39.153564,Arundel Village - Hanover MD (W),7645 Arundel Mills Blvd.,Hanover,MD,21076 +-76.7218,39.1423,Arundel Mills - Hanover MD (W),7000 Arundel Mills Cir,Hanover,MD,21076 +-76.683113,39.199588,1700 W. Nursery Rd. - Linthicum Heights MD (D),1700 W. Nursery Rd.,Linthicum Heights,MD,21090 +-76.624087,39.431965,Yorkridge Center - Timonium MD (W),1830 York Road,Timonium,MD,21093 +-76.810452,39.406128,Owings Mills - Owings Mills MD (W),9764 Groffs Mill Drive,Owings Mills,MD,21117 +-76.777763,39.417852,Safeway-Owings Mills #1657 - Owings Mills MD,10335 Reisterstown Rd.,Owings Mills,MD,21117 +-76.769031,39.411498,St. Thomas S/C - Owings Mills MD (W),9904 Reisterstown Road,Owings Mills,MD,21117 +-76.462759,39.413748,Safeway-Perry Hall #1758 - Perry Hall MD,9645 Belair Rd.,Perry Hall,MD,21128 +-76.558572,39.515737,Safeway-Phoenix #1399 - Phoenix MD,3499 Sweet Air Rd.,Phoenix,MD,21131 +-76.583485,39.083251,Safeway-Severna Park #1351 - Severna Park MD,540 Benfield Rd.,Severna Park,MD,21146 +-76.542754,39.07575,Giant-Severna Park #358 - Severna Park MD,575 Ritchie Hwy.,Severna Park,MD,21146 +-76.974044,39.564317,Crossroads Square - Westminster MD (W),625R Baltimore Blvd.,Westminster,MD,21157 +-77.011514,39.586602,Safeway-Westminster #1616 - Westminster MD,444 Western Maryland College Dr,Westminster,MD,21158 +-76.620967,39.289345,Centerpointe - Baltimore MD (W),1 North Eutaw Street,Baltimore,MD,21201 +-76.616212,39.285596,Baltimore Convention Center-Lobby - Baltimore MD,1 W. Pratt St.,Baltimore,MD,21201 +-76.616058,39.303806,1209 N. Charles Street - Baltimore MD (W),1209 North Charles Street,Baltimore,MD,21201 +-76.612138,39.286592,Gallery at Harborplace - Baltimore MD (W),200 East Pratt Street,Baltimore,MD,21202 +-76.602635,39.283955,Inner Harbor East - Baltimore MD,635 President Street,Baltimore,MD,21202 +-76.604021,39.39563,"Towson University - Towson MD (D, W)",31 York Road,Towson,MD,21204 +-76.601677,39.404684,Dulaney Plaza - Towson MD (W),810 Dulaney Valley Road,Towson,MD,21204 +-76.59934,39.40377,Towson Town Center - Towson MD (W),825 Dulaney Valley Road,Towson,MD,21204 +-76.576533,39.38563,Ravenwood - Towson MD (W),8104 Loch Raven Blvd.,Towson,MD,21204 +-76.736248,39.38887,Woodholme - Baltimore MD (W),1809 Reisterstown Road,Baltimore,MD,21208 +-76.713059,39.365543,Safeway-Pikesville #1994 - Pikesville MD,201 Reisterstown Rd.,Pikesville,MD,21208 +-76.649981,39.368229,Mount Washington Mill - Baltimore MD (W),1340 Smith Avenue,Baltimore,MD,21209 +-76.649506,39.3663,Greenspring - Baltimore MD (W),2520 Quarry Lake Drive,Baltimore,MD,21209 +-76.634539,39.355897,Roland Park MD - Baltimore MD (W),5129 Roland Avenue,Baltimore,MD,21210 +-76.627002,39.379069,Woodbrook - Baltimore MD (W),6225 - 6227 N. Charles Street,Baltimore,MD,21212 +-76.609769,39.373038,Giant Landover-Baltimore #108 - Baltimore MD,6340 York Rd.,Baltimore,MD,21212 +-76.609755,39.373594,York Road - Baltimore MD (W),6378 York Road,Baltimore,MD,21212 +-76.65808,39.31799,Target Baltimore West T-2393 - Baltimore MD,3201 Tioga Pkwy,Baltimore,MD,21215 +-76.616471,39.316589,Safeway - Baltimore #1482 - Baltimore MD,2401 N. Charles Street,Baltimore,MD,21218 +-76.615657,39.327052,Charles Village - Baltimore MD (W),3201 Saint Paul Street,Baltimore,MD,21218 +-76.712939,39.297162,Target Middle River T-1970 - Baltimore MD,1330 Martin Blvd.,Baltimore,MD,21220 +-76.58078,39.281483,Canton - Baltimore MD (W),2400 Boston Street,Baltimore,MD,21224 +-76.579159,39.28106,Safeway-Baltimore #1481 - Baltimore MD,2610 Boston Street,Baltimore,MD,21224 +-76.753611,39.283169,Rolling Rd. @ Rt. 40 - Catonsville MD (W),856 N. Rolling Rd.,Catonsville,MD,21228 +-76.541036,39.401904,Safeway-Carney #1880 - Carney MD,8858 Waltham Wood Rd.,Carney,MD,21234 +-76.481457,39.397984,"Perry Hall - Nottingham MD (D, W)",8910 Belair Road,Nottingham,MD,21236 +-76.473648,39.372887,White Marsh Mall - Baltimore MD (W),8200 Perry Hall Blvd.,Baltimore,MD,21236 +-76.467062,39.371687,Avenue at White Marsh - Baltimore MD (W),8145-A Honeygo Blvd.,Baltimore,MD,21236 +-76.45166,39.370952,Target White Marsh T-1001 - Baltimore MD,5230 Campbell Blvd.,Baltimore,MD,21236 +-76.449457,39.367539,Nottingham Square II - White Marsh MD (W),5350 Campbell Boulevard,White Marsh,MD,21236 +-76.67809,39.1829,BWI Pre Security Retail - Baltimore MD (A),BWI internationalAirport,Baltimore,MD,21240 +-76.6782,39.1824,BWI Baltimore Int'lAirport Con B - Baltimore MD (A),Third floor Terminal Bldg,Baltimore,MD,21240 +-76.70912,39.259636,UMBC - University Center - Baltimore MD,1000 Hilltop Circle,Baltimore,MD,21250 +-76.611681,39.413054,Towson University - Cook Library - Towson MD,8000 York Road,Towson,MD,21252 +-76.581113,39.395335,Target Towson T-1142 - Towson MD,1238 Putty Hill Ave.,Towson,MD,21286 +-76.5475,38.9911,Target Annapolis T-2271 - Annapolis MD,1911 Towne Centre Blvd.,Annapolis,MD,21401 +-76.547263,38.991137,Annapolis Mall II - North - Annapolis MD (W),2002 Annapolis Mall,Annapolis,MD,21401 +-76.544124,38.992116,Annapolis Mall Kiosk - Annapolis MD,"2002 Annapolis Mall, Ste. 60",Annapolis,MD,21401 +-76.542819,38.971624,Annapolis Harbour - Annapolis MD (W),2498 Solomons Island Road,Annapolis,MD,21401 +-76.524373,38.97932,1901 West Street - Annapolis MD (W),1901 West Street,Annapolis,MD,21401 +-76.522816,38.970269,Safeway-Annapolis #1460 - Annapolis MD,1781 Forest Drive,Annapolis,MD,21401 +-76.491895,38.978084,Maryland Inn Hotel - Annapolis MD,16 Church Cir,Annapolis,MD,21401 +-76.486449,38.977791,Dock Street (Annapolis) - Annapolis MD (W),124 Dock Street,Annapolis,MD,21401 +-76.078896,38.7802,Target Easton T-2310 - Easton MD,28539 Marlboro Ave.,Easton,MD,21601 +-76.056593,38.777888,Giant Landover-Easton #323 - Easton MD,8223 Elliott Rd.,Easton,MD,21601 +-76.27462,38.973287,Safeway-Chester #1939 - Chester MD,1925 Main St.,Chester,MD,21619 +-77.441642,39.416651,Frederick - Frederick MD (W),1046 West Patrick Street,Frederick,MD,21701 +-77.417015,39.426026,Hood College - Frederick MD (W),899 West 7th Street,Frederick,MD,21701 +-77.410798,39.41541,104 Market Street - Frederick MD (W),104 North Market Street,Frederick,MD,21701 +-77.3832,39.4489,Monocacy - Frederick MD (W),1700 Kingfisher Drive,Frederick,MD,21701 +-77.410195,39.375058,"Westview - Frederick MD (D, W)",5283 Buckeystown Pike,Frederick,MD,21703 +-77.352086,39.330289,Stop & Shop-Urbana #349 - Frederick MD,3530 Sugarloaf Pkwy,Frederick,MD,21704 +-77.745538,39.659748,"Hagerstown Plaza - Hagerstown MD (D, W)",17995 Garland Groh Blvd.,Hagerstown,MD,21740 +-77.526303,39.4377,Safeway - Middletown #1559 - Middletown MD,815 E. Main St.,Middletown,MD,21769 +-77.164884,39.365259,Safeway-Mt. Airy #1815 - Mount Airy MD,337 East Ridgeville Blvd.,Mount Airy,MD,21771 +-77.164745,39.365186,"Mount Airy Shopping Center - Mount Airy MD (D, W)",400 Ridgeville Blvd.,Mount Airy,MD,21771 +-76.949165,39.408123,Safeway - Eldersburg #1678 - Eldersburg MD,1313 London Towne Blvd.,Eldersburg,MD,21784 +-76.94916,39.41029,Safeway-Eldersburg #1678 - Eldersburg MD,1313 London Towne Blvd.,Eldersburg,MD,21784 +-76.011375,39.611404,Chesapeake House Travel Plaza - North East MD,JFK Memorial Hwy.,North East,MD,21901 +-75.9545,39.5893,LCRT-BRWCart(1)#75990 Ches House TP - North East MD,JFK Memorial Hwy. MM 98.6,North East,MD,21901 +-77.200876,38.831383,Safeway - Annandale #1588 - Annandale VA,7414 Little River Turnpike,Annandale,VA,22003 +-77.183945,38.81228,Bradlick Shopping Center - Annandale VA (W),6910-G Bradlick Shopping Center,Annandale,VA,22003 +-77.320669,38.798706,Safeway-Burke #4002 - Burke VA,5727 Burke Center Parkway,Burke,VA,22015 +-77.319887,38.798613,Burke Centre - Burke VA (W),5749 Burke Center Pkwy,Burke,VA,22015 +-77.298924,38.786612,Burke Commons - Burke VA (W),6003-A Burke Centre Pkwy,Burke,VA,22015 +-77.275448,38.776974,Safeway - Burke #1606 - Burke VA,9596 Old Keene Mill Rd.,Burke,VA,22015 +-77.411788,38.833148,Clifton - Clifton VA (W),5748 Union Mill Road,Clifton,VA,22024 +-77.33569,38.5987,Target Dumfries T-2017 - Dumfries VA,4310 Fortuna Ctr. Plaza,Dumfries,VA,22026 +-77.050975,38.593925,"Dumfries - Dumfries VA (D, W)",4380 Fortuna Center Plaza,Dumfries,VA,22026 +-77.352763,38.847858,Lee Plaza - Fairfax VA (W),11725 Lee Highway,Fairfax,VA,22030 +-77.321489,38.853623,Kamp Washington - Fairfax VA (W),10930 Fairfax Blvd.,Fairfax,VA,22030 +-77.31097,38.834866,George Mason University - Fairfax VA,4401 University Drive,Fairfax,VA,22030 +-77.304078,38.845718,Fairfax City - Fairfax City VA (W),10344 Main Street,Fairfax City,VA,22030 +-77.263035,38.872213,Safeway-Fairfax #2616 - Fairfax VA,3043 Nutley St.,Fairfax,VA,22031 +-77.261374,38.872208,Pan Am Shopping Center - Fairfax VA (W),3011 Nutley Street,Fairfax,VA,22031 +-77.275718,38.817364,Safeway - Fairfax #1365 - Fairfax VA,9525 Braddock Rd.,Fairfax,VA,22032 +-77.396898,38.880656,Greenbriar - Fairfax VA (W),13037-A Lee Jackson Memorial Hwy.,Fairfax,VA,22033 +-77.388229,38.859822,Fairlakes - Fairfax VA (W),12955 Fairlakes Shopping Center,Fairfax,VA,22033 +-77.382133,38.858152,East Market at Fairlakes - Fairfax VA (W),12599 Fairlakes Circle,Fairfax,VA,22033 +-77.368498,38.875075,Safeway-Fairfax #1431 - Fairfax VA,12200 W. Ox Road,Fairfax,VA,22033 +-77.354954,38.863763,Fair Oaks Mall - Fairfax VA (W),11750 Fair Oaks,Fairfax,VA,22033 +-77.147986,38.907819,Skyline (Baileys Crossroads) - Falls Church VA (W),3544 South Jefferson Street,Falls Church,VA,22041 +-77.139587,38.845829,"Barcroft Plaza - Falls Church VA (D, W)",6365 Columbia Pike,Falls Church,VA,22041 +-77.129858,38.852875,Safeway-Falls Church #1462 - Falls Church VA,5821 Crossroads Center Way,Falls Church,VA,22041 +-77.11741,38.84562,Target Skyline T-1893 - Falls Church VA,5115 Leesburg Pike,Falls Church,VA,22041 +-77.226169,38.865756,Merrifield - Falls Church VA (W),8104A Arlington Blvd.,Falls Church,VA,22042 +-77.195378,38.866174,Giant-Falls Church #233 - Falls Church VA,7235 ARLINGTON BLVD,Falls Church,VA,22042 +-77.204489,38.902885,Idylwood Plaza - Falls Church VA (W),7501 H Leesburg Pike,Falls Church,VA,22043 +-77.153539,38.869272,Seven Corners - Falls Church VA (W),6270 Seven Corners Circle,Falls Church,VA,22044 +-77.18787,38.89301,Falls Plaza - Falls Church VA (W),1218 West Broad Street,Falls Church,VA,22046 +-77.17462,38.885012,Broaddale - Falls Church VA (W),344 W. Broad St.,Falls Church,VA,22046 +-77.148486,38.703836,AAFES Ft. Belvoir - Fort Belvoir VA,9325 Gunston Rd.,Fort Belvoir,VA,22060 +-77.396209,38.966791,Herndon - Herndon VA (W),1040 Elden Street,Herndon,VA,22070 +-77.264041,38.71495,Lorton Valley - Lorton VA (W),8971-G Ox Road,Lorton,VA,22079 +-77.356776,38.961731,Spectrum - Reston VA (W),1857 Fountain Drive,Reston,VA,22090 +-77.34979,38.979224,Reston - Reston VA (W),1444 North Point Village Center,Reston,VA,22094 +-77.218931,38.918318,Tysons Corner Center - McLean VA (W),1961 Chain Bridge Rd.,McLean,VA,22101 +-77.18025,38.931782,Giant-McLean #758 - McLean VA,1454 Chain Bridge Road,McLean,VA,22101 +-77.178516,38.933399,McLean - McLean VA (W),1438 Chain Bridge Road,McLean,VA,22101 +-77.175643,38.939248,Safeway - McLean #1300 - McLean VA,1330 Chain Bridge Rd.,McLean,VA,22101 +-77.14966,38.91737,Chesterbrook - McLean VA (W),6214 Old Dominion Center,McLean,VA,22101 +-77.221504,38.9272,Harris Teeter-McLean # 302 - McLean VA,8200 Crestwood Heights Drive,McLean,VA,22102 +-77.219325,38.917575,Tysons Corner Center - East Wing - McLean VA (W),7901 L Tysons Corner Mall,McLean,VA,22102 +-77.201084,38.923981,Safeway-McLean #1920 - McLean VA,7401 Colshire Dr,McLean,VA,22102 +-77.225572,38.923233,Tysons Galleria - McLean VA (W),2001 International Drive,McLean,VA,22102 +-77.239643,38.927353,Tysons 3 Center - Vienna VA (W),8520 D Leesburg Pike,Vienna,VA,22103 +-77.300086,38.881435,Giant-Oakton #231 - Oakton VA,2932 Chain Bridge Rd.,Oakton,VA,22124 +-77.299888,38.88153,Oakton (Relo.) - Oakton VA,2930 Chain Bridge Road,Oakton,VA,22124 +-77.315959,38.511421,Quantico Marine Corps Base - Quantico VA,3500 Russell Road,Quantico,VA,22134 +-77.189348,38.778689,Springfield Plaza - Springfield VA (W),7110 Old Keene Mill Road,Springfield,VA,22150 +-77.171556,38.776663,Springfield - Springfield VA (W),6525-B Frontier Drive,Springfield,VA,22150 +-77.233296,38.77928,Old Keene Mill - Springfield VA (W),8408-A Old Keene Mill,Springfield,VA,22152 +-77.265917,38.753223,Huntsman Square - Springfield VA (W),7475 Huntsman Blvd.,Springfield,VA,22153 +-77.262673,38.90357,Vienna Marketplace - Vienna VA (W),207 Maple Avenue East,Vienna,VA,22180 +-77.26567,38.901622,Vienna - Vienna VA (W),107 Maple Avenue West,Vienna,VA,22182 +-77.236097,38.923107,Pike 7 - Vienna VA (W),8381 Leesburg Pike,Vienna,VA,22182 +-77.334573,38.674637,Safeway-Woodbridge #1298 - Woodbridge VA,4240 Merchant Plaza,Woodbridge,VA,22192 +-77.312802,38.685518,Lake Ridge - Lake Ridge VA (W),12447 Hedges Run Drive,Lake Ridge,VA,22192 +-77.3053,38.6767,Target Woodbridge T-759 - Woodbridge VA,2460 Price William Pkwy,Woodbridge,VA,22192 +-77.263673,38.651203,Parkway Crossings East - Woodbridge VA (W),2447 Prince William Pkwy,Woodbridge,VA,22192 +-77.334254,38.646294,Safeway-Dale City #1702 - Dale City VA,4215 Cheshire Station Plz,Dale City,VA,22193 +-77.332439,38.645474,Cheshire Station S/C - Dale City VA (W),4471 Cheshire Station Plaza,Dale City,VA,22193 +-77.292638,38.644076,Potomac Mills Mall - Woodbridge VA (W),2700 Potomac Mills Circle,Woodbridge,VA,22194 +-77.096351,38.895975,Spout Run - Arlington VA (W),3125 Lee Hwy.,Arlington,VA,22201 +-77.090869,38.888428,The Market Common - Arlington VA (W),2690 Clarendon Blvd.,Arlington,VA,22201 +-77.086135,38.890589,Courthouse Arlington - Arlington VA,2200 Clarendon Blvd.,Arlington,VA,22201 +-77.063048,38.864874,Pentagon Row - Arlington VA (W),1101 South Joyce Street,Arlington,VA,22202 +-77.060616,38.865283,The Fashion Centre at Pentagon City - Arlington VA (W),1100 South Hayes Street,Arlington,VA,22202 +-77.059456,38.86273,Pentagon Centre - Arlington VA (W),1201 South Hayes St. @ 15th,Arlington,VA,22202 +-77.056724,38.865103,The Pentagon - Retail Corridor - Arlington VA,Army Navy Drive & Fern Street,Arlington,VA,22202 +-77.052787,38.858216,Marriott Crystal Gateway - Arlington VA,1700 Jefferson Davis Hwy.,Arlington,VA,22202 +-77.05158,38.849388,The Concord - Arlington VA,2600 Crystal Drive,Arlington,VA,22202 +-77.0507,38.8602,Crystal City - Arlington VA (W),1649 Crystal Square Arcade Space,Arlington,VA,22202 +-77.049433,38.854025,Crystal Park III - Arlington VA (W),2231 Crystal Drive,Arlington,VA,22202 +-77.04941,38.860865,Crowne Plaza Reagan National Airpor - Arlington VA,1480 Crystal Dr,Arlington,VA,22202 +-77.114432,38.880878,Westin Arlington Lobby - Arlington VA,801 N. Glebe Rd.,Arlington,VA,22203 +-77.11154,38.881529,Ballston Metro Center - Arlington VA (W),901 North Stuart Street,Arlington,VA,22203 +-77.109341,38.879809,Ballston Commons - Arlington VA (W),4238 Wilson Blvd.,Arlington,VA,22203 +-77.103762,38.882644,Virginia Square Metro - Arlington VA (W),901 North Nelson Street,Arlington,VA,22203 +-77.139419,38.896898,Safeway-Arlington #764 - Arlington VA,2500 N. Harrison St.,Arlington,VA,22207 +-77.138063,38.896555,Lee Harrison S/C - Arlington VA (W),2441 N. Harrison St.,Arlington,VA,22207 +-77.118909,38.898205,Lee Heights Shops - Arlington VA (W),4526 Lee Highway,Arlington,VA,22207 +-77.105413,38.896214,Safeway-Arlington #4007 - Arlington VA,3713 Lee Highway,Arlington,VA,22207 +-77.075313,38.895092,Safeway-Arlington #1048 - Arlington VA,1525 Wilson Blvd.,Arlington,VA,22209 +-77.073804,38.894008,Rosslyn - 1501 N. 17th Street - Roslyn VA (W),1501 North 17th Street,Roslyn,VA,22209 +-77.070765,38.895826,International Place - Arlington VA (W),1735 N. Lynn St. Ste. 020,Arlington,VA,22209 +-77.052021,38.839228,Potomac Yards - Alexandria VA (W),3825 C Jefferson Davis Highway,Alexandria,VA,22301 +-77.09143,38.829894,Bradlee Center - Alexandria VA (W),3690 Q King Street,Alexandria,VA,22302 +-77.08355,38.75455,Safeway-Alexandria #1950 - Alexandria VA,Richmond Hwy. & Arlington Dr,Alexandria,VA,22306 +-77.08317,38.747876,Mt. Vernon Plaza - Alexandria VA (W),7696 J Richmond Highway,Alexandria,VA,22306 +-77.081751,38.770505,Beacon Mall - Alexandria VA (W),6754 Richmond Hwy.,Alexandria,VA,22306 +-77.121145,38.722644,Safeway-Alexandria #1283 - Alexandria VA,8646 Richmond Hwy.,Alexandria,VA,22309 +-77.13902,38.769882,Giant Landover-Alexandria #232 - Alexandria VA,5870 Kingstown Blvd.,Alexandria,VA,22310 +-77.127865,38.827382,Mark Shops - Alexandria VA (W),1462 N. Beauregard St.,Alexandria,VA,22311 +-77.161514,38.822348,Pinecrest - Alexandria VA (W),6552-B Little River Turnpike,Alexandria,VA,22312 +-77.083246,38.807684,Alexandria Commons - Alexandria VA (W),3113 Duke Street,Alexandria,VA,22314 +-77.06597,38.803123,Westin Alexandria - Lobby - Alexandria VA,Jamieson Avenue & Courthouse Square,Alexandria,VA,22314 +-77.061775,38.802494,Carlyle Center - Alexandria VA (W),1901 Ballenger Avenue,Alexandria,VA,22314 +-77.059648,38.806793,Hilton Alexandria Old Town Lobby - Alexandria VA,1767 King St.,Alexandria,VA,22314 +-77.050302,38.810639,The Monarch - Alexandria VA (W),540 N. Henry Street,Alexandria,VA,22314 +-77.045492,38.811761,North Washington Center - Alexandria VA (W),683 N. Washington St.,Alexandria,VA,22314 +-77.045355,38.804836,Alexandria - Alexandria VA (W),532 King Street,Alexandria,VA,22314 +-77.040277,38.80415,King & Union - Alexandria VA (W),100 S. Union Street,Alexandria,VA,22314 +-77.148234,38.753932,Safeway-Alexandria #1847 - Alexandria VA,5980 Kingstowne Village Center,Alexandria,VA,22315 +-77.138379,38.773325,Kingstowne - Kingstowne VA (W),5860 Kingstowne Center,Kingstowne,VA,22315 +-77.072337,38.801505,Hoffman - Alexandria VA (W),2459 Eisenhower Avenue,Alexandria,VA,22331 +-77.522007,38.292746,Fredericksburg - Fredericksburg VA (W),3500 Plank Road,Fredericksburg,VA,22401 +-77.511785,38.299053,Target Fredericksburg T-772 - Fredericksburg VA,1180 Carl D Silver Pkwy,Fredericksburg,VA,22401 +-77.509522,38.305218,Central Park - Fredericksburg VA (W),1670 Carl D. Silver Parkway,Fredericksburg,VA,22401 +-77.493237,38.295575,"Westwood S.C. - Fredericksburg VA (D, W)",2001 Plank Road,Fredericksburg,VA,22401 +-77.5212,38.359893,Giant-Stafford # 234 - Stafford VA,500 Celebrate Virginia Pkwy,Fredericksburg,VA,22406 +-77.49307,38.3448,Target Stafford South,25 S. Gateway Drive,Fredericksburg,VA,22406 +-77.568814,38.291648,"Harrison Crossing - Fredericksburg VA (D, W)",5811 Plank Road,Fredericksburg,VA,22407 +-77.567961,38.291604,Giant-Fredricksburg #235 - Fredericksburg VA,5701 Plank Road,Fredericksburg,VA,22407 +-77.51277,38.293953,Spotsylvania Towne Center - Fredericksburg VA,137 Spotsylvania Towne Centre,Fredericksburg,VA,22407 +-77.504589,38.231883,"Route 1 Fredericksburg - Fredericksburg VA (D, W)",9907 Southpoint Parkway,Fredericksburg,VA,22407 +-77.501292,38.225606,Target Fredericksburg ST-2138 - Fredericksburg VA,9785 Jefferson Davis Hwy.,Fredericksburg,VA,22408 +-77.41164,38.47015,Target Stafford - Stafford Market Place,1090 Stafford Marketplace,Stafford,VA,22554 +-77.411006,38.467839,Stafford Marketplace - Garrisonville VA (W),1495 Stafford Market Place,Garrisonville,VA,22556 +-78.135799,39.221502,Target Winchester North T-2379 - Winchester VA,191 Market Street,Winchester,VA,22603 +-78.131303,39.185539,"Winchester Gateway - Winchester VA (D, W)",161 Gateway Drive,Winchester,VA,22603 +-78.171906,38.9303,Target Front Royal T-2297 - Front Royal VA,10 Crooked Run Plaza,Front Royal,VA,22630 +-78.166,39.0068,Front Royal - Front Royal VA (D),125 Riverton Commons Plaza,Front Royal,VA,22630 +-77.971506,38.484694,"Culpeper - Culpeper VA (D, W)",15185 Montanus Drive,Culpeper,VA,22701 +-77.967384,38.483199,Target Culpeper T-2250 - Culpeper VA,15341 Montanus Dr,Culpeper,VA,22701 +-78.876606,38.430553,James Madison Square - Harrisonburg VA (W),1306 Hillside Avenue,Harrisonburg,VA,22801 +-78.84002,38.426126,Target Harrisonburg T-2071 - Harrisonburg VA,1995 E. Market St.,Harrisonburg,VA,22801 +-78.873982,38.439985,James Madison U - Phillips Center - Harrisonburg VA,800 S. Main St.,Harrisonburg,VA,22807 +-78.860661,38.459038,James Madison University-Carrier Li - Harrisonburg VA,880 Madison Dr,Harrisonburg,VA,22807 +-78.508895,38.033747,Harris Teeter-Charlottesville #177 - Charlottesville VA,975 Emmet St.,Charlottesville,VA,22901 +-78.478817,38.076829,Route 29 - Charlottesville VA (W),1520 Siminole Trail,Charlottesville,VA,22901 +-78.472782,38.079832,Charlottesville Fashion Square - Charlottesville VA (W),1600 East Rio Road,Charlottesville,VA,22901 +-78.47157,38.087532,Kroger - Charlottesville #334 - Charlottesville VA,1980 Rio Hill Center,Charlottesville,VA,22901 +-78.50252,38.042238,Charlottesville - Charlottesville VA (W),1601 University Avenue,Charlottesville,VA,22903 +-78.44492,38.02912,Rivanna Ridge - Charlottesville VA (W),1986 Abbey Road,Charlottesville,VA,22911 +-78.441204,38.12845,Target Charlottesville T-1858 - Charlottesville VA,312 Connor Dr,Charlottesville,VA,22911 +-78.440678,38.127511,Hollymead Town Center - Charlottesville VA (W),163 Community Street,Charlottesville,VA,22911 +-78.9456,38.0577,Target Waynesboro T-2294 - Waynesboro VA,811 Town Center Dr,Waynesboro,VA,22980 +-78.933922,38.064834,"Waynesboro - Waynesboro VA (D, W)",2007 Rosser Ave.,Waynesboro,VA,22980 +-77.46982,37.758477,"Ashland Hanover - Ashland VA (D, W)",704 England Street,Ashland,VA,23005 +-77.450457,37.841463,Paramount Kings Dominion Theme Park - Doswell VA,16000 Theme Park Way,Doswell,VA,23047 +-77.590221,37.68353,Twin Hickory - Glen Allen VA (W),11321 Nuckols Rd.,Glen Allen,VA,23059 +-77.460052,37.668074,Virginia Center - Glen Allen VA (W),9853 Brook Road,Glen Allen,VA,23059 +-77.610544,37.651214,Parkside - Glen Allen VA (W),10865 West Broad Street,Glen Allen,VA,23060 +-77.604835,37.652922,Target - Richmond NW T-1049 - Glen Allen VA,11290 W. Broad St.,Glen Allen,VA,23060 +-77.603762,37.652685,Kroger - Glen Allen #513 - Glen Allen VA,11280 W. Broad St.,Glen Allen,VA,23060 +-77.463288,37.672929,Target Glen Allen T-1019 - Glen Allen VA,10100 Brook Rd.,Glen Allen,VA,23060 +-76.527037,37.414064,"Gloucester VA - Gloucester VA (D, W)",6705 Fox Mill Center Parkway,Gloucester,VA,23061 +-76.532797,37.40934,Farm Fresh-Gloucester #814 - Gloucester VA,7242 George Washington Memorial Highway,Gloucester,VA,23072 +-77.355054,37.603782,Bell Creek - Mechanicsville VA (W),7297 Battle Hill Drive,Mechanicsville,VA,23111 +-77.353345,37.602825,Target Mechanicsville T-1968 - Mechanicsville VA,7325 Bell Creek Rd.,Mechanicsville,VA,23111 +-77.639219,37.41719,Swift Creek - Midlothian VA (W),4721 Brad McNeer Parkway,Midlothian,VA,23112 +-77.7191,37.5031,Westchester Commons - Midlothian VA (D),15605 Westchester Commons Way,Midlothian,VA,23113 +-77.693214,37.511275,Target Richmond Far West T-2478 - Midlothian VA,201 Perimeter Dr,Midlothian,VA,23113 +-77.664345,37.506091,Kroger-Midlothian #523 - Midlothian VA,14101 Midlothian Turnpike,Midlothian,VA,23113 +-77.605526,37.524934,Huguenot & Robious - Midlothian VA (W),11307 Polo Place,Midlothian,VA,23113 +-77.448745,37.544276,VCU - Monroe Park - Richmond VA,375 West Cary Street,Richmond,VA,23173 +-76.764051,37.25173,Farm Fresh - Williamsburg #405 - Williamsburg VA,4511 John Tyler Hwy.,Williamsburg,VA,23185 +-76.6978,37.2561,Harris Teeter-Williamsburg #320 - Williamsburg VA,1470 Quarterpath Rd.,Williamsburg,VA,23185 +-76.6732,37.2638,Target Williamsburg East T-2296 - Williamsburg VA,200 Marquis Pkwy,Williamsburg,VA,23185 +-76.659727,37.246536,Williamsburg Marketplace - Williamsburg VA (W),240 McLaws Circle,Williamsburg,VA,23185 +-76.653327,37.244861,FarmFresh-Williamsburg #321 - Williamsburg VA,455 Merrimac Trail,Williamsburg,VA,23185 +-76.773051,37.372741,Farm Fresh-Williamsburg #335 - Williamsburg VA,115 Norge Lane,Williamsburg,VA,23188 +-76.758356,37.272105,Ukrops - Williamsburg #477 - Williamsburg VA,4660 Monticello Ave.,Williamsburg,VA,23188 +-76.756452,37.269879,MarketPlace Shoppes - Williamsburg VA (W),4655 Monicello Ave.,Williamsburg,VA,23188 +-76.738974,37.347572,"Cedar Valley - Williamsburg VA (D, W)",800-L East Rochambeau Drive,Williamsburg,VA,23188 +-77.43679,37.543148,Richmond Marriott - Lobby - Richmond VA,500 E. Broad St.,Richmond,VA,23219 +-77.43526,37.535757,Omni Richmond Hotel - Street Front - Richmond VA,100 South 12th Street,Richmond,VA,23219 +-77.470909,37.556669,North Robinson Rd. - Richmond VA (W),400 North Robinson Road,Richmond,VA,23220 +-77.455346,37.554105,Broad & Bowe - Richmond VA (W),1500 Broad Street,Richmond,VA,23220 +-76.202469,36.764527,Farm Fresh-Chesapeake #676 - Chesapeake VA,1400 Kempsville Rd.,Chesapeake,VA,23220 +-77.525604,37.537688,Target Richmond T-1931 - Richmond VA,7107 Forest Hill Ave.,Richmond,VA,23225 +-77.537875,37.567298,River Road 2 - Richmond VA (W),5001 Huguenot Road,Richmond,VA,23226 +-77.531795,37.590114,Three Chopt Road - Richmond VA (W),7017 Three Chopt Road,Richmond,VA,23226 +-77.458885,37.633714,North Park Shopping Center - Richmond VA (D),8137 Brook Road,Richmond,VA,23227 +-77.511922,37.63913,Target Richmond T-2337 - RICHMOND VA,9001 Staples Mill Rd.,Richmond,VA,23228 +-77.509137,37.632759,"Parham & Staples - Richmond VA (D, W)",8800 Staples Mille Road,Richmond,VA,23228 +-77.518647,37.573264,Grove Ave. - Richmond VA (W),5802 Grove Ave.,Richmond,VA,23229 +-77.5012,37.58665,Target Richmond Central T-1018 - Richmond VA,5401 W. Broad St.,Richmond,VA,23230 +-77.498046,37.58202,Willow Lawn - Richmond VA (W),1601 Willow Lawn Drive,Richmond,VA,23230 +-77.488465,37.555918,Carytown - Richmond VA (W),3555 West Cary St.,Richmond,VA,23230 +-77.355848,37.527022,Target Richmond East T-2436 - Richmond VA,4521 S. Laburnam Ave.,Richmond,VA,23231 +-77.62287,37.653812,Shoppes at Westgate - Richmond VA (W),11735 West Broad Street,Richmond,VA,23233 +-77.621448,37.653615,Short Pump Pad - Short Pump VA (D),11716 West Broad Street,Short Pump,VA,23233 +-77.621146,37.653505,Short Pump Town Center - Richmond VA (W),11800 West Broad Street,Richmond,VA,23233 +-77.591049,37.604617,Gayton Crossing - Richmond VA (W),1366 Gaskins Road,Richmond,VA,23233 +-77.571064,37.641292,Gaskins & Mayland - Richmond VA (D),3820A Gaskins RD,Richmond,VA,23233 +-77.60712,37.505525,Midlothian & Courthouse - Richmond VA (W),11413A Midlothian Turnpike,Richmond,VA,23235 +-77.606042,37.505644,Ukrops - Richmond #497 - Richmond VA,11361 Midlothian Tpke,Richmond,VA,23235 +-77.605202,37.505732,Target Richmond West T-1041 - Richmond VA,11301 Midlothian Tpke,Richmond,VA,23235 +-77.57171,37.549629,Stony Point Fashion Park - Richmond VA (W),9200 Stony Point Parkway,Richmond,VA,23235 +-77.565807,37.495717,Shops at the Arboretum - Richmond VA (W),9101 Midlothian Turnpike,Richmond,VA,23235 +-77.524574,37.537712,Stratford Hills - Richmond VA (W),7017 C Forest Hills Avenue,Richmond,VA,23235 +-77.579068,37.444186,Oxbridge Square - Richmond VA (W),10009 Hull Street,Richmond,VA,23236 +-77.67595,37.63332,Capital One - Building 3 - Richmond VA,15010 Capital One Dr,Richmond,VA,23238 +-77.45345,37.54811,Virginia Commonwealth University - - Richmond VA,901 Park Avenue,Richmond,VA,23284 +-77.5448,37.63415,West End Shops - Richmond VA (W),8902 W. Broad St.,Richmond,VA,23294 +-77.431493,37.54471,VCU - Larrick Medical Campus - Richmond VA,641 N. 8th St.,Richmond,VA,23298 +-76.250159,36.762976,"Battlefield & Volvo - Chesapeake VA (D, W)",1217 N. Battlefield Blvd.,Chesapeake,VA,23320 +-76.238301,36.71333,Farm Fresh-Chesapeake #232 - Chesapeake VA,309 S. Battlefield Blvd.,Chesapeake,VA,23320 +-76.231577,36.774677,Crossways Shopping Center - Chesapeake VA (W),1412 Greenbriar Pkwy,Chesapeake,VA,23320 +-76.231561,36.77149,Target Chesapeake City T-1021 - Chesapeake VA,1316 Greenbrier Pkwy,Chesapeake,VA,23320 +-76.162933,36.716233,Farm Fresh-Chesapeake #669 - Chesapeake VA,1764 Mount Pleasant Road,Chesapeake,VA,23320 +-76.414544,36.831263,Chesapeake Square - Chesapeake VA (W),2628 Taylor Road,Chesapeake,VA,23321 +-76.29959,36.728207,Farm Fresh-Chesapeake #190 - Chesapeake VA,1620 Cedar Rd.,Chesapeake,VA,23322 +-76.275745,36.712056,Country Club Shops - Chesapeake VA (D),940 Cedar Road,Chesapeake,VA,23322 +-76.233885,36.658343,Target Chesapeake South T-2203 - Chesapeake VA,233 Carmichael Way,Chesapeake,VA,23322 +-76.225086,36.687624,Hanbury Village - Chesapeake VA (W),237 Hanbury Rd. W.,Chesapeake,VA,23322 +-77.42269,37.52994,Farm Fresh-Richmond #576 - Richmond VA,2320 E. Main St.,Richmond,VA,23323 +-76.603577,36.956916,Farm Fresh-Smithfield #238 - Smithfield VA,1282 Smithfield Plaza,Smithfield,VA,23430 +-76.583328,36.750333,Farm Fresh - Suffolk #188 - Suffolk VA,1401 N. Main St.,Suffolk,VA,23434 +-76.583274,36.748869,Suffolk VA - Suffolk VA (W),1201 North Main St.,Suffolk,VA,23434 +-76.46985,36.862247,Farm Fresh #667 - Suffolk VA,3575 Bridge Road,Suffolk,VA,23435 +-76.442542,36.871078,Harbour View - Suffolk VA (D),5883 Harbour View Blvd.,Suffolk,VA,23435 +-76.086001,36.907284,Shore Drive - Virginia Beach VA (W),3273 Shore Drive,Virginia Beach,VA,23451 +-76.022349,36.846536,Target Virginia Beach East T-1047 - Virginia Beach VA,525 First Colonial Rd.,Virginia Beach,VA,23451 +-76.02083,36.851132,Hilltop North - Virginia Beach VA (W),1612 Laskin Road,Virginia Beach,VA,23451 +-76.00965,36.75539,Target Virginia Beach SE T-2396 - Virginia Beach VA,2233 Upton Dr,Virginia Beach,VA,23451 +-75.978909,36.859172,31 Ocean - Virginia Beach VA (W),241 Laskin Road,Virginia Beach,VA,23451 +-76.133743,36.828763,"Independence Blvd. - Virginia Beach VA (D, W)",465 INVESTORS PLACE,Virginia Beach,VA,23452 +-76.10048,36.813263,Farm Fresh-Virginia Beach #217 - Virginia Beach VA,799 Chimney Hill Shopping Ctr,Virginia Beach,VA,23452 +-76.093443,36.841198,"Little Neck - Virginia Beach VA (D, W)",3504 Virginia Beach Blvd.,Virginia Beach,VA,23452 +-76.06849,36.827049,"Lynnhaven Parkway - Virginia Beach VA (D, W)",660-101 Phoenix Avenue,Virginia Beach,VA,23452 +-76.067054,36.82003,Lynnhaven Mall - Virginia Beach VA,701 Lynnhaven Pkwy,Virginia Beach,VA,23452 +-76.059573,36.895152,Farm Fresh-Hampton #193 - Virginia Beach VA,2110 W. Great Neck Rd.,Virginia Beach,VA,23454 +-76.030941,36.849836,La Promenade - Virginia Beach VA (W),1860 Laskin Road,Virginia Beach,VA,23454 +-76.013937,36.76658,Farm Fresh-Virginia Beach #804 - Virginia Beach VA,2129 General Booth Blvd.,Virginia Beach,VA,23454 +-76.001834,36.78499,Farm Fresh-Virginia Beach #197 - Virginia Beach VA,1615 General Booth Rd.,Virginia Beach,VA,23454 +-76.187118,36.881831,"Northampton Blvd. - Virginia Beach VA (D, W)",5824 Northampton Blvd.,Virginia Beach,VA,23455 +-76.169776,36.871795,Farm Fresh-Virginia Beach #816 - Virginia Beach VA,928 Diamond Springs Rd.,Virginia Beach,VA,23455 +-76.134521,36.875586,Farm Fresh #672 - Virginia Beach VA,1069 Independence Boulevard,Virginia Beach,VA,23455 +-76.119977,36.793131,Princess Anne - Virginia Beach VA (W),2005 Lynnhaven Parkway,Virginia Beach,VA,23456 +-76.109121,36.789451,Farm Fresh-Virginia Beach # 911 - Virginia Beach VA,2058 S. Independence Blvd.,Virginia Beach,VA,23456 +-76.088767,36.774123,Landstown Commons - Virginia Beach VA,3376 Princess Anne Rd.,Virginia Beach,VA,23456 +-76.064793,36.755037,Harris Teeter-Virginia Beach #239 - Virginia Beach VA,2476 Nimmo Parkway,Virginia Beach,VA,23456 +-76.0179,36.7611,Red Mill Commons - Virginia Beach VA (W),1169 Nimmo Parkway,Virginia Beach,VA,23456 +-76.137408,36.843037,Pembroke - Virginia Beach VA (W),233 Independence Blvd.,Virginia Beach,VA,23462 +-76.127896,36.842455,Columbus Village East - Virginia Beach VA (W),4421 Virginia Beach Blvd.,Virginia Beach,VA,23462 +-76.17797,36.799471,"Kemps River II - Virginia Beach VA (D, W)",1390 Fordham Drive,Virginia Beach,VA,23464 +-76.168666,36.794019,Harris Teeter - Virginia Beach #350 - Virginia Beach VA,5060 Ferrell Parkway,Virginia Beach,VA,23464 +-76.210832,36.865574,Target Norfolk T-1048 - Norfolk VA,1245 N. Military Hwy.,Norfolk,VA,23502 +-76.210324,36.86156,Millenium Crossing - Norfolk VA (W),1153 N. Military Highway,Norfolk,VA,23502 +-76.253196,36.955743,Farm Fresh-Norfolk #246 - Norfolk VA,179 W. Ocean View Ave.,Norfolk,VA,23503 +-76.268803,36.916026,Farm Fresh-Norfolk # 212 - Norfolk VA,230 Little Creek Road,Norfolk,VA,23505 +-76.298582,36.866679,Ghent - Norfolk VA (W),1318 Colley Avenue,Norfolk,VA,23507 +-76.292068,36.849805,Farm Fresh-Norfolk #671 - Norfolk VA,260 Boush St.,Norfolk,VA,23510 +-76.291199,36.845994,Selden Arcade - Norfolk VA (W),210 E. Main Street,Norfolk,VA,23510 +-76.289459,36.849543,Food Court 2nd Floor - Norfolk VA (A),300 Monticello Ave. Suite #237,Norfolk,VA,23510 +-76.289459,36.849543,Food Court 3rd Floor - Norfolk VA (A),300 Monticello Ave. Suite #237,Norfolk,VA,23510 +-76.3032,36.9404,Norfolk Naval Station - Navy Exchan - Norfolk VA,NS Norfolk - Navy Exchange Bldg. #CD-13,Norfolk,VA,23511 +-76.292221,36.869159,21 West (Ghent) - Norfolk VA (W),520 West 21st Street,Norfolk,VA,23517 +-76.214386,36.897953,ORF B16 - Norfolk VA (A),2200 Norview Ave.,Norfolk,VA,23518 +-76.214386,36.897953,ORF Pre-Security Garden Square - Norfolk VA (A),2200 Norview Ave.,Norfolk,VA,23518 +-76.16231,36.9145,NAB Little Creek - Norfolk VA,NAB Little Creek Navy Exchange 1170 Am,Norfolk,VA,23521 +-76.306738,36.886475,ODU - Webb Center - Norfolk VA,1200 Webb Center,Norfolk,VA,23529 +-76.3003,36.8849,Old Dominion University - Bookstore - Norfolk VA,45th Street & Monarch Way,Norfolk,VA,23529 +-76.46167,37.079532,"J. Clyde Morris - Newport News VA (D, W)",762 J. Clyde Morris Blvd.,Newport News,VA,23601 +-76.510424,37.126102,"Jefferson Commons - Newport News VA (D, W)",12531 Jefferson Avenue,Newport News,VA,23602 +-76.506327,37.105986,"Oyster Point Shoppes - Newport News VA (D, W)",340 Oyster Point Road,Newport News,VA,23602 +-76.492775,37.102824,Jefferson Plaza - Newport News VA (W),12103 Jefferson Ave.,Newport News,VA,23602 +-76.492638,37.103067,Target Newport News T-1103 - Newport VA,12130 Jefferson Ave.,Newport,VA,23602 +-76.472077,37.112576,Kiln Creek - Newport News VA (W),120 Ottis Street,Newport News,VA,23602 +-76.584359,37.158547,Fort Eustis - Commissary Mall - Fort Eustis VA,Bldg 1527 (near intersection of Crate Ct,Fort Eustis,VA,23604 +-76.492303,37.067284,Harris Teeter-Newport News #6 - Newport News VA,12404 Warwick Blvd.,Newport News,VA,23606 +-76.4128,37.0426,Target Hampton T-2501 - Hampton VA,5001 Holt Ave.,Hampton,VA,23666 +-76.39178,37.048366,Coliseum Crossing - Hampton VA (W),108 Coliseum Drive,Hampton,VA,23666 +-76.327549,37.056641,Farm Fresh-Hampton #240 - Hampton VA,227 Fox Hill Rd.,Hampton,VA,23669 +-76.473224,37.171092,Farm Fresh - Grafton #404 - Grafton VA,6500 George Washington Memorial Hwy.,Grafton,VA,23692 +-76.458763,37.146596,"Grafton - Yorktown VA (D, W)",4433-A George Washington Memorial Hwy.,Yorktown,VA,23692 +-76.358722,36.810758,Farm Fresh-Portsmouth # 664 - Portsmouth VA,4000 Victory Blvd.,Portsmouth,VA,23701 +-76.306905,36.837943,Portsmouth - Portsmouth VA (D),361 Effingham Street,Portsmouth,VA,23704 +-77.410136,37.350804,Target Chester T-1017 - Chester VA,2530 Wier Road,Chester,VA,23831 +-77.511879,37.375863,Iron Bridge & Courthouse - Chesterfield VA (W),6921 Commons Square,Chesterfield,VA,23832 +-77.404231,37.25136,Ukrops - Colonial Heights #494 - Colonial Heights VA,40 Colonial Sq,Colonial Heights,VA,23834 +-77.389745,37.249746,"Colonial Heights - Colonial Heights VA (D, W)",790 Southpark Blvd.,Colonial Heights,VA,23834 +-77.413229,37.354881,Bermuda Square - Chester VA (D),12501 Jefferson Davis Hwy.,Chester,VA,23836 +-76.951582,36.668347,Farm Fresh-Franklin #674 - Franklin VA,1500 Armory Dr,Franklin,VA,23851 +-77.325241,37.260931,"Hopewll - Hopewell VA (D, W)",5320 Oaklawn Blvd.,Hopewell,VA,23860 +-77.393129,36.971502,Davis Oil Travel Plaza - Stony Creek VA,11042 Blue Star Hwy.,Stony Creek,VA,23882 +-79.967389,37.305007,"Valley View - Roanoke VA (D, W)",4801 Valley View Blvd. NW,Roanoke,VA,24012 +-79.969248,37.225986,Southern Hills - Roanoke VA (D),4109 Southern Hills Dr. SW,Roanoke,VA,24014 +-79.955383,37.255105,"Towers VA - Roanoke VA (D, W)",2112 Colonial Ave. SW,Roanoke,VA,24015 +-80.012043,37.224445,Kroger-Roanoke #401 - Roanoke VA,4404 Brambleton Ave.,Roanoke,VA,24018 +-80.433793,37.235333,Blacksburg - Blacksburg VA (W),880 University City Blvd.,Blacksburg,VA,24060 +-80.412653,37.227941,Kent Square - Blacksburg VA (W),202 South Main Street,Blacksburg,VA,24060 +-80.423203,37.16319,Christiansburg - Christiansburg VA (W),2475 North Franklin Street,Christiansburg,VA,24073 +-80.548,37.1387,Radford University - Hulburt Hall - Radford VA,East Main Street,Radford,VA,24142 +-80.082139,37.289385,"Spartan Square - Salem VA (D, W)",1499 West Main Street,Salem,VA,24153 +-80.027168,37.29692,Salem VA - Salem VA (W),129 Electric Road,Salem,VA,24153 +-82.122703,36.632171,"I-81 & Exit 7 - Bristol VA (D, W)",3177 Lee Highway,Bristol,VA,24201 +-82.106558,36.639767,Target Bristol T-2308 - Bristol VA,14181 Lee Hwy.,Bristol,VA,24202 +-81.097595,36.957287,Wytheville - Wytheville VA (D),198 Commonwealth Dr,Wytheville,VA,24382 +-79.04287,38.134508,Staunton - Staunton VA (D),1209 Richmond Rd.,Staunton,VA,24401 +-79.242092,37.334396,Lynchburg - Lynchburg VA (W),21054 Timberlake Road,Lynchburg,VA,24502 +-79.184528,37.351038,Wards Road - Lynchburg VA (W),3911 Wards Road,Lynchburg,VA,24502 +-79.2219,37.447278,Boonsboro - Lynchburg VA (W),4925 Boonsboro Road,Lynchburg,VA,24503 +-79.425811,36.59331,Danville VA - Danville VA (W),133 Enterprise Dr.,Danville,VA,24540 +-79.416269,36.600792,Target Danville T-2407 - Danville VA,236 Coleman St.,Danville,VA,24540 +-81.053077,37.363665,Princeton WV - Princeton WV (D),1010 Oakvale Road,Princeton,WV,24740 +-81.051866,37.36375,Bluestone Travel Plaza - Princeton WV,Milepost 18 I-77,Princeton,WV,24740 +-81.373367,38.056092,Morton Travel Plaza - Burnwell WV,Mile Marker 74 WB W. Virginia Turnpike,Burnwell,WV,25034 +-81.726541,38.355564,HJ Thomas Memorial Hospital - South Charleston WV,4605 MacCorkle Avenue SW,South Charleston,WV,25309 +-81.640838,38.356475,Charleston Town Center - Charleston WV (W),3000 Charleston Town Center,Charleston,WV,25389 +-77.97811,39.440582,Target Martinsburg T-2538 - Martinsburg WV,14378 Apple Harvest Drive,Martinsburg,WV,25403 +-82.299017,38.415077,Kroger-Barboursville #788 - Barboursville WV,6360 US Route 60,Barboursville,WV,25504 +-82.288981,38.421919,"Merritt Creek - Barboursville WV (D, W)",900 Lauren Christian Drive,Barboursville,WV,25504 +-82.262092,38.421126,Huntington Mall - Barboursville WV,1 Mall Rd.,Barboursville,WV,25504 +-82.444267,38.42207,Pullman Square - Huntington WV (W),285 9th Street,Huntington,WV,25701 +-81.20297,37.790184,Beckley Travel Plaza - Beckley WV,Mile Marker 45 SB W. Virginia Turnpike,Beckley,WV,25801 +-81.181978,37.803683,"Beckley - Beckley WV (D, W)",308 Galleria Plaza,Beckley,WV,25801 +-80.70105,40.074657,Kroger-Wheeling #562 - Wheeling WV,200 Mount Dechantel Rd.,Wheeling,WV,26003 +-80.549904,40.1008,Target Wheeling/Valley Grove T-22 - Valley Grove WV,300 Cabela Dr,Valley Grove,WV,26060 +-80.1227,38.4174,Snowshoe Resort @ Snowshoe - Snowshoe WV,1 Snowshoe Dr,Snowshoe,WV,26209 +-80.277813,39.280245,"Clarksburg - Clarksburg WV (D, W)",241 Emily Drive Suite A,Clarksburg,WV,26301 +-80.00281,39.65023,Target Morgantown T-1949 - Morgantown WV,5001 University Town Centre Dr,Morgantown,WV,26501 +-79.963431,39.655294,Morgantown - Morgantown WV (D),1109 Van Voorhis Rd.,Morgantown,WV,26505 +-80.381474,36.022615,"Clemmons - Clemmons NC (D, W)",2785 Lewisville-Clemmons Rd.,Clemmons,NC,27012 +-80.247506,36.099336,Embassy Suites Winston-Salem - Winston-Salem NC,460 N. Cherry St.,Winston-Salem,NC,27101 +-80.338953,36.070752,"Jonestown Rd. - Winston-Salem NC (D, W)",605 Jonestown Road,Winston-Salem,NC,27103 +-80.305166,36.059742,Hanes Mall Blvd. - Winston-Salem NC (W),2085 Frontis Plaza Blvd.,Winston-Salem,NC,27103 +-80.298803,36.073922,Hanes Mall Kiosk - Winston-Salem NC (W),3320 Silas Creek Parkway,Winston-Salem,NC,27103 +-80.282406,36.089913,Stratford Road - Winston-Salem NC (W),110 Oakwood Drive,Winston-Salem,NC,27103 +-80.27695,36.187894," University Parkway - Winston-Salem NC (D, W)",5980 University Parkway,Winston-Salem,NC,27105 +-80.312542,36.11589,Mt. Tabor Place - Winston-Salem NC (W),3327 Robinhood Road,Winston-Salem,NC,27106 +-80.300571,36.144265,"Reynolda Road - Winston-Salem NC (D, W)",2898 Reynolda Road,Winston-Salem,NC,27106 +-80.2422,36.1135,Wake Forest University Z. Smith Rey - Winston-Salem NC,1834 Wake Forest Rd.,Winston-Salem,NC,27106 +-79.520498,36.068285,"University Commons - Burlington NC (D, W)",1447 A University Drive,Burlington,NC,27215 +-79.519918,36.066356,Target Burlington T-2037 - Burlington NC,1475 University Dr,Burlington,NC,27215 +-79.488813,36.076255,"Burlington Mall - Burlington NC (D, W)",451 Huffman Mill Road,Burlington,NC,27215 +-79.487798,36.080689,Harris Teeter-Burlington # 345 - Burlington NC,2727 Church St.,Burlington,NC,27215 +-80.019449,35.984123,Harris Teeter - High Point #341 - High Point NC,265 Eastchester Dr,High Point,NC,27262 +-79.992206,35.971095,High Point University - High Point NC,833 Montlieu Avenue,High Point,NC,27262 +-80.023808,35.98306,High Point NC - High Point NC (W),2101 N. Main Street,High Point,NC,27265 +-79.962649,36.035692,"Shoppes at Deep River - High Point NC (D, W)",3875 John Gordon Lane,High Point,NC,27265 +-79.924158,35.971002,Furnitureland South - Jamestown NC,5635 Riverdale Dr,Jamestown,NC,27282 +-80.098665,36.107988,Target Kernersville T-2134 - Kernersville NC,1024 S. Main St.,Kernersville,NC,27284 +-80.098187,36.109103,Kernersville - Kernersville NC (W),1022-M South Main Street,Kernersville,NC,27284 +-80.094681,36.107731,Harris Teeter-Kernersville #250 - Kernersville NC,971 S. Main St.,Kernersville,NC,27284 +-79.878684,36.113053,Target Greensboro West T-2108 - Greensboro NC,1628 Highwoods Blvd.,Greensboro,NC,27401 +-79.784555,36.102269,Golden Gate (Store/Training Center) - Greensboro NC (W),2204 Golden Drive,Greensboro,NC,27405 +-79.79282,36.002365,"South Elm & I-85 - Greensboro NC (D, W)",3711 Elmsley Street,Greensboro,NC,27406 +-79.89131,36.08805,Harris Teeter Greensboro #33 - Greensboro NC,701 Frances King St.,Greensboro,NC,27407 +-79.840939,36.040407,Four Seasons Towne Centre - Greensboro NC,400 Four Seasons Town Centre,Greensboro,NC,27407 +-79.835629,36.114756,Battleground Village - Greensboro NC (W),2969 Battleground Avenue,Greensboro,NC,27408 +-79.810465,36.089435,Shops on Battleground - Greensboro NC (W),1603 Battleground Avenue,Greensboro,NC,27408 +-79.885245,36.089278,Guilford College - Greensboro NC (W),5607 W. Friendly Ave.,Greensboro,NC,27410 +-79.880372,36.111165,Jefferson Village - Greensboro NC (W),1562 Highwoods Blvd.,Greensboro,NC,27410 +-79.869946,36.148825,"Battleground Ave. & Old Battleground - Greensboro NC (D, W)",4016 Battleground Ave.,Greensboro,NC,27410 +-79.83707,36.085211,Friendly - HT (Relo.) - Greensboro NC (W),3330 W. Friendly Ave.,Greensboro,NC,27410 +-79.798962,36.130624,"Patriots Place - Greensboro NC (D, W)",505 Pisgah Church Road,Greensboro,NC,27455 +-78.823839,35.744276,Kroger-Apex #357 - Apex NC,940 US Hwy. 64,Apex,NC,27502 +-78.87778,35.744995,Super Target Apex ST-1932 - Apex NC,1201 Beaver Creek Commons Dr,Apex,NC,27502 +-78.783101,35.763738,"Cary Central - Cary NC (D, W)",1217 Kildaire Farm Road,Cary,NC,27511 +-78.7822,35.7642,"Tryon Village - Cary NC (D, W)",8204 Tryon Woods Dr,Cary,NC,27511 +-78.7593,35.773789,"Cary Towne Center - Cary NC (D, W)",1107 Walnut Street,Cary,NC,27511 +-78.740977,35.760321,"Crossroads Blvd. & Caitboo Ave. - Cary NC (D, W)",204 Crossroads Plaza,Cary,NC,27511 +-78.794839,35.798967,"Evans Road - Cary NC (D, W)",1904 Northwest Maynard Road,Cary,NC,27513 +-78.787735,35.824023,Weston Parkway - Cary NC (W),125 Weston Parkway,Cary,NC,27513 +-79.045252,35.90605,UNC at Chapel Hill - Rams Head Cent - Chapel Hill NC,104 Ridge Rd.,Chapel Hill,NC,27514 +-79.024816,35.937637,Eastgate - Chapel Hill - Chapel Hill NC (W),1800 E. Franklin Street,Chapel Hill,NC,27514 +-79.14586,35.93654,Harris Teeter-Chapel Hill #117 - Chapel Hill NC,2110 Estes Dr,Chapel Hill,NC,27514 +-79.055679,35.913193,Franklin Street - Chapel Hill NC (W),103 East Franklin Street,Chapel Hill,NC,27516 +-78.9791,35.8971,Harris Teeter-Chapel Hill #137 - Chapel Hill NC,88 Chatham Downs,Chapel Hill,NC,27517 +-78.74345,35.746654,Harris Teeter-Cary # 330 - Cary NC,1151 TRYON VILLAGE DRIVE,Cary,NC,27518 +-78.902309,35.822062,Harris Teeter-Cary #298 - Cary NC,1150 Green Level to Durham Rd.,Cary,NC,27519 +-78.870001,35.789672,"High House Road - Cary NC (D, W)",2840 NC Highway 55,Cary,NC,27519 +-78.851812,35.790568,Harris Teeter-Cary #138 - Cary NC,98 Cornerstone Dr,Cary,NC,27519 +-78.497656,35.666341,"Clayton NC - Clayton NC (D, W)",13024 US Highway 70W,Clayton,NC,27520 +-78.77498,35.592225,Hwy. 401 & Purfoy Rd. - Fuquay-Varina NC (D),1380 North Main St.,Fuquay-Varina,NC,27526 +-78.5958,35.6731,Harris Teeter-Garner #283 - Garner NC,Rt. 401 & Ten Ten,Garner,NC,27529 +-77.966507,35.396921,Wayne Memorial Dr. & Hwy. 70 - Goldsboro NC (D),2116-A Wayne Memorial Dr,Goldsboro,NC,27534 +-77.943999,35.37508,Goldsboro - Goldsboro NC (D),603 North Berkeley Blvd.,Goldsboro,NC,27534 +-77.939708,35.383207,Target Goldsboro T-964 - Goldsboro NC,1204 Sunburst Dr,Goldsboro,NC,27534 +-78.863916,35.737384,Harris Teeter-Apex #58 - Apex NC,750 W. Williams St.,Apex,NC,27539 +-78.796796,35.665252,Harris Teeter-Holly Springs #118 - Holly Springs NC,5277 Sunset Lake Rd.,Holly Springs,NC,27540 +-78.509181,35.797966,Target Knightdale T-2111 - Knightdale NC,1000 Shoppes at Midway Dr,Knightdale,NC,27545 +-78.862733,35.873298,"Grace Park - Morrisville NC (D, W)",3608-400 Davis Drive,Morrisville,NC,27560 +-78.85437,35.84279,Harris Teeter-Morrisville #104 - Morrisville NC,4093 Davis Drive,Morrisville,NC,27560 +-78.541974,35.974156,Super Target Wake Forest ST-1504 - Wake Forest NC,12000 Retail Dr,Wake Forest,NC,27587 +-78.6392,35.778,Marriott Downtown Raleigh - Raleigh NC,500 Fayetteville St. Mall,Raleigh,NC,27601 +-78.591743,35.821533,"Capital Blvd. - Raleigh NC (D, W)",3023 Capital Blvd.,Raleigh,NC,27604 +-78.661963,35.791458,Cameron Village - HT - Raleigh NC (W),500 Oberlin Road,Raleigh,NC,27605 +-78.647953,35.78836,Glenwood & Peace - Raleigh NC (W),609 W. Peace St.,Raleigh,NC,27605 +-78.693787,35.816176,"Lake Boone Trail - Raleigh NC (D, W)",3800 Lake Boone Trail,Raleigh,NC,27607 +-78.6452,35.8405,Target Raleigh Central T-1892 - Raleigh NC,4191 The Circle at N. Hills St.,Raleigh,NC,27609 +-78.64275,35.840736,North Hills Plaza - Raleigh NC (W),4421 Six Forks Road,Raleigh,NC,27609 +-78.6295,35.8472,North Hills Center - Raleigh NC (W),4160 Main Street,Raleigh,NC,27609 +-78.622638,35.866915,Falls of Neuse - Raleigh NC (W),900 Spring Forest Road,Raleigh,NC,27609 +-78.560775,35.798907,"New Bern Commons - Raleigh NC (D, W)",4421 New Bern Avenue,Raleigh,NC,27610 +-78.707031,35.825234,Old Raleigh Village - Raleigh NC (W),3101-105 Edwards Mill Road,Raleigh,NC,27612 +-78.703767,35.857581,Pleasant Valley Promenade - Raleigh NC (W),6282 Glenwood Avenue,Raleigh,NC,27612 +-78.681889,35.841137,Crabtree Valley Mall - Raleigh NC (W),4325 Glen Wood Avenue,Raleigh,NC,27612 +-78.679353,35.885756,Stonehenge - Raleigh NC (W),7498 Creedmor Road,Raleigh,NC,27613 +-78.540894,35.942796,"Wakefield Commons - Raleigh NC (D, W)",10760 Wakefield Commons Dr.,Raleigh,NC,27614 +-78.602594,35.904657,Village @ Falls Pointe - Raleigh NC (W),9630 Falls of the Neuse Road,Raleigh,NC,27615 +-78.5861,35.87,Triangle Towne Mall - Raleigh NC (W),5959 Triangle Town Boulevard,Raleigh,NC,27616 +-78.568095,35.866229,Super Target Raleigh ST-1826 - Raleigh NC,7900 Old Wake Forest Rd.,Raleigh,NC,27616 +-78.7894,35.9022,Alexander Place - Raleigh NC (W),7854 Alexander Promenade Pl.,Raleigh,NC,27617 +-78.7928,35.8607,RDU A 16 - Raleigh NC (A),1025 Airside Drive Suite 2101,Raleigh,NC,27623 +-78.7928,35.8607,RDU Terminal C Central Atrium - Raleigh NC (A),1025 Airside Dr,Raleigh,NC,27623 +-78.8471,35.879525,"Imperial Corners - Durham NC (D, W)",1119 Slater Rd.,Durham,NC,27703 +-78.946488,36.018334,Kroger - Durham #332 - Durham NC,3457 Hillsborough Road,Durham,NC,27705 +-78.929148,36.05747,Guess Road - Durham NC (D),3801 Guess Road,Durham,NC,27705 +-78.91711,36.028435,Kroger-Durham #366 - Durham NC,1802 North Point Dr.,Durham,NC,27705 +-78.9965,35.9536,Mount Moriah - Durham NC (W),5319 New Hope Commons Dr,Durham,NC,27707 +-78.959146,35.966507,Super Target-Durham ST-1872 - Durham NC,4037 Chapel Hill Blvd.,Durham,NC,27707 +-78.958665,35.918923,Harris Teeter - Durham #224 - Durham NC,1125 West North Carolina 54 Hwy.,Durham,NC,27707 +-78.957111,35.960827,The Commons - HT - Durham NC (W),1817 Martin Luther King Jr. Pkwy,Durham,NC,27707 +-78.956294,35.90386,Super Target Durham SE ST-2069 - Durham NC,8210 Renaissance Pkwy,Durham,NC,27713 +-78.93752,35.905333,Renaissance Center at South Point - Durham NC (W),6813 Fayetteville Road,Durham,NC,27713 +-78.897072,35.899331,"Parkwest Crossing NC - Durham NC (D, W)",4834 NC Hwy. 55,Durham,NC,27713 +-78.850238,35.884728,Southpointe - Durham NC (W),202 W. NC Highway 54,Durham,NC,27713 +-77.811309,35.971224,Target Rocky Mount T-962 - Rocky Mount NC,731 Sutters Creek Blvd.,Rocky Mount,NC,27804 +-77.411722,35.605312,"Stanton Square - Greenville NC (D, W)",2205 W. Arlington Blvd.,Greenville,NC,27834 +-77.373873,35.60562,East Carolina University - Greenville NC (D),100 East 10th Street,Greenville,NC,27858 +-77.37318,35.582364,"Greenville - Greenville NC (D, W)",518-B Greenville Blvd. SE,Greenville,NC,27858 +-77.352788,35.566326,Harris Teeter-Greenville #287 - Greenville NC,2020 E. Firetower Rd.,Greenville,NC,27858 +-77.633867,36.429768,"Roanoke Rapids - Roanoke Rapids NC (D, W)",298 Premier Blvd.,Roanoke Rapids,NC,27870 +-77.96514,35.744938,"Wilson NC - Wilson NC (D, W)",3401 Raleigh Rd.,Wilson,NC,27893 +-77.96402,35.743774,Target Wilson T-2168 - Wilson NC,3401 Raleigh Rd. Pkwy. W.,Wilson,NC,27896 +-76.253,36.29,Farm Fresh-Elizabeth City #469 - Elizabeth City NC,691 S. Hughes Blvd.,Elizabeth City,NC,27909 +-75.724824,36.097846,Kitty Hawk - Kitty Hawk NC,5597-A North Croatan Highway,Kitty Hawk,NC,27949 +-80.74575,35.418557,Harris Teeter-Concord #190 - Concord NC,9900-Suite 124 Poplar Tent Rd.,Concord,NC,28027 +-80.72404,35.372665,Concord Mill - Concord NC (W),8111 Concord Mills Blvd.,Concord,NC,28027 +-80.7192,35.37185,Concord Mills II - Concord NC (W),8111 Concord Mills Blvd.,Concord,NC,28027 +-80.709268,35.366523,"Speedway Blvd. - Concord NC (D, W)",7741 Gateway Lane NW,Concord,NC,28027 +-80.678722,35.416632,SuperTarget Kannapolis ST-2169 - Concord NC,6150 Bayfield Pkwy,Concord,NC,28027 +-80.675111,35.419303,"Kannapolis Parkway - Concord NC (D, W)",6065 Bayfield Pkwy,Concord,NC,28027 +-80.632923,35.38895,"Concord Hwy. 29 - Concord NC (D, W)",1490 US Highway 29,Concord,NC,28027 +-80.88811,35.473965,Lake Norman Blvd. - Cornelius NC (W),19722 One Lake Norman Blvd.,Cornelius,NC,28031 +-80.892493,35.477149,Harris Teeter-Cornelius #179 - Cornelius NC,19815 N. Cove Rd.,Cornelius,NC,28031 +-80.8224,35.4892,Harris Teeter-Davidson # 268 - Davidson NC,431 Peninsula Drive,Davidson,NC,28036 +-80.8952,35.443,Teeter-Huntersville #272 - Huntersville NC,7715 Regency Lake Dr,Huntersville,NC,28078 +-80.879798,35.445469,Birkdale - Huntersville NC (W),16846B Birkdale Commons Pkwy,Huntersville,NC,28078 +-80.864106,35.406579,Rosedale - Huntersville NC (W),9832 Gilead Road,Huntersville,NC,28078 +-80.861732,35.443153,Target Huntersville T-966 - Huntersville NC,9801 Sam Furr Rd.,Huntersville,NC,28078 +-80.856826,35.442102,Sam Furr Rd. & Hwy. 115 - Huntersville NC (W),9932 Knockando Lane,Huntersville,NC,28078 +-80.646218,35.048493,"Sun Valley - Indian Trail NC (D, W)",6701 Old Monroe Rd.,Indian Trail,NC,28079 +-80.761232,35.022479,Harris Teeter - Matthews #343 - Matthews NC,13639 Providence Rd.,Matthews,NC,28104 +-80.692823,35.001471,Target Wesley Chapel T-2395 - Wesley Chapel NC,6350 Weddington Monroe Rd.,Wesley Chapel,NC,28104 +-80.709277,35.125185,Matthews Township - HT - Matthews NC (W),1811 Matthews Township Pkwy.,Matthews,NC,28105 +-80.702262,35.128263,Sycamore Commons - Matthews NC (W),2233 Matthews Township Parkway,Matthews,NC,28105 +-80.705922,35.122714,Target Charlotte SE T-918 - Matthews NC,1900 Matthews Township Pkwy,Matthews,NC,28105 +-80.580998,35.020437,Target Monroe T-2074 - Monroe NC,2901 W. Hwy. 74,Monroe,NC,28110 +-80.887505,35.5735,Harris Teeter - Mooresville #274 - Mooresville NC,118 Argus Lane,Mooresville,NC,28117 +-80.875694,35.586017,Harris Teeter-Mooresville #99 - Mooresville NC,134 Town Center Drive,Mooresville,NC,28117 +-80.871584,35.597895,Super Target Mooresville ST-1505 - Mooresville NC,594 River Hwy.,Mooresville,NC,28117 +-80.868242,35.594677,Mooresville - Mooresville NC (W),109 Williamson Road,Mooresville,NC,28117 +-80.854204,35.553979,Mount Mourne - Mooresville NC (W),235 Medical Park Road,Mooresville,NC,28117 +-80.876556,35.078653,Carolina Place Mall - Pineville NC (W),11025 Carolina Place Parkway,Pineville,NC,28134 +-80.870713,35.089366,"Carolinas Medical South - Charlotte NC (D, W)",9007 Pineville-Matthews Road,Charlotte,NC,28134 +-80.461252,35.659519,"Towne Creek Commons - Salisbury NC (D, W)",916 East Innes Street,Salisbury,NC,28145 +-80.850454,35.233491,Gateway Village - Charlotte NC (W),800 W. Trade St.,Charlotte,NC,28202 +-80.847251,35.222466,Charlotte Convention Center - Charlotte NC,501 S. College St.,Charlotte,NC,28202 +-80.843013,35.226223,Bank of America Plaza - Charlotte NC (W),101 S. Tryon Street,Charlotte,NC,28202 +-80.843283,35.201406,1401 East Blvd. - Charlotte NC (W),1401 East Boulevard,Charlotte,NC,28203 +-80.838819,35.206531,Carolina Medical (Kiosk) - Charlotte NC (W),1025 Morehead Medical Drive,Charlotte,NC,28204 +-80.8266,35.2122,Target Charlotte Midtown T-2244 - Charlotte NC,900 Metropolitan Ave.,Charlotte,NC,28204 +-80.817901,35.212407,7th Street - Charlotte NC (W),1961 East 7th Street,Charlotte,NC,28204 +-80.82447,35.202199,Providence Road - Charlotte NC (W),545 Providence Rd.,Charlotte,NC,28207 +-80.848625,35.17169,Park Towne Village - Charlotte NC (W),1630 Woodlawn Avenue,Charlotte,NC,28209 +-80.830117,35.15174,South Park Mall - Charlotte NC (W),4400 Sharron Road,Charlotte,NC,28211 +-80.824895,35.153299,Morrocroft Village - HT - Charlotte NC (W),6701 Morrison Blvd.,Charlotte,NC,28211 +-80.799385,35.17703,Cotswold Village Shops (Relo) - Charlotte NC,4450 Randolph Rd. Ste. 100,Charlotte,NC,28211 +-80.859338,35.349957,SuperTarget Charlotte North ST-2080 - Charlotte NC,9841 Northlake Ctr. Pkwy,Charlotte,NC,28216 +-80.85503,35.353111,Northlake Mall - North Charlotte NC,6801 Northlake Mall Drive,North Charlotte,NC,28216 +-80.942826,35.221821,CLT - Concourse D/E Connector - Charlotte NC (A),5501 Josh Birmingham Parkway,Charlotte,NC,28219 +-80.942826,35.221821,CLT - Main C/D Side Bookstore - Charlotte NC (A),5501 Josh Birmingham Parkway,Charlotte,NC,28219 +-80.942826,35.221821,CLT- Main Terminal Pre Security - Charlotte NC (A),5501 Josh Birmingham Pkwy,Charlotte,NC,28219 +-80.942826,35.221821,CLT - Charlotte Main Term Bookstore - Charlotte NC (A),5501 Josh Birmingham Parkway,Charlotte,NC,28219 +-80.942826,35.221821,CLT - Term B-Gate 12 Gift/News - Charlotte NC (A),5501 Josh Birmingham Parkway,Charlotte,NC,28219 +-80.924987,35.22234,CLT - Charlotte C-13 - Charlotte NC (A),5502 Josh Birmingham Parkway,Charlotte,NC,28219 +-80.729256,35.302518,University of North Carolina Charlo - Charlotte NC,9201 University City Blvd.,Charlotte,NC,28223 +-80.824322,35.11584,Olde Towne Village - Charlotte NC (W),4100 Carmel Road,Charlotte,NC,28226 +-80.84266,35.225055,Charlotte Plaza - Charlotte NC (W),201 South College Street,Charlotte,NC,28244 +-80.842841,35.22788,Independence - Charlotte NC (W),101 N. Tryon St.,Charlotte,NC,28246 +-80.771656,35.315878,Wachovia Bank - Charlotte NC,1525 W. WT Harris Blvd.,Charlotte,NC,28262 +-80.75794,35.339157,The Arbors - Charlotte NC (W),2121 East Arbors Drive,Charlotte,NC,28262 +-80.745604,35.3105,Mallard Pointe - Charlotte NC (W),9211 North Tryon Street,Charlotte,NC,28262 +-80.74097,35.296623,Harris-Teeter-Charlotte #258 - Charlotte NC,8514 University Center Blvd.,Charlotte,NC,28262 +-80.81146,35.33392,Davis Lake Commons - Charlotte NC (W),8439 Davis Lake Parkway,Charlotte,NC,28269 +-80.986667,35.103595,Rivergate - Charlotte NC (W),12807 South Tyron St.,Charlotte,NC,28273 +-80.985803,35.099899,Super Target Charlotte ST-2132 - Charlotte NC,12830 Walker Branch Dr,Charlotte,NC,28273 +-80.937674,35.136507,"Whitehall - Charlotte NC (D, W)",8951-A SOUTH TRYON STREET,Charlotte,NC,28273 +-80.90413,35.137432,"Arrowood Road - Charlotte NC (D, W)",7819 Forest Pine Drive,Charlotte,NC,28273 +-80.878671,35.107861,Target Pineville T-762 - Charlotte NC,9531 South Blvd.,Charlotte,NC,28273 +-80.851384,35.055266,"Ballantyne - Charlotte NC (D, W)",13855 Conlan Circle,Charlotte,NC,28277 +-80.848874,35.021977,Harris Teeter-Charlotte # 317 - Charlotte NC,16625 Lancaster Hwy.,Charlotte,NC,28277 +-80.816775,35.077802,Piper Glen - Charlotte NC (W),6432 Rea Road,Charlotte,NC,28277 +-80.815795,35.059115,Target Charlotte T-1087 - Charlotte NC,7860 Rea Rd.,Charlotte,NC,28277 +-80.812552,35.058134,Stonecrest - Charlotte NC (W),7922 Rea Road,Charlotte,NC,28277 +-80.808184,35.037436,Target Charlotte Far South T-2090 - Charlotte NC,9870 Rea Rd.,Charlotte,NC,28277 +-80.805982,35.038758,Blakeney - Charlotte NC (W),9820-A Rea Road,Charlotte,NC,28277 +-80.784477,35.097831,Harris Teeter Charlotte #30 - Charlotte NC,3333 Pineville Matthews Rd.,Charlotte,NC,28277 +-80.773587,35.063299,Promenade - Charlotte NC (W),5361 Ballantyne Commons Pkwy,Charlotte,NC,28277 +-80.770374,35.066091,Harris Teeter-Charlotte #45 - Charlotte NC,10616 Providence Road,Charlotte,NC,28277 +-78.962356,35.074707,"Cross Creek - Fayetteville NC (D, W)",565 Cross Creek Mall,Fayetteville,NC,28303 +-78.924464,35.045532,Harris Teeter-Fayetteville #25 - Fayetteville NC,2800 Raeford Rd.,Fayetteville,NC,28303 +-78.935067,35.039003,"Walter Reed Road - Fayetteville NC (D, W)",1445 Walter Reed Road,Fayetteville,NC,28304 +-78.9904,35.1455,Fort Bragg - Mini Mall - Fort Bragg NC,Building 42171 Reilly Road,Fort Bragg,NC,28307 +-78.974428,35.054939,Target Fayetteville T-755 - Fayetteville NC,2056 Skibo Rd.,Fayetteville,NC,28314 +-79.4133,35.1571,Aberdeen NC - Aberdeen NC (D),110 Columbus Drive,Aberdeen,NC,28315 +-77.905104,34.216358,Independence Mall - Wilmington NC (W),3500 Oleander Dr,Wilmington,NC,28403 +-77.870907,34.245553,College Street - Wilmington NC (W),317-1 S. College Road,Wilmington,NC,28403 +-77.82855,34.227916,Landfall - Wilmington NC (W),1705 Eastwood Rd.,Wilmington,NC,28403 +-77.828757,34.242127,Mayfaire Towne Centre - Wilmington NC (W),1005 International Drive,Wilmington,NC,28405 +-77.889121,34.196629,Harris Teeter - Wilmington #441 - Wilmington NC,2800 S. College Rd.,Wilmington,NC,28412 +-77.384285,34.767095,"Jacksonville - Jacksonville NC (D, W)",370 Western Boulevard,Jacksonville,NC,28546 +-76.808785,34.73881,Morehead City NC - Morehead City NC (D),5186 Hwy. 70,Morehead City,NC,28557 +-77.09926,35.098583,Target New Bern T-1015 - New Bern NC,3410 Dr. Martin Luther King Blvd.,New Bern,NC,28562 +-77.098993,35.100141,Harris Teeter - New Bern #221 - New Bern NC,2019 S. Glenburnie Road,New Bern,NC,28562 +-81.335671,35.75112,"Hickory North - Hickory NC (D, W)",1342 2nd St. NE,Hickory,NC,28601 +-81.313686,35.716261,Lenoir Rhyne Blvd. & I-40 - Hickory NC (D),1186 Lenoir Rhyne Blvd.,Hickory,NC,28602 +-80.861847,35.791584,"Statesville - Statesville NC (D, W)",1501 East Broad Street,Statesville,NC,28625 +-81.712819,35.735974,Ingles-Morganton #120 - Morganton NC,114 Carbon City Rd.,Morganton,NC,28655 +-82.549755,35.478781,Ingles-Arden #130 - Arden NC,301 Long Shoals Rd.,Arden,NC,28704 +-82.536553,35.448876,Target Asheville T-2011 - Arden NC,15 McKenna Rd.,Arden,NC,28704 +-82.728758,35.241178,Ingles-Brevard #67 - Brevard NC,710 N. Broad St.,Brevard,NC,28712 +-82.850606,35.551157,Ingles-Canton #55 - Canton NC,630 Champion Dr,Canton,NC,28716 +-83.18652,35.308197,Western Carolina University -Center - Cullowhee NC,517 Centennial Drive,Cullowhee,NC,28723 +-82.429726,35.289469,Ingles-Flat Rock #177 - Flat Rock NC,220 Highland Lake Rd.,Flat Rock,NC,28731 +-82.506467,35.441684,Ingles-Fletcher #43 - Fletcher NC,2901 Hendersonville Rd.,Fletcher,NC,28732 +-82.988139,35.504027,Ingles-Waynesville #23 - Waynesville NC,120 Barber Blvd.,Waynesville,NC,28786 +-82.566569,35.703293,Ingles - Weaverville #180 - Weaverville NC,140 Weaver Blvd.,Weaverville,NC,28787 +-82.546881,35.601189,Charlotte St. - Asheville NC (W),62 Charlotte Street,Asheville,NC,28801 +-82.5432,35.565224,Biltmore Village - Asheville NC (W),40 All Souls Crescent Street,Asheville,NC,28803 +-82.528395,35.523088,"Parkway Centre - Asheville NC (D, W)",1378 Hendersonville Road,Asheville,NC,28803 +-82.521361,35.498702,Ingles-Asheville #30 - Asheville NC,1865 Hendersonville Rd.,Asheville,NC,28803 +-82.552489,35.630373,Ingles-Asheville#3 - Asheville NC,915 Merrimon Ave.,Asheville,NC,28804 +-82.535621,35.595494,Ingles-Asheville #7 - Asheville NC,29 Tunnel Rd.,Asheville,NC,28805 +-82.526692,35.580806,Asheville Mall - Asheville NC (W),3 S. Tunnel Road,Asheville,NC,28805 +-82.488232,35.585779,Ingles-Asheville #4 - Asheville NC,1141 Tunnel Rd.,Asheville,NC,28805 +-82.631162,35.613966,Ingles-Asheville #62 - Asheville NC,575 New Leicester Hwy.,Asheville,NC,28806 +-81.18571,34.086354,Kroger-Irmo SC #2 - Irmo SC,7467 Woodrow St.,Irmo,SC,29063 +-81.194479,34.006462,Target Lexington T-2277 - Lexington SC,5119 Sunset Blvd.,Lexington,SC,29072 +-81.038705,33.999788,Gervais St. & Lincoln St. - Columbia SC,831 Gervais St.,Columbia,SC,29201 +-81.017083,33.999597,Saluda Ave-Harden St-Greene St. - Columbia SC (W),747 Saluda Ave.,Columbia,SC,29205 +-80.964259,34.017092,Forest Dr. & Trenholm - Columbia SC (W),4840 Forest Drive,Columbia,SC,29206 +-80.965439,33.982587,Garners Ferry & Old Woodlands Rd. - Columbia SC (W),6080-A Garners Ferry Rd.,Columbia,SC,29209 +-80.965229,33.982467,Target Garners Ferry T-1923 - Columbia SC,6090 Garners Ferry Rd.,Columbia,SC,29209 +-81.158408,34.072797,Harbison Rd. & Columbiana - Columbia SC,276 Harbison Blvd.,Columbia,SC,29212 +-81.155239,34.077048,Columbiana Centre - Columbia SC (W),100 Columbiana Circle,Columbia,SC,29212 +-81.057833,33.993067,Village @ Sandhills - Columbia SC,480-6 Town Center Place,Columbia,SC,29229 +-80.88138,34.117738,Kroger-Columbia SC #448 - Columbia SC,10136 Two Notch Rd.,Columbia,SC,29229 +-80.878845,34.1334,Two Notch Rd. (Village @ Sandhills) - Columbia SC (D),163-8 Forum Drive,Columbia,SC,29229 +-81.931469,34.96519,"N. Pine Street - Spartanburg SC (D, W)",805 North Pine Street,Spartanburg,SC,29303 +-81.704447,35.080377,"Gaffney - Gaffney SC (D, W)",102 Lemmons Lane,Gaffney,SC,29341 +-79.938015,32.785232,168 Calhoun Street - Charleston SC (W),168 Calhoun Street,Charleston,SC,29401 +-79.933383,32.781278,239 King Street - Charleston SC (W),239 King Street,Charleston,SC,29401 +-79.930126,32.789975,E. Bay Street - Charleston SC (W),475 E. Bay Street,Charleston,SC,29401 +-79.928403,32.783868,Harris Teeter Charleston #277 - Charleston SC,290 E. Bay St.,Charleston,SC,29401 +-79.93655,32.785809,King St. & Calhoun St. - Charleston SC (W),387 King St.,Charleston,SC,29403 +-80.035844,32.930322,N. Rivers & Ashley Phosphate - North Charleston SC (W),7250 Rivers Ave.,North Charleston,SC,29406 +-80.016818,32.867278,"Int'l Blvd. & Bentonville Pkwy. - North Charleston SC (D, W)",5060 International Blvd.,North Charleston,SC,29406 +-79.973811,32.776876,South Windermere - Charleston SC (W),6 Windermere Blvd.,Charleston,SC,29407 +-79.936905,32.742622,Piggly Wiggly - Charleston #26 - Charleston SC,1005 Harborview Drive,Charleston,SC,29412 +-79.946524,32.785284,MUSC Medical University of SC - Charleston SC,165 Ashley Ave.,Charleston,SC,29425 +-80.0925,32.6869,Newton Farms - Johns Island #1 - Johns Island SC,515 Freshfields Drive F-100,Johns Island,SC,29455 +-80.078423,32.721678,Piggly Wiggly - Johns Island #103 - Johns Island SC,3575 Maybank Highway,Johns Island,SC,29455 +-79.868213,32.792785,Coleman & Vincent - Mount Pleasant SC (W),730 Coleman Blvd.,Mount Pleasant,SC,29464 +-79.856883,32.841293,Belle Hall - Mount Pleasant SC (W),636-A Long Point Road,Mount Pleasant,SC,29464 +-79.889978,32.80275,Houston Northcutt - Mount Pleasant SC (W),920 Houston Northcutt Blvd.,Mount Pleasant,SC,29464 +-79.834131,32.829574,"US 17 & James Nelson - Mt Pleasant SC (D, W)",1824 Hwy. 17 North,Mt Pleasant,SC,29466 +-80.143203,33.027105,"US 17A & Berlin G. Myers - Summerville SC (D, W)",125 Angus Dr,Summerville,SC,29483 +-79.806436,34.188701,"Florence Mall Outparcel - Florence SC (D, W)",1933 W. Palmetto Street,Florence,SC,29501 +-78.818062,33.741081,Long Bay Resort - Myrtle Beach SC,7200 North Ocean Blvd.,Myrtle Beach,SC,29572 +-79.03849,33.553658,Piggly Wiggly - Murrells Inlet #54 - Murrells Inlet SC,4430 Hwy-17 Byp,Murrells Inlet,SC,29576 +-78.9364,33.6694,Piggly Wiggly - Myrtle Beach #134 - Myrtle Beach SC,1220 MOSER DR,Myrtle Beach,SC,29577 +-78.90871,33.7015,CoastalGrand Mall - Myrtle Beach SC (W),2000 Coastal Grand Circle,Myrtle Beach,SC,29577 +-78.893689,33.713126,Target Myrtle Beach T-963 - Myrtle Beach SC,1150 Seaboard St.,Myrtle Beach,SC,29577 +-78.883572,33.687933,Bay View Resort - Myrtle Beach SC,504 N. Ocean Blvd.,Myrtle Beach,SC,29577 +-78.878506,33.71864,US 17 & 29th Ave. - Myrtle Beach SC (W),1303 Celebrity Circle E-125,Myrtle Beach,SC,29577 +-78.87149,33.70003,The Breakers Resort Paradise Towers - Myrtle Beach SC,2005 North Ocean Blvd.,Myrtle Beach,SC,29577 +-78.965782,33.75896,Kroger-Myrtle Beach #26 - Myrtle Beach SC,3735 Renee Drive,Myrtle Beach,SC,29579 +-78.9358,33.7439,Piggly Wiggly - Conway #74 - Conway SC,200 Oakheart Rd.,Conway,SC,29579 +-78.683919,33.82501,"North Myrtle Beach - North Myrtle Beach SC (D, W)",549 Hwy. 17 N.,North Myrtle Beach,SC,29582 +-79.096026,33.483572,Litchfield Beach & Golf Resort - Pawleys Island SC,14276 Ocean Hwy.,Pawleys Island,SC,29585 +-82.401663,34.8456,Downtown/Westend - Greenville SC (W),550 South Main,Greenville,SC,29601 +-82.41367,34.821544,GMH Food Court - Greenville SC,701 Grove Rd.,Greenville,SC,29605 +-82.394506,34.824663,Augusta St. & Faris Rd. - Greenville SC (W),2111 Augusta St.,Greenville,SC,29605 +-82.337707,34.849728,Haywood Mall - Greenville SC (W),700 HAYWOOD RD,Greenville,SC,29607 +-82.337281,34.850212,"Haywood Rd. & Woods Crossing Rd. - Greenville SC (D, W)",649 Haywood Rd.,Greenville,SC,29607 +-82.279931,34.820977,Hendrix & Woodruff Rd. - Greenville SC (D),1467 Woodruff Road,Greenville,SC,29607 +-82.400266,34.890426,"N. Pleasantburg & Hwy. 253 - Greenville SC (D, W)",3230 N. Pleasantburg Drive,Greenville,SC,29609 +-82.3563,34.868987,"E. North St. & Pleasantburg - Greenville SC (D, W)",2431 East North St.,Greenville,SC,29615 +-82.264765,34.860048,"Pelham Rd. (D, W)",3915 Pelham Rd.,Greenville,SC,29615 +-82.8349,34.69102,"Tiger Blvd. & College Ave. - Clemson SC (D, W)",1082 Tiger Blvd.,Clemson,SC,29633 +-82.177792,34.211403,"Hwy. 25 & Hwy. 72 - Greenwood SC (D, W)",310 Bypass 72 NW,Greenwood,SC,29649 +-82.183195,34.951986,"Wade Hampton Blvd. & Brannon Dr. - Greer SC (D, W)",1378 Wade Hampton Blvd.,Greer,SC,29651 +-82.257912,34.704978,Target Simpsonville T-1870 - Simpsonville SC,694 Fairview Rd.,Simpsonville,SC,29680 +-82.257907,34.705743,Fairview Rd. & Hunters Wood Dr. - Simpsonville SC (D),657 Fairview Rd.,Simpsonville,SC,29681 +-82.277166,34.935739,Target Greer T-1937 - Taylors SC,6025 Wade Hampton Blvd.,Taylors,SC,29687 +-80.856094,34.9863,Harris Teeter - Indian Land #372 - Fort Mill SC,6271 Carolina Commons,Fort Mill,SC,29707 +-80.967017,35.028778,"Baxter Town Center - Fort Mill SC (D, W)",926 Market Street,Fort Mill,SC,29708 +-80.990684,34.976863,"Celanese Road - Rock Hill SC (D, W)",1303 Riverchase Blvd.,Rock Hill,SC,29732 +-81.717969,33.520646,Kroger-Aiken #675 - Aiken SC,1795 Whiskey Rd.,Aiken,SC,29803 +-81.95959,33.501546,"E. Martintown Rd. & Old Edgefield Rd. - North Augusta SC (D, W)",1234 Knox Ave.,North Augusta,SC,29841 +-77.110445,39.095853,Safeway-Rockville #1668 - Rockville MD,5510 Norbeck Rd.,Rockville,MD,29853 +-80.859032,32.268618,Kroger-Bluffton #499 - Bluffton SC,125 Towne Drive,Bluffton,SC,29910 +-80.84999,32.256861,"Bluffton - Bluffton SC (D, W)",1050 Fording Island Road,Bluffton,SC,29910 +-80.846296,32.245532,Piggly Wiggly - Bluffton #23 - Bluffton SC,50 Burnt Church Road,Bluffton,SC,29910 +-80.76539,32.15703,Island Crossing - Hilton Head Island SC (W),11 Palmetto Bay Rd.,Hilton Head,SC,29926 +-80.706387,32.21535,"Pineland Station - Hilton Head Island SC (D, W)",430 Hwy. 278,Hilton Head,SC,29926 +-80.71633,32.18736,Piggly Wiggly - Hilton Head Island SC,32 Shelter Cove Lane Z,Hilton Head Island,SC,29928 +-84.354253,34.085855,"Crabapple Rd. & Houze Rd. - Alpharetta GA (D, W)",12330 Crabapple Rd.,Alpharetta,GA,30004 +-84.318595,34.039738,Mansell Point - Alpharetta GA (W),1605 Mansell Rd.,Alpharetta,GA,30004 +-84.294748,34.069654,Alpharetta Crossing - Alpharetta GA (W),11770 Haynes Bridge Road,Alpharetta,GA,30004 +-84.292496,34.1053,"Bethany & Hwy. 9 - Alpharetta GA (D, W)",2955 Bethany Day Center Suite 100,Alpharetta,GA,30004 +-84.276989,34.092446,Windward Pkwy. @ Hwy. 9 - Alpharetta GA (W),5315A Windward Parkway,Alpharetta,GA,30004 +-84.270355,34.10121,SuperTarget Milton ST-2431 - Milton GA,13055 Hwy. 9,Milton,GA,30004 +-84.218559,34.134551,Kroger-Alpharetta #444 - Alpharetta GA,5665 St. Hwy. 9,Alpharetta,GA,30004 +-84.234453,34.059219,"Old Milton Pkwy. @ State Bridge - Alpharetta GA (D, W)",4180 &4190 Old Milton Pkwy,Alpharetta,GA,30005 +-84.241498,34.093117,The Terraces @ Winward - Alpharetta GA (W),3070 Windward Plaza,Alpharetta,GA,30005 +-84.01461,33.63079,Target Conyers T-2174 - Conyers GA,2195 Hwy. 20 SE,Conyers,GA,30013 +-83.98511,33.6315,"1515 Hwy. 138 - Conyers GA (D, W)",1515 SR-138,Conyers,GA,30013 +-84.01683,33.548145,Kroger-Covington #436 - Covington GA,5341 Highway 20 South,Covington,GA,30016 +-83.929434,34.049762,Kroger-Dacula #457 - Dacula GA,2700 Braselton Highway,Dacula,GA,30019 +-83.90783,34.04845,"Hamilton Mill Rd. & Braselton Hwy. - Dacula GA (D, W)",2085 Hamilton Creek Pkwy,Dacula,GA,30019 +-84.29911,34.046436,Northpoint Mall - Alpharetta GA (W),1000 Northpoint Circle,Alpharetta,GA,30022 +-84.285972,34.001741,Super Target Roswell East ST-2443 - Alpharetta GA,2600 Holcomb Bridge Rd.,Alpharetta,GA,30022 +-84.26989,33.985493,Holcomb Br. @ Barnwell - Alpharetta GA (W),8420 Holcomb Bridge Rd.,Alpharetta,GA,30022 +-84.269294,34.027542,Haynes Bridge Village - Alpharetta GA (W),9925 Haynes Bridge Road,Alpharetta,GA,30022 +-84.256841,34.088088,Alpharetta Barnes & Noble - Alpharetta GA (W),7660 North Point Parkway,Alpharetta,GA,30022 +-84.223312,34.049501,Kroger - Alpharetta GA #390 - Alpharetta GA,10945 State Bridge Rd.,Alpharetta,GA,30022 +-84.260334,34.076235,Target Alpharetta T-970 - Alpharetta GA,6000 N. Point Pkwy,Alpharetta,GA,30022 +-84.17682,34.099144,Super Target Johns Creek ST-2056 - Suwanee GA,2625 Peachtree Pkwy,Suwanee,GA,30024 +-84.176765,34.09989,"Peachtree Pkwy. & Brookwood Rd. - Suwanee GA (D, W)",2609 Peachtree Parkway,Suwanee,GA,30024 +-84.09612,34.044772,"Peachtree Ind Blvd. & Moore Rd. - Suwanee GA (D, W)",1041 Peachtree Industrial Blvd.,Suwanee,GA,30024 +-84.072402,34.063866,Kroger-Suwanee #426 - Suwanee GA,400 Peachtree Industrial Blvd. NW,Suwanee,GA,30024 +-84.295851,33.775482,Decatur Square - Decatur GA (W),133 East Court Square,Decatur,GA,30031 +-84.274517,33.793762,Kroger - Decatur #459 - Decatur GA,2875 North Decatur Blvd.,Decatur,GA,30033 +-84.091983,33.692451,Target Lithonia T-1909 - Lithonia GA,8109 Mall Pkwy,Lithonia,GA,30038 +-84.091668,33.69227,Stonecrest Mall -Retail Area - Lithonia GA,8000 Mall Parkway,Lithonia,GA,30038 +-84.194792,34.23855,Kroger - Cumming #432 - Cumming GA,2325 Bethelview Rd.,Cumming,GA,30040 +-84.174618,34.160964,Hwy. 9 & Bethelview - Cumming GA (W),2320 Atlanta Hwy.,Cumming,GA,30040 +-84.173985,34.153549,"Peachtree Pkwy. & Ronald Reagan Blvd. - Cumming GA (D, W)",435 Peachtree Parkway,Cumming,GA,30041 +-84.13429,34.186056,Super Target Cummings ST-1394 - Cumming GA,1525 Marketplace Blvd.,Cumming,GA,30041 +-84.132209,34.178621,"GA 400 @ Hwy. 20 - Cumming GA (D, W)",906 Buford Hwy.,Cumming,GA,30041 +-84.078528,33.981351,Discover Mills @ Sugarloaf Pkwy. - Lawrenceville GA,5900 Sugarloaf Parkway,Lawrenceville,GA,30043 +-84.024895,33.968071,"Hwy. 120 & Hwy. 316 - Lawrenceville GA (D, W)",860 Duluth hwy,Lawrenceville,GA,30043 +-83.98794,34.004887,Kroger-Lawrenceville #424 - Lawrenceville GA,1475 Buford Highway,Lawrenceville,GA,30043 +-84.052175,33.955086,Sugarloaf Pkwy. @ Old Norcross - Lawrenceville GA (W),4825 Sugarloaf Pkwy,Lawrenceville,GA,30044 +-84.005486,33.900875,"Hwy. 124 & Webb Gin House Rd. - Lawrenceville GA (D, W)",1249 Hwy. 124,Lawrenceville,GA,30045 +-84.09065,33.831487,Hwy. 78 & Lucerne - Lilburn GA (W),4615 Highway 78,Lilburn,GA,30047 +-84.059962,33.88457,Kroger-Lilburn #394 - Lilburn GA,3050 Five Forks Trickum,Lilburn,GA,30047 +-83.9075,33.84155,"Hwy. 78 & Hwy. 20 - Loganville - Loganville GA (D, W)",4270 Atlanta Hwy.,Loganville,GA,30052 +-83.886571,33.833552,Kroger-Loganville GA #679 - Loganville GA,4743 Atlanta Hwy.,Loganville,GA,30052 +-84.529367,33.881214,Church St. & Vann St. - Marietta GA (D),811 Church St.,Marietta,GA,30060 +-84.490923,33.966893,Kroger - Marietta #454 - Marietta GA,2100 Roswell Rd.,Marietta,GA,30062 +-84.481616,33.974081,"E. Piedmont - Marietta GA (D, W)",2424 Roswell Rd. NE,Marietta,GA,30062 +-84.427262,33.983726,Target Marietta T-2121 - Marietta GA,1401 Johnson Ferry Rd.,Marietta,GA,30062 +-84.627846,33.946364,"Dallas Hwy. & Villarica Rd. - Marietta GA (D, W)",2535 Dallas Highway,Marietta,GA,30064 +-84.603726,33.905495,"Powder Springs Rd. @ Macland - Marietta GA (D, W)",1721 Powder Springs Rd.,Marietta,GA,30064 +-84.623827,33.948491,Towne Center (B&N) - Marietta GA (W),50 Barrett Parkway,Marietta,GA,30066 +-84.460999,34.038158,Sandy Plains (Publix) - Marietta GA (W),3605 Sandy Plains Road NE,Marietta,GA,30066 +-84.480843,33.902572,"I-75 & Windy Hill Rd. - Marietta GA (D, W)",2580 Windy Hill Rd.,Marietta,GA,30067 +-84.41976,33.978769,Johnson Ferry & Woodlawn (Reloca) - Marietta GA (D),1207 Johnson Ferry Road,Marietta,GA,30068 +-84.411505,33.950333,Johnson Ferry & Paper Mill - Marietta GA (W),31 A Johnson Ferry Road,Marietta,GA,30068 +-84.420614,34.062257,Hwy. 92 & Mabry Rd. - Roswell GA (D),4646 Woodstock Rd.,Roswell,GA,30075 +-84.395952,34.062559,Super Target Roswell ST-1761 - Roswell GA,1135 Woodstock Rd.,Roswell,GA,30075 +-84.389057,34.005815,"Coleman Village - Roswell GA (D, W)",930 Marietta Highway,Roswell,GA,30075 +-84.379641,34.057199,"Hwy. 92 & King Rd. - Roswell GA (D, W)",680 West Crossville Rd.,Roswell,GA,30075 +-84.342383,34.044357,Roswell Marketplace - Roswell GA (W),10800 Alpharetta Highway,Roswell,GA,30076 +-84.317912,34.021097,Holcomb Place - Roswell GA (W),1530 Old Alabama Road,Roswell,GA,30076 +-84.014937,33.876778,Target Snellville T-917 - Snellville GA,1905 Scenic Hwy. N.,Snellville,GA,30078 +-84.01414,33.873117,"Ronald Reagan & Hwy. 124 - Snellville GA (D, W)",1920 Scenic Hwy.,Snellville,GA,30078 +-84.489274,33.843987,"I-285 & Atlanta Rd. - Smyrna GA (D, W)",4515 West Village Way,Smyrna,GA,30080 +-84.473213,33.887407,"Cumberland Market Place - Smyrna GA (D, W)",2680 Cobb Parkway,Smyrna,GA,30080 +-84.480189,33.895163,Target Smyrna T-373 - Smyrna GA,2201 Cobb Pkwy. SE,Smyrna,GA,30080 +-84.254172,33.84629,North Lake - Tucker GA (W),3983 LaVista Road,Tucker,GA,30084 +-84.209652,33.855727,Hwy. 29 & LaVista Rd. - Tucker GA (D),4294 Lawrenceville Hwy.,Tucker,GA,30084 +-84.132305,33.84147,Kroger-Stone Mountain #449 - Stone Mountain GA,1227 Rockbridge Rd. SW,Stone Mountain,GA,30087 +-84.119835,33.818649,SuperTarget Stone Mountain ST-1758 - Stone Mountain GA,2055 W. Park Place Blvd.,Stone Mountain,GA,30087 +-84.245704,33.940607,Peachtree Ind & S. Old Peachtree - Norcross GA (D),4895 Peachtree Industrial Blvd.,Norcross,GA,30092 +-84.226249,33.931592,Jay Bird Alley - Norcross GA (W),5975 Peachtree Pkwy,Norcross,GA,30092 +-84.169831,33.9217,Indian Trail @ Oak Brook Pkwy. - Norcross GA (W),1560 Indian Trail Lilburn Rd.,Norcross,GA,30093 +-84.143778,33.950828,Super Target Duluth ST-1779 - Duluth GA,3935 Venture Dr,Duluth,GA,30096 +-84.142076,33.962624,Kroger - Duluth #636 - Duluth GA,3093 Steve Reynolds Blvd.,Duluth,GA,30096 +-84.137381,33.958822,Gwinnett Marketplace - Duluth GA (W),3675 Satellite Blvd.,Duluth,GA,30096 +-84.191086,34.017736,Medlock & State Bridge - Duluth GA (W),9700 Medlock Bridge Road,Duluth,GA,30097 +-84.186295,34.012947,Target - Duluth T-0749 - Duluth GA,5950 State Bridge Rd.,Duluth,GA,30097 +-84.16933,34.06615,P'tree Pkwy. @ McGinnis Ferry Rd. - Suwanee GA (W),11720 Medlock Bridge Rd.,Suwanee,GA,30097 +-84.090531,33.997461,Kroger-Duluth #476 - Duluth GA,6555 Sugarloaf Parkway,Duluth,GA,30097 +-84.082666,34.00142,"Satellite Blvd. & Old P'tree Rd. - Duluth GA (D, W)",1611 Satellite Blvd.,Duluth,GA,30097 +-84.700526,34.049859,"Hwy. 41 & Mars Hill Rd. - Acworth GA (D, W)",3622 Cobb Parkway,Acworth,GA,30101 +-84.683846,34.036035,Super Target Acworth ST-2091 - Acworth GA,3352 Cobb Pkwy,Acworth,GA,30101 +-84.58367,33.85663,"E-W Connector & Floyd Rd. - Austell GA (D, W)",1025 East-West Connector SW,Austell,GA,30106 +-84.548375,34.172475,"Sixes Rd. & Ridge Rd. - Canton GA (D, W)",3241 Sixes Rd.,Canton,GA,30114 +-84.476388,34.249669,I-575 @ Hwy. 5 - Canton GA (W),1353 Riverstone Parkway,Canton,GA,30114 +-84.457214,34.237183,Super Target 2476 @ Canton - Canton GA,2022 Cumming Way,Canton,GA,30114 +-84.757277,34.129096,"Hwy. 113 & Hwy. 41 - Cartersville - Cartersville GA (D, W)",605 Main Street,Cartersville,GA,30120 +-84.74593,33.725594,Arbor Place - Douglasville GA (W),6700 Douglas Blvd.,Douglasville,GA,30135 +-84.736278,33.731352,"Chapel Hill Rd. @ I-20 - Douglasville GA (D, W)",2736 Chapel Hill Rd.,Douglasville,GA,30135 +-84.717992,33.699662,Kroger-Douglasville GA #485 - Douglasville GA,3875 Chapel Hill Road,Douglasville,GA,30135 +-84.78207,33.902737,"Hwy. 278 @ Hwy. 92 - Hiram GA (D, W)",4910 Jimmy Lee Smith Parkway,Hiram,GA,30141 +-84.740952,33.885726,Super Target Hiram ST-1400 - Hiram GA,5220 Jimmy Lee Smith Pkwy,Hiram,GA,30141 +-84.46186,34.465855,Kroger-Jasper #620 - Jasper GA,115 Bill Wiginton Pkwy,Jasper,GA,30143 +-84.595978,34.050433,"Cherokee & Shiloh - Kennesaw GA (D, W)",4069 Cherokee St.,Kennesaw,GA,30144 +-84.575358,34.00532,"Barrett Pkwy. & Barrett Lakes Blvd. - Kennesaw GA (D, W)",815 Barrett Parkway,Kennesaw,GA,30144 +-84.573099,34.03481,"Chastain & Busbee - Kennesaw GA (D, W)",745 Chastain Rd.,Kennesaw,GA,30144 +-84.571976,34.007595,Target Kennesaw T-981 - Kennesaw GA,740 Earnest Barrett Parkway NW,Kennesaw,GA,30144 +-84.562111,34.014321,I-75 & Barrett Pkwy. - Kennesaw GA (W),440 Ernest Barrett Parkway,Kennesaw,GA,30144 +-84.561399,34.013988,Town Center at Cobb - Kennesaw GA,400 Barrett Parkway,Kennesaw,GA,30144 +-84.646227,34.028501,"U.S. 41 @ Acworth - Kennesaw GA (D, W)",3103 Cobb Parkway NW,Kennesaw,GA,30152 +-84.75414,34.009575,Hwy. 381 & Hwy. 92 - Dallas GA (D),8655 Hiram Acworth Hwy.,Dallas,GA,30157 +-85.172061,34.260582,Turner McCall & Riverside - Rome GA (D),795 Turner McCall Blvd.,Rome,GA,30161 +-85.161664,34.247285,Kroger-Rome GA #667 - Rome GA,1476 Turner McCall Blvd. NE,Rome,GA,30161 +-84.4784,34.087048,"Hwy. 92 & Trickum Rd. - Woodstock GA (D, W)",12400 Highway 92,Woodstock,GA,30188 +-84.553614,34.113403,Kroger-Woodstock GA #463 - Woodstock GA,2295 TownLake Parkway,Woodstock,GA,30189 +-84.54347,34.105415,"Towne Lake Parkway - Woodstock GA (D, W)",2035 Towne Lake Parkway,Woodstock,GA,30189 +-84.528365,34.102816,Super Target Woodstock ST-1780 - Woodstock GA,140 Woodstock Square Ave.,Woodstock,GA,30189 +-84.469696,33.4737,"Hwy. 85 & Hwy. 92 - Fayetteville GA (D, W)",856 Hwy. 85 South,Fayetteville,GA,30214 +-84.442427,33.479547,Fayetteville - Fayetteville GA (W),98 Pavilion Parkway,Fayetteville,GA,30214 +-84.438683,33.481688,Target Fayetteville T-778 - Fayetteville GA,107 Pavillion Pkwy,Fayetteville,GA,30214 +-84.992986,33.041052,"Lafayette Pkwy. & S. Davis Rd. - La Grange GA (D, W)",1470 Lafayette Pkwy,La Grange,GA,30241 +-84.217663,33.464382,I-75 & Jonesboro Rd. - McDonough GA (D),1865 Jonesboro Rd.,McDonough,GA,30253 +-84.216809,33.467539,Super Target McDonough ST-1461 - McDonough GA,1850 Jonesboro Rd.,McDonough,GA,30253 +-84.18688,33.422108,"I-75 & Hwy. 20 - McDonough GA (D, W)",1479 Hwy. 20 West,McDonough,GA,30253 +-84.754198,33.396605,"Hwy. 34 @ I-85 - Newnan GA (D, W)",733 Bullsboro Road,Newnan,GA,30265 +-84.7534,33.37566,Kroger - Newnan #647 - Newnan GA,1100 Lower Fayetteville Road,Newnan,GA,30265 +-84.718094,33.3995,Kroger -Newnan #420 - Newnan GA,3150 East Hwy. 134,Newnan,GA,30265 +-84.589488,33.441007,Kroger-Peachtree City #422 - Peachtree City GA,1101 Peachtree Parkway,Peachtree City,GA,30269 +-84.56889,33.4078,Target Peachtree City T-2129 - Peachtree City GA,1209 Peachtree Pkwy. N.,Peachtree City,GA,30269 +-84.568618,33.407439,"Hwy. 54 & Broken Bow Ct - Peachtree City GA (D, W)",130 Peachtree East,Peachtree City,GA,30269 +-84.590752,33.3964,Peachtree City - Peachtree City GA (W),316 City Cir,Peachtree City,GA,30269 +-84.216336,33.512807,"Eagles Landing Pkwy. & Medical Blvd. - Stockbridge GA (D, W)",1058 Eagles Landing Parkway,Stockbridge,GA,30281 +-84.395439,33.761308,CNN Center - Atlanta GA,190 Marietta Street,Atlanta,GA,30303 +-84.388577,33.756774,Equitable - Atlanta GA (W),100 Peachtree St.,Atlanta,GA,30303 +-84.388433,33.758848,Westin Peachtree Plaza - Lobby - Atlanta GA,210 Peachtree Street NW,Atlanta,GA,30303 +-84.387778,33.760713,Atlanta Merchandise Mart - Atlanta GA (W),240 Peachtree Street NW,Atlanta,GA,30303 +-84.386027,33.760579,Marriott Marquis Atlanta- Lobby - Atlanta GA,265 Peachtree Center Ave.,Atlanta,GA,30303 +-84.389042,33.817804,"Peachtree Battle - Atlanta GA (D, W)",2333 Peachtree Road,Atlanta,GA,30305 +-84.38339,33.834187,Buckhead (B&N) - Atlanta GA (W),2900 Peachtree Road NE,Atlanta,GA,30305 +-84.37404,33.846075,"Disco Kroger - Atlanta GA (D, W)",3330 Piedmont Road,Atlanta,GA,30305 +-84.301388,33.959692,Mt. Vernon & D'woody Club Dr. - Dunwoody GA (W),2090 Dunwoody Club Dr,Dunwoody,GA,30305 +-84.348964,33.740379,Little Five Points - Atlanta GA (W),506 Moreland Avenue,Atlanta,GA,30307 +-84.34833,33.758449,Kroger - Atlanta #461 - Atlanta GA,1225 Caroline St.,Atlanta,GA,30307 +-84.346122,33.758448,Target Edgewood T-1964 - Atlanta GA,1275 Caroline St.,Atlanta,GA,30307 +-84.327339,33.787787,Emory Village - Atlanta GA (W),1569 North Decatur Road,Atlanta,GA,30307 +-84.388733,33.776722,Georgia Tech - Student Union (B&N) - Atlanta GA,48 Fifth St. NW,Atlanta,GA,30308 +-84.384305,33.778335,867 Peachtree - Atlanta GA (W),867 Peachtree Street,Atlanta,GA,30308 +-84.367211,33.779058,Monroe Dr. & 8th St. - Atlanta GA,931 Monroe Dr,Atlanta,GA,30308 +-84.387133,33.786647,21 14th Street - Atlanta GA (W),21 14th Street NE,Atlanta,GA,30309 +-84.383358,33.787242,14th St. & Peachtree St. - Atlanta GA (W),1197 Peachtree Rd.,Atlanta,GA,30309 +-84.374395,33.762177,Atlanta Medical Center - Atlanta GA,320 Parkway Dr. NE,Atlanta,GA,30312 +-84.395753,33.758335,Levy @ GA World Congress - Atlanta GA,285 International Drive,Atlanta,GA,30313 +-84.414238,33.803337, I-75 & Howell Mill Rd. - Atlanta GA (W),1801 Howell Mill Rd.,Atlanta,GA,30318 +-84.34365,33.857199,"Brookhaven - Atlanta GA (D, W)",3901 Peachtree Rd. NE,Atlanta,GA,30319 +-84.330205,33.894279,Cambridge Square - Atlanta GA (W),3520 Ashford Dunwoody Road,Atlanta,GA,30319 +-84.44406,33.639866,ATL - Atlanta Term 3 Simply Books - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.44406,33.639866,ATL - Atlanta TF-10 at Gate T3 - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.44397,33.639965,ATL - Atlanta AF-17 Gate A2 - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.44397,33.639965,ATL - Concourse A Gate 2 - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.44397,33.639965,ATL - Concourse D Gate 8 - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.443172,33.63759,ATL - Atlanta BF-1 Gate B28 - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.443172,33.63759,ATL - Atlanta DF-2 Gate D30 - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.443172,33.63759,ATL - Atlanta TF-3 Gate T12 - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.44311,33.6377,ATL A 16 - Atlanta GA (A),HMSHost TS-3-3,Atlanta,GA,30320 +-84.44242,33.642445,ATL Main Terminal Atrium - Atlanta GA (A),6000 N. Terminal Pkwy,Atlanta,GA,30320 +-84.372694,33.800575,Kroger - Atlanta #298 - Atlanta GA,1700 Monroe Dr. NE,Atlanta,GA,30324 +-84.371126,33.796156,Ansley Mall - Atlanta GA (W),1544 Piedmont Rd. NE,Atlanta,GA,30324 +-84.367104,33.825318,Piedmont & Sydney Marcus - Atlanta GA (W),2571 Piedmont Rd. NE,Atlanta,GA,30324 +-84.365988,33.825097,Target Buckhead T-2171 - Buckhead GA,2581 Piedmont Rd. NE,Buckhead,GA,30324 +-84.363649,33.84595,Lenox Kiosk - Atlanta GA,3393 Peachtree Rd.,Atlanta,GA,30326 +-84.427806,33.84978,West Paces Ferry - Atlanta GA (W),1200 West Paces Ferry Road NW,Atlanta,GA,30327 +-84.383433,33.920474,Kroger-Atlanta #467 - Atlanta GA,227 Sandy Springs Pl,Atlanta,GA,30328 +-84.378708,33.906906,"Roswell Road - Atlanta GA (D, W)",6160 Roswell Road,Atlanta,GA,30328 +-84.377925,33.937553,Abernathy Square - Atlanta GA (W),6681 K Roswell Rd.,Atlanta,GA,30328 +-84.334628,33.816089,"Briarcliff & LaVista - Atlanta GA (D, W)",2135 Briarcliff Road NE,Atlanta,GA,30329 +-84.330798,33.828134,"North Druid Hills & Briarcliff - Atlanta GA (D, W)",2321 N. Druid Hills Road,Atlanta,GA,30329 +-84.31337,33.81926,"North Druid & LaVista - Atlanta GA (D, W)",2826 North Druid Hills Rd.,Atlanta,GA,30329 +-84.508801,33.723497,"Cascade Road (UCO) - Atlanta GA (D, W)",3660 Cascade Road SW,Atlanta,GA,30331 +-84.348328,33.932429,Perimeter Point Shopping Center - Atlanta GA (W),1155 Mount Vernon Highway,Atlanta,GA,30338 +-84.335686,33.949392,"Dunwoody Village - Dunwoody GA (D, W)",5561 Chamblee-Dunwoody Road,Dunwoody,GA,30338 +-84.314592,33.921019,Dunwoody - Dunwoody GA (W),4516 Chamblee Dunwoody Road,Dunwoody,GA,30338 +-84.476113,33.868777,"I-285 @ Paces Ferry Rd. - Atlanta GA (D, W)",2495 Cumberland Pkwy. SE,Atlanta,GA,30339 +-84.470789,33.880123,Cumberland Mall - Atlanta GA (W),1152 Cumberland Mall,Atlanta,GA,30339 +-84.381549,33.888651,Kroger-Atlanta #350 - Atlanta GA,4920 Roswell Rd.,Atlanta,GA,30342 +-84.380545,33.871987,Roswell Rd. @ Chastain - Atlanta GA (W),4285 Roswell Rd.,Atlanta,GA,30342 +-84.362683,33.852954,Phipps Plaza - Atlanta GA,3500 Peachtree Rd. NE,Atlanta,GA,30342 +-84.4554,33.6754,"I-285 & Camp Creek Pkwy. (UCO) - East Point GA (D, W)",307 Camp Creek Point,East Point,GA,30344 +-84.34417,33.929206,Super Target Atlanta ST-2036 - Atlanta GA,125 Perimeter Ctr. Pl W.,Atlanta,GA,30346 +-84.341719,33.923981,Perimeter Mall - Atlanta GA (W),4400 Ashford Dunwoody Road,Atlanta,GA,30346 +-84.378577,33.903578,Target Sandy Springs Prado T-2333 - Sandy Springs GA,5610 Roswell Rd.,Sandy Springs,GA,30350 +-84.349559,33.994607,"Dunwoody Place - Atlanta GA (D, W)",8725 Roswell Road,Atlanta,GA,30350 +-84.3984,33.791381,Twelve Atlantic Station - Atlanta GA,361 17th st nw,Atlanta,GA,30363 +-84.3956,33.792,Target Atlanta T-2137 - Atlanta GA,375 18th St.,Atlanta,GA,30363 +-81.756329,32.434291,"Hwy. 80 & Brannen St. - Statesboro GA (D, W)",714 Northside Drive East,Statesboro,GA,30458 +-81.81029,32.475193,Georgia Southern University - Statesboro GA,1 Forest Dr,Statesboro,GA,30460 +-83.852148,34.295347,"Dawsonville Hwy. - Gainesville - Gainesville GA (D, W)",821 Dawsonville Hwy.,Gainesville,GA,30504 +-83.871281,34.372685,Kroger-Gainsville GA #437 - Gainesville GA,3630 Thompson Bridge Rd.,Gainesville,GA,30506 +-83.984689,34.078548,Millcreek Walk - Buford GA (W),3264 Buford Drive,Buford,GA,30519 +-83.984145,34.064225,Mall of Georgia - Buford GA (W),3333 Buford Dr,Buford,GA,30519 +-83.984034,34.077799,"Hwy. 20 & Gravel Springs Rd. - Buford GA (D, W)",3380 Buford Dr,Buford,GA,30519 +-83.463967,34.25664,"I-85 & US 441 - Commerce GA (D, W)",30600 Hwy. 441 So,Commerce,GA,30529 +-84.113106,34.4155,Kroger - Dawsonville #470 - Dawsonville GA,6625 SR-53,Dawsonville,GA,30534 +-84.490784,34.657091,"SR Hwy. 515 & Highland Pkwy. - Ellijay GA (D, W)",60 Highland Crossing South,Ellijay,GA,30539 +-83.913338,34.17833,Target Flowery Branch T-2387 - Flowery Branch GA,5865 Spout Springs Rd.,Flowery Branch,GA,30542 +-83.8589,34.196245,Kroger-Flowery Branch #632 - Oakwood GA,4025 Winder Hwy.,Oakwood,GA,30542 +-83.603744,34.123029,Kroger - Jefferson #638 - Jefferson GA,1685 Old Pendergrass Rd.,Jefferson,GA,30549 +-83.37521,33.957713,Athens - Athens GA (W),100 College Avenue,Athens,GA,30601 +-83.342782,33.920056,Kroger-Athens #255 - Athens GA,2301 COLLEGE STATION RD.,Athens,GA,30605 +-83.464752,33.940848,Hwy. 78 @ the 10 Loop - Athens GA (D),10 Huntington Rd.,Athens,GA,30606 +-83.446595,33.915711,Epps Bridge Rd. @ Hwy. 316 - Athens GA (D),1761 Epps Bridge Pkwy,Athens,GA,30606 +-83.75686,33.94397,Target 2493 @ Winder - Bethlehem GA,916 Loganville Hwy. Bldg 400,Bethlehem,GA,30620 +-84.931694,34.4987,"Hwy. 53 E. & Richardson Rd. - Calhoun GA (D, W)",605 Highway 53,Calhoun,GA,30701 +-84.961974,34.800363,"Cleveland Hwy. & North By-Pass - Dalton GA (D, W)",1305 Cleveland Hwy.,Dalton,GA,30719 +-84.993304,34.759802,Kroger - Dalton #458 - Dalton GA,1365 W. Walnut Ave.,Dalton,GA,30720 +-85.350404,34.974047,Rock City - Lookout Mountain GA,1400 Pattern Road,Lookout Mountain,GA,30750 +-82.132351,33.540965,Kroger - Evans #414 - Evans GA,4355 Washington Rd.,Evans,GA,30809 +-82.122481,33.528742,"Washington Rd. & Owens Rd. - Evans GA (D, W)",4237 Washington Rd.,Evans,GA,30809 +-82.121534,33.527283,Target Evans T-2027 - Evans GA,4223 Washington Rd.,Evans,GA,30809 +-82.123328,33.461434,Eisenhower Hospital - Main Entry - Fort Gordon GA,Bldg 300,Fort Gordon,GA,30905 +-82.107171,33.50813,Kroger - Martinez #294 - Martinez GA,4115 Columbia Rd.,Martinez,GA,30907 +-82.045465,33.512103,"I-20 & Washington - Augusta GA (D, W)",3018 Washington Rd.,Augusta,GA,30907 +-82.0806,33.465479,Augusta Mall - Augusta GA (W),3450 Wrightsboro Road,Augusta,GA,30909 +-82.079686,33.490638,Target Augusta T-1090 - Augusta GA,235 Robert C Daniel Jr. Pkwy,Augusta,GA,30909 +-82.079304,33.490329,"Augusta Exchange - Augusta GA (D, W)",228 Robert C Daniel Parkway,Augusta,GA,30909 +-82.077574,33.467484,"Wrightsboro Rd. & Capps St. - Augusta GA (D, W)",3422 Wrightsboro Rd.,Augusta,GA,30909 +-82.028496,33.511361,Kroger-Augusta GA #676 - Augusta GA,2801 Washington Rd.,Augusta,GA,30909 +-82.9297,32.547579,Kroger - Dublin #674 - Dublin GA,1100 Hillcrest Pkwy,Dublin,GA,31021 +-83.255045,33.109331,"US Hwy. 441 & Roberson Mill Rd. - Milledgeville GA (D, W)",2400 N. Columbia St.,Milledgeville,GA,31061 +-83.695756,32.616262,Kroger - Warner Robins GA #696 - Warner Robins GA,3094 Watson Boulevard,Warner Robins,GA,31088 +-83.67089,32.617978,"Watson Blvd. & Carl Vinson Pkwy. - Warner Robins GA (D, W)",2729 Watson Blvd.,Warner Robins,GA,31093 +-83.708983,32.873955,"Forsyth Rd. & Tucker Rd. - Macon GA (D, W)",4640 Forsyth Road,Macon,GA,31210 +-83.687077,32.900881,"I-75 @ Tom Hill Sr Blvd. - Macon GA (D, W)",121 Tom Hill Sr. Blvd.,Macon,GA,31210 +-81.6428,31.9703,AAFES/ Ft Stewart /Exchange - Hinesville GA,Ft Stewart Exchange,Hinesville,GA,31314 +-81.314674,31.951918,Kroger-Richmond Hill GA #688 - Richmond Hill GA,9701 Ford Avenue,Richmond Hill,GA,31324 +-81.091956,32.07895,Bull & Broughton - Savannah GA (W),1 East Broughton Street,Savannah,GA,31401 +-81.066969,32.042643,Target Savannah East T-2331 - Savannah GA,1907 E. Victory Dr,Savannah,GA,31404 +-81.063738,32.041222,Victory Dr. @ Skidaway Rd. - Savannah GA (D),2106 East Victory Drive,Savannah,GA,31404 +-81.1236,31.997892,Montgomery Cross Roads - Savannah GA (W),49 W. Montgomey Crossroads,Savannah,GA,31405 +-81.109158,32.025307,Twelve Oaks SC - Savannah GA (W),5500 Abercorn St.,Savannah,GA,31405 +-81.118648,32.004241,Oglethorpe Mall - Savannah GA (W),7804 Abercorn St.,Savannah,GA,31406 +-81.230506,32.135237,SAV - Savannah Main Rotunda - Savannah GA (A),400 Airways Ave.,Savannah,GA,31408 +-81.228165,32.137665,SAV- Main Terminal Post-Security - Savannah GA (A),460 Airways Ave.,Savannah,GA,31408 +-80.976931,32.017845,Kroger-Savannah #609 - Savannah GA,495 Johnny Mercer Blvd.,Savannah,GA,31410 +-81.22715,32.022186,Kroger - Savannah #645 - Savannah GA,5720 Ogeechee Rd.,Savannah,GA,31419 +-81.17492,31.98242,Target Savannah T-1910 - Savannah GA,14065 Abercorn St.,Savannah,GA,31419 +-81.147785,31.981794,Kroger - Savannah #404 - Savannah GA,14010 Abercorn St.,Savannah,GA,31419 +-82.339907,31.208548,Kroger-Waycross #439 - Waycross GA,1606 Memorial Dr.,Waycross,GA,31501 +-81.51986,31.217949,"Hwy. 341 & I-95 - Brunswick GA (D, W)",5043 New Jessup Highway,Brunswick,GA,31520 +-81.39078,31.16012,"Demere & Frederica - St. Simon's Island GA (D, W)",2209 Demere Rd.,St Simon's Island,GA,31522 +-81.483505,31.2033,Target Brunswick T-2301 - Brunswick GA,200 Glynn Isle Pkwy,Brunswick,GA,31525 +-81.482244,31.203358,"Altama & Golden Isles Pkwy. - Brunswick GA (D, W)",650 Glynn Isles,Brunswick,GA,31525 +-83.3281,30.8439,"I-75 @ St. Augustine Rd. - Valdosta GA (D, W)",1305 North St. Augustine Rd.,Valdosta,GA,31601 +-83.264357,30.813691,Valdosta State University - new bui - Valdosta GA,1500 Patterson Street,Valdosta,GA,31698 +-84.21564,31.609123,Phoebe Putney Medical Building - Albany GA,2709 Meredyth Dr,Albany,GA,31701 +-84.15756,31.590226,Phoebe Putney Memorial Hospital - Albany GA,417 3rd Ave.,Albany,GA,31702 +-83.492028,31.448265,"US Hwy. 82 @ I-75 - Tifton GA (D, W)",1204 Hwy. 82 West,Tifton,GA,31794 +-84.970993,32.532047,"Bradley Park & Belfast - Columbus GA (D, W)",1522 Bradley Park Dr,Columbus,GA,31904 +-84.962498,32.507283,SR 85 & Woodruff St. - Columbus GA (W),4519 Woodruff Rd.,Columbus,GA,31904 +-84.95347,32.370728,AAFES Ft. Benning Shopping Center - Ft. Benning GA,Bldg 9220 Marine Rd.,Ft. Benning,GA,31905 +-84.864494,32.3742,Ft. Benning Mc Graw Manor - Ft Benning GA,Edwards St. Blg 387,Ft Benning,GA,31905 +-84.957694,32.530126,"US 80 & Veterans Pkwy. - Columbus GA (D, W)",6783 Veterans Parkway,Columbus,GA,31909 +-81.7152,30.0985,Eagle Harbor - Orange Park FL (W),1544 County Rd. 200,Orange Park,FL,32003 +-81.451458,30.639667,Sadler Rd. & 14th St. - Fernandina Be - Fernandina Beach FL (W),1460 Sadler Rd.,Fernandina Beach,FL,32034 +-81.678504,29.992085,Hwy. 17 & SR 16 - Green Cove Springs - Green Cove Springs FL (W),328 Ferris St.,Green Cove Springs,FL,32043 +-82.616535,30.189017,"US 90 & Mall Entrance Rd-Lake City - Lake City FL (D, W)",2497 W. US 90,Lake City,FL,32055 +-82.107136,30.263973,"SR 228 & I-10 - MacClenny - MacClenny FL (D, W)",9200 SR 228,MacClenny,FL,32063 +-81.752273,30.150337,"Blanding & Bolton - Orange Park FL (D, W)",629 Blanding Blvd.,Orange Park,FL,32073 +-81.736886,30.188545,Super Target Orange Park ST-1503 - Orange Park FL,1919 Wells Rd.,Orange Park,FL,32073 +-81.27059,29.829425,A1A & State Rd. 3 - St. Augustine FL (W),1047 A1A Beach Blvd.,St. Augustine,FL,32080 +-81.401855,30.21757,Marriott Sawgrass - Ponte Vedra Beach FL,1000 Pga Tour Blvd.,Ponte Vedra Beach,FL,32082 +-81.380324,30.188342,SR A1A & Palm Valley - Ponte Vedra FL (W),2 Fairfield Boulevard,Ponte Vedra,FL,32082 +-81.49961,30.064014,CR 210 & I-95 - St. Augustine - St. Augustine FL (D),105 Fireworks Alley,St Augustine,FL,32092 +-81.38938,30.016199,"US 1 & International Golf Pkwy. - St. Augustine FL (D, W)",155 Palencia Village Dr.,St. Augustine,FL,32095 +-81.562,30.629,"A1A & Chester - Jacksonville - Yulee FL (D, W)",463749 SR 200,Yulee,FL,32097 +-81.553268,30.629756,Target Yulee T-2155 - Yulee FL,463737 State Rd. 200,Yulee,FL,32097 +-81.049033,29.18857,Embry-Riddle Student Center - Daytona Beach FL,600 S. Clyde Morris Blvd.,Daytona Beach,FL,32114 +-81.079678,29.18374,Target Daytona Beach T-688 - Daytona Beach FL,2380 W. International Spdwy Blvd.,Daytona Beach,FL,32114 +-81.024633,29.260916,A1A at Bellair Plaza - Daytona Beach FL (W),2429 N. Atlantic Ave.,Daytona Beach,FL,32118 +-81.009801,29.231062,A1A at The Bandshell - Daytona Beach FL (W),250 N. Atlantic Avenue #100,Daytona Beach,FL,32118 +-81.028146,29.109766,Super Target Port Orange ST-1795 - Port Orange FL,1771 Dunlawton Ave.,Port Orange,FL,32127 +-81.194452,29.562484,Palm Coast Pkwy. & I-95 - Palm Coast FL,216 Palm Coast Parkway NE,Palm Coast,FL,32137 +-81.93471,28.9305,Sumter Landing - The Villages FL (W),966 Old Mill Run,The Villages,FL,32159 +-81.913038,28.901234,Target Lady Lake T-2058 - Lady Lake FL,716 N. US Hwy. 441,Lady Lake,FL,32159 +-81.910244,28.897306,"US 441 & Rolling Acres - Lady Lake FL (D, W)",874 N. Hwy. 27/441,Lady Lake,FL,32159 +-81.9016,28.9068,Spanish Springs - The Villages FL (W),1101 Main St.,The Villages,FL,32159 +-81.1844,29.4757,Super Target Palm Coast ST-2364 - Palm Coast FL,5100 E. Hwy. 100,Palm Coast,FL,32164 +-81.110196,29.26045,SR 40 & I-95 - Ormond Beach FL,1425 W. Granada Blvd.,Ormond Beach,FL,32174 +-81.061988,29.283163,Granada & A1A - Ormond Beach FL (W),247 East Granada Blvd.,Ormond Beach,FL,32176 +-81.659628,30.325027,Jacksonville Landing - Jacksonville FL (W),2 Independent Dr,Jacksonville,FL,32202 +-81.680838,30.312048,Riverside Ave. @ Margaret Street - Jacksonville FL (W),1650 Margaret Street,Jacksonville,FL,32204 +-81.654854,30.304121,1980 San Marco Boulevard - Jacksonville FL (W),1980 San Marco Blvd.,Jacksonville,FL,32207 +-81.719806,30.280481,4495 Roosevelt Blvd. - Jacksonville FL (W),4495 Roosevelt Blvd.,Jacksonville,FL,32210 +-81.602446,30.291973,Beach & University - Jacksonville FL (W),5960-1 Beach Blvd.,Jacksonville,FL,32216 +-81.643336,30.260154,Lakewood Plaza - Jacksonville FL (W),1500-1 University Blvd. W.,Jacksonville,FL,32217 +-81.68114,30.493277,JAX Post Sec Food Court - Jacksonville FL (A),2400 Yankee Clipper Drive,Jacksonville,FL,32218 +-81.68111,30.493252,JAX C 6 - Jacksonville FL (A),2400 Yankee Clipper Drive,Jacksonville,FL,32218 +-81.676007,30.491125,JAX - Main Terminal - Jacksonville FL (A),2400 Yankee Clipper Drive,Jacksonville,FL,32218 +-81.662785,30.428402,"Dunn Ave. & Hart-Jacksonville - Jacksonville FL (D, W)",1044 Dunn Ave.,Jacksonville,FL,32218 +-81.638214,30.480046,"Starbucks:Airport Rd. & I-95 - Jacksonville - Jacksonville FL (D, W)",780 Nautica Drive,Jacksonville,FL,32218 +-81.82439,30.199038,Super Target - Jacksonville West S. - Jacksonville FL,9525 Crosshill Blvd.,Jacksonville,FL,32222 +-81.523346,30.26828,University of North Florida Library - Jacksonville FL,4567 St. Johns Bluff Road S.,Jacksonville,FL,32224 +-81.46515,30.254684,Windsor Commons - Jacksonville FL (W),4765-1 Hodges Blvd.,Jacksonville,FL,32224 +-81.456494,30.285463,Super Target Jacksonville ST-1921 - Jacksonville FL,13740 Beach Blvd.,Jacksonville,FL,32224 +-81.43815,30.288475,"Beach Blvd. & San Pablo Rd. - Jacksonville FL (D, W)",14355 Beach Blvd.,Jacksonville,FL,32224 +-81.502881,30.359267,Monument & McCormick - Jacksonville FL (W),2771 Monument Road,Jacksonville,FL,32225 +-81.458294,30.320974,"Hodges & Atlantic - Jacksonville FL (D, W)",13315 Atlantic Boulevard,Jacksonville,FL,32225 +-81.44578,30.321786,Atlantic Blvd. & Southside Blvd. - Jacksonville FL (W),9301 Atlantic Blvd.,Jacksonville,FL,32225 +-81.398089,30.325017,Shoppes of North Shore - Atlantic Beach FL (W),363 Atlantic Blvd.,Atlantic Beach,FL,32233 +-81.737768,30.19352,"Blanding Blvd. & I-295 - Jacksonville FL (D, W)",8635 Blanding Blvd.,Jacksonville,FL,32244 +-81.695323,30.236696,Super Target-Jacksonville ST-1853 - Jacksonville FL,6331 Roosevelt Blvd.,Jacksonville,FL,32244 +-81.52621,30.258137,JTB & I-295 - Jacksonville FL (W),10281 Midtown Parkway,Jacksonville,FL,32246 +-81.52502,30.260223,Target-Jacksonville T-1974 - Jacksonville FL,4567 River City Dr,Jacksonville,FL,32246 +-81.5217,30.2679,St. John's Town Center North - Jack - Jacksonville FL,4413 Town Center Pkwy,Jacksonville,FL,32246 +-81.390657,30.255331,Target Jacksonville Beach T-967 - Jacksonville Beach FL,490 Marsh Landing Pkwy,Jacksonville Beach,FL,32250 +-81.38958,30.267847,2400 3rd St. South - Jacksonville Beach FL (W),2400 3rd Street South,Jacksonville Beach,FL,32250 +-81.598572,30.243273,"JTB & US 1 - Jacksonville FL (D, W)",7153 Philips Highway,Jacksonville,FL,32256 +-81.556129,30.26444,Deerwood Park - Jacksonville FL (W),9700 Deer Lake Court,Jacksonville,FL,32256 +-81.554421,30.181496,The Avenues Mall - Jacksonville FL (W),10300 Southside Boulevard,Jacksonville,FL,32256 +-81.551844,30.189601,"Southside Blvd. & Bank of America - Jacksonville FL (D, W)",9940 Southside Blvd.,Jacksonville,FL,32256 +-81.551037,30.21995,Southside Blvd. & Baymeadows Rd. - Jacksonville FL (W),8221 Southside Blvd.,Jacksonville,FL,32256 +-81.618165,30.201791,"San Jose & St. Augustine - Jacksonville FL (D, W)",9661 San Jose Boulevard,Jacksonville,FL,32257 +-81.532464,30.14053,Old St. Augustine Rd. & I-95 - Jacks - Jacksonville FL (W),14560 St. Augustine Rd.,Jacksonville,FL,32258 +-81.66761,30.057804,Fruit Cove Rd. - Julington Creek - Jacksonville FL (W),119 Bartram Oaks Walk,Jacksonville,FL,32259 +-81.397826,30.324281,Atlantic & 3rd - Neptune Beach - Neptune Beach FL (D),327 Atlantic Blvd.,Neptune Beach,FL,32266 +-84.280645,30.441861,"N. Monroe & John Knox - Tallahassee FL (D, W)",2264-1 North Monroe Street,Tallahassee,FL,32301 +-84.255912,30.43736,Governor's Square Mall Tallahassee - Tallahassee FL (W),1500 APALACHEE PKWY,Tallahassee,FL,32301 +-84.244446,30.432423,Target Tallahassee T-844 - Tallahassee FL,2120 Apalachee Pkwy,Tallahassee,FL,32301 +-84.3097,30.448699,"1703 W. Tennessee - Tallahassee FL (D, W)",1703 W. Tennessee,Tallahassee,FL,32304 +-84.298294,30.442738,Florida State University/ Wildwood - Tallahassee FL,902 - 904 Wildwood Drive,Tallahassee,FL,32306 +-84.250108,30.503588,"I-10 & Thomasville Rd. - Tallahassee FL (D, W)",3425 Thomasville Road,Tallahassee,FL,32309 +-84.214295,30.561827,Target-Tallahassee T-1973 - Tallahassee FL,3751 Bradfordville Rd.,Tallahassee,FL,32309 +-84.25144,30.412268,Capital Circle & Blair Stone - Tallahassee FL (W),3551 Blairstone Rd. S.,Tallahassee,FL,32311 +-84.229671,30.542399,Thomasville & Kerry Forest Tallahas - Tallahassee FL,2887 Kerry Forest Pkwy.,Tallahassee,FL,32312 +-85.591003,30.159333,Tyndall & 7th - Panama City - Callaway FL (D),740 N. Tyndall Pkwy,Callaway,FL,32404 +-85.649478,30.189179,Hwy. 77 & 23rd St. - Panama City FL (W),2296-A Martin Luther King Blvd.,Panama City,FL,32405 +-85.8839,30.221,Target Panama City T-2208 - Panama City FL,15555 Starfish St.,Panama City,FL,32413 +-85.873764,30.21802,Pier Park & Hilton -Panama City Bea - Panama City Beach FL (W),600 Pier Park Dr.,Panama City Beach,FL,32413 +-85.858862,30.205971,Emerald Beach Resort - Panama City FL,14700 Front Beach Road,Panama City,FL,32413 +-85.649574,30.222963,Hwy. 77 & E. 25th St. - Lynn Haven FL (D),2424 S. Hwy. 77,Lynn Haven,FL,32444 +-86.163342,30.335885,Intrawest Uptown Grayton Beach - Santa Rosa Beach FL,17 Uptown Grayton Cir,Santa Rosa Beach,FL,32459 +-87.211306,30.472853,"Bayou Blvd. & Rave Access Dr. - Pensa - Pensacola FL (D, W)",5145 Bayou Blvd.,Pensacola,FL,32503 +-87.209558,30.472551,"Bayou Blvd. & 9th Ave. - Pensacola FL (D, W)",5040 Bayou Blvd.,Pensacola,FL,32503 +-87.211357,30.47394,Cordova Mall - Pensacola FL (W),5100 North 9th Avenue,Pensacola,FL,32504 +-87.301636,30.34837,Target Pensacola West T-2445 - Pensacola FL,2950 South Blue Angel Parkway,Pensacola,FL,32507 +-87.2764,30.3469,Sodexho/government services/mwr/pen - Pensacola FL,Radford Blvd. and Fisher Ave.,Pensacola,FL,32508 +-87.271,30.350136,Aviation Plaza- Food Court - Naval Station Pensacola FL,250 SauFley Street - Building 630,Naval Station Pensacola,FL,32508 +-87.227836,30.532393,"Nine Mile Rd. & Hillview Drive - Pensacola FL (D, W)",1701 E. Nine Mile Rd.,Pensacola,FL,32514 +-87.213351,30.532011,"Nine Mile & Pine Forest - Pensacola FL (D, W)",2200 W. Nine Mile Rd.,Pensacola,FL,32534 +-86.56661,30.734076,"SR 85 & Redstone Ave. - Crestview FL (D, W)",2520 S. Ferdon Blvd.,Crestview,FL,32536 +-86.48185,30.389387,Target Destin T-2085 - Destin FL,853 Harbor Blvd.,Destin,FL,32541 +-86.413506,30.3893,Destin Commons - Destin FL (W),4140 LEGANDARY DR,Destin,FL,32541 +-86.65855,30.561304,Main Store Food Court - Eglin AFB FL,Eglin Main Store Food Court,Eglin AFB,FL,32542 +-86.638409,30.429232,"Beal Pkwy. @ Mary Esther Cutoff - Ft Walton Beach FL (D, W)",575 North Beal Parkway,Ft Walton Beach,FL,32548 +-86.607997,30.417354,"Eglin & Walter Martin - Fort Walton - Fort Walton Beach FL (D, W)",95 Eglin Parkway NE,Fort Walton Beach,FL,32548 +-86.35475,30.38015,Hwy. 98 & Main Sail Dr. - Destin - Destin FL,10410 US Hwy. 98 W.,Destin,FL,32550 +-86.351253,30.381899,Intrawest Sandestin Baytowne - Destin FL,9000 Baytowne Wharf Blvd. #BB-4,Destin,FL,32550 +-86.229179,30.360857,Intrawest Sandestin Mkt Shops - Destin FL,9375 Highway 98 W. Suite 6,Destin,FL,32550 +-87.160854,30.357627,"Hwy. 98 - Gulf Breeze - Gulf Breeze FL (D, W)",346 Gulf Breeze Pkwy,Gulf Breeze,FL,32561 +-86.668874,30.409937,Target Mary Esther T-740 - Mary Esther FL,250 Miracle Strip Pkwy,Mary Esther,FL,32569 +-86.653888,30.416367,"Mary Esther & Hollywood - Mary Esth - Mary Esther FL (D, W)",340 Mary Esther Blvd.,Mary Esther,FL,32569 +-87.123042,30.603371,Target Pace (Milton) T-2279 - Milton FL,4727 US-90,Milton,FL,32571 +-82.339178,29.666702,NW 13th St. & NW 16th Ave. - Gainesville FL (W),1520 NW 13th St.,Gainesville,FL,32601 +-82.323891,29.650259,Union Street Station - Gainesville FL (W),201 SE First St.,Gainesville,FL,32602 +-82.419566,29.659538,Oaks Mall-Gainesville - Gainsville FL (W),6257 W. NEWBERRY RD,Gainsville,FL,32605 +-82.41423,29.659236,"6707 Newberry Rd. - Gainesville FL (D, W)",6707 Newberry Road,Gainesville,FL,32605 +-82.394251,29.689127,Magnolia Park - Gainesville FL (W),4780 NW 39th Ave.,Gainesville,FL,32606 +-82.390236,29.702,NW 43rd & Millhopper - Gainesville FL (W),5200 NW 43rd St.,Gainesville,FL,32606 +-82.381551,29.652677,39th and Newberry - Gainesville FL (W),3822 Newberry Rd.,Gainesville,FL,32607 +-82.373682,29.625284,3443 Archer Rd. - Gainesville FL (W),3443 Archer Road,Gainesville,FL,32608 +-82.386078,29.617479,University of Florida - The Hub - Gainesville FL,1600 SW Archer Road,Gainesville,FL,32610 +-82.386078,29.617479,University of Florida - Library - Gainesville FL,1600 SW Archer,Gainesville,FL,32610 +-82.348,29.6439,University of Florida J Wayne Reitz - Gainesville FL,686 Museum Drive,Gainesville,FL,32611 +-82.479096,29.656078,Tioga Town Center - Newberry FL (W),12921 SW 1st Road,Newberry,FL,32669 +-81.379997,28.663307,Renaissance Center - Altamonte Springs FL (W),355 E. Altamonte Drive,Altamonte Springs,FL,32701 +-81.467452,28.651733,"US 441 & Hiawassee Rd. - Apopka FL (D, W)",1720 S. Orange Blossom Trail,Apopka,FL,32703 +-81.44166,28.669264,"Bear Lake Rd. & SR 436 - Apopka - Apopka FL (D, W)",3850 E. SR 436,Apopka,FL,32703 +-81.338576,28.659159,"SR 436 & US 17-92 - Casselberry FL (D, W)",168 Semoran Blvd.,Casselberry,FL,32707 +-81.338417,28.67116,Target Casselberry T-898 - Casselberry FL,4410 S. USHwy 17-92,Casselberry,FL,32707 +-81.317485,28.625337,"SR 436 & Howell Branch Rd. - Casselberry FL (D, W)",2535 Howell Branch Rd.,Casselberry,FL,32707 +-81.272065,28.652712,"Willasprings - Winter Springs FL (D, W)",1400 Tuskawilla Road,Winter Springs,FL,32708 +-81.418567,28.66033,434 & Orange - Altamonte Springs FL (W),150 SR 434,Altamonte Springs,FL,32714 +-81.39277,28.687992,"Springs Centre - Altamonte Springs FL (D, W)",1195 Springs Center South Blvd.,Altamonte Springs,FL,32714 +-81.3478,28.756057,Lake Mary Blvd. & Rhinehart - Lake Mary FL (W),4044 Lake Mary Blvd.,Lake Mary,FL,32746 +-81.391032,28.632099,Maitland Sheraton - Maitland FL,600 N. Lake Destiny Dr,Maitland,FL,32751 +-81.363258,28.628937,US Hwy. 17/92 & Horatio Ave. - Maitland FL (W),254 N. Orlando Ave.,Maitland,FL,32751 +-81.668392,28.821,Target Dora T-2062 - Mount Dora FL,17450 Hwy. 441,Mount Dora,FL,32757 +-81.640408,28.824192,US 441 & Donnelly - Mt Dora,"19021 US Hwy 441, Loch Leven Landing",Mount Dora,FL,32757 +-81.292985,28.916214,Target Orange City T-874 - Orange City FL,2575 Enterprise Rd.,Orange City,FL,32763 +-81.235537,28.657507,Target Oviedo T-897 - Oviedo FL,820 Oviedo Marketplace Blvd.,Oviedo,FL,32765 +-81.3327,28.800692,Super Target Sanford ST-1966 - Sanford FL,1201 W. P Ball Blvd.,Sanford,FL,32771 +-81.40365,28.686888,Springs Plaza - Longwood FL (W),2425 West State Rd. 434,Longwood,FL,32779 +-80.844639,28.55376,Target Titusville T-2269 - Titusville FL,3055 Columbia Blvd.,Titusville,FL,32780 +-81.365462,28.601487,Winter Park Terrace - Winter Park FL (W),415 N. Orlando Ave.,Winter Park,FL,32789 +-81.351046,28.600594,400 Park Avenue - Winter Park FL (W),400 Park Avenue,Winter Park,FL,32789 +-81.327658,28.600219,Aloma Ave. & Lakemont Rd. - Winter Park FL (W),1900 Aloma Ave.,Winter Park,FL,32792 +-81.288951,28.597021,"University & Goldenrod - Winter Park FL (D, W)",7420 University Blvd.,Winter Park,FL,32792 +-81.286107,28.570249,Target Orlando/Winter Park T-2032 - Winter Park FL,3770 N. Goldenrod Rd.,Winter Park,FL,32792 +-81.378605,28.538725,The Grand Bohemian - Orlando FL (W),325 S. Orange Avenue,Orlando,FL,32801 +-81.375854,28.515104,"S. Orange & Crystal - Orlando FL (D, W)",2453 S. Orange Ave.,Orlando,FL,32801 +-81.368502,28.542908,Thornton Park - Orlando FL (W),20 N. SUMMERLIN AVE,Orlando,FL,32801 +-81.34981,28.553064,Colonial Plaza - Orlando FL (W),2604 E. Colonial Market,Orlando,FL,32803 +-81.34567,28.553387,"East Colonial Dr. & Maguire Rd. - Orlando FL (D, W)",3011 E. Colonial Dr,Orlando,FL,32803 +-81.389122,28.569406,Yale & Edgewater - Orlando FL (W),1915 Edgewater Drive,Orlando,FL,32804 +-81.380127,28.515594,Super Target Orlando Sodo ST-2376 - Orlando FL,120 W. Grant St.,Orlando,FL,32806 +-81.400344,28.44877,Florida Mall - Orlando FL (W),8001 S. Orange Blossom Trail,Orlando,FL,32809 +-81.397981,28.450319,Florida Mall Hotel - Orlando FL,1500 Sand Lake Rd.,Orlando,FL,32809 +-81.39702,28.463734,"OBT & Lancaster - Orlando FL (D, W)",6891 S. Blossom Trail,Orlando,FL,32809 +-81.39631,28.450992,1411 Sand Lake Rd. - Orlando FL (W),1411 Sand Lake Rd.,Orlando,FL,32809 +-81.458961,28.515144,"2573 Kirkman Road - Orlando FL (D, W)",2573 South Kirkman Road,Orlando,FL,32811 +-81.330903,28.481464,"Belle Isle - Belle Isle FL (D, W)",5072 S. Conway Rd.,Belle Isle,FL,32812 +-81.208253,28.608021,Alafaya & Corporate Blvd. - Orlando FL (W),4650 N. Alafaya Trail,Orlando,FL,32817 +-81.485786,28.553341,Super Target Orlando ST-1781 - Orlando FL,7501 W. Colonial Dr,Orlando,FL,32818 +-81.490756,28.451053,Marketplace at Dr. Phillips - Orlando FL (W),7600 Dr. Phillips Road,Orlando,FL,32819 +-81.484072,28.44989,Plaza Venezia - Orlando FL (W),7610 W. Sand Lake Rd.,Orlando,FL,32819 +-81.474674,28.477877,Universal Citywalk Orlando-2nd Flr - Orlando FL,1000 Universal Studios Plaza,Orlando,FL,32819 +-81.4738,28.4593,Prime Outlets @ Orlando - Orlando FL (W),4965 Prime Outlets Oak Ridge Road,Orlando,FL,32819 +-81.461481,28.477965,Doubletree Hotel @ Universal Studio - Orlando FL,5780 Major Blvd.,Orlando,FL,32819 +-81.458673,28.481575,Universal - Orlando FL (W),5555 Kirkman Rd.,Orlando,FL,32819 +-81.507144,28.360227,Lower Level-Marriott Orlando WC - Orlando FL,8701 World Center Dr,Orlando,FL,32821 +-81.502792,28.368702,"SR 535 & Vistana Centre Dr-Orlando - Orlando FL (D, W)",13401 Blue Heron Beach Dr.,Orlando,FL,32821 +-81.492457,28.387313,Orlando Premium Outlet - Orlando FL (W),8200 Vineland Ave.,Orlando,FL,32821 +-81.468452,28.41202,Renaissance Orlando Resort Lobby - Orlando FL,6677 Sea Harbor Dr,Orlando,FL,32821 +-81.467505,28.396214,Upper Level Gift Shop - Orlando FL,World Center Drive,Orlando,FL,32821 +-81.309001,28.46783,"Lee Vista - Orlando FL (D, W)",6605 S. Semoran Blvd.,Orlando,FL,32822 +-81.306886,28.43178,MCO - Airside 2 Rotunda - Orlando FL (A),9333Airport Blvd.,Orlando,FL,32827 +-81.306886,28.43178,MCO - Orlando Airside Four - Orlando FL (A),9333Airport Blvd.,Orlando,FL,32827 +-81.306886,28.43178,MCO - Orlando Airside One - Orlando FL (A),9333Airport Blvd.,Orlando,FL,32827 +-81.306886,28.43178,MCO - Orlando Main Term Atrium - Orlando FL (A),9333Airport Blvd.,Orlando,FL,32827 +-81.205948,28.554078,Orlando Waterford - Orlando FL (W),895 Alafaya Trail,Orlando,FL,32828 +-81.201799,28.552224,Super Target Orlando ST-1760 - Orlando FL,325 N. Alafaya Trail,Orlando,FL,32828 +-81.15009,28.526,Avalon Park Blvd. & Timber Springs - Orlando FL (W),457 Avalon Park N. Blvd.,Orlando,FL,32828 +-81.460916,28.493741,Kirkman & Conroy - Orlando FL (W),5814 Conroy Windermere Rd.,Orlando,FL,32835 +-81.471833,28.522467,Super Target Orlando ST-1790 - Orlando FL,2155 Town Center Blvd.,Orlando,FL,32837 +-81.428888,28.403143,JW Marriott Grand Lakes - Lobby - Orlando FL,4040 Central Florida Parkway,Orlando,FL,32837 +-81.424139,28.365972,Hunters Creek Commons - Orlando FL (W),13851 S. John Young Parkway,Orlando,FL,32837 +-81.431587,28.485553,Millennia Mall Downstairs - Orlando FL (W),4200 Conroy Rd.,Orlando,FL,32839 +-81.430755,28.493121,Super Target Orlando Milenia T-1518 - Orlando FL,4750 Millenia Plaza Way,Orlando,FL,32839 +-80.56619,28.091896,A1A & 5th Ave. - Indialantic FL (W),2 5th Ave. - Summit Bldg,Indialantic,FL,32903 +-80.665,28.0356,Target West Melbourne - T-2547 - West Melbourne FL,4305 Norfolk Parkway Ste. 103,West Melbourne,FL,32904 +-80.650981,28.081957,Melbourne Square Mall - Melbourne FL,1700 W. New Haven Ave.,Melbourne,FL,32904 +-80.648984,28.078446,Hwy. 192 & McClain St. - West Melbourne FL (W),1675 W. New Haven,West Melbourne,FL,32904 +-80.665432,28.078969,Target Melbourne Village T-689 - Melbourne Village FL,2750 W. New Haven Ave.,Melbourne Village,FL,32904 +-80.654832,28.03524,"Palm Bay Rd. & I-95 - Palm Bay FL (D, W)",810 Palm Bay Rd. NE,Palm Bay,FL,32905 +-80.607713,28.355521,Cocoa Beach Surf Company - Cocoa Beach FL,4001 N. Atlantic Ave.,Cocoa Beach,FL,32931 +-80.672062,28.163653,Wickham Rd. & Baymeadows Blvd. -Melbo - Melbourne FL (D),3660 N. Wickham Rd.,Melbourne,FL,32935 +-80.630592,28.128676,"Eau Gallie & US 1 Harbor B - Melborne FL (D, W)",1330 North Harbor City Blvd.,Melborne,FL,32935 +-80.58454,28.152054,A1A & Pine Tree Dr. Indian Harbor B - Indian Harbor Beach FL (W),1918 Hwy. A1A,Indian Harbor Beach,FL,32937 +-80.721881,28.230879,"Wickham Rd. & I-95 - Melbourne FL (D, W)",7351 Shoppes Dr,Melbourne,FL,32940 +-80.719784,28.227828,Super Target Viera ST-1934 - Viera FL,8455 N. Wickham Rd.,Viera,FL,32940 +-80.69713,28.35684,US 441 & Donnelly - Mt Dora,175 E Merritt Island Causeway,Merritt Island,FL,32952 +-80.706203,28.386335,Target Merritt Island T-1053 - Merritt Island FL,250 Crockett Blvd.,Merritt Island,FL,32953 +-80.721925,28.295262,"Barnes & Murrell Rockledge - Rockledge FL (D, W)",3820 Murrell Road,Rockledge,FL,32955 +-80.397599,27.64023,"Federal Hwy. & 12th St. - Vero Beach FL (D, W)",1235 US Hwy. 1,Vero Beach,FL,32962 +-80.456655,27.639612,"SR 60 & Indian River Mall - Vero Bc - Vero Beach FL (D, W)",6280 20th Street,Vero Beach,FL,32966 +-80.447839,27.640282,Target Vero Beach T-1050 - Vero Beach FL,5800 20th St.,Vero Beach,FL,32966 +-80.12947,25.986103,Hallandale & Golden Isle - Hallandale Beach FL (W),1805 E. Hallandale Beach Blvd.,Hallandale Beach,FL,33009 +-80.317678,25.853857,Target Hialeah T-2109 - Hialeah FL,1750 W. 37th St.,Hialeah,FL,33010 +-80.313709,25.867531,W. 49th St. & W. 16th Ave. - Hialeah FL (D),1595 W. 49th St.,Hialeah,FL,33012 +-80.294965,25.866696,"8th Ave. & 49th St. - Hialeah FL (D, W)",583 West 49th Street,Hialeah,FL,33012 +-80.342514,25.942577,Miami Gardens Dr. & NW 87th Ave. - Miami FL (W),18610 NW 87th Ave.,Miami,FL,33015 +-80.3188,25.9408,Red Rd. & NW 176th St. - Miami FL (W),17760 NW 57th Ave.,Miami,FL,33015 +-80.331418,25.912489,8012 NW 154th St. - Miami Lakes FL (W),8012 NW 154th St.,Miami Lakes,FL,33016 +-80.350599,25.892574,"Hialeah Gardens Blvd. & W. 76 St. - Hialeah FL (D, W)",7735 W. 33rd Avenue,Hialeah,FL,33018 +-80.143103,26.012968,Federal Hwy. & Young Circle - Hollywood FL,1801 N. Young Circle,Hollywood,FL,33020 +-80.176007,26.033125,N. Park Rd. & Sheridan St. - Hollywood FL (W),3305 Sheridan St.,Hollywood,FL,33021 +-80.174143,26.010825,3200 Hollywood Blvd. - Hollywood FL (W),3267 Hollywood Blvd.,Hollywood,FL,33021 +-80.197874,26.032645,Sheridan Place - Hollywood FL,5355 Sheridan Street,Hollywood,FL,33021 +-80.274926,26.007887,"Pines Blvd. & 96th - Pembroke Pines FL (D, W)",9700 Pines Blvd.,Pembroke Pines,FL,33024 +-80.301041,26.010767,Pembroke Lakes Mall - Pembroke Pines FL (W),11401 Pines Blvd.,Pembroke Pines,FL,33026 +-80.299102,26.009127,Target Pembroke Pines T-920 - Pembroke Pines FL,11253 Pines Blvd.,Pembroke Pines,FL,33026 +-80.35989,25.984079,Dykes Rd. & Miramar Pkwy. - Miramar FL,2945 SW 160th Ave.,Miramar,FL,33027 +-80.357515,26.00757,15810 Pines Blvd. - Pembroke Pines FL (D),15810 S. Pines Blvd.,Pembroke Pines,FL,33027 +-80.340345,25.978747,Miramar Pkwy. & SW 145th Ave. - Miramar FL (D),14673 Miramar Parkway,Miramar,FL,33027 +-80.3403,25.974,Shops at Pembroke Gardens - Pembroke Pines FL (W),501 SW 145th Terrace,Pembroke Pines,FL,33027 +-80.31254,26.02651,Flamingo Falls - Pembroke Pines FL (W),2026 North Flamingo Road,Pembroke Pines,FL,33027 +-80.252248,26.061323,Griffin Rd. & University Dr. - Davie FL (W),4751 S. University Drive,Davie,FL,33028 +-80.37215,25.980429,Super Target Miramar ST-1512 - Miramar FL,16901 Miramar Pkwy,Miramar,FL,33029 +-80.463546,25.480924,"US 1 & SW 312th St. - Homestead FL (D, W)",1029 North Homestead Blvd.,Homestead,FL,33030 +-80.475606,25.448238,"76 East Palm Drive - Florida City FL (D, W)",76 East Palm Dr,Florida City,FL,33034 +-80.440686,25.094326,"Mile Marker 100 - Key Largo FL (D, W)",99600 Overseas Highway,Key Largo,FL,33037 +-81.803415,24.556061,Crowne Plaza-La Concha - Key West FL,430 Duval Street,Key West,FL,33040 +-80.29256,25.939535,Target Opa Locka/Miami Lakes T-2196 - Miami Gardens FL,5601 NW 183rd St.,Miami Gardens,FL,33055 +-80.102741,26.227907,Pompano Plaza - Pompano Beach FL (W),423 S. Federal Highway,Pompano Beach,FL,33062 +-80.100197,26.25514,"1800 N. Federal Hwy. - Pompano Beach FL (D, W)",1800 N. Federal Highway,Pompano Beach,FL,33062 +-80.223949,26.235309,Atlantic Blvd. & Rock Island Rd. - Margate FL (W),7374 W. Atlantic Blvd.,Margate,FL,33063 +-80.250687,26.266223,Trade Center - Coral Springs FL (W),2800 University Drive,Coral Springs,FL,33065 +-80.20169,26.28498,Super Target Coral Springs T-2146 - Coral Springs FL,4400 N. State Rd. 7,Coral Springs,FL,33065 +-80.251804,26.29697,Target Coral Springs NW T-2265 - Coral Springs FL,9600 Westview Dr,Coral Springs,FL,33067 +-80.202995,26.317936,Shops at Parkland - Parkland FL (W),7091 N. State Road 7,Parkland,FL,33073 +-80.186966,26.305037,Sawgrass Rd. & Lyons Rd. - Coconut Creek FL (D),6111 Lyons Road,Coconut Creek,FL,33073 +-80.186538,26.283294,Lyons Rd. & Wiles Rd. - Coconut Creek FL (W),4425 Lyons Rd.,Coconut Creek,FL,33073 +-80.278696,26.308751,Holmberg & Coral Springs Dr. - Coral Springs FL (W),6051 Coral Ridge Dr,Coral Springs,FL,33076 +-80.324618,25.796559,"NW 79th Ave. & NW 25th St. - Doral FL (D, W)",7840 NW 25th St.,Doral,FL,33122 +-80.324209,25.79339,MIA - Main E. Food Ct - Miami FL (A),4200 NW 21st Street,Miami,FL,33122 +-80.275614,25.796549,MIA D 35A-F - Miami FL (A),Miami InternationalAirport,Miami,FL,33122 +-80.230233,25.813881,MIA - Miami Term E. - Miami FL (A),4200 NW 21st Street,Miami,FL,33122 +-80.230233,25.813881,MIA - Miami Term H Gate 4 - Miami FL (A),4200 NW 21st Street,Miami,FL,33122 +-80.2762,25.719033,U of Miami - Richter Library - Coral Gables FL,1350 Miller Drive,Coral Gables,FL,33124 +-80.32248,25.860353,MIA South Term. J7 (Retail) - Miami FL (A),4250 NW 20th St.,Miami,FL,33126 +-80.288605,25.778004,5711 NW 7th Ave. - Miami FL (W),5711 NW 7th St.,Miami,FL,33126 +-80.26386,25.783464,Marriott MiamiAirport - Miami FL,1201 NW LeJune Road,Miami,FL,33126 +-80.229437,25.794558,MIA - Miami Terminal B - Miami FL (A),4250 NW 20th Building 2074,Miami,FL,33126 +-80.195084,25.806324,Target Miami Central T-2188 - Miami FL,3111 N. Miami Ave.,Miami,FL,33127 +-80.193258,25.76543,10th St. & South Miami Ave. - Miami FL (W),901 South Miami Avenue,Miami,FL,33130 +-80.191162,25.762529,JW Marriott Miami Lobby - Miami FL,1109 Brickell Ave.,Miami,FL,33131 +-80.185315,25.772403,Intercontinental Hotel - Miami - Miami FL,100 Chopin Plaza,Miami,FL,33131 +-80.188994,25.773368,SE 3rd Ave. & 1st Street - Miami FL (W),110 SE 3rd Ave.,Miami,FL,33132 +-80.185952,25.77639,Bayside - Miami FL (W),401 Biscayne Blvd.,Miami,FL,33132 +-80.241985,25.728696,Cocowalk Relo - Miami FL,3015 Grand Ave.,Miami,FL,33133 +-80.258625,25.749594,The Miracle Building - Coral Gables FL (W),200 Miracle Mile,Coral Gables,FL,33134 +-80.194536,25.774402,47 W. Flagler St. - Miami FL (W),47 West Flagler Street,Miami,FL,33136 +-80.189031,25.805127,Biscayne Blvd. & 30th - Miami FL (W),2937 Biscayne Blvd.,Miami,FL,33137 +-80.193428,25.862405,95th St. & 2nd Ave. - Miami Shores FL (W),9488 NE 2nd Ave.,Miami Shores,FL,33138 +-80.183933,25.838397,Biscayne & 69th St. (UCO) - Miami FL (W),6815 Biscayne Boulevard,Miami,FL,33138 +-80.351669,27.629088,Il Villagio - South Beach FL (W),1455 Ocean Drive,South Beach,FL,33139 +-80.141782,25.780188,10th St. & West Ave. - Miami Beach FL (W),959 West Avenue,Miami Beach,FL,33139 +-80.141431,25.78868,16th & Alton - Miami Beach FL (W),1570 Alton Road,Miami Beach,FL,33139 +-80.136313,25.79062,Lincoln & Meridian - Miami Beach FL (W),749 Lincoln Road,Miami Beach,FL,33139 +-80.134287,25.790673,Lincoln & Pennsylvania - Miami Beach FL (W),601 Lincoln Rd.,Miami Beach,FL,33139 +-80.132393,25.7906,416 Lincoln Rd. - Miami Beach FL (W),416 Lincoln Rd.,Miami Beach,FL,33139 +-80.132195,25.770424,Marriott South Beach-Miami - Miami Beach FL,161 Ocean Dr,Miami Beach,FL,33139 +-80.131948,25.783148,1201 Washington Ave. - Miami Beach FL (W),1201 Washington Ave.,Miami Beach,FL,33139 +-80.121951,25.819519,Eden Roc South Beach - Miami FL,4525 Collins Avenue,Miami,FL,33140 +-80.333668,25.702244,Sunset & 87th - Miami FL (W),8660 SW 72nd Street,Miami,FL,33143 +-80.305543,25.692911,Target Miami Dadeland T-1039 - Miami FL,8350 S. Dixie Hwy.,Miami,FL,33143 +-80.2872,25.704097,Sunset & 57th Ave. - Miami FL (W),5796 Sunset Drive,Miami,FL,33143 +-80.332632,25.761957,Tamiami Plaza - Miami FL (W),8442 SW 8th Street,Miami,FL,33144 +-80.237641,25.750417,2645 SW 22nd St. - Miami FL (W),2645 SW 22nd St.,Miami,FL,33145 +-80.27435,25.716481,South Dixie - Coral Gables FL (W),1122 S. Dixie Hwy.,Coral Gables,FL,33146 +-80.263162,25.725665,"475 S. Dixie Hwy. - Coral Gables FL (D, W)",475 South Dixie Hwy.,Coral Gables,FL,33146 +-80.16367,25.697655,200 Crandon Blvd. - Key Biscayne FL (W),200 Crandon Blvd.,Key Biscayne,FL,33149 +-80.321308,25.735849,Target Miami T-968 - Miami FL,7795 SW 40th St.,Miami,FL,33155 +-80.338027,25.758783,Dadeland Mall Macy's West - Miami FL (W),7575 SW 88th Street,Miami,FL,33156 +-80.319749,25.688372,Greenery Mall - Miami FL (W),7708 North Kendall Drive,Miami,FL,33156 +-80.316198,25.688649,Dadeland Mall Kiosk - Miami FL (W),7535 North Kendall Drive,Miami,FL,33156 +-80.31065,25.686317,"9001 S. Dixie Hwy. - Pinecrest FL (D, W)",9095 S. Dixie Highway,Pinecrest,FL,33156 +-80.300137,25.695757,Dixie/Ludlam - Miami FL (W),6603 South Dixie Hwy.,Miami,FL,33156 +-80.324723,25.664375,Suniland Plaza - Miami FL (W),11515 S. Dixie Hwy.,Miami,FL,33156 +-80.309842,25.614726,Old Cutler Rd. & SW 168th St. - Palmetto Bay FL (W),7290 SW 168th St.,Palmetto Bay,FL,33157 +-80.123046,25.934415,RK Centre North - Miami Beach FL (W),17100 Collins Avenue,Miami Beach,FL,33160 +-80.156466,25.926433,163rd St. & West Dixie Hwy. - North Miami Beach FL (W),2195 NE 163rd St.,North Miami Beach,FL,33162 +-80.281235,25.821832,52 Curtiss Pkwy. - Miami Springs FL (W),52 Curtiss Pkwy,Miami Springs,FL,33166 +-80.377607,25.786696,Dolphin Mall - Miami FL (W),11401 NW 12th St.,Miami,FL,33172 +-80.36834,25.791464,19th St. & 107th Ave. - Doral FL (W),10690 NW 19th St.,Doral,FL,33172 +-80.427674,25.728845,Bird Rd. & 144th Ave. - Miami FL (W),14401 SW 42nd Street,Miami,FL,33175 +-80.370931,25.672204,10834 SW 104th Street - Miami FL (W),10834 SW 104th Street,Miami,FL,33176 +-80.365825,25.686559,Kendall Dr. & SW 107 Ave. - Miami FL (W),8805 SW 107th Ave.,Miami,FL,33176 +-80.338732,25.63295,"14795 S. Dixie Hwy. - Miami FL (D, W)",14795 South Dixie Hwy.,Miami,FL,33176 +-80.336212,25.643659,The Falls Mall - Miami FL (W),8888 SW 136th Street,Miami,FL,33176 +-80.41609,25.626288,SW 152nd St. & SW 137th Ave. - Miami FL (W),13725 SW 152nd St.,Miami,FL,33177 +-80.19755,25.814127,Doral Plaza - Miami FL (W),9709-101 NW 41st Street,Miami,FL,33178 +-80.148001,25.943479,18299 Biscayne Blvd. - Aventura FL (W),18215 Biscayne Blvd.,Aventura,FL,33180 +-80.146575,25.95233,Biscayne & 191st St. - Aventura FL (W),19127 Biscayne Blvd.,Aventura,FL,33180 +-80.15997,25.900287,"Keystone Plaza - North Miami Beach FL (D, W)",13503 Biscayne Blvd.,North Miami Beach,FL,33181 +-80.15859,25.905897,Target Miami Beach T-1038 - Miami Beach FL,14075 Biscayne Blvd.,Miami Beach,FL,33181 +-80.425515,25.760481,8th St. & 142nd Ave. - Miami FL (W),14200 SW 8th St.,Miami,FL,33184 +-80.49984,25.652268,"SW 120th St. & SW 127th Ave. - Miami FL (D, W)",12512 SW 120th St.,Miami,FL,33186 +-80.414709,25.685282,Kendall Dr. & SW 137th Ave. - Kendall FL (W),13604 N. Kendall Dr,Kendall,FL,33186 +-80.371084,25.575631,Southland Mall - Cutler Bay FL (W),20505 South Dixie Hwy.,Cutler Bay,FL,33189 +-80.3391,25.576962,Old Cutler Rd. & SW 92nd Ave. - Miami FL (W),20525 Old Cutler Rd.,Miami,FL,33189 +-80.45727,25.684223,Kendall Dr. & 162nd Ave. - Miami FL (D),16305 SW 88 Street,Miami,FL,33196 +-80.437919,25.685617,Target Miami T-746 - Miami FL,15005 SW 88th St.,Miami,FL,33196 +-80.415805,25.653119,SW 120th St. & SW 137th Ave. - Miami FL (D),12305 SW 137th Ave.,Miami,FL,33196 +-80.376256,25.760996,Florida International University - Miami FL,11200 SW 8th St.,Miami,FL,33199 +-80.144938,25.957102,Aventura Mall Phase II - Aventura FL (W),19501 Biscayne Blvd.,Aventura,FL,33242 +-82.59701,28.044868,Montague & Linebaugh - Tampa FL (W),10118 Montague Blvd.,Tampa,FL,33269 +-80.137009,26.122167,SEC Broward & Federal - Fort Lauderdale FL (W),10 S. Federal Highway,Fort Lauderdale,FL,33301 +-80.112469,26.138052,Sunrise & Bayview - Fort Lauderdale FL (W),2519 E. Sunrise Blvd.,Fort Lauderdale,FL,33304 +-80.090352,26.23669,Westin Beach Resort - Ft Lauderdale FL,321 N. Route A1A,Ft Lauderdale,FL,33304 +-80.133228,26.159682,1015 NE 26th St. - Wilton Manors FL (W),1015 NE 26th St.,Wilton Manors,FL,33305 +-80.1203,26.149265,1615 N. Federal Hwy. - Fort Lauderdale FL (W),1615 North Federal Highway,Fort Lauderdale,FL,33305 +-80.116473,26.169349,Target Fort Lauderdale T-1163 - Ft. Lauderdale FL,3200 N. Federal Hwy.,Ft. Lauderdale,FL,33306 +-80.14028,26.118698,350 Las Olas - Ft.Lauderdale FL (W),350 Las Olas Center,Ft.Lauderdale,FL,33309 +-80.238525,26.079908,Nova Southeastern University - Fort Lauderdale FL,3301 College Ave.,Fort Lauderdale,FL,33314 +-80.142442,26.102816,Broward General Medical Ctr. - Ft Lauderdale FL (W),1600 South Andrews Ave.,Ft Lauderdale,FL,33316 +-80.136633,26.107899,"Davie Blvd. & Federal Hwy. - Ft. Lauderdale FL (D, W)",1150 South Federal Hwy.,Ft. Lauderdale,FL,33316 +-80.12736,26.100643,17th St. & 15th Ave. - Ft Lauderdale FL (W),1501 SE 17th St. Causeway,Ft Lauderdale,FL,33316 +-80.105725,26.105972,Harbor Beach Marriott - Ft Lauderdale FL,3030 Holiday Dr,Ft Lauderdale,FL,33316 +-80.240758,26.120948,Plantation Towne Square - Plantation FL (W),6981 W. Broward Blvd.,Plantation,FL,33317 +-80.268546,26.146743,"Sunrise Jacaranda Square - Plantation FL (D, W)",1891 North Pine Island Road,Plantation,FL,33322 +-80.331795,26.145967,Sunrise Blvd. & Panther Pkwy. - Sunrise FL (W),13755 West Sunrise Blvd.,Sunrise,FL,33323 +-80.323904,26.144997,Flamingo Rd. & Sunrise Blvd. - Sunrise FL (W),12801 W. Sunrise Blvd.,Sunrise,FL,33323 +-80.319071,26.156189,Super Target Sawgrass ST-815 - Fort Lauderdale FL,12801 W. Sunrise Blvd.,Fort Lauderdale,FL,33323 +-80.287506,26.134228,Cleary & Nob Hill - Plantation FL (W),827 Nob Hill Road,Plantation,FL,33324 +-80.330714,26.121762,NW 136th Ave. & I-595 - Sunrise FL (W),101 NW 136TH Ave.,Sunrise,FL,33325 +-80.394127,26.116775,Lakes Plaza/Weston - Weston FL (W),310 Indian Trace Road,Weston,FL,33326 +-80.381324,26.096954,Weston Town Center - Weston FL (W),1739 Main St.,Weston,FL,33326 +-80.261328,26.045215,Stirling Rd. & Pine Island Rd. - Cooper City FL (W),8751 Stirling Rd.,Cooper City,FL,33328 +-80.249638,26.047704,Super Target Ft Lauderdale/Davie ST - Davie FL,5800 S. University Dr,Davie,FL,33328 +-80.36245,26.0627,Griffin & Weston - Weston FL (W),4503 Weston Road,Weston,FL,33331 +-80.360043,26.030057,"Sheridan St. & Dykes Rd. - Town of Southwest Ranches FL (D, W)",15951 Sheridan St.,Town of Southwest Ranches,FL,33331 +-80.257032,26.170005,"Springtree & University - Sunrise FL (D, W)",3551 N. University Dr.,Sunrise,FL,33351 +-80.253746,26.193563,Super Target Lauderhill ST-1778 - Fort Lauderdale FL,7730 W. Commercial Blvd.,Fort Lauderdale,FL,33351 +-80.251939,26.191952,Commerical & University - Lauderhill FL (W),5435 N. University Drive,Lauderhill,FL,33351 +-80.085576,26.722047,Target West Palm Beach T-2427 - West Palm Beach FL,1760 Palm Beach Lakes Blvd.,West Palm Beach,FL,33401 +-80.057134,26.708592,Palladium at City Place - West Palm Beach FL (W),600 S. Rosemary Ave.,West Palm Beach,FL,33401 +-80.051401,26.713295,Clematis St. - West Palm Beach FL (W),226 Clematis St.,West Palm Beach,FL,33401 +-80.082939,26.803669,Target Lake Park T-1941 - Lake Park FL,500 N. Congress Ave.,Lake Park,FL,33403 +-80.0909,26.6623,PBI - West Palm Conc C Secur. Entr - West Palm Beach FL (A),Belvedere Rd.,West Palm Beach,FL,33406 +-80.090697,26.688618,PBI - West Palm Concourse-B - West Palm Beach FL (A),Palm Beach Int'lAirport,West Palm Beach,FL,33406 +-80.090697,26.688618,PBI - West Palm Conc C - West Palm Beach FL (A),Palm Beach Int'lAirport,West Palm Beach,FL,33406 +-80.099912,26.714333,Village Blvd. & Brandywine Rd. - West Palm Beach FL (W),801 Village Blvd.,West Palm Beach,FL,33409 +-80.07988,26.705901,Okeechobee Blvd. & I-95 - West Palm Beach FL (D),1870 Okeechobee Blvd.,West Palm Beach,FL,33409 +-80.105308,26.837459,Garden Square Shops - Palm Beach FL (W),10925 N. Military Trail,Palm Beach,FL,33410 +-80.096113,26.808152,Northlake Blvd. & I-95 - Palm Beach Gardens FL (W),3866 Northlake Blvd.,Palm Beach Gardens,FL,33410 +-80.085202,26.846974,Gardens Mall II - Palm Beach Gardens FL (W),3101 PGA Boulevard,Palm Beach Gardens,FL,33410 +-80.082837,26.846235,Gardens Mall - Palm Beach Gardens FL (W),3103 PGA Blvd.,Palm Beach Gardens,FL,33410 +-80.06089,26.845019,PGA & US Hwy. 1 - Palm Beach Gardens FL (W),11600 US Hwy. 1,Palm Beach Gardens,FL,33410 +-80.220664,26.681073,Southern Blvd. & Lamstein LaneRoyal - Royal Palm Beach FL (W),11081 Southern Blvd.,Royal Palm Beach,FL,33411 +-80.211331,26.711157,"Southern Blvd. & 441 - Royal Palm Beach FL (D, W)",561 N. State Rd. (US 441),Royal Palm Beach,FL,33411 +-80.203336,26.711088,Super Target West Palm Beach ST-19 - West Palm Beach FL,10155 Okeechobee Blvd.,West Palm Beach,FL,33411 +-80.24777,26.6724,Forest Hill Blvd. & Wellington Trace - Wellington FL (W),12840 West Forest Hills Blvd.,Wellington,FL,33414 +-80.21432,26.651292,"Wellington Green - Wellington FL (D, W)",10580 Forest Hill Blvd.,Wellington,FL,33414 +-80.208589,26.646323,Wellington Mall - Wellington FL (W),10300 W. Forrest Hill Blvd.,Wellington,FL,33414 +-80.11621,26.838125,PGA & Turnpike - Palm Beach Gardens FL (W),6231 PGA Blvd.,Palm Beach Gardens,FL,33418 +-80.090421,26.527988,Boynton Beach Blvd. & Congress Ave. - Boynton Beach FL (W),306 N. Congress Ave.,Boynton Beach,FL,33426 +-80.089582,26.579138,Super Target Boynton Beach Southeas - Boynton Beach FL,6500 Congress Ave.,Boynton Beach,FL,33426 +-80.087435,26.546286,Gateway Blvd. & Congress Ave. Boyton - Boyton Beach FL (W),1500 Gateway Blvd.,Boyton Beach,FL,33426 +-80.134027,26.364756,Boca Town Center Mall - Boca Raton FL (W),6000 Glades Rd.,Boca Raton,FL,33431 +-80.126048,26.367345,Glades Plaza - Boca Raton FL (W),2200 West Glades Road,Boca Raton,FL,33431 +-80.103292,26.365534,Florida Atlantic University - Boca Raton FL,777 Glades Rd.,Boca Raton,FL,33431 +-80.084995,26.353975,Mizner Park - Boca Raton FL (W),302 Plaza Real,Boca Raton,FL,33432 +-80.076879,26.373605,2521 Federal Hwy. - Boca Raton FL (W),2521 North Federal Highway,Boca Raton,FL,33432 +-80.153985,26.349394,Palmetto Park & Powerline - Boca Raton FL (W),22113 Powerline Rd.,Boca Raton,FL,33433 +-80.20261,26.36801,Shadowood Square - Boca Raton FL (W),9961 W. Glades Road,Boca Raton,FL,33434 +-80.169005,26.368047,7777 Glades Road - Boca Raton FL (W),7775 Glades Rd.,Boca Raton,FL,33434 +-80.096406,26.394314,Yamato Rd. & Congress Ave. - Boca Raton FL (W),698 Yamato Rd.,Boca Raton,FL,33434 +-80.1533,26.5231,Super Target Boynton Beach ST-2067 - Boynton Beach FL,10201 Hagen Beach Rd.,Boynton Beach,FL,33437 +-80.090565,26.315492,"US 1 & Hillsboro Blvd. - Deerfield Beach FL (D, W)",130 S. Federal Hwy.,Deerfield Beach,FL,33441 +-80.15182,26.319361,SuperTarget Deerfield Beach W. ST-20 - Deerfield Beach FL,3599 W. Hillsboro Blvd.,Deerfield Beach,FL,33442 +-80.070825,26.461665,205 E. Atlantic Ave. - Delray Beach FL (W),205 E. Atlantic Avenue,Delray Beach,FL,33444 +-80.145955,26.426662,Via Addison - Delray Beach FL (W),16850 Jog Rd.,Delray Beach,FL,33446 +-80.138186,26.934346,"Indiantown & 67th Rd. - Jupiter FL (D, W)",2770 W. Indiantown Rd.,Jupiter,FL,33458 +-80.115824,26.889655,Abacoa II - Jupiter FL (W),1200 Town Center Drive,Jupiter,FL,33458 +-80.106182,26.884301,Abacoa Plaza - Jupiter FL (W),5500 Military Trail,Jupiter,FL,33458 +-80.102451,26.910757,Indian Creek Pkwy. & Military Trail - Jupiter FL,2525 Military Trail,Jupiter,FL,33458 +-80.053551,26.616539,Lake Ave. & L Street - Lake Worth FL (W),514 Lake Ave.,Lake Worth,FL,33460 +-80.20566,26.59092,Super Target Wellington ST-2065 - Wellington FL,5900 State Rd. 7,Wellington,FL,33467 +-80.153556,26.572405,Charleston Square - Lake Worth FL (W),6578 Hypoluxo Rd.,Lake Worth,FL,33467 +-80.146786,26.618826,"Lake Worth Rd. & Jog Rd. Lake Worth - Greenacres FL (D, W)",3991 Jog Rd.,Greenacres,FL,33467 +-80.03492,26.700617,Worth Ave. & Ocean Blvd. - Palm Beach FL (W),150 Worth Ave. Bay 110,Palm Beach,FL,33480 +-80.06784,26.461402,502 E. Atlantic Ave. Delray Bch - Delray Beach FL,502 East Atlantic Ave.,Delray Beach,FL,33483 +-80.123508,26.362433,Shoppes at Boca Center - Boca Raton FL (W),5250 Towne Center Circle,Boca Raton,FL,33486 +-80.121077,26.409888,Addison Court - Boca Raton FL (W),17940 N. Military Trail,Boca Raton,FL,33496 +-80.199056,26.408695,Clint Moore Rd. & US Hwy. 441 - Boca Raton FL (W),9704 Clint Moore Rd.,Boca Raton,FL,33498 +-82.334797,27.922893,Brandon Town Center Dr. - Brandon FL (W),11029 Causeway Blvd.,Brandon,FL,33511 +-82.324868,27.932749,Brandon Town Center - Brandon FL (W),459 Brandon Town Center Mall,Brandon,FL,33511 +-82.323902,27.936035,Target Brandon T-812 - Brandon FL,187 Brandon Town Ctr. Dr,Brandon,FL,33511 +-82.265409,27.937644,"SR 60 & Mt Carmel -Brandon - Brandon FL (D, W)",1265 E. Brandon Blvd.,Brandon,FL,33511 +-82.35395,28.174408,Super Target Wesley Chapel ST-1382 - Wesley Chapel FL,1201 County Road 581,Wesley Chapel,FL,33543 +-82.352905,28.18332,"Bruce B Downs Blvd. & SR 56 - Wesley - Wesley Chapel FL (D, W)",1800 Bruce B Downs Blvd.,Wesley Chapel,FL,33543 +-82.470924,28.17314,SuperTarget Lutz/North Tampa T-2118 - Lutz FL,1040 Dale Mabry Hwy.,Lutz,FL,33548 +-82.4504,28.1376,"SR 54 & Collier Pkwy. - Land O Lake FL (D, W)",2021 State Road 54,Land O Lake,FL,33549 +-82.54803,28.18763,"SR 54 & Suncoast Pkwy. - Odessa FL (D, W)",16330 State Road 54,Odessa,FL,33556 +-82.547804,28.187648,Super Target Suncoast ST-2209 - Odessa FL,16400 State Rd. 54,Odessa,FL,33556 +-82.151019,28.025528,"Thonotosassa & I-4 -Plant City - Plant City FL (D, W)",2701 Thonotosassa Rd.,Plant City,FL,33563 +-82.33091,27.792888,"Big Bend & US 301 Riverview - Riverview FL (D,W)",10716 Big Bend Road,Riverview,FL,33569 +-82.329645,27.893769,SuperTarget - Brandon South T-2235 - Riverview FL,10290 Bloomingdale Ave.,Riverview,FL,33569 +-82.31049,27.8908,Bloomingdale Ave. & Providence Rd. - Riverview FL (W),6042 Winthrop Town Centre Ave.,Riverview,FL,33569 +-82.240591,27.890362,Lithia Crossing - Valrico FL (W),3482 Lithia-Pinecrest Rd.,Valrico,FL,33594 +-82.455063,27.942247,Tampa Embassy Suites Convention Ctr. - Tampa FL,513 S. Florida Ave.,Tampa,FL,33602 +-82.454937,27.996536,"I-275 & Hillsborough (UCO) - Tampa FL (D, W)",502 E. Hillsborough Avenue,Tampa,FL,33604 +-82.483387,27.936243,Howard & Moody - Tampa FL (W),711 South Howard St.,Tampa,FL,33606 +-82.47605,27.94433,Kennedy Blvd. & S. Dakota Ave. - Tampa FL (D),1600 W. Kennedy Blvd.,Tampa,FL,33606 +-82.459017,27.938263,Tampa General Hospital - Tampa FL,2 Columbia Dr,Tampa,FL,33606 +-82.565792,27.968424,Westin Tampa Bay - Tampa FL,7627 W. Courtney Campbell Causeway,Tampa,FL,33607 +-82.533904,27.959952,TPA - Tampa Airside E. Level 3 - Tampa FL (A),5507 W. Spruce St.,Tampa,FL,33607 +-82.533904,27.959952,TPA - Relo Main Transf Lvl 3rd Fl - Tampa FL (A),5507 W. Spruce St.,Tampa,FL,33607 +-82.533904,27.959952,TPA - Tampa Airside C - Tampa FL (A),5507 W. Spruce St.,Tampa,FL,33607 +-82.533904,27.959952,TPA - Tampa Airside A - Tampa FL (A),5507 W. Spruce St.,Tampa,FL,33607 +-82.533904,27.959952,TPA - Tampa Airside Term F - Tampa FL (A),5507 W. Spruce St.,Tampa,FL,33607 +-82.524354,27.956088,"Fidelity - Tampa FL (D, W)",1508 North Westshore Blvd.,Tampa,FL,33607 +-82.52394,27.960337,Baystreet Store - Tampa FL (W),2223 N.Westshore Blvd.,Tampa,FL,33607 +-82.523267,27.966811,International Mall Kiosk - Tampa FL,2223 N. Westshore Blvd.,Tampa,FL,33607 +-82.505679,27.957827,Target Tampa T-2040 - Tampa FL,1544 N. Dale Mabry Hwy.,Tampa,FL,33607 +-82.527401,27.944949,Westshore & Kennedy - Tampa FL (W),118 South Westshore Blvd.,Tampa,FL,33609 +-82.52727,27.945467,Westshore Plaza - Tampa FL (W),225 Westshore Plaza,Tampa,FL,33609 +-82.506033,27.940973,401 S. Dale Mabry Hwy. - Tampa FL (W),401 South Dale Mabry highway,Tampa,FL,33609 +-82.50359,27.894,"W. Gandy Blvd. & S. Himes - Tampa FL (D, W)",3619 West Gandy Blvd.,Tampa,FL,33611 +-82.400308,28.054854,Fowler & 50th - Tampa FL (W),5006 E. Fowler,Tampa,FL,33617 +-82.506938,28.078493,Shoppes of Carrollwood - Tampa FL (W),14394 N. Dale Mabry Hwy.,Tampa,FL,33618 +-82.505335,28.040531,Mabry Highway - Tampa FL,10002 N. Dale Mabry Hwy.,Tampa,FL,33618 +-82.416207,28.054578,Univ of S. Florida - Library - Tampa FL,4202 E. Fowler Ave.,Tampa,FL,33620 +-82.416207,28.054578,Univ of S. Florida - Juniper Dining H - Tampa FL,4202 E. Fowler Ave.,Tampa,FL,33620 +-82.580998,27.996288,"8602 Hillsborough Ave. - Tampa FL (D, W)",8602 Hillsborough Ave.,Tampa,FL,33625 +-82.577052,28.069964,Citrus Park Mall - Tampa FL (W),7968 Citrus Park Town Ctr. Mall,Tampa,FL,33625 +-82.63344,28.069403,"Race Track & Nine Eagles - Tampa FL (D, W)",12998 Race Track Rd.,Tampa,FL,33626 +-82.499321,27.919758,3400 Bay to Bay Blvd. - Tampa FL (W),3409 Bay to Bay Blvd.,Tampa,FL,33629 +-82.548892,28.027739,Target Tampa/Town & Country T-798 - Tampa FL,6295 W. Waters Ave.,Tampa,FL,33634 +-82.540813,28.03252,"Waters & Anderson - Tampa FL (D, W)",9222 Anderson Road,Tampa,FL,33634 +-82.61292,28.015911,Super Target Oldsmar (Tampa) T-2289 - Tampa FL,11627 W. Hillsborough Ave.,Tampa,FL,33635 +-82.36782,28.069781,Fletcher & Park Edge - Tampa FL (W),8229 Parkedge Drive,Tampa,FL,33637 +-82.368538,28.12851,"BB Downs & Richmond Park Dr. - Tampa FL (D, W)",17525 Preserve Walk Lane,Tampa,FL,33647 +-82.63889,27.781439,4th St. & 9th Ave. - St. Petersburg FL (W),900 4th Street North,St Petersburg,FL,33701 +-82.635515,27.772103,Baywalk - St. Petersburg FL (W),199 1st Ave. North,St Petersburg,FL,33701 +-82.633978,27.767918, Hilton St. Petersburg - St. Petersburg FL,333 1st St. S.,St Petersburg,FL,33701 +-82.638174,27.852942,"4th St. & 89th Ave. - St. Petersburg FL (D, W)",8801 4th St. N.,St. Petersburg,FL,33702 +-82.639134,27.817311,4th St. & 50th Ave. - St. Petersburg FL (W),4946 4th St. N.,St Petersburg,FL,33703 +-82.756177,27.812033,Target St. Petersburg/Park & Tyrone - St. Petersburg FL,4450 Park St.,St. Petersburg,FL,33709 +-82.754015,27.81547,"Park & Sheen - St. Petersburg - St. Petersburg FL (D, W)",4850 Park St.,St. Petersburg,FL,33709 +-82.735248,27.792845,Tyrone Square - Saint Petersburg FL (W),6901 22nd Ave. N.,Saint Petersburg,FL,33710 +-82.733793,27.791715,Market Place Shopping Center - St. Petersburg FL (W),6802 22nd Ave. No.,St Petersburg,FL,33710 +-82.728021,27.771127,"Central Ave. & 66th St. - St. Petersburg FL (D, W)",6575 Central Avenue,St Petersburg,FL,33710 +-82.645566,27.868704,Gateway Crossings - St. Petersburg FL (W),10490 Roosevelt Blvd.,St Petersburg,FL,33716 +-82.800149,27.965347,433 Cleveland Street - Clearwater FL (W),433 Cleveland Street,Clearwater,FL,33755 +-82.725958,27.960509,Clearwater Mall - Clearwater FL (W),2719 Gulf to Bay Blvd.,Clearwater,FL,33759 +-82.723143,27.960493,Super Target Clearwater ST-1820 - Clearwater FL,2747 Gulf To Bay Blvd.,Clearwater,FL,33759 +-82.738266,28.013041,Countryside Blvd. & Hwy. 19 - Clearwater FL (W),2539 Countryside Blvd.,Clearwater,FL,33761 +-82.733278,28.017283,Countryside Mall - Clearwater FL (W),27001 US Hwy. 19 N.,Clearwater,FL,33761 +-82.709498,28.014313,Northwood Plaza - Clearwater FL (W),2560 McMullen Booth Road,Clearwater,FL,33761 +-82.688432,27.893213,"Ulmerton & 40th - Clearwater - Clearwater FL (D, W)",4000 Ulmerton Rd.,Clearwater,FL,33762 +-82.668589,27.894296,"Ulmerton Rd. & Egret Blvd. - St. Petersburg FL (D, W)",2577 Ulmerton Rd.,St Petersburg,FL,33762 +-82.730505,28.008061," US 19 & Bellaire - Clearwater FL (D, W)",18423 US Hwy. 19 N.,Clearwater,FL,33764 +-82.783799,27.896286,Ulmerton Rd. & Seminole Blvd. - Largo FL (W),10443 Ulmerton Rd.,Largo,FL,33771 +-82.761949,27.916118,"Starkey Rd. & East Bay Dr. - Largo FL (D, W)",2401 East Bay Dr,Largo,FL,33771 +-82.760702,27.870798,Starkey & Bryan Dairy - Seminole FL (W),10801 Starkey Rd.,Seminole,FL,33772 +-82.827182,27.880303,"Walsingham & 137th - Largo - Largo FL (D, W)",13650 Walsingham Rd.,Largo,FL,33774 +-82.683831,27.83914,"Park Blvd. & US Hwy. 19 - Pinellas Park FL (D, W)",7350 US Hwy. 19 North,Pinellas Park,FL,33781 +-82.682216,27.836832,Target Pinellas Park T-2064 - Pinellas Park FL,7150 US 19 N.,Pinellas Park,FL,33781 +-81.957482,27.980276,"Florida Ave. & Lake Miriam - Lakeland FL (D, W)",4720 S. Florida Ave.,Lakeland,FL,33802 +-81.9755,28.002865,Harden Rd. & Polk County Blvd. - Lakeland FL (W),1314 Town Center Drive S-102,Lakeland,FL,33803 +-81.957388,28.018296,"S. Florida Ave. & Beacon St. - Lakeland FL (D, W)",2101 S. Florida Ave.,Lakeland,FL,33803 +-81.973253,28.09134,3801 US Hwy. 98 - Lakeland FL (W),3801 US Hwy. 98 N.,Lakeland,FL,33809 +-81.950623,28.103895,Socrum Loop & I-4 - Lakeland - Lakeland FL (D),4670 N. Socrum Loop Rd.,Lakeland,FL,33809 +-81.898111,27.99469,Target Lakeland North T-1859 - Lakeland FL,4005 Hwy. 98 N.,Lakeland,FL,33809 +-81.6157,28.192,Target NE Polk County T-2366 - Davenport FL,5000 Grandview Pkwy,Davenport,FL,33837 +-81.6122,27.9556,Eagle Ridge Mall - Lake Wales FL (W),761 Eagle Ridge Dr,Lake Wales,FL,33859 +-81.486662,27.49845,"US 27 & Thunderbird Rd. Sebring - Sebring FL (D, W)",1768 US 27 N.,Sebring,FL,33870 +-81.870774,26.643589,First St. & Broadway - Ft Myers FL (W),1514 Broadway,Ft Myers,FL,33901 +-81.869709,26.600845,Edison Mall (1) - Fort Myers FL (W),4125 Cleveland Ave.,Fort Myers,FL,33901 +-81.797295,26.615132,Colonial Blvd. & Forum Blvd. Ft Myer - Ft Myers FL,3398 Forum Blvd.,Ft Myers,FL,33905 +-81.79289,26.63,Target Fort Myers North T-2369 - Fort Myers FL,3350 Forum Blvd.,Fort Myers,FL,33905 +-81.862269,26.597709,"Colonial Blvd. & Fowler St. Ft Myers - Fort Myers FL (D, W)",4450 Fowler Street,Fort Myers,FL,33907 +-81.944194,26.509761,SuperTarget Fort Myers SW ST-2363 - Fort Myers FL,15880 San Carlos Blvd.,Fort Myers,FL,33908 +-81.950369,26.662743,Super Target Cape Coral North ST-23 - Cape Coral FL,1850 NE Pine Island Rd.,Cape Coral,FL,33909 +-81.933294,26.670846,Pine Island Rd. & Pondella Cape Cor - Cape Coral FL (W),1860 NE Pine Island Rd.,Cape Coral,FL,33909 +-81.868737,26.544403,Super Target Ft Myers ST-818 - Ft Myers FL,13711 S. Tamiami Trail,Ft Myers,FL,33912 +-81.86834,26.545207,"US 41 & Daniels - Ft Myers FL (D, W)",5100 Daniels Pkwy,Ft Myers,FL,33912 +-81.786944,26.483751,Super Target Ft Myers ST-2059 - Fort Myers FL,10000 Gulf Ctr. Dr,Fort Myers,FL,33913 +-81.7588,26.5404,RSW - Ft Myers Main Term Pre Sec - Fort Myers FL (A),1600 Chamberlain Pkwy.,Fort Myers,FL,33913 +-81.7588,26.5404,RSW - Ft Myers Pier B - Fort Myers FL (A),1600 Chamberlain Pkwy.,Fort Myers,FL,33913 +-81.7588,26.5404,RSW - Ft Myers Pier D - Fort Myers FL (A),1600 Chamberlain Pkwy.,Fort Myers,FL,33913 +-81.7465,26.5451,RSW Pre Security (C) - Ft. Myers FL (A),Ft Myers International Aiport,Ft. Myers,FL,33913 +-81.896808,26.555468,College & Winkler - Ft Myers FL (W),8595 College Parkway,Ft Myers,FL,33919 +-82.2068,26.5656,South Seas Resort Entrance - Captiva FL,5400 Plantation Road,Captiva,FL,33924 +-81.806279,26.406705,Super Target Coconut Point/Bonita S. - Estero FL,8040 Mediterranean Dr,Estero,FL,33928 +-81.7872,26.4317,Coconut Point - Estero FL (W),8074 Mediterranean Dr,Estero,FL,33928 +-81.775874,26.435812,Miromar Outlets - Estero FL (W),10801 Corkscrew Road,Estero,FL,33928 +-82.143227,27.011379,Port Charlotte - Port Charlotte FL (W),1441 Tamiami TRL,Port Charlotte,FL,33948 +-82.149534,27.014544,Target Port Charlotte T-690 - Port Charlotte FL,1400A Tamiami Trail,Port Charlotte,FL,33948 +-81.9397,26.4737,Florida Gulf Coast University / For - Fort Myers FL,1051 Florida Guld Coast University Blvd.,Fort Myers,FL,33965 +-82.052775,27.016208,"Kings Hwy. & I-75 - Port Charolette FL (D, W)",925 Kings Hwy.,Port Charolette,FL,33980 +-82.025944,26.607721,Veterans Pkwy. & Surfside Blvd. Cape - Cape Coral FL (W),2384 Surfside Blvd.,Cape Coral,FL,33991 +-81.795475,26.147372,Central Ave. & US 41 - Naples FL (W),1 Tamiami Trail S.,Naples,FL,34102 +-81.792422,26.142044,796 Fifth Ave. - Naples FL (W),796 5th AvenueSouth,Naples,FL,34102 +-81.778927,26.135553, Coastland Center - Naples FL (W),2004 Tamiami Trail North,Naples,FL,34102 +-81.720699,26.154358,Radio Rd. & Santa Barbara Blvd. - Naples FL (W),7083 Radio Rd.,Naples,FL,34104 +-81.799841,26.272269,Immokalee & 41 - Naples FL (W),960 Immokalee Rd.,Naples,FL,34105 +-81.745857,26.105131,Waterside shops - Naples FL (W),5505 North Tamiami Trail,Naples,FL,34108 +-81.791464,26.211475,"Pine Ridge & Goodlette - Naples - Naples FL (D, W)",1427 Pine Ridge Rd.,Naples,FL,34109 +-81.77127,26.244059,"Vanderbilt &Airport - Naples - Naples FL (D, W)",2315 Vanderbilt Beach Rd.,Naples,FL,34109 +-81.770769,26.208404,Target Naples T-899 - Naples FL,2324 Pine Ridge Rd.,Naples,FL,34109 +-81.750374,26.211435,Pineridge & Livingston Naples - Naples FL (D),3370 Pine Ridge Rd.,Naples,FL,34109 +-81.654639,26.034918,Audubon Plaza - Naples FL (W),15495 N. Tamiami Trail,Naples,FL,34110 +-81.749811,26.138547,4810 Davis Blvd. - Naples FL (W),4810 Davis Blvd.,Naples,FL,34112 +-81.7372,26.2641,Super Target Naples North ST-2063 - Naples FL,2415 Tarpon Bay Blvd.,Naples,FL,34119 +-81.728225,26.211778,I-75 & Pine Ridge - Naples FL (W),5995 Pine Ridge Rd.,Naples,FL,34119 +-81.729652,25.953118,Collier Blvd. & Elkcam Circle - Marco Island FL (W),740 N. Collier Blvd.,Marco Island,FL,34145 +-82.460107,27.388857,"University Parkway - Sarasota FL (D, W)",5485 University Pkwy,Sarasota,FL,34201 +-82.43559,27.393492,Lakewood Ranch Blvd. & Main St-Brad. - Bradenton FL (W),8155 Lakewood Main St.,Bradenton,FL,34202 +-82.46408,27.443509,"SR 70 & I-75 - Bradenton - Bradenton FL (D, W)",7386 52nd Place East,Bradenton,FL,34203 +-82.575405,27.462317,1401 Cortez Rd. - Bradenton FL (W),4404 14th Street West,Bradenton,FL,34207 +-82.562435,27.494909,US 41 & Manatee Ave. - Bradenton - Bradenton FL (D),102 Manatee Ave. East,Bradenton,FL,34208 +-82.619424,27.495847,Manatee Ave. & 59th St. - Bradenton - Bradenton FL (D),5783 Manatee Ave. W.,Bradenton,FL,34209 +-82.636679,27.462508,"75th St. & Cortez Rd. - Bradenton FL (D, W)",7484 Cortez Rd.,Bradenton,FL,34210 +-82.504323,27.534281,Prime Outlets @ Ellenton - Ellenton FL (W),5461 Factory Shops Blvd.,Ellenton,FL,34222 +-82.530111,27.291353,US 41 & Worrington Ave. - Sarasota FL (W),4321 S. Tamiami Trail,Sarasota,FL,34231 +-82.466137,27.269593,Honore & Clark - Sarasota FL (W),5191 Clark Rd.,Sarasota,FL,34232 +-82.463393,27.337941,Fruitville Rd. & Honore Ave. - Sarasota FL,5329 Fruitville Rd.,Sarasota,FL,34232 +-82.576609,27.319194,443 St. Armands Circle - Sarasota FL (W),443 John Ringling Blvd.,Sarasota,FL,34236 +-82.542657,27.337277,1st St. & Central Ave. - Sarasota FL (W),1401 First Street,Sarasota,FL,34236 +-82.49607,27.232118,Sarasota Square Mall - Sarasota FL (W),8201 S. Tamiami Trl,Sarasota,FL,34238 +-82.484789,27.23013,Target Sarasota T-665 - Sarasota FL,8401 S. Tamiami Trail,Sarasota,FL,34238 +-82.528737,27.321473,Midtown Plaza - Sarasota FL (W),1375 South Tamiami Trail,Sarasota,FL,34239 +-82.52836,27.300845,Southgate Plaza - Sarasota FL (W),3501 S. Tamiami Trl,Sarasota,FL,34239 +-82.497961,27.29913,"Bee Ridge & Beneva - Sarasota FL (D, W)",3571 Bee Ridge Rd.,Sarasota,FL,34239 +-82.555635,27.387371,SRQ Post Security - Sarasota FL (A),6024Airport Circle,Sarasota,FL,34243 +-82.513244,27.389512,University & Tuttle - Sarasota FL (W),2805 University Parkway,Sarasota,FL,34243 +-82.455933,27.387373,Super Target Sarasota ST-2034 - Sarasota FL,101 N. Cattleman Rd.,Sarasota,FL,34243 +-82.425156,27.078947,"41 & Center Avenue - Venice - Venice FL (D, W)",1500 US Hwy. 41 By-Pass South,Venice,FL,34293 +-82.39117,27.051707,Target Venice T-813 - Venice FL,4271 S. Tamiami Trail,Venice,FL,34293 +-82.195868,29.13862,"SR 200 & SW 46th Ct - Ocala - Ocala FL (D, W)",4602 SW College Rd.,Ocala,FL,34474 +-82.169329,29.165201,2708 SW College Rd. - Ocala FL (W),2708 SW College Road,Ocala,FL,34474 +-82.137159,29.186165,Broadway & Magnolia Ocala - Ocala FL (W),36 S. Magnolia Ave.,Ocala,FL,34474 +-82.157239,29.173986,Target Ocala T-873 - Ocala FL,2000 SW College Rd.,Ocala,FL,34474 +-82.4764,28.4759,Target Spring Hill East - T-2489 - Spring Hill FL,3101 Aerial Way,Spring Hill,FL,34604 +-82.598155,28.495473,Target Spring Hill T-919 - Spring Hill FL,4401 Commercial Way,Spring Hill,FL,34606 +-82.507964,28.534259,"SR 50 & Mariner Blvd. - Brooksville - Brooksville FL (D, W)",13163 Cortez Blvd.,Brooksville,FL,34613 +-82.727822,28.238094,"US 19 & Gulf Dr-New Port Richey - New Port Richey FL (D, W)",5435 US Hwy. 19,New Port Richey,FL,34652 +-82.668304,28.2089,Little Rd. & SR 54 - New Port Richey FL (W),3244 Little Rd.,New Port Richey,FL,34655 +-82.666818,28.235599,"Little Rd. & Ranch Del Rio - New Port Richey FL (D, W)",5220 Little Rd.,New Port Richey,FL,34655 +-82.664582,28.200851,Target Seven Springs T-1967 - New Port Richey FL,2900 Little Rd.,New Port Richey,FL,34655 +-82.711477,28.290503,Gulf View Square - Port Richey FL (W),9409 US Highway 19,Port Richey,FL,34668 +-82.695713,28.049422,"Curlew Rd. & Tampa Rd. - Oldsmar FL (D, W)",3180 Tampa Road,Oldsmar,FL,34677 +-82.739068,28.079726,Hwy. 19 & Nebraska Ave. - Palm Harbor FL (W),33840 U.S. Hwy. 19 North,Palm Harbor,FL,34684 +-82.737835,28.049822,"US 19 & Curlew Rd. - Palm Harbor - Palm Harbor FL (D, W)",30503 US Hwy. 19 N.,Palm Harbor,FL,34684 +-82.679687,28.119769,4940 Ridgemoor Plaza - Palm Harbor FL (W),4940 Ridgemoor Blvd.,Palm Harbor,FL,34685 +-82.740394,28.143266,Tarpon Ave. & US Hwy. 19 - Tarpon Springs FL (W),40908 US Highway 19 North,Tarpon Springs,FL,34689 +-82.688661,27.989985,Main St. & Bayshore - Safety Harbor FL (W),100 Main St.,Safety Harbor,FL,34695 +-81.6953,28.5466,Super Target Clermont ST-1519 - Clermont FL,2660 E. Hwy. 50,Clermont,FL,34711 +-81.697558,28.564587,"SR 50 & Hancock - Clermont FL (D, W)",2573 E. Highway 50,Clermont,FL,34711 +-81.67657,28.356216,US Hwy. 27 & Crossings Blvd-Clermont - Clermont FL (D),628 Cagan View Rd.,Clermont,FL,34714 +-81.440753,28.304553,"US 192 & Armstrong - Kissimmee - Kissimmee FL (D, W)",3721 West Vine Street,Kissimmee,FL,34741 +-81.47493,28.332094,Super Target Kissimmee ST-1918 - Kissimmee FL,4795 W. Irlo Bronson Mem Hwy.,Kissimmee,FL,34746 +-81.6194,28.3314,Target Orlando SW Disney T-2370 - Kissimmee FL,3200 Rolling Oaks Blvd.,Kissimmee,FL,34747 +-81.54138,28.317649,Celebration - Celebration FL (W),715 Bloom Street,Celebration,FL,34747 +-81.527383,28.332907,Celebration & 192 - Kissimmee - Kissimmee FL,6075 Irlo Bronson Memorial Hwy.,Kissimmee,FL,34747 +-81.445905,28.145476,"Pleasant Hill Rd. & Cypress Pkwy. - Poinciana FL (D, W)",1044 Cypress Pkwy,Poinciana,FL,34759 +-81.53028,28.55163,SR 50 & Blackwood Rd. - Ocoee FL (W),10300 W. Colonial Dr,Ocoee,FL,34761 +-81.588104,28.521253,"Winter Garden Village - Winter Garden FL (D, W)",3310 Daniels Rd.,Winter Garden,FL,34787 +-81.585566,28.521056,Super Target Winter Garden ST- 2264 - Winter Garden FL,3343 Daniels Rd.,Winter Garden,FL,34787 +-81.784593,28.822636,Target Leesburg T-691 - Leesburg FL,10401 US-441,Leesburg,FL,34789 +-80.297917,27.271234,"St. Lucie West & I-95 - Ft Pierce - Port St. Lucie FL (D, W)",1789 NW St. Lucie West Blvd.,Port St. Lucie,FL,34986 +-80.4296,27.2683,Target St. Lucie West T-2248 - Port St. Lucie FL,10720 SW Village Parkway,Port St. Lucie,FL,34987 +-80.271336,27.237175,Target Stuart T-816 - Stuart FL,2650 NW Federal Hwy.,Stuart,FL,34994 +-80.266452,27.229812,"US 1 & Britt Rd. - Stuart FL (D, W)",2537 NW Federal Hwy.,Stuart,FL,34994 +-80.236265,27.176591,"Monterey Rd. & Federal Hwy. - Stuart FL (D, W)",2294 SE Federal Hwy.,Stuart,FL,34994 +-80.202426,27.130366,"Cove Rd. & US Hwy. 1 Stuart - Stuart FL (D, W)",5932 Southeast Federal Hwy.,Stuart,FL,34997 +-86.81351,33.2281,"Hwy. 119 & Kent Dairy - Alabaster AL (D, W)",2171 Kent Dairy Rd.,Alabaster,AL,35007 +-86.802995,33.224993,Target Alabaster T-2276 - Alabaster AL,250 South Colonial Dr,Alabaster,AL,35007 +-86.802189,33.224068," I-65 & US HWY 31 - Alabaster AL (D, W)",345 South Colonial Dr,Alabaster,AL,35007 +-86.9308,33.3302,Target Bessemer T-2375 - Bessemer AL,4889 Promenade Pkwy,Bessemer,AL,35020 +-86.80611,33.606081,Target Fultondale T-2355 - Fultondale AL,3489 Lowery Pkwy,Fultondale,AL,35068 +-86.787808,33.50819,Morrison @ Saint Vincents Hospital - Birmingham AL,810 Saint Vincents Dr,Birmingham,AL,35202 +-86.796596,33.500482,Munger Bldg - Birmingham AL (W),1927 11th Avenue South,Birmingham,AL,35205 +-86.827086,33.446299,State Farm & Lakeshore - Birmingham AL (W),231 State Farm Pkwy,Birmingham,AL,35209 +-86.777091,33.462768,Brookwood Medical Center / Birmingh - Birmingham AL,2010 Brookwood Medical Center Drive,Birmingham,AL,35209 +-86.719338,33.526612,"Montclair & Elder - Birmingham AL (D, W)",1658 Montclair Rd.,Birmingham,AL,35210 +-86.756379,33.502938,Church at Euclid - Birmingham AL (W),81 Church Street,Birmingham,AL,35213 +-86.80804,33.403435,Montgomery Hwy. & Braddock - Birmingham AL (W),1584 Montgomery Hwy.,Birmingham,AL,35216 +-86.792758,33.445646,"Montgomery Hwy. & Canyon Dr. - Vestavia Hills AL (D, W)",700 Montgomery Hwy.,Vestavia Hills,AL,35216 +-86.774087,33.483779,Cahaba & Hollywood - Mountain Brook AL (W),2738 Cahabe Rd.,Mountain Brook,AL,35223 +-86.832,33.4022,Target Hoover West T-2503 - Hoover AL,5561 Grove Blvd.,Hoover,AL,35226 +-86.89539,33.512272,UAB Hospital North Pavilion Food Ct - Birmingham AL,619 19th Street,Birmingham,AL,35233 +-86.619879,33.615959,Super Target Trussville ST-1773 - Birmingham AL,1654 Gadsden Hwy.,Birmingham,AL,35235 +-86.619839,33.61598,"US Hwy. 11 & I-459 - Trussville AL (D, W)",1420 Gadsden Hwy.,Trussville,AL,35235 +-86.713087,33.43177,Super Target Birmingham ST-1772 - Birmingham AL,4616 Highway 280,Birmingham,AL,35242 +-86.699486,33.422535,"Hwy. 280 & Inverness Ctr. Dr. - Hoover AL (D, W)",4710 Hwy. 280 east,Hoover,AL,35242 +-86.68369,33.4176,"Hwy. 280 & Hwy. 119 - Birmingham AL (D, W)",5405 US-280 East,Birmingham,AL,35242 +-86.735517,33.455492,"Cahaba Heights & Dolly Ridge Rd. - Vestavia Hills AL (D, W)",3130 Cahaba Heights Rd.,Vestavia Hills,AL,35243 +-86.81134,33.372997,"Hwy. 150 & I-459 FLY - Birmingham AL (D, W)",3032 John Hawkins Pkwy,Birmingham,AL,35244 +-86.811126,33.378517,River Chase Galleria - Hoover AL (W),3000 Riverchase Galleria,Hoover,AL,35244 +-86.888309,33.516129,Univ of AL Birmingham/Library - Birmingham AL,917 13th St.,Birmingham,AL,35294 +-87.5278,33.1941,McFarland Blvd. & 15th St. - Tuscaloosa AL,1800 McFarland Blvd.,Tuscaloosa,AL,35404 +-87.5181,33.1939,Super Target Tuscaloosa ST-1787 - Tuscaloosa AL,1901 13th Ave. E.,Tuscaloosa,AL,35404 +-87.545493,33.217581,U of AL - Ferguson Cntr - Tuscaloosa AL,1000 McCorvey Dr.,Tuscaloosa,AL,35487 +-86.946721,34.587677,Target Decatur T-2084 - Decatur AL,2141 Point Mallard Pkwy,Decatur,AL,35601 +-86.977104,34.5432,"Beltline & Spring - Decatur AL (D, W)",902 Wimberly Drive SW,Decatur,AL,35603 +-86.985743,34.790437,"Hwy. 72 & Braly - Athens AL (D, W)",1286 Hwy. 72 East,Athens,AL,35611 +-86.7397,34.753,"Hwy. 72 & Hughes - Madison AL (D, W)",7779 Highway 72 West,Madison,AL,35758 +-86.578918,34.719728,Whitesburg Dr. @ Governors Dr. - Huntsville AL (W),2003 Whitesburg Drive,Huntsville,AL,35801 +-86.575905,34.7266,"Memorial Pkwy. & Hwy. 72 - Huntsville AL (D, W)",1015 North Memorial Pkwy,Huntsville,AL,35801 +-86.571643,34.817688,"Memorial & Mastin Lake - Huntsville AL (D, W)",3421 Memorial Drive NW,Huntsville,AL,35801 +-86.5753,34.6916,Starbucks:Airport Rd. & Chateau Dr. - Huntsville AL (W),800Airport Rd.,Huntsville,AL,35802 +-86.542,34.6736,Super Target Huntsville ST-1367 - Huntsville AL,2750 Carl T Jones Dr. SE,Huntsville,AL,35802 +-86.6784,34.7414,Super Target Huntsville ST-1346 - Huntsville AL,6275 University Dr,Huntsville,AL,35806 +-86.4258,32.4735,Target Prattville T-2274 - Prattville AL,2953 Legends Pkwy,Prattville,AL,36066 +-86.184217,32.383047,"Atlanta Hwy. & McLemore - Montgomery AL (D, W)",6501 Atlanta Hwy.,Montgomery,AL,36101 +-86.264774,32.35567,"Zelda Rd. @ Carter Hill Rd. - Montgomery AL (D, W)",3110 Zelda Road,Montgomery,AL,36106 +-86.219256,32.35231,Eastern Blvd. - Montgomery - Montgomery AL (W),2107 Eastern Blvd.,Montgomery,AL,36107 +-86.182207,32.338023,"Taylor & Vaughn - Montgomery AL (D, W)",7790 Vaughn,Montgomery,AL,36116 +-86.169747,32.357912,"Eastchase - Montgomery AL (D, W)",6911 East Chase Parkway,Montgomery,AL,36117 +-85.842,33.5927,Target Oxford T-2153 - Oxford AL,400 Oxford Exchange Blvd.,Oxford,AL,36203 +-85.8281,33.6075,"I-20 & Hwy. 21 - Oxford AL (D, W)",1011 Hwy. 21 South,Oxford,AL,36203 +-85.4487,31.2673,Target Dothan T-1468 - Dothan AL,4601 Montgomery Hwy.,Dothan,AL,36303 +-87.9213,30.667255,"I 10 & Hwy. 98 - Daphne AL (D, W)",6830 Highway 90,Daphne,AL,36526 +-87.85188,30.667353,"I-10 & Hwy. 181 - Spanish Fort AL (D, W)",30350 State Hwy. 181,Spanish Fort,AL,36527 +-87.683318,30.431574,"Hwy. 59 @ Riviera Center - Foley AL (D, W)",2601 S. McKenzie Road,Foley,AL,36535 +-87.682942,30.303167,Target Gulf Shores T-2154 - Gulf Shores AL,3820 Gulf Shores Pkwy,Gulf Shores,AL,36542 +-88.073344,30.680657,"Government & Catherine - Mobile AL (D, W)",1510 Government St.,Mobile,AL,36604 +-88.123631,30.675844,"I-65 @Airport Blvd. - Mobile AL (D, W)",3255Airport Blvd.,Mobile,AL,36606 +-88.12234,30.670107,Bel Air Mall - Mobile AL (W),3494 BEL AIR MALL,Mobile,AL,36606 +-88.225939,30.68176,"Starbucks:Airport Blvd. & Schillinger - Mobile AL (D, W)",390 Schillinger Road,Mobile,AL,36608 +-88.144703,30.675968,"Starbucks:Airport Blvd. & Downtowner - Mobile AL (D, W)",3901Airport Blvd.,Mobile,AL,36608 +-88.125067,30.703405,"I 65 & Spring Hill - Mobile AL (D, W)",3451 Spring Hill Ave.,Mobile,AL,36608 +-88.225655,30.673475,Super Target Mobile ST-1376 - Mobile AL,790 Shillinger Rd. S.,Mobile,AL,36695 +-88.190174,30.661567,"Hillcrest & Greelot - Mobile AL (D, W)",1363 Hillcrest Rd.,Mobile,AL,36695 +-85.409294,32.6232,Kroger - Opelika #631 - Opelika AL,2450 Enterprise Drive,Opelika,AL,36801 +-85.3928,32.6548,"I-85 @ Hwy. 280 - Opelika AL (D, W)",2056 Interstate Drive,Opelika,AL,36801 +-85.4881,32.601,Auburn University - Auburn AL - stu - Auburn AL,Quad Center 255 Duncan Dr,Auburn,AL,36849 +-86.659267,36.042571,Target Antioch T-145 - Antioch TN,5330 Cane Ridge Rd.,Antioch,TN,37013 +-86.65856,36.048461,Bell Rd. - Hickory Hollow - Antioch TN (W),5253 Hickory Hollow Pkwy,Antioch,TN,37013 +-86.802585,36.034619,"Old Hickory Blvd. & Westpark Dr. - Brentwood TN (D, W)",198 Westpark Drive,Brentwood,TN,37027 +-86.79117,36.02984,Franklin Road - Brentwood TN (W),269 Franklin Road,Brentwood,TN,37027 +-86.778553,36.042509,Target Brentwood T-1983 - Brentwood TN,780 Old Hickory Blvd.,Brentwood,TN,37027 +-86.694707,36.000571,Nolensville & Concord - Brentwood TN (D),6680 Nolensville Pike,Brentwood,TN,37027 +-87.292608,36.589702,"S. Hampton & Wilma Rudolph - Clarksville TN (D, W)",100 South Hampton,Clarksville,TN,37040 +-87.275973,36.509197,"Madison & Hwy. 41 - Clarksville TN (D, W)",2235 Madison Street,Clarksville,TN,37043 +-86.88406,35.86642,Target Franklin T-1963 - Franklin TN,3064 Columbia,Franklin,TN,37064 +-86.870826,35.924368,Five Points - Franklin TN (W),438 Main Street,Franklin,TN,37064 +-86.830838,35.911971,"S. Royal Oaks @ Murfreesboro - Franklin TN (D, W)",204 S. ROYAL OAKS BLVD,Franklin,TN,37064 +-86.806984,35.94529,"Thoroughbred Village - Franklin TN (D, W)",555 Cool Springs Rd.,Franklin,TN,37064 +-86.716429,36.25375,"Nashville Pike & Hwy. 109 Bypass - Gallatin TN (D, W)",875 Nashville Pike,Gallatin,TN,37066 +-86.802216,35.959488,"Carothers & Bakers Bridge - Franklin TN (D, W)",9175 Carothers Parkway,Franklin,TN,37067 +-86.61978,36.33336,"Veterans Pkwy. & New Shackle - Hendersonville TN (D, W)",1017 Glenbrook Way,Hendersonville,TN,37075 +-86.616823,36.3053,"201 W. Main - Hendersonville TN (D, W)",201 W. Main,Hendersonville,TN,37075 +-86.598175,36.214973,"Andrew Jackson Pkwy. @ Lebanon Pike - Hermitage TN (D, W)",4495 Lebanon Pike,Hermitage,TN,37076 +-86.69591,36.300218,"Cude Lane & Gallatin Rd. - Madison TN (D, W)",1907 Gallatin Pike North,Madison,TN,37115 +-86.512724,36.177221,Target Mount Juliet T-2126 - Mount Juliet TN,401 S. Mount Juliet Rd.,Mount Juliet,TN,37122 +-86.400412,35.790934,"Hwy. 231 & Innsbrooke - Murfreesboro TN (D, W)",2904 S. Church Street,Murfreesboro,TN,37127 +-86.422667,35.846877,"Old Fort & Mall Circle - Murfreesboro TN (D, W)",1804 Old Fort Parkway,Murfreesboro,TN,37129 +-86.35263,35.872774,Kroger - Murfreesboro #564 - Murfreesboro TN,2050 Lascassas Pike,Murfreesboro,TN,37130 +-86.352114,35.839009,Rutherford & Hwy. 70 - Murfreesboro TN (D),2935 S. Rutherford Blvd.,Murfreesboro,TN,37130 +-86.563256,35.979015,"I-24 & Sam Ridley Pkwy. - Smyrna TN (D, W)",620 Sam Ridley Pkwy. West,Smyrna,TN,37167 +-86.5626,35.9766,Super Target Smyrna ST-2360 - Smyrna TN,803 Industrial Blvd.,Smyrna,TN,37167 +-87.761971,36.078336,Super Target Spring Hill ST-2362 - Spring Hill TN,1033 Crossing Blvd.,Spring Hill,TN,37174 +-86.91438,35.77993,"Hwy. 31 & Spring Hill Circle - Spring Hill TN (D, W)",4839 Main Street,Spring hill,TN,37174 +-87.02151,35.8219,Kroger-Thompson Station TN #588 - Thompsons Station TN,4726 Traders Way,Thompsons Station,TN,37179 +-86.822899,36.135849,2525 West End - Nashville TN (W),2521 West End Ave.,Nashville,TN,37203 +-86.813794,36.143546,"West End Ave. & 30th Ave. So - Nashville TN (D, W)",3005 West End Ave.,Nashville,TN,37203 +-86.799035,36.146901,402 21st Avenue - Nashville TN (W),402 21st Avenue S.,Nashville,TN,37203 +-86.780687,36.16124,Renaissance Nashville - Nashville TN,611 Commerce St.,Nashville,TN,37203 +-86.794848,36.10654,Lipscomb University - Student Cente - Nashville TN,3901 Granny White Pike,Nashville,TN,37204 +-86.854303,36.130714,Target Nashville T-146 - Nashville TN,26 White Bridge Rd.,Nashville,TN,37205 +-86.847943,36.124777,White Bridge @ Harding - Nashville TN (W),4514 Harding Pike,Nashville,TN,37205 +-86.84329,36.1248,Harris Teeter - Nashville #318 - Nashville TN,4416 Ridgefield Way,Nashville,TN,37205 +-86.83135,36.152687,Target - Nashville T-2240 - Nashville TN,3814 Charlotte Pike,Nashville,TN,37209 +-86.74408,36.04197,Old Hickory @ Edmundson - Nashville TN (W),5533 Edmonson Pike,Nashville,TN,37211 +-86.692723,36.214402,Opry Mills Mall - Nashville TN,2820 Opryland Drive,Nashville,TN,37214 +-86.667527,36.136149,BNA C 6 - Nashville TN (A),1 Terminal Dr,Nashville,TN,37214 +-86.667527,36.136149,BNA Presecurity - Nashville TN (A),One Terminal Drive Suite 325,Nashville,TN,37214 +-86.818438,36.105989,Kroger - Nashville #895 - Nashville TN,2131 Abbott Martin Rd.,Nashville,TN,37215 +-86.81556,36.108231,The Mall at Green Hills - Nashville TN (W),2153 Green Hills Village Drive,Nashville,TN,37215 +-86.810772,36.109922,Green Hills - Nashville TN (W),3706 Hillsboro Pike,Nashville,TN,37215 +-86.647519,36.085911,"Murfreesboro Rd. - Nashboro Village - Nashville TN (D, W)",2308 Murfreesboro Pike,Nashville,TN,37217 +-86.616891,36.193823,"Old Hickory & Chandler - Hermitage TN (D, W)",5008 Old Hickory Blvd.,Hermitage,TN,37218 +-86.78059,36.165309,DoubleTree Nashville Downtown - Nashville TN,315 4th Ave. N.,Nashville,TN,37219 +-86.780073,36.163647,5th & Church - Nashville TN (W),424 Church Street Suite 110,Nashville,TN,37219 +-86.955725,36.044103,"Bellevue - Hwy. 100 - Bellevue TN (D, W)",8121 Highway 100,Bellevue,TN,37221 +-86.906082,36.128753,Bellevue-Hwy 70 - Nashville TN (W),7083 Highway 70 S.,Nashville,TN,37221 +-86.797832,36.187704,"Metrocenter & Dominican - Nashville TN (D, W)",515 Dominican Drive,Nashville,TN,37228 +-86.805934,36.144369,Vanderbilt University - Nashville TN,310 25th Avenue South,Nashville,TN,37240 +-84.86795,35.218685,Target Cleveland T-2367 - Cleveland TN,4570 Frontage Rd. NW,Cleveland,TN,37312 +-85.24937,35.148396,Target Hixon/Chattanooga T-2053 - Hixson TN,5579 Hwy. 153,Hixson,TN,37343 +-85.24114,35.126034,"Hwy. 153 @ Hamill Rd. - Hixson TN (D, W)",5238 Highway 153,Hixson,TN,37343 +-86.049133,35.45745,"I-24 & Hillsboro Hwy. - Manchester TN (D, W)",84 Campground,Manchester,TN,37355 +-84.866986,35.155301,"Keith & 1st - Cleveland TN (D, W)",653 West Inman St.,Cleveland,TN,37364 +-85.310597,35.046697,Sheraton Chattanooga - Chattanooga TN,827 Broad St.,Chattanooga,TN,37402 +-85.291001,35.047964,Erlanger Hospital - Chattanooga TN,975 East 3rd Street,Chattanooga,TN,37403 +-85.20596,35.017623,"Brainerd & Belaire - Chattanooga TN (D, W)",5610 Brainerd Rd.,Chattanooga,TN,37411 +-85.154565,35.04099,"Shallowford & Napier - Chattanooga TN (D, W)",2217 Hamilton Place Blvd.,Chattanooga,TN,37421 +-85.154475,35.032295,"Gunbarrel Rd. @ Jarnigan Rd. - Chattanooga TN (D, W)",1951 Gunbarrel Rd.,Chattanooga,TN,37421 +-82.375202,36.34097,"Hwy. 11E & Mount Castle Dr. - Johnson City TN (D, W)",2008 North Roan St.,Johnson City,TN,37604 +-82.493433,36.549955,Target Kingsport T-2332 - Kingsport TN,2626 E. Stone Dr,Kingsport,TN,37660 +-82.519565,36.542989,N. Eastman & Ryder - Kingsport TN (D),1860 N. Eastman Road,Kingsport,TN,37664 +-83.987045,35.805504,TYS Foodcourt (Knoxville) - Alcoa TN (A),2055Airport Hwy.,Alcoa,TN,37701 +-83.98282,35.812305,"Cusick & Alcoa - Alcoa TN (D, W)",121 Cusick Rd.,Alcoa,TN,37701 +-84.569451,35.875369,Kroger - Harriman #628 - Harriman TN,1820 Roane State Highway,Harriman,TN,37748 +-83.61067,35.986235,Bass Pro Shops - Sevierville - Kodak TN,117 Top Flite Dr,Kodak,TN,37764 +-83.992375,35.749689,"Watkins & Lamar Alexander Pkwy. - Maryville TN (D, W)",1011 W. Lamar Alexander Pkwy,Maryville,TN,37801 +-84.253395,36.01484,"Oak Ridge Tpke & Main St. - Oak Ridge TN (D, W)",1305 Oakridge Turnpike,Oak Ridge,TN,37840 +-83.99988,36.049926,"I-75 & Emory - Powell TN (D, W)",401 East Emory Road,Powell,TN,37849 +-83.573214,35.832491,US Hwy. 441 & New Era - Sevierville TN (W),1645 Parkway,Sevierville,TN,37862 +-83.572673,35.883392,"Hwy. 66 & US 411 - Sevierville TN (D, W)",646 Winfield Dunn Parkway,Sevierville,TN,37862 +-83.58137,35.803436,Kroger-Pigeon Forge #536 - Pigeon Forge TN,220 Wears Valley Road,Pigeon Forge,TN,37863 +-83.577483,35.806688,Parkway & Wears Valley Road - Pigeon Forge TN (D),2491 HIGHWAY 441,Pigeon Forge,TN,37863 +-83.92017,35.962481,Hilton Knoxville - Knoxville TN,501 West Church Street,Knoxville,TN,37902 +-83.970541,36.010393,"I-75 @ Merchant Rd. - Knoxville TN (D, W)",116 Merchants Drive,Knoxville,TN,37912 +-83.937648,35.954874,"Cumberland Ave. & 21st St. - Knoxville TN (D, W)",2021 Cumberland Avenue,Knoxville,TN,37916 +-83.888409,36.036589,Target Knoxville North T-2057 - Knoxville TN,4700 New Harvest Ln.,Knoxville,TN,37918 +-84.0419,35.927,"Kingston Pike & Montvue - Knoxville TN (D, W)",7803 Montvue Center Way,Knoxville,TN,37919 +-83.985455,35.940881,"Kingston Pike & Newcomb Ave. - Knoxville TN (D, W)",4924 Kingston Pike,Knoxville,TN,37919 +-84.151952,35.900553,Super Target Knoxville ST-1370 - Knoxville TN,11100 Parkside Dr,Knoxville,TN,37922 +-84.150836,35.902118,"Parkside Dr--Turkey Creek - Knoxville TN (D, W)",11038 Park Side Dr,Knoxville,TN,37922 +-84.069375,35.862359,Kroger - Knoxville #525 - Knoxville TN,9501 S. Northshore Dr.,Knoxville,TN,37922 +-84.0936,35.942594,Kroger - Knoxville #530 - Knoxville TN,9161 Middlebrook Pike,Knoxville,TN,37923 +-84.092969,35.921362,"N. Cedar Bluff & Park West Blvd. - Knoxville TN (D, W)",329 N. Cedar Bluff Blvd.,Knoxville,TN,37923 +-84.175,35.8757,Kroger-Farragut TN #686 - Farragut TN,189 Brooklawn Street,Farragut,TN,37934 +-83.92662,35.9549,University of Tennessee Student Cen - Knoxville TN,1235 Phillip Fulmer Way,Knoxville,TN,37996 +-84.037349,35.94432,U of TN/Knoxville - Library - Knoxville TN,1017 Francis Street,Knoxville,TN,37996 +-89.733292,35.050509,"Houston Levee & Winchester - Collierville TN (D, W)",3603 S. Houston Levee Rd.,Collierville,TN,38017 +-89.692603,35.046182,Collierville - Collierville TN (W),897 Poplar,Collierville,TN,38017 +-89.68988,35.04925,Target Collierville T-1907 - Collierville TN,325 New Byhalia Rd.,Collierville,TN,38017 +-89.797759,35.138412,Super Target Cordova ST-1844 - Cordova TN,475 N. Germantown Pkwy,Cordova,TN,38018 +-89.796502,35.137892,Germantown Pkwy. & Trinity Rd. - Cordova TN (W),465 N. Germantown Pkwy,Cordova,TN,38018 +-89.794611,35.151809,Germantown & Macon - Cordova TN (D),970 N. Germantown,Cordova,TN,38018 +-89.728098,35.157497,"Houston Levee & Macon - Cordova TN (D, W)",1181 North Houston Levee,Cordova,TN,38018 +-89.891716,35.361108,"Hwy. 51 - Millington - Millington TN (D, W)",8507 Hwy. 51,Millington,TN,38053 +-89.791342,35.20115,Wolfchase Galleria - inline - Memphis TN (W),2760 Germantown Pkwy,Memphis,TN,38101 +-90.052336,35.138537,Westin Downtown Memphis - Memphis TN,201 S. 3rd St.,Memphis,TN,38103 +-89.999602,35.135679,"Union & McLean - Memphis TN (D, W)",1850 Union Avenue,Memphis,TN,38104 +-90.044651,35.1523,St. Judes Childrens Hospital - Memphis TN,332 North Lauderdale,Memphis,TN,38105 +-89.949047,35.129192,"Poplar & Highland - Memphis TN (D, W)",3388 Poplar Avenue,Memphis,TN,38111 +-89.980836,35.052029,MEM B Post Security Checkpoint - Memphis TN (A),2491 Winchester Rd.,Memphis,TN,38116 +-89.980836,35.052029,MEM Pre Security B Ticketing - Memphis TN (A),2491 Winchester Rd.,Memphis,TN,38116 +-89.980836,35.052029,MEM - Concourse A - Memphis TN (A),2491 Winchester Road,Memphis,TN,38116 +-89.980836,35.052029,MEM - Concourse B Y Connector - Memphis TN (A),2491 Winchester Road,Memphis,TN,38116 +-89.980836,35.052029,MEM - Concourse C Space C16 - Memphis TN (A),2491 Winchester Road,Memphis,TN,38116 +-89.913378,35.117305,Oak Court Mall - Memphis TN,4465 Poplar Avenue,Memphis,TN,38117 +-89.888493,35.109205,Poplar & White Station - Memphis TN (W),5201 Poplar Avenue,Memphis,TN,38117 +-89.863496,35.102499,Target Memphis East T 2474 - Memphis TN,5959 Poplar Avenue,Memphis,TN,38118 +-89.87291,35.104259,"Poplar & I-240 - Memphis TN (D, W)",5679 Poplar Ave.,Memphis,TN,38119 +-89.858994,35.101786,Poplar @ Ridgeway - Memphis TN (W),6161 Poplar Avenue,Memphis,TN,38119 +-89.84258,35.072563,"Kirby & Quince - Germantown TN (D, W)",2801 Kirby Parkway,Germantown,TN,38119 +-89.860611,35.129403,Baptist Memorial Hospital Main Entr - Memphis TN,6019 Walnut Grove Rd.,Memphis,TN,38120 +-89.806772,35.047252,Target Memphis T-2060 - Memphis TN,7697 Winchester Rd.,Memphis,TN,38125 +-89.798109,35.048009,"Hacks & Winchester - Memphis TN (D, W)",7945 Winchester Road,Memphis,TN,38125 +-89.796874,35.204561,Target Memphis T-1030 - Memphis TN,7989 US Hwy. 64,Memphis,TN,38133 +-89.791143,35.199267,"Wolfchase Drive-thru - Memphis TN (D, W)",2698 N. Germantown Pkwy,Memphis,TN,38133 +-89.866085,35.16917,"Sycamore View & Shelby Oaks - Memphis TN (D, W)",1615 Sycamore View,Memphis,TN,38134 +-89.840611,35.206336,"Stage @ Kirby - Bartlett TN (D, W)",2955 Kirby-Whitten Pkwy,Bartlett,TN,38134 +-89.810379,35.093607,Germantown & Poplar - Germantown TN (W),7570 Poplar Avenue,Germantown,TN,38138 +-89.757751,35.066225,Poplar @ Forest Hill - Germantown TN (W),9155 Hwy. 72,Germantown,TN,38138 +-89.757024,35.066983,Target Germantown T-682 - Germantown TN,9235 US Hwy. 72,Germantown,TN,38138 +-88.856175,35.686042,Target Jackson East T-921 - Jackson TN,93 Stonebrook Pl,Jackson,TN,38305 +-88.84536,35.666782,US 45 Bypass & Vann Dr. - Jackson TN (W),907 Vann Drive,Jackson,TN,38305 +-85.505626,36.138733,"Jefferson & Interstate - Cookeville TN (D, W)",1105 Interstate Drive,Cookeville,TN,38501 +-85.503616,36.175903,Tennessee Tech University - Cookeville TN,1000 North Dixie,Cookeville,TN,38505 +-89.897901,34.962421,Target Olive Branch West T-2442 - Olive Branch MS,5150 Goodman Rd.,Olive Branch,MS,38654 +-90.330178,34.84516,Horseshoe Casino Tunica - Tunica MS,1021 Casino Center Drive,Tunica,MS,38664 +-89.985538,34.962747,"Southhaven - Southhaven MS (D, W)",180 Goodman Road East,Southhaven,MS,38671 +-89.844255,34.962261,"Hwy. 302 & Old Goodman Rd. - Olive Branch MS (D, W)",8140 Goodman Rd.,Olive Branch,MS,38671 +-88.743753,34.255711,"Thomas Rd. & West Main St. - Tupelo MS (D, W)",2433 West Main St.,Tupelo,MS,38801 +-90.32634,32.330758,"I-20 @ Springridge - Clinton MS (D, W)",482 Springridge Road,Clinton,MS,39056 +-90.149534,32.35632,I 55 & Northside - Jackson MS (W),1220 E. Northside Dr,Jackson,MS,39202 +-90.146381,32.272018,Bass Pro Shops - Pearl - Pearl MS,315 Childre Rd.,Pearl,MS,39208 +-90.144998,32.402451,Target-Jackson T-754 - Jackson MS,6365 I-55 N.,Jackson,MS,39213 +-90.07379,32.284588,JAN - Jackson MS Main Term Bldg - Flowood MS (A),100 International Dr,Flowood,MS,39232 +-90.06033,32.34314,Target Flowood T-1920 - Flowood MS,170 Promenade Blvd.,Flowood,MS,39232 +-89.386223,31.320966,Target Hattiesburg T-2055 - Hattiesburg MS,6143 US Hwy. 98,Hattiesburg,MS,39402 +-89.34463,31.325035,"Hardy St. & 38th Ave. - Hattiesburg MS (D, W)",3708 Hardy Street,Hattiesburg,MS,39402 +-89.330325,31.324781,U of S. MS/Hattisburg -Cook Library - Hattiesburg MS,2701 Hardy Street,Hattiesburg,MS,39406 +-89.09668,30.43745,"I 10 & Hwy. 49 - Gulfport MS (D, W)",15299 Crossroads Pkwy,Gulfport,MS,39503 +-88.885489,30.391534,Casino Biloxi - Hard Rock - Biloxi MS (W),777 Beach Blvd.,Biloxi,MS,39530 +-88.860265,30.392302,Isle of Capri Casino- Biloxi- Main - Biloxi MS,151 Beach Blvd.,Biloxi,MS,39530 +-88.976609,30.40179,"Popps & Pass - Biloxi MS (D, W)",2404 Pass Rd.,Biloxi,MS,39531 +-88.8846,30.4446,Target D'Iberville T-2485 - D'Iberville MS,3867 Promenade Pkwy,D'Iberville,MS,39540 +-88.7944,33.4537,Missisippi State University - Mississippi State MS,Darden St.,Mississippi State,MS,39762 +-85.515514,38.366074,"Hwy. 329 & I 71 - Crestwood KY (D, W)",7203 Hwy. 329,Crestwood,KY,40014 +-85.620706,38.338514,Prospect Village - Prospect KY (W),5915 Timber Ridge Drive,Prospect,KY,40059 +-85.756854,38.254649,Louisville Convention Center - Louisville KY,221 S. 4th St.,Louisville,KY,40202 +-85.75509,38.253605,Marriott Hotel Convention Center - Louisville KY,280 W. Jefferson St.,Louisville,KY,40202 +-85.757512,38.251078,Seelbach Hilton - Louisville KY,500 S. 4th St.,Louisville,KY,40202 +-85.724287,38.240248,1000 Baxter Ave. Center - Louisville KY (W),972 Baxter Avenue,Louisville,KY,40204 +-85.661914,38.253409,"Frankfort & Lexington - Louisville KY (D, W)",3702 Frankfort Avenue,Louisville,KY,40207 +-85.644915,38.258414,Target St. Matthews T-2473 - St. Matthews KY,4174 Westport Rd.,St Matthews,KY,40207 +-85.640605,38.259276,Kroger - Louisville #387 - Louisville KY,279 N. Hubbards Lane,Louisville,KY,40207 +-85.634802,38.251175,"4400 Shelbyville Rd. - Louisville KY (D, W)",4400 Shelbyville Road,Louisville,KY,40207 +-85.624723,38.250265,Mall St. Matthews - Louisville KY (W),5000 Shelbyville Road,Louisville,KY,40207 +-85.747125,38.184542,SDF - Louisville A/B Rotunda - Louisville KY (A),10 Standiford Field,Louisville,KY,40209 +-85.74558,38.185764,SDF - Louisville Pre-Sec Food Ct - Louisville KY (A),10 Standiford Field,Louisville,KY,40209 +-85.763952,38.204663,"Central & 3rd - Louisville KY (D, W)",3103 S. Third Street,Louisville,KY,40214 +-85.666526,38.20559,"Bardstown & Heather - Louisville KY (D, W)",3401 Bardstown Road,Louisville,KY,40218 +-85.760195,38.125421,Jefferson Mall - Louisville KY (W),4801-302 Outer Loop,Louisville,KY,40219 +-85.628133,38.219973,"Taylorsville & Hikes - Louisville KY (D, W)",3954 Taylorsville Rd.,Louisville,KY,40220 +-85.596521,38.217874,Target Louisville T-780 - Louisville KY,4640 Taylorsville Rd.,Louisville,KY,40220 +-85.606567,38.248821,Oxmoor Center Kiosk - Louisville KY (W),7900 Shelbyville Rd.,Louisville,KY,40222 +-85.577828,38.225862,"Hurstbourne & I-64 - Louisville KY (D, W)",1321 S. Hurstborne Pkwy,Louisville,KY,40222 +-85.632523,38.28381,Holiday Manor - Louisville KY (W),4942 U.S. Highway 42,Louisville,KY,40222 +-85.57682,38.246425,"Hurstbourne & Shelbyville - Louisville KY (D, W)",101 No Hurstbourne Ln.,Louisville,KY,40223 +-85.5965,38.3153,Springhurst Commons - Louisville KY (W),3521 Springhurst Commons Drive,Louisville,KY,40241 +-85.581798,38.284402,Kroger - Louisville #764 - Louisville KY,9501 Westport Road,Louisville,KY,40241 +-85.57954,38.303726,The Summit at Louisville - Louisville KY (W),4001 Summit Plaza Dr,Louisville,KY,40241 +-85.55483,38.297,Target Louisville T-1071 - Louisville KY,4101 Towne Center Dr,Louisville,KY,40241 +-85.546103,38.241728,Blankenbaker Plaza - Louisville KY (W),243 Blankenbaker Pkwy,Louisville,KY,40243 +-85.51177,38.24281,Target Middletown T-2728 - Middletown KY,12975 Shelbyville Rd.,Middletown,KY,40243 +-85.524196,38.245296,Kroger - Louisville #356 - Louisville KY,12501 Shelbyville Rd.,Louisville,KY,40243 +-85.836028,38.152439,"Dixie Hwy. & Kerrick - Louisville KY (D, W)",6731 Dixie Highway,Louisville,KY,40258 +-85.589932,38.21464,Hurstbourne & Taylorsville - Jeffersontown KY (W),9036 Taylorsville Road,Jeffersontown,KY,40299 +-85.519818,38.187426,"Taylorsville & I-265 - Louisville KY (D, W)",12605 Taylorsville Road,Louisville,KY,40299 +-84.534975,38.228338,"Hwy. 62 & Connector - Georgetown KY (D, W)",476 Connector Rd.,Georgetown,KY,40324 +-84.5449,37.9354,"Commerce & Nicholasville - Nicholasville KY (D, W)",123 Bryant Drive,Nicholasville,KY,40356 +-84.710673,38.048826,Kroger-Versailles #364 - Versailles KY,525 Marsailles Road,Versailles,KY,40383 +-84.20621,37.986706,Kroger-Winchester #402 - Winchester KY,1661 Bypass Hwy. 1958,Winchester,KY,40391 +-84.326383,37.735219,"I-75 & Barnes Mill - Richmond KY (D, W)",2013 Colby Taylor Drive,Richmond,KY,40475 +-84.30258,37.741921,Eastern Kentucky University-Weaver - Richmond KY,521 Lancaster Ave.,Richmond,KY,40475 +-84.273802,37.754021,Kroger-Richmond #705 - Richmond KY,890 Richmond Plaza,Richmond,KY,40475 +-84.517,37.9988,"Nicholasville & New Circle - Lexington KY (D, W)",2700 Wilhite Dr.,Lexington,KY,40502 +-84.490018,38.031016,Ashland & High - Lexington KY (W),808 East High Street,Lexington,KY,40502 +-86.046327,39.956764,"116th & Allisonville - Fishers IN (D, W)",7050 East 116th Street,Fishers,IN,40503 +-84.524199,37.990256,Fayette Mall - Lexington KY,3401 Nicholasville Road,Lexington,KY,40503 +-84.554382,38.046574,"Versailles & Parkers Mill - Lexington KY (D, W)",2320 Versailles Road,Lexington,KY,40504 +-84.514368,38.039353,"Virginia & Broadway - Lexington KY (D, W)",870 So. Broadway,Lexington,KY,40504 +-84.50857,38.03422,Univ of Kentucky-Kentucky Clinic - Lexington KY,740 S. Limestone Ave.,Lexington,KY,40506 +-84.50471,38.0244,University of Kentucky - OVIDS Libr - Lexington KY,W.T. Young Library Building Donovan Dri,Lexington,KY,40506 +-84.50265,38.03225,Univ of Kentucky-Commons Market - Lexington KY,University Drive & Hilltop Avenue,Lexington,KY,40506 +-84.494459,38.045531,Univ of Kentucky-Student Center - Lexington KY,131 Martin Luther King Blvd.,Lexington,KY,40506 +-84.499183,38.048346,Triangle Center - Lexington KY (W),325 West Main Street,Lexington,KY,40507 +-84.611677,37.975272,Winchester & I-75 - Lexington KY (D),2320 Elkhorn Road,Lexington,KY,40509 +-84.453434,38.008398,"2703 Richmond Rd. - Lexington KY (D, W)",2703 Richmond Rd.,Lexington,KY,40509 +-84.446727,38.002072,Kroger - Lexington #407 - Lexington KY,3101 Richmond Road,Lexington,KY,40509 +-84.417864,38.016651,Man O' War near I-75 - Lexington KY (W),1869 Plaudit Place,Lexington,KY,40509 +-84.556776,38.020618,Kroger-Lexington KY #767 - Lexington KY,3175 Beaumont Centre Cir,Lexington,KY,40513 +-84.554694,37.98272,"Boston & Man O' War - Lexington KY (D, W)",3809 Dylan Place,Lexington,KY,40514 +-84.898739,38.168085,"US 127 - Frankfort - Frankfort KY (D, W)",1303 US 127 South,Frankfort,KY,40601 +-84.8957,38.1632,US 60 & I-64 - Frankfort KY (D),100 Jett Dr.,Frankfort,KY,40601 +-84.826372,38.197676,Kroger #397 - Frankfort KY,302 Brighton Park Boulevard,Frankfort,KY,40601 +-84.11946,37.097466,I-75 & 192 Bypass - London KY (D),2021 West Highway 192,London,KY,40741 +-84.690982,39.018808,Kroger-Burlington KY #434 - Burlington KY,1751 Patrick Drive,Burlington,KY,41005 +-84.511658,39.08958,N. Kentucky Conv Ctr. - Covington KY,1 W. River Center Blvd.,Covington,KY,41011 +-84.580948,39.02671,I-275 & Dixie Hwy. - Crestview Hills KY (W),2871 Dixie Highway,Crestview Hills,KY,41017 +-84.651771,38.991783,"Mall & Plaza - Florence KY (D, W)",7905 Mall Road,Florence,KY,41042 +-84.706993,39.064365,Kroger Market Place #409 - Hebron KY,3105 North Bend Rd.,Hebron,KY,41048 +-84.6986,39.0802,CVG - Cinci Term 3 Pre Secur Delta - Hebron KY (A),2939 Terminal Dr,Hebron,KY,41048 +-84.660854,39.042339,CVG - Cinci Term 3 Conc B - Hebron KY (A),2939 Terminal Dr,Hebron,KY,41048 +-84.48511,39.0827,Kroger-Newport KY #423 - Newport KY,130 Pavilion Pkwy,Newport,KY,41071 +-84.467877,39.081356,Newport - Newport KY (W),1405 Grand Avenue,Newport,KY,41071 +-84.424095,39.0079,Kroger - Cold Spring #410 - Cold Spring KY,375 Crossroads Blvd.,Cold Spring,KY,41076 +-84.675805,38.966145,Kroger-Union #424 - Union KY,8825 US 42,Union,KY,41091 +-84.6234,38.8854,Kroger-Walton KY #367 - Walton KY,635 Chestnut Drive,Walton,KY,41094 +-84.464386,39.03519,Northern Kentucky U Student Union - Highland Heights KY,20 Kenton Drive,Highland Heights,KY,41099 +-82.644008,38.48094,Winchester & 12th - Ashland KY (D),1201 Winchester Avenue,Ashland,KY,41101 +-88.685021,37.077284,Kentucky Oaks Mall - Paducah KY,5101 Hinkleville Road,Paducah,KY,42001 +-88.647124,37.053419,Lourdes Hospital - Paducah KY,1530 Lone Oak Road,Paducah,KY,42003 +-86.423745,36.947247,"Hwy. 231 - Bowling Green - Bowling Green KY (D, W)",2808 Scottsville Rd.,Bowling Green,KY,42103 +-86.473465,36.964932,"Campbell & Hwy. 31 - Bowling Green KY (D, W)",710 Campbell Lane,Bowling Green,KY,42104 +-87.4572,36.648365,Fort Campbell - Fort Campbell KY,2610 Indiana Ave.,Fort Campbell,KY,42223 +-87.473114,36.82768,"US 41 & Clinic - Hopkinsville KY (D, W)",110 Clinic Drive,Hopkinsville,KY,42240 +-87.125253,37.717053,Target Owensboro T-757 - Owensboro KY,5151 Frederica St.,Owensboro,KY,42301 +-87.111513,37.752325,Frederica & Booth - Owensboro KY (W),2402 Frederica,Owensboro,KY,42301 +-87.150087,37.754387,Kroger-Owensboro #718 - Owensboro KY,1670 Starlite Rd.,Owensboro,KY,42310 +-83.10937,40.31256,Kroger-Delaware OH #804 - Delaware OH,801 North Houck Road,Delaware,OH,43015 +-83.029303,40.201797,Kroger-Delaware OH #805 - Delaware OH,6417 Columbus Pike,Delaware,OH,43015 +-83.127312,40.076723,The Mall at Tuttle Crossing - Dublin OH (W),5043 Tuttle Crossing Boulevard,Dublin,OH,43016 +-83.090271,40.120819,Kroger-Dublin #581 - Dublin OH,7625 SAWMILL RD,Dublin,OH,43016 +-83.161387,40.102837,Kroger-Dublin #817 - Dublin OH,7100 Perimeter Loop Rd.,Dublin,OH,43017 +-83.157659,40.101606,Giant Eagle-Columbus #6520 - Dublin OH,6700 Perimeter Loop Rd.,Dublin,OH,43017 +-83.120822,40.099176,Kroger - Dublin #350 - Dublin OH,299 W. Bridge St.,Dublin,OH,43017 +-83.114155,40.099354,Historic Dublin - Dublin OH (W),19 West Bridge Street,Dublin,OH,43017 +-83.089694,40.08958,Target Columbus/Dublin T-666 - Dublin OH,6000 Sawmill Rd.,Dublin,OH,43017 +-83.121957,40.038587,Target Hilliard T-1969 - Hilliard OH,4211 Trueman Blvd.,Hilliard,OH,43026 +-83.116432,40.027417,Mill Run - Hilliard OH (W),3680 Fishinger Boulevard,Hilliard,OH,43026 +-83.01909,40.15832,"Rt 23 - Lewis Center - Lewis OH (D, W)",21 Neverland Drive,Lewis,OH,43035 +-83.350036,40.237698,Marysville OH - Marysville OH (D),1081 Delaware Ave.,Marysville,OH,43040 +-82.4603,40.3993,Kroger-Mt Vernon #820 - Mt Vernon OH,855 Coshocton Ave.,Mt Vernon,OH,43050 +-82.812502,40.066436,Kroger-New Albany #881 - New Albany OH,5161 Hampstead Village Sq,New Albany,OH,43054 +-82.815085,40.081379,Library Square-New Albany - New Albany OH (W),220 Market St.,New Albany,OH,43054 +-82.421453,40.086181,Kroger-Newark OH #923 - Newark OH,243 Deo Drive,Newark,OH,43055 +-82.682428,40.001974,Kroger-Pataskala OH #591 - Pataskala OH,310 East Broad Street,Pataskala,OH,43062 +-83.096969,40.158712,Kroger-Powell #898 - Powell OH,3975 W. Powell Rd.,Powell,OH,43065 +-83.091654,40.157733,"Powell & Sawmill - Powell OH (D, W)",9700 Sawmill Parkway,Powell,OH,43065 +-83.044838,40.062866,"Bethel Road - Columbus OH (D, W)",965 Bethel Road,Columbus,OH,43068 +-82.83069,39.932129,"Brice Road - Columbus OH (D, W)",2560 Brice Rd.,Columbus,OH,43068 +-82.7952,39.9544,Limited Brands - Victoria's Secret - Reynoldsburg OH,4 Limited Pkwy,Reynoldsburg,OH,43068 +-82.786586,39.985779,"East Broad & Waggoner - Reynoldsburg OH (D, W)",8070 E. Broad Street,Reynoldsburg,OH,43068 +-82.78525,39.985928,Target Columbus East T-2086 - Reynoldsburg OH,8100 E. Broad St.,Reynoldsburg,OH,43068 +-82.7597,39.9795,Target Reynoldsburg T-2450 - Reynoldsburg OH,2437 Tylor Park Drive,Reynoldsburg,OH,43068 +-82.875095,40.252761,"Sunbury D/T - Sunbury OH (D, W)",7305 SR 36/37,Sunbury,OH,43074 +-82.927167,40.111909,"Westerville - Westerville OH (D, W)",533 South State Street,Westerville,OH,43081 +-82.878917,40.159861,Kroger-Westerville #965 - Westerville OH,5991 Sunbury Rd.,Westerville,OH,43081 +-82.924093,40.142982,Giant Eagle-Westerville #6507 - Westerville OH,650 N. State St.,Westerville,OH,43082 +-82.909797,40.152636,Kroger-Westerville #847 - Westerville OH,7345 US Hwy. 3,Westerville,OH,43082 +-83.016928,40.106628,"Worthington Wilson Bridge & N. High - Worthington OH (D, W)",7176 North High Street,Worthington,OH,43085 +-83.014305,40.1028,Kroger - Worthington #273 - Columbus OH,2280 Sunrise Blvd.,Columbus,OH,43085 +-82.829399,39.843665,"Canal Winchester - Canal Winchester OH (D, W)",6130 Gender Road,Canal Winchester,OH,43110 +-83.155235,39.951915,Kroger - Galloway #623 - Galloway OH,5800 W. Broad Street,Galloway,OH,43119 +-83.073224,39.840907,Kroger-Grove City #842 - Grove City OH,5965 Hoover Rd.,Grove City,OH,43123 +-83.061188,39.87825,"Grove City - Grove City OH (D, W)",2191 Stringtown Road,Grove City,OH,43123 +-83.05298,39.861816,Target Grove City T-2070 - Grove City OH,4144 Buckeye Pkwy,Grove City,OH,43123 +-83.044166,39.878867,"Grove City Stringtown Rd. - Grove City OH (D, W)",1732 Stringtown Road,Grove City,OH,43123 +-82.614812,39.731349,"Lancaster N. Memorial & Pershing - Lancaster OH (D, W)",1626 N. Memorial Dr.,Lancaster,OH,43130 +-82.580014,39.713666,Kroger-Lancaster #931 - Lancaster OH,1141 E. Main St.,Lancaster,OH,43130 +-83.588321,41.704395,Kroger-Toledo #511 - Toledo OH,4925 Jackman Rd.,Toledo,OH,43147 +-82.779233,39.91189,Kroger-Pickerington #538 - Pickerington OH,1045 N. Hill Rd.,Pickerington,OH,43147 +-83.007326,39.998701,Ohio State University - Columbus OH (W),1782 North High Street,Columbus,OH,43201 +-83.015545,40.031912,Broadway & N. High - Columbus OH (W),3416 North High Street,Columbus,OH,43202 +-82.995122,39.949131,3RD St. - German Village - Columbus OH (W),650 South 3rd Street,Columbus,OH,43206 +-82.933266,39.957402,Bexley - Bexley OH (W),2450 East Main Street,Bexley,OH,43209 +-83.044141,39.993808,Kroger-Columbus #942 - Columbus OH,1375 Chambers Rd.,Columbus,OH,43212 +-83.035011,39.988298,"5th Avenue - Grandview - Columbus OH (D, W)",1085 West Fifth Avenue,Columbus,OH,43212 +-83.025486,39.994232,"Lennox Station - Columbus OH (D, W)",1570 Olentagy Road,Columbus,OH,43212 +-82.895222,39.971409,Target Whitehall T-1972 - Whitehall OH,3955 E. Broad St.,Whitehall,OH,43213 +-82.832825,39.980663,"The Market at East Broad - Columbus OH (D, W)",6264 East Broad Street,Columbus,OH,43213 +-83.023397,40.065928,Kroger-Columbus #819 - Columbus OH,199 Graceland Blvd.,Columbus,OH,43214 +-83.020533,40.065937,Target Worthington T-1978 - Columbus OH,55 Graceland Blvd.,Columbus,OH,43214 +-83.003831,39.969274,Arena District - Columbus OH (W),339 North Front Street,Columbus,OH,43215 +-83.001933,39.949534,Kroger-Columbus #569 - Columbus OH,150 W. SYCAMORE ST,Columbus,OH,43215 +-83.001209,39.962476,One Columbus Place - Columbus OH (W),10 W. Broad St.,Columbus,OH,43215 +-82.998429,39.963042,88 East Broad - Columbus OH (W),88 East Broad Street,Columbus,OH,43215 +-82.9204,40.049,Easton Town Center - Columbus OH (W),4015 Easton Station,Columbus,OH,43219 +-82.914081,40.047925,Easton - Macy's - Columbus OH (W),4141 Easton Loop East,Columbus,OH,43219 +-82.889206,39.998246,CMH - Columbus B Concourse - Columbus OH (A),4600 International Gateway,Columbus,OH,43219 +-82.889206,39.998246,CMH A-Concourse - Columbus OH (A),4600 International Gateway,Columbus,OH,43219 +-82.889206,39.998246,CMH C-Concourse - Columbus OH (A),4600 International Gateway,Columbus,OH,43219 +-82.920418,40.056499,Target Columbus NE T-1072 - Columbus OH,4199 Morse Crossing,Columbus,OH,43219 +-82.919864,40.051294,"Market at Easton - Columbus OH (D, W)",3954 Morse Crossing,Columbus,OH,43219 +-83.073578,40.056503,Henderson & Nugent - Upper Arlington OH (W),2051 Henderson Road,Upper Arlington,OH,43220 +-83.059168,40.02328,"Upper Arlington Tremont - Upper Arlington OH (D, W)",3235 Tremont Rd.,Upper Arlington,OH,43221 +-83.045659,40.006893,"Fiesta Lane - Lane Ave. - Columbus OH (D, W)",1315 W. Lane Ave.,Columbus,OH,43221 +-83.151869,39.991211,Target Columbus Far SW T-2358 - Columbus OH,1970 Hililard Rome Rd.,Columbus,OH,43228 +-83.119568,39.92402,"Georgesville Center - Columbus OH (D, W)",1355 Georgesville Road,Columbus,OH,43228 +-82.794902,40.080396,Giant Eagle Mkt-Columbus #6502 - Columbus OH,1000 E. Dublin-Granville Rd.,Columbus,OH,43229 +-82.899455,40.052197,Limited Brands Headquarters - Columbus OH,3 Limited Pkwy,Columbus,OH,43230 +-82.867,40.0135,Kroger - Gahanna #522 - Gahanna OH,Hamilton Road & Rocky Fork Blvd.,Gahanna,OH,43230 +-82.864483,40.055408,Morse Rd. & Hamilton Rd. - Columbus OH (W),4784 Morse Rd.,Columbus,OH,43230 +-83.095099,40.064278,Giant Eagle Mkt-Columbus #6504 - Columbus OH,4747 Sawmill Rd.,Columbus,OH,43235 +-83.091192,40.099382,Sawmill & Granville - Columbus OH (W),6490 Sawmill Road,Columbus,OH,43235 +-83.012752,40.118237,"Crosswoods - Columbus OH (D, W)",199 E. Campus View Blvd.,Columbus,OH,43235 +-82.994156,40.143616,Chase HQ Columbus - Columbus OH,1111 Polaris Parkway,Columbus,OH,43240 +-82.988152,40.141688,"Polaris - Columbus OH (D, W)",1187 Polaris Parkway,Columbus,OH,43240 +-82.963253,40.145282,"Polaris Amphitheater DT - Columbus OH (D, W)",2040 Polaris Parkway,Columbus,OH,43240 +-82.9824,40.142693,Polaris Fashion Place Inline - Columbus OH,1500 Polaris Parkway,Columbus,OH,43240 +-82.9824,40.142693,Polaris Fashion Place Kiosk - Columbus OH (W),1500 Polaris Parkway,Columbus,OH,43240 +-83.119369,40.562702,Kroger-Marion #808 - Marion OH,1428 Marion Waldo Rd.,Marion,OH,43302 +-83.08239,40.581833,"Marion OH - Marion OH (D, W)",130 McMahan Blvd.,Marion,OH,43302 +-83.623767,41.374531,"Bowling Green - Bowling Green OH (D, W)",1560 East Wooster Street,Bowling Green,OH,43402 +-83.649256,41.391712,Kroger-Bowling Green #878 - Bowling Green OH,1094 N. Main St.,Bowling Green,OH,43402 +-83.638002,41.374664,Bowling Green U - Student Union - Bowling Green OH,1001 E. Wooster St.,Bowling Green,OH,43403 +-82.95462,41.366988,Commodore Perry Travel Plaza - Clyde OH,888 N. County Rd. 260 Mile Marker 10,Clyde,OH,43410 +-82.954329,41.37093,Erie Islands Travel Plaza - Clyde OH,1012 N. County Rd. 260 Mile Post 100,Clyde,OH,43410 +-83.597986,41.547782,Kroger-Perrysburg #939 - Perrysburg OH,27386 Carronade Dr,Perrysburg,OH,43551 +-83.5892,41.5447,Levis Commons - Perrysburgh OH (W),3145Levis Commons Blvd.,Perrysburgh,OH,43551 +-83.724436,41.686994,Kroger-Sylvania #895 - Sylvania OH,7545 Sylvania Ave.,Sylvania,OH,43560 +-83.693691,41.714708,Kroger - Sylvania #940 - Sylvania OH,6235 Monroe St.,Sylvania,OH,43560 +-83.622966,41.677358,"Westgate Village - Toledo OH (D, W)",3305 W. Central Avenue,Toledo,OH,43606 +-83.613795,41.659415,Aramark @ University of Toledo - Toledo OH,2801 W. Bancroft Ave.,Toledo,OH,43606 +-83.665095,41.616935,Starbucks:Airport & Reynolds - Toledo OH (D),1260 S. Reynolds Road,Toledo,OH,43615 +-83.469789,41.638116,Kroger-Oregon OH #938 - Oregon OH,3301 Navarre Ave.,Oregon,OH,43616 +-83.64537,41.696239,Talmadge Square - Toledo OH (W),4321 Talmadge Rd.,Toledo,OH,43623 +-82.020035,39.983301,Kroger-Zanesville #891 - Zanesville OH,3387 Maple Ave.,Zanesville,OH,43701 +-82.013,39.9724,"Zanesville OH - Zanesville OH (D, W)",3934 Taryn Trace Unit M1,Zanesville,OH,43701 +-80.863983,40.069921,St. Clairsville OH - St. Clairsville OH (D),67800 Mall Road Unit 812,St. Clairsville,OH,43950 +-82.2388,41.413,Target Amherst T-2351 - Amherst OH,8000 Oak Point Rd.,Amherst,OH,44001 +-82.225339,41.378725,Middle Ridge Travel Plaza - Amherst OH,46401 Ohio Turnpike Plaza,Amherst,OH,44001 +-82.225248,41.37879,Vermillion Valley - Amherst OH,46402 Ohio Turnpike Plaza,Amherst,OH,44001 +-81.392309,41.431365,Chagrin Falls - Chargrin Falls OH (W),65 North Main Street,Chargrin Falls,OH,44022 +-81.296082,41.683265,Target Mentor (Painesville) T-2322 - Mentor OH,9669 Mentor Ave.,Mentor,OH,44060 +-81.366153,41.659409,Mentor - Mentor OH (W),7681 Mentor Avenue,Mentor,OH,44060 +-81.303633,41.679104,Mentor Ave-East Mentor - Mentor OH (W),9372 Mentor Avenue,Mentor,OH,44060 +-81.526805,41.313043,Target Northfield T-1841 - Northfield OH,8282 Golden Link Blvd.,Northfield,OH,44067 +-81.901874,41.418761,Great Northern Mall - North Olmsted OH,4954 Great Northern Blvd.,North Olmsted,OH,44070 +-81.898584,41.425435,North Olmsted - North Olmsted OH (W),24950 Lorain Road,North Olmsted,OH,44070 +-81.895231,41.418956,Target North Olmsted T-2016 - North Olmsted OH,24646 Brookpark Rd.,North Olmsted,OH,44070 +-81.440824,41.311099,"Twinsburg E. Aurora & Darrow Rds - Twinsburg OH (D, W)",2728 East Aurora Road,Twinsburg,OH,44087 +-81.423985,41.628403,Willoughby - Willoughby OH (W),36505-B Euclid Ave.,Willoughby,OH,44094 +-81.766432,41.486825,"Clifton Blvd. - Cleveland OH (D, W)",11501 Clifton Boulevard,Cleveland,OH,44102 +-81.605973,41.505862,CWRU - Residential Village - Cleveland OH,10900 Euclid Ave.,Cleveland,OH,44106 +-81.605761,41.508076,University Circle COB RAD - Cleveland OH (W),11302 Euclid Avenue,Cleveland,OH,44106 +-81.593648,41.501276,Cedar & Fairmount - Cleveland Heights OH (W),12405 Cedar Road,Cleveland Heights,OH,44106 +-81.69062,41.45962,Target Cleveland South T-2228 - Cleveland OH,3465 Steelyard Dr,Cleveland,OH,44109 +-81.768942,41.467574,Target Cleveland West T-2226 - Cleveland OH,3100 W. 117th St.,Cleveland,OH,44111 +-81.698499,41.499233,West Sixth Street - Cleveland OH (W),1374 West Sixth Street,Cleveland,OH,44113 +-81.690178,41.507081,Doubletree Cleveland City Center La - CLEVELAND OH,1111 LAKESIDE AVE,CLEVELAND,OH,44114 +-81.682003,41.500913,Hanna Building - Cleveland OH (W),1400 Euclid Ave.,Cleveland,OH,44115 +-81.839085,41.480251,Rocky River - Rocky River OH (W),19555 Detroit Road,Rocky River,OH,44116 +-81.568908,41.515968,Mayfield & Lee (UCO) - Cleveland Heights OH (W),3093 Mayfield Road,Cleveland Heights,OH,44118 +-81.539718,41.501333,Cedar & Warrensville - South Euclid OH (W),13991 Cedar Rd.,South Euclid,OH,44118 +-81.536407,41.464819,Shaker Heights - Shaker Heights OH (W),3470 Warrensville Center Road,Shaker Heights,OH,44122 +-81.517185,41.46453,Chagrin & Green - Beachwood OH (W),22841 Chagrin Blvd.,Beachwood,OH,44122 +-81.488007,41.462367,Woodmere - Woodmere OH (W),27099 Chagrin Boulevard,Woodmere,OH,44122 +-81.439639,41.520787,"Mayfield & SOM - Mayfield Heights OH (D, W)",1456 SOM Center Rd.,Mayfield Heights,OH,44122 +-81.492956,41.501154,Beachwood Place - Beachwood OH (W),26300 Cedar Road,Beachwood,OH,44122 +-81.512261,41.501416,Lyndhurst-Legacy Vllg Richmond & Ce - Lyndhurst OH (W),24663 Cedar Rd.,Lyndhurst,OH,44124 +-81.489046,41.501245,Giant Eagle Mkt-Lyndhurst #208 - Lyndhurst OH,27105 Cedar Rd.,Lyndhurst,OH,44124 +-81.615927,41.409538,"Garfield Heights - Garfield Heights OH (D, W)",9791 Vista Way,Garfield Heights,OH,44125 +-81.85262,41.460537,Target Fairview Park T-2266 - Fairview Park OH,20900 Westgate,Fairview Park,OH,44126 +-81.849136,41.462902,"Westgate Mall Drive-thru - Fariview OH (D, W)",20645 Center Ridge Road,Fariview,OH,44126 +-81.736244,41.377683,Target Parma T-792 - Parma OH,6850 Ridge Rd.,Parma,OH,44129 +-81.735189,41.380183,"Parma - Day & Ridge - Parma OH (D, W)",6780 Ridge Road,Parma,OH,44129 +-81.6417,41.396192,Rockside Corners - Independence OH (W),6901 Rockside Road,Independence,OH,44131 +-81.828671,41.31377,Target Strongsville T-985 - Strongsville OH,18200 Royalton Rd.,Strongsville,OH,44136 +-81.827625,41.31354,Strongsville Royalton Rd. - Strongsville OH (W),18062 Royalton Rd.,Strongsville,OH,44136 +-81.82433,41.312115,Southpark Mall Kiosk - Strongsville OH (W),500 Southpark Mall,Strongsville,OH,44136 +-81.626124,41.320819,Brecksville - Brecksville OH (W),8869 Brecksville Rd.,Brecksville,OH,44141 +-81.734429,41.421431,Brooklyn - Brooklyn OH (W),4746 Ridge Road,Brooklyn,OH,44144 +-81.692308,41.499835,200 Public Square - Cleveland OH (W),200 Public Square,Cleveland,OH,44144 +-81.956658,41.462632,Westlake Promenade - Westlake OH (W),30327 Detroit Road,Westlake,OH,44145 +-81.694818,41.295782,OH- Great Lakes Travel Plaza - Broadview Heights OH,2000 Edgerton Road,Broadview Heights,OH,44147 +-81.684822,41.280331,OH- Towpath Travel Plaza - Broadview Heights OH,10037 Broadview Road,Broadview Heights,OH,44147 +-81.694036,41.501587,Society Tower - Cleveland OH (W),127 Public Square,Cleveland,OH,44194 +-81.62237,41.502251,Cleveland Clinic - Cleveland OH (W),9500 Euclid Ave.,Cleveland,OH,44195 +-81.386907,41.357112,Target Bainbridge T-2161 - Aurora OH,18855 N. Market Pl Dr,Aurora,OH,44202 +-81.34607,41.318542,Aurora - Aurora OH (W),125 Barrington Town Square Drive,Aurora,OH,44202 +-81.807167,41.23828,Rte 303 & I-71 Brunswick - Brunswick OH (W),3362 Center Rd.,Brunswick,OH,44212 +-81.480024,41.119193,"Cuyahoga Falls - Cuyahoga Falls OH (D, W)",371 Howe Ave.,Cuyahoga Falls,OH,44221 +-81.4769,41.120406,Target Cuyahoga Falls T-793 - Cuyahoga Falls OH,449 Howe Ave.,Cuyahoga Falls,OH,44221 +-81.476836,41.163208,Cuyahoga Falls Graham & Hudson - Cuyahoga Falls OH (D),1006 Graham Road,Cuyahoga Falls,OH,44224 +-81.409888,41.15639,Target Stow T-988 - Stow OH,4200 Kent Rd.,Stow,OH,44224 +-81.440385,41.236059,Hudson - Hudson OH (W),89 South Main Street,Hudson,OH,44236 +-81.352334,41.15373,Kent State - Kent OH (W),436 E. Main,Kent,OH,44240 +-81.3507,41.2497,Target Streetsboro T-2157 - Streetsboro OH,1144 SR-303,Streetsboro,OH,44241 +-81.177785,41.24253,Portage Travel Plaza Mantua - Mantua OH,Rd 1 Ohio Turnpike Milepost 197.0,Mantua,OH,44255 +-81.175822,41.244538,Brady's Leap Travel Plaza Mantua - Mantua OH,Rd 1 Ohio Turnpike Milepost 197.0,Mantua,OH,44255 +-81.864652,41.154658,Target Medina T-984 - Medina OH,1015 N. Court St.,Medina,OH,44256 +-81.863328,41.150835,"Medina Shopping Center - Medina OH (D, W)",897 North Court Street,Medina,OH,44256 +-81.906348,41.032869,TravelCenters - Lodi - Seville OH,8834 Lake Road,Seville,OH,44273 +-81.6874,41.0646,Target Wadsworth T-2119 - Wadsworth OH,1183 Williams Reserve Blvd.,Wadsworth,OH,44281 +-81.46605,41.11606,Chapel Hill Mall Kiosk - Akron OH (W),2000 Brittian Rd.,Akron,OH,44310 +-81.492942,40.985502,Target Green (Akron) T-2346 - Akron OH,3200 S. Arlington Rd.,Akron,OH,44312 +-81.492899,40.992898,"Coventry Township Arlington Rd. - Akron OH (D, W)",2884 South Arlington Road,Akron,OH,44312 +-81.616122,41.132306,Summit Mall - Akron OH (W),3265 West Market Street,Akron,OH,44313 +-81.588176,41.118103,Akron - West Market & Sand rd - Akron OH (W),2279 West Market Street,Akron,OH,44313 +-81.519542,41.078866,University of Akron Polsky Buildin - Akron OH,225 South Main Street,Akron,OH,44325 +-81.511318,41.075244,U of Akron - Student Union - Akron OH,303 Carroll St.,Akron,OH,44325 +-81.634447,41.13584,Fairlawn - Akron OH (W),3767 West Market Street,Akron,OH,44333 +-80.750633,41.210376,Eastwood Mall - Niles OH (W),5555 Youngstown-Warren Road,Niles,OH,44446 +-80.74085,41.264395,"Niles North Commons - Warren OH (D, W)",1926 Niles- Courtland Road,Warren,OH,44484 +-80.630612,41.023532,Boardman Youngstown - Poland OH (W),1247 Boardman Poland Rd.,Poland,OH,44514 +-80.768198,41.123473,"Austintown I-80 - Austintown OH (D, W)",851 N. Canfield-Niles Road,Austintown,OH,44515 +-81.522582,40.76803,"Massillon Marketplace - Massillon OH (D, W)",2 Massillon Marketplace Drive SW,Massillon,OH,44646 +-81.49688,40.798807,Target Massillon T-2044 - Massillon OH,1980 Lincoln Way,Massillon,OH,44646 +-81.944646,40.846761,"Wooster Crossings - Wooster OH (D, W)",3872 Burbank Rd.,Wooster,OH,44691 +-81.482911,40.860527,"Noble's Pond - Canton OH (D, W)",7210 Fulton Dr. NW,Canton,OH,44718 +-81.432227,40.856393,Belden Village - Canton OH (W),4472 Belden Village Street NW,Canton,OH,44718 +-81.433902,40.879357,The Strip - Canton - North Canton OH (W),6748 Strip Avenue NW,North Canton,OH,44720 +-81.431519,40.861174,Target Canton T-794 - Canton OH,5584 Dressler Rd. NW,Canton,OH,44720 +-81.34493,40.874305,"Washington Square Marketplace - North Canton OH (D, W)",2057 Easton Street,North Canton,OH,44720 +-82.261117,40.857356,TA - Ashland - Ashland OH,715 US Highway 250 East,Ashland,OH,44805 +-82.706698,41.431396,Kroger-Sandusky #987 - Sandusky OH,508 W. Perkins,Sandusky,OH,44870 +-82.673474,41.420597,Target Sandusky T-2159 - Sandusky OH,4020 Milan Rd.,Sandusky,OH,44870 +-82.664385,41.409153,"Sandusky - Sandusky OH (D, W)",4912 Milan Rd.,Sandusky,OH,44870 +-82.590612,40.78725,"Walker Lake Rd. - Mansfield - Mansfield OH (D, W)",2172 Walker Lake Road,Mansfield,OH,44903 +-82.475828,40.7762,Kroger-Mansfield OH #557 - Mansfield OH,1060 Ashland Road,Mansfield,OH,44905 +-82.545551,40.719302,Kroger-Dayton #836 Mansfield - Mansfield OH,1500 Lexington Ave.,Mansfield,OH,44907 +-84.329682,39.501258,Kroger - Middletown #441 - Franklin OH,3420 Towne Blvd.,Franklin,OH,45005 +-84.50388,39.3894,Target Fairfield T-1946 - Hamilton OH,3369 Princeton Rd.,Hamilton,OH,45011 +-84.36968,39.382587,Cin-Day & Yankee - Liberty Township OH (D),6819 Liberty Plaza Drive,Liberty Township,OH,45011 +-84.529796,39.337252,Dixie Hwy. & Symmes - Fairfield OH (W),5440 Dixie Hwy.,Fairfield,OH,45014 +-84.2487,39.3579,Paramount Kings Island Intl Walk - Kings Island OH,6300 Kings Island Drive,Kings Island,OH,45034 +-84.1818,39.4543,Kroger - Lebanon #447 - Lebanon OH,1425 Columbus Ave.,Lebanon,OH,45036 +-84.219124,39.350402,Kroger-Maineville #408 - Maineville OH,5705 South State Route 48,Maineville,OH,45039 +-84.316378,39.316802,Kroger-Mason #448 - Mason OH,5100 Terra Firma Dr,Mason,OH,45040 +-84.313305,39.316078,Mason Montgomery & Irwin Simpson - Mason OH (W),8467 Mason Montgomery Rd.,Mason,OH,45040 +-84.27991,39.3588,Kroger-Mason #426 - Mason OH,5210 State Route 741,Mason,OH,45040 +-84.261856,39.350063,Great Wolf Lodge - Mason - Mason OH,2501 Great Wolf Dr,Mason,OH,45040 +-84.741701,39.510487,Oxford - Miami University - Oxford OH (W),19 East High Street,Oxford,OH,45056 +-84.21271,39.3812,Target South Lebanon T-2486 - South Lebanon OH,400 Corwin Nixon Blvd.,South Lebanon,OH,45065 +-84.461319,39.351821,Kroger-West Chester #919 - West Chester OH,8238 Princeton Glendale Rd.,West Chester,OH,45069 +-84.4579,39.3489,"Union Center & Floer - West Chester OH (D, W)",9244 Floer Drive,West Chester,OH,45069 +-84.433126,39.325329,Union Center and Allen,9160 Union Centre Blvd.,West Chester Township,OH,45069 +-84.407104,39.3441,Kroger - Liberty Township #383 - Liberty OH,Butler Regional & Cincinnati Dayton Road,Liberty,OH,45069 +-84.377049,39.355655,Meijers-West Chester #147 - West Chester OH,7390 Tylersville Rd.,West Chester,OH,45069 +-84.36661,39.35349,"Tylersville & Cox - Westchester OH (D, W)",7783 Cox Lane,West Chester,OH,45069 +-84.28836,39.25574,Loveland - Cincinnati OH (W),10653 Loveland-Madiera Road,Cincinnati,OH,45140 +-84.2618,39.2572,Kroger - Miami Township #435 - Loveland OH,63388 Branch Hill-Guinea Pike,Loveland,OH,45140 +-84.232437,39.196812,Milford OH - SR 28 - Milford OH (W),1090 State Road 28,Milford,OH,45150 +-83.9248,39.039955,Kroger-Mt. Orab OH #920 - Mt Orab OH,210 Sterling Run Blvd.,Mt Orab,OH,45154 +-84.512661,39.099918,4th and Vine - Cincinnati OH (W),401 Vine Street,Cincinnati,OH,45202 +-84.510967,39.102761,Skywalk - Cincinnati OH (W),580 Walnut St.,Cincinnati,OH,45202 +-84.508231,39.100409,Atrium One - Cincinnati OH (W),201 East Fourth Street,Cincinnati,OH,45202 +-84.44446,39.146504,Rookwood Pavillion - Cincinnati OH (W),2692 Madison Rd.,Cincinnati,OH,45208 +-84.430739,39.145646,Hyde Park Plaza - Cincinnati OH (W),3786 Paxton Rd.,Cincinnati,OH,45208 +-84.421865,39.141297,East Hyde Park - Cincinnati OH (W),3366 Erie Avenue,Cincinnati,OH,45208 +-84.431635,39.145179,Kroger-Cincinnati #355 - Cincinnati OH,3760 Paxton Ave.,Cincinnati,OH,45209 +-84.424644,39.162106,Meijer-Cincinnati #224 - Cincinnati OH,4825B Marburg Ave.,Cincinnati,OH,45209 +-84.624406,39.145505,Kroger-Cincinnati #948 - Cincinnati OH,6165 Glenway Avenue,Cincinnati,OH,45211 +-84.619275,39.142314,Target Western Hills T-2488 - Cincinnati OH,6100 Glenway Ave.,Cincinnati,OH,45211 +-84.519489,39.128003,McMillan & Clifton - Cincinnati OH (W),202 W. McMillen,Cincinnati,OH,45219 +-84.511643,39.130298,U of Cincinnati Student Life Ctr. - Cincinnati OH,45 W. Charlton St.,Cincinnati,OH,45219 +-84.506836,39.136236,Marriott Kingsgate Conference Ctr. - Cincinnati OH,151 Goodman Drive,Cincinnati,OH,45219 +-84.436727,39.115815,Columbia Parkway - Cincinnati OH (W),3568 Columbia Parkway,Cincinnati,OH,45226 +-84.376632,39.145495,Mariemont/The Strand - Cincinnati OH (W),6800 Wooster Pike,Cincinnati,OH,45227 +-84.36136,39.142273,Kroger-Cincinnati #421 - Cincinnati OH,7385 Wooster Rd.,Cincinnati,OH,45227 +-84.396013,39.105896,Skytop Pavilion - Cincinnati OH (W),5222 Beechmont Avenue,Cincinnati,OH,45230 +-84.517887,39.220246,Kroger-Cincinnati #384 - Cincinnati OH,8421 Winton Rd.,Cincinnati,OH,45231 +-84.396914,39.225985,Kroger-Blue Ash #942 - Blue Ash OH,4100 Hunt Road,Blue Ash,OH,45236 +-84.376009,39.200932,Kenwood Towne Center - Cincinnati OH,7875 Montgomery Rd.,Cincinnati,OH,45236 +-84.374903,39.206121,Kroger-Cincinnati OH #440 - Cincinnati OH,5575 E. Galbraith Rd.,Cincinnati,OH,45236 +-84.376755,39.199814,"Kenwood - Cincinnati OH (D, W)",7896 Montgomery Road,Cincinnati,OH,45236 +-84.59957,39.190033,Kroger - Monfort Heights #370 - Cincinnati OH,3491 North Bend Rd.,Cincinnati,OH,45239 +-84.522372,39.298217,"Winton & I 275 - Forest Park OH (D, W)",1150 Smiley Ave.,Forest Park,OH,45240 +-84.426298,39.253491,"Glendale Milford & Reading - Cincinnati OH (D, W)",2520 Cunningham Dr,Cincinnati,OH,45241 +-84.390459,39.296492,Kroger - Sharonville #429 - Sharonville OH,12164 Lebanon Road,Sharonville,OH,45241 +-84.3745,39.2702,Cornell Place - Cincinnati OH (W),4752 Cornell Road,Cincinnati,OH,45241 +-84.376799,39.233267,Blue Ash - Kenwood - Blue Ash OH (W),9648 Kenwood Road,Blue Ash,OH,45242 +-84.35457,39.226807,Montgomery - Cincinnati OH (W),9412 Montgomery Road,Cincinnati,OH,45242 +-84.363259,39.18883,Madeira Crossing - Madeira OH (W),7011 Miami Ave.,Madeira,OH,45243 +-84.267168,39.097477,Eastgate North - Cincinnati OH (W),866 Eastgate North Drive,Cincinnati,OH,45245 +-84.464951,39.290618,Tri-County Mall - Cincinnati OH (W),11700 Princeton Road,Cincinnati,OH,45246 +-84.659049,39.192775,Meijer-Cincinnati #223 - Cincinnati OH,6550 Harrison Rd.,Cincinnati,OH,45247 +-84.327871,39.272699,Harper's Station - Cincinnati OH (W),11397 Montgomery Rd.,Cincinnati,OH,45249 +-84.305,39.2959,Target Fields Ertel T-1091 - Cincinnati OH,9841 Waterstone Blvd.,Cincinnati,OH,45249 +-84.16248,39.689213,Kroger-Kettering OH #826 - Dayton OH,530 East Stroop Road,Dayton,OH,45249 +-84.599458,39.253963,"Colerain & I-275 - Cincinnati OH (D, W)",9911 Colerain Ave.,Cincinnati,OH,45251 +-84.347054,39.072808,Kroger-Anderson Township #915 - Cincinnati OH,7580 Beechmont Avenue,Cincinnati,OH,45255 +-84.313686,39.073161,Target Beechmont Area T-1092 - Cincinnati OH,8680 Beechmont Ave.,Cincinnati,OH,45255 +-84.311594,39.071162,"Beechmont & Hamblen - Cincinnati OH (D, W)",449 SR 125,Cincinnati,OH,45255 +-84.311589,39.8672,Kroger - Englewood OH #938 - Englewood OH,885 Union Road,Englewood,OH,45322 +-84.072905,39.77596,Colonel Glenn & Zink - Fairborn OH (W),3800 Colonel Glenn Highway,Fairborn,OH,45324 +-84.226978,39.612586,"Spring Valley & SR 741 - Miamisburg OH (D, W)",9500 Springboro Pike,Miamisburg,OH,45342 +-84.2225,40.030363,Kroger-Troy #914 - Troy OH,751 West Market Street,Troy,OH,45373 +-84.199408,39.758235,Sinclair Community College - Dayton OH,444 W. 3rd St.,Dayton,OH,45402 +-84.182,39.742286,U of Dayton-Brown St. - Dayton OH (W),1134 Brown Street,Dayton,OH,45409 +-84.170919,39.709012,Oakwood - Oakwood OH (W),2424 Far Hills Avenue,Oakwood,OH,45419 +-84.124516,39.703977,Kroger-Kettering #825 - Kettering OH,2115 E. Dorothy Lane,Kettering,OH,45420 +-84.13808,39.866764,Kroger-Huber Heights #758 - Dayton OH,7747 Old Troy Pike,Dayton,OH,45424 +-84.055967,39.767084,Mall at Fairfield Commons - Beavercreek OH,2727 Fairfield Commons,Beavercreek,OH,45431 +-84.0626,39.8012,Wright-Patterson AFB - Kittyhawk Ce - Wright-Patterson AFB OH,Oak St. & Chestnut St.,Wright-Patterson AFB,OH,45433 +-84.054157,39.726961,Kroger-Beavercreek #745 - Beavercreek OH,3195 Dayton-Xenia Rd. #500,Beavercreek,OH,45434 +-84.086044,39.659637,Target Dayton T-1940 - Dayton OH,4341 Feedwire Rd.,Dayton,OH,45440 +-84.21909,39.63732,Miamisburg-Centerville Rd. - Dayton OH (W),2765 Miamisburg-Centerville Rd.,Dayton,OH,45459 +-84.16215,39.608785,Kroger-Centerville #815 - Centerville OH,1023 S. Main St.,Centerville,OH,45459 +-84.161044,39.610253,"SR 48 & Spring Valley Pike - Centerville OH (D, W)",1003 S. Main Street,Centerville,OH,45459 +-82.976268,39.344505,Kroger - Chillicothe #348 - Chillicothe OH,888 N. Bridge Street,Chillicothe,OH,45601 +-82.9952,38.7368,Kroger - Portsmouth #575 - Portsmouth OH,811 Gay St.,Portsmouth,OH,45662 +-82.067749,39.336853,Kroger-Athens #901 - Athens OH,919 E. State St.,Athens,OH,45701 +-84.11966,40.741375,St. Rita's Medical Center - Lobby - Lima OH,730 West Market Street,Lima,OH,45801 +-85.652928,40.071992,"43rd & Scatterfield - Anderson IN (D, W)",4235 Scatterfield Rd.,Anderson,IN,46013 +-86.235463,39.937778,"Michigan Rd. & Northwestern - Carmel IN (D, W)",10460 N. Michigan Rd.,Carmel,IN,46032 +-86.232586,39.936405,Super Target Caramel ST-1366 - Carmel IN,10401 N. Michigan Rd.,Carmel,IN,46032 +-86.157623,39.97068,126th & Meridian - Carmel IN (W),12465 N. Meridian,Carmel,IN,46032 +-86.152781,39.972684,Meijers-Carmel #130 - Carmel IN,1425 W. Carmel Dr,Carmel,IN,46032 +-86.130391,39.99809,Clay Terrace & 146th St. - Carmel IN (W),14490 Clay Terrace Blvd.,Carmel,IN,46032 +-86.11304,39.956967,"116th & Keystone - Carmel IN (D, W)",2810 E. 116th Street,Carmel,IN,46032 +-86.12951,40.004319,Village Park Plaza - Carmel IN (W),2001 E. Greyhound Pass,Carmel,IN,46033 +-86.07122,39.979641,"131st & Hazel Dell Pkwy. - Carmel IN (D, W)",13170 North Hazel Dell Pkwy,Carmel,IN,46033 +-86.0113,39.9555,Super Target Fishers ST-1350 - Fishers IN,11750 Commercial Blvd.,Fishers,IN,46038 +-86.010858,39.956137,"I-69 & 116th - Fishers IN (D, W)",9001 E. 116th St.,Fishers,IN,46038 +-86.010222,39.927143,Pine Creek Shoppes - Fishers IN (W),8958 East 96th Street,Fishers,IN,46038 +-86.468925,40.036158,I 65 & SR 39 - Lebanon IN (D),1377 South Lebanon Street,Lebanon,IN,46052 +-86.025446,40.047035,"SR-32 & SR-38 - Noblesville IN (D, W)",530 Westfield Road,Noblesville,IN,46060 +-85.994505,40.045674,SR 32 & SR 37 - Noblesville - Noblesville IN (W),2650 E. Conner Street,Noblesville,IN,46060 +-86.070449,40.001223,Kroger-Indianapolis #980 - Noblesville IN,14800 HAZEL DELL RD,Noblesville,IN,46062 +-86.163493,40.021131,161st & Spring Mill - Westfield IN (W),318 W. 161st Street,Westfield,IN,46074 +-86.108896,40.040363,Kroger-Westfield #983 - Westfield IN,17447 Carey Rd.,Westfield,IN,46074 +-86.31889,40.0265,"I-65 & SR 334 - Whitestown IN (D, W)",6378 Crane Drive,Whitestown,IN,46075 +-86.274574,39.950035,SR 334 & Ford - Zionsville IN (D),1140 W. Oak Street (SR-334),Zionsville,IN,46077 +-86.393888,39.853819,"SR 267 & Northfield - Brownsburg IN (D, W)",1085 N. Green Street,Brownsburg,IN,46112 +-86.325905,39.637,"Hwy. 67 & Heartland - Camby IN (D, W)",8310 Windfall Ln.,Camby,IN,46113 +-86.345684,39.763591,Super Target Avon ST-1788 - Avon IN,10209 E. US Hwy. 36,Avon,IN,46123 +-86.330174,39.763672,"Tremont & Raceway - Avon IN (D, W)",10861 US HIGHWAY 36,Avon,IN,46123 +-86.068643,39.503188,"US 31 & Commerce - Franklin IN (D, W)",2279 N. Morton,Franklin,IN,46131 +-86.86437,39.644011,Depauw Univ. Bookstore,2 E Washington St.,Greencastle,IN,46135 +-85.769721,39.81456,"SR 9 & New Road - Greenfield IN (D, W)",2049 N. State Rd.,Greenfield,IN,46140 +-86.12632,39.63529,Greenwood Park Mall - Greenwood IN (W),1251 U.S. Highway 31 North,Greenwood,IN,46142 +-86.114791,39.629085,"State Rd. 135 & Stonegate - Greenwood IN (D, W)",1011 N. State Rd. 135,Greenwood,IN,46142 +-86.11145,39.618957,"SR 135 & Faith - Greenwood IN (D, W)",311 S. State Rd. 135,Greenwood,IN,46142 +-86.114307,39.627521,Super Target Greenwood ST-1364 - Greenwood IN,895 S. State Road 135,Greenwood,IN,46143 +-86.082392,39.614324,"Emerson & Main - Greenwood IN (D, W)",1035 East Main St.,Greenwood,IN,46143 +-86.437151,39.405464,"SR 37 & Burton - Martinsville IN (D, W)",2198 Burton Lane,Martinsville,IN,46151 +-86.35943,39.716809,"Plainfield Commons - Plainfield IN (D, W)",2671 East Main St.,Plainfield,IN,46168 +-85.737898,39.525914,"I-74 & SR-44 - Shelbyville IN (D, W)",110 Lee Blvd.,Shelbyville,IN,46176 +-86.161258,39.786415,"15th & Capitol - Indianapolis IN (D, W)",1420 North Capitol Ave.,Indianapolis,IN,46202 +-86.147682,39.781726,10th & Indiana - Indianapolis IN (W),645 D West 11th Street,Indianapolis,IN,46202 +-86.081868,39.700216,"Emerson & Elenor - Indianapolis IN (D, W)",4601 S. Emerson Avenue,Indianapolis,IN,46203 +-86.162178,39.766201,Westin Indianapolis - Lobby - Indianapolis IN,50 S. Capital Ave.,Indianapolis,IN,46204 +-86.158664,39.769634,Radisson HCC - Indianapolis IN,31 W. Ohio St.,Indianapolis,IN,46204 +-86.157369,39.768248,Circle Tower - Indianapolis IN (W),55 Monument Circle,Indianapolis,IN,46204 +-86.15591,39.7724,Hyatt Regency-Indianapolis-Lobby - Indianapolis IN,W Washington St. &N Capitol Ave.,Indianapolis,IN,46204 +-86.155443,39.935484,Conseco Fieldhouse - Indianapolis IN (W),125 South Pennsylvania Street,Indianapolis,IN,46204 +-86.152122,39.772842,Mass. Ave. - Indianapolis IN (W),430 N. Massachusetts Ave.,Indianapolis,IN,46204 +-86.160706,39.7707,American United Life-Indianapolis M - Indianapolis IN,1 America Sq,Indianapolis,IN,46206 +-86.171316,39.836672,Butler University - Indianapolis IN,700 W. Hampton Dr.,Indianapolis,IN,46208 +-86.159022,39.854422,56th & Illinois - Indianaoplis IN (W),5601 N. Illinois St.,Indianaoplis,IN,46208 +-86.290102,39.779142,"Girl School Rd. & 10th - Indianapolis IN (D, W)",7315 W. 10th Street,Indianapolis,IN,46214 +-86.182939,39.664807,Kroger-Indianapolis #993 - Indianapolis IN,1330 W. Southport Rd.,Indianapolis,IN,46217 +-86.069749,39.771199,"Washington & Audubon - Indianapolis IN (D, W)",5702 E. Washington Street,Indianapolis,IN,46219 +-86.0454,39.795391,"21st & Shadeland - Indianapolis IN (D, W)",2045 N. Shadeland Ave.,Indianapolis,IN,46219 +-86.143131,39.869736,Broad Ripple - Indianapolis IN (W),854 Broad Ripple Ave.,Indianapolis,IN,46220 +-86.119857,39.866688,Target Indy Glendale T-2391 - Indianapolis IN,6101 North Keystone Ave.,Indianapolis,IN,46220 +-86.067134,39.88197,71st & Binford - Indianapolis IN (D),6920 Lake Plaza Drive,Indianapolis,IN,46220 +-86.164815,39.766484,Marriott Indianapolis Downtown - Indianapolis IN,350 W. Maryland,Indianapolis,IN,46225 +-86.086345,39.855041,"56th & Emerson - Indianapolis IN (D, W)",5015 E. 56th Street,Indianapolis,IN,46226 +-86.148525,39.679459,"US 31 & Edgewood - Indianapolis IN (D, W)",5943 S. East Street,Indianapolis,IN,46227 +-86.193677,39.855715,"Kessler & Michigan - Indianapolis IN (D, W)",1950 W. Kessler Blvd.,Indianapolis,IN,46228 +-85.975919,39.860991,"Pendleton Pike & Sunnyside - Lawrence IN (D, W)",10800 E. Pendleton Pike,Lawrence,IN,46236 +-86.098645,39.665378,"Southport & Gray - Indianapolis IN (D, W)",3925 E. Southport Road,Indianapolis,IN,46237 +-86.084335,39.667578,Super Target Indianapolis ST-1789 - Indianapolis IN,4850 E. Southport Rd.,Indianapolis,IN,46237 +-86.081849,39.668262,Southport & Emerson - Indianapolis IN (W),6815 S. Emerson Avenue,Indianapolis,IN,46237 +-86.157796,39.926151,96th & Meridian - Indianapolis IN (D),9545 N. Meridian St.,Indianapolis,IN,46240 +-86.138391,39.9141,86th & Evergreen - Indianapolis IN (W),1300 E. 86th Street SUite 6,Indianapolis,IN,46240 +-86.138236,39.912742,Target Indianapolis T-1848 - Indianapolis IN,1300 E. 86th St.,Indianapolis,IN,46240 +-86.121248,39.889357,Keystone & Ruth - Indianapolis IN (D),7425 N. Keystone Ave.,Indianapolis,IN,46240 +-86.10968,39.913555,Fashion Mall - New Relo - Indianapolis IN,8702 Keystone Crossing Blvd.,Indianapolis,IN,46240 +-85.996227,39.774117,"Post & Washington - Indianapolis IN (D, W)",9605 E. Washington Street,Indianapolis,IN,46240 +-86.25671,39.7335,IND Concourse A Plaza - Indianapolis IN (A),7800 Colonel H Weir Cook Memorial Dr,Indianapolis,IN,46241 +-86.25671,39.7335,IND Concourse B18 - Indianapolis IN (A),7800 Colonel H Weir Cook Memorial Dr,Indianapolis,IN,46241 +-86.25671,39.7335,IND Pre Sec Civic Plaza - Indianapolis IN (A),7800 Colonel H Weir Cook Memorial Dr,Indianapolis,IN,46241 +-86.088779,39.905589,82nd & Allisonville - Indianapolis IN (W),4909 82nd St.,Indianapolis,IN,46250 +-86.052243,39.905504,"East 82nd St. - Indianapolis IN (D, W)",6706 East 82nd Street,Indianapolis,IN,46250 +-86.046765,39.890236,"75th & Shadeland - Indianapolis IN (D, W)",7460 N. Shadeland Ave.,Indianapolis,IN,46250 +-86.044029,39.926993,"96th & Masters - Indianapolis IN (D, W)",7205 E. 96th Street,Indianapolis,IN,46250 +-86.279519,39.820351,Target Eagle Creek T-881 - Indianapolis IN,6925 W. 38th St.,Indianapolis,IN,46254 +-86.263624,39.852476,56th & Lafayette - Indianapolis IN (W),5550 Lafayette,Indianapolis,IN,46254 +-85.99396,39.898095,Kroger-Indianapolis #J-965 - Indianapolis IN,9835 Fall Creek Road,Indianapolis,IN,46256 +-86.040926,39.900852,Community Hospital North-Indianapol - Indianapolis IN,7150 Clearvista Dr,Indianapolis,IN,46256 +-86.182646,39.912162,86th & Ditch - Indianapolis IN (W),1315 West 86th Street,Indianapolis,IN,46260 +-86.208962,39.911919,Willow Lake West - Indianapolis IN (W),2800 W. 86th St.,Indianapolis,IN,46268 +-86.261579,39.910814,"86th & Zionsville - Indianapolis IN (D, W)",5710 W. 86th Street,Indianapolis,IN,46278 +-86.272706,39.879463,Intech Commons - Indianapolis IN (W),6335 Intech Common Drive,Indianapolis,IN,46278 +-87.364418,41.426918,"Crown Point-Summit & Main - Crown Point IN (D, W)",930 n Main St.,Crown Point,IN,46307 +-87.507464,41.492793,"Dyer IN-Route 30 & Calumet - Dyer IN (D, W)",871 Joliet St.,Dyer,IN,46311 +-87.508936,41.568484,Target Munster T-1913 - Munster IN,8005 Calumet Ave.,Munster,IN,46321 +-87.47125,41.523814,Target Highland T-731 - Highland IN,10451 Indianapolis Blvd.,Highland,IN,46322 +-86.894064,41.680239,"Michigan City-Franklin & Rte 20 - Michigan City IN (D, W)",4103 South Franklin St.,Michigan City,IN,46360 +-87.183107,41.578739,"Portage IN-Willowcreek & Central - Portage IN (D, W)",2531 Willowcreek Rd.,Portage,IN,46368 +-87.17029,41.607162,Portage-State Route 249 & I-94 - Portage IN (D),6295 Ameriplex Dr.,Portage,IN,46368 +-87.469972,41.43929,Target St. John T-2048 - St. John IN,9885 Wicker Ave.,St John,IN,46373 +-87.469962,41.436369,"St. John-US 41 & 101st Ave. - St. John IN (D, W)",9939 Wicker Ave.,St John,IN,46373 +-87.471297,41.522328,"Schererville - Schereville IN (D, W)",45 US HWY 41,Schereville,IN,46375 +-87.032996,41.467706,"Valparaiso IN-LaPorte & Silhavy - Valparaiso IN (D, W)",2310 Laporte Ave.,Valparaiso,IN,46383 +-87.08525,41.46139,"Valparaiso-Rte 30 - Valparaiso IN (D, W)",2160 Morthland Dr.,Valparaiso,IN,46385 +-87.37606,41.471966,Hobart Crossing - Merrillville IN (W),2381 E. 80th Ave.,Merrillville,IN,46410 +-87.323448,41.471271,Radisson Merrillville - Merrillville IN,800 E. 81st Ave.,Merrillville,IN,46410 +-87.31582,41.468365,"Merrillville-Rte 30 & Mississippi - Merrillville IN (D, W)",1613 Southlake Mall Dr.,Merrillville,IN,46410 +-86.006044,41.738939,Henry Schricker Travel Plaza - Elkhart IN,28054 CR-4,Elkhart,IN,46514 +-86.004219,41.728463,George N. Craig Travel Plaza - Elkhart IN,2971 Moose Trail,Elkhart,IN,46514 +-86.002928,41.700564,Martin's - Elkhart #2 - Elkhart IN,1200 N. Nappanee St.,Elkhart,IN,46514 +-85.977272,41.734543,Martins-Elkhart #15 - Elkhart IN,3267 Northview Dr,Elkhart,IN,46514 +-85.925698,41.702211,Martins-Elkhart #17 - Elkhart IN,3900 Bristol St.,Elkhart,IN,46514 +-85.82716,41.574302,Martin's - Elkhart #14 - Elkhart IN,555 E. Jackson St.,Elkhart,IN,46516 +-85.906404,41.626528,"CR 15 & US 33 - Elkhart IN (D, W)",4580 Elkhart Road,Elkhart,IN,46517 +-85.8584,41.5952,Martins #24 - Goshen - Goshen IN,Elkhart Road and Bashor,Goshen,IN,46528 +-86.191578,41.71231,Super Target Mishawaka ST-1445 - Granger IN,155 University Dr. E.,Granger,IN,46530 +-86.184749,41.723934,Martin's - Granger #16 - Granger IN,12850 State Rd. 23,Granger,IN,46530 +-86.1443,41.7413,Martin's #25 - Gumwood - Mishawaka IN,7355 Heritage Square Dr,Mishawaka,IN,46530 +-86.176716,41.627424,Meijer - Mishawaka #128 - Mishawaka IN,3610 S. Bremen Highway,Mishawaka,IN,46544 +-86.109084,41.665248,Martins-Mishawaka #12 - Mishawaka IN,306 N. Bittersweet,Mishawaka,IN,46544 +-86.180835,41.708625,"Douglas & Main - Mishawaka IN (D, W)",5319 N. Main,Mishawaka,IN,46545 +-85.983943,41.442682,Martin's#20- Nappanee - Nappanee IN,1530 East Market Street,Nappanee,IN,46550 +-86.245593,41.704751,U of Notre Dame-Student Center - Notre Dame IN,217 South Dining Hall,Notre Dame,IN,46556 +-86.297454,41.343833,Martins-Plymouth #22 - Plymouth IN,865 E. Jefferson St.,Plymouth,IN,46563 +-86.23806,41.627166,Martin's - South Bend #11 - South Bend IN,926 Erskine Plaza,South Bend,IN,46614 +-86.230739,41.629407,"Ireland & Miami - South Bend IN (D, W)",1290 Ireland Road Bldg Z,South Bend,IN,46614 +-86.225958,41.62944,Target Scottsdale T-1902 - South Bend IN,1400 E. Ireland Rd.,South Bend,IN,46614 +-86.216225,41.69988,"Ironwood & SR 23 - South Bend IN (D, W)",2202 South Bend Ave.,South Bend,IN,46635 +-86.250298,41.709879,"SR 933 & Cleveland - South Bend IN (D, W)",52991 SR 933,South Bend,IN,46637 +-86.219591,41.698392,Martin's - South Bend #10 - SOUTH BEND IN,2081 South Bend Avenue,SOUTH BEND,IN,46637 +-85.073231,41.3666,"I 69 & SR 8 - Auburn IN (D, W)",1049 W. 7th St.,Auburn,IN,46706 +-85.145242,41.075217,"Jefferson & Fairfield - Fort Wayne IN (D, W)",502 W. Jefferson Blvd.,Fort Wayne,IN,46802 +-85.259637,41.032692,Jefferson & I-69 Ft. Wayne - Fort Wayne IN (W),5723 Coventry Lane,Fort Wayne,IN,46804 +-85.20135,41.076328,Target Fort Wayne SW T-2440 - Fort Wayne IN,1102 S. Thomas Rd.,Fort Wayne,IN,46804 +-85.194178,41.070775,Jefferson Pointe - Ft. Wayne - Fort Wayne IN (W),4120 W. Jefferson Blvd.,Fort Wayne,IN,46804 +-85.137316,41.118293,"Coliseum & Coldwater - Ft Wayne IN (D, W)",301 East Coliseum Blvd.,Ft Wayne,IN,46805 +-85.135337,41.11598,Glenbrook Square Mall - Fort Wayne IN (W),4201 Coldwater Blvd.,Fort Wayne,IN,46805 +-85.135288,41.111082,Target Ft. Wayne/Glenbrook T-2217 - Fort Wayne IN,3801 Coldwater Rd.,Fort Wayne,IN,46805 +-85.089718,41.097724,"State & Coliseum - Fort Wayne IN (D, W)",3905 E. State Blvd.,Fort Wayne,IN,46805 +-85.063999,41.120394,Target Fort Wayne T-1933 - Fort Wayne IN,6119 Stellhorn Rd.,Fort Wayne,IN,46815 +-85.006988,41.133785,Meijers - Fort Wayne #138 - Fort Wayne IN,10301 Maysville Rd.,Fort Wayne,IN,46815 +-85.165804,41.17455,"Lima & Dupont - Fort Wayne IN (D, W)",10030 Lima Road,Fort Wayne,IN,46818 +-85.161936,41.137817,"Lima & Ludwig - Ft. Wayne IN (D, W)",6403 Lima Rd.,Ft. Wayne,IN,46818 +-85.16169,41.136721,Meijer - Ft. Wayne #124 - Ft. Wayne IN,6309 Lima Road,Ft. Wayne,IN,46818 +-85.113892,41.178603,"Dupont & Auburn - Fort Wayne IN (D, W)",2132 East Dupont Road,Fort Wayne,IN,46825 +-86.125648,40.440721,"US 31 & Alto - Kokomo IN (D, W)",512 East Alto Rd.,Kokomo,IN,46902 +-86.108079,40.467359,"US 35 & SR 22 - Kokomo IN (D, W)",1401 South Reed Rd.,Kokomo,IN,46902 +-85.55077,40.48015,"SR 22 & Beaner - Gas City IN (D, W)",4970 Beaner Blvd.,Gas City,IN,46933 +-86.330531,40.7588,Martins-Logansport #18 - Logansport IN,3420 E. Market St.,Logansport,IN,46947 +-85.673712,40.532742,"32nd & Western - Marion IN (D, W)",3101 S. Western Ave.,Marion,IN,46953 +-84.9747,38.7869,Belterra Casino Resort - Florence IN,777 Belterra Dr,Florence,IN,47020 +-85.7661,38.3096,Target Clarksville T-2068 - Clarksville IN,1125 Veterans Pkwy,Clarksville,IN,47129 +-85.75848,38.316193,Bass Pro Shops - Clarksville - Clarksville IN,951 E. Hwy. 131,Clarksville,IN,47129 +-85.841512,38.306766,Kroger - New Albany #396 - New Albany IN,200 New Albany Plaza,New Albany,IN,47150 +-85.950661,39.200343,"46 & Johnson - Columbus IN (D, W)",2355 W. Jonathon Moore Pike,Columbus,IN,47201 +-85.885484,39.218231,Target-Columbus T-1911 - Columbus IN,1865 N. National Rd.,Columbus,IN,47201 +-85.882835,39.215722,"National & 17th - Columbus IN (D, W)",1585 N. National Rd.,Columbus,IN,47201 +-85.39367,40.218943,"McGalliard & Reserve - Muncie IN (D, W)",701 W. McGalliard Road,Muncie,IN,47303 +-85.419158,40.190259,"Tillotson & Godman - Muncie IN (D, W)",523 S. Tillotson Ave.,Muncie,IN,47304 +-85.409035,40.197655,Ball State University - L. A. Pitte - Muncie IN,2000 W. University Ave.,Muncie,IN,47306 +-84.849506,39.831032,National & Elks - Richmond IN (D),3750 National Road East,Richmond,IN,47374 +-86.532173,39.145324,"Walnut & Miller - Bloomington IN (D, W)",1921 S. Walnut St.,Bloomington,IN,47401 +-86.4984,39.1644,"3rd St. & 46 Bypass - Bloomington IN (D, W)",115 S. SR 46 Bypass,Bloomington,IN,47401 +-86.494253,39.164188,Target Bloomington T-1878 - Bloomington IN,2966 E. 3rd St.,Bloomington,IN,47401 +-86.572905,39.168156,"SR 48 & SR 37 Bloomington - Bloomington IN (D, W)",284 N. Jacob Drive,Bloomington,IN,47404 +-86.523063,39.167868,Indiana Memorial Union-Bloomington- - Bloomington IN,900 E. 7th St.,Bloomington,IN,47405 +-86.52694,39.166431,Indiana University - Bloomington IN (W),110 South Indiana Avenue,Bloomington,IN,47408 +-86.513067,38.860999,"16th & Clinic - Bedford IN (D, W)",3015 W. 16th Street,Bedford,IN,47421 +-87.390516,37.976518,"SR 261 & Hwy. 66 - Newburgh IN (D, W)",7755 State Rd. 66,Newburgh,IN,47630 +-87.578539,37.972612,Casino Aztar - Pavilion - Evansville IN,421 NW Riverside Dr,Evansville,IN,47708 +-87.574024,38.021036,"1st St. & W. Mill Rd. - Evansville IN (D, W)",4650 1st Avenue,Evansville,IN,47710 +-87.675532,37.961281,University of South IN/Evansville - Evansville IN,8600 University Blvd.,Evansville,IN,47712 +-87.492757,37.980781,Lloyd Expwy & Green River Rd. - Evansville IN (W),512 N. Green River Rd.,Evansville,IN,47715 +-87.472934,37.97371,"SR 66 & Burkhardt - Evansville IN (D, W)",6401 E. Lloyd Expressway,Evansville,IN,47715 +-87.405609,39.526169,"US 41 & 7th - Terre Haute IN (D, W)",4900 US Highway 41 South,Terre Haute,IN,47802 +-87.372027,39.568298,"US 41 & Margaret - Terre Haute IN (D, W)",3017 South US 41,Terre Haute,IN,47802 +-87.378754,39.470928,"25th & Wabash - Terre Haute IN (D, W)",2500 Wabash Avenue,Terre Haute,IN,47803 +-86.857462,40.400452,US 52 & SR 38 - Lafayette IN (D),1700 Sagamore Parkway,Lafayette,IN,47905 +-86.85308,40.417736,Super Target Lafayette ST-1762 - Lafayette IN,3630 SR 26 E.,Lafayette,IN,47905 +-86.839011,40.418966,"26 & Creasy - Lafayette IN (D, W)",160 South Creasy Lane,Lafayette,IN,47905 +-86.816655,40.417856,"SR 26 & I 65 - Lafayette IN (D, W)",17 North Frontage Rd.,Lafayette,IN,47905 +-86.91382,40.453182,"Sagamore & Salisbury - West Lafayette IN (D, W)",545 Sagamore Parkway,West Lafayette,IN,47906 +-86.910331,40.425078,Purdue U - Memorial Union/Oasis - West Lafayette IN,101 N. Grant St.,West Lafayette,IN,47906 +-86.901778,40.421101,Wabash Landing - West Lafayette IN (W),342 E. State Street,West Lafayette,IN,47906 +-83.214074,42.546518,Birmingham MI - Birmingham MI (W),135 S. Woodward,Birmingham,MI,48009 +-83.209605,42.546866,Kroger-Birmingham #685 - Birmingham MI,685 E. Maple Rd.,Birmingham,MI,48009 +-83.22353,42.518448,Southfield & 13 Mile Rd. - Beverly Hills MI (W),31201 Southfield Rd.,Beverly Hills,MI,48025 +-83.286812,42.501066,12 Mile & Telegraph - Southfield MI (W),24529 12 Mile Road,Southfield,MI,48034 +-83.319917,42.506995,Northwestern Highway - Southfield MI (W),29999 Northwestern Highway,Southfield,MI,48034 +-82.94806,42.627663,The Mall at Partridge Creek - Clinton Township MI (W),17410 Hall Road,Clinton Township,MI,48038 +-82.499347,42.899918,Meijer-Marysville #229 - Marysville MI,205 S. Range Rd.,Marysville,MI,48040 +-82.913836,42.629042,Target Macomb Township T-2113 - Macomb MI,20877 Hall Rd.,Macomb,MI,48044 +-82.899506,42.643888,Kroger-Macomb #684 - Macomb MI,21555 21 Mile Rd.,Macomb,MI,48044 +-82.83141,42.676938,Target Chesterfield Township T-945 - Chesterfield Township MI,51400 Gratiot Ave.,Chesterfield Township,MI,48051 +-82.827785,42.674501,"Chesterfield I-94 - Chesterfield Township MI (D, W)",27900 23 Mile Rd.,Chesterfield Township,MI,48051 +-82.456216,43.031631,Port Huron - Fort Gratiot,4216 24th Avenue,Fort Gratiot,MI,48059 +-82.736766,42.794184,Kroger-Richmond MI #706 - Richmond MI,66900 Gratiot Road,Richmond,MI,48062 +-82.927918,42.510177,"12 Mile & Gratiot - Roseville MI (D, W)",29036 Gratiot Avenue,Roseville,MI,48066 +-82.914314,42.532012,"Roseville on Gratiot - Roseville MI (D, W)",31921 Gratiot Avenue,Roseville,MI,48066 +-83.14425,42.488119,Royal Oak MI - Royal Oak MI (W),300 S. Main St.,Royal Oak,MI,48067 +-83.111124,42.504677,"Madison Hgts 12 Mile & Dartmouth - Madison Heights MI (D, W)",600 W. 12 Mile Rd.,Madison Heights,MI,48071 +-83.191322,42.517747,Beaumont Hospital Royal Oak - Royal Oak MI,3601 W. 13 Mile Rd.,Royal Oak,MI,48073 +-83.187117,42.518563,13 Mile & Woodward - Royal Oak MI (W),31105 Woodward Ave.,Royal Oak,MI,48073 +-83.184966,42.538195,Meijers-Royal Oak #34 - Royal Oak MI,5150 Coolidge Hwy.,Royal Oak,MI,48073 +-83.27822,42.456006,Telegraph & 9 Mile (UCO) - Southfield MI (W),22506 Telegraph Road,Southfield,MI,48075 +-83.206911,42.448717,Target Southfield/Northland T-777 - Southfield MI,21400 Northwestern Hwy.,Southfield,MI,48075 +-83.22337,42.515102,Target Southfield T-2207 - Southfield MI,30333 Southfield Rd.,Southfield,MI,48076 +-83.22282,42.511135,"Southfield & Windflower - Southfield MI (D, W)",30160 Southfield Road,Southfield,MI,48076 +-83.109812,42.563408,Sixteen & John R. Roads - Troy MI (W),1921 East Big Beaver Rd.,Troy,MI,48083 +-83.111893,42.534239,Macys - Troy - Troy MI,500 W. 14 Mile Rd.,Troy,MI,48083 +-83.185098,42.561134,Somerset Mall - Bridge - Troy MI (W),2801 W. Big Beaver Rd.,Troy,MI,48084 +-83.167542,42.562025,Big Beaver and Crooks - Troy MI,1434 W. Big Beaver,Troy,MI,48084 +-83.183863,42.562263,Somerset North Mall - Troy MI (W),2800 Big Beaver Road,Troy,MI,48084 +-83.130527,42.62177,Rochester & South Blvd. - Troy MI (D),6908 Rochester Road,Troy,MI,48085 +-83.091509,42.618107,Beaumont Hospital Troy - Troy MI,44201 Dequindre Rd.,Troy,MI,48085 +-83.08555,42.503957,Target Warren T-2544 - Warren MI,28800 Dequinder,Warren,MI,48092 +-83.04684,42.507447,"12 Mile & Mound - Warren MI (D, W)",29215 Mound Road,Warren,MI,48092 +-83.169165,42.598736,Crooks & Long Lake - Troy MI (W),5385 Crooks Rd.,Troy,MI,48098 +-83.216731,42.277632,Allen Park - Allen Park MI (W),23005 Outer Drive,Allen Park,MI,48101 +-83.20388,42.284363,Target Allen Park T-2033 - Allen Park MI,3100 Fairlane Dr,Allen Park,MI,48101 +-83.780224,42.277323,Kroger-Ann Arbor #688 - Ann Arbor MI,400 S. Maple,Ann Arbor,MI,48103 +-83.769131,42.242908,Target Ann Arbor T-634 - Ann Arbor MI,2000 Waters Rd.,Ann Arbor,MI,48103 +-83.767007,42.242581,Meijer-Ann Arbor #64 - Ann Arbor MI,3145 Ann Arbor Saline Rd.,Ann Arbor,MI,48103 +-83.734388,42.274996,S. University - Ann Arbor MI (W),1214 South University Ave.,Ann Arbor,MI,48103 +-83.748622,42.27958,Ann Arbor Main & Liberty - Ann Arbor MI (W),300 South Main Street,Ann Arbor,MI,48104 +-83.740879,42.280085,State & Liberty - Ann Arbor MI (W),222 S. State,Ann Arbor,MI,48104 +-83.688917,42.255607,Arborland Relocation - Ann Arbor MI,3601 Washtenaw Ave.,Ann Arbor,MI,48104 +-83.680235,42.23536,Carpenter Rd. - Pittsfield MI (D),3650 Carpenter Rd.,Pittsfield,MI,48104 +-83.668103,42.251543,"Glencoe Crossing - Ann Arbor MI (D, W)",4585 Washtenaw Ave.,Ann Arbor,MI,48104 +-83.708541,42.302524,Kroger-Ann Arbor #605 - Ann Arbor MI,2641 Plymouth Rd.,Ann Arbor,MI,48105 +-83.74264,42.240025,Briarwood Mall Kiosk - Ann Arbor MI (W),100 Briarwood Mall Cir,Ann Arbor,MI,48108 +-83.78838,42.544453,Brighton - Brighton MI (D),8485 W. Grand River Ave.,Brighton,MI,48116 +-83.78562,42.539487,Meijer-Brighton #46 - Brighton MI,8650 W. Grand River Ave.,Brighton,MI,48116 +-83.760402,42.521262,Kroger-Brighton #638 - Brighton MI,9968 E. Grand River,Brighton,MI,48116 +-83.793173,42.543956,Target Brighton T-922 - Brighton MI,8043 Challis Rd.,Brighton,MI,48116 +-83.247107,42.305476,Dearborn Michigan - Dearborn MI (W),22155 Michigan Ave.,Dearborn,MI,48124 +-83.169901,42.323962,"Michigan & Oakman Dearborn - Dearborn MI (D, W)",12921 Michigan Ave.,Dearborn,MI,48126 +-83.302469,42.328086,Target Dearborn Heights T-353 - Dearborn Heights MI,26650 Ford Rd.,Dearborn Heights,MI,48127 +-83.2998,42.326407,Fordview Plaza - Dearborn Heights MI (W),26425 Ford Road,Dearborn Heights,MI,48127 +-83.15716,42.130653,Kroger - Grosse Ile #415 - Grosse Ile MI,8999 Macomb,Grosse Ile,MI,48138 +-83.191099,42.254012,"Lincoln Park Southfield Rd. - Lincoln Park MI (D, W)",1845 Southfield Road,Lincoln Park,MI,48146 +-83.33431,42.367841,Target Livonia T-2230 - Livonia MI,11011 Middlebelt Rd.,Livonia,MI,48150 +-83.349487,42.397748,Kroger-Livonia #618 - Livonia MI,30935 5 Mile Rd.,Livonia,MI,48154 +-83.619934,42.514797,"Lyon Towne Center - New Hudson MI (D, W)",30808 Lyon Center Drive East,New Hudson,MI,48165 +-83.480165,42.431008,Downtown Northville - Northville MI (W),302 East Main Street,Northville,MI,48167 +-83.436748,42.43284,8 Mi. & Haggerty Rd. - Northville MI (W),20055 Haggerty Road,Northville,MI,48167 +-83.480514,42.358471,Kroger-Plymouth #670 - Plymouth MI,44525 Ann Arbor Rd. W.,Plymouth,MI,48170 +-83.469484,42.369783,Mayflower Centre - Plymouth MI (W),803 W. Ann Arbor Tr.,Plymouth,MI,48170 +-83.260835,42.197751,Eureka & Pardee - Taylor MI (W),23300 Eureka Rd.,Taylor,MI,48180 +-83.225967,42.137414,Target Woodhaven T-923 - Woodhaven MI,23555 Allen Rd.,Woodhaven,MI,48183 +-83.402801,42.337413,"Westland Central City Pkwy. - Westland MI (D, W)",36545 Warren Road,Westland,MI,48185 +-83.390744,42.337434,Target Westland T-281 - Westland MI,35401 Warren Rd.,Westland,MI,48185 +-83.491319,42.319496,Kroger-Canton #671 - Canton MI,1905 Canton Center Rd.,Canton,MI,48187 +-83.434469,42.32435,"Canton Ford & Lotz - Canton MI (D, W)",39940 Ford Rd.,Canton,MI,48187 +-83.504672,42.267385,Target Canton South T-2415 - Canton MI,47330 Michigan Ave.,Canton,MI,48188 +-83.629239,42.251774,EMU Student Center - Ypsilanti MI,900 Oakwood St.,Ypsilanti,MI,48197 +-83.61945,42.211525,Kroger-Ypsilanti MI #707 - Ypsilanti MI,2010 Whitaker Road,Ypsilanti,MI,48197 +-83.058081,42.348004,Woodward & Mack UCO - Detroit MI (W),3670 Woodward Avenue,Detroit,MI,48201 +-83.0777,42.3734,Wayne State University - Detroit MI,695 Williams Mall Dr,Detroit,MI,48202 +-82.93281,42.448593,Target - Harper Woods T-0776 - Harper Woods MI,18000 Vernier Rd.,Harper Woods,MI,48225 +-83.058216,42.332829,MGM Grand Detroit Hotel and Casino - Detroit MI,1777 Third St.,Detroit,MI,48226 +-82.916842,42.39012,Grosse Pointe - Grosse Pointe MI (W),17001 Kercheval Ave.,Grosse Pointe,MI,48230 +-82.909829,42.427782,Mack Avenue - Grosse Pointe MI (W),19727 Mack Avenue,Grosse Pointe,MI,48236 +-83.201584,42.473497,"Oak Park 10 Mile & Greenfield - Oak Park MI (D, W)",24840 Greenfield Road,Oak Park,MI,48237 +-83.274682,42.359799,"Telegraph @ Cathedral--Redfor - Redford MI (D, W)",9052 Telegraph Road,Redford,MI,48239 +-83.3507,42.2139,DTW - Food Court L-6 Midfield Term - Detroit MI (A),Midfield Terminal,Detroit,MI,48242 +-83.3507,42.2139,DTW - CSB Fntn Midfield Term - Detroit MI (A),Midfield Terminal,Detroit,MI,48242 +-83.039708,42.328994,Marriott RenCen Detroit - Detroit MI,Renaissance Center,Detroit,MI,48243 +-83.260918,42.545431,Maple & Lahser - Bloomfield Hills MI (W),3584 W. Maple Road,Bloomfield Hills,MI,48301 +-83.285188,42.54378,Maple & Telegraph/SWC - Bloomfield Hills MI (W),6558 Telegraph Rd.,Bloomfield Hills,MI,48301 +-83.287617,42.601465,Target Bloomfield Township T-2178 - Bloomfield Township MI,2400 S. Telegraph Rd.,Bloomfield Township,MI,48302 +-83.281167,42.580774,Bloomfield Twsp-LongLake&Telegraph - Bloomfield MI (W),4036 Telegraph Road,Bloomfield,MI,48303 +-83.167427,42.548322,"Troy Maple & Crooks - Troy MI (D, W)",1470 W. Maple Road,Troy,MI,48303 +-83.263316,42.602304,Woodward & Square Lake - Bloomfield Hills MI (W),42825 Woodward Ave.,Bloomfield Hills,MI,48304 +-83.196391,42.725891,Kroger-Oakland #650 - Oakland MI,4888 Adams Rd.,Oakland,MI,48306 +-83.13687,42.753895,Meijers-Rochester #57 - Rochester MI,3175 Rochester Rd.,Rochester,MI,48306 +-83.135385,42.697216,Rochester Hills,6950 Rochester Rd. , Rochester Hills,MI,48307 +-83.131785,42.636748,Hampton Corners - Rochester Hills MI (W),2972 South Rochester Road,Rochester Hills,MI,48307 +-83.131712,42.636164,Target Rochester Hills T-351 - Rochester Hills MI,2887 S. Rochester Rd.,Rochester Hills,MI,48307 +-83.130569,42.622267,"Rochester Rd. & Tienken - Rochester Hills MI (D, W)",6950 Rochester Rd.,Rochester Hills,MI,48307 +-83.19401,42.683983,Village of Rochester Hills - Rochester Hills MI (W),260 N. Adams Rd. Space # E-260,Rochester Hills,MI,48309 +-83.085918,42.56386,Target Sterling Heights T-2254 - Sterling Heights MI,2310 Metropolitan Pkwy,Sterling Heights,MI,48310 +-83.029301,42.562051,"Van Dyke & 16 Mile Rd. - Sterling Heights MI (D, W)",36350 Van Dyke Road,Sterling Heights,MI,48312 +-82.997574,42.599464,Macys - Lakeside - Sterling Heights MI,14200 Lakeside Circle Lakeside Mall,Sterling Heights,MI,48313 +-82.97365,42.628121,Shelby Town Center - Shelby Township MI (W),45147 Market St.,Shelby Township,MI,48315 +-83.008895,42.669855,"23 Mile Rd. & M-53 - Utica MI (D, W)",12129 23 Mile Rd.,Utica,MI,48316 +-83.35988,42.538661,Orchard Lake - West Bloomfield MI (W),6765 Orchard Lake Rd.,West Bloomfield,MI,48322 +-83.362348,42.577233,Orchard Lake Village - Orchard Lake MI (W),4200 Orchard Lake Road,Orchard Lake,MI,48323 +-83.306453,42.697287,Baldwin & I-75 - Auburn Hills MI (W),3920 Baldwin Rd.,Auburn Hills,MI,48326 +-83.221076,42.6801,Walton & Squirrel - Auburn Hills MI (W),2546 N. Squirrel Rd.,Auburn Hills,MI,48326 +-83.388779,42.660304,Waterford - Waterford MI (W),5129 Highland Road,Waterford,MI,48327 +-83.358789,42.499578,Orchard - 12 Plaza - Farmington Hills MI (W),27845 Orchard Lake Rd.,Farmington Hills,MI,48334 +-83.374203,42.463935,DT Farmington - Farmington MI (W),33199 Grand River,Farmington,MI,48336 +-83.341483,42.450322,Target Farmington Hills - Farmington Hills MI,30020 Grand River Ave.,Farmington Hills,MI,48336 +-83.415593,42.718001,"Clarkston Dixie Hwy. - Clarkston MI (D, W)",6677 Dixie Highway,Clarkston,MI,48346 +-83.239252,42.776589,"Lake Orion - Lake Orion MI (D, W)",590 South Lapeer Rd.,Lake Orion,MI,48362 +-83.518379,42.490392,Kroger-Novi #632 - Novi MI,47650 Grand River Ave.,Novi,MI,48375 +-83.476162,42.493422,Novi-North - Novi MI (W),27795-B Novi Road,Novi,MI,48377 +-83.476073,42.491793,Macy's-Novi MI - Novi MI,27550 Novi Road,Novi,MI,48377 +-83.475899,42.488546,Twelve Oaks Mall Kiosk - Novi MI (W),27342-X Novi Road,Novi,MI,48377 +-83.466529,42.526319,Maples Plaza - Novi MI (W),42151 Fourteen Mile Road,Novi,MI,48377 +-83.600936,42.592395,Milford - Milford MI (W),525 N. Main,Milford,MI,48381 +-83.446104,42.595635,Kroger-Commerce Township #629 - Commerce Township MI,2733 Union Lake Rd.,Commerce Township,MI,48382 +-83.526888,42.64906,Meijer-White Lake #227 - White Lake MI,6001 Highland Rd.,White Lake,MI,48383 +-83.43806,42.53252,Target Commerce Township T-896 - Walled Lake MI,495 Haggerty Rd.,Walled Lake,MI,48390 +-83.781832,43.250208,"Birch Run - Birch Run MI (D, W)",8615 Main Street,Birch Run,MI,48415 +-86.215339,43.044557,Spartan - Grand Haven #1570 - Grand Haven MI,1116 Robbins Rd.,Grand Haven,MI,48417 +-83.537613,43.035308,VG's-Davison #1930 - Davison MI,8503 Davison Rd.,Davison,MI,48423 +-83.739872,42.786848,Target Fenton T-2105 - Fenton MI,3255 Owen Rd.,Fenton,MI,48430 +-83.73862,42.793425,VG's-Fenton #1921 - Fenton MI,18005 Silver Pkwy,Fenton,MI,48430 +-83.631479,42.928726,"Grand Blanc - Grand Blanc MI (D, W)",11353 South Saginaw St.,Grand Blanc,MI,48439 +-83.61779,42.919209,Kroger-Grand Blanc #409 - Grand Blanc MI,12731 S. Saginaw St.,Grand Blanc,MI,48439 +-83.32045,43.043439,"Lapeer - Lapeer MI (D, W)",1221 Demille Street,Lapeer,MI,48446 +-83.636247,43.018681,"Flint Court and Center - Flint MI (D, W)",3822 E. Court Street,Flint,MI,48506 +-83.740529,42.988229,"Flint Miller Road - Flint MI (D, W)",3243 Miller Rd.,Flint,MI,48507 +-83.969658,43.479988,"Saginaw Bay Road & Tittabawassee - Saginaw MI (D, W)",2685 Tittabawassee,Saginaw,MI,48603 +-84.247174,43.662105,"Midland M-10 & Eastman - Midland MI (D, W)",7201 Eastman Avenue,Midland,MI,48642 +-83.973421,43.517939,Saginaw Valley State University - Saginaw MI,7400 Bay Rd.,Saginaw,MI,48710 +-84.479904,42.734195,East Lansing (UCO) - East Lansing MI (W),401 East Grand River Avenue,East Lansing,MI,48823 +-84.468135,42.731022,"Grand River & Stoddard - E. Lansing MI (D, W)",1141 E. Grand River,E. Lansing,MI,48823 +-84.500374,42.760863,Meijers-East Lansing #52 - East Lansing MI,1350 W. Lake Lansing Rd.,East Lansing,MI,48823 +-83.76185,42.632835,Target Hartland T-1971 - Howell MI,10025 E. Highland Rd.,Howell,MI,48843 +-84.766917,43.575396,Target Mount Pleasant T-924 - Mount Pleasant MI,4097 E. Blue Grass Rd.,Mount Pleasant,MI,48858 +-84.732975,43.611578,"Mount Pleasant MI - Mount Pleasant MI (D, W)",5655 East Pickard St.,Mount Pleasant,MI,48858 +-84.4199,42.69,"Okemos & Jolly - Okemos MI (D, W)",3552 Meridian Crossing Drive,Okemos,MI,48864 +-84.424177,42.721489,Meijers-Okemos #25 - Okemos MI,2055 W. Grand River Ave.,Okemos,MI,48864 +-84.284389,42.688957,D&W Fresh Market-Williamston #1903 - Williamston MI,151 W. Grand River Ave.,Williamston,MI,48895 +-84.643069,42.74108,Kroger-Lansing #888 - Lansing MI,6430 W. Saginaw Hwy.,Lansing,MI,48917 +-85.647509,42.269817,"Stadium & Drake - Kalamazoo MI (D, W)",4700 Stadium Drive,Kalamazoo,MI,49008 +-85.615783,42.259734,Spartan - Parkview #1575 - Kalamazoo MI,2130 Parkview,Kalamazoo,MI,49008 +-85.652768,42.296223,"Kalamazoo - West Main - Kalamazoo MI (D, W)",5370 West Main Street,Kalamazoo,MI,49009 +-85.652537,42.296227,Target Kalamazoo T-901 - Kalamazoo MI,5350 W. Main St.,Kalamazoo,MI,49009 +-85.179157,42.261065,"Battle Creek Beckley & I-94 - Battle Creek MI (D, W)",5997 Beckley Road,Battle Creek,MI,49015 +-85.184679,42.318041,McCamly Plaza Hotel-Battle Creek-Fo - Battle Creek MI,50 Capital Ave. SW,Battle Creek,MI,49017 +-85.593469,42.215454,Spartan - Portage #1588 - Portage MI,525 Romence Rd.,Portage,MI,49024 +-86.495295,42.079541,Martin's-St Joseph #21 - St. Joseph MI,2121 S. Cleveland,St Joseph,MI,49085 +-86.247089,41.821057,Martin's-Niles #19 - Niles MI,720 S. 11th St.,Niles,MI,49120 +-86.494835,42.015699,Martins-Stevensville #23 - Stevensville MI,5637 Cleveland Ave.,Stevensville,MI,49127 +-84.424722,42.268909,"Jackson I-94 and M50 - Jackson MI (D, W)",1801 North West Ave.,Jackson,MI,49202 +-84.358535,42.257241,Meijer-Jackson #056 - Jackson MI,3333 E. Michigan Ave.,Jackson,MI,49202 +-84.032964,41.875023,"Adrian - Adrian MI (D, W)",1515 E. US 223,Adrian,MI,49221 +-85.486,42.954678,Grand River Grocery - Ada MI,496 Ada Rd.,Ada,MI,49301 +-85.48352,43.683924,Ferris State University - IRC Conne - Big Rapids MI,1201 S. State St.,Big Rapids,MI,49307 +-85.619929,42.845873,Meijer-Gaines Twp. #199 - Caledonia MI,1801 Marketplace Dr,Caledonia,MI,49316 +-85.616021,42.84596,Target Grand Rapids M-6 T-2015 - Caledonia MI,1925 Marketplace Dr,Caledonia,MI,49316 +-85.508121,42.793742,Spartan - Caledonia #1577 - Caledonia MI,9375 Cherry Valley Ave. SE,Caledonia,MI,49316 +-85.599991,43.117618,Meijer-Rockford #226 - Rockford MI,2799 10 Mile Rd. NE,Rockford,MI,49341 +-85.547165,43.115263,Spartan - Rockford #1572 - Rockford MI,201 Marcell Dr. NE,Rockford,MI,49341 +-86.220371,43.065799,"Grand Haven - Grand Haven MI (D, W)",426 North Beacon Blvd.,Grand Haven,MI,49417 +-86.220056,43.037165,Meijer-Grand Haven #180 - Grand Haven MI,15000 US 31,Grand Haven,MI,49417 +-85.761056,42.883364,Spartan - Grandville #1579 - Grandville MI,3960 44th Street SW,Grandville,MI,49418 +-85.748222,42.880189,Meijer-Grandville #221 - Grandville MI,3434 Century Ctr. Dr. SW,Grandville,MI,49418 +-86.075339,42.783136,Meijer-Holland #47 - Holland MI,746 E. 16th St.,Holland,MI,49423 +-86.092721,42.828565,Meijer-Holland Twp. #217 - Holland MI,3320 West Shore Dr,Holland,MI,49424 +-86.092278,42.827632,"Holland - Holland MI (D, W)",3259 West Shore Drive,Holland,MI,49424 +-85.79516,42.90715,Meijer-Jenison #26 - Jenison MI,0-550 Baldwin St.,Jenison,MI,49428 +-86.20589,43.15936,Target Norton Shores T-2327 - Muskegon MI,5057 Harvey St.,Muskegon,MI,49444 +-86.205713,43.152346,"Muskegon - Muskegon MI (D, W)",5506 S. Harvey St.,Muskegon,MI,49444 +-86.111805,42.802812,Spartan- Holland #1574 - Holland MI,50 Douglas Ave.,Holland,MI,49464 +-85.673294,42.9664,J.W.Marriott Grand Rapids lobby rtl - Grand Rapids MI,Pearl St. NW & Campau Ave. NW,Grand Rapids,MI,49503 +-85.672197,42.966801,Amway Grand Plaza - Grand Rapids MI,187 Monroe Ave. NW,Grand Rapids,MI,49503 +-85.679469,42.963419,Grand Valley State University - Pew - Grand Rapids MI,401 Fulton St. W.,Grand Rapids,MI,49504 +-85.614909,42.950408,Wealthy Street - East Grand Rapids MI (W),2172 Wealthy Street,East Grand Rapids,MI,49506 +-85.609416,42.930601,Spartan - Breton Village #1572 - Grand Rapids MI,1814 Breton Road SE,Grand Rapids,MI,49506 +-85.614731,42.950684,Spartan - Gaslight Village#1576 - Grand Rapids MI,2181 Wealthy SE,Grand Rapids,MI,49506 +-85.686389,42.865105,Target Wyoming T-1052 - Wyoming MI,5455 Clyde Park Ave. SW,Wyoming,MI,49509 +-85.590412,43.012532,"Kentwood 28th & M-37 - Grand Rapids MI (D, W)",2757 E. Beltline,Grand Rapids,MI,49512 +-85.588474,42.912529,Woodland Mall Grand Rapids - Grand Rapids MI (W),3195 28th Street SE,Grand Rapids,MI,49512 +-85.542948,42.912088,"Waterfall Shoppes - Grand Rapids MI (D, W)",5070 28th Street SE,Grand Rapids,MI,49512 +-85.541057,42.912706,Target Grand Rapids T-2014 - Grand Rapids MI,5120 28th Ave. SE,Grand Rapids,MI,49512 +-85.531767,42.915542,Meijers-Grand Rapids #50 - Grand Rapids MI,5531 28th St. SE,Grand Rapids,MI,49512 +-85.531643,42.885852,GRR - Grand Rapids Conc A Food Crt. - Grand Rapids MI (A),5500 44th St. SE,Grand Rapids,MI,49512 +-85.722359,42.860544,Wyoming Metro Health Village - Wyoming MI (D),2355 Health Drive,Wyoming,MI,49519 +-85.591193,43.000787,East Beltline & Knapp - Grand Rapids MI (W),2107 East Beltline Ave.,Grand Rapids,MI,49525 +-85.590505,42.998725,Meijers-Grand Rapids #158 - Grand Rapids MI,1997 Beltline Ave. NE,Grand Rapids,MI,49525 +-85.580086,43.058704,"Northland Drive - Grand Rapids MI (D, W)",5241 Northland Drive,Grand Rapids,MI,49525 +-85.689615,43.023107,"Walker Alpine & Coventry - Walker MI (D, W)",3287 Alpine Ave. NW,Walker,MI,49544 +-85.778195,42.968956,Meijer-Grand Rapids #216 - Grand Rapids MI,315 Wilson Ave. NW,Grand Rapids,MI,49544 +-85.508968,42.913148,Spartan - Cascade #1573 - Grand Rapids MI,6425 28th St. SE,Grand Rapids,MI,49588 +-85.639446,44.744909,Meijer-Traverse City #33 - Traverse City MI,3955 US-31 S.,Traverse City,MI,49684 +-84.686423,45.027386,Glen's Fresh Market-Gaylord - Gaylord MI,829 W. Main St.,Gaylord,MI,49735 +-84.91834,45.389542,Glen's Fresh Market Petoskey North - Petoskey MI,1163 N. US-31,Petoskey,MI,49770 +-93.504566,41.641932,Target-Altoona T-1939 - Altoona IA,3414 8th St. SW,Altoona,IA,50009 +-93.619157,42.022841,Hy Vee Foods-Ames #2 - Ames IA,640 Lincoln Way,Ames,IA,50010 +-93.614399,42.022958,"Ames-Lincoln Way & Washington - Ames IA (D, W)",327 Lincoln Way,Ames,IA,50010 +-93.699696,42.022786,Hy Vee Foods-Ames #1 - Ames IA,3800 W. Lincoln Way,Ames,IA,50014 +-93.580652,41.711936,"Ankeny-Delaware & Shurfine - Ankeny IA (D, W)",1745 SE Delaware Ave.,Ankeny,IA,50021 +-93.578907,41.709445,Super Target Ankeny ST-1767 - Ankeny IA,2135 SE Delaware Ave.,Ankeny,IA,50021 +-93.60045,41.735025,Hy Vee Foods-Ankeny #1022 - Ankeny IA,410 N. Ankeny Blvd.,Ankeny,IA,50021 +-93.034089,41.697578,Hy Vee Newton #1449 - Newton IA,1501 1st Ave. E.,Newton,IA,50208 +-93.743011,41.599843,University & 28th - West Des Moines IA (W),2800 University Avenue,West Des Moines,IA,50265 +-93.627657,41.653922,Hy Vee Foods-Des Moines #4 - Des Moines IA,555 S. 51st Street,Des Moines,IA,50265 +-93.730107,41.571106,Hy Vee Foods-West Des Moines #1888 - West Des Moines IA,1990 Grand Ave.,West Des Moines,IA,50265 +-93.80886,41.59864,Hy Vee Foods-West Des Moines #3 - West Des Moines IA,1725 74th St.,West Des Moines,IA,50266 +-93.805196,41.568357,Jordan Creek Town Center - West Des Moines IA (W),101 Jordan Creek Parkway,West Des Moines,IA,50266 +-93.795584,41.561815,"West Des Moines-Mills Civic & 64th - West Des Moines IA (D, W)",6305 Mills Civic Pkwy,West Des Moines,IA,50266 +-93.780304,41.559437,Super Target Des Moines SW ST-1901 - Des Moines IA,5405 Mill Civic Pkwy,Des Moines,IA,50266 +-93.630032,41.585771,Tenth & Locust - Des Moines IA (W),1013 Locust Street,Des Moines,IA,50309 +-93.69787,41.629567,"Merle Hay & Douglas - Des Moines IA (D, W)",3830 Merle Hay Road,Des Moines,IA,50310 +-93.659603,41.602742,Drake University - Des Moines IA,1315 31st St.,Des Moines,IA,50310 +-93.623192,41.599398,Mercy Medical Center-Des Moines-Lob - Des Moines IA,1111 6th Ave.,Des Moines,IA,50314 +-93.644938,41.543994,Fleur & Stanton - Des Moines IA (D),4503 Fleur Drive,Des Moines,IA,50321 +-93.767914,41.647182,Super Target Urbandale ST-1791 - Urbandale IA,11148 Plum Dr,Urbandale,IA,50322 +-93.736528,41.65546,"Urbandale-86th & Northpark Dr. - Johnston IA (D, W)",5250 86th Street,Johnston,IA,50322 +-93.6995,41.629635,Target Des Moines North T-2041 - Urbandale IA,5901 Douglas Ave.,Urbandale,IA,50322 +-93.770982,41.614153,"111th & Hickman - Clive IA (D, W)",11084 Hickman RD,Clive,IA,50325 +-93.71856,41.596588,"73rd & Buffalo - Clive IA (D, W)",1040 73rd Street,Clive,IA,50325 +-94.157017,42.506273,Target Fort Dodge T-878 - Fort Dodge IA,2910 1st Ave. S.,Fort Dodge,IA,50501 +-92.46828,42.508834,"Cedar Falls-University Ave. - Cedar Falls IA (D, W)",6421 University Ave.,Cedar Falls,IA,50613 +-92.4636,42.4737,Target Cedar Falls - T-2526 - Cedar Falls IA,214 Viking Plaza Drive,Cedar Falls,IA,50613 +-92.32726,42.460021,"Waterloo-Flammang & Crossroads - Waterloo IA (D, W)",1501 Flammang Drive,Waterloo,IA,50702 +-92.325553,42.464484,Super Target Waterloo ST-1792 - Waterloo IA,1501 E. San Marnan Dr,Waterloo,IA,50702 +-96.417842,42.519908,Hy Vee Foods-Sioux City #1 - Sioux City IA,2827 Hamilton Blvd.,Sioux City,IA,51104 +-96.345274,42.44663,"Sioux City - Lakeport & Hwy. 20 - Sioux City IA (D, W)",4735 Sergeant Rd.,Sioux City,IA,51106 +-95.8542,41.2353,Bass Pro Shops - Council Bluffs - Council Bluffs IA,2911 27th Ave.,Council Bluffs,IA,51501 +-95.864494,41.2256,Target Council Bluffs T-2454 - Council Bluffs IA,3804 Metro Dr,Council Bluffs,IA,51503 +-95.825522,41.243385,Hy-Vee Foods-Council Bluffs #2 - Council Bluffs IA,1745 Madison Avenue,Council Bluffs,IA,51503 +-90.75671,42.5118,Hy Vee Foods-Dubuque #2 - Dubuque IA,2395 NW Arterian,Dubuque,IA,52002 +-90.664866,42.488647,Hy-Vee Foods-Dubuque #3 - Dubuque IA,400 S. Locust St.,Dubuque,IA,52003 +-91.5343,41.6582,Iowa City-Burlington & Clinton - Iowa City IA (W),228 S. Clinton Street,Iowa City,IA,52240 +-91.5901,41.6794,"Coralville-2nd St. & 18th - Coralville IA (D, W)",1831 2nd St.,Coralville,IA,52241 +-91.57301,42.03607,Hy Vee Foods-Marion - Marion IA,3600 US-151 E.,Marion,IA,52302 +-91.683073,42.034762,Cedar Rapids-Blairs Ferry & I-380 - Cedar Rapids IA (D),2615 Blairs Ferry Rd. NE,Cedar Rapids,IA,52402 +-91.652166,42.035233,Super Target Cedar Rapids ST-1768 - Cedar Rapids IA,1030 Blaires Ferry Rd. NE,Cedar Rapids,IA,52402 +-91.623017,42.024928,"Cedar Rapids-1st & Collins - Cedar Rapids IA (D, W)",4804 First Avenue NE,Cedar Rapids,IA,52402 +-91.717534,41.957262,"Cedar Rapids-Williams & Wilson - Cedar Rapids IA (D, W)",3500 Williams Blvd. SW,Cedar Rapids,IA,52404 +-91.716111,41.944648,Super Target Cedar Rapids S. ST-1771 - Cedar Rapids IA,3400 Edgewood Rd.,Cedar Rapids,IA,52404 +-91.701169,42.032355,Hy Vee Foods-Cedar Rapids #7 - Cedar Rapids IA,5050 Edgewood Rd. NE,Cedar Rapids,IA,52411 +-91.169983,40.822393,Target Burlington T-860 - West Burlington IA,525 S. Gear Ave.,West Burlington,IA,52655 +-90.520136,41.539296,Bettendorf-Middle & Kimberly - Bettendorf IA (W),888 Middle Road,Bettendorf,IA,52722 +-90.483756,41.552352,Hy-Vee Bettendorf - Bettendorf IA,2900 Devils Glen Road,Bettendorf,IA,52722 +-90.558898,41.556988,Davenport-Kimberly & Bridge - Davenport IA (D),1050 E. Kimberly Rd.,Davenport,IA,52807 +-90.53024,41.574866,"Davenport - 53rd & Elmore - Davenport IA (D, W)",3120 E. 53rd Street,Davenport,IA,52807 +-90.52795,41.575399,Davenport - Elmore Ave,5225 Elmore Ave.,Davenport,IA,52807 +-88.12424,43.03721,Brookfield Fashion Center - Brookfield WI (W),17000A W. Blue Mound Rd.,Brookfield,WI,53005 +-88.109,43.0323,Brookfield Square - Brookfield WI,95 North Moorland Road,Brookfield,WI,53005 +-88.104451,43.035898,Brookfield-Bluemound & Moorland - Brookfield WI (W),15445 W. Bluemound Rd.,Brookfield,WI,53005 +-88.3766,43.0508,Target Delafield T-864 - Delafield WI,2553 Sun Valley Dr,Delafield,WI,53018 +-88.37134,43.054129,Delafield-Nagawaukee - Delafield WI (W),2940 Golf Rd.,Delafield,WI,53018 +-88.11427,43.221024,"Germantown-Mequon Rd. & Squire - Germantown WI (D, W)",N112W16510 Mequon Rd.,Germantown,WI,53022 +-87.925394,43.321102,"Grafton-Hwy 60 & Port Washington - Grafton WI (D, W)",1249 Port Washington Rd.,Grafton,WI,53024 +-88.13235,43.19155,Target Menomonee Falls T-863 - Menomonee Falls WI,N95 W. 17707 Shady Lane,Menomonee Falls,WI,53051 +-88.10831,43.1549,Menomonee Falls - Rivercrest Center - Menomonee Falls WI (W),176W 9360N Rivercrest Drive,Menomonee Falls,WI,53051 +-88.108,43.1541,"Menomonee Falls-Appleton & Menomone - Menomonee Falls WI (D, W)",N 84 W. 15825 Appleton Ave.,Menomonee Falls,WI,53051 +-88.465904,43.0618,Oconomowoc-Pabst Farms - Oconomowoc WI (W),1370 Pabst Farms Circle,Oconomowoc,WI,53066 +-88.2303,43.0828,Pewaukee Capitol Drive - Pewaukee WI (W),1390 Capitol Drive,Pewaukee,WI,53072 +-87.754524,43.717735,"Sheboygan-Washington & Greenwing - Sheboygan WI (D, W)",3550 Washington Ave. Frontage Rd.,Sheboygan,WI,53081 +-87.722974,43.755655,"Sheboygan North-Erie & 14th - Sheboygan WI (D, W)",1026 North 14th Street,Sheboygan,WI,53081 +-87.76347,43.717365,Target Kohler T-1880 - Sheboygan WI,4085 State Hwy. 28,Sheboygan,WI,53085 +-88.22951,43.1413,"Sussex-Silver Spring & Hwy. 164 - Sussex WI (D, W)",N65 W24950 Main Street,Sussex,WI,53089 +-87.924264,43.218325,Mequon - Mequon WI (W),11025 N. Port Washington Road,Mequon,WI,53092 +-88.168546,43.397626,"West Bend-Main & Paradise - West Bend WI (D, W)",443 W. Paradise Dr.,West Bend,WI,53095 +-87.9862,43.287395,Cedarburg-Washington & Lincoln - Cedarburg WI (W),W61 N306 Washington Ave.,Cedarburg,WI,53102 +-88.62257,42.627834,"Delevan-I-43 & Hwy. 50 - Delevan WI (D, W)",1741 E. Geneva St.,Delevan,WI,53115 +-88.008338,42.947572,Southridge Mall - Greendale WI (W),5300 S. 76th Street,Greendale,WI,53129 +-88.048271,42.939366,"Hales Corners-108th & West Forest - Hales Corners WI (D, W)",5790 S. 108th Street,Hales Corners,WI,53130 +-88.039018,42.90502,Target Franklin T-2388 - Franklin WI,7800 S. Lovers Lane Rd.,Franklin,WI,53132 +-87.949726,42.925767,"Franklin-27th St. & Sycamore - Franklin WI (D, W)",6537 S. 27th Street,Franklin,WI,53132 +-87.825092,42.621726,Carthage College Clausen Center - Kenosha WI,2001 Alford Park Dr,Kenosha,WI,53140 +-87.94875,42.56652,"Kenosha Woodman's Market - Kenosha WI (D, W)",7410 118th Ave.,Kenosha,WI,53142 +-87.8558,42.566344,"Kenosha-Hwy 50 & 39th - Kenosha WI (D, W)",3910 75th Street,Kenosha,WI,53142 +-88.433344,42.592062,Lake Geneva - Lake Geneva WI (W),685 Main Street,Lake Geneva,WI,53147 +-88.4131,42.5883,Target Lake Geneva T-2348 - Lake Geneva WI,660 N. Edwards Blvd.,Lake Geneva,WI,53147 +-88.108629,42.976264,New Berlin-Moorland & National - New Berlin WI (W),15600 National Avenue,New Berlin,WI,53151 +-87.942596,42.872468,"Oak Creek-I-94 & Ryan Rd. - Oak Creek WI (D, W)",2015 W. Ryan Rd.,Oak Creek,WI,53154 +-87.912634,42.880633,Target Oak Creek T-1925 - Oak Creek WI,8989 S. Howell Ave.,Oak Creek,WI,53154 +-87.912219,42.882544,"Oak Creek-Howell & Puetz - Oak Creek WI (D, W)",8880 South Howell Ave.,Oak Creek,WI,53154 +-87.927628,42.565609,Target Kenosha T-2251 - Pleasant Prairie WI,9777 76th St.,Pleasant Prairie,WI,53158 +-87.927237,42.565859,"Kenosha-Hwy 50 & 104th - Pleasant Prairie WI (D, W)",9740 76th St.,Pleasant Prairie,WI,53158 +-88.16816,43.035744,Waukesha Hwy. 18 - Brookfield WI (W),21481 Highway 18,Brookfield,WI,53186 +-88.241499,43.024852,"Waukesha-Delafield & Moreland - Waukesha WI (D, W)",801 W. Moreland Blvd.,Waukesha,WI,53188 +-88.260479,42.988411,Target Waukesha South - T-2546 - Waukesha WI,1250 Sunset Dr,Waukesha,WI,53189 +-87.910083,43.042902,Red Arrow - Water & State - Milwaukee WI (W),920 North Water Street,Milwaukee,WI,53202 +-87.90836,43.03432,Third Ward - Milwaukee WI (W),326 N. Water St.,Milwaukee,WI,53202 +-87.905422,43.048184,East Pointe Commons - Milwaukee WI (W),544 East Ogden Avenue,Milwaukee,WI,53202 +-87.892761,43.05277,Brady & Farwell - Milwaukee WI (W),1677 N. Farwell Street,Milwaukee,WI,53202 +-87.918202,43.038112,Hilton Milwaukee - Milwaukee WI,509 W. Wisconsin Ave.,Milwaukee,WI,53203 +-87.911562,42.982767,"I-94 & Holt - Milwaukee WI (D, W)",140 W. Holt Ave.,Milwaukee,WI,53207 +-87.909612,42.94786,MKE GMIA Main Term Food Ct - Milwaukee WI (A),5300 South Howell Ave.,Milwaukee,WI,53207 +-87.883274,42.988467,"Oklahoma & KK - Milwaukee WI (D, W)",2110 East Oklahoma Ave.,Milwaukee,WI,53207 +-87.887406,43.093132,Shorewood-Oakland & Olive - Milwaukee WI (W),4170 N. Oakland Avenue,Milwaukee,WI,53211 +-87.878105,43.064806,Webster & Downer - Milwaukee WI (W),2551 N. Downer Ave.,Milwaukee,WI,53212 +-88.006972,43.050144,Wauwatosa - Wauwatosa WI (W),1417 N. Wauwatosa Avenue,Wauwatosa,WI,53213 +-88.046588,43.014803,"Hwy. 100 - West Allis - West Allis WI (D, W)",1500 South 108th Street,West Allis,WI,53214 +-87.971458,43.02835,West Milwaukee-Miller Park Way - Milwaukee WI (W),1130 Miller Park Way,Milwaukee,WI,53214 +-87.967749,43.015942,Target West Milwaukee T-1895 - West Milwaukee WI,1501 Miller Pkwy,West Milwaukee,WI,53214 +-87.949175,42.988474,27th & Oklahoma - Milwaukee WI (W),2735 W. Oklahoma Ave.,Milwaukee,WI,53215 +-87.983546,43.09032,"Midtown Center-56th & Capitol (UCO) - Milwaukee WI (D, W)",5610 W. Capitol Dr.,Milwaukee,WI,53216 +-87.911201,43.176667,Fox Pt-Brown Deer & Port Washington - Fox Point WI (W),383 W. Brown Deer Rd.,Fox Point,WI,53217 +-87.906693,43.11854,Whitefish Bay - Whitefish Bay WI (W),302 E. Silver Spring Drive,Whitefish Bay,WI,53217 +-88.008451,42.959282,Kopp's Center - Greenfield WI (W),4741 South 76th Street,Greenfield,WI,53220 +-88.066152,43.08786,Target Wauwatosa T-2586 - Wauwatosa WI,3900 N. 124th St.,Wauwatosa,WI,53222 +-88.065991,43.088806,124th & Capitol - Wauwatosa WI (W),12345 West Capitol Drive,Wauwatosa,WI,53222 +-88.047927,43.068401,"Mayfair Rd. & Center - Wauwatosa WI (D, W)",2751 N. Mayfair Rd.,Wauwatosa,WI,53222 +-88.002155,43.148274,"76th & Good Hope - Milwaukee WI (D, W)",7335 W. Good Hope Rd.,Milwaukee,WI,53223 +-88.047332,43.03173,"Wauwatosa-Mayfair & I-94 - Wauwatosa WI (D, W)",151 N. Mayfair Road,Wauwatosa,WI,53226 +-88.045678,43.064432,Mayfair Mall-North & Mayfair - Wauwatosa WI (W),2500 N. Mayfair Road,Wauwatosa,WI,53226 +-88.043,43.0477,Macy's-Wauwatosa - Wauwatosa WI,1 Mayfair Mall N.,Wauwatosa,WI,53226 +-88.047197,42.991287,"West Allis-108th & National - West Allis WI (D, W)",2939 S. 108th St.,West Allis,WI,53227 +-88.046842,42.997094,Target West Allis T-2199 - Milwaukee WI,2600 S. 108th St.,Milwaukee,WI,53227 +-87.933715,43.039207,Marquette - Milwaukee WI (W),1610 W. Wisconsin Ave.,Milwaukee,WI,53233 +-87.853155,42.698737,Racine-Hwy 11 & Hwy. 31 - Racine WI (D),2805 South Greenbay Rd.,Racine,WI,53406 +-87.848478,42.719084,"Racine-Washington &Greenbay - Racine WI (D, W)",5658 Washington Ave.,Racine,WI,53406 +-88.985803,42.523544,"Beloit-Milwaukee & Branigan - Beloit WI (D, W)",2791 Milwaukee Rd.,Beloit,WI,53511 +-88.999532,42.720972,Target Janesville T-809 - Janesville WI,2017 Humes Rd.,Janesville,WI,53545 +-88.980568,42.717607,"Janesville-Hwy 14 - Janesville WI (D, W)",2980 Deerfield Drive,Janesville,WI,53546 +-89.527383,43.090184,Madison/Greenway Station - Middleton WI (W),8310 Greenway Blvd.,Middleton,WI,53562 +-89.497939,43.106673,Middleton-Century & Frank Lloyd Wri - Middleton WI (W),6709 Frank Lloyd Wright Ave.,Middleton,WI,53562 +-89.27609,43.1925,Target Sun Prairie T-2491 - Sun Prairie WI,660 South Grand Avenue,Sun Prairie,WI,53590 +-89.396873,43.074836,661 State Street - Madison WI (W),661 State Street,Madison,WI,53703 +-89.383079,43.073896,Capitol Square - Madison - Madison WI (W),1 E. Main St.,Madison,WI,53703 +-89.309786,43.121001,Target Madison T-1069 - Madison WI,4301 Lien Rd.,Madison,WI,53704 +-89.448015,43.075207,"Madison-3515 University Ave. - Madison WI (D, W)",3515 University Avenue,Madison,WI,53705 +-89.429729,43.017724,"Fitchburg - Fitchburg WI (D, W)",2981 Triverton Pike Dr.,Fitchburg,WI,53711 +-89.324568,43.047402,Madison - Monona/Broadway - Monona WI (W),6512 Monona Drive,Monona,WI,53716 +-89.52708,43.06251,Target Madison T-1060 - Madison WI,201 Junction Rd.,Madison,WI,53717 +-89.501285,43.0596,Madison Gammon Place - Madison WI (W),434 Gammon Place,Madison,WI,53719 +-89.491203,43.015681,Super Target Fitchburg ST-2106 - Fitchburg WI,6321 McKee Rd.,Fitchburg,WI,53719 +-89.7863,43.6744,"Wisconsin Dells-SWC Hwy. 12/Hwy 13 - Wisconsin Dells WI (D, W)",320 Highway 13,Wisconsin Dells,WI,53965 +-92.720443,44.959641,"Hudson-I-94 & Carmichael - Hudson WI (D, W)",1001 Pearson Dr.,Hudson,WI,54016 +-87.69733,44.079327,"Manitowoc-Calumet & Dewey - Manitowoc WI (D, W)",4430 Calumet Ave.,Manitowoc,WI,54220 +-87.969706,44.484267,"Green Bay - Main & Auto Plaza - Green Bay WI (D, W)",2235 Main Street,Green Bay,WI,54302 +-88.0634,44.523817,Greenbay-Military & Mason - Green Bay WI (D),615 S. Military Ave.,Green Bay,WI,54303 +-88.075647,44.470839,"Green Bay-Oneida St. & Ramada Way - Ashwaubenon WI (D, W)",2883 S. Oneida St.,Ashwaubenon,WI,54304 +-89.649549,44.914862,"Wausau-Rib Mtn Dr. & Hwy. 51 - Wausau WI (D, W)",4728 Rib Mountain Drive,Wausau,WI,54401 +-89.656119,44.960668,"Wausau - Wausau WI (D, W)",306 S. 17th Avenue,Wausau,WI,54401 +-88.085977,44.451372,"De Pere-Main & 10th - De Pere WI (D, W)",1006 Main Avenue,De Pere,WI,54415 +-90.162096,44.683104,Target Marshfield T-805 - Marshfield WI,1708 N. Central Ave.,Marshfield,WI,54449 +-89.5125,44.4968,"Plover - CR HH & I-39 - Plover WI (D, W)",120 Crossroads Dr,Plover,WI,54467 +-89.574879,44.533961,"Stevens Point-Division St. & Maria - Stevens Point WI (D, W)",101 Division Street,Stevens Point,WI,54481 +-91.17112,43.8828,"Onalaska-State Hwy. 16 & Pralle Cent - Onalaska WI (D, W)",9432 State Hwy. 16,Onalaska,WI,54650 +-91.53688,44.810024,"Eau Claire-Clairmont & Stein Blvd. - Eau Claire WI (D, W)",953 West Clairemont Avenue,Eau Claire,WI,54701 +-91.466249,44.798508,"Eau Claire-Hastings & Kirk - Eau Claire WI (D, W)",2016 S. Hastings Way,Eau Claire,WI,54701 +-91.458839,44.861131,Super Target Eau Claire ST-1774 - Eau Claire WI,3649 S. Hastings Way,Eau Claire,WI,54701 +-88.540628,44.039424,"Oshkosh-Murdock & Jackson - Oshkosh WI (D, W)",240 W. Murdock St.,Oshkosh,WI,54901 +-88.581807,44.006237,"Oshkosh-Hwy 41 & 9th - Oshkosh WI (D, W)",1150A Koeller St.,Oshkosh,WI,54902 +-88.57953,43.998573,Target Oshkosh T-807 - Oshkosh WI,1900 S. Koeller St.,Oshkosh,WI,54902 +-88.405933,44.2618,Appleton-College Avenue - Appleton WI (W),101 East College Avenue,Appleton,WI,54911 +-88.469495,44.273002,"Appleton West-Wisconsin Ave. - Appleton WI (D, W)",4339 W. Wisconsin Avenue,Appleton,WI,54913 +-88.413105,44.287214,"Appleton-Northland & Richmond - Appleton WI (D, W)",631 W. Northland Ave.,Appleton,WI,54914 +-88.366602,44.243923,"Appleton-Hwy 441 & Calumet - Appleton WI (D, W)",3420 E. Calumet Ave.,Appleton,WI,54915 +-88.479709,43.783818,"Fond du Lac-Johnson & Pioneer - Fond du Lac WI (D, W)",187 N. Pioneer Rd.,Fond du Lac,WI,54935 +-88.48636,43.790184,Target Fond Du Lac T-808 - Fond Du Lac WI,485 N. Rolling Meadow Dr,Fond Du Lac,WI,54937 +-88.483995,44.177397,"Neenah-Lake St. & Winn - Neenah WI (D, W)",1015 W. Winneconne Ave.,Neenah,WI,54956 +-93.112045,45.183453,Super Target Lino Lakes ST-1448 - Lino Lakes MN,749 Apollo Dr,Lino Lakes,MN,55014 +-92.957117,44.833105,"Cottage Grove-E. Point Douglas - Cottage Grove MN (D, W)",7190 East Point Douglas Rd. S.,Cottage Grove,MN,55016 +-93.009948,45.283434,"Forest Lake - Forest Lake MN (D, W)",2009 W. Broadway Ave.,Forest Lake,MN,55025 +-93.29252,44.684616,Super Target Lakeville ST-1484 - Lakeville MN,18275 Kenrick Ave.,Lakeville,MN,55044 +-93.279333,44.713592,"Lakeville-Kenrick Commons - Lakeville MN (D, W)",16227 Kenrick Ave.,Lakeville,MN,55044 +-93.27802,44.681069,"Lakeville - I-35 & Kenwood Trail - Lakeville MN (D, W)",17740 Kenwood Trail,Lakeville,MN,55044 +-93.240264,44.084372,"Owatonna-Selby & Bridge - Owatonna MN (D, W)",641 West Bridge St.,Owatonna,MN,55060 +-93.126837,44.733327,"Rosemount - CR 42 & Hwy. 3 - Rosemount MN (D, W)",14903 South Robert Trail,Rosemount,MN,55068 +-92.845396,45.034753,"Oak Park Hghts-Hwy 36 & Hwy. 5 - Oak Park Heights MN (D, W)",5980 Neal Ave. N.,Oak Park Heights,MN,55082 +-92.844725,45.032622,Kowalski-Stillwater/Oak Park - Stillwater MN,5801 Neal Ave. N.,Stillwater,MN,55082 +-92.839782,45.036604,Target Stillwater T-931 - Stillwater MN,2021 Market Dr,Stillwater,MN,55082 +-93.094323,44.947427,Macys - St. Paul - St. Paul MN,411 Cedar St.,St Paul,MN,55101 +-93.095715,44.945668,Lawson Commons - St. Paul MN (W),380 St. Peter St.,St Paul,MN,55102 +-93.167012,44.946544,Snelling & Selby - St. Paul MN (W),171 Snelling Avenue N.,St Paul,MN,55104 +-93.14483,44.939978,St. Paul-Grand Ave. & Oxford St. - St. Paul MN (W),1062 Grand Ave.,St. Paul,MN,55105 +-93.017219,45.074606,Kowalski-White Bear Lake #4727 - White Bear Lake MN,4391 S. Lake Ave.,White Bear Lake,MN,55110 +-93.21087,44.88339,MSP G 20 - Minneapolis MN (A),4300 Glumack Drive,Minneapolis,MN,55111 +-93.21087,44.88339,MSP North Ternimal - St. Paul MN (A),4300 Glumack Drive,St Paul,MN,55111 +-93.210464,44.88389,MSP Minn Gold Concourse Gate 16 - St. Paul MN (A),4300 Gulmack Drive,St Paul,MN,55111 +-93.196144,44.878768,MSP Minn Green Concourse Gate 69 - St. Paul MN (A),4300 Gulmack Drive,St Paul,MN,55111 +-93.196144,44.87877,MSP Minn D6 Baggage Claim Area - St. Paul MN (A),4300 Gulmack Drive,St Paul,MN,55111 +-93.177604,45.011775,Fairdale Shoppes - Roseville MN (W),2305 Fairview Avenue,Roseville,MN,55113 +-93.17713,45.010727,"Roseville-Hwy 36 & Fairview - Roseville MN (D, W)",1820 Hwy. 36,Roseville,MN,55113 +-93.164095,45.0076,Super Target Roseville ST-2101 - Roseville MN,1515 W. County Rd. B,Roseville,MN,55113 +-93.188175,44.917514,Ford Street - St. Paul MN (W),2078 FORD PARKWAY,St Paul,MN,55116 +-93.080569,44.893208,Super Target Saint Paul ST-2046 - Saint Paul MN,1750 S. Robert St.,Saint Paul,MN,55118 +-93.08041,44.902233,"West St. Paul-Robert & Thompson - West St. Paul MN (D, W)",1470 Roberts St. South,West St. Paul,MN,55118 +-93.211416,44.790087,"Eagan-Cliff Rd. - Eagan MN (D, W)",2040 Cliff Rd.,Eagan,MN,55122 +-93.184289,44.80445,Kowalski's - Eagan - Eagan MN,1646 Diffley Road,Eagan,MN,55122 +-93.166745,44.832553,Eagan Station - Eagan MN (W),3450 Pilot Knob Road,Eagan,MN,55122 +-93.217575,44.731702,Super Target Apple Valley ST-643 - Apple Valley MN,15150 Cedar Ave.,Apple Valley,MN,55124 +-93.176814,44.727638,Super Target Apple Vly South ST-239 - Apple Valley MN,15560 Pilot Knob Rd.,Apple Valley,MN,55124 +-92.962226,44.924768,Woodbury Village - Woodbury MN (W),7230 Valley Creek Rd.,Woodbury,MN,55125 +-92.936586,44.937675,Tamarack Village-Woodbury - Woodbury MN (W),8362 Tamarack Village,Woodbury,MN,55125 +-92.93264,44.918213,Kowalski - Woodbury - Woodbury MN,8505 Valley Creek Rd.,Woodbury,MN,55125 +-93.145041,45.056467,Super Target Shoreview ST-619 - Shoreview MN,3800 N. Lexington Ave.,Shoreview,MN,55126 +-92.9763,44.9941,Target St. Paul/Oakdale T-2135 - St. Paul MN,7900 32nd St. N.,St. Paul,MN,55128 +-93.316254,45.219445,Target Andover T-2025 - Andover MN,2000 Bonker Lake Blvd. NW,Andover,MN,55304 +-93.447147,44.970647,Target Minnetonka/Hopkins T-0100 - Minnetonka MN,13201 Ridgedale Dr,Minnetonka,MN,55305 +-93.419426,44.933167,"Hopkins-Hwy 7 & Hopkins Cross Roads - Hopkins MN (D, W)",1505 State Hwy. 7,Hopkins,MN,55305 +-93.860245,45.168514,Target Buffalo T-861 - Buffalo MN,1300 State Hwy. 55 NE,Buffalo,MN,55313 +-93.391125,45.172258,Super Target Champlin ST-1831 - Champlin MN,11960 Business Park Blvd. N.,Champlin,MN,55316 +-93.531373,44.857595,Chanhassen - Chanhassen MN (W),420 Pond Promenade,Chanhassen,MN,55317 +-93.601616,44.828469,Super Target Chaska ST-1352 - Chaska MN,111 Pioneer Trail,Chaska,MN,55318 +-93.5784,45.2759,Super Target Otsego ST-2456 - Otsego MN,15800 87th St. NE,Otsego,MN,55330 +-93.264869,44.738668,Super Target Burnsville ST-2340 - Burnsville MN,810 County Rd. 42W,Burnsville,MN,55337 +-93.5328,45.0448,Target Medina T-2223 - Medina MN,300 Clydesdale Rd.,Medina,MN,55340 +-93.443581,44.865296,"Eden Prairie - Prairieview Center - Eden Prairie MN (D, W)",930 Prairie Center Drive,Eden Prairie,MN,55344 +-93.429014,44.851163,Eden Prairie - Eden Prairie MN (W),582 PRAIRIE CENTER DR.,Eden Prairie,MN,55344 +-93.400759,44.836834,Anderson Lakes Parkway - Eden Prairie MN (W),9639 Anderson Lakes Parkway,Eden Prairie,MN,55344 +-93.50326,44.915944,Super Target Minnetonka ST-1356 - Minnetonka MN,4802 County Road 101,Minnetonka,MN,55345 +-93.79849,45.2981,Super Target Monticello T-2180 - Monticello MN,1447 East 7th St.,Monticello,MN,55362 +-93.4502,45.1029,Super Target Maple Grove T-2193 - Maple Grove MN,15300 Grove Circle N.,Maple Grove,MN,55369 +-93.447,45.1176,"Maple Grove - Maple Grove MN (D, W)",7979 Wedgewood Lane,Maple Grove,MN,55369 +-93.555559,45.199522,Super Target Rogers ST-1456 - Rogers MN,21615 S. Diamond Lake Rd.,Rogers,MN,55374 +-93.37942,44.750862,"Savage-CR 42 & Hwy. 13 - Savage MN (D, W)",13945 Hwy. 13 Frontage Rd.,Savage,MN,55378 +-93.3587,44.7563,Super Target Savage ST-1833 - Savage MN,14333 Hwy. 13,Savage,MN,55378 +-93.7738,44.8498,Target Waconia T-2449 - Waconia MN,875 E. Main St.,Waconia,MN,55387 +-93.50938,44.968674,Lake Street - Wayzata - Wayzata MN (W),740 East Lake Street,Wayzata,MN,55391 +-93.155544,44.954723,SuperTarget - St. Paul T-2229 - St. Paul MN,1300 University Ave.,St. Paul,MN,55401 +-93.27322,44.974677,9th & Nicollet - Minneapolis MN (W),81 South 9th Street,Minneapolis,MN,55402 +-93.272328,44.975629,IDS Center - Minneapolis MN (W),80 South 8th Street,Minneapolis,MN,55402 +-93.2709,44.9757,Macys - Minneapolis - Minneapolis MN,700 On the Mall,Minneapolis,MN,55402 +-93.252315,44.989654,City Center Doppio - Minneapolis MN (W),33 South 6th Street,Minneapolis,MN,55402 +-93.251776,44.989419,One Financial Plaza - Minneapolis MN (W),120 S. 6th Street,Minneapolis,MN,55402 +-93.27697,44.973558,Double Tree Hotel Minneapolis - Minneapolis MN,1101 LaSalle Ave.,Minneapolis,MN,55403 +-93.273947,44.978718,Block E. - Minneapolis MN (W),600 Hennepin Ave. South,Minneapolis,MN,55403 +-93.27233,44.97677,Target Minneapolis T-1375 - Minneapolis MN,900 Nicollet Mall,Minneapolis,MN,55403 +-93.277842,44.962672,Nicollet & Franklin - Minneapolis MN (W),2000 Nicollet Ave.,Minneapolis,MN,55404 +-93.292849,44.960789,22nd & Hennepin - Minneapolis MN (W),2216 Hennepin Avenue,Minneapolis,MN,55405 +-93.234703,44.948452,Target Minneapolis T-52 - Minneapolis MN,2500 E. Lake St.,Minneapolis,MN,55406 +-93.227897,45.004301,Target Minneapolis T-1095 - Minneapolis MN,1650 New Brighton Blvd.,Minneapolis,MN,55413 +-93.275947,44.987006,University of Minnesota - Minneapolis MN (W),615 Washington Ave.,Minneapolis,MN,55414 +-93.233476,44.973634,U of MN - Coffman Union Bldg - Minneapolis MN,218 Como Avenue SE,Minneapolis,MN,55414 +-93.335,44.9439,St. Louis Park - Excelsior Commons - St. Louis Park MN (W),3850 Grand Way,St. Louis Park,MN,55416 +-93.332714,44.948373,"St. Louis Park-Minnetonka & Hwy. 7 - St. Louis Park MN (D, W)",4201 Minnetonka Blvd.,St. Louis Park,MN,55416 +-93.288202,44.905771,54th & Lyndale - Minneapolis MN (W),5351 Lyndale Ave. South,Minneapolis,MN,55419 +-93.289284,44.826372,98th & Lyndale-Bloomington - Bloomington MN (W),704-708 West 98th Street,Bloomington,MN,55420 +-93.289676,45.051107,Super Target Mpls/Fridley ST-2200 - Minneapolis MN,755 53rd Ave. NE,Minneapolis,MN,55421 +-93.288478,44.865321,Richfield-Lyndale & 77th - Richfield MN (W),7610 Lyndale Ave. South,Richfield,MN,55423 +-93.248131,44.88364,Super Target Richfield ST-2300 - Richfield MN,6445 Richfield Pkwy,Richfield,MN,55423 +-93.3305,44.912,50th & France - Edina MN (W),3939 W. 50th St.,Edina,MN,55424 +-93.24351,44.854855,Mall of America II - Bloomington MN (W),276 West Market Street,Bloomington,MN,55425 +-93.24029,44.854263,Mall of America - Bloomington MN (W),164 E. Broadway,Bloomington,MN,55425 +-93.420557,44.932951,Super Target Knollwood ST-2189 - St. Louis Park MN,8900 SR-7,St Louis Park,MN,55426 +-93.378845,44.983303,Golden Valley - Golden Valley MN (W),7802 Olson Memorial Highway,Golden Valley,MN,55427 +-93.376767,45.09101,Target Brooklyn Park T-693 - Brooklyn Park MN,7535 W. Broadway Ave.,Brooklyn Park,MN,55428 +-93.36501,45.053596,Target Crystal T-3 - Minneapolis MN,5537 W. Broadway Ave.,Minneapolis,MN,55428 +-93.323648,45.055251,"Brooklyn Ctr-Brooklyn Blvd. & 55th - Brooklyn Center MN (D, W)",5512 Brooklyn Blvd.,Brooklyn Center,MN,55429 +-93.313804,44.861423,Target Bloomington T-5 - Bloomington MN,2555 W. 79th St.,Bloomington,MN,55431 +-93.3045,44.8601,Southtown - Bloomington MN (W),7805 Southtown Center,Bloomington,MN,55431 +-93.267078,45.1265,Target Northtown T-820 - Coon Rapids MN,8600 Springbrook Dr. NW,Coon Rapids,MN,55433 +-93.3233,44.8753,Super Target Edina ST-2313 - Edina MN,7000 York Ave. S.,Edina,MN,55435 +-93.3232,44.8782,Galleria Mall - Edina MN (W),3215 Galleria,Edina,MN,55435 +-93.353088,44.911761,"Edina - Hwy. 100 & Vernon - Edina MN (D, W)",5121 Gus Young Lane,Edina,MN,55436 +-93.448083,45.00909,Plymouth - Hwy. 55 & NW Blvd. - Plymouth MN (D),2661 Campus Dr.,Plymouth,MN,55441 +-93.449055,45.032183,Super Target Plymouth ST-664 - Plymouth MN,4175 Vinewood Lane N.,Plymouth,MN,55442 +-93.492147,45.004676,Plymouth Station - Plymouth MN (W),16725 C.R. 24,Plymouth,MN,55447 +-93.276047,45.149698,"Coon Rapids-Foley & Hwy. 10 - Coon Rapids MN (D, W)",9920 Foley Blvd.,Coon Rapids,MN,55448 +-93.232314,45.168082,Super Target Blaine ST-1832 - Blaine MN,1500 109th Ave. NE,Blaine,MN,55449 +-93.289704,45.004771,25th & Riverside - Minneapolis MN (W),815 25th Ave.,Minneapolis,MN,55454 +-93.245194,44.970199,U of MN/Minneapolis - W. Campus - Minneapolis MN,321 19th Ave. S.,Minneapolis,MN,55455 +-93.528792,47.209929,Target Grand Rapids T-904 - Grand Rapids MN,2140 S. Pokegama Ave.,Grand Rapids,MN,55744 +-92.548134,47.512137,Target Virginia T-847 - Virginia MN,1001 13th St. S.,Virginia,MN,55792 +-92.10235,46.783767,Duluth - Superior & 4th - Duluth MN (W),331 W. Superior St.,Duluth,MN,55802 +-92.155522,46.805208,Duluth-Miller Hill - Duluth MN (W),1405 Miller Trunk Highway,Duluth,MN,55811 +-92.501526,44.063263,Super Target Rochester ST-1351 - Rochester MN,3827 Marketplace Dr. NW,Rochester,MN,55901 +-92.46586,44.023309,Kahler Grand Hotel - Rochester MN,20 SW Second Ave.,Rochester,MN,55902 +-92.462899,44.022053,Doubletree Hotel Rochester Downtown - Rochester MN,150 S. Broadway,Rochester,MN,55904 +-92.4256,43.9842,Super Target Rochester South ST-232 - Rochester MN,4611 Maine Ave. SE,Rochester,MN,55904 +-91.622188,44.032835,Target Winona T-1096 - Winona MN,860 Mankato Ave.,Winona,MN,55987 +-93.947698,44.170405,Hy Vee Foods-Mankato #2 - Mankato MN,2010 Adams St.,Mankato,MN,56001 +-94.215494,45.549693,"Waite Park - 2nd St. S. & Waite Park - Waite Park MN (D, W)",124 2nd Street South,Waite Park,MN,56301 +-94.144869,45.566697,Target St. Cloud East T-930 - St. Cloud MN,120 Lincoln Ave. SE,St Cloud,MN,56304 +-94.245,46.37034,"Baxter-Hwy 371 & Woida Rd. - Baxter MN (D, W)",15091 Edgewood Dr,Baxter,MN,56425 +-96.767785,46.849577,"Moorhead-I-94 & 8th - Moorhead MN (D, W)",906 Holiday Drive,Moorhead,MN,56560 +-96.768314,44.297116,Hy Vee Foods-Brookings - Brookings SD,790 22nd Ave. S.,Brookings,SD,57006 +-97.397195,42.890751,Hy Vee Foods-Yankton - Yankton SD,2100 N. Broadway Ave.,Yankton,SD,57078 +-96.688619,43.546729,Hy Vee Foods-Sioux Falls #5 - Sioux Falls SD,3020 E. 10th St.,Sioux Falls,SD,57103 +-96.731253,43.54326,Sioux Falls-13th & Minnesota - Sioux Falls SD (D),418 South Minnesota Avenue,Sioux Falls,SD,57104 +-96.731257,43.517578,Hy-Vee Sioux Falls #3 - Sioux Falls SD,3000 South Minnesota Avenue,Sioux Falls,SD,57105 +-96.790878,43.528572,Hy Vee Foods-Sioux Falls #4 - Sioux Falls SD,1900 S. Marion Rd.,Sioux Falls,SD,57106 +-96.772297,43.514829,Sioux Falls-41st & Louise - Sioux Falls SD (D),3601 West 41st Street,Sioux Falls,SD,57106 +-96.77117,43.508509,Hy Vee Foods-Sioux Falls #2 - Sioux Falls SD,4101 S. Louise Ave.,Sioux Falls,SD,57106 +-96.811238,43.65383,Sioux Falls-57th & Western - Sioux Falls SD (D),4808 S. Western Ave.,Sioux Falls,SD,57108 +-96.671435,43.531878,Hy Vee Foods-Sioux Falls #1 - Sioux Falls SD,1601 S. Sycamore Dr,Sioux Falls,SD,57110 +-96.652,43.54,Target Sioux Falls East T-2540 - Sioux Falls SD,1021 Highline Place,Sioux Falls,SD,57110 +-97.06802,44.889881,Watertown-Hwy 212 & 29th - Watertown SD (D),903 29th St. SE,Watertown,SD,57201 +-98.441283,45.459102,Target Aberdeen T-848 - Aberdeen SD,3316 SE 6th Ave.,Aberdeen,SD,57401 +-103.251937,44.079879,Safeway-Rapid City SD #1554 - Rapid City SD,730 Mountain View Rd.,Rapid City,SD,57701 +-103.232379,44.068357,Rapid City-Mt. Rushmore & St. Patri - Rapid City SD (D),1819 Mt Rushmore Road,Rapid City,SD,57701 +-103.213295,44.084,Target Rapid City T-2457 - Rapid City SD,1415 Elgin St.,Rapid City,SD,57701 +-103.210802,44.106416,Rapid City-Rushmore Mall - Rapid City SD,2200 North Maple Avenue,Rapid City,SD,57701 +-103.247432,44.081525,"Rapid City-1705 W. Main - Rapid City SD (D, W)",1705 West Main Street,Rapid City,SD,57702 +-103.859793,44.499539,Safeway-Spearfish #583 - Spearfish SD,1606 North Ave.,Spearfish,SD,57783 +-96.867712,46.861354,West Fargo-13th Ave. - Fargo ND (D),4900 13th Avenue SW,Fargo,ND,58103 +-96.852355,46.860542,Target Fargo T-61 - Fargo ND,4202 13th Ave. S.,Fargo,ND,58103 +-96.82109,46.83194,"Fargo-32nd & 25th - Fargo ND (D, W)",2511 Kirsten Lane South,Fargo,ND,58103 +-97.078538,47.889356,Super Target Grand Forks ST-1783 - Grand Forks ND,3601 32nd Ave. S.,Grand Forks,ND,58201 +-97.078178,47.889355,"Grand Forks Marketplace - Grand Forks ND (D, W)",3551 32 Ave. South,Grand Forks,ND,58201 +-97.044982,47.910009,"Grand Forks-13th & Washington - Grand Forks ND (D, W)",1217 S. Wasington St.,Grand Forks,ND,58201 +-100.773402,46.828854,Bismarck-I-94 & State - Bismarck ND (D),2124 N. 12th Street,Bismarck,ND,58501 +-100.810272,46.832976,Bismarck-Century & Clydesdale - Bismarck ND (D),1229 Century Ave.,Bismarck,ND,58501 +-100.787824,46.800093,"Bismarck-600 S. 3rd Street - Bismarck ND (D, W)",600 S. 3rd Street,Bismarck,ND,58504 +-100.781753,46.799913,Target Bismarck T-2194 - Bismarck ND,600 S. 7th St.,Bismarck,ND,58504 +-101.296216,48.232551,Minot-Broadway & Burdick - Minot ND (D),220 Burdick Expressway West,Minot,ND,58701 +-108.50355,45.782347,Crowne Plaza Billings Hotel - Billings MT,27 North 27th Street,Billings,MT,59101 +-108.582762,45.77074,Target Billings T-171 - Billings MT,2601 Central Ave.,Billings,MT,59102 +-108.576242,45.763723,"Billings-Rimrock Mall - Billings MT (D, W)",316 South 24th Street West,Billings,MT,59102 +-111.290834,47.493794,"Holiday Village-Great Falls-MT - Great Falls MT (D, W)",1000 10th Avenue South,Great Falls,MT,59405 +-112.036518,46.592646,Helena-Main & Neil - Helena MT (W),608 N. Last Chance Gulch St.,Helena,MT,59601 +-112.020356,46.589924,Safeway-Helena #1486 - Helena MT,611 N. Montana St.,Helena,MT,59601 +-112.018165,46.591378,"Helena-1300 Prospect - Helena MT (D, W)",1300 Prospect Ave.,Helena,MT,59601 +-112.508223,45.978692,McKinley & Harrison Butte - Butte MT (D),3201 Harrison Ave.,Butte,MT,59701 +-112.628298,45.223793,Safeway - DILLON #1581 - Dillon MT,570 N. Montana St.,Dillon,MT,59725 +-114.041787,46.834751,Safeway-Missoula #1573 - Missoula MT,3801 S. Reserve St.,Missoula,MT,59801 +-114.039585,46.847747,"2510 Reserve Street- Missoula - Missoula MT (D, W)",2510 S. Reserve Street,Missoula,MT,59801 +-114.039245,46.887709,Target Missoula T-885 - Missoula MT,2420 Reserve St.,Missoula,MT,59802 +-114.032934,46.914374,"Missoula-1-90 and Reserve - Missoula MT (D, W)",5260 Grant Creek Road,Missoula,MT,59808 +-114.121767,47.689134,Safeway-Polson #1646 - Polson MT,146 S. Shore Rte,Polson,MT,59860 +-114.298673,48.17568,Hwy. 93 & Reserve Dr. Kalispell - Kalispell MT (D),2356 US Hwy. 93 N.,Kalispell,MT,59901 +-114.546607,48.512284,Safeway - Whitefish #2106 - Whitefish MT,6580 US-93 S.,Whitefish,MT,59937 +-87.978622,42.109728,Dominicks - Arlington Heights #1080 - Arlington Heights IL,325 Palatine Road,Arlington Heights,IL,60004 +-88.022559,42.08934,Sheraton Chicago Northwest - Arlington Heights IL,3400 W. Euclid Ave.,Arlington Heights,IL,60005 +-88.015554,42.088485,Arlington Heights-Euclid & Salt Cre - Arlington Heights IL (D),2964 W. Euclid,Arlington Heights,IL,60005 +-87.981721,42.082678,Downtown Arlington Heights - Arlington Heights IL (W),33 South Evergreen Avenue,Arlington Heights,IL,60005 +-87.980532,42.10896,Arlington Heights - Arlington Heights IL (W),1802 N. Arlington Heights Rd.,Arlington Heights,IL,60006 +-88.005219,42.002038,Dominick's-Elk Grove Village #3159 - Elk Grove Twp. IL,980 Elk Grove Town Ctr,Elk Grove Twp,IL,60007 +-87.960194,42.011499,Elk Grove Village - Elk Grove Village IL (W),934 Busse Highway,Elk Grove Village,IL,60007 +-87.995523,42.051379,"Rolling Meadows-Golf & Algonquin - Rolling Meadows IL (D, W)",1414 Golf Road,Rolling Meadows,IL,60008 +-88.135808,42.153451,Barrington II - Barrington IL (W),125 South Hough Street,Barrington,IL,60010 +-88.128727,42.153573,"Barrington-Rte 14 & Lake Cook Road - Barrington IL (D, W)",120 S. Northwest Hwy.,Barrington,IL,60010 +-88.346144,42.248196,Dominicks - Crystal Lake #1692 - Crystal Lake IL,5340 Route 14,Crystal Lake,IL,60014 +-88.3307,42.2263,"Crystal Lake-Rte 31 & Rakow Rd. - Crystal Lake IL (D, W)",1125 S. Route 31,Crystal Lake,IL,60014 +-88.318163,42.242159,Crystal Lake Downtown - Crystal Lake IL (W),40 North Williams Street,Crystal Lake,IL,60014 +-87.861888,42.198121,Dominick's-Bannockburn #3109 - Bannockburn IL,2503 Waukegan Road,Bannockburn,IL,60015 +-87.845057,42.167202,Deerfield - Deerfield IL (W),675 Deerfield Rd.,Deerfield,IL,60015 +-87.836634,42.154438,Deerbrook Mall - Deerfield IL (W),100 S. Waukegan Rd.,Deerfield,IL,60015 +-87.92087,42.016999,Des Plaines Travel Oasis Space J - Des Plaines IL,1960 S. Mount Prospect Rd.,Des Plaines,IL,60018 +-87.894393,42.027388,"Des Plaines-Oakton & Lee - Des Plaines IL (D, W)",1427 Lee St.,Des Plaines,IL,60018 +-87.884266,42.005207,"Des Plaines-2655-2695 Mannheim Rd. - Des Plaines IL (D, W)",2655 Mannheim Rd.,Des Plaines,IL,60018 +-87.863017,41.992439,Rosemont - River & Higgins - Rosemont IL (W),9500 Higgins Rd.,Rosemont,IL,60018 +-88.221634,42.433938,Dominick's-Fox Lake #1958 - Fox Lake IL,1258 S. RT 12,Fox Lake,IL,60020 +-88.169168,42.363263,"Volo-Rte 12 & Hartigan Rd. - Volo IL (D, W)",2745 Hartigan Rd.,Volo,IL,60020 +-88.212311,42.194488,Dominick's-Fox River Grove #1720 - Fox River Grove IL,800 NW Highway,Fox River Grove,IL,60021 +-87.759373,42.134276,Glencoe - Glencoe IL (W),347 Park Ave.,Glencoe,IL,60022 +-87.849031,42.103922,Plaza del Prado - Glenview IL (W),2745 Pfingston Rd.,Glenview,IL,60025 +-87.82298,42.08795,Lake & Patriot - The Glen - Glenview IL (W),1895 Tower Drive,Glenview,IL,60025 +-87.818575,42.080325,Dominick's-Glenview #1719 - Glenview IL,1340 Patriot Blvd.,Glenview,IL,60025 +-87.798353,42.08024,Lake & Waukegan - Glenview IL (W),1401-C Waukegan Road,Glenview,IL,60025 +-88.072578,42.344457,"Hainesville-Rte 120 & Hainesville - Hainesville IL (D, W)",60 E. Belvidere Rd.,Hainesville,IL,60030 +-88.053391,42.340753,"Grayslake-Rte 120 & Rte 83 - Grayslake IL (D, W)",775 Belvidere Rd.,Grayslake,IL,60030 +-87.971225,42.384077,Dominicks-Gurnee #1151 - Gurnee IL,6655 Grand Ave.,Gurnee,IL,60031 +-87.965634,42.383651,Target Gurnee T-865 - Gurnee IL,6601 W. Grand Ave.,Gurnee,IL,60031 +-87.958217,42.388219,Gurnee Mills Mall - Gurnee IL (W),6170 W. Grand Ave.,Gurnee,IL,60031 +-87.956226,42.383512,Grand Ave. - Gurnee - Gurnee IL (W),7105 Grand Avenue,Gurnee,IL,60031 +-87.940288,42.379397,"Gurnee-Grand & Dilleys - Gurnee IL (D, W)",1500 Nations Drive,Gurnee,IL,60031 +-87.824407,42.171006,"Deerfield Rd./Highland Park D/T - Highland Park IL (D, W)",1833 Deerfield Rd.,Highland Park,IL,60035 +-87.802808,42.185751,Renaissance Place - Highland Park IL (W),1849 Greenbay Rd.,Highland Park,IL,60035 +-87.800053,42.185382,Port Clinton - Highland Park IL (W),600 Central Ave.,Highland Park,IL,60035 +-87.820162,42.217012,"Highwood-Sheridan Rd. & Old Elm - Highwood IL (D, W)",950 Sheridan RD,Highwood,IL,60040 +-87.878494,42.279641,Lake Bluff - Lake Bluff IL (W),203 Waukegan Rd.,Lake Bluff,IL,60044 +-87.874222,42.22461,Lake Forest-Waukegan Rd. & Everett - Lake Forest IL,840 S. Waukegan Rd.,Lake Forest,IL,60045 +-87.84134,42.252769,Lake Forest - Lake Forest IL (W),722 Bank Lane,Lake Forest,IL,60045 +-88.109912,42.191441,Dominick's-Lake Zurich #2129 - Lake Zurich IL,345 S. Rand Road,Lake Zurich,IL,60047 +-88.109311,42.19382,Lake Zurich - Rand Rd. Relocation - Lake Zurich IL (D),195 South Rand Rd.,Lake Zurich,IL,60047 +-88.092574,42.184463,"Lake Zurich - D/T - Lake Zurich IL (D, W)",775 S. Rand Rd.,Lake Zurich,IL,60047 +-87.952207,42.277509,Libertyville - Libertyville IL (W),542 N. Milwaukee Ave.,Libertyville,IL,60048 +-87.902348,42.311163,"Libertyville-Milwaukee & Rte 137 - Libertyville IL (D, W)",141 E. Buckley Rd.,Libertyville,IL,60048 +-88.267262,42.363567,McHenry-Rte 31 & Blake - McHenry IL (W),2210 Richmond Rd.,McHenry,IL,60050 +-87.794937,42.040783,Prairie View Plaza - Morton Grove IL (W),6763 Dempster Ave.,Morton Grove,IL,60053 +-87.938744,42.064793,Mt. Prospect - Mount Prospect IL (W),100 West Northwest Highway,Mount Prospect,IL,60056 +-87.937554,42.081279,Rand Rd. - Mt. Prospect - Mount Prospect IL (W),1 W. Rand Rd.,Mount Prospect,IL,60056 +-88.044353,42.284474,Super Target Mundelein ST-1912 - Mundelein IL,3100 W. Rt 60,Mundelein,IL,60060 +-88.021609,42.275744,Mundelein - Long Medows Commons - Mundelein IL (W),1174 W. Maple St.,Mundelein,IL,60060 +-88.020921,42.275613,Dominick's #1140 - Mundelein - Mundelein IL,1150 W. Maple,Mundelein,IL,60060 +-88.0013,42.2401,"Mundelein-Route 60 & 83 - Mundelein IL (D, W)",1050 N. Rte 83,Mundelein,IL,60060 +-87.964625,42.218556,Vernon Hills-Rte 45 & 21 - Vernon Hills IL (D),1240 E. Route 45,Vernon Hills,IL,60061 +-87.957672,42.240368,"Vernon Hills-Rte 60 & Aspen Dr. - Vernon Hills IL (D, W)",271 Townline Rd.,Vernon Hills,IL,60061 +-87.956945,42.239016,Super Target Vernon Hills ST-833 - Vernon Hills IL,313 E. Townline Rd.,Vernon Hills,IL,60061 +-87.938837,42.222148,Vernon Hills-Milwaukee & Greggs Pkw - Vernon Hills IL (D),1640 N. Milwaukee Ave.,Vernon Hills,IL,60061 +-87.881364,42.138445,Dominicks - Northbrook #1052 - Northbrook IL,4125 Dundee Road,Northbrook,IL,60062 +-87.8446,42.1271,"Northbrook-Willow & Waukegan - Northbrook IL (D, W)",1036 Willow Rd.,Northbrook,IL,60062 +-87.827413,42.131412,Northbrook Meadows - Northbrook IL (W),1931 Cherry Lane,Northbrook,IL,60062 +-87.817284,42.15194,Northbrook Court - Northbrook IL (W),1290 Northbrook Court Mall,Northbrook,IL,60062 +-87.798984,42.148759,Village Square at Northbrook - Northbrook IL (W),243 North Skokie Blvd.,Northbrook,IL,60062 +-87.791539,42.136949,Northbrook-Skokie & Dundee - Northbrook IL (D),820 Skokie Blvd.,Northbrook,IL,60062 +-88.047099,42.11305,Palatine Metra Station - Palatine IL (W),137 West Wood Street,Palatine,IL,60067 +-88.042681,42.15695,Rand & Dundee - Palatine IL (W),1590 Rand Road,Palatine,IL,60067 +-87.836635,41.987447,Dominick's-Parkridge #1032 - Park Ridge IL,1900 South Cumberland Ave.,Park Ridge,IL,60068 +-87.828261,42.009649,Northwest Hwy. - Park Ridge - Park Ridge IL (W),100 S. NORTHWEST HWY,Park Ridge,IL,60068 +-87.828157,41.985437,Downtown Parkridge - Park Ridge IL (W),15 S. PROSPECT AVE.,Park Ridge,IL,60068 +-87.927699,42.180202,City Park - Lincolnshire - Lincolnshire IL (W),275 PARKWAY DR.,Lincolnshire,IL,60069 +-88.063,42.380016,Round Lake Beach-Rte 83 & Hook - Round Lake Beach IL (D),1904 IL Route 83,Round Lake Beach,IL,60073 +-87.73098,42.040919,Skokie-Dempster & Karlov - Skokie IL (W),4116 Dempster St.,Skokie,IL,60076 +-87.751747,42.040738,"Skokie Swift-Dempster & Niles - Skokie IL (D, W)",5001 W. Dempster St.,Skokie,IL,60077 +-87.751187,42.061766,Old Orchard Mall - Skokie IL (W),4999 Old Orchard Center,Skokie,IL,60077 +-87.902712,42.341535,"Waukegan-Waukegan & Lakehurst - Waukegan IL (D, W)",780 Lakehurst Rd.,Waukegan,IL,60085 +-87.882925,42.370958,Waukegan-Grand & Green Bay Rd. - Waukegan IL (D),3300 W. Grand Avenue,Waukegan,IL,60085 +-87.983817,42.154632,Dominick's - Buffalo Grove #1112 - Buffalo Grove IL,1160 W. Lake Cook,Buffalo Grove,IL,60089 +-87.964807,42.196078,Dominick's-Buffalo Grove #1136 - Buffalo Grove IL,450 Half Day Road,Buffalo Grove,IL,60089 +-87.959406,42.1549,Buffalo Grove - Buffalo Grove IL (W),55 N. McHenry Road,Buffalo Grove,IL,60089 +-87.9653,42.1827,"Aptakisic - Buffalo Grove IL (D, W)",1665 N. Buffalo Grove Rd.,Buffalo Grove,IL,60089 +-87.958636,42.139698,Dominick's - Buffalo Grove #1964 - Buffalo Grove IL,770 South Buffalo Grove Road,Buffalo Grove,IL,60090 +-87.910581,42.144319,"Wheeling-Milwaukee & Strong - Wheeling IL (D, W)",310 N. Milwaukee Ave.,Wheeling,IL,60090 +-87.762743,42.079854,"Wilmette-Lake & Laramie - Wilmette IL (D, W)",3520 Lake Ave.,Wilmette,IL,60091 +-87.755845,42.079517,Edens Plaza - Wilmette IL (W),3232 LAKE AVE.,Wilmette,IL,60091 +-87.7103,42.077495,Wilmette-Green Bay & Washington - Wilmette IL,739 Green Bay Road,Wilmette,IL,60091 +-87.700285,42.086416,Wilmette Reloc - Wilmette IL,1515 North Sheridan,Wilmette,IL,60091 +-87.771618,42.100505,Dominick's-Northfield #3062 - Northfield IL,1822 Willow Road,Northfield,IL,60093 +-87.770147,42.101664,Northfield - Northfield IL (W),1799 Willow Rd.,Northfield,IL,60093 +-87.735176,42.106526,Winnetka - Winnetka IL (W),566 Chestnut St.,Winnetka,IL,60093 +-88.447903,42.314023,Woodstock Square - Woodstock IL (W),129 Van Buren Street,Woodstock,IL,60098 +-88.026515,41.948291,"Addison-Lake & Rohlwing - Addison IL (D, W)",1590 W. Lake St.,Addison,IL,60101 +-88.338688,42.162237,Super Target Algonquin ST-1801 - Algonquin IL,750 Randall Rd.,Algonquin,IL,60102 +-87.702697,42.068347,Dominick's-Green Bay Road #1137 - Evanston IL,2748 Green Bay Rd.,Evanston,IL,60102 +-88.315922,42.176711,"Algonquin IL - Algonquin IL (D, W)",1536 West Algonquin Road,Algonquin,IL,60102 +-88.207268,41.946971,"Bartlett - Bartlett IL (D, W)",1681 South IL Route 59,Bartlett,IL,60103 +-88.203964,41.974832,Dominicks-Bartlett #1697 - Bartlett IL,1040 W. Stearns Rd.,Bartlett,IL,60103 +-87.938335,41.932684,Dominick's - Bensenville #1995 - Bensenville IL,1145 S. York,Bensenville,IL,60106 +-88.202973,42.016686,Super Target Streamwood ST-1950 - Streamwood IL,1001 S. Sutton Rd.,Streamwood,IL,60107 +-88.202879,42.022015,"Streamwood-Rte 59 & Irving Park - Streamwood IL (D, W)",647 S. Sutton Rd.,Streamwood,IL,60107 +-88.12053,41.950734,Bloomingdale - Bloomingdale IL (W),148 Gary Ave.,Bloomingdale,IL,60108 +-88.120521,41.951839,Dominick's - Bloomingdale #3139 - Bloomingdale IL,144 S. Gary,Bloomingdale,IL,60108 +-88.332129,42.125418,Dominick's-Sleepy Hollow #1790 - Carpentersville IL,2411 Randall Rd.,Carpentersville,IL,60110 +-88.771816,41.93106,"DeKalb-Rte 38 & Annie Glidden Rd. - Dekalb IL (D, W)",1015 W. Lincoln Hwy.,Dekalb,IL,60115 +-88.73412,41.912865,DeKalb Travel Oasis Space D - DeKalb IL,2700 N. Crego Rd.,DeKalb,IL,60115 +-88.722041,41.956055,Target DeKalb T-2559 - DeKalb IL,2555 Sycamore Rd.,DeKalb,IL,60115 +-88.721789,41.956485,"Dekalb-Sycamore Rd. - Dekalb IL (D, W)",2577 Sycamore Road,Dekalb,IL,60115 +-88.28682,42.09926,"West Dundee-Rte. 31 Rte 31 & Rte 72 - West Dundee IL (D, W)",203 N. 8th Street,West Dundee,IL,60118 +-88.335382,42.124464,"Elgin-Randall Rd. & Technology - Elgin IL (D, W)",2480 N. Randall Rd.,Elgin,IL,60120 +-88.341548,42.0257,Target Elgin T-834 - Elgin IL,300 S. Randall Rd.,Elgin,IL,60123 +-87.96691,41.905514,"Elmhurst-North & Route 83 - Elmhurst IL (D, W)",684 W. North Ave.,Elmhurst,IL,60126 +-87.962813,41.894378,Dominick's-Elmhurst #1768 - Elmhurst IL,215 S. Route 83,Elmhurst,IL,60126 +-87.939645,41.960374,Elmhurst - Elmhurst IL (W),164 N. York Rd.,Elmhurst,IL,60126 +-87.806094,41.879649,Forest Park-Madison & Elgin - Forest Park IL (W),7231 Madison Ave.,Forest Park,IL,60130 +-88.149104,41.989258,"Hanover Park-Lake & Barrington - Hanover Park IL (D, W)",1788 Lake St.,Hanover Park,IL,60133 +-88.328,41.8833,Geneva Commons - Geneva IL (W),1302 Commons Drive,Geneva,IL,60134 +-88.307601,41.888156,Geneva - Geneva IL (W),229 W. State St.,Geneva,IL,60134 +-88.340361,41.873375,"Randall Rd. - Geneva - Geneva IL (D, W)",1441 S. Randall Road,Geneva,IL,60134 +-88.065875,41.876828,Glen Ellyn - Glen Ellyn IL (W),536 Crescent Blvd.,Glen Ellyn,IL,60137 +-88.057809,41.859376,"Glen Ellyn-Roosevelt & Nicoll - Glen Ellyn IL (D, W)",691 Roosevelt Rd.,Glen Ellyn,IL,60137 +-88.048846,41.859527,Dominick's - Glen Ellyn #2145 - Glen Ellyn IL,880 Roosevelt Rd.,Glen Ellyn,IL,60137 +-88.099232,41.937528,Super Target Glendale Hghts ST-836 - Glendale Heights IL,175 W. Army Trail Rd.,Glendale Heights,IL,60139 +-88.07491,41.932376,Glendale Heights - Glendale Heights IL (W),345 Army Trail Rd.,Glendale Heights,IL,60139 +-88.01262,41.970325,Itasca-Irving Park & Walnut - Itasca IL (W),102 E. Irving Park Rd.,Itasca,IL,60143 +-88.020046,41.85999,Roosevelt Rd. - Lombard - Lombard IL (D),201 West Roosevelt Road,Lombard,IL,60148 +-88.009872,41.90558,"Lombard-North & Grace - Lombard IL (D, W)",332 E. North Ave.,Lombard,IL,60148 +-88.007222,41.839722,Target Lombard T-1024 - Lombard IL,60 York Town Ctr,Lombard,IL,60148 +-87.99508,41.843156,Lombard-Butterfield & Meyers - Lombard IL (W),2370 Fountain Square Drive,Lombard,IL,60148 +-87.900673,41.834404,Cafe Viaggio-Westchester #107 - Westchester IL,3020 S. Wolf Rd.,Westchester,IL,60154 +-87.631394,41.908131,Eurest - Westbrook Corp Center - Westchester IL,3 Westbrook Corporate Center Suite L150,Westchester,IL,60154 +-87.852885,41.851663,"Broadview-Cermak & 17th - Broadview IL (D, W)",2842 17th Ave.,Broadview,IL,60155 +-87.85191,41.853237,Super Target Broadview T-2081 - Broadview IL,800 Broadview Village Sq,Broadview,IL,60155 +-88.335583,42.182862,"Randall Rd. - Lake In The Hills - Lake In The Hills IL (D, W)",343 N. Randall Rd.,Lake In The Hills,IL,60156 +-87.888712,41.907522,"Melrose Park-North & 25th - Melrose Park IL (D, W)",2517 W. North Ave.,Melrose Park,IL,60160 +-87.882866,41.867756,Target Hillside T-2490 - Hillside IL,130 S. Mannheim Rd.,Hillside,IL,60162 +-88.14471,42.06174,"Hoffman Estates-Barrington & Hassle - Hoffman Estates IL (D, W)",2071 Barrington Rd.,Hoffman Estates,IL,60169 +-87.835964,41.935725,Dominick's-River Grove #1727 - River Grove IL,3141 Thatcher Road,River Grove,IL,60171 +-88.072,41.9823,"Roselle-Roselle Rd. & Main St. - Roselle IL (D, W)",25 Main St.,Roselle,IL,60172 +-88.047907,42.039316,Target Schaumburg T-880 - Schaumburg IL,1235 East Higgins Rd.,Schaumburg,IL,60173 +-88.04643,42.037887,Dominicks-Higgins Rd. #1162 - Schaumburg IL,1293 E. Higgins Rd.,Schaumburg,IL,60173 +-88.039093,42.051121,Schaumburg - Schaumburg IL (W),1560 E. Golf,Schaumburg,IL,60173 +-88.038468,42.048743,Woodfield Shopping Center Kiosk - Schaumburg IL (W),5 Woodfield Mall,Schaumburg,IL,60173 +-88.038438,42.048765,Macy's-Schaumburg - Schaumburg IL,1 Woodfield Mall,Schaumburg,IL,60173 +-88.034606,42.040417,Streets of Woodfield - Schaumburg IL (W),601 North Martingale Road,Schaumburg,IL,60173 +-88.339807,41.9037,Meijer-St Charles #182 - St. Charles IL,855 S. Randall Rd.,St Charles,IL,60174 +-88.338978,41.912741,"St. Charles-Randall & North - St. Charles IL (D, W)",1990 W. Main St.,St Charles,IL,60174 +-88.337135,41.90072,Dominick's-St Charles #4104 - St. Charles IL,2063 St. Route 38,St Charles,IL,60174 +-88.312089,41.913389,St. Charles - St. Charles IL (W),101 E. Main St.,St Charles,IL,60174 +-88.263663,41.921146,Super Target St. Charles ST-1323 - St. Charles IL,3885 E. Main St.,St Charles,IL,60174 +-87.880736,41.950847,O'Hare Travel Oasis Space K2 - Schiller Park IL,4100 Denley Rd.,Schiller Park,IL,60176 +-87.87116,41.955468,"Schiller Park-Irving Park & 25th - Schiller Park IL (D, W)",9801 Irving Park Rd.,Schiller Park,IL,60176 +-88.34075,41.97661,Super Target South Elgin ST-1896 - South Elgin IL,530 Randall Rd.,South Elgin,IL,60177 +-88.339171,42.024653,"South Elgin-Randall & McDonald - South Elgin IL (D, W)",338 Randall Road,South Elgin,IL,60177 +-87.982434,41.861601,"Villa Park-Roosevelt & Ardmore - Villa Park IL (D, W)",198 W. Roosevelt Rd.,Villa Park,IL,60181 +-88.208891,41.915314,"West Chicago-Rte 64 & 59 - West Chicago IL (D, W)",200 W. North Ave.,West Chicago,IL,60185 +-88.142554,41.859214,Target Wheaton T-838 - Wheaton IL,601 S. County Farm Rd.,Wheaton,IL,60187 +-88.107505,41.888113,"Wheaton-Geneva & Main - Wheaton IL (D, W)",115 W. Geneva Rd.,Wheaton,IL,60187 +-88.106473,41.865098,Downtown Wheaton - Wheaton IL (W),101 E. Front Street,Wheaton,IL,60187 +-88.100104,41.832798,Dominick's-Wheaton #2126 - Wheaton IL,91 Danada Square East,Wheaton,IL,60187 +-88.102537,41.902076,"Carol Stream-North & Schmale - Carol Stream IL (D, W)",596 E. North Ave.,Carol Stream,IL,60188 +-88.101063,41.917893,Dominicks - Carol Stream #1149 - Carol Stream IL,560 Schmale rd,Carol Stream,IL,60188 +-88.099247,41.833156,Wheaton Town Center - Wheaton IL (W),31 Town Square,Wheaton,IL,60189 +-88.1928,42.0665,Target Hoffman Estates T-2122 - Hoffman Estates IL,2800 N. Sutton Road,Hoffman Estates,IL,60192 +-88.092413,42.048517,"Schaumburg-Golf & Higgins - Schaumburg IL (D, W)",505 W. Golf Road,Schaumburg,IL,60193 +-88.089082,41.98772,Schaumburg-Irving Park & Wise - Schaumburg IL (D),1837 Irving Park Rd.,Schaumburg,IL,60193 +-88.153979,42.029607,Super Target West Schaumburg ST-835 - Schaumburg IL,2621 W. Schaumburg Rd.,Schaumburg,IL,60194 +-88.144496,42.052039,St. Alexius MC-Hoffman Estates-Lobb - Hoffman Estates IL,1555 N. Barrington Rd.,Hoffman Estates,IL,60194 +-88.144492,42.067019,Schaumburg & Barrington - Schaumburg IL (W),181 N. Barrington Road,Schaumburg,IL,60194 +-88.143687,42.046496,Dominick's-Hoffman Estates #1122 - Hoffman Estates IL,2575 West Golf Road,Hoffman Estates,IL,60194 +-88.113581,42.11055,Hoffman Estates Illinois - Hoffman Estates IL (W),1407 Palatine Road,Hoffman Estates,IL,60195 +-87.726876,42.064396,"Evanston-Crawford & Central - Evanston IL (D, W)",3330 Central St.,Evanston,IL,60201 +-87.702731,42.064281,Central - Evanston IL (W),2114 Central St.,Evanston,IL,60201 +-87.681818,42.049868,Evanston - Evanston IL (W),1726B Sherman St.,Evanston,IL,60201 +-87.707366,42.033166,Evanston-Main & McCormick - Evanston IL (W),2438 Main Street,Evanston,IL,60202 +-87.704444,42.019244,Target Evanston T-927 - Evanston IL,2209 W. Howard St.,Evanston,IL,60202 +-87.680211,42.04111,Dempster & Chicago - Evanston IL (W),528 Dempster St.,Evanston,IL,60202 +-87.678843,42.034022,Chicago & Main - Evanston IL (W),519 Main Street,Evanston,IL,60202 +-87.6731,42.0571,Northwestern University-Norris Univ - Evanston IL,1999 S. Campus Dr,Evanston,IL,60208 +-87.802476,41.88867,Oak Park - Oak Park IL (W),1018 Lake St.,Oak Park,IL,60301 +-87.793371,41.888588,Oak Park-Lake & Euclid - Oak Park IL (W),711 Lake St.,Oak Park,IL,60301 +-87.782045,41.888213,Dominick's-Oak Park #1124 - Oak Park IL,259 Lake St.,Oak Park,IL,60302 +-87.805352,41.888014,River Forest-Lake & Harlem - River Forest IL (W),7201 Lake Street,River Forest,IL,60305 +-88.19879,41.524194,Target Shorewood T-1881 - Shorewood IL,111 Brook Forest Ave.,Shorewood,IL,60404 +-87.558839,41.599143,"Calumet City-159th & Torrence - Calumet City IL (D, W)",1249 Torrence Ave.,Calumet City,IL,60409 +-87.849434,41.509995,Frankfort - Frankfort IL (W),605-607 N. LaGrange Road,Frankfort,IL,60423 +-87.84912,41.506336,Dominick's - Frankfort #1154 - Frankfort IL,19965 S. Lagrange Rd.,Frankfort,IL,60423 +-87.681811,41.556304,Homewood Cherry Creek - Homewood IL (W),18322 South Governors Highway,Homewood,IL,60430 +-87.667646,41.561328,"Homewood IL - Homewood IL (D, W)",18051 Harwood Ave.,Homewood,IL,60430 +-87.636437,41.565661,"Homewood-Halsted & Ridge - Homewood IL (D, W)",17860 Halsted,Homewood,IL,60430 +-88.2031,41.6054,"Joliet-Route 59 & Theodore - Joliet IL (D, W)",1536 SR-59,Joliet,IL,60431 +-88.19927,41.537773,Dominick's-Shorewood #1894 - Shorewood IL,950 Brookforest Ave.,Shorewood,IL,60431 +-88.084455,41.526833,Harrah's Joliet - Joliet - Lobby - Joliet IL,151 N. Joliet St.,Joliet,IL,60432 +-88.145925,41.52206,"Joliet-Jefferson & Caterpillar - Joliet IL (D, W)",2518 Jefferson St.,Joliet,IL,60436 +-87.999716,41.654168,"Lemont-127th & State - Lemont IL (D, W)",1251 State St.,Lemont,IL,60439 +-88.124879,41.701819,Naper & Boughton - Bolingbrook IL (W),216 N. Weber Rd.,Bolingbrook,IL,60440 +-88.121768,41.70474,Target Bolingbrook T-867 - Bolingbrook IL,1188 W. Boughton Rd.,Bolingbrook,IL,60440 +-88.0738,41.7022,Macy's-Bollingbrook IL - Bolingbrook IL,645 E. Broughton RD,Bolingbrook,IL,60440 +-88.068809,41.68813,"Bolingbrook-Rte 53 & Remington - Bolingbrook IL (D, W)",395 S. Bolingbrook Drive,Bolingbrook,IL,60440 +-88.042317,41.721163,"Bolingbrook-Boughton & Janes - Bolingbrook IL (D, W)",699 East Boughton Rd.,Bolingbrook,IL,60440 +-88.020155,41.597911,"Lockport - 159th & Farrell - Lockport IL (D, W)",16527 W. 159th St.,Lockport,IL,60441 +-87.931435,41.634815,Dominick's - Lockport #3142 - Lockport IL,14200 S. Bell Rd.,Lockport,IL,60441 +-87.718704,41.5205,Target Matteson T-2263 - Matteson IL,4647 Promenade Way,Matteson,IL,60443 +-87.730649,41.506231,Matteson IL - Matteson IL (W),4726 W. Lincoln Highway,Matteson,IL,60443 +-87.738236,41.653414,Crestwood Commons - Crestwood IL (W),13225 S. Cicero Ave.,Crestwood,IL,60445 +-88.12561,41.680091,Target Romeoville T-2293 - Romeoville IL,349 S. Weber Rd.,Romeoville,IL,60446 +-88.1247,41.642635,Dominicks-Romeoville #1691 - Romeoville IL,435 N. Weber Rd.,Romeoville,IL,60446 +-88.1247,41.642651,"Romeoville-Weber &Airport - Romeoville IL (D, W)",377 S. Weber Rd.,Romeoville,IL,60446 +-87.938985,41.512503,"New Lenox-Rte. 30 & Joliet Hwy. - New Lenox IL (D, W)",2550 E. LIncoln Hwy.,New Lenox,IL,60451 +-87.920979,41.507298,Target New Lenox T-2028 - New Lenox IL,2370 E. Lincoln Hwy.,New Lenox,IL,60451 +-87.789217,41.719442,Oak Lawn-95th & Oak Park - Oak Lawn IL (D),6768 W. 95th Street,Oak Lawn,IL,60453 +-87.750349,41.719912,Oak Lawn - Oak Lawn IL (W),5135 West 95th Street,Oak Lawn,IL,60453 +-87.740119,41.705414,"Oak Lawn-103rd & Cicero - Oak Lawn IL (D, W)",10301 S. Cicero,Oak Lawn,IL,60453 +-87.7242,41.720435,Target Oak Lawn T-2087 - Oak Lawn IL,4120 W. 95th St.,Oak Lawn,IL,60453 +-87.799251,41.746461,"Burbank-79th & Harlem - Burbank IL (D, W)",8021 S. Harlem Ave.,Burbank,IL,60459 +-87.741548,41.751341,"Burbank-78th & Cicero - Burbank IL (D, W)",7788 S. Cicero Ave.,Burbank,IL,60459 +-87.850741,41.617065,Orland Square - Orland Park IL (W),288 Orland Square,Orland Park,IL,60462 +-87.848095,41.602531,Target Orland Park T-842 - Orland Park IL,15850 S. 94th Ave.,Orland Park,IL,60462 +-87.8335,41.6227,"Orland Park-143rd & LaGrange - Orland Park IL (D, W)",14209 Lagrange,Orland Park,IL,60462 +-87.85281,41.602847,Orland Park - Orland Park IL (W),15833 S. La Grange Road,Orland Park,IL,60462 +-87.797203,41.675318,Palos Heights-119th & Harlem - Palos Heights IL (D),7202 West 119th Street,Palos Heights,IL,60463 +-87.777521,41.660972,Dominick's - Palos Heights #1051 - Palos Heights IL,6401 West 127th St.,Palos Heights,IL,60463 +-87.84775,41.66457,Palos Park - Palos Park IL (W),13000 SOUTH LAGRANGE RD.,Palos Park,IL,60464 +-87.895219,41.60057,Orland Park-159th & Wolf-Redraw - Orland Park IL (D),11359 W. 159th St.,Orland Park,IL,60467 +-87.8895,41.5959,"Orland Park-179th & Wolf - Orland Park IL (D, W)",18092 S. Wolf Rd.,Orland Park,IL,60467 +-87.5976,41.5973,Lincoln Travel Oasis Space K2 - South Holland IL,175 Tristate Tollway,South Holland,IL,60473 +-87.797048,41.543886,Super Target Tinley Park ST-2035 - Tinley Park IL,7300 191st St.,Tinley Park,IL,60477 +-87.791933,41.602234,Tinley Park-159th & Harlem - Tinley Park IL (D),15901 S. Harlem Ave.,Tinley Park,IL,60477 +-88.125923,41.690398,"Bolingbrook-Weber & Lilly Cache - Bolingbrook IL (D, W)",261 S. Weber Rd.,Bolingbrook,IL,60490 +-88.27948,41.81456,"Aurora-Kirk & Butterfield - Aurora IL (D, W)",2948 Kirk Rd.,Aurora,IL,60502 +-88.252442,41.73748,"Aurora-Ogden & Eola - Aurora IL (D, W)",2575 Ogden Ave.,Aurora,IL,60504 +-88.250305,41.7571,Chicago Premium Outlets - Aurora IL (W),1650 Premium Outlets Blvd.,Aurora,IL,60504 +-88.245294,41.758612,"Rose Plaza / Aurora - Aurora IL (D, W)",2849 East New York Ave.,Aurora,IL,60504 +-88.243405,41.7592,Dominicks - Aurora #4161 - Aurora IL,3025 E. New York St.,Aurora,IL,60504 +-88.212712,41.758327,Aurora-Fox Valley Mall - Aurora IL (W),195 Fox Valley Center,Aurora,IL,60504 +-88.376201,41.786078,"West Aurora-Orchard & Indian Trail - Aurora IL (D, W)",1480 N. Orchard Rd.,Aurora,IL,60506 +-88.342159,41.851934,Target Batavia T-839 - Batavia IL,115 N. Randall Rd.,Batavia,IL,60510 +-87.954482,41.795493,Clarendon Hills - Clarendon Hills IL (W),100 Park Avenue,Clarendon Hills,IL,60514 +-88.010493,41.79623,Downers Grove - Downers Grove IL (W),5002-5006 Main St.,Downers Grove,IL,60515 +-87.987548,41.809818,Ogden Ave. - Downers Grove - Downers Grove IL (W),76 Ogden Ave.,Downers Grove,IL,60515 +-87.928243,41.81525,Dominick's - Downers Grove #3158 - Downers Grove IL,42 E. Ogden Ave.,Downers Grove,IL,60515 +-88.066736,41.767847,Seven Bridges (Route 53 & Hobson) - Woodridge IL (W),3520 Seven Bridges Dr.,Woodridge,IL,60517 +-88.039153,41.772269,Target Woodridge T-866 - Woodridge IL,2333 63rd St.,Woodridge,IL,60517 +-88.016196,41.750537,Woodgrove Festival Shopping Center - Woodridge IL (W),1001 W. 75th Street,Woodridge,IL,60517 +-87.948503,41.849425,Macys - Oak Brook - Oak Brook IL,1 Oak Brook Mall,Oak Brook,IL,60521 +-87.929078,41.802382,Hindale-Washington & Hinsdale-Reloc - Hinsdale IL,33 S. Washington Blvd.,Hinsdale,IL,60521 +-87.918061,41.817459,Wild Oats - Hinsdale - Hinsdale IL (W),500 East Ogden Ave.,Hinsdale,IL,60521 +-87.90723,41.786106,Hinsdale Travel Oasis Space K2 - Hinsdale IL,55 Teristate Tollway,Hinsdale,IL,60521 +-87.977374,41.845523,"Oak Brook-22nd & Tower - Oak Brook IL (D, W)",2407 W. 22nd Street,Oak Brook,IL,60523 +-87.93379,41.832565,Oakbrook Center - Oak Brook IL,701 Oakbrook Center,Oak Brook,IL,60523 +-87.952819,41.845802,Marriott Oakbrook - Oak Brook IL,1401 W. 22nd Street,Oak Brook,IL,60523 +-87.88749,41.769912,Dominicks #1056 - Countryside IL,6704 Joliet Road,Countryside,IL,60525 +-87.86965,41.814045,LaGrange - La Grange IL (W),38 S. La Grange Rd.,La Grange,IL,60525 +-87.94454,41.758553,Willowbrook-Rte 83 & Plainfield - Willowbrook IL (W),7169 Route 83,Willowbrook,IL,60527 +-87.933,41.7502,Burr Ridge-I-55 & County Line Rd. - Burr Ridge IL (W),515 Village Center Dr.,Burr Ridge,IL,60527 +-87.92834,41.767868,Dominick's-Willowbrook #1121 - Willowbrook IL,6300 S. Robert Kingery Hwy.,Willowbrook,IL,60527 +-88.05657,41.786292,"Lisle-Rte 53 & Maple - Lisle IL (D, W)",1048 Maple Ave.,Lisle,IL,60532 +-87.832345,41.815795,"Lyons-Ogden & First - Lyons IL (D, W)",8499 W. Ogden Ave.,Lyons,IL,60534 +-88.375114,41.7231,"Montgomery-Orchard & Rte 30 - Montgomery IL (D, W)",2080 Orchard Rd.,Montgomery,IL,60538 +-88.149311,41.772695,Naperville - Naperville IL (W),42 W. Jefferson St.,Naperville,IL,60540 +-88.145575,41.785754,Naperville-Ogden & Washington - Naperville IL (W),111 East Ogden Ave.,Naperville,IL,60540 +-88.126722,41.793497,Iroquois Center - Naperville IL (W),1163 E. Ogden Ave.,Naperville,IL,60540 +-88.109731,41.778915,Dominick's - Naperville #3115 - Naperville IL,1300 S. Naper Blvd.,Naperville,IL,60540 +-88.203063,41.769659,Super Target Naperville ST-840 - Naperville IL,1951 W. Jefferson Ave.,Naperville,IL,60540 +-88.146752,41.770963,River Square - Naperville - Naperville IL (W),22 East Chicago Ave.,Naperville,IL,60540 +-88.33769,41.8088,Target North Aurora T-2177 - Aurora IL,1800 Orchard Gateway Blvd.,Aurora,IL,60542 +-88.339332,41.68738,Dominick's-Oswego #1957 - Oswego IL,3010 W. Route 34,Oswego,IL,60543 +-88.339274,41.687454,"Oswego-Rte. 34 & Douglass - Oswego IL (D, W)",2750 Rte.34,Oswego,IL,60543 +-88.204373,41.652715,"Plainfield-127th & Route 59 - Plainfield IL (D, W)",12640 S. Route 59,Plainfield,IL,60544 +-87.80779,41.85024,North Riverside Park Mall - North Riverside IL (W),7501 West Cermak Road,North Riverside,IL,60546 +-88.176636,41.80488,"Warrenville-Winfield & Diehl - Warrenville IL (D, W)",28341 W. Diehl Road,Warrenville,IL,60555 +-88.163443,41.801202,Super Target Warrenville ST-1903 - Warrenville IL,28201 Diehl Rd.,Warrenville,IL,60555 +-87.90244,41.808556,Western Springs - Western Springs IL (W),1013 W. Burlington Ave.,Western Springs,IL,60558 +-87.889364,41.803512,Dominick's-Western Springs #1044 - Western Springs IL,14 Garden Market St.,Western Springs,IL,60558 +-88.472527,41.693142,SuperTarget Yorkville ST-2378 - Yorkville IL,1652 Beecher Rd.,Yorkville,IL,60560 +-88.205696,41.796535,Naperville-Rte 59 & McDowell - Naperville IL (D),1979 McDowell,Naperville,IL,60563 +-88.187146,41.77959,Dominick's - Naperville #1141 - Naperville IL,1555 N. Aurora Rd.,Naperville,IL,60563 +-88.2116,41.6972,"Naperville-Rte 59 & 95th - Naperville IL (D, W)",2936 Showplace Drive,Naperville,IL,60564 +-88.210581,41.780591,"I-59 & Aurora D/T - Naperville IL (D, W)",559 FAIRWAY DRIVE,Naperville,IL,60564 +-88.204213,41.708755,Dominick's-Naperville #1693 - Naperville IL,3116 South Route 59,Naperville,IL,60564 +-88.197296,41.7058,"Naperville-Rte 59 & 75th - Naperville IL (D, W)",2728 W. 75th St.,Naperville,IL,60564 +-88.162657,41.747151,"75th Street - Naperville - Naperville IL (D, W)",860 West 75th Street,Naperville,IL,60565 +-87.639098,41.880861,10 S. Riverside Plaza - Chicago IL (W),10 S. Riverside Plaza,Chicago,IL,60601 +-87.632683,41.885384,Lake & LaSalle - Chicago IL (W),180 N. LaSalle St.,Chicago,IL,60601 +-87.629195,41.885762,Leo Burnett - Chicago IL (W),40 W. Lake Street,Chicago,IL,60601 +-87.627119,41.886802,East Wacker Drive - Chicago IL (W),35 E. Wacker Dr,Chicago,IL,60601 +-87.624626,41.885842,200 N. Michigan - Chicago IL (W),202 N. Michigan Ave.,Chicago,IL,60601 +-87.624387,41.886019,Illinois Center - Chicago IL (W),225 N. Michigan Ave.,Chicago,IL,60601 +-87.62426,41.885154,The Shops at Millenium Station - Chicago IL (W),151 N. Michigan Ave.,Chicago,IL,60601 +-87.622297,41.884515,Chicago Amoco Building - Chicago IL (W),200 East Randolph St.,Chicago,IL,60601 +-87.630708,41.884739,CT&T Building - Chicago IL (W),161 North Clark Street,Chicago,IL,60601 +-87.63258,41.88277,30 N. LaSalle - Chicago IL (W),30 N. LaSalle St.,Chicago,IL,60602 +-87.631266,41.883221,West Washington - Chicago IL,111 W. Washington St.,Chicago,IL,60602 +-87.630532,41.883226,Daley Center Plaza - Chicago IL (W),66 West Washington Street,Chicago,IL,60602 +-87.63013,41.882014,Clark & Madison - Chicago IL (W),70 W. Madison St.,Chicago,IL,60602 +-87.627385,41.884213,Macys - Lower Level - Chicago IL,111 N. State St.,Chicago,IL,60602 +-87.625309,41.882105,68 E. Madison - Chicago IL (W),68 E. Madison,Chicago,IL,60602 +-87.630826,41.879309,West Adams - Chicago IL (W),105 W. Adams,Chicago,IL,60603 +-87.629399,41.879802,State & Adams - Chicago IL (W),131 South Dearborn,Chicago,IL,60603 +-87.626936,41.880734,Palmer House Hilton - Chicago IL,17 E. Monroe St.,Chicago,IL,60603 +-87.633197,41.877997,Van Buren Relocation - Chicago IL (W),175 W. Jackson Blvd.,Chicago,IL,60604 +-87.632203,41.878719,Bank of America Building - Chicago IL (W),231 S. LaSalle St.,Chicago,IL,60604 +-87.632133,41.881138,LaSalle & Monroe - Chicago IL (W),39 S. LaSalle Street,Chicago,IL,60604 +-87.625623,41.878057,55 E. Jackson - Chicago IL (W),55 East Jackson Blvd.,Chicago,IL,60604 +-87.63073,41.867372,Target Chicago South Loop T-1889 - Chicago IL,1154 S. Clark Street,Chicago,IL,60605 +-87.628942,41.874711,Dearborn Park - Chicago IL (W),555 S. Dearborn,Chicago,IL,60605 +-87.626074,41.867334,Roosevelt & Wabash - Chicago IL (W),31 East Roosevelt Road,Chicago,IL,60605 +-87.624485,41.873268,The Blackstone A Renaissance Hotel - Chicago IL,636 S. Michigan Ave.,Chicago,IL,60605 +-87.639074,41.881995,Two North Riverside Plaza - Chicago IL (W),400 W. Madison,Chicago,IL,60606 +-87.63751,41.88033,100 S. Wacker - Chicago IL (W),100 S. Wacker Drive,Chicago,IL,60606 +-87.637467,41.884707,North Wacker - Chicago IL (W),150 N. Wacker,Chicago,IL,60606 +-87.636287,41.8789,Sears Towers - Chicago IL (W),233 South Wacker Drive,Chicago,IL,60606 +-87.635676,41.877454,311 S. Wacker - Chicago IL (W),311 S. Wacker Dr.,Chicago,IL,60606 +-87.635405,41.881939,303 W. Madison - Chicago IL (W),303 West Madison,Chicago,IL,60606 +-87.634742,41.880457,AT&T Building - Chicago IL (W),227 W. Monroe,Chicago,IL,60606 +-87.634195,41.882073,Madison & Wells - Chicago IL (W),200 West Madison,Chicago,IL,60606 +-87.634158,41.878013,209 W. Jackson - Chicago IL (W),209 W. Jackson,Chicago,IL,60606 +-87.626653,41.882902,25 East Washington - Chicago IL (W),25 E. Washington Blvd.,Chicago,IL,60606 +-87.633791,41.879399,200 West Adams - Chicago IL (W),200 W. Adams,Chicago,IL,60606 +-87.662863,41.86934,Taylor Street - Chicago IL (W),1430 W. Taylor St.,Chicago,IL,60607 +-87.652577,41.881644,Madison & Morgan (UCO) - Chicago IL (W),1001A West Madison Avenue,Chicago,IL,60607 +-87.647426,41.884275,West Loop-Randolp & Morgan (redraw) - Chicago IL (W),946 W. Randolph St.,Chicago,IL,60607 +-87.63918,41.864795,Dominick's-Canal Street #1147 - Chicago IL,1340 South Canal Street,Chicago,IL,60607 +-87.638862,41.868442,South Loop-Roosevelt & Canal - Chicago IL (W),1101 South Canal St.,Chicago,IL,60607 +-87.636674,41.692455,550 W. Van Buren - Chicago IL (W),550 W. Van Buren,Chicago,IL,60607 +-87.674148,41.834073,Target Chicago McKinley Park T-2078 - Chicago IL,1940 W. 33rd St.,Chicago,IL,60608 +-87.663873,41.836738,Dominick's-Chicago #1100 - Chicago IL,3145 S. Ashland Ave.,Chicago,IL,60608 +-87.626923,41.830649,Bronzeville-35th & State - Chicago IL (W),3506 S. State St.,Chicago,IL,60609 +-87.63916,41.903787,Dominick's - Chicago #2153 - Chicago IL,424 W. Division,Chicago,IL,60610 +-87.635641,41.91123,Piper's Alley - Chicago IL (W),200-230 W. North Ave.,Chicago,IL,60610 +-87.627983,41.898891,Gold Coast-State & Delaware - Chicago IL (W),1 E. Delaware Place,Chicago,IL,60611 +-87.627541,41.890152,Marriott Courtyard - Chicago - Stre - Chicago IL,30 E. Hubbard,Chicago,IL,60611 +-87.62754,41.900165,Oak & Rush II - Chicago IL (W),932 N. Rush Street,Chicago,IL,60611 +-87.626698,41.893316,River North-Ontario & Wabash - Chicago IL (W),38 E. Ontario St.,Chicago,IL,60611 +-87.626678,41.896737,Chicago & Wabash - Chicago IL (W),42 East Chicago Ave.,Chicago,IL,60611 +-87.625218,41.890706,444 North Michigan - Chicago IL (W),444 N. Michigan Avenue,Chicago,IL,60611 +-87.625215,41.898348,111 E. Chestnut - Chicago IL (W),111 East Chestnut,Chicago,IL,60611 +-87.624228,41.892119,Chicago Marriott Magnificent Mile - Chicago IL,540 N. Michigan Ave.,Chicago,IL,60611 +-87.62405,41.891321,Intercontinental Hotel-Chicago-Lobb - Chicago IL,505 N. Michigan Ave.,Chicago,IL,60611 +-87.62279,41.893373,Marriott Courtyard Chicago - Chicago IL,165 E. Ontario St.,Chicago,IL,60611 +-87.621517,41.894964,Northwestern Mem. Hospital - Chicago IL (W),251 East Huron Street,Chicago,IL,60611 +-87.621159,41.891777,Dominicks-Chicago #1703 - Chicago IL,255 E. Grand Ave.,Chicago,IL,60611 +-87.61694,41.893397,Ontario - Chicago IL (W),401 E. Ontario,Chicago,IL,60611 +-87.613671,41.892965,Renas @ Navy Pier - Chicago IL,600 E. Grand Ave.,Chicago,IL,60611 +-87.67916,41.954797,Lincoln/Damen/Irving - Chicago IL (W),4015 N. Lincoln Avenue,Chicago,IL,60613 +-87.676044,41.961505,1900 W. Montrose - Chicago IL (W),1900 W. Montrose Avenue,Chicago,IL,60613 +-87.655506,41.947216,West Addison - Chicago IL (W),1023-1025 West Addison Street,Chicago,IL,60613 +-87.649595,41.9519,Broadway & Clarendon - Chicago IL (W),3845 N. Broadway,Chicago,IL,60613 +-87.674633,41.927551,Dominick's-North Clyborn #2304 - Chicago IL,2550 N. Clyborn,Chicago,IL,60614 +-87.672615,41.925191,W. DePaul-Fullerton & Clybourn Redra - Chicago IL (W),1730 W. Fullerton Avenue,Chicago,IL,60614 +-87.671171,41.932753,1700 W. Diversey - Chicago IL (W),1700 West Diversey Parkway,Chicago,IL,60614 +-87.665121,41.921766,Clybourn & Webster - Chicago IL (W),2200 N. Clybourn,Chicago,IL,60614 +-87.660367,41.925247,Lincoln Park-Fullerton & Racine - Chicago IL (W),1245 W. Fullerton Ave.,Chicago,IL,60614 +-87.65837,41.928673,Wrightwood & Racine - Chicago IL (W),1157 W. Wrightwood,Chicago,IL,60614 +-87.653993,41.932653,Sheffield & Diversey - Chicago IL (W),1000-1002 West Diversey Ave.,Chicago,IL,60614 +-87.653528,41.917887,West Armitage - Chicago IL (W),1001 W. Armitage,Chicago,IL,60614 +-87.653129,41.925369,Dominick's-Chicago #1695 - Chicago IL,959 West Fullerton,Chicago,IL,60614 +-87.648979,41.92197,North Halsted - Chicago IL (W),2200 N. Halsted,Chicago,IL,60614 +-87.646275,41.923682,Lincoln & Belden - Chicago IL (W),2275 North Lincoln Avenue,Chicago,IL,60614 +-87.644325,41.932799,Diversey - Chicago IL (W),617 W. Diversey Pkwy,Chicago,IL,60614 +-87.636382,41.918975,Dickens - Chicago IL (W),2063 N. Clark,Chicago,IL,60614 +-87.63118,41.882101,Clark Street - Chicago IL (W),2525 1/2 N. CLARK ST,Chicago,IL,60614 +-87.596812,41.795085,Hyde Park-55th & Woodlawn (UCO) - Chicago IL (W),1174 East 55th Streeet,Chicago,IL,60615 +-87.589048,41.799561,Hyde Park - Chicago IL (W),1500 E. 53rd St.,Chicago,IL,60615 +-87.618923,41.851123,Levy McCormick West - Chicago IL,2301 S. Martin Luther King Dr,Chicago,IL,60616 +-87.615774,41.852957,Levy McCormick North Foodcrt - Chicago IL,2301 S. Lake Shore Dr,Chicago,IL,60616 +-87.701659,41.946651,Target Chicago Mid North T-1437 - Chicago IL,2939 W. Addison St.,Chicago,IL,60618 +-87.683032,41.93925,Belmont & Leavitt - Chicago IL (W),2159 West Belmont Ave.,Chicago,IL,60618 +-87.679451,41.94293,Roscoe Village - Chicago IL (W),2023-25 West Roscoe Street,Chicago,IL,60618 +-87.631917,41.736021,"Chatham-87th & Lafayatte - Chicago IL (D, W)",160 W. 87th Street,Chicago,IL,60620 +-87.677662,41.910234,Bucktown - Chicago IL (W),1588 N. Milwaukee Ave.,Chicago,IL,60622 +-87.670108,41.902997,Division & Paulina - Chicago IL (W),1701 West Division Street,Chicago,IL,60622 +-87.65861,41.891707,River West-Grand & Ogden - Chicago IL (W),520 N. Ogden Ave.,Chicago,IL,60622 +-87.710121,41.975886,North Park-Foster & Sawyer - Chicago IL (W),3232 W. Foster Avenue,Chicago,IL,60625 +-87.708359,41.964228,Albany Park-Kedzie & Wilson - Chicago IL (W),4558 North Kedzie Ave.,Chicago,IL,60625 +-87.685903,41.96465,Lincoln & Wilson - Chicago IL (W),4553-4557 N. Lincoln Ave.,Chicago,IL,60625 +-87.697212,42.019396,Dominick's-Clark&Howard #1698 - Chicago IL,1763 W. Howard St.,Chicago,IL,60626 +-87.66085,42.004798,Rogers Park - Chicago IL (W),6738 North Sheridan Avenue,Chicago,IL,60626 +-87.728064,41.968954,North Mayfair-Lawrence & Pulaski - Chicago IL (W),4830 N. Pulaski Rd.,Chicago,IL,60630 +-87.839588,41.981051,Renaissance Chicago O'Hare Hotel - Chicago IL,8500 W. Bryn Mawr Ave.,Chicago,IL,60631 +-87.742756,41.807371,"47th & Cicero (UCO) - Chicago IL (D, W)",4701 South Cicero Avenue,Chicago,IL,60632 +-87.723639,41.812691,Target Chicago T-1879 - Chicago IL,4433 S. Pulaski,Chicago,IL,60632 +-87.744401,41.77392,Marriott - Bedford Park - Entrance - Bedford Park IL,6520 S. Cicero Ave.,Bedford Park,IL,60638 +-87.668152,41.976529,Andersonville - Chicago IL (W),5300 N. Clark Street,Chicago,IL,60640 +-87.661432,41.965523,Wilson & Magnolia (UCO) - Chicago IL (W),4600 North Magnolia,Chicago,IL,60640 +-87.659204,41.968156,Broadway and Lawrence - Chicago IL (W),4753 North Broadway,Chicago,IL,60640 +-87.737687,41.953492,Irving Park & Kostner - Chicago IL (W),4365 West Irving Park Road,Chicago,IL,60641 +-87.653493,41.910543,North & Sheffield - Chicago IL (W),1001 W. North Ave.,Chicago,IL,60642 +-87.670493,41.706272,Beverly-103rd & Longwood - Chicago IL (W),1933 W. 103rd St.,Chicago,IL,60643 +-87.662551,41.678922,Target Chicago Morgan Park T-2344 - Chicago IL,11840 S. Marshfield Ave.,Chicago,IL,60643 +-87.706602,42.01919,West Rogers Park-Western & Howard - Chicago IL (W),2357 W. Howard St.,Chicago,IL,60645 +-87.680311,42.004271,Dominicks-Chicago #2984 - Chicago IL,6623 N. Damen Ave.,Chicago,IL,60645 +-87.787525,41.995865,Dominicks - Chicago #1113 - Chicago IL,6312 N. Nagle Ave.,Chicago,IL,60646 +-87.737614,42.011792,Touhy & Kostner - Lincolnwood IL (W),4368 West Touhy Avenue,Lincolnwood,IL,60646 +-87.764111,41.997643,Edgebrook - Chicago IL (W),5406 W. Devon Ave.,Chicago,IL,60646 +-87.732803,41.990093,Sauganash - Chicago IL (W),4159 W. Peterson,Chicago,IL,60646 +-87.681843,41.928103,Lincoln Park-Elston & Logan - Chicago IL (W),2577 N. Elston Ave.,Chicago,IL,60647 +-87.680394,41.917519,Bucktown-Armitage & Hoyne - Chicago IL (W),2101 W. Armitage Avenue,Chicago,IL,60647 +-87.685307,41.92937,Target Chicago Near North T-942 - Chicago IL,2656 N. Elston Ave.,Chicago,IL,60647 +-87.697466,41.927682,Logan Blvd. - Chicago IL (W),2543 N. California,Chicago,IL,60647 +-87.585577,41.765753,"71st & Stony Island (UCO) - Chicago IL (D, W)",7101 South Stony Island Ave.,Chicago,IL,60649 +-87.63998,41.904084,Old Town Square - Chicago IL (W),1229 N. Clyborn Ave.,Chicago,IL,60654 +-87.636974,41.889515,414 N. Orleans - Chicago IL (W),414 N. Orleans,Chicago,IL,60654 +-87.635698,41.89592,Chicago & Franklin - Chicago IL (W),750 North Franklin Street,Chicago,IL,60654 +-87.63553,41.88857,Merchandise Mart - Chicago IL (W),470 MERCHANDISE MART,Chicago,IL,60654 +-87.63206,41.910374,Germania Place - Chicago IL (W),106-108 WEST GERMANIA PLACE,Chicago,IL,60654 +-87.631418,41.890168,430 N. Clark - Chicago IL (W),430 N. Clark,Chicago,IL,60654 +-87.63012,41.903914,Dearborn & Division - Chicago IL (W),39 W. Division St.,Chicago,IL,60654 +-87.629412,41.894327,River North-Erie & Dearborn - Chicago IL (W),30 W. Erie St.,Chicago,IL,60654 +-87.628241,41.897533,State & Pearson - Chicago IL (W),828 North State Street,Chicago,IL,60654 +-87.628131,41.892483,Embassy Suites - Chicago IL (W),600 N. State Street,Chicago,IL,60654 +-87.671185,41.943235,Lincoln & Paulina - Chicago IL (W),3356 NORTH LINCOLN AVENUE,Chicago,IL,60657 +-87.665875,41.937434,Lincoln & Greenview - Chicago IL (W),3045 Greenview,Chicago,IL,60657 +-87.663508,41.943269,Southport & Roscoe - Chicago IL (W),3359 N. Southport,Chicago,IL,60657 +-87.650573,41.939799,Clark & Belmont - Chicago IL (W),3184 North Clark Street,Chicago,IL,60657 +-87.644861,41.943359,North Broadway - Chicago IL (W),3358 N. Broadway,Chicago,IL,60657 +-87.710406,41.992362,"Lincoln Village-Lincoln & McCormick - Chicago IL (D, W)",6075 N. Lincoln Ave.,Chicago,IL,60659 +-87.683109,41.990617,Target Chicago T-2079 - Chicago IL,2112 W. Peterson Ave.,Chicago,IL,60659 +-87.660025,41.99147,Dominick's-N. Broadway & Thornd #12 - Chicago IL,6009 N. Broadway Street,Chicago,IL,60660 +-87.657506,41.983679,Edgewater - Chicago - Chicago IL (W),1070 W. Bryn Mawr Ave.,Chicago,IL,60660 +-87.647317,41.880483,Greek Town-Halsted & Monore - Chicago IL (W),100 S. Halsted St.,Chicago,IL,60661 +-87.646768,41.882564,Dominick's-Chicago #1875 - Chicago IL,1 N. Halsted St.,Chicago,IL,60661 +-87.642782,41.88572,West Loop-Lake & Jefferson - Chicago IL (W),600 W. Lake St.,Chicago,IL,60661 +-87.641215,41.882386,Washington & Clinton - Chicago IL (W),40 N. Clinton St.,Chicago,IL,60661 +-87.641105,41.87982,Metropolitan Place - Chicago IL (W),139 South Clinton,Chicago,IL,60661 +-87.677898,41.895881,Dominicks - Chicago #2775 - Chicago IL,2019 West Chicago ave,Chicago,IL,60662 +-87.89634,41.978073,ORD OHare Term 1 Conc C Gate 9 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Conc B Gate 12 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Conc B Gate 5 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Conc K Gate 14 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Concourse B Escalator - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Concourse E. - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Concourse G Gate 29 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Concourse H Gate 35 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Term 1 Conc C Gate 30 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Term 3 Conc H-9 Gate 9 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Term 3 Conc L Gate 9 - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Terminal 2 Post Security - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.896335,41.97807,ORD OHare Terminal 3 Food Court - Chicago IL (A),CircularBuilding #6,Chicago,IL,60666 +-87.892,41.9762,ORD OHare Terminal 3 Baggage Claim - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.8908,41.9768,ORD OHare Terminal 1 Baggage Claim - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-86.896335,41.97807,ORD OHare Term 3 H/K Apex FCourt - Chicago IL (A),Circular Building #6,Chicago,IL,60666 +-87.629995,41.881336,Chase Tower Chicago - Chicago IL,21 S. Clark St.,Chicago,IL,60670 +-87.807262,41.953338,Target Norridge T-1888 - Chicago IL,4050 N. Harlem Ave.,Chicago,IL,60706 +-87.80274,41.909226,"Galewood-North & Nordica - Chicago IL (D, W)",7112 W. North Ave.,Chicago,IL,60707 +-87.788737,41.930929,Target Chicago Brickyards T-1924 - Chicago IL,6525 W. Diversey Ave.,Chicago,IL,60707 +-87.786908,41.930946,Brickyard-Diversey & Narragansett - Chicago IL (W),6451 W. Diversey,Chicago,IL,60707 +-87.71167,42.004776,Dominicks-Lincolnwood #1730 - Lincolnwood IL,6810 McCormick,Lincolnwood,IL,60712 +-87.782639,42.012032,Target Niles T-928 - Niles IL,6150 W. Touhy Ave.,Niles,IL,60714 +-87.770699,42.011986,Touhy & Central - Niles IL (W),5720 Touhy Ave.,Niles,IL,60714 +-87.835678,42.052168,Golf Rd. & Milwaukee - Niles IL (W),9483 N. Milwaukee Ave.,Niles,IL,60714 +-87.701173,41.68425,Dominicks #1102 - Merrionette Park - Merrionette Park IL,3243 115th St.,Merrionette Park,IL,60803 +-87.741978,41.839684,Target Cicero T-732 - Cicero IL,2901 S. Cicero Ave.,Cicero,IL,60804 +-87.886559,41.159603,Bourbonnais-Main & Latham - Bourbonnais IL (D),532 Main Street,Bourbonnais,IL,60914 +-87.873652,41.162765,Kroger-Bourbonnais#984 - Bourbonnais IL,633 Armour Road,Bourbonnais,IL,60914 +-87.85148,41.170464,Target Bradley T-895 - Bourbonnais IL,1615 N. SR 50,Bourbonnais,IL,60914 +-87.850903,41.162052,"Bradley-Route 50 - Bradley IL (D, W)",1250 N. Kinzie,Bradley,IL,60915 +-88.841703,42.234684,Belvidere Travel Oasis Space K2 - Belvidere IL,5551 Pearl St.,Belvidere,IL,61008 +-88.82056,42.238113,"Belvidere-Genoa & Chrysler - Belvidere IL (D, W)",1912 Gateway Center Dr,Belvidere,IL,61008 +-87.905529,42.254446,Lake Forest Travel Oasis - Lake Forest IL,695 Bradley Rd.,Lake Forest,IL,61008 +-89.021747,42.431601,Kroger-Roscoe #855 - Roscoe IL,4860 Hononegah Rd.,Roscoe,IL,61073 +-88.994956,42.266587,"Rockford-State & Trainer - Rockford IL (D, W)",6239 E. State Street,Rockford,IL,61108 +-88.970824,42.270839,"Rockford-State & Bell School - Rockford IL (D, W)",7474 East State Street,Rockford,IL,61108 +-88.977859,42.304803,Rockford - Rockford IL (W),3001 North Perryville Rd.,Rockford,IL,61114 +-89.01979,42.365463,"Machesney Park-Route 173 & Orlando - Machesney Park IL (D, W)",1377 W. Lane Rd.,Machesney Park,IL,61115 +-90.524423,41.470395,Target Moline T-926 - Moline IL,900 42nd Ave. Dr,Moline,IL,61265 +-90.47605,41.4716,"Moline-John Deere & 41st - Moline IL (D, W)",3935 41st Street,Moline,IL,61265 +-89.1294,41.3345,"Peru-Rte 251 & I-80 - Peru IL (D, W)",5255 Route 251,Peru,IL,61354 +-89.129331,41.363228,Target Peru T-929 - Peru IL,4370 Venture Dr,Peru,IL,61354 +-89.597086,40.542558,"Pekin-Court & Veterans - Pekin IL (D, W)",3442 Court St.,Pekin,IL,61554 +-89.612861,40.699105,Peoria-University & Main - Peoria IL (W),1200 West Main St.,Peoria,IL,61606 +-89.612452,40.746995,"Peoria-University & Glen - Peoria IL (D, W)",4820 N. University St.,Peoria,IL,61614 +-89.574259,40.73208,"Peoria-Prospect & War Memorial - Peoria IL (D, W)",3708 N. Prospect Road,Peoria,IL,61614 +-89.6393,40.7728,"Peoria-War Memorial & Grand Prairie - Peoria IL (D, W)",7501 N. Grand Prairie Dr.,Peoria,IL,61615 +-89.6367,40.750037,Target Peoria T-871 - Peoria IL,5001 Big Hollow Rd.,Peoria,IL,61615 +-89.60265,40.783362,"Peoria-Knoxville & Pioneer - Peoria IL (D, W)",707 W. Pioneer,Peoria,IL,61615 +-88.96274,40.461277,"Bloomington-Veterans & Morrissey - Bloomington IL (D, W)",1701 S. Veterans Parkway,Bloomington,IL,61701 +-88.95213,40.48016,"Bloomington-Veterans Pkwy. & Washin - Bloomington IL (D, W)",101 N. Veterans Parkway,Bloomington,IL,61704 +-88.957001,40.510355,Kroger-Normal #347 - Normal IL,1550 East College,Normal,IL,61761 +-88.95311,40.515293,College Hills-Veterans & Von Maur - Normal IL (W),307 Veterans Parkway,Normal,IL,61761 +-88.204379,40.112846,"Urbana-Main & Vine - Urbana IL (D, W)",102 N. Vine Street,Urbana,IL,61802 +-88.232016,40.110269,Champaign - 5th & Green - Champaign IL (W),503 E. Green Street,Champaign,IL,61820 +-88.25724,40.148274,"Champaign-Prospect - Champaign IL (D, W)",2702 North Prospect,Champaign,IL,61822 +-88.185926,39.4844,"Charleston-Lincoln & E. - Charleston IL (D, W)",437 W. Lincoln Avenue,Charleston,IL,61920 +-89.9668,38.8215,"Troy & Governor's Pkwy. - Edwardsville IL (D, W)",6680 Edwardsville Crossing Drive,Edwardsville,IL,62025 +-89.9962,38.7929,Southern Illinois U/E-Student Union - Edwardsville IL,Morris Univ Ctr. Campus Box #1,Edwardsville,IL,62026 +-90.192513,38.630905,Renaissance Grand-St Louis Conv Ctr. - St. Louis MO,827 Washington Avenue,St Louis,MO,62106 +-89.985161,38.571336,Target Fairview Heights T-2414 - Fairview Heights IL,4701 North Illinois,Fairview Heights,IL,62208 +-89.98232,38.59342,St. Clair Square - Fairview Heights IL (W),134 St. Clair Square Drive,Fairview Heights,IL,62208 +-90.0146,38.5112,Target Belleville T-2330 - Belleville IL,5601 Belleville Crossing St.,Belleville,IL,62226 +-90.01505,38.676018,Bluff Rd. & I-55 - Collinsville IL (D),1077 Collinsville Crossing Blvd.,Collinsville,IL,62234 +-89.931358,38.573544,"Greenmount & I-64 - OFallon IL (D, W)",1126 Central Park Drive,OFallon,IL,62269 +-91.3654,39.9355,"Quincy-Broadway & 33rd - Quincy IL (D, W)",3115 Broadway,Quincy,IL,62301 +-88.567218,39.138551,"I-70 & Hwy. 32 - Effingham IL (D, W)",1700 Avenue of Mid America,Effingham,IL,62401 +-88.959448,39.891157,Target Decatur T-1951 - Decatur IL,355 W. Mound Rd.,Decatur,IL,62526 +-88.95421,39.891295,"Decatur-Rte 51 & Mound Rd. - Decatur IL (D, W)",255 West Mound RD,Decatur,IL,62526 +-89.645766,39.800298,Hilton Springfield - Springfield IL,700 E. Adams St.,Springfield,IL,62701 +-89.644742,39.757486,"Springfield-6th & Stevenson - Springfield IL (D, W)",745 Stevenson Drive,Springfield,IL,62702 +-89.605559,39.801915,"Springfield-Clear Lake & Dirkson - Springfield IL (D, W)",3200 E. Clear Lake,Springfield,IL,62702 +-89.70854,39.749008,Target Springfield T-670 - Springfield IL,3445 Freedom Dr,Springfield,IL,62704 +-89.707832,39.75195,"Springfield-Veterans & Lindberg - Springfield IL (D, W)",3412 Freedom Drive,Springfield,IL,62704 +-89.687088,39.79963,"Springfield-Monroe & Chatham - Springfield IL (D, W)",2003 W. Monroe,Springfield,IL,62704 +-89.208583,37.725992,SIU/Carbondale - Student Ctr. - Carbondale IL,608 N. Walnut St.,Carbondale,IL,62901 +-89.185224,37.731333,Kroger-Carbondale #714 - Carbondale IL,501 North Giant Road,Carbondale,IL,62902 +-88.944887,37.740813,Kroger-Marion #380 - Marion IL,1704 Deyoung St.,Marion,IL,62959 +-90.5609,38.6018,Target Chesterfield/T & C T-1952 - Ballwin MO,1272 Town & Country Crossing,Ballwin,MO,63011 +-90.541703,38.592914,"Manchester & Ries - Ballwin MO (D, W)",14900 Manchester Road,Ballwin,MO,63011 +-90.497448,38.593347,Manchester Rd. - Manchester MO (W),14128 Manchester,Manchester,MO,63011 +-90.596342,38.668432,Chesterfield Commons - Chesterfield MO (W),17293 ChesterfieldAirport Rd.,Chesterfield,MO,63017 +-90.566118,38.643652,Clarkson & Baxter - Chesterfield MO (W),1720 Clarkson Road,Chesterfield,MO,63017 +-90.442648,38.508037,"Hwy. 141 & Gravois - Fenton MO (D, W)",699 Gravois Bluffs Blvd.,Fenton,MO,63026 +-90.335579,38.777429,"Graham & I 270 - Florissant MO (D, W)",1261 Graham Rd.,Florissant,MO,63031 +-90.6225,38.5746,"Taylor & Manchester - Wildwood MO (D, W)",125 Plaza Drive,Wildwood,MO,63040 +-90.406255,38.787461,St. Louis Mills - Hazelwood MO,4785 Park 370 Blvd.,Hazelwood,MO,63042 +-90.352568,38.785693,"I-270 & Lindbergh - Hazelwood MO (D, W)",7537 N. Lindbergh Blvd.,Hazelwood,MO,63042 +-90.496497,38.536631,"Hwy. 141 & I-44 - Valley Park MO (D, W)",922 South Meramec Station Rd.,Valley Park,MO,63088 +-90.97,38.5251,Target Washington T-2255 - Washington MO,1851 Vernaci Dr,Washington,MO,63090 +-90.328505,38.504319,South County Mall - St. Louis MO,53K S. County Center Way,St. Louis,MO,63101 +-90.189954,38.628233,Olive & 6th - St. Louis MO (W),521 Olive Street,St Louis,MO,63101 +-90.192315,38.624159,St. Louis Hilton at the Ballpark - St. Louis MO,1 South Broadway,St Louis,MO,63102 +-90.187819,38.625806,Hyatt Regency Riverfront St. Louis - St. Louis MO,315 Chestnut St.,St. Louis,MO,63102 +-90.337915,38.650475,Clayton - Clayton MO (W),2 North Central,Clayton,MO,63105 +-90.334362,38.643098,Hanley & Wydown - Clayton MO (W),7645 Wydown Bovd,Clayton,MO,63105 +-90.261051,38.644628,Central West End - St. Louis MO (W),4656 - 4658 Maryland Avenue,St Louis,MO,63108 +-90.304046,38.590514,"Chippewa & Lansdowne - St. Louis MO (D, W)",6622 Chippewa St.,St. Louis,MO,63109 +-90.294829,38.592592,Target Hampton Vlg St. Louis T-1515 - St. Louis MO,4255 Hampton Ave.,St Louis,MO,63109 +-90.261424,38.557846,Loughborough & I 55 - Saint Louis MO (D),1042-A Loughborough Ave.,Saint Louis,MO,63111 +-90.461914,38.842887,"Kings & Chippewa - St. Louis MO (D, W)",3700 South Kings Highway,St. Louis,MO,63116 +-90.348668,38.63741,St. Louis Galleria Kiosk - St. Louis MO,2444 St. Louis Galleria,St. Louis,MO,63117 +-90.367445,38.60864,"Manchester & McKnight - St. Louis MO (D, W)",9616 Manchester Road,St. Louis,MO,63119 +-90.338708,38.591402,Webster Groves - Webster Groves MO (W),1 South Old Orchard,Webster Groves,MO,63119 +-90.474511,38.568185,"Big Bend & Dougherty Ferry - St. Louis MO (D, W)",2934 Dougherty Ferry Rd.,St Louis,MO,63122 +-90.40712,38.57726,Kirkwood Pioneer Place - Kirkwood MO (W),343 S. Kirkwood,Kirkwood,MO,63122 +-90.210683,38.596981,Anheuser-Busch - St. Louis MO,One Busch Place,St. Louis,MO,63122 +-90.405649,38.632596,Lindbergh & Clayton - Ladue MO (W),1500 S. Lindbergh Blvd.,Ladue,MO,63124 +-90.390722,38.637689,Clayton Rd. - Ladue - Ladue MO (W),9820 Clayton Road,Ladue,MO,63124 +-90.381549,38.557186,"Watson & Old Sappington - Crestwood MO (D, W)",9590 Watson Road,Crestwood,MO,63126 +-90.373571,38.511072,Tesson Ferry - St. Louis MO (W),12460 Tesson Ferry Road,St Louis,MO,63128 +-90.337213,38.65905,"Delmar & North & South - University City MO (D, W)",7640 Delmar,University City,MO,63130 +-90.30637,38.656529,Delmar Loop - University City MO (W),6621 Delmar Blvd.,University City,MO,63130 +-90.48445,38.628273,Mason Woods - Town & Country MO (W),13448 Clayton Road,Town & Country,MO,63131 +-90.447055,38.598181,West County Mall Kiosk - Des Peres MO,80 West County Centre,Des Peres,MO,63131 +-90.367486,38.673429,Olive & Price - Olivette MO (W),9200 Olive Blvd.,Olivette,MO,63132 +-90.276885,38.727296,Target Jennings T-2050 - Jennings MO,8007 W. Florissant Ave.,Jennings,MO,63136 +-90.434939,38.670851,Olive & Craig - Creve Coeur MO (W),11464 Olive Street,Creve Coeur,MO,63141 +-90.348125,38.61956,"Brentwood & White - Brentwood MO (D, W)",2300 S. Brentwood Blvd.,Brentwood,MO,63144 +-90.343228,38.62812,Target Brentwood T-1102 - Brentwood MO,25 Brentwood Promenade Court,Brentwood,MO,63144 +-90.369559,38.742558,STL - Baggage Claim 2 - St. Louis MO (A),10701 Natural Bridge Road,St Louis,MO,63145 +-90.369559,38.742558,STL - Conc. A Gate 9 - St. Louis MO (A),10701 Natural Bridge Road,St Louis,MO,63145 +-90.369559,38.742558,STL - East Terminal - St. Louis MO (A),10701 Natural Bridge Road,St Louis,MO,63145 +-90.369559,38.742558,STL - Concourse C Gate 17 - St. Louis MO (A),10701 Natural Bridge Road,St Louis,MO,63145 +-90.369559,38.742558,STL - Concourse C Space 2 - St. Louis MO (A),10701 Natural Bridge Road,St Louis,MO,63145 +-90.369559,38.742558,STL - East Term Upper Lvl Food Ct - St. Louis MO (A),10701 Natural Bridge Road,St Louis,MO,63145 +-90.44748,38.70125,West Port Plaza - St. Louis - Maryland Heights MO (W),111 West Port Plaza Bldg,Maryland Heights,MO,63146 +-90.490727,38.774225,"5th & Boonslick - St. Charles MO (D, W)",1030 So. 5th Street,St. Charles,MO,63301 +-90.6364,38.755436,"Hwy. 94 & Mid Rivers - St. Peters MO (D, W)",6187 Mid Rivers Mall Drive,St. Peters,MO,63304 +-90.7815,38.7779,"SR-N & Hawk Ridge - Lake St. Louis MO (D, W)",6319 Ronald Reagan Drive,Lake St. Louis,MO,63366 +-90.702846,38.71674,"SR-K & Weldon Spring - O'Fallon MO (D, W)",4581 Highway K,O'Fallon,MO,63366 +-90.694488,38.785737,"SR-K & Laura Hill Rd. - O'Fallon MO (D, W)",100 Laura K Road,O'Fallon,MO,63366 +-90.748508,38.765997,Target O'Fallon/Dardenne T-2103 - Dardenne MO,7955 Hwy. N.,Dardenne,MO,63368 +-90.625893,38.788475,"Mexico & Mid Rivers Mall Dr. - St. Peters MO (D, W)",7098 Mexico Road,St. Peters,MO,63376 +-90.875705,38.814067,"Wentzville & I 70 - Wentzville MO (D, W)",1877 Wentzville Parkway,Wentzville,MO,63385 +-90.875707,38.814071,Target Wentzville T-2345 - Wentzville MO,1883 Wentzville Pkwy,Wentzville,MO,63385 +-89.576594,37.302832,"I 55 & William - Cape Girardeau MO (D, W)",188 Vantage Dr.,Cape Girardeau,MO,63701 +-89.5636,37.3271,Target Cape Girardeau T-992 - Cape Girardeau MO,202 Siemens Dr,Cape Girardeau,MO,63701 +-94.516068,38.813028,"Hwy. 58 & Town Center - Belton MO (D, W)",1113 E. North Ave.,Belton,MO,64012 +-94.271805,39.02404,"Hwy. 7 & I-70 - Blue Springs MO (D, W)",704 N. Highway 7,Blue Springs,MO,64014 +-94.24956,39.025173,Target Blue Springs T-2525 - Blue Springs MO,1040 NE Coronado,Blue Springs,MO,64014 +-94.438157,39.045289,Hwy. 40 & Blue Ridge - Independence MO (D),11815 E. Highway 40,Independence,MO,64055 +-94.435029,39.079964,"23rd & Lee's Summit - Independence MO (D, W)",1516 A East 23rd Street,Independence,MO,64055 +-94.415436,39.03816,Hy Vee Independence #2 - Independence MO,4545 S. Noland Road,Independence,MO,64055 +-94.352406,39.047835,Independence MO - Independence MO (W),19130H East 39th Street,Independence,MO,64057 +-94.361956,38.916963,"Lee's Summit - Lee's Summit MO (D, W)",125 SE Hwy. 291,Lee's Summit,MO,64063 +-94.449956,39.245098,"I-35 & SR-152 - Liberty MO (D, W)",1915 Star Drive,Liberty,MO,64068 +-94.409032,38.926278,Super Target Lees Summit ST-1392 - Lees Summit MO,1850 NW Chipman Rd.,Lees Summit,MO,64081 +-94.408936,38.926272,50th & Chipman - Lee's Summit MO (W),1702 NW Chipman Road,Lee's Summit,MO,64081 +-94.402237,38.928396,Macy's - Lee's Summit - Lee's Summit MO,701 NW Blue Pkwy,Lee's Summit,MO,64086 +-94.379363,38.933063,"Douglas & Tudor - Lees Summit MO (D, W)",1130 NE Douglas Street,Lees Summit,MO,64086 +-94.357901,38.930919,Hen House-Lees Summit #30 - Lees Summit MO,1015 NE Rice Rd.,Lees Summit,MO,64086 +-94.585617,39.098672,Crowne Plaza Kansas City - Kansas City MO,1301 Wyandotte St.,Kansas City,MO,64105 +-94.583165,39.100844,City Center Square - Kansas City MO (W),1100 Main St.,Kansas City,MO,64105 +-94.604974,39.057233,W. 39th Street - Kansas City MO (W),1701 W. 39th Street,Kansas City,MO,64111 +-94.586379,39.051804,"41st & Main - Kansas City MO (D, W)",4101 Main Street,Kansas City,MO,64111 +-94.590505,39.041478,Country Club Plaza - Kansas City MO (W),302 Nichols Rd.,Kansas City,MO,64112 +-94.606619,38.967384,Ward Parkway - Kansas City MO (W),8600 Ward Parkway,Kansas City,MO,64114 +-94.584313,39.195361,Hy Vee Kansas City #2 - Kansas City MO,207 NE Englewood Road,Kansas City,MO,64118 +-94.572366,39.213097,Ball's Foods - Kansas City #11 - Kansas City MO,4820 N. Oak TFWY,Kansas City,MO,64118 +-94.548469,39.210023,Gladstone - Gladstone MO (W),6417 North Prospect Avenue,Gladstone,MO,64119 +-94.471671,39.052429,Sheraton Kansas City Sports Complex - Kansas City MO,9103 E. 39th St.,Kansas City,MO,64133 +-94.607953,38.890451,"135th & State Line - Kansas City MO (D, W)",13121 State Line Road,Kansas City,MO,64145 +-94.531952,38.877886,Super Target Kansas City ST-1840 - Kansas City MO,1201 W. 136th St.,Kansas City,MO,64145 +-94.644774,39.20929,Hen House Market #29 Kansas City - Kansas City MO,6238 N. Chatham Ave.,Kansas City,MO,64151 +-94.660264,39.259968,Target Kansas City NW T-2423 - Kansas City MO,9040 NW Skyview Ave.,Kansas City,MO,64154 +-94.651157,39.247021,I-29 & Barry - Kansas City MO (W),6234 W. Barry Rd.,Kansas City,MO,64154 +-94.46388,39.247207,Super Target-Kansas City T-1455 - Kansas City MO,9220 NE Barry Rd.,Kansas City,MO,64157 +-94.717319,39.303041,MCI - KC Term C Column 38-40 - Kansas City MO (A),241 Paris St.,Kansas City,MO,64195 +-94.717319,39.303041,MCI - KC Term A Food Court - Kansas City MO (A),241 Paris St.,Kansas City,MO,64195 +-94.717319,39.303041,MCI - KC Term B Food Crt. - Kansas City MO (A),241 Paris St.,Kansas City,MO,64195 +-94.814972,39.813138,Target St. Joseph T-1977 - St. Joseph MO,5201 N. Belt Hwy.,St Joseph,MO,64506 +-94.803549,39.769078,"Belt Hwy. & Faraon - St. Joseph MO (D, W)",324 N. Belt Hwy.,St. Joseph,MO,64506 +-94.531683,37.071482,Price Cutter-Joplin #57 - Joplin MO,1870 S. Maiden Lane,Joplin,MO,64801 +-94.476794,37.093712,"3rd & Range Line - Joplin MO (D, W)",323 N. Range Line,Joplin,MO,64801 +-94.473786,37.084208,Target Joplin T-774 - Joplin MO,3151 E. 7th St.,Joplin,MO,64801 +-94.47844,37.054673,"32nd & Range Line - Joplin MO (D, W)",3324 S. Range Line Rd.,Joplin,MO,64804 +-92.600516,38.161531,Hy Vee Foods-Osage Beach - Osage Beach MO,3870 Highway D,Osage Beach,MO,65049 +-92.612414,38.171154,"US-54 & SR-42 - Osage Beach MO (D, W)",3815 Hwy. 54,Osage Beach,MO,65065 +-92.600947,38.161211,Target Osage Beach T-1914 - Osage Beach MO,3880 Hwy. D,Osage Beach,MO,65065 +-92.256171,38.586187,HyVee Foods - Jefferson City - Jefferson City MO,3721 W. Truman Blvd.,Jefferson City,MO,65109 +-92.215854,38.580753,Target Jefferson City T-752 - Jefferson City MO,735 W. Stadium Blvd.,Jefferson City,MO,65109 +-92.327584,38.948452,9th & Elm - Columbia MO (W),304 South 9th Street,Columbia,MO,65201 +-92.2896,38.9563,"Broadway & Brickton - Columbia MO (D, W)",2500 Broadway Bluffs Drive,Columbia,MO,65201 +-92.383411,38.954909,Hy Vee Foods-Columbia - Columbia MO,3100 W. Broadway,Columbia,MO,65203 +-92.380816,38.954735,Broadway & Fairview - Columbia MO (D),2901 W. Broadway,Columbia,MO,65203 +-92.325167,38.945282,Univ. Missouri - Columbia Union Squ - Columbia MO,N 121 Memorial Union,Columbia,MO,65211 +-93.26369,38.707986,"Hwy. 50 & Thompson - Sedalia MO (D, W)",3040 W. Broadway,Sedalia,MO,65301 +-92.114174,37.761913,Ft. Leonard Wood Community Center - Ft. Leonard Wood MO,233 Illinois Ave.,Ft. Leonard Wood,MO,65473 +-92.66906,37.684582,Price Cutter - Lebanon #29 - Lebanon MO,550 N. Jefferson Ave.,Lebanon,MO,65536 +-92.222759,37.805881,Price Cutter - Waynesville MO - Waynesville MO,300 Ichord Avenue,Waynesville,MO,65583 +-93.718084,36.968068,Price Cutter #15 Aurora MO - Aurora MO,708 S. Elliott,Aurora,MO,65605 +-93.252872,36.642363,Music City Centre - Branson - Branson MO,1835 W. Hwy. 76,Branson,MO,65616 +-93.2518,36.65,Target Branson T-2098 - Branson MO,200 Ozark Scenic Dr,Branson,MO,65616 +-93.215744,36.644106,"Sycamore & Main - Branson MO (D, W)",201 East Main Street,Branson,MO,65616 +-93.302051,37.038245,Ramey-Price Cutter-Nixa #55 - Nixa MO,400 Massey Road,Nixa,MO,65714 +-93.223209,37.062512,Ramey-Price Cutter-Ozark - Ozark MO,5504 N. 17th St.,Ozark,MO,65721 +-93.463833,37.125919,Price Cutter Plus - Republic MO - Republic MO,1013 US Highway 60 East,Republic,MO,65738 +-93.315674,37.196104,Price Cutter - Springfield MO #3 - Springfield MO,1720 W. Grand,Springfield,MO,65802 +-93.262471,37.202654,"Glenstone & Cherry - Springfield MO (D, W)",631 S. Glenstone Ave.,Springfield,MO,65802 +-93.259132,37.226249,Price Cutter - Springfield #18 - Springfield MO,1901 E. Division St.,Springfield,MO,65803 +-93.2629,37.151897,Target Springfield T-1031 - Springfield MO,1825 E. Primrose St.,Springfield,MO,65804 +-93.262766,37.16254,Battlefield Mall - Springfield MO,2825 S. Glenstone,Springfield,MO,65804 +-93.2381,37.181463,Dillon's-Springfield #112 - Springfield MO,2843 E. Sunshine,Springfield,MO,65804 +-93.229274,37.15806,Ramey-Price Cutter-Springfield #50 - Springfield MO,3260 East Battlefield Rd.,Springfield,MO,65804 +-93.320981,37.139367,Ramey-Price Cutter-Springfield - Springfield MO,2021 West Republic Rd.,Springfield,MO,65807 +-93.296265,37.182543,"Sunshine & Campbell - Springfield MO (D, W)",433 W. Sunshine,Springfield,MO,65807 +-93.295899,37.147822,"Campbell & Cowden - Springfield MO (D, W)",3628 S. Campbell Ave.,Springfield,MO,65807 +-93.277065,37.136051,Price Cutter-Springfield #51 - Springfield MO,4228 S. National Ave.,Springfield,MO,65809 +-93.295156,37.17941,Bass Pro Shops - Springfield - Lobb - Springfield MO,1935 S. Campbell,Springfield,MO,65898 +-94.91998,39.361195,Fort Leavenworth - Fort Leavenworth KS,881 McClellan Ave.,Fort Leavenworth,KS,66027 +-95.235916,38.972034,7th & Massachusetts - Lawrence KS (W),647 Massachusetts Ave.,Lawrence,KS,66044 +-95.260576,38.926359,Super Target Lawrence ST-0531 - Lawrence KS,3201 Iowa,Lawrence,KS,66046 +-95.246864,38.94276,Dillon Food Store-Lawrence #70 - Lawrence KS,1015 W. 23rd,Lawrence,KS,66046 +-94.908901,39.295883,Price Chopper # 20 - Leavenworth KS,2107 S. 4th Street,Leavenworth,KS,66048 +-95.295776,38.971511,Dillons-Lawrence #19 - Lawrence KS,4701 West 6th,Lawrence,KS,66049 +-95.312538,38.971627,Dillon Food Store-Lawrence #68 - Lawrence KS,3000 W. 6th St.,Lawrence,KS,66049 +-94.775023,38.912674,"119th & I 35 - Olathe KS (D, W)",16521 W. 119th Street,Olathe,KS,66061 +-94.867516,38.883659,"Blackbob Marketplace - Olathe KS (D, W)",15225 West 135th Street,Olathe,KS,66062 +-94.77961,38.837354,Price Chopper-Olathe #40 - Olathe KS,15970 S. Mur Len Rd.,Olathe,KS,66062 +-94.765115,38.912658,Super Target Olathe ST-1756 - Olathe KS,15345 W. 119th St.,Olathe,KS,66062 +-94.761302,38.854998,"151st & Blackbob - Olathe KS (D, W)",15094 S. Blackbob Rd.,Olathe,KS,66062 +-94.754502,38.912695,"119th & Blackbob - Olathe KS (D, W)",14605 W. 119th Street,Olathe,KS,66062 +-94.8334,39.1233,Target Kansas City T-2222 - Kansas City KS,10900 Stadium Pkwy,Kansas City,KS,66111 +-94.686552,39.023499,Hen House Market-Merriam #31 - Merriam KS,5800 Antioch Rd.,Merriam,KS,66202 +-94.629718,39.001932,Prairie Village - Prairie Village KS (W),6970 Mission Rd.,Prairie Village,KS,66208 +-94.660736,38.912831,119th & Glenwood - Overland Park KS (W),6555 W. 119th St.,Overland Park,KS,66209 +-94.608,38.908865,Leawood Plaza - Leawood KS (W),12130 State Line Road,Leawood,KS,66209 +-94.72407,38.927539,Hen House #34 - Overland Park - Overland Park KS,11930 College Blvd.,Overland Park,KS,66210 +-94.701061,38.927351,Corporate Woods - Overland Park KS (W),9932 College Blvd.,Overland Park,KS,66210 +-94.667835,38.931083,Marriott Overland Park - Overland Park KS,10800 Metcalf,Overland Park,KS,66210 +-94.637829,38.914987,Hen House-Leawood #24 - Leawood KS,11721 Roe Ave.,Leawood,KS,66211 +-94.667499,38.969388,"89th & Metcalf - Overland Park KS (D, W)",8801 Metcalf,Overland Park,KS,66212 +-94.702788,38.912945,119th St. & Hwy. 69 - Overland Park KS (W),10152 W. 119th Street,Overland Park,KS,66213 +-94.68629,38.902414,"127th & Antioch - Overland Park KS (D, W)",12551 Antioch Road,Overland Park,KS,66213 +-94.672498,38.908645,Super Target Overland Park ST-1757 - Overland Park KS,12200 Blue Valley Pkwy,Overland Park,KS,66213 +-94.720547,38.951257,Target Overland Park W. T-2043 - Overland Park KS,11501 W. 97th St.,Overland Park,KS,66214 +-94.759453,38.971128,Hen House-Lenexa #19 - Shawnee Mission KS,15000 87th Pkwy,Shawnee Mission,KS,66215 +-94.738999,38.971083,87th and Pflumm - Lenexa KS (W),13218 West 87th Street,Lenexa,KS,66215 +-94.72358,38.992832,75th & Quivira - Shawnee KS (W),7411 Quivera Road,Shawnee,KS,66216 +-94.76892,39.00894,Super Target Shawnee ST-1759 - Shawnee Mission KS,15700 Shawnee Mission Park,Shawnee Mission,KS,66217 +-94.6318,38.8646,"135th & Briar - Leawood KS (D, W)",13480 Briar Street,Leawood,KS,66224 +-94.839457,39.008016,"Shawnee Mission & Monticello - Shawnee KS (D, W)",6620 Monticello Road,Shawnee,KS,66226 +-94.669312,38.854705,"151st & Marty St. - Overland Park KS (D, W)",7230 W. 151st,Overland Park,KS,66233 +-96.7892,39.0837,Ft. Riley - Ft. Riley KS,2100 Trooper Dr,Ft. Riley,KS,66442 +-96.575819,39.186469,"Bluemont & Manhattan - Manhattan KS (D, W)",1219 Bluemont Ave.,Manhattan,KS,66502 +-96.55781,39.183876,Dillon Food Store-Manhattan #15 - Manhattan KS,130 Sarber Lane,Manhattan,KS,66502 +-95.7617,39.045002,"I-470 & Wanamaker - Topeka KS (D, W)",1223 SW Wanamaker Road,Topeka,KS,66604 +-95.782906,39.014411,Dillon's - Topeka #37 - Topeka KS,6829 SW 29th,Topeka,KS,66614 +-94.704926,37.435806,"29th & Broadway - Pittsburg KS (D, W)",2828 N. Broadway Street,Pittsburg,KS,66762 +-96.218736,38.421009,"I-35 & I-335 - Emporia KS (D, W)",2916 Eaglecrest Drive,Emporia,KS,66801 +-97.242211,37.56849,Target Derby T-2448 - Derby KS,2024 North Rock Rd.,Derby,KS,67037 +-97.362971,37.721201,"21st & Amidon - Wichita KS (D, W)",2166 N. Amidon,Wichita,KS,67203 +-97.463365,37.723971,"Maize Rd. & 21st - Wichita KS (D, W)",2241 North Maize Road,Wichita,KS,67205 +-97.461731,37.64286,Super Target Wichita ST-1945 - Wichita KS,2727 N. Maize Rd.,Wichita,KS,67205 +-97.461072,37.723769,Dillon Food Store-Wichita #49 - Wichita KS,10222 W. 21st St.,Wichita,KS,67205 +-97.24659,37.692586,Dillon Food Store-Wichita #20 - Wichita KS,7707 E. Central,Wichita,KS,67206 +-97.244086,37.694169,"Central & Rock Rd. - Wichita KS (D, W)",8008 East Central,Wichita,KS,67206 +-97.211566,37.72434,Super Target Wichita ST-1944 - Wichita KS,10800 E. 21st St. N.,Wichita,KS,67206 +-97.24398,37.664311,"Harry & Rock - Wichita KS (D, W)",1600 South Rock Rd.,Wichita,KS,67207 +-97.227332,37.665623,Dillon-Wichita #12 - Wichita KS,9450 E. Harry St.,Wichita,KS,67207 +-97.431181,37.678095,Target Wichita T-1943 - Wichita KS,7575 W. Maple St.,Wichita,KS,67209 +-97.464141,37.692787,Dillon's-Wichita #72 - Wichita KS,10515 West Central,Wichita,KS,67212 +-97.389985,37.675013,"Kellogg & West - Wichita KS (D, W)",583 S. West Street,Wichita,KS,67213 +-97.352685,37.648785,"Pawnee & Seneca - Wichita KS (D, W)",2525 S. Seneca,Wichita,KS,67217 +-97.26241,37.750677,Dillon's-Wichita #56 - Wichita KS,3707 N. Woodlawn,Wichita,KS,67220 +-97.244223,37.724283,Dillon's-Wichita #66 - Wichita KS,2244 North Rock Road Court,Wichita,KS,67226 +-97.244051,37.738162,"29th & Rock - Wichita KS (D, W)",3000 North Rock Road,Wichita,KS,67226 +-97.508599,37.678678,Dillon's - Wichita #81 - Wichita KS,14415 West Maple,Wichita,KS,67235 +-97.9012,38.0727,"17th & Lorraine - Hutchinson KS (D, W)",1502 E. 17th Ave.,Hutchinson,KS,67501 +-90.126852,30.001052,424 Veterans Hwy. - Metairie LA (D),424 Veterans Memorial Blvd.,Metairie,LA,70005 +-90.1911,30.0122,"Veterans Blvd. & Kingman St. - Metairie LA (D, W)",4312 Veterans Blvd.,Metairie,LA,70006 +-90.030943,29.888919,Terry Pkwy. & Belle Chase Hwy. - Gretna LA (D),1199 Terry Parkway,Gretna,LA,70056 +-90.231829,30.005928,"Veterans & Massachusetts - Kenner LA (D, W)",2705 Veterans Memorial Blvd.,Kenner,LA,70062 +-90.257126,30.021269,Chateau & Esplande - Kenner LA (D),817 W. Esplanade Ave.,Kenner,LA,70065 +-90.098497,29.879809,"Barataria Blvd. & Lapalco Blvd. - Marrero LA (D, W)",1677 Barataria Blvd.,Marrero,LA,70072 +-90.064458,29.942651,New Orleans Convention Ctr. - New Orleans LA,900 Convention Ctr. Blvd.,New Orleans,LA,70103 +-90.082502,29.926218,Magazine & Washington - New Orleans LA,2801 Magazine Street,New Orleans,LA,70115 +-90.129495,29.94181,7700 Maple Street - New Orleans LA,7700 Maple Street,New Orleans,LA,70118 +-90.214094,29.951299,"Jefferson Hwy. & Upstream St. - River Ridge LA (D, W)",9301 Jefferson Hwy.,River Ridge,LA,70123 +-90.189114,29.966381,Elmwood - Harahan LA (D),5161 Citrus Blvd.,Harahan,LA,70123 +-90.105783,30.004355,Harrison Ave. & Memphis St. - New Orleans LA (W),800 Harrison Ave.,New Orleans,LA,70124 +-90.067726,29.951872,Sheraton Lobby - New Orleans LA,500 Canal Street,New Orleans,LA,70130 +-90.067647,29.952393,Marriott- New Orleans-Lobby - New Orleans LA,555 Canal Street,New Orleans,LA,70130 +-90.064673,29.94432,New Orleans Marriott Convention Ctr. - New Orleans LA,800 Convention Center Blvd.,New Orleans,LA,70130 +-90.064256,29.949739,Harrahs Casino New Orleans - New Orleans LA,8 Canal St.,New Orleans,LA,70130 +-90.065754,29.951082,Canal Place - New Orleans LA,365 Canal St.,New Orleans,LA,70130 +-90.815062,29.81068,"Canal & Glenwild - Thibodaux LA (D, W)",612 North Canal Blvd.,Thibodaux,LA,70301 +-90.755397,29.612398,"Martin Luther King & Corporate Dr. - Houma LA (D, W)",1731 Martin Luther King Blvd.,Houma,LA,70360 +-90.46831,30.5119,Southeast Louisiana University - Hammond LA,1211 SGA Drive,Hammond,LA,70402 +-90.45711,30.4827,Target Hammond - T-2531 - Hammond LA,2023 Hammond Square Dr,Hammond,LA,70403 +-90.14205,30.444597,Target Covington T-1876 - Covington LA,69320 Hwy. 21,Covington,LA,70433 +-90.10249,30.4622,"Lake Dr. & US 190 - Covington LA (D, W)",206 Lake Drive,Covington,LA,70433 +-90.090515,30.3737,"N. Causeway & Florida - Mandeville LA (D, W)",3461 E. Causeway Approach,Mandeville,LA,70448 +-89.779153,30.286452,Hwy. 11 & Gause - Slidell LA (W),1290 Front Street,Slidell,LA,70458 +-89.74807,30.284262,"I-10 & Gause - Slidell LA (D, W)",798 E. I-10 Service Road,Slidell,LA,70458 +-89.825887,30.305264,"Northshore Blvd. & I-12 - Slidell LA (D, W)",179 Northshore Blvd.,Slidell,LA,70460 +-90.087417,30.393571,"3601 Hwy. 190 (Bank One) - Mandeville LA (D, W)",3601 Highway 190,Mandeville,LA,70471 +-91.991207,30.26355,Target Layfayette North T-2377 - Lafayette LA,3225 Louisiana Ave.,Lafayette,LA,70501 +-92.077272,30.175154,"Johnston & Sears - Lafayette LA (D, W)",5709 Johnston Street,Lafayette,LA,70503 +-92.075054,30.187025,"Ambassador Pkwy. & Inez - Lafayette LA (D, W)",3148 Ambassador Caffery Pkwy,Lafayette,LA,70506 +-92.057646,30.16411,Ambassador Caffery & Settlers Trace - Lafayette LA (D),4300 Ambassador Caffery Pkwy,Lafayette,LA,70508 +-92.057607,30.164134,Super Target Lafayette ST-1473 - Lafayette LA,4313 Ambassador Caffery Pkwy,Lafayette,LA,70508 +-92.013925,30.188524,"Kaliste Saloom & Pinhook - Lafayette LA (D, W)",1907 West Pinhook Rd.,Lafayette,LA,70508 +-91.948,30.1548,"US Hwy. 90 & Albertsons - Broussard LA (D, W)",111 Celebrity Dr,Broussard,LA,70518 +-91.818001,29.984237,"Admiral Doyle & Lewis - New Iberia LA (D, W)",1103 East Admiral Doyle,New Iberia,LA,70560 +-93.24924,30.195496,Hwy. 210 & Nelson - Lake Charles LA,3479 Nelson Road,Lake Charles,LA,70605 +-93.217916,30.184245,"Ryan & Sale - Lake Charles LA (D, W)",4055 Ryan St.,Lake Charles,LA,70605 +-90.956979,30.457196,"Range Rd. & Rushing Rd. - Denham Springs LA (D, W)",2367 South Range Ave.,Denham Springs,LA,70726 +-90.95625,30.526575,"Hwy. 16 & Hwy. 64 - Denham Springs LA (D, W)",31669 LA Hwy. 16,Denham Springs,LA,70726 +-90.949691,30.211144,"I-10 & Hwy. 30 - Gonzales LA (D, W)",2530 Steven B. Tanger,Gonzales,LA,70737 +-91.026911,30.349202,"Highland Rd. & I-10 - Baton Rouge LA (D, W)",18169 Highland Rd.,Baton Rouge,LA,70801 +-91.140364,30.420439,"College & Bennington - Baton Rouge LA (D, W)",3009 College Drive,Baton Rouge,LA,70808 +-91.124517,30.424606,Corporate & Jefferson - Baton Rouge LA (W),7415 Corporate Blvd.,Baton Rouge,LA,70809 +-91.063071,30.387028,Super Target Baton Rouge ST-1369 - Baton Rouge LA,6885 Siegen Ln.,Baton Rouge,LA,70809 +-91.097653,30.379398,Perkins & Bluebonnet - Baton Rouge LA (W),7777 Bluebonnet Blvd.,Baton Rouge,LA,70810 +-91.051997,30.417901,"Sherwood Forest & Lake Sherwood - Baton Rouge LA (D, W)",3888 S. Sherwood Forest #4,Baton Rouge,LA,70816 +-91.024236,30.441239,Super Target Baton Rouge ST-2089 - Baton Rouge LA,2001 Millerville Rd.,Baton Rouge,LA,70816 +-93.719121,32.43992,Super Target Shreveport ST-1347 - Shreveport LA,7110 Youree Dr,Shreveport,LA,71105 +-93.718215,32.443078,"70th & Youree - Shreveport LA (D, W)",7017 Youree Drive,Shreveport,LA,71105 +-93.760698,32.3982,"Bert Kouns & I-49 - Shreveport LA (D, W)",319 Bert Kouns IND Loop,Shreveport,LA,71106 +-93.745992,32.458295,Line & Pierremont - Shreveport LA (W),4800 Line Ave.,Shreveport,LA,71106 +-93.560688,32.500625,Barksdale AFB - Shreveport LA,Barksdale AFB,Shreveport,LA,71110 +-93.7028,32.5515,Target Bossier City T-2273 - Bossier City LA,2735 Beene Blvd.,Bossier City,LA,71111 +-93.698587,32.524879,"I-20 & Airline - Bossier City LA (D, W)",1979 Airline Drive,Bossier City,LA,71112 +-93.71457,32.559635,"Airline & Beene - Bossier City LA (D, W)",2519 Beene Blvd.,Bossier City,LA,71171 +-92.11557,32.530013,"N. 18th St. & Forsythe - Monroe LA (D, W)",1810 Forsythe Ave.,Monroe,LA,71201 +-92.22507,34.7181,LIT - Little Rock Simply Books - Little Rock AR (A),1Airport Rd.,Little Rock,AR,71202 +-92.07568,32.527912,ULM Student Center - Monroe LA,700 University Ave.,Monroe,LA,71209 +-92.716095,32.5259,Grambling University - Grambling LA,100 Founder St.,Grambling,LA,71245 +-92.653054,32.538401,"I-20 & Cooktown - Ruston LA (D, W)",1200 Cooktown Rd.,Ruston,LA,71270 +-92.473998,31.283142,Kroger - Alexandria #381 - Alexandria LA,1422 Macarthur,Alexandria,LA,71301 +-92.464858,31.276853,Albertsons-Alexandria #2715 - Alexandria LA,2265 S. MacArthur,Alexandria,LA,71301 +-93.061815,34.458657,"Central Ave. & Buena Vista - Hot Springs AR (D, W)",3948 Central Ave.,Hot Springs,AR,71913 +-92.525804,34.608254,"I 30 & Alcoa - Benton AR (D, W)",20701 I-30,Benton,AR,72015 +-92.530418,34.604314,Target Bryant T-2204 - Bryant AR,7377 Alcoa Rd.,Bryant,AR,72022 +-92.418564,35.091108,"Hwy. 64 & Museum - Conway AR (D, W)",905 East Oak Street,Conway,AR,72032 +-92.41445,35.086279,Target Conway T-1891 - Conway AR,501 Elsinger Blvd.,Conway,AR,72032 +-92.401634,35.145866,"Hwy. 65 & O'Bryant - Conway AR (D, W)",1035 Hwy. 65 North,Conway,AR,72032 +-92.454202,35.079248,Univ. Central Arkansas - Conway AR,201 Donaghey Ave.,Conway,AR,72035 +-92.108753,34.88588,"Hwy. 67 & Vandenberg - Jacksonville AR (D, W)",2090 John Harden,Jacksonville,AR,72076 +-92.4013,34.8583,"Maumelle & Audubon - Maumelle AR (D, W)",105 Commons Drive,Maumelle,AR,72113 +-92.2551,34.79935,"JFK & McCain - North LIttle Rock AR (D, W)",4824 JFK,North LIttle Rock,AR,72116 +-92.276455,34.740047,"I 630 & Broadway - Little Rock AR (D, W)",917 S. Broadway,Little Rock,AR,72201 +-92.218666,34.728046,LIT Baggage Claim A - Little Rock AR (A),1Airport Rd.,Little Rock,AR,72202 +-92.383564,34.746727,Baptist Health - Little Rock - Little Rock AR,9601 Lile Drive,Little Rock,AR,72205 +-92.341041,34.753037,University & W. Markham - Little Rock AR (W),201 N. University Ave.,Little Rock,AR,72205 +-92.357064,34.771016,"Cantrell & Mississippi - Little Rock AR (D, W)",7525 Cantrell Rd.,Little Rock,AR,72207 +-92.337897,34.770237,Kavanaugh & Pierce - Little Rock AR (W),5719 Kavanaugh Street,Little Rock,AR,72207 +-92.414892,34.755681,Target Little Rock West T-1114 - Little Rock AR,12700 Chenal Pkwy,Little Rock,AR,72211 +-92.401218,34.746451,Chenal & Financial Center - Little Rock AR (W),11401 Financial Centre Pkwy,Little Rock,AR,72211 +-92.411325,34.797834,"Hwy. 10 & Sam Peck - Little Rock AR (D, W)",12901 Cantrell,Little Rock,AR,72227 +-92.379224,34.759033,"Rodney Parham & Treasure Hill - Little Rock AR (D, W)",9401 N. Rodney Parham Rd.,Little Rock,AR,72227 +-90.668851,35.821167,Target Jonesboro T-1919 - Jonesboro AR,3000 E. Highland Dr,Jonesboro,AR,72401 +-94.174731,36.064463,University of Arkansas - Fayetteville AR,111 Ozark Ave.,Fayetteville,AR,72701 +-94.190183,36.0552,Fayetteville (near I-540),2117 W Martin Luther King Blvd,Fayetteville,AR,72701 +-94.145671,36.12016,College & Joyce - Fayetteville AR (D),3901 Shiloh Drive,Fayetteville,AR,72703 +-94.2121,36.3565,Hwy. 71B & 14th St. - Bentonville AR,1401 S. Walton Blvd.,Bentonville,AR,72712 +-94.1999,36.3357,"Walton & J Street - Bentonville AR (D, W)",913 SE Walton Blvd.,Bentonville,AR,72712 +-94.1804,36.3345,"Walnut & 46th - Rogers AR (D, W)",4520 W. Walnut,Rogers,AR,72756 +-94.176704,36.3025,Target Rogers T-2498 - Rogers AR,2404 Promenade Blvd.,Rogers,AR,72758 +-94.1589,36.2834,"I-540 & Pleasant Grove - Rogers AR (D, W)",2605 W. Pleasant Grove Road,Rogers,AR,72758 +-93.107711,35.282535,"Weir & Parkway - Russellville AR (D, W)",2220 East Parkway,Russellville,AR,72802 +-94.389273,35.33835,Target Forth Smith T-2284 - Ft. Smith AR,4001 Phoenix Ave.,Ft. Smith,AR,72903 +-94.363093,35.358753,"I-540 & Rogers Ave. - Fort Smith AR (D, W)",6203 Rogers Ave.,Fort Smith,AR,72903 +-97.461433,35.609502,"Memorial & Bryant - Edmond OK (D, W)",2929 E. Memorial,Edmond,OK,73013 +-97.460658,35.638284,15th & Bryant - Edmond OK (W),1489 E. 15th,Edmond,OK,73013 +-97.443711,35.208672,University of Oklahoma - Student Un - Norman OK,900 Asp Ave.,Norman,OK,73019 +-97.483966,35.638008,"15th & Broadway - Edmond OK (D, W)",1509 South Broadway,Edmond,OK,73034 +-97.475035,35.657996,Universiy of Central Oklahoma - Edmond OK,100 N. University Dr,Edmond,OK,73034 +-97.466509,35.653138,"2nd & Bauman - Edmond OK (D, W)",1001 E. 2ND ST,Edmond,OK,73034 +-97.46443,35.65041,Super Target Edmond ST-1398 - Edmond OK,1200 E. 2nd St.,Edmond,OK,73034 +-97.482912,35.235603,Super Target Norman ST-2220 - Norman OK,1400 24th Ave. NW,Norman,OK,73069 +-97.455521,35.218107,"Main & Flood - Norman OK (D, W)",820 W. Main St.,Norman,OK,73069 +-97.44347,35.21146,Boyd & Asp - Norman OK (W),225 W. Boyd,Norman,OK,73069 +-97.496438,35.23283,36th & Robinson - Norman OK (W),3750 W. Robinson,Norman,OK,73072 +-97.76019,35.493432,"I 40 & Garth Brooks - Yukon OK (D, W)",1501 Garth Brooks Blvd.,Yukon,OK,73085 +-97.760252,35.491625,Target Yukon T-2460 - Yukon OK,1700 Garth Brooks Blvd.,Yukon,OK,73099 +-97.521757,35.477262,Saint Anthony Hospital - Oklahoma City OK,535 NW 9th St.,Oklahoma City,OK,73102 +-97.510441,35.46308,Reno & Mickey Mantle - Oklahoma City OK (W),200 S. Oklahoma,Oklahoma City,OK,73104 +-97.403124,35.435288,"29th & Air Depot - Midwest City OK (D, W)",7203 SE 29th Street,Midwest City,OK,73110 +-97.396175,35.436741,Target Midwest City T-2061 - Midwest City OK,7305 SE 29th St.,Midwest City,OK,73110 +-97.57465,35.530293,"Northwest & Independence - Oklahoma City OK (D, W)",3301 Northwest Expy,Oklahoma City,OK,73112 +-97.56565,35.506145,"36th & May - Oklahoma City OK (D, W)",3616 N. May Avenue,Oklahoma City,OK,73112 +-97.564351,35.524389,Target Oklahoma City N. T-43 - Oklahoma City OK,5400 N. May Ave.,Oklahoma City,OK,73112 +-97.565015,35.547449,"Grand & May - Oklahoma City OK (D, W)",7550 N. May Ave.,Oklahoma City,OK,73116 +-97.531154,35.538271,63rd & Western - Oklahoma City OK (W),6430 Avondale Avenue,Oklahoma City,OK,73116 +-97.545692,35.391473,Penn Square Mall - Oklahoma City OK (W),1901 Northwest Expressway,Oklahoma City,OK,73118 +-97.61943,35.460964,"I-40 & MacArthur - Oklahoma City OK (D, W)",5920 SW 4th Terrace,Oklahoma City,OK,73127 +-97.639536,35.555891,Target Oklahoma City T-1860 - Oklahoma City OK,8315 N. Rockwell Ave.,Oklahoma City,OK,73132 +-97.637896,35.557036,"Rockwell & Northwest Hwy. - Oklahoma City OK (D, W)",8500 N. Rockwell Ave.,Oklahoma City,OK,73132 +-97.61759,35.548687,"NW Expwy & MacArthur - Warr Acres OK (D, W)",5836 Northwest Expressway,Warr Acres,OK,73132 +-97.551016,35.607274,Pennsylvania & Memorial - Oklahoma City OK (W),2116 W. Memorial Road,Oklahoma City,OK,73134 +-97.547693,35.612562,Super Target Quail Springs ST-1397 - Oklahoma City OK,13924 N. Pennsylvania Ave.,Oklahoma City,OK,73134 +-97.619584,35.608217,"Memorial & MacArthur - Oklahoma City OK (D, W)",5800 W. Memorial,Oklahoma City,OK,73142 +-97.544078,35.391073,"I-240 & Pennsylvania - Oklahoma City OK (D, W)",1506 SW 74th,Oklahoma City,OK,73159 +-97.496034,35.319261,"19th & Telephone - Moore OK (D, W)",620 SW 19th Street,Moore,OK,73160 +-97.16646,34.183952,"I 35 & 12th - Ardmore OK (D, W)",911 Holiday Dr,Ardmore,OK,73401 +-98.441516,34.623355,"Cache & NW 40th - Lawton OK (D, W)",3908 Cache Road,Lawton,OK,73505 +-97.906758,36.390807,"Cleveland & Owen K. Garriott - Enid OK (D, W)",2326 W. Owen K. Garriott,Enid,OK,73703 +-95.935161,36.713452,Food Pyramid - Bartlesville OK - Bartlesville OK,2501 SE Washington Blvd.,Bartlesville,OK,74006 +-95.934201,36.750604,Frank Phillips & US 75 - Bartlesville OK (D),3801 East Frank Phillips Blvd.,Bartlesville,OK,74006 +-95.817186,36.060886,"Aspen & Kenosha - Broken Arrow OK (D, W)",2050 W. Kenosha Street,Broken Arrow,OK,74012 +-95.791538,36.070933,Bass Pro Shops - Broken Arrow - Broken Arrow OK,101 Bass Pro Dr,Broken Arrow,OK,74012 +-95.789505,36.0701,Target Broken Arrow T-2422 - Broken Arrow OK,1150 E. Hillside Dr,Broken Arrow,OK,74012 +-95.868848,36.329312,Target Owasso T-2095 - Owasso OK,9350 N. 121st E. Ave.,Owasso,OK,74055 +-95.841696,36.288872,"96th & US 169 - Owasso OK (D, W)",9035 North 121st,Owasso,OK,74055 +-97.058671,36.125983,Food Pyramid - Stillwater OK - Stillwater OK,421 N. Main,Stillwater,OK,74075 +-97.055021,36.126943,"Main & Hall of Fame - Stillwater OK (D, W)",300 E. Hall of Fame,Stillwater,OK,74075 +-95.991096,36.153993,Crowne Plaza Hotel - Tulsa - Tulsa OK,100 E. 2nd St.,Tulsa,OK,74103 +-95.975682,36.105931,Food Pyramid - Tulsa #61 - Tulsa OK,3915 S. Peoria Ave.,Tulsa,OK,74105 +-95.975674,36.112335,E. 35th & Peoria - Tulsa OK (W),3535 S. Peoria,Tulsa,OK,74105 +-95.966116,36.060218,Utica & 21st St. - Tulsa OK (W),1832 Utica Square,Tulsa,OK,74114 +-95.895655,36.191627,TUL Main Terminal Presecurity - Tulsa OK (A),7777 E. Apache Street,Tulsa,OK,74115 +-96.011505,36.0626,Target Tulsa SW T-2357 - Tulsa OK,7437 S. Olympia Ave. W.,Tulsa,OK,74132 +-95.886611,36.017367,Food Pyramid - Tulsa #66 - Tulsa OK,10122 S. Memorial Dr,Tulsa,OK,74133 +-95.886428,36.003244,"111th & Memorial - Tulsa OK (D, W)",11073 S. Memorial Drive,Tulsa,OK,74133 +-95.886328,36.01892,Target Tulsa South T-2542 - Tulsa OK,10019 S. Memorial Dr,Tulsa,OK,74133 +-95.886232,36.062236,Woodland Hills Mall - Tulsa OK (W),7021 South Memorial Drive,Tulsa,OK,74133 +-95.886221,36.060824,"71st & Memorial - Tulsa OK (D, W)",7101 S. Memorial Drive,Tulsa,OK,74133 +-95.868507,36.046395,"81st & Mingo - Tulsa OK (D, W)",9524 E. 81st Street,Tulsa,OK,74133 +-95.857118,36.060991,Super Target Tulsa ST-1782 - Tulsa OK,10711 E. 71st St.,Tulsa,OK,74133 +-95.851821,36.059775,Food Pyramid - Tulsa #64 - Tulsa OK,11214 E. 71st St. S.,Tulsa,OK,74133 +-95.85155,36.062639,71st & Garnett - Tulsa OK (W),11123 E. 71st St. South,Tulsa,OK,74133 +-95.940057,36.089812,51st & Harvard - Tulsa OK (W),5115 S. Harvard Ave.,Tulsa,OK,74135 +-95.937538,36.089784,Food Pyramid - Tulsa #62 - Tulsa OK,3328 E. 51st St. S.,Tulsa,OK,74135 +-95.974969,36.060619,"Quincy & 71st - Tulsa OK (D, W)",1340 East 71st St. S.,Tulsa,OK,74136 +-95.923314,36.047666,Food Pyramid - Tulsa #65 - Tulsa OK,4818 E. 80th St. S.,Tulsa,OK,74136 +-95.922253,36.077003,61st & Yale - Tulsa OK (W),5984 S. Yale,Tulsa,OK,74136 +-95.949516,36.024532,Riverside Pkwy. & S. Delaware Ave. - Tulsa OK (W),9591 S. Riverside Drive,Tulsa,OK,74137 +-95.922152,36.032653,"91st & Yale - Tulsa OK (D, W)",9014 S. Yale Ave.,Tulsa,OK,74137 +-95.887469,36.088937,Food Pyramid - Tulsa #63 - Tulsa OK,7990 E. 51st St. S.,Tulsa,OK,74145 +-95.895655,36.191627,TUL Main Terminal Foodcourt - Tulsa OK (A),7777 E. Apache Street,Tulsa,OK,74155 +-97.067171,36.726172,Food Pyramid - Ponca City OK - Ponca City OK,2005 N. 14th St.,Ponca City,OK,74601 +-96.929764,35.375801,"I 40 & Kickapoo - Shawnee OK (D, W)",4725 N. Kickapoo,Shawnee,OK,74804 +-96.854332,32.938936,Tom Thumb-Addison #2643 - Addison TX,14280 Marsh Lane,Addison,TX,75001 +-96.839268,32.953947,"Midway & Beltline - Addison TX (D, W)",15099 Midway Road,Addison,TX,75001 +-96.656402,33.129801,Target Allen North T-2516 - Allen TX,150 E. Stacy Road Bldg 2400,Allen,TX,75002 +-96.65059,33.115973,Kroger - Allen #548 - Allen TX,1210 N. Greenville Ave.,Allen,TX,75002 +-96.64866,33.086526,Kroger-Allen #544 - Allen TX,1212 E. Bethany Dr,Allen,TX,75002 +-96.920058,32.967735,I 35E & Sandy Lake - Carrollton TX (D),1945 Sandy Lake Rd.,Carrollton,TX,75006 +-96.913806,33.019259,Kroger - Carrollton #460 - Carrollton TX,4038 Old Denton Road,Carrollton,TX,75007 +-96.909321,32.998422,Frankford & Old Denton Rd. - Carrollton TX (W),3052 Old Denton Road,Carrollton,TX,75007 +-96.883747,33.023263,Tom Thumb - Carrollton #2590 - Carrollton TX,4112 N. Josey,Carrollton,TX,75007 +-96.848484,33.025749,"Midway & Park - Carrollton TX (D, W)",3412 E. Hebron Pkwy,Carrollton,TX,75007 +-90.059072,29.892789,Manhattan & Gretna - Harvey LA,1451 Manhattan Blvd.,Harvey,LA,75008 +-96.917125,33.019044,Old Denton & Hebron Pkwy. - Carrollton TX (W),1025 W. Hebron Pkwy,Carrollton,TX,75010 +-96.700512,33.101987,Kroger-Allen #568 - Allen TX,1320 W. Mcdermott Drive,Allen,TX,75013 +-96.6939,33.1108,Macy's - Village of Fairview - Fairview TX,Stacy Rd. & Fairview Pkwy,Fairview,TX,75013 +-96.682857,33.101376,"McDermott & Central Exprwy - Allen TX (D, W)",904 McDermott Drive,Allen,TX,75013 +-96.678033,33.143995,"Hwy. 121 & Watters - Allen TX (D, W)",969 State Hwy. 121,Allen,TX,75013 +-96.638718,33.192715,"Hwy. 75 & Bethany - Allen TX (D, W)",727 S. Central Expressway,Allen,TX,75013 +-96.992333,32.971192,Denton Tap & Sandy Lake Rd. - Coppell TX (W),106 N. Denton Tap Rd.,Coppell,TX,75019 +-96.957994,32.953981,MacArthur & Beltline - Coppell TX (W),817 S. MacArthur,Coppell,TX,75019 +-96.770834,33.073475,Legacy & Coit (BB) - Plano TX (W),3949 Legacy Rd.,Plano,TX,75023 +-96.71655,33.041325,"Parker & Alma - Plano TX (D, W)",1101 W. Parker Rd.,Plano,TX,75023 +-96.820684,33.076923,Legacy & Dallas N. Tollway - Plano TX (W),5760 Legacy Drive,Plano,TX,75024 +-96.77202,33.057019,Spring Creek & Coit - Plano TX (W),6205 Coit Road,Plano,TX,75024 +-96.766892,32.852049,Randall's - Dallas #2642 - Dallas TX,5809 E. Lovers Lane,Dallas,TX,75026 +-97.082961,33.067652,Super Target Flower Mound ST-1517 - Flower Mound TX,5959 Long Prairie Rd.,Flower Mound,TX,75028 +-97.071183,33.034605,Kroger-Flower Mound #456 - Flower Mound TX,2709 Cross Timbers Rd.,Flower Mound,TX,75028 +-97.069259,33.014906,FM 3040 & FM 2499 (BB) - Flower Mound TX (W),2646 Flower Mound Road,Flower Mound,TX,75028 +-97.062573,33.072327,FM 407 & Morris Rd. - Flower Mound TX (W),2201 Justin Road,Flower Mound,TX,75028 +-97.061908,33.072476,Tom Thumb - Flower Mound #3575 - Flower Mound TX,2301 Justin Rd.,Flower Mound,TX,75028 +-97.046186,33.010895,FM 3040 & Gerault - Flower Mound TX (D),1181 Flower Mound Road #704,Flower Mound,TX,75028 +-97.037783,33.041781,"Cross Timbers & Garden Ridge - Flower Mound TX (D, W)",701 Cross Timbers,Flower Mound,TX,75028 +-97.037718,33.040922,Tom Thumb-Flower Mound #3652 - Flower Mound TX,745 Cross Timbers Rd.,Flower Mound,TX,75028 +-96.475782,32.896651,I 30 & Horizon - Rockwall TX (D),1699 Laguna Dr,Rockwall,TX,75032 +-96.862111,33.152593,"Teel & Main St. - Frisco TX (D, W)",3193 Main Street,Frisco,TX,75034 +-96.838891,33.113915,"Lebanon & Legacy - Frisco TX (D, W)",4150 Legacy Drive,Frisco,TX,75034 +-96.810601,33.098822,Stonebriar Mall (In-Line) - Frisco TX (W),2601 Preston Rd.,Frisco,TX,75034 +-96.806041,33.137109,"Preston & Stonebrook - Frisco TX (D, W)",7135 Preston Road,Frisco,TX,75034 +-96.805844,33.106708,"Preston and Warren - Frisco TX (D, W)",3511 Preston Road,Frisco,TX,75034 +-96.805575,33.106191,Super Target Frisco ST-1763 - Frisco TX,3201 Preston Rd.,Frisco,TX,75034 +-96.804264,33.118924,Tom Thumb - Frisco #2581 - Frisco TX,4848 Preston Rd.,Frisco,TX,75034 +-96.755037,33.174497,Super Target Frisco North ST-2338 - Frisco TX,4884 Eldorado Pkwy,Frisco,TX,75034 +-96.733566,33.173018,"Custer & Elderado - Frisco TX (D, W)",11625 Custer Road,Frisco,TX,75035 +-96.73284,33.163526,Custer & 121 - Frisco TX (D),5955 Custer Rd.,Frisco,TX,75035 +-96.963025,32.878428,Randalls-Irving #3621 - Irving TX,4010 N. MacArthur Blvd.,Irving,TX,75038 +-96.960122,32.892546,MacArthur & 114 - Irving TX (W),5904 N. MacArthur,Irving,TX,75039 +-96.646275,32.965437,Super Target Garland ST-1489 - Garland TX,5301 N. Garland Ave.,Garland,TX,75040 +-96.617851,32.954659,Hwy. 78 & 190 - Garland TX,4280 Lavon Drive,Garland,TX,75040 +-96.603617,32.938097,Tom Thumb - Garland #2578 - Garland TX,2535 Northeast Pkwy,Garland,TX,75040 +-96.642233,32.861898,Northwest Hwy. & Centerville Rd. - Garland TX (W),909 Northwest Highway,Garland,TX,75041 +-96.595927,32.8423,"I-30 & Broadway - Garland TX (D, W)",6075 Broadway,Garland,TX,75043 +-96.666855,32.960521,Shiloh & Arapaho - Garland TX (W),2645 Arapaho,Garland,TX,75044 +-96.644369,32.964576,Hwy. 190 & N. Garland - Garland TX (W),5345 N. Garland Avenue,Garland,TX,75044 +-96.994479,32.757755,"I-30 & Belt Line - Grand Prairie TX (D, W)",918 N. Beltline,Grand Prairie,TX,75050 +-97.06163,32.69301,"SH 360 & Mayfield Rd. - Grand Prairie TX (D, W)",2987 State Hwy. 360,Grand Prairie,TX,75052 +-97.058507,32.648364,"360 & Camp Wisdom - Grand Prairie TX (D, W)",3054 Camp Wisdom Road,Grand Prairie,TX,75052 +-97.056262,32.542851,Super Target Grand Prairie ST-2243 - Grand Prairie TX,5270 State Hwy. 360,Grand Prairie,TX,75052 +-97.007718,32.680184,I-20 & Carrier Parkway - Grand Prairie TX (W),3824 Carrier Parkway,Grand Prairie,TX,75052 +-97.003822,32.670883,Tom Thumb-Grand Prairie #1786 - Grand Prairie TX,4215 S. Carrier Pkwy,Grand Prairie,TX,75052 +-96.89022,33.066742,"Main & 121 - The Colony TX (D, W)",3701 Main St.,The Colony,TX,75056 +-96.87625,33.071243,Target Lewisville T-2520 - Lewisville TX,4760 State Highway 121,Lewisville,TX,75056 +-96.970452,33.011754,Super Target Lewisville ST-1395 - Lewisville TX,725 Hebron Pkwy,Lewisville,TX,75057 +-96.969423,33.010197,Hebron & I-35E - Lewisville TX (W),721 Hebron Pkwy. Suite #101,Lewisville,TX,75057 +-96.961359,32.99921,"Hwy. 121 & I-35 - Lewisville TX (D, W)",859 Hwy. 121,Lewisville,TX,75057 +-96.993034,32.84095,Beltline & Hwy. 183 - Irving TX (W),2450 N. Beltline Road,Irving,TX,75062 +-96.99236,32.85475,Tom Thumb-Irving #2559 - Irving TX,3535 Beltline Rd.,Irving,TX,75062 +-96.97888,32.837772,"183 & Story Rd. - Irving TX (D, W)",2501 WestAirport Freeway,Irving,TX,75062 +-96.992542,32.921846,Beltline & 635 - Irving TX (D),8450 N. Beltline Road,Irving,TX,75063 +-96.958761,32.918534,"MacArthur & Ranchview - Irving TX (D, W)",7979 N. MacArthur,Irving,TX,75063 +-96.956965,32.912656,MacArthur & I-635 - Irving TX (W),7750 N. MacArthur,Irving,TX,75063 +-97.178315,32.862197,Randalls-Hurst #2609 - Hurst TX,612 Grapevine Hwy.,Hurst,TX,75064 +-97.04684,33.129514,FM 2181 & Town Hall Road - Hickory Creek TX (W),4000 FM 2181,Hickory Creek,TX,75065 +-97.016934,33.005818,Tom Thumb - Lewisville #1785 - Lewisville TX,1075 W. FM-3040,Lewisville,TX,75067 +-96.9442,33.1714,FM 423 & Eldorado Pkwy. - Little Elm TX (W),2831 Eldorado Parkway,Little Elm,TX,75068 +-96.643403,33.172366,Eldorado Pkwy. & I-75 - McKinney TX (W),2811 Craig Drive,McKinney,TX,75069 +-96.730594,33.128882,Super Target McKinney SW ST-2142 - McKinney TX,8900 State Hwy. 121,McKinney,TX,75070 +-96.682724,33.17448,Kroger-McKinney #567 - McKinney TX,2901 S. Lake Forest Dr,McKinney,TX,75070 +-96.664534,33.167483,Eldorado Pkwy. & Hardin Rd. (McKinney - McKinney TX (W),3001 S. Hardin Boulevard,McKinney,TX,75070 +-96.663271,33.166797,Tom Thumb - McKinney #3573 - McKinney TX,3001 Hardin Boulevard,McKinney,TX,75070 +-96.63279,33.231003,US 380 & US 75 - McKinney TX (W),1787 N. Central Expwy,McKinney,TX,75070 +-96.707087,33.198327,"Virginia & Stonebridge - McKinney TX (D, W)",6841 Virginia Parkway,McKinney,TX,75071 +-96.635667,33.22042,Super Target McKinney ST-2335 - McKinney TX,2025 N. Central Expy,McKinney,TX,75071 +-96.691699,33.057678,"75 & Spring Creek - Plano TX (D, W)",1121 East Springcreek Parkway,Plano,TX,75074 +-96.6776,33.0299,Tom Thumb - Plano #3645 - Plano TX,220 W. 14th Street,Plano,TX,75074 +-96.655584,33.015039,Kroger-Plano #563 - Plano TX,4017 14th St.,Plano,TX,75074 +-96.752021,33.039806,Tom Thumb - Plano #2554 - Plano TX,3100 Independence Pkwy,Plano,TX,75075 +-96.734755,33.038892,Kroger-Plano #581 - Plano TX,2925 Custer Road,Plano,TX,75075 +-96.733206,33.019171,15th & Custer - Plano TX (W),2024 15th Street,Plano,TX,75075 +-96.732142,33.038699,"Custer & Parker - Plano TX (D, W)",3000 Custer,Plano,TX,75075 +-96.714657,33.020349,Creekwalk Village - Plano TX (W),801 15th St.,Plano,TX,75075 +-96.707775,33.03744,Target Plano T-67 - Plano TX,120 W. Parker Rd.,Plano,TX,75075 +-96.767944,32.950535,Beltline & Coit - Richardson TX (W),404 DalRich Village Shopping Ctr,Richardson,TX,75080 +-96.767868,32.977906,Campbell & Coit - Richardson TX (W),1930 N. Coit Rd.,Richardson,TX,75080 +-96.764215,32.978331,Tom Thumb-Dallas #3637 - Dallas TX,1380 W. Campbell Rd.,Dallas,TX,75080 +-96.729211,32.997647,Custer & Renner - Richardson TX (W),710 Renner Rd.,Richardson,TX,75080 +-96.717294,32.974879,"75 & Campbell - Richardson TX (D, W)",101 W. Campbell Road,Richardson,TX,75080 +-96.700039,32.941152,Super Target Richardson ST-1430 - Richardson TX,630 S. Plano Rd.,Richardson,TX,75081 +-96.68319,32.931557,Buckingham & Jupiter - Richardson TX (W),2191 West Buckingham Road,Richardson,TX,75081 +-96.656674,32.918095,Nortel Networks - Richardson TX,2201 Lakeside Drive,Richardson,TX,75082 +-96.645233,33.001122,"Renner & Northstar - Richardson TX (D, W)",4151 East Renner Road,Richardson,TX,75082 +-96.473427,32.888219,FM 740 & I-30(Rockwall) - Rockwall TX (W),2779 Ridge Road,Rockwall,TX,75087 +-96.4714,32.8918,Kroger - Rockwall #575 - Rockwall TX,Ridge Road & Horizon Road,Rockwall,TX,75087 +-96.468756,32.929623,Hwy. 66 & Lake Shore - Rockwall TX (W),886 W. Rusk,Rockwall,TX,75087 +-96.4492,32.9383,Travel Ctr. of America Rockwall - Rockwall TX,I-30 & SR-205,Rockwall,TX,75087 +-96.55791,32.908923,Super Target Rowlett ST-2234 - Rowlett TX,4701 Lakeview Pkwy,Rowlett,TX,75088 +-96.575652,32.9082,"Hwy. 66 & Kenwood - Rowlett TX (D, W)",2609 Lakeview Parkway,Rowlett,TX,75089 +-96.517798,32.916509,Hwy. 66 & Dalrock - Rowlett TX (W),6702 Dalrock Rd.,Rowlett,TX,75089 +-96.516267,32.919848,Tom Thumb - Rowlett #1925 - Rowlett TX,8805 Lakeview Parkway,Rowlett,TX,75089 +-96.611176,33.66931,"Hwy. 82 & Hwy. 75 - Sherman TX (D, W)",2918 US Hwy. 75,Sherman,TX,75090 +-96.612196,33.680029,Target Sherman T-1861 - Sherman TX,4160 Town Center RD,Sherman,TX,75092 +-96.831243,33.027709,The Shops at Willow Bend - Plano TX,6121 W. Park Boulevard,Plano,TX,75093 +-96.827981,33.044878,Parker & Tollway - Plano TX (W),5960 West Parker Road,Plano,TX,75093 +-96.827387,33.028736,Park & Tollway - Plano TX (W),2108 Dallas Pkwy,Plano,TX,75093 +-96.827189,33.030409,SuperTarget West Plano ST-1764 #333 - Plano TX,2200 Dallas Pkwy,Plano,TX,75093 +-96.795216,33.023612,"Preston & Old Shephard - Plano TX (D, W)",1709 Preston Rd.,Plano,TX,75093 +-96.795001,33.029842,Preston & 544 (B&N) - Plano TX (W),2201 Preston Road,Plano,TX,75093 +-96.794489,33.051287,Preston & Lorimar - Plano TX (W),4025 Preston Road,Plano,TX,75093 +-96.791684,33.026939,Tom Thumb - Plano #2568 - Plano TX,4836 W. Park Blvd.,Plano,TX,75093 +-96.612623,33.011441,"FM 544 & Murphy Rd. - Murphy TX (D, W)",102 FM 544,Murphy,TX,75094 +-96.592477,33.011202,Target Wylie - T-2550 - Wylie TX,3440 W. FM 544,Wylie,TX,75098 +-96.544488,33.0095,"FM 544 & Hwy. 78 - Wylie TX (D, W)",410 Highway 78,Wylie,TX,75098 +-96.935005,32.60138,Super Target Cedarhill ST-1836 - Cedar Hill TX,739 N. Hwy. 67,Cedar Hill,TX,75104 +-96.934474,32.590033,"US Hwy. 67 & FM 1382 - Cedar Hill TX (D, W)",455 E. FM 1382,Cedar Hill,TX,75104 +-96.8587,32.5972,"I 35 & Pleasant Run - DeSoto TX (D, W)",851 N. I-35E-SR,DeSoto,TX,75115 +-96.923832,32.648214,Tom Thumb - Duncanville #3563 - Duncanville TX,633 West Wheatland,Duncanville,TX,75116 +-96.617915,32.333596,I-45 & Ennis Ave. - Ennis TX (W),1012 E. Ennis Ave.,Ennis,TX,75119 +-96.468575,32.747357,"Hwy. 80 & FM 548 - Forney TX (D, W)",351 FM 548,Forney,TX,75126 +-96.585494,32.746165,Tom Thumb - Mesquite #1784 - Mesquite TX,1501 Poineer Rd.,Mesquite,TX,75149 +-96.623044,32.811416,Mesquite - Mesquite TX (W),1645 Town East Blvd.,Mesquite,TX,75150 +-96.622415,32.813367,Target Mesquite T-2572 - Mesquite TX,3504 Emporium Square,Mesquite,TX,75150 +-96.276179,32.703093,"I-20 & Hwy. 34 - Terrell TX (D, W)",1620 SH 34 South,Terrell,TX,75160 +-96.853985,32.344101,"Hwy. 287 & Hwy. 77 - Waxahachie TX (D, W)",1198 Hwy. 77 North,Waxahachie,TX,75165 +-96.837932,32.421832,Target Waxahachie T-1962 - Waxahachie TX,1316 N. Hwy. 77,Waxahachie,TX,75165 +-96.804148,32.793804,Hotel Crescent Court - Dallas TX,400 Crescent Court,Dallas,TX,75201 +-96.801946,32.785832,Fairmont Dallas - Dallas TX,1717 N. Akard,Dallas,TX,75201 +-96.800215,32.784321,Lincoln Plaza Bon Appetit - Dallas TX,500 N. Akard St.,Dallas,TX,75201 +-96.799031,32.780153,Magnolia Hotel - Dallas TX,1401 Commerce St.,Dallas,TX,75201 +-96.79896,32.787387,Trammel Crow Office Tower - Lobby - Dallas TX,2001 Ross Ave.,Dallas,TX,75201 +-96.797624,32.788796,JPMC Tower - Dallas TX,2200 Ross Ave.,Dallas,TX,75201 +-96.79631,32.782133,1700 Pacific Ave. - Dallas TX (W),1700 Pacific Avenue,Dallas,TX,75201 +-96.804098,32.782744,Dallas Convention Center - Dallas TX,650 S. Griffin St.,Dallas,TX,75202 +-96.803733,32.780083,Bank of America Plaza - Dallas - Dallas TX (W),901 Main St.,Dallas,TX,75202 +-96.80177,32.800473,Columbus Square - Dallas TX (W),2801 Allen St.,Dallas,TX,75204 +-96.797224,32.807629,Cole & Lemmon - Dallas TX (W),3699 McKinney Ave.,Dallas,TX,75204 +-96.789297,32.82334,Knox Street - Dallas TX (W),3216 Knox Street,Dallas,TX,75205 +-96.78714,32.848359,Snider Plaza - Dallas TX (W),6733 Hillcrest Road,Dallas,TX,75205 +-96.780884,32.836609,Mockingbird & Airline - Dallas TX (W),3036 Mockingbird Lane,Dallas,TX,75205 +-96.602312,32.77639,Highland Park Village - Dallas TX (W),100 Highland Park Shopping Ctr,Dallas,TX,75205 +-96.776186,32.836675,N. Central Exp & Mockingbird - Dallas TX (W),5331 E. Mockingbird Lane,Dallas,TX,75206 +-96.77091,32.838024,Kroger-Dallas #518 - Dallas TX,5665 E. Mockingbird,Dallas,TX,75206 +-96.768054,32.860308,Greenville & Caruth Haven - Dallas TX (W),6123 Greenville Ave.,Dallas,TX,75206 +-96.823084,32.803863,World Trade Center Dallas - Dallas TX,2050 N. Stemmons Fwy,Dallas,TX,75207 +-96.827366,32.830107,Lemmon & Inwood - Dallas TX (W),5715 Lemmon Avenue,Dallas,TX,75209 +-96.820545,32.851142,Inwood Village - Dallas TX (W),5350 W. Lovers Lane,Dallas,TX,75209 +-96.857349,32.742185,Tom Thumb - Dallas #3614 - Dallas TX,315 South Hampton,Dallas,TX,75211 +-96.896201,32.764909,"I-30 & Cockrell Hill - Dallas TX (D, W)",1601 N. Cockrell Hill,Dallas,TX,75212 +-96.7548,32.8562,Target Dallas/Medallion T-55 - Dallas TX,212 Medallion Ctr,Dallas,TX,75214 +-96.754588,32.812672,Lakewood - Dallas TX (W),6312 La Vista,Dallas,TX,75214 +-96.754076,32.837435,Abrams & Mockingbird - Dallas TX (W),6333 East Mockingbird,Dallas,TX,75214 +-96.702776,32.833221,Casa Linda - Dallas TX (W),9440 Garland Road,Dallas,TX,75218 +-96.809767,32.814643,Lemmon & Knight - Dallas TX (W),4101 Lemmon Ave.,Dallas,TX,75219 +-96.806699,32.810754,Oaklawn & Rawlins - Dallas TX (W),3330 Oaklawn Avenue,Dallas,TX,75219 +-96.891361,32.862016,"Northwest Highway & I-35 - Dallas TX (D, W)",2285 W. Northwest Highway,Dallas,TX,75220 +-96.854421,32.862296,Target Dallas T-947 - Dallas TX,9440 Marsh Ln.,Dallas,TX,75220 +-96.836021,32.864806,NW Hwy. & Midway - Dallas TX (W),4343 W. Northwest Highway,Dallas,TX,75220 +-96.829327,32.624416,Northpark Mall - Dallas TX (W),1022 North Park Center Dr,Dallas,TX,75225 +-96.80408,32.864581,Berkshire Court - Dallas TX (W),8411 Preston Rd.,Dallas,TX,75225 +-96.774476,32.864537,Randalls-Dallas #3608 - Dallas TX,7700 W. Northwest Hwy.,Dallas,TX,75225 +-96.871943,32.909416,Forest & Webb Chapel - Dallas TX (W),3100 Forest Lane,Dallas,TX,75229 +-96.805442,32.894906,Preston Royal - Dallas TX (W),102 Preston Royal Shopping Ctr,Dallas,TX,75230 +-96.803934,32.911334,Preston & Forest - Dallas TX (W),11919 Preston Road,Dallas,TX,75230 +-96.77359,32.909389,Forest & Park Central - Dallas TX (W),7718 Forest Lane,Dallas,TX,75230 +-96.76945,32.925014,Coit & 635 - Dallas TX (W),7995 LBJ,Dallas,TX,75231 +-96.763487,32.865954,"Northwest Hwy. & Shadybrook - Dallas TX (D, W)",5905 E. Northwest Highway,Dallas,TX,75231 +-96.745122,32.865697,Super Target Dallas ST-1784 - Dallas TX,6419 Skillman St.,Dallas,TX,75231 +-96.853102,32.910447,Tom Thumb - Dallas #1540 - Dallas TX,3757 Forest Lane,Dallas,TX,75234 +-96.83667,32.808586,Childrens Medical Center Dallas - Dallas TX,1935 Motor St.,Dallas,TX,75235 +-96.895538,32.696086,AAFES HQ Food Court - Dallas TX,3911 Walton Walker,Dallas,TX,75236 +-96.86706,32.6504,Target Dallas-South T-2334 - Dallas TX,39739 LBJ Fwy,Dallas,TX,75237 +-96.825935,32.953865,Quorum One - Addison TX (W),5000 Beltline Rd.,Addison,TX,75240 +-96.822094,32.932974,Galleria North - Dallas TX (W),5223 Alpha Road,Dallas,TX,75240 +-96.821136,32.931615,Dallas Galleria - Dallas TX (W),13350 Dallas Pkwy,Dallas,TX,75240 +-96.80522,32.952622,Tom Thumb - Dallas #3650 - Dallas TX,14999 Preston Rd.,Dallas,TX,75240 +-96.8032,32.932648,"Preston & Alpha - Dallas TX (D, W)",13556 Preston Rd.,Dallas,TX,75240 +-96.745378,32.909079,Kroger-Dallas #588 - Dallas TX,9140 Forest Lane,Dallas,TX,75243 +-96.739448,32.895156,Royal & Abrams - Dallas TX (W),8520 Abrams Rd.,Dallas,TX,75243 +-96.818315,32.918169,"Inwood & Willow - Dallas TX (D, W)",12262 Inwood Road,Dallas,TX,75244 +-96.777279,32.793943,"Gaston & Haskell - Dallas TX (D, W)",4025 Gaston Avenue,Dallas,TX,75246 +-96.869887,32.818607,"Mockingbird & 183 - Dallas TX (D, W)",1111 Mockingbird Lane,Dallas,TX,75247 +-96.790633,32.962279,Hillcrest & Arapaho - Dallas TX (W),6859 Arapaho,Dallas,TX,75248 +-96.76961,32.982643,Super Target North Dalls ST-1775 - Dallas TX,16731 Coit Rd.,Dallas,TX,75248 +-96.793885,32.999072,Preston & Frankford - Dallas TX (W),18208 Preston Road,Dallas,TX,75252 +-97.040481,32.871126,DFW - Term C$ Gate C6 - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term A$ Gate A38 - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term A$ Gate A13 N. Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term A$ Gate A29 S. Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term C$ Gate C27 S. Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term C$ Gate C8 North Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term E$ Gate E8 North Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Terminal A - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Terminal B - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW -Term B$ Gate B28 North Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Concourse D$ Simply Books - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term E$ Gate E31 S. Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term B$ Gate B9 South Station - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-97.040481,32.871126,DFW - Term C$ Gate C21 - Dallas TX (A),3301 S. 22nd Ave.,Dallas,TX,75261 +-96.801846,32.781105,Renaissance Tower - Dallas TX (W),1201 Elm,Dallas,TX,75270 +-96.854105,32.996002,Frankford & Marsh - Dallas TX (W),3632 FRANKFORD RD,Dallas,TX,75287 +-96.825657,32.999326,Frankford & Tollway - Dallas TX (W),4727 Frankford Road,Dallas,TX,75287 +-96.034348,33.133329,I 30 & Hwy. 34 - Greenville TX (D),3138 I-30,Greenville,TX,75402 +-94.087908,33.45751,"I-30 & Richmond - Texarkana TX (D, W)",2507 Richmond Road,Texarkana,TX,75503 +-94.796881,32.509661,"McCann & Loop 281 - Longview TX (D, W)",407 W. Loop 281,Longview,TX,75605 +-94.72793,32.546714,"US 259 & Hawkins - Longview TX (D, W)",3073 N. Eastman Road,Longview,TX,75605 +-94.723157,32.534917,Target Longview T-2283 - Longview TX,3092 N. Eastman Rd.,Longview,TX,75605 +-95.277859,32.308695,"Loop 323 & Troup - Tyler TX (D, W)",1817 E. Southeast Loop 323,Tyler,TX,75701 +-95.343455,32.353525,"Hwy. 64 & Loop 323 - Tyler TX (D, W)",113 N. Northwest Loop 323,Tyler,TX,75703 +-95.30146,32.295861,Broadway & Rice - Tyler TX (W),4925 S. Broadway,Tyler,TX,75703 +-96.766725,33.110147,Kroger-Plano #598 - Plano TX,9700Coit Rd.,Plano,TX,75825 +-94.72741,31.300617,"Hwy. 59 & Daniel McCall - Lufkin TX (D, W)",2210 S. First Street,Lufkin,TX,75901 +-106.396065,31.798909,ELP Pre Security La Placita - El Paso TX (A),6701 Convair Rd.,El Paso,TX,75908 +-94.652494,31.621351,Stephen F Austin State University - Nacogdoches TX,1950 North St.,Nacogdoches,TX,75962 +-94.652495,31.62192,"North St. & West College - Nacogdoches TX (D, W)",2021 North Street,Nacogdoches,TX,75965 +-97.095505,32.783143,Tom Thumb-Arlington #3658 - Arlington TX,2755 N. Collins St.,Arlington,TX,76006 +-97.097139,32.767316,"Collins & Lamar - Arlington TX (D, W)",2100 N. N. Collins Street,Arlington,TX,76011 +-97.13172,32.75082,"Randol Mill & Fielder - Arlington TX (D, W)",1110 Fielder North Plaza,Arlington,TX,76012 +-97.150984,32.721402,Tom Thumb-Arlington #3617 - Arlington TX,2611 W. Park Row Dr,Arlington,TX,76013 +-97.149477,32.721646,"Bowen & Park Row - Arlington TX (D, W)",1440 S. Bowen Rd.,Arlington,TX,76013 +-97.114665,32.722622,"Cooper & Park Row - Arlington TX (D, W)",1390 Cooper Street,Arlington,TX,76013 +-97.133589,32.684656,Super Target Arlington ST-1339 - Arlington TX,1400 W. Arbrook Blvd.,Arlington,TX,76015 +-97.129586,32.679345,Parks Mall at Arlington - Arlington TX (W),3811 South Cooper Street,Arlington,TX,76015 +-97.197348,32.67841,"Little Rd. & Office Park - Arlington TX (D, W)",4340 Little Road,Arlington,TX,76016 +-97.19347,32.681835,Kroger-Arlington #695 - Arlington TX,5701 W. Pleasant Bridge Rd.,Arlington,TX,76016 +-97.134025,32.670861,"S. Cooper & Bardin - Arlington TX (D, W)",1225 West Bardin Road,Arlington,TX,76017 +-97.114402,32.670791,"Matlock & Bardin - Arlington TX (D, W)",4645 Matlock,Arlington,TX,76017 +-97.110643,32.732003,Univ. TX - Arlington University Cen - Arlington TX,300 W. First Ave.,Arlington,TX,76019 +-97.113773,32.852015,Tom Thumb-Bedford #3555 - Bedford TX,3300 Harwood Rd.,Bedford,TX,76021 +-97.117614,32.837624,"Hwy. 183 & Central Dr. - Bedford TX (D, W)",2104Airport Freeway,Bedford,TX,76022 +-97.34943,32.52193,Target-Burleson T-1922 - Burleson TX,200 NW John Jones Dr,Burleson,TX,76028 +-97.346169,32.521944,"Hwy. 174 & FM 731 - Burleson TX (D, W)",1401 Southwest Wilshire,Burleson,TX,76028 +-97.321899,32.564632,Albertsons-Burleson #4279 - Burleson TX,833 NE Alsbury Blvd.,Burleson,TX,76028 +-97.405856,32.34094,"Henderson & Ridgeway - Cleburne TX (D, W)",1309 W. Henderson St.,Cleburne,TX,76033 +-97.15019,32.889175,"Hwy. 26 & Church - Colleyville TX (D, W)",5510 Colleyville Blvd.,Colleyville,TX,76034 +-97.104404,32.880401,Super Target Euless ST-1368 - Euless TX,1401 W. Glade Rd.,Euless,TX,76039 +-97.099154,32.837256,"Hwy. 183 & Hwy. 157 - Euless TX (D, W)",1011 W.Airport Freeway,Euless,TX,76039 +-97.098671,32.880784,"Hwy. 121 & Glade - Euless TX (D, W)",3020 State Highway 121 North,Euless,TX,76039 +-97.082642,32.839591,"183 & Main Street - Euless TX (D, W)",211 N. Main St.,Euless,TX,76039 +-97.789032,32.434085,"Hwy. 377 & Old Cleburne - Granbury TX (D, W)",413 Highway 377 East,Granbury,TX,76048 +-97.102627,32.938776,Southlake Blvd. & Hwy. 114 - Southlake TX (W),3100 E. Southlake Blvd.,Southlake,TX,76051 +-97.101543,32.89239,Randalls-Grapevine #3576 - Grapevine TX,4000 William D Tate Ave.,Grapevine,TX,76051 +-97.097495,32.939132,Tom Thumb - Grapevine #3625 - Grapevine TX,302 S. Park Blvd.,Grapevine,TX,76051 +-97.090324,32.94111,Great Wolf Lodge @ Grapevine - Grapevine TX,1400 East Highway 26,Grapevine,TX,76051 +-97.066309,32.941049,"Bus. 114 & Texas Trail - Grapevine TX (D, W)",920 E. Northwest Hwy.,Grapevine,TX,76051 +-97.04053,32.965287,Food Court - Big Hat - Grapevine TX,3000 Grapevine Mills Parkway,Grapevine,TX,76051 +-97.037501,32.973736,"Grapevine Mills Pkwy. & Stars and St. - Grapevine TX (D, W)",3525 Grapevine Mills Pkwy,Grapevine,TX,76051 +-97.10593,32.926167,Target Grapevine T-876 - Grapevine TX,1101 Ira E. Woods Ave.,Grapevine,TX,76051 +-97.202497,32.823666,Pipeline & Hwy. 820 - Hurst TX (W),1324 Pipeline Rd.,Hurst,TX,76053 +-97.1858,32.838756,"Hwy. 183 & Precinct Line - Hurst TX (D, W)",1498 Precinct Line Road,Hurst,TX,76053 +-97.183806,32.836462,Super Target Hurst ST-1766 #72 - Hurst TX,1400 Precinct Line Rd.,Hurst,TX,76053 +-97.14827,32.597305,"US 287 & FM 157 - Mansfield TX (D, W)",2010 US Hwy. 287,Mansfield,TX,76063 +-97.144403,32.590018,Super Target Mansfield ST-1536 - Mansfield TX,1801 Highway 287 N.,Mansfield,TX,76063 +-97.117746,32.606296,Matlock & Debbie - Mansfield TX (W),1301 E. Debbie Lane,Mansfield,TX,76063 +-97.105979,32.542904,Tom Thumb-Mansfield #1972 - Mansfield TX,980 US-287 N.,Mansfield,TX,76063 +-97.009531,32.483685,"Hwy. 67 & Hwy. 287 - Midlothian TX (D, W)",190 North Hwy. 67,Midlothian,TX,76065 +-97.794259,32.734385,"I-20 & Main Street - Weatherford TX (D, W)",1952 S. Main St.,Weatherford,TX,76086 +-97.7703,32.6935,Target Weatherford T-1981 - Weatherford TX,122 E. I-20,Weatherford,TX,76087 +-97.158088,32.940375,Tom Thumb - Southlake #2580 - Southlake TX,100 West South Lake Blvd.,Southlake,TX,76092 +-97.151853,32.942911,FM 1709 & White Chapel - Southlake TX (W),100 W. Southlake Blvd.,Southlake,TX,76092 +-97.124048,32.94188,Southlake Town Square - Southlake TX (W),1403 Main Street,Southlake,TX,76092 +-97.479125,32.760179,"White Settlement & 820 - Ft. Worth TX (D, W)",132 W. Loop 820 South,Ft. Worth,TX,76101 +-97.375835,32.672157,"Trail Lake - Ft. Worth TX (D, W)",5000 Trail Lake Drive,Ft. Worth,TX,76101 +-97.332265,32.754558,Houston & 3rd - Ft. Worth TX (W),404 Houston Street,Ft. Worth,TX,76102 +-97.329487,32.752456,Hilton Downtown Ft. Worth - Ft. Worth TX,815 Main St.,Ft. Worth,TX,76102 +-97.328762,32.749393,Omni Hotel & Convention Center - Ft. Worth TX,1300 Houston St.,Ft. Worth,TX,76102 +-97.346854,32.730302,Baylor All Saints Medical Center - Fort Worth TX,1400 8th St.,Fort Worth,TX,76104 +-97.343924,32.733036,"8th & Rosedale - Ft Worth TX (D, W)",1608 W. Rosedale St.,Ft Worth,TX,76104 +-97.341184,32.737649,Cook Children's Medical Center - Fort Worth TX,801 Seventh Avenue,Fort Worth,TX,76104 +-97.388449,32.728406,"Hulen & Donnelly - Fort Worth TX (D, W)",3250 Hulen St.,Fort Worth,TX,76107 +-97.36172,32.727473,University Village (B&N) - Fort Worth TX (W),1612 S. University,Fort Worth,TX,76107 +-97.354612,32.756139,Super Target Ft Worth ST-2042 - Ft Worth TX,301 Carroll St.,Ft Worth,TX,76107 +-97.352773,32.751103,7th & Carroll St. - Ft. Worth TX (W),2600 West 7th Street,Ft. Worth,TX,76107 +-97.389331,32.706656,Hulen & Bellaire (Ft Worth) - Fort Worth TX (W),3000 S. Hulen,Fort Worth,TX,76109 +-97.43123,32.752402,Target Ridgmar T-2425 - Fort Worth TX,751 Alta Mere Dr,Fort Worth,TX,76116 +-97.415196,32.727805,Camp Bowie - Fort Worth TX (W),6115 Camp Bowie Blvd.,Fort Worth,TX,76116 +-97.460584,32.682159,"I-20 & Hwy. 377 - Benbrook TX (D, W)",8503 Benbrook Blvd.,Benbrook,TX,76126 +-97.315995,32.861118,"I-35 & Western Center - Ft. Worth TX (D, W)",3030 Western Center Blvd.,Ft. Worth,TX,76131 +-97.420058,32.662889,Albertsons-Oakmont #4124 - Fort Worth TX,7400 Oakmont,Fort Worth,TX,76132 +-97.4138,32.685112,Bryant Irvin & Overton - Fort Worth TX (W),4849 Bryant Irvin Road,Fort Worth,TX,76132 +-97.412568,32.678439,Super Target Ft Worth ST-1770 - Fort Worth TX,5700 Overton Ridge Blvd.,Fort Worth,TX,76132 +-97.401399,32.665674,"Hulen & Ledgestone - Ft Worth TX (D, W)",5731 S. Hulen,Ft Worth,TX,76132 +-97.428636,32.810874,Target Lake Worth T-2008 - Lake Worth TX,6604 Lake Worth Blvd.,Lake Worth,TX,76135 +-97.427251,32.810464,"Hwy. 199 & Charbonneau - Ft. Worth TX (D, W)",6539 Lake Worth Blvd.,Ft. Worth,TX,76135 +-97.290122,32.859727,Beach & Western - Fort Worth TX (W),6405 N. Beach St.,Fort Worth,TX,76137 +-97.275943,32.661809,"I-20 & Forest Hill - Forest Hill TX (D, W)",3300 SE Loop 820,Forest Hill,TX,76140 +-97.264055,32.858484,"Hwy. 377 & Watauga - Haltom City TX (D, W)",6151 Denton Hwy.,Haltom City,TX,76148 +-97.258444,32.888992,"377 & Bursey - Watauga TX (D, W)",8004 Denton Hwy.,Watauga,TX,76148 +-97.256836,32.889937,Super Target Watauga ST-1765 - Watauga TX,8000 Denton Hwy.,Watauga,TX,76148 +-97.056075,32.822375,360 & Trinity - Fort Worth TX (D),14413 Trinity Blvd.,Fort Worth,TX,76155 +-97.381986,32.880978,"287 & Bailey Boswell - Ft. Worth TX (D, W)",1409 North Saginaw Blvd.,Ft. Worth,TX,76179 +-97.238661,32.842691,"Loop 820 & Rufe Snow - North Richland Hills TX (D, W)",5162 Rufe Snow Drive,North Richland Hills,TX,76180 +-97.192256,32.850423,Grapevine Hwy. & Precinct Line - North Richland Hills TX (W),9159 Grapevine Hwy.,North Richland Hills,TX,76180 +-97.188076,32.908301,SuperTarget N. Richland Hlls ST-1514 - North Richland Hills TX,8532 Davis Blvd.,North Richland Hills,TX,76180 +-97.188641,32.909678,"Davis & Precinct Line - North Richland Hills TX (D, W)",8536 Davis Blvd.,North Richland Hills,TX,76182 +-97.137079,33.230956,Kroger-Denton #493 - Denton TX,500 W. University,Denton,TX,76201 +-97.135924,33.230812,University Dr. & Carroll Blvd. - Denton TX (W),401 W. University Dr,Denton,TX,76201 +-97.09955,33.19123,Super Target Denton ST-2145 - Denton TX,1801 S. Loop 288,Denton,TX,76205 +-97.089673,33.232545,"Loop 288 & I 35$ Denton - Denton TX (D, W)",2300 S. LOOP 288,Denton,TX,76205 +-97.06329,33.2037,Kroger-Denton #586 - Denton TX,1592 N. SR-288 Loop,Denton,TX,76208 +-97.105191,33.142196,Kroger-Denton #570 - Denton TX,5021 Teasley Lane,Denton,TX,76210 +-97.594094,33.235832,"Hwy. 380 & Hwy. 287 - Decatur TX (D, W)",809 W. Business 380,Decatur,TX,76234 +-97.149091,33.624304,"I-35 & California - Gainesville TX (D, W)",502 W. California,Gainesville,TX,76240 +-97.231794,32.934204,Rufe Snow & 1709 - Keller TX (W),1004 Keller Pkwy,Keller,TX,76248 +-97.228237,32.932967,Tom Thumb - Keller #1780 - Keller TX,1000 East Keller Pkwy,Keller,TX,76248 +-97.223488,33.009521,Albertsons-Roanoke #4149 - Roanoke TX,1108 N. Hwy. 377,Roanoke,TX,76262 +-97.20721,32.99852,Trophy Lake & Hwy. 114 - Trophy Club TX (W),501 Trophy Lake Dr,Trophy Club,TX,76262 +-98.535826,33.865622,Target Wichita Falls T-80 - Wichita Falls TX,4317 Kemp Blvd.,Wichita Falls,TX,76308 +-98.528384,33.88477,"Kemp & Kell - Wichita Falls TX (D, W)",2908 Kemp Blvd.,Wichita Falls,TX,76308 +-98.168717,32.238767,"377 & Wolfe Nursery Rd. - Stephenville TX (D, W)",2807 W. Washington,Stephenville,TX,76401 +-97.3696,31.073096,"31st & Dodgen - Temple TX (D, W)",1313 SW H.K. Dodgen,Temple,TX,76502 +-97.38568,31.091873,Target Temple T-2278 - Temple TX,3550 S. General Bruce Dr,Temple,TX,76504 +-97.35845,31.103452,"I-35 & Hwy. 53 - Temple TX (D, W)",111 North General Bruce Drive,Temple,TX,76504 +-97.732885,31.091887,"Hwy. 190 & Trimmier - Killeen TX (D, W)",2600 Trimmier Road,Killeen,TX,76540 +-97.747384,31.111296,US 190 & S. Fort Hood St. - Killeen TX (D),1033 S. Fort Hood St.,Killeen,TX,76541 +-97.67012,31.071716,Target Harker Heights T-2374 - Harker Heights TX,201 E. Cte Bldg 3,Harker Heights,TX,76548 +-97.669014,31.069811,"Hwy. 190 & FM 2410 - Harker Heights TX (D, W)",100 E. Central Texas Expwy,Harker Heights,TX,76548 +-97.09485,32.01105,"I-35 & Hwy. 22 - Hillsboro TX (D, W)",102 NE I-35,Hillsboro,TX,76645 +-97.141821,31.511291,"I-35 & Loop 340 - Lacy Lakeview TX (D, W)",4273 N. I-35,Lacy Lakeview,TX,76705 +-97.190739,31.53331,"Bosque & Wooded Acres - Waco TX (D, W)",1428 Wooded Acres,Waco,TX,76710 +-97.160227,31.49788,"Loop 340 & Bagby - Waco TX (D, W)",2452 W. Loop 340,Waco,TX,76711 +-97.218702,31.495102,"Hwy. 84 & Hewitt - Woodway TX (D, W)",208 Hewitt Dr,Woodway,TX,76712 +-97.127106,31.545111,Baylor Univ Waco - Waco TX,1001 Dutton St.,Waco,TX,76798 +-100.47939,31.445517,"Sherwood & Ave. N. - San Angelo TX (D, W)",3217 Sherwood,San Angelo,TX,76901 +-95.4009,29.709436,Fannin & Dryden - Houston TX (W),6600 Fannin,Houston,TX,77002 +-95.374719,29.749367,Randall's - Houston #1773 - Houston TX,2225 Louisiana,Houston,TX,77002 +-95.374716,29.750366,Gray & Smith - Houston TX (W),2101 Smith Street,Houston,TX,77002 +-95.368838,29.757663,1100 Louisiana - Houston TX (W),1100 Louisiana St.,Houston,TX,77002 +-95.367493,29.75903,One Shell (Downtown) - Houston TX (W),910 Louisiana,Houston,TX,77002 +-95.366839,29.755362,Main & Dallas - Houston TX (W),914 Dallas Street,Houston,TX,77002 +-95.36609,29.74802,St. Joseph's Hospital - Houston TX,1401 St. Joseph Parkway,Houston,TX,77002 +-95.363131,29.755803,McKinney & San Jacinto - Houston TX (W),1200 McKinney,Houston,TX,77002 +-95.358689,29.765919,U of Houston/Downtown - Houston TX,1 Main St.,Houston,TX,77002 +-95.365663,29.759963,Pennzoil Place (Downtown) - Houston TX (W),711 Louisiana,Houston,TX,77002 +-95.364161,29.76035,Texas Commerce Tower (Downtown) - Houston TX,600 Travis St.,Houston,TX,77002 +-95.441297,29.721297,Randalls - Houston #4033 - Houston TX,5586 Weslayan,Houston,TX,77005 +-95.42767,29.728165,Buffalo Speedway & Westpark - Houston TX (W),5115 Buffalo Speedway,Houston,TX,77005 +-95.418209,29.720389,"5801 Kirby - Houston TX (D, W)",5801 Kirby Dr,Houston,TX,77005 +-95.41703,29.715081,Village Arcade I - Houston TX (W),2520 University Boulevard,Houston,TX,77005 +-95.390754,29.742019,Montrose & Hawthorne - Houston TX (W),3407 Montrose Blvd.,Houston,TX,77006 +-95.417386,29.760773,Memorial & Asbury - Houston TX (W),5535 Memorial Drive,Houston,TX,77007 +-95.410937,29.776645,I-10 & Durham - Houston TX (W),1801 Durham,Houston,TX,77007 +-95.36951,29.7745,Target Houston T-2093 - Houston TX,2580 Shearn St.,Houston,TX,77007 +-95.399806,29.917269,"Loop 610 & Nicholson - Houston TX (D, W)",445 North Loop West,Houston,TX,77008 +-95.409906,29.789963,Kroger - Houston #312 - Houston TX,1035 N. Shepard Dr,Houston,TX,77008 +-95.363045,29.75527,Houston Center - Houston TX (W),1200 McKinney,Houston,TX,77010 +-95.357716,29.752043,George R Brown Convention Ctr. - Houston TX,1001 Avenida de las Americas,Houston,TX,77010 +-95.251257,29.651967,"I-45 & Monroe - Houston TX (D, W)",8515 Gulf Freeway,Houston,TX,77017 +-95.430644,29.828295,Ella & 43rd - Houston TX (D),1206 West 43rd Street,Houston,TX,77018 +-95.409591,29.753053,"River Oaks II - Houston TX (D, W)",2050 W. Gray,Houston,TX,77019 +-95.409265,29.753018,River Oaks - Houston TX (W),2029 W. Gray,Houston,TX,77019 +-95.561153,29.772812,Memorial Drive Town & Country - Houston TX (W),12850 Memorial Dr,Houston,TX,77024 +-95.561153,29.772812,Randalls - Houston #1066 - Houston TX,12850 Memorial Dr. Ste. 1000,Houston,TX,77024 +-95.551471,29.766839,"Memorial & Benignus - Houston TX (D, W)",12500 Memorial Dr.,Houston,TX,77024 +-95.544568,29.779742,Memorial City Mall - Houston TX (W),900 South Gessner,Houston,TX,77024 +-95.523055,29.783785,I-10 & Memorial City Way - Houston TX (W),9801 Katy Freeway,Houston,TX,77024 +-95.51097,29.78398,Echo Lane & I-10 - Houston TX (W),9315 Katy Freeway,Houston,TX,77024 +-95.44064,29.705555,Bellaire & Stella Link - Houston TX (W),4001 Bellaire Blvd.,Houston,TX,77025 +-95.426479,29.679843,"Main & Buffalo Speedway - Houston TX (D, W)",9602 South Main,Houston,TX,77025 +-95.426372,29.705982,Randalls - Houston #1061 - Houston TX,3131 West Holcolmbe Rd.,Houston,TX,77025 +-95.418523,29.692469,Super Target Houston ST-1336 - Houston TX,8500 Main St.,Houston,TX,77025 +-95.550094,29.669036,"Hwy. 59 & Cummins - Houston TX (D, W)",3800 SW Freeway,Houston,TX,77027 +-95.451219,29.746653,San Felipe & 610 - Houston TX (W),4520 San Felipe,Houston,TX,77027 +-95.447736,29.741174,Highland Village - Houston TX (W),4081 Westheimer,Houston,TX,77027 +-95.453115,29.745216,Target Galleria Houston T-955 - Houston TX,4323 San Felipe St.,Houston,TX,77027 +-95.414985,29.695573,Kroger-Houston #740 - Houston TX,7747 Kirby Dr,Houston,TX,77030 +-95.40098,29.710183,Marriott Houston Medical Center - Houston TX,6580 Fannin St.,Houston,TX,77030 +-95.39916,29.708625,Texas Med Ctr. Park Garage Food Crt. - Houston TX,6550 Bertner Ave.,Houston,TX,77030 +-95.397313,29.715122,Fannin & MacGregor - Houston TX (W),6400 Fannin Street,Houston,TX,77030 +-95.566937,29.65206,"Hwy. 59 & Wilcrest - Houston TX (D, W)",11623 SW Freeway,Houston,TX,77031 +-95.344,29.9512,IAH - Term E. Space 20 - Houston TX (A),18700 JFK Blvd.,Houston,TX,77032 +-95.344,29.9512,IAH - Term E. Space 6 - Houston TX (A),18700 JFK Blvd.,Houston,TX,77032 +-95.342513,29.971546,IAH - Conc C North Term Food Ct - Houston TX (A),18700 JFK Blvd.,Houston,TX,77032 +-95.3418,29.9517,IAH - Conc C South Term Food Ct - Houston TX (A),18700 JFK Blvd.,Houston,TX,77032 +-95.332639,29.987153,IAH - FIS Bldg - Houston TX (A),3870 N. Terminal Rd.,Houston,TX,77032 +-95.332272,29.986028,IAH C33 South - Houston TX (A),3950 South Terminal Rd.,Houston,TX,77032 +-95.332272,29.986028,IAH Terminal A-17 Presecurity - Houston TX (A),3950 S. Terminal Rd.,Houston,TX,77032 +-95.332272,29.986028,IAH Terminal A 1 - Houston TX (A),3950 S. Terminal Rd.,Houston,TX,77032 +-95.332272,29.986028,IAH Terminal A-17 - Houston TX (A),3950 S. Terminal Rd.,Houston,TX,77032 +-95.332272,29.986028,IAH Terminal B Presecurity Ticketin - Houston TX (A),3950 S. Terminal Rd.,Houston,TX,77032 +-95.458943,29.671533,Randalls-Houston #1041 - Houston TX,4800 W. Bellefort,Houston,TX,77035 +-95.483748,29.833256,"I-45 & West - Houston TX (D, W)",10755 N. Freeway,Houston,TX,77037 +-95.502378,29.849051,Target Houston T-858 - Houston TX,13250 Northwest Fwy,Houston,TX,77040 +-95.571734,29.736666,Randalls-Houston #1247 - Houston TX,11041 Westheimer Rd.,Houston,TX,77042 +-95.567899,29.735574,Target Houston T-75 - Houston TX,10801 Westheimer Rd.,Houston,TX,77042 +-95.550429,29.735832,Carillon - Houston TX (W),10001 Westheimer,Houston,TX,77042 +-95.546771,29.735624,Kroger-Houston #363 - Houston TX,9919 Westheimer Rd.,Houston,TX,77042 +-95.433072,29.730303,Renaissance Hotel - Lobby - Houston TX,6 Greenway Plaza East,Houston,TX,77046 +-95.16491,29.808324,"Beltway 8 & Wallisville - Houston TX (D, W)",15252 Wallisville Rd.,Houston,TX,77049 +-95.408611,29.682222,Reliant Center - Houston TX,2 Reliant Park,Houston,TX,77054 +-95.495009,29.785006,"I-10 & Wirt - Spring Valley TX (D, W)",8420 Katy Freeway,Spring Valley,TX,77055 +-95.484974,29.797445,Kroger-Houston #346 - Houston TX,1505 Wirt Rd.,Houston,TX,77055 +-95.475682,29.731021,Richmond & Chimney Rock - Houston TX (W),5549 Richmond Ave.,Houston,TX,77056 +-95.466492,29.7407,JW Marriott Galleria - Houston TX,5150 Westheimer,Houston,TX,77056 +-95.466097,29.749306,San Felipe & Sage (Randalls) - Houston TX (W),5161 San Felipe,Houston,TX,77056 +-95.46322,29.740402,Galleria II - Houston TX (W),5085 Westheimer,Houston,TX,77056 +-95.462716,29.739545,Houston Galleria - Houston TX (W),5015 Westheimer,Houston,TX,77056 +-95.461356,29.740849,Post Oak Center/Galleria (B&N) - Houston TX (W),5000 Westheimer Road,Houston,TX,77056 +-95.46057,29.741287,Westheimer & Post Oak - Houston TX (W),2521 Post Oak Boulevard,Houston,TX,77056 +-95.457609,29.7543,Post Oak & 610 (Uptown Park) - Houston TX (W),1151-12 Uptown Park Blvd.,Houston,TX,77056 +-95.501177,29.75018,San Felipe/Voss - Houston TX (W),1655 S. Voss Rd.,Houston,TX,77057 +-95.500247,29.754716,Woodway & Voss - Houston TX (W),6543 Woodway,Houston,TX,77057 +-95.484647,29.737725,Fountainview - Houston TX (W),5903 Westheimer,Houston,TX,77057 +-95.479045,29.76349,Woodway & Augusta - Houston TX (W),5767 Woodway,Houston,TX,77057 +-95.126143,29.551729,"Bay Area & Seawolf - Houston TX (D, W)",515 Bay Area Blvd.,Houston,TX,77058 +-95.09928,29.548299,"Nasa Road 1 & Nassau Bay - Nassau Bay TX (D, W)",1400 NASA Rd. 1,Nassau Bay,TX,77058 +-95.492978,29.841588,Hwy. 290 & 43rd St. - Houston TX (W),12025 Northwest Freeway,Houston,TX,77060 +-95.407535,29.94668,Wyndham Greenspoint Houston - Houston TX,12400 Greenspoint Dr,Houston,TX,77060 +-95.121412,29.578347,Kroger-Houston #300 - Houston TX,1950 El Dorado,Houston,TX,77062 +-95.107262,29.577607,Randall's - Houston #4062 - Houston TX,2323 Clearlake City,Houston,TX,77062 +-95.537117,29.737308,Randalls-Houston #3014 - Houston TX,9660 Westheimer Rd.,Houston,TX,77063 +-95.520779,29.737022,Westheimer & Fondren - Houston TX (W),8821 Westheimer,Houston,TX,77063 +-95.518274,29.73517,Target Houston/Westminister T-2139 - Houston TX,8605 Westheimer Rd.,Houston,TX,77063 +-95.50403,29.738151,Westheimer/Voss (B&N) - Houston TX (W),7626 Westheimer Road,Houston,TX,77063 +-95.556244,29.903428,West Road & Beltway 8 - Houston TX (W),9105 West Sam Houston Pkwy. N.,Houston,TX,77064 +-95.543198,29.955843,"Hwy. 249 & FM 1960 - Houston TX (D, W)",17731 State Hwy. 249,Houston,TX,77064 +-95.516414,29.624477,Kroger-Houston #739 - Houston TX,9125 West Sam Houston Pkwy,Houston,TX,77064 +-95.608538,29.879517,"Hwy. 290 & Hwy. 6 - Houston TX (D, W)",13301 FM 1960 West,Houston,TX,77065 +-95.605106,29.919218,Target Houston/Steeplechase T-2144 - Houston TX,12701 FM 1960 Rd. W.,Houston,TX,77065 +-95.584827,29.891497,"Hwy. 290 & Jones - Houston TX (D, W)",17504 NW Freeway,Houston,TX,77065 +-95.530629,29.968422,Target Willowbrook T-2066 - Houston TX,6801 FM 1960 Rd. W.,Houston,TX,77069 +-95.508896,29.98192,Randalls-Houston #1012 - Houston TX,5219 FM 1960 W. & Champions F,Houston,TX,77069 +-95.498936,29.986247,FM 1960 & Stuebner - Houston TX (W),4501 West FM 1960,Houston,TX,77069 +-95.585613,29.996578,"Hwy. 249 & Louetta - Houston TX (D, W)",10805 Louetta,Houston,TX,77070 +-95.584351,29.93286,FM 1960 & Jones Road - Houston TX (W),10959 FM 1960 Rd. West,Houston,TX,77070 +-95.581225,29.998913,SH 249 & Jones Road - Houston TX (W),21503 Tomball Parkway,Houston,TX,77070 +-95.54043,29.958513,Willowbrook Mall - Houston TX (W),7925 FM 1960 West,Houston,TX,77070 +-95.160607,29.999126,"Willowbrook - Houston TX (D, W)",7606 FM 1960 Rd. W.,Houston,TX,77070 +-95.498291,29.71617,"Hillcroft & US 59 - Houston TX (D, W)",6001 Hillcroft,Houston,TX,77074 +-95.508287,29.620044,Target Houston South T2494 - Houston TX,8503 S. Sam Houston East Parkway,Houston,TX,77075 +-95.23352,29.631028,I 45 & Rowlett - Houston TX (D),11404 Gulf Freeway,Houston,TX,77075 +-95.646304,29.738844,West Oaks (B&N) - Houston TX (W),2450 State Highway 6,Houston,TX,77077 +-95.625359,29.75686,"Briar Forest & Eldridge - Houston TX (D, W)",1535 Eldridge Pkwy,Houston,TX,77077 +-95.625181,29.755506,Kroger-Houston #349 - Houston TX,1520 Eldridge Pkwy,Houston,TX,77077 +-95.586609,29.736422,Westheimer & Royal Oaks Club Drive - Houston TX (W),11805 Westheimer Road,Houston,TX,77077 +-95.640481,29.735192,"Westheimer & Briargreen$ Houston - Houston TX (D, W)",14333 Westheimer Road,Houston,TX,77077 +-95.643368,29.775128,"Hwy. 6 & Memorial - Houston TX (D, W)",803 Highway 6 South,Houston,TX,77079 +-95.607,29.770235,Randalls-Houston #1011 - Houston TX,14610 Memorial Dr. & Dairy As,Houston,TX,77079 +-95.606885,29.770068,"Memorial & Dairy Ashford - Houston TX (D, W)",14607 Memorial Dr.,Houston,TX,77079 +-95.599477,29.770881,Kroger-Houston #161 - Houston TX,14344 Memorial Dr,Houston,TX,77079 +-95.587695,29.785235,"I-10 & Kirkwood - Houston TX (D, W)",11611 Katy Freeway,Houston,TX,77079 +-95.623985,29.732943,Super Target Houston Far West ST-24 - Houston TX,2700 Eldridge Pkwy,Houston,TX,77082 +-95.643394,29.677944,"Hwy. 6 & Bissonnet - Houston TX (D, W)",9315 Hwy. 6 South,Houston,TX,77083 +-95.683993,29.83234,Randalls-Houston #2672 - Houston TX,18322 Clay Road,Houston,TX,77084 +-95.64691,29.877842,Target Copperfield T-993 - Houston TX,6955 Hwy. 6 N.,Houston,TX,77084 +-95.645916,29.845713,"Hwy. 6 & Loch Katrine - Houston TX (D, W)",4751 State Hwy. N.,Houston,TX,77084 +-95.645057,29.87724,Copperfield - Houston TX (W),6843 Hwy. 6 North,Houston,TX,77084 +-95.296331,29.699178,"Loop 610 & I-45 (UCO) - Houston TX (D, W)",1450 Gulfgate Center,Houston,TX,77087 +-95.213154,29.602188,Kroger-Houston #746 - Houston TX,11701 E. Sam Houston Pkwy,Houston,TX,77089 +-95.442846,30.016699,"FM 1960 & Red Oak Rd. - Houston TX (D, W)",851 FM 1960 West,Houston,TX,77090 +-95.468149,29.819832,"Hwy. 290 & 34th - Houston TX (D, W)",11200 NW Freeway,Houston,TX,77092 +-95.718395,29.774825,Fry & Kingsland - Houston TX (W),19901 Kingsland Blvd.,Houston,TX,77094 +-95.71838,29.782864,Target Katy T-907 - Katy TX,19955 Katy Fwy,Katy,TX,77094 +-95.4617,29.6873,Meyerland - Houston TX (W),710 Meyerland Plaza,Houston,TX,77096 +-95.46074,29.688437,Target Houston T-1975 - Houston TX,300 Meyerland Plaza Mall,Houston,TX,77096 +-95.410362,29.740493,"Shepherd & Harold - Houston TX (D, W)",2801 S. Shepherd Drive,Houston,TX,77098 +-95.260138,29.567137,Randalls - Houston #3048 - Houston TX,2075 Westminster,Houston,TX,77098 +-95.341135,29.720355,U of Houston - Food Court - Houston TX,267 University Center,Houston,TX,77204 +-95.339501,29.720781,U of Houston - Bauer Coll of Bus - Houston TX,334 Melcher Hall,Houston,TX,77204 +-95.476154,30.316354,"I-45 & SH 105 - Conroe TX (D, W)",1351 West Davis,Conroe,TX,77304 +-95.459873,30.280659,Kroger-Conroe #736 - Conroe TX,220 S. Loop 336 W.,Conroe,TX,77304 +-95.381163,30.020926,"FM 1960 & Aldine Westfield - Humble TX (D, W)",3031 FM 1960,Humble,TX,77338 +-95.268047,30.018904,Super Target Humble ST-1457 - Humble TX,20777 Hwy. 59,Humble,TX,77338 +-95.26683,30.007293,FM 1960 & Hwy. 59 - Humble TX (W),19763 Hwy. 59,Humble,TX,77338 +-95.251999,30.00422,"FM 1960 & Wilson Rd. - Humble TX (D, W)",1501 FM 1960 BPE,Humble,TX,77338 +-95.2333,30.050356,"Kingwood Dr. & Green Oaks Dr. - Humble TX (D, W)",2515 Green Oaks Dr.,Humble,TX,77339 +-95.216318,30.069514,"Northpark Dr. & Glade Valley Dr. - Humble TX (D, W)",2021 Northpark,Humble,TX,77339 +-95.549116,30.712104,Sam Houston University- Huntsville - Huntsville TX,2008 Ave. J,Huntsville,TX,77340 +-95.52991,30.6816,Target Huntsville T-2533 - Huntsville TX,259 IH-45 South,Huntsville,TX,77340 +-95.5202,30.675,"I-45 & 11th - Huntsville TX (D, W)",101 IH 45 South,Huntsville,TX,77340 +-95.181593,30.050804,Lake Houston Pkwy. & Kingwood Dr. - Kingwood TX (W),4522 Kingwood Dr,Kingwood,TX,77345 +-95.177903,29.997811,FM 1960 & Kings Park Way - Humble TX (W),6300 FM 1960 East,Humble,TX,77346 +-95.172622,30.000545,Super Target Atascocita ST-2389 - Atascocita TX,6931 FM 1960 Rd. E.,Atascocita,TX,77346 +-95.16203,29.99874,Kroger-Humble #318 - Humble TX,19300 W. Lake Houston,Humble,TX,77346 +-95.702828,30.25346,FM 1488 & FM 2978 - Magnolia TX (D),6643 FM 1488,Magnolia,TX,77354 +-95.570665,30.210488,Target Woodlands West T-2356 - Magnolia TX,32858 FM 2978 Rd.,Magnolia,TX,77354 +-95.792905,30.346094,SR-105 & Lake Conroe - Montgomery TX (D),15330 Hwy. 105 West,Montgomery,TX,77356 +-95.43595,30.073527,"I-45 & Louetta - Spring TX (D, W)",20551 Interstate 45,Spring,TX,77373 +-95.633167,30.08954,Target Tomball T-1904 - Tomball TX,14302 FM 2920,Tomball,TX,77377 +-95.63058,30.082103,"Hwy. 249 & Hirschfield - Tomball TX (D, W)",28103 Tomball Parkway,Tomball,TX,77377 +-95.489859,30.421923,Kroger-Willis #741 - Willis TX,908 West Montgomery,Willis,TX,77378 +-95.554951,30.033285,Spring Cypress & Champions Forest - Spring TX (W),8715 Spring Cypress Road,Spring,TX,77379 +-95.532805,30.001427,Kroger-Spring #307 - Spring TX,15802 Champion Forest Dr,Spring,TX,77379 +-95.524001,30.020944,Louetta & Stuebner Airline - Spring TX (W),7316 Louetta,Spring,TX,77379 +-95.514284,30.074062,Kroger-Spring #364 - Spring TX,6060 FM-2920,Spring,TX,77379 +-95.488719,30.039948,"TC- Kuykendahl & Louetta - Spring TX (D, W)",18565 Kuykendahl,Spring,TX,77379 +-95.486741,30.039993,Kroger-Spring #376 - Spring TX,18518 Kuykendahl Rd.,Spring,TX,77379 +-95.536,30.182457,Kroger-The Woodlands #365 - The Woodlands TX,6700 Woodlands Pkwy,The Woodlands,TX,77380 +-95.471206,30.140863,Randalls-Spring #2673 - Spring TX,2250 Buckthorne Place,Spring,TX,77380 +-95.460978,30.164089,Woodlands Town Center - The Woodlands TX (W),9595 Six Pines,The Woodlands,TX,77380 +-95.458664,30.130487,"TC-Woodlands - Spring TX (D, W)",25111 Grogans Mills Rd.,Spring,TX,77380 +-95.457431,30.169011,Pinecroft & Lake Woodlands - The Woodlands TX (W),1440-G Lake Woodlands Dr.,The Woodlands,TX,77380 +-95.50408,30.177183,Kroger-The Woodlands #732 - The Woodlands TX,800 Research Forest Drive,The Woodlands,TX,77381 +-95.503072,30.16648,Panther Creek & Woodlands Pkwy. - The Woodlands TX (W),4775 W. Panther Creek,The Woodlands,TX,77381 +-95.48873,30.185501,Kroger-The Woodlands #316 - Spring TX,4747 Research Forest Dr.,Spring,TX,77381 +-95.480443,30.179569,"Research Forest & New Trails - The Woodlands TX (D, W)",3000 Research Forest Drive,The Woodlands,TX,77381 +-95.5377,30.1812,Woodlands Pkwy. & FM 2978 - The Woodlands TX (D),9955 Woodlands Pkwy,The Woodlands,TX,77382 +-95.53621,30.178156,"Woodlands & Kuykendahl - The Woodlands TX (D, W)",10716 Kuykendahl Rd.,The Woodlands,TX,77382 +-95.509535,30.228098,Randalls-The Woodlands #2617 - The Woodlands TX,9420 College Park Dr,The Woodlands,TX,77384 +-95.462033,30.207783,"I-45 & Hwy. 242 - Conroe TX (D, W)",3068 College Park Drive,Conroe,TX,77384 +-95.406541,30.122999,Kroger-Spring #373 - Spring TX,2301 Rayford Rd.,Spring,TX,77386 +-95.511924,30.074033,"FM 2920 & Kuykendahl - Spring TX (D, W)",5911 FM 2920,Spring,TX,77388 +-95.433341,30.05956,Super Target Spring ST-1458 - Spring TX,19511 I-45 N.,Spring,TX,77388 +-95.431155,30.050293,I-45 & Cypresswood - SPRING TX (D),19752 I-45 North A,SPRING,TX,77388 +-95.250179,29.936184,"Beltway 8 & Wilson - Humble TX (D, W)",4830 Wilson Rd.,Humble,TX,77396 +-95.19586,29.987432,Atascocita & Will Clayton - Houston TX (D),3805 Atascocita Road,Houston,TX,77396 +-95.468217,29.707233,Bissonet & Rice - Bellaire TX (W),6600 S. Rice,Bellaire,TX,77401 +-95.69854,29.972868,"Hwy. 290 & Spring Cypress - Cypress TX (D, W)",25615 Hwy. 290,Cypress,TX,77429 +-95.694393,29.971482,Target Cypress T-1894 - Cypress TX,25901 Hwy. 290,Cypress,TX,77429 +-95.690803,29.971343,Kroger - Cypress #362 - Cypress TX,17455 Spring-Cypress Rd.,Cypress,TX,77429 +-95.670083,29.955226,Randalls - Cypress #1857 - Cypress TX,12312 Barker - Cypress Rd.,Cypress,TX,77429 +-95.62198,29.994293,Kroger - Cypress #327 - Cypress TX,13135 Louetta,Cypress,TX,77429 +-95.74843,29.99162,Houston Premium Outlets - Cypress TX (W),29300 Hempstead Rd.,Cypress,TX,77433 +-95.72024,29.81384,Randalls-Katy #1772 - Katy TX,3050 N. Fry Rd.,Katy,TX,77449 +-95.720213,29.790211,"Fry & Park - Katy TX (D, W)",19914 Park Row,Katy,TX,77449 +-95.753382,29.733796,Mason Rd. & Westheimer Pkwy. - Katy TX (W),22020 Westheimer Pky,Katy,TX,77450 +-95.751664,29.775972,Mason Road$ Katy - Katy TX (W),547 S. Mason Rd.,Katy,TX,77450 +-95.750315,29.759726,Randall's - Katy #3070 - Katy TX,1525 S. Mason Rd.,Katy,TX,77450 +-95.58219,29.580332,Hwy. 6 & Dulles Austin Pkwy. - Missouri City TX (W),4721 Hwy. 6 South,Missouri City,TX,77459 +-95.566985,29.566263,Super Target Missouri City ST-1359 - Missouri City TX,6000 Hwy. 6,Missouri City,TX,77459 +-95.566775,29.567368,"Murphy Rd. & Hwy. 6 - MIssouri City TX (D, W)",5940 S. State Hwy. 6,MIssouri City,TX,77459 +-95.565304,29.562833,Kroger-Missouri City #334 - Missouri City TX,6200 Highway 6 @ FM 1092,Missouri City,TX,77459 +-95.743345,29.615202,Randalls-Houston #2670 - Richmond TX,1890 FM 359,Richmond,TX,77469 +-95.721,29.6843,Kroger - Richmond #397 - Richmond TX,8011 W. Grand Parkway South,Richmond,TX,77469 +-95.778647,29.533998,"Hwy. 59 & Hwy. 762 - Rosenberg TX (D, W)",24406 SW Freeway,Rosenberg,TX,77471 +-95.751024,29.54788,Target - Richmond/Rosenberg T-2205 - Rosenberg TX,23912 Commercial Dr,Rosenberg,TX,77471 +-95.60204,29.5908,Randalls - Sugarland #1021 - Sugarland TX,3346 Highway 6 South,Sugarland,TX,77478 +-95.676033,29.589444,Randalls-Sugar Land #3068 - Sugar Land TX,5800 New Territory Blvd.,Sugar Land,TX,77479 +-95.668495,29.5497,Hwy. 6 & US Hwy. 59 - Sugarland TX (W),16098 City Walk Blvd.,Sugarland,TX,77479 +-95.649284,29.57989,"Hwy. 59 & Grand Parkway - Sugarland TX (D, W)",19908 SW Freeway,Sugarland,TX,77479 +-95.633016,29.585537,Kroger-Sugar Land #320 - Sugar Land TX,4825 Sweetwater Rd.,Sugar Land,TX,77479 +-95.630762,29.585254,"Sweetwater & Lexington - Sugar Land TX (D, W)",4720-A Sweetwater Blvd.,Sugar Land,TX,77479 +-95.627239,29.59671,Super Target Sugarland ST-1786 - Sugar Land TX,16300 Southwest Fwy,Sugar Land,TX,77479 +-95.777884,29.758029,Kroger-Katy #733 - Katy TX,1550 Grand Pkwy,Katy,TX,77493 +-95.823726,29.777776,Katy Mills Mall - Katy TX,25800 Katy Freeway,Katy,TX,77494 +-95.807647,29.783794,"I 10 & Katy Mills - Katy TX (D, W)",1998 Katy Mills Blvd.,Katy,TX,77494 +-95.78173,29.738113,Grand Pkwy. & Cinco Ranch - Katy TX (W),23501 Cinco Ranch Blvd.,Katy,TX,77494 +-95.776133,29.735872,Super Target Katy West ST-1908 - Katy TX,23710 Westheimer Pkwy,Katy,TX,77494 +-95.64989,29.648105,Kroger-Sugar Land #375 - Sugar Land TX,11565 S. Hwy. 6,Sugar Land,TX,77498 +-95.189939,29.665076,Spencer Hwy. & Burke Rd.(Pasadena) - Pasadena TX (W),3530-A Spencer Hwy.,Pasadena,TX,77504 +-95.164048,29.649208,"Fairmont & Pansy - Pasadena TX (D, W)",5118 Fairmont Pkwy,Pasadena,TX,77505 +-95.152935,29.651715,Super Target Pasadena ST-1396 - Pasadena TX,5757 Fairmont Pkwy,Pasadena,TX,77505 +-95.152758,29.650022,Beltway 8 & Fairmont Pkwy. - Pasadena TX (W),5769 Fairmont Parkway,Pasadena,TX,77505 +-95.249538,29.399347,Kroger-Alvin #321 - Alvin TX,3100 Highway 35 South,Alvin,TX,77511 +-94.983101,29.804813,"I 10 & Garth - Baytown TX (D, W)",5017 Interstate 10,Baytown,TX,77521 +-94.978245,29.77408,"Garth Rd. & West Baker - Baytown TX (D, W)",4557 Garth Rd.,Baytown,TX,77521 +-94.976285,29.772012,Target Baytown T-887 - Baytown TX,4510 Garth Rd.,Baytown,TX,77521 +-95.063618,29.886084,"Hwy. 90 & FM 2100 - Crosby TX (D, W)",2123 Hwy. 90,Crosby,TX,77532 +-95.122771,29.677732,"Center & Pasadena - Deer Park TX (D, W)",3705 Center Street,Deer Park,TX,77536 +-95.079247,29.450016,Kroger-Dickinson #241 - Dickinson TX,3410 Gulf Fwy,Dickinson,TX,77539 +-95.187305,29.509416,"FM 518 & FM 528 - Friendswood TX (D, W)",107 E. Parkwood Ave.,Friendswood,TX,77546 +-95.160753,29.52174,Bay Area & FM 528 - Friendswood TX (W),3141 FM 528,Friendswood,TX,77546 +-95.15988,29.522502,Kroger-Friendswood #744 - Friendswood TX,3135 FM 528,Friendswood,TX,77546 +-95.14933,29.545685,Baybrook Mall - Friendswood TX (W),500 Baybrook Mall,Friendswood,TX,77546 +-94.793304,29.308205,Harborside & 22nd St. - Galveston TX (W),102 Kempner,Galveston,TX,77550 +-94.830046,29.269799,Randalls-Galveston #1031 - Galveston TX,2931 Central City Ave.,Galveston,TX,77551 +-94.827993,29.27081,"61st & Avenue T 1/2 - Galveston TX (D, W)",2808 61st Street,Galveston,TX,77551 +-94.822781,29.26864,Kroger-Galveston #302 - Galveston TX,5730 Seawall Blvd.,Galveston,TX,77552 +-95.0329,29.5403,Kemah Boardwalk - Kemah TX,#8 Kemah Boardwalk,Kemah,TX,77565 +-95.022989,29.539291,Super Target Clear Lake Shores ST-1 - Kemah TX,255 Marina Bay Dr,Kemah,TX,77565 +-95.095095,29.507868,"FM 518 & Hwy. 3 - League City TX (D, W)",100 E. Main,League City,TX,77573 +-95.092322,29.468664,Super Target League City ST-2320 - League City TX,3100 Gulf Fwy S.,League City,TX,77573 +-95.0898,29.5065,Kroger - League City #398 - League City TX,2750 E. League City Parkway,League City,TX,77573 +-95.084792,29.508768,Randall's - League City #2051 - League City TX,20905 Southshore Blvd.,League City,TX,77573 +-95.08231,29.456305,I 45 & 646 - League City TX (D),2810 Gulf Freeway South,League City,TX,77573 +-95.065137,29.539355,Hwy. 2094 & S. Shore Harbor - League City TX (W),2800 Marina Bay Dr.,League City,TX,77573 +-95.274106,29.560264,"FM 518 & Walnut - Pearland TX (D, W)",3310 E. Broadway,Pearland,TX,77581 +-95.257945,29.553647,FM 518 & FM 288 - Pearland TX (W),2620 FM 518,Pearland,TX,77581 +-95.378691,29.555969,Randalls - Pearland #1858 - Pearland TX,10228 West Broadway,Pearland,TX,77584 +-95.34654,29.559156,Kroger-Pearland #343 - Pearland TX,8323 Broadway,Pearland,TX,77584 +-95.258756,29.553975,Super Target Pearland ST-1459OnHOLD - Pearland TX,2660 FM 518,Pearland,TX,77584 +-94.948158,29.395356,FM 1764 & Hwy. 146 - Texas City TX (D),3480 Palmer Hwy.,Texas City,TX,77590 +-95.158098,29.58047,Hwy. 3 & Clear Lake City - Webster TX (D),13914 Galveston Road,Webster,TX,77598 +-95.149982,29.538124,W. Bay Area Blvd. & Glenwest Dr. - Webster TX (W),1507C W. Bay Area Blvd.,Webster,TX,77598 +-95.137504,29.542337,Baybrook II (B&N) - Webster TX (W),1037 W. Bay Area Blvd.,Webster,TX,77598 +-95.113275,29.565511,Super Target Webster ST-1837 - Webster TX,1801 W. Bay Area Blvd.,Webster,TX,77598 +-93.993219,29.947922,"Hwy. 69 & Hwy. 365 - Nederland TX (D, W)",3610 Highway 365,Nederland,TX,77627 +-93.988862,29.945653,Target Port Arthur T-1877 - Port Arthur TX,3100 Hwy. 365 Ste. 90,Port Arthur,TX,77642 +-94.170014,30.116924,Kroger-Beaumont #325 - Beaumont TX,3965 Dowlen,Beaumont,TX,77706 +-94.169147,30.116104,Dowlen & Folsom - Beaumont TX (D),3935 Dowlen Road,Beaumont,TX,77706 +-94.153096,30.126195,Target Beaumont T-158 - Beaumont TX,5850 Eastex Fwy,Beaumont,TX,77708 +-96.361,30.6382,Kroger - Bryan #383 - Bryan TX,NE Corner of Hwy. 6 & Booneville Road,Bryan,TX,77801 +-96.32387,30.667109,Target Bryan T-2428 - Bryan TX,3061 Wildflower Dr,Bryan,TX,77801 +-96.352619,30.643732,"Texas & Villa Maria - Bryan TX (D, W)",601 E. Villa Maria Road,Bryan,TX,77802 +-96.396272,30.167676,"Hwy. 36 & Hwy. 290 - Brenham TX (D, W)",111 Hwy. 290 West,Brenham,TX,77833 +-96.35198,30.612622,University & Wellborn - College Station TX (W),409 University,College Station,TX,77840 +-96.332674,30.624988,Texas & Holleman - College Station TX (W),1929 Texas Avenue South,College Station,TX,77840 +-96.316254,30.638323,Hwy. 6 & University - College Station TX (W),1501 University Drive E.,College Station,TX,77840 +-96.314866,30.610533,Target College Station T-800 - College Station TX,2100 Texas Ave. S.,College Station,TX,77840 +-96.285894,30.582134,Kroger - College Station #361 - College Station TX,3535 Longmire Dr,College Station,TX,77840 +-97.000756,28.864053,Target Victoria T-888 - Victoria TX,7608 NE Zac Lentz Pkwy,Victoria,TX,77904 +-96.996961,28.862012,"Navarro & Loop 463 - Victoria TX (D, W)",7105 N. Navarro,Victoria,TX,77904 +-98.71946,29.764824,"I-10 & Hwy. 46 - Boerne TX (D, W)",35065 IH 10 West,Boerne,TX,78006 +-99.170906,30.062233,"Junction Hwy. & Commerce - Kerrville TX (D, W)",1355 Junction Highway,Kerrville,TX,78028 +-99.501096,27.553525,Mall del Norte - Laredo TX (W),5300 San Dario #174,Laredo,TX,78041 +-99.472304,27.574902,"Del Mar & McPhearson - Laredo TX (D, W)",1310 A Del Mar Blvd.,Laredo,TX,78041 +-99.43096,27.57154,Texas A&M International - Laredo TX,5201 University Blvd.,Laredo,TX,78041 +-99.451249,27.515665,Target Laredo T-2112 - Laredo TX,1910 Bob Bullock Loop,Laredo,TX,78043 +-98.422752,29.79666,"Hwy. 46 & Hwy. 281 - Bulverde TX (D, W)",109 Old Boerne Rd.,Bulverde,TX,78070 +-98.153973,29.713071,I-35 & Walnut Ave. - New Braunfels TX (W),697 Walnut Street,New Braunfels,TX,78130 +-98.12177,29.679189,Target New Braunfels North T-2429 - NEW BRAUNFELS TX,135 Creekside Way,NEW BRAUNFELS,TX,78130 +-98.32598,29.571016,"Loop 1604 & I-35 - Selma TX (D, W)",8250 Agora Pkwy,Selma,TX,78154 +-98.282318,29.597665,"I-35 & Tri County - Schertz TX (D, W)",5701 Tri-County Parkway,Schertz,TX,78154 +-98.551385,29.490617,Super Target Balcones Hts. ST-1523 - Balcones Heights TX,4522 Fredricksburg Rd.,Balcones Heights,TX,78201 +-98.534499,29.48411,"I-10 & Vance Jackson - San Antonio TX (D, W)",1118 Vance Jackson,San Antonio,TX,78201 +-98.493673,29.613311,"Loop 1604 & Stone Oak - San Antonio TX (D, W)",18738 Tuscany Stone,San Antonio,TX,78201 +-98.67679,29.559799,"Bandera & Leslie - Helotes TX (D, W)",12577 Bandera Road,Helotes,TX,78203 +-98.4901,29.422514,Marriott Riverwalk - San Antonio TX,711 E. Riverwalk Drive,San Antonio,TX,78205 +-98.489166,29.425213,The Riverwalk - San Antonio TX (W),111 W. Crockett Street,San Antonio,TX,78205 +-98.487411,29.4236,Rivercenter - San Antonio TX (W),849 E. Commerce,San Antonio,TX,78205 +-98.484284,29.423722,Marriott Rivercenter San Antonio - San Antonio TX,101 Bowie St.,San Antonio,TX,78205 +-98.479662,29.493554,The Quarry - San Antonio TX (W),255 Basse Rd.,San Antonio,TX,78209 +-98.479351,29.494995,The Quarry II - San Antonio TX,320 E. Basse Rd.,San Antonio,TX,78209 +-98.462863,29.476263,Broadway & Joliet - San Antonio TX (W),5321 Broadway Road,San Antonio,TX,78209 +-98.458704,29.506006,Nacogdoches & New Braunfels - San Antonio TX (W),1901 Nacogdoches,San Antonio,TX,78209 +-98.49945,29.44081,San Pedro & Cypress - San Antonio TX (D),801 San Pedro,San Antonio,TX,78212 +-98.521431,29.535078,Lockhill Selma - San Antonio TX (W),8055 West Avenue,San Antonio,TX,78213 +-98.490824,29.436939,"Quincy & McCullough - San Antonio TX (D, W)",411 E. Quincy,San Antonio,TX,78215 +-98.50573,29.520063,Target Park North T-2467 - San Antonio TX,746 NW Loop 410,San Antonio,TX,78216 +-98.49928,29.515814,San Pedro & Rector - San Antonio TX (W),7311 San Pedro,San Antonio,TX,78216 +-98.497952,29.519365,North Star Mall - San Antonio TX (W),7400 San Pedro,San Antonio,TX,78216 +-98.485428,29.566653,"Bitters & Embassy Row - San Antonio TX (D, W)",210 West Bitters,San Antonio,TX,78216 +-98.476693,29.521581,SAT - San Anton Term 1 Simply Books - San Antonio TX (A),9700Airport Blvd.,San Antonio,TX,78216 +-98.476693,29.521581,SAT - Term 2$ Main Gate Hold Area - San Antonio TX (A),9700Airport Blvd.,San Antonio,TX,78216 +-98.476693,29.521581,SAT - Term 1 Main Conc Ticketing - San Antonio TX (A),9700Airport Blvd.,San Antonio,TX,78216 +-98.394768,29.510295,"I-35 & Walzem - San Antonio TX (D, W)",4901 Walzem,San Antonio,TX,78218 +-98.524618,29.357039,I-35 & SW Military - San Antonio TX (D),1935 SW Military,San Antonio,TX,78221 +-98.437689,29.352322,"SE Military & Goliad - San Antonio TX (D, W)",3170 SE Military Drive,San Antonio,TX,78223 +-98.436062,29.353533,Target San Antonio T-1852 - San Antonio TX,3227 SE Military Dr,San Antonio,TX,78223 +-98.542692,29.355612,Target San Antonio T-771 - San Antonio TX,2810 SW Military Dr,San Antonio,TX,78224 +-98.345349,29.486111,Target San Antonio Far East T- 2452 - San Antonio TX,7014 FM 78,San Antonio,TX,78224 +-98.579073,29.510168,"Medical & Wurzbach - San Antonio TX (D, W)",4739 Medical Drive,San Antonio,TX,78229 +-98.584646,29.550197,Huebner Oaks - San Antonio TX (W),11745 IH-10 West,San Antonio,TX,78230 +-98.498728,29.556441,Fiesta Trail (B&N) - San Antonio TX (W),12635 I-H10 West,San Antonio,TX,78230 +-98.292362,29.465853,The Colonade - San Antonio TX (W),9811 Interstate 10 West,San Antonio,TX,78230 +-98.508192,29.608427,"SR 1604 & Blanco Rd. - San Antonio TX (D, W)",18154 Blanco Rd.,San Antonio,TX,78232 +-98.48011,29.564872,Target San Antonio (Bitters) T-176 - San Antonio TX,13700 San Pedro Ave.,San Antonio,TX,78232 +-98.467155,29.605132,FM 1604 & Hwy. 281 - San Antonio TX (W),18130 U.S. Highway 281 North,San Antonio,TX,78232 +-98.466282,29.609602,"Legacy - San Antonio TX (D, W)",1723 N. Loop 1604 E.,San Antonio,TX,78232 +-98.447167,29.458268,Ft. Sam Houston - AMEDD - Fort Sam Houston TX,3841 Scotts Rd.,Fort Sam Houston,TX,78234 +-98.6267,29.383,Lackland AFB - Main BX - san antonio TX,Lackland AFB TX Main Base Exchange,san antonio,TX,78236 +-98.61669,29.39212,Lackland AFB - San Antonio TX,2180 Kenly Ave.,San Antonio,TX,78236 +-98.620834,29.468969,Ingram Park Mall - San Antonio TX (W),6301 NW Loop 410,San Antonio,TX,78238 +-98.613596,29.47394,Ingram Festival (B&N) - San Antonio TX (W),6065 NW Loop 410,San Antonio,TX,78238 +-98.568657,29.524173,Wurzbach Rd. & Gardendale St. - San Antonio TX (D),8746 Wurzbach Road,San Antonio,TX,78240 +-98.64963,29.438409,Target San Antonio T-1979 - San Antonio TX,8223 Hwy. 151,San Antonio,TX,78245 +-98.64933,29.436367,"Loop 410 & Hwy. 151 - San Antonio TX (D, W)",8227 State Hwy. 151,San Antonio,TX,78245 +-98.711214,29.446091,1604 & Blanco Road - San Antonio TX (W),1130 N. Loop 1604 West,San Antonio,TX,78248 +-98.5894,29.5785,Aramark @ University of San Antonio - San Antonio TX,1 UTSA Cir,San Antonio,TX,78249 +-98.666,29.552631,Loop 1604 & Bandera - San Antonio TX (W),11620 Bandera Road,San Antonio,TX,78250 +-98.661819,29.547644,Super Target San Antonio ST-1785 - San Antonio TX,11311 Bandera Rd.,San Antonio,TX,78250 +-98.638395,29.522008,Bandera & Gilbeau - San Antonio TX (W),8407 Bandera,San Antonio,TX,78250 +-98.49043,29.554859,"Loop 1604 & Potranco - San Antonio TX (D, W)",438 West Loop 1604 North,San Antonio,TX,78251 +-98.757,29.4618,Loop 1604 & Culebra Rd. - San Antonio TX (D),108626 Culebra Rd.,San Antonio,TX,78253 +-98.59196,29.591738,SuperTarget San Antonio Culebra ST- - San Antonio TX,5355 W. Loop 1604 N.,San Antonio,TX,78253 +-98.618066,29.592901,The Shops at LaCantera - San Antonio TX (W),15900 LaCantera Parkway Bldg 3,San Antonio,TX,78256 +-98.60454,29.604358,westin la cantera lobby - san antonio TX,16641 la cantera pkwy.,san antonio,TX,78256 +-98.633069,29.663876,Boerne Stage Rd. & I-10W - San Antonio TX (W),24175 IH 10 West,San Antonio,TX,78257 +-98.597018,29.606648,Target San Antonio/La Cantera T-2 - San Antonio TX,17502 La Cantera Pkwy,San Antonio,TX,78257 +-98.508472,29.610386,Super Target San Antonio ST-1354 - San Antonio TX,18255 Blanco Rd.,San Antonio,TX,78258 +-98.44956,29.651764,281 & Stone Oak - San Antonio TX (W),22606 US 281 North,San Antonio,TX,78259 +-98.449197,29.653513,Super Target San Antonio/Stone Oak- - San Antonio TX,22832 US Highway 281 N.,San Antonio,TX,78259 +-98.4354,29.6281,JW Marriott San Antonio TPC - san antonio TX,Tournement Players Champions Parkway,san antonio,TX,78259 +-98.576618,29.533144,USAA - B Courtyard - San Antonio TX,9800 Frederickburg Rd.,San Antonio,TX,78288 +-98.576618,29.533144,USAA - BSB Breakroom - San Antonio TX,9800 Frederickburg Rd.,San Antonio,TX,78288 +-98.576618,29.533144,USAA Campus - Building H - San Antonio TX,9800 Frederickburg Rd.,San Antonio,TX,78288 +-97.31926,27.883257,"Hwy. 181 & Wildcat - Portland TX (D, W)",1304 Wildcat Drive,Portland,TX,78374 +-97.387963,27.740602,"Staples & Doddridge - Corpus Christi TX (D, W)",3738 Staples,Corpus Christi,TX,78411 +-97.369994,27.706798,"SPID & Staples - Corpus Christi TX (D, W)",5601 South Padre Island Drive,Corpus Christi,TX,78412 +-97.381888,27.684975,"Saratoga & Staples - Corpus Christi TX (D, W)",5630 Saratoga Blvd.,Corpus Christi,TX,78414 +-98.23299,26.188895,"10th & Expwy 83 - McAllen TX (D, W)",1700 S. 10th Street,McAllen,TX,78501 +-98.225205,26.235385,"10th & Jonquil - McAllen TX (D, W)",3509 N. 10th St.,McAllen,TX,78501 +-98.254055,26.244375,Target - McAllen T-2224 - McAllen TX,3600 Nolana Ave.,McAllen,TX,78504 +-98.219509,26.265298,"10th & Trenton - McAllen TX (D, W)",7017 N. 10th,McAllen,TX,78504 +-97.51352,25.970175,Target Brownsville T-2152 - Brownsville TX,4200 N. Expy,Brownsville,TX,78520 +-97.47588,25.919901,Target Brownsville T-763 - Brownsville TX,2940 Boca Chica Blvd.,Brownsville,TX,78521 +-97.506969,25.949141,"FM 802 & San Marcelo - Brownsville TX (D, W)",1465 E. Ruben M Torres Sr. Blvd.,Brownsville,TX,78526 +-97.715756,26.189414,Hwy. 83 & Tyler - Harlingen TX (D),1816 W. Tyler Ave.,Harlingen,TX,78550 +-97.6854,26.2146,HRL - Harlingen Valley - Harlingen TX (A),3002 Heritage Way,Harlingen,TX,78550 +-97.67388,26.172672,"Ed Carey & Sunshine Strip - Harlingen TX (D, W)",1521 Ed Carey,Harlingen,TX,78550 +-97.72087,26.18341,Target Harlingen T-802 - Harlingen TX,1002 Dixieland Rd.,Harlingen,TX,78552 +-97.888167,26.163307,Rio Grande Premium Outlet - Mercedes TX (W),5001 E. Expressway 83,Mercedes,TX,78570 +-98.3522,26.219831,Target Mission T-2237 - Mission TX,2427 E. US Expy 83,Mission,TX,78572 +-98.008436,26.171996,Hwy. 83 & Westgate - Weslaco TX (D),1915 West Expressway 83,Weslaco,TX,78596 +-97.334737,30.107526,"71 & Hasler - Bastrop TX (D, W)",501 B Hwy. 71 West,Bastrop,TX,78602 +-97.821569,30.082759,"I-35 & Loop 4 - Buda TX (D, W)",15295 I-35,Buda,TX,78610 +-97.828471,30.491298,Randall's - Cedar Park #1896 - Cedar Park TX,1400 Cypress Creek Road,Cedar Park,TX,78613 +-97.822425,30.497549,Lakeline & Cypress Creek - Cedar Park TX (W),1525 Cypress Creek Road,Cedar Park,TX,78613 +-97.815667,30.525929,"Hwy. 183 & FM 1431 - Cedar Park TX (D, W)",1335 E. Whitestone Blvd.,Cedar Park,TX,78613 +-97.812896,30.528543,Super Target Cedar Park ST-2342 - Cedar Park TX,1101 C-Bar Ranch Trail,Cedar Park,TX,78613 +-97.784557,30.533014,Hwy. 1431 & Parmer - Cedar Park TX (W),2800 E. Whitestone Blvd.,Cedar Park,TX,78613 +-97.693132,30.632428,I-35 & SR 29 - Georgetown TX (D),1003 W. University,Georgetown,TX,78626 +-97.677449,30.648746,Austin Ave. & Williams Dr. - Georgetown TX (W),900 N. Austin Avenue,Georgetown,TX,78626 +-97.615483,30.531728,"US 79 & CR 122 - Round Rock TX (D, W)",4450 E. Palm Valley Blvd.,Round Rock,TX,78626 +-97.695804,30.632912,Target Georgetown T-1982 - Georgetown TX,1021 W. University,Georgetown,TX,78628 +-97.8604,30.0127,Hwy. 1626 & I 35 - Kyle TX,5401 South FM 1626,Kyle,TX,78640 +-97.84431,29.9962,Target Kyle T-2725 - Kyle TX,5188 Kyle Center Dr,Kyle,TX,78640 +-97.860644,30.613841,US 183 & Crystal Falls Pkwy. - Leander TX (D),1805 S. US Hwy. 183,Leander,TX,78641 +-98.27037,30.562611,"Hwy. 281 & Gateway North - Marble Falls TX (D, W)",301 Gateway,Marble Falls,TX,78654 +-97.645995,30.446327,"FM 1825 & Central Commerce - Pflugerville TX (D, W)",2604 W. Pecan Street,Pflugerville,TX,78660 +-97.601962,30.455773,"Pflugerville Loop & FM 685 - Pflugerville TX (D, W)",1709 Pflugerville Pkwy,Pflugerville,TX,78660 +-97.584496,30.4804,Target Pflugerville T 2495 - Pflugerville TX,18700 Limestone Commercial Dr,Pflugerville,TX,78660 +-97.689437,30.566213,Round Rock Premium Outlets - Round Rock TX (W),4401 North I-35,Round Rock,TX,78664 +-97.65904,30.481583,Louis Henna & Greenlawn - Round Rock TX (W),603-B Louis Henna Blvd.,Round Rock,TX,78664 +-97.654915,30.495531,Randalls-Round Rock #2636 - Round Rock TX,2051 Gattis School Road,Round Rock,TX,78664 +-97.986276,29.828348,"Centerpoint & I-35 - San Marcos TX (D, W)",690 Centerpoint Rd.,San Marcos,TX,78666 +-97.983765,29.828712,Prime Outlets- San Marcos - San Marcos TX (W),3939 IH-35 South #900,San Marcos,TX,78666 +-97.951,29.9031,Target San Marcos T-2438 - San Marcos TX,700 Barnes Dr,San Marcos,TX,78666 +-97.935707,29.887718,Texas State University - San Marcos TX,601 University Dr.,San Marcos,TX,78666 +-97.68943,30.51675,"I-35 & Sam Bass - Round Rock TX (D, W)",1010 IH 35,Round Rock,TX,78681 +-97.688002,30.559351,I-35 & University - Round Rock TX,200 University,Round Rock,TX,78681 +-97.687394,30.508361,IH-35 & Round Rock Ave. - Round Rock TX (W),110 North IH 35,Round Rock,TX,78681 +-97.67636,30.482872,IH-35 & FM 1325 - Round Rock TX (W),115 Sundance Pkwy,Round Rock,TX,78681 +-97.753278,30.269758,5th & Lamar - Austin TX (W),907 W. 5th St.,Austin,TX,78701 +-97.744434,30.277992,15th & San Antonio - Austin TX (W),501 West 15th Street,Austin,TX,78701 +-97.743978,30.26278,Radisson Hotel & Suites- Austin - Austin TX,111 E. Cesar Chavez Street,Austin,TX,78701 +-97.742832,30.268081,One American Center - Austin TX (W),600 Congress Ave.,Austin,TX,78701 +-97.741416,30.271807,10th & Congress - Austin TX (W),1001 Congress Avenue,Austin,TX,78701 +-97.740619,30.265535,Downtown Austin Courtyard - Austin TX,300 E. 4th St.,Austin,TX,78701 +-97.77596,30.283551,Randalls - Austin #2483 - Austin TX,715 Exposition,Austin,TX,78703 +-97.764132,30.304264,Casis Village - Austin TX (W),2727 Exposition Blvd.,Austin,TX,78703 +-97.749021,30.306653,Randalls - Austin #2481 - Austin TX,1500 W. 35th St.,Austin,TX,78703 +-97.792733,30.236262,S. Lamar & Ben White Blvd. - Austin TX (W),4006 S. Lamar Blvd.,Austin,TX,78704 +-97.789793,30.229634,Randall's-Austin #2485 - Austin TX,2025 W. Ben White Blvd.,Austin,TX,78704 +-97.763911,30.252047,"S. Lamar & Collier - Austin TX (D, W)",1509 South Lamar Blvd.,Austin,TX,78704 +-97.757564,30.220122,"Ben White & Payload Pass - Austin TX (D, W)",500A East Ben White Blvd.,Austin,TX,78704 +-97.742407,30.233659,"Oltorf & I-35 - Austin TX (D, W)",2300 S. IH-35 South,Austin,TX,78704 +-97.742579,30.287997,W.24th & Nueces (White House) - Austin TX (W),504 W. 24th St.,Austin,TX,78705 +-97.738708,30.302552,38th & Guadalupe - Austin TX (W),3706 Guadalupe Street,Austin,TX,78705 +-97.732674,30.284541,University ofTexas Memorial Stadium - Austin TX,Royal - Texas Memorial Stadium,Austin,TX,78705 +-97.7416,30.2877,Texas Union - Univ. of Texas - austin TX,24th & Guadalupe,austin,TX,78713 +-97.79712,30.47415,Super Target Austin NW ST-1797 - Austin TX,10900 Lakeline Mall Blvd.,Austin,TX,78717 +-97.71094,30.30726,I 35 & 51st - Austin TX,1201 Barbara Jordan Blvd.,Austin,TX,78723 +-97.802027,30.369528,Hwy. 620 & Hwy. 2222 - Austin TX (W),7301 Ranch Rd. 620,Austin,TX,78726 +-97.702665,30.418886,"Parmer & Mopac - Austin TX (D, W)",2505 Parmer Lane,Austin,TX,78727 +-97.689497,30.413372,"Parmer & Metric - Austin TX (D, W)",1700 W. Parmer Lane,Austin,TX,78727 +-97.74351,30.445746,"Parmer & McNeil - Austin TX (D, W)",6301 West Parmer Lane,Austin,TX,78729 +-97.758094,30.371456,Randalls-Austin #2482 - Austin TX,8040 Mesa Dr,Austin,TX,78731 +-97.757002,30.336974,"Northland & Balcones - Austin TX (D, W)",3317 Northland Dr,Austin,TX,78731 +-97.756454,30.354586,Far West Blvd. & Hart Ln. - Austin TX (W),3637 Far West Blvd.,Austin,TX,78731 +-97.920115,30.199809,Target Four Points T-1953 - Austin TX,11220 FM 2222,Austin,TX,78732 +-97.966408,30.340017,620 & Lohmans Crossing - Lakeway TX (W),2303 Ranch Road 620 South,Lakeway,TX,78734 +-97.961226,30.355564,Lakeway Blvd. & Ranch Rd. 620 - Austin TX (W),900 Ranch Rd. 620,Austin,TX,78734 +-97.83694,30.220352,William Cannon & Mopac - Austin TX (W),6600 S. Mopac Expressway,Austin,TX,78735 +-97.874458,30.233285,SR 71 & US 290 - Austin TX (D),7015 West US Hwy. 290,Austin,TX,78736 +-97.93248,30.304349,Bee Cave & 71 - Austin TX (W),12400 State Hwy. 71 West,Austin,TX,78738 +-97.878981,30.203041,"Slaughter & Escarpment - Austin TX (D, W)",9600 Escarpment Blvd. Bldg F,Austin,TX,78739 +-97.848229,30.183771,Randalls - Austin #1850 - Austin TX,9911 Brodie Lane,Austin,TX,78745 +-97.822371,30.227914,Sunset Valley Marketfair - Austin TX (W),5400 Brodie Lane,Austin,TX,78745 +-97.814814,30.207903,"William Cannon & Westgate - Austin TX (D, W)",6816 Westgate Blvd.,Austin,TX,78745 +-97.688632,30.219082,SR 71 & E. Riverside - Austin TX (D),7709 E. Ben White Blvd.,Austin,TX,78745 +-97.825072,30.292646,Bee Caves/Village at Westlake (B&N) - Austin TX (W),701 Capital of Texas Highway So.,Austin,TX,78746 +-97.799204,30.27506,Westbank Market - Austin TX (W),3300 Bee Cave Road,Austin,TX,78746 +-97.79952,30.275895,Randalls-Austin #2477 - Austin TX,3300 Bee Caves Rd.,Austin,TX,78746 +-97.790065,30.160954,Super Target Austin Southpark ST-22 - Austin TX,9500 S. I-35,Austin,TX,78748 +-97.787915,30.167405,I-35 & Slaughter - Austin TX (W),9300 S. I-35 Service Rd. S. Bound,Austin,TX,78748 +-97.827847,30.23279,Target Austin T-1061 - Austin TX,5300 S. Mo Pac Expy,Austin,TX,78749 +-97.794794,30.460814,Hwy. 183 & Lake Creek - Austin TX (W),13764 Research Blvd.,Austin,TX,78750 +-97.791129,30.447841,Hwy. 183 & Anderson Mill Rd. - Austin TX (W),13450 Research Blvd.,Austin,TX,78750 +-97.670724,30.413867,Super Target Austin ST-1817 - Austin TX,12901 N. I-35,Austin,TX,78753 +-97.73858,30.312074,45th & N. Lamar - Austin TX (W),4400 N. Lamar,Austin,TX,78756 +-97.735566,30.359379,"Rockwood & Anderson - Austin TX (D, W)",2900 West Anderson Lane,Austin,TX,78757 +-97.75144,30.395052,Arboretum Market - Austin TX,9722 Great Hills Trail,Austin,TX,78759 +-97.747419,30.401811,Hwy. 183 & Braker Ln. (Randalls) - Austin TX (W),10900 Research Blvd.,Austin,TX,78759 +-97.746023,30.393745,Target Austin Arboretum T-2409 - Austin TX,10107 Research Blvd.,Austin,TX,78759 +-97.72707,30.404888,The Domain- Austin - Austin TX (W),11410 Mopac Expressway Ste. C09,Austin,TX,78759 +-101.875958,35.222227,"I 40 & Grand - Amarillo TX (D, W)",3512 E. Interstate 40,Amarillo,TX,79103 +-101.866214,35.189719,"Georgia St. & Austin - Amarillo TX (D, W)",2335 Georgia Street,Amarillo,TX,79109 +-101.938199,35.178829,"Soncy Rd. & I-40 - Amarillo TX (D, W)",3240 S. Soncy Road,Amarillo,TX,79124 +-101.87067,33.588263,University & 8th - Lubbock TX (W),801 University,Lubbock,TX,79401 +-101.8346,33.6157,LBB - Lubbock IntlAirport - Lubbock TX (A),5401 N. Martin Luther King Blvd.,Lubbock,TX,79403 +-101.957177,33.583888,"Brownfield & Milwaukee - Lubbock TX (D, W)",5014 Milwaukee,Lubbock,TX,79407 +-101.940749,33.552569,Target Lubbock T-2190 - Lubbock TX,6064 Brownfield Hmy,Lubbock,TX,79407 +-101.922418,33.5915,4th & Slide - Lubbock TX (W),427 Slide Road,Lubbock,TX,79416 +-101.871014,33.675158,"80th & University - Lubbock TX (D, W)",8001 University,Lubbock,TX,79423 +-101.905422,33.520099,"82nd & Quaker - Lubbock TX (D, W)",4402 - 82nd Street,Lubbock,TX,79424 +-99.759426,32.432457,14th & Barrow - Abilene TX (W),1389 Barrow,Abilene,TX,79605 +-99.758045,32.402791,"Buffalo Gap & Hwy. 83 - Abilene TX (D, W)",4150 Buffalo Gap Road,Abilene,TX,79605 +-102.075,31.9735,"Rankin Hwy. & I-20 - Midland TX (D, W)",2410 Rankin Hwy.,Midland,TX,79701 +-102.125,32.0179,"Midkiff & Wadley - Midland TX (D, W)",3203 North Midkiff Road,Midland,TX,79705 +-102.373728,31.845074,Medical Center Hospital Odessa Lbby - Odessa TX,500 W. 4th St.,Odessa,TX,79761 +-102.353525,31.888982,"42nd & Grandview - Odessa TX (D, W)",2016 E. 42nd,Odessa,TX,79762 +-106.576541,31.865293,"I-10 & Redd - El Paso TX (D, W)",5650 N. DESERT BLVD,El Paso,TX,79912 +-106.576254,31.861874,Albertsons-El Paso Redd #994 - El Paso TX,5630 N. Desert Blvd.,El Paso,TX,79912 +-106.57247,31.839715,"Mesa & I-10$ El Paso - El Paso TX (D, W)",7829 Mesa Street,El Paso,TX,79912 +-106.529961,31.829147,"Sunland and Mesa - El Paso TX (D, W)",6015-A N. Mesa St.,El Paso,TX,79912 +-106.500486,31.77446,"Mesa & Kerby - El Paso TX (D, W)",2300 North Mesa,El Paso,TX,79912 +-106.392648,31.77929,"I-10 and Airway - El Paso TX (D, W)",6669 Gateway Blvd. W.,El Paso,TX,79912 +-106.302927,31.724176,"George Dieter Dr. & I-10 - El Paso TX (D, W)",1325 George Dieter,El Paso,TX,79912 +-106.439047,31.900739,"I-54 and Transmountain - El Paso TX (D, W)",4535 Woodrow Bean Drive,El Paso,TX,79924 +-106.412852,31.785548,Montana and Geronimo - El Paso TX (D),6094 Montana,El Paso,TX,79925 +-106.396065,31.798909,ELP Concourse B - El Paso TX (A),6701 Convair Rd.,El Paso,TX,79925 +-106.380936,31.774401,Cielo Vista Mall - El Paso TX (W),8401 Gateway Blvd. West,El Paso,TX,79925 +-106.319536,31.767769,"Lee Trevino & Montwood - El Paso TX (D, W)",1893 N. Lee Trevino,El Paso,TX,79936 +-106.268783,31.759678,"Joe Battle & Montwood - El Paso TX (D, W)",1881 Joe Battle,El Paso,TX,79936 +-106.267279,31.759334,Super Target El Paso/Far East ST-22 - El Paso TX,1874 Joe Battle Blvd.,El Paso,TX,79936 +-105.10926,39.802202,"58th & Kipling- Arvada - Arvada CO (D, W)",9901 W. 58th Ave.,Arvada,CO,80001 +-105.110148,39.786854,"50th and Kipling-Wheatridge CO - Wheat Ridge CO (D, W)",4975 Kipling St.,Wheat Ridge,CO,80003 +-105.085389,39.840041,Target Arvada T-48 - Arvada CO,7899 Wadsworth Blvd.,Arvada,CO,80003 +-105.081017,39.816761,"66th & Wadsworth-Arvada - Arvada CO (D, W)",6600 W. Wadsworth Blvd.,Arvada,CO,80003 +-105.08091,39.841886,Safeway-Arvada #1998 - Arvada CO,7561 W. 80th Ave.,Arvada,CO,80003 +-105.053377,39.828108,72nd & Sheridan- Westminster - Westminster CO (D),7221 Sheridan Blvd.,Westminster,CO,80003 +-105.141293,39.811958,Safeway-Arvada #1107 - Arvada CO,12680 W. 64th Ave.,Arvada,CO,80004 +-105.136757,39.812646,64th & Ward - Arvada CO (W),12370 W. 64th Ave.,Arvada,CO,80004 +-105.082396,39.844257,80th & Wadsworth - Arvada CO (W),8071 Wadsworth Blvd.,Arvada,CO,80005 +-105.076126,39.79795,55th & Wadsworth - Arvada CO (W),5545 Wadsworth By-Pass,Arvada,CO,80007 +-104.789981,39.638608,Safeway-Aurora #139 - Aurora CO,16921 E. Quincy Ave.,Aurora,CO,80010 +-104.810598,39.740157,Colfax & Chambers-Aurora (UCO) - Aurora CO (W),15261 E. Colfax Ave.,Aurora,CO,80011 +-104.774702,39.764012,"Tower & I-70- Aurora - Aurora CO (D, W)",3455 N. Salida St.,Aurora,CO,80011 +-104.86793,39.686176,Safeway-Aurora #2612 - Aurora CO,1677 S. Havana,Aurora,CO,80012 +-104.867313,39.695535,Havana & Mississipi - Aurora CO (W),1155 S. Havana,Aurora,CO,80012 +-104.862138,39.711168,"Alameda & Ironton - Aurora CO (D, W)",10761 E. Alameda,Aurora,CO,80012 +-104.822024,39.712899,I-225 & Alameda-Aurora - Aurora CO (W),14261 East Cedar Avenue,Aurora,CO,80012 +-104.821318,39.715148,Super Target Aurora ST-1471 - Aurora CO,14200 E. Ellsworth Ave.,Aurora,CO,80012 +-104.773145,39.652448,"Hampden Ave. & Tower- Aurora - Aurora CO (D, W)",3551 South Tower Rd.,Aurora,CO,80012 +-104.786579,39.673298,Iliff & Buckley - Aurora CO (W),17200 E. Iliff Ave. Unit A-1,Aurora,CO,80013 +-104.769751,39.651533,Safeway-Aurora #1928 - Aurora CO,18730 E. Hampden Ave.,Aurora,CO,80013 +-104.850109,39.660011,"Parker & Peoria-Aurora - Aurora CO (D, W)",3128 S. Parker Road,Aurora,CO,80014 +-104.84594,39.696073,Safeway #137 - Aurora - Aurora CO,12200 E. Mississippi Ave.,Aurora,CO,80014 +-104.810557,39.632637,Chambers & Smoky Hill-Aurora - Aurora CO (W),15285 Smoky Hill Rd.,Aurora,CO,80015 +-104.757958,39.614884,Smoky & Himalaya - Aurora CO (W),19751-A Smoky Hill Road,Aurora,CO,80015 +-104.752425,39.612411,Safeway-Aurora #1933 - Centennial CO,20153 E. Smoky Hill Rd.,Centennial,CO,80015 +-104.793834,39.625568,Albertsons-Aurora #888 - Aurora CO,16746 East Smoky Hill Road,Aurora,CO,80015 +-104.804896,39.600056,King Soopers-Aurora #84 - Aurora CO,6412 S. Parker Rd.,Aurora,CO,80016 +-104.803071,39.597786,Parker Rd. & Arapahoe - Aurora CO (W),6554 South Parker Road,Aurora,CO,80016 +-104.724895,39.575413,Safeway-Centennial #1974 - Aurora CO,22675 E. Aurora Pkwy,Aurora,CO,80016 +-104.724263,39.579925,"E-470 & Gartrell- Aurora - Aurora CO (D, W)",7500 S. Gartrell Rd.,Aurora,CO,80016 +-104.722117,39.581569,Super Target Aurora ST-1976 - Aurora CO,7400 S. Gartrell Rd.,Aurora,CO,80016 +-104.715171,39.60471,Albertsons-Aurora #899 - Aurora CO,6100 S. Gun Club Rd.,Aurora,CO,80016 +-104.6737,39.5939,Target Aurora South T-2458 - Aurora CO,15700 E. Briarwood Cir,Aurora,CO,80016 +-104.789985,39.68732,"Mississippi and Buckley - Aurora CO (D, W)",1240 S. Buckely Rd.,Aurora,CO,80017 +-105.070405,39.915138,Safeway-Broomfield #1146 - Broomfield CO,6775 W. 120th Ave.,Broomfield,CO,80020 +-105.05485,39.915145,King Soopers-Broomfield CO #86 - Broomfield CO,12167 Sheridan Blvd.,Broomfield,CO,80020 +-105.0537,39.914075,Hwy. 287 & Miramonte - Broomfield CO (W),1170 US Highway 287,Broomfield,CO,80020 +-105.052192,39.912303,120th & Sheridan - Westminster CO (W),5180 B West 120th Avenue,Westminster,CO,80020 +-105.035945,39.956795,Safeway-Broomfield #2624 - Broomfield CO,3600 W. 144th Ave.,Broomfield,CO,80020 +-104.995192,39.958914,Super Target Westminster ST - 2197 - Westminster CO,14451 Orchard Pkwy,Westminster,CO,80020 +-104.992198,39.945143,"136th & I-25- Westminster - Westminster CO (D, W)",13640 Orchard Parkway,Westminster,CO,80020 +-104.99152,39.95865,"144th and I-25-Westminster - Westminster CO (D, W)",14456 Delaware Street,Westminster,CO,80020 +-105.1326,39.929644,Flatiron Crossing Mall #23- Broomf - Broomfield CO (W),1 West Flatiron Circle,Broomfield,CO,80021 +-105.124362,39.931402,Flatiron Market Place Drive - Broomfield CO (D),291 East Flatiron Circle,Broomfield,CO,80021 +-105.078693,39.886307,Super Target Westminster ST-1929 - Westminster CO,10445 Reed St.,Westminster,CO,80021 +-105.076242,39.886808,"Walnut Creek-Westminster - Westminster CO (D, W)",10445 Town Center Dr,Westminster,CO,80021 +-105.096942,39.880058,"101st & Wadsworth Westminster - Westminster CO (D, W)",10111 Wadsworth Parkway,Westminster,CO,80021 +-104.771702,39.884382,"104th & Tower Commerce City - Commerce City CO (D, W)",10339 Tower Road,Commerce City,CO,80022 +-105.015427,39.943111,King Soopers-Broomfield CO #118 - Broomfield CO,2355 W. 136th St.,Broomfield,CO,80023 +-105.096237,40.000207,King Soopers-Lafayette #135 - Lafayette CO,480 North Hwy. 287,Lafayette,CO,80026 +-105.094862,39.987023,Hwy. 287 & S. Boulder Rd- Lafayette - Lafayette CO (W),535 West South Boulder Road,Lafayette,CO,80026 +-105.169846,39.955666,Super Target Superior ST-1769 - Superior CO,400 Marshall Rd.,Superior,CO,80027 +-105.165937,39.979823,McCaslin & Century Relocation - Louisville CO (D),459 McCaslin Blvd.,Louisville,CO,80027 +-105.15328,39.928963,"Coalton & Rock Creek- Superior - Superior CO (D, W)",2800 Rock Creek Circle,Superior,CO,80027 +-105.138593,39.928957,Safeway-Superior #1656 - Superior CO,1601 Coalton Rd.,Superior,CO,80027 +-105.053042,39.869007,Westminster B&N - Westminster CO (W),9372 Sheridan Boulevard,Westminster,CO,80030 +-105.025066,39.829958,73rd & Federal-Westminster - Westminster CO (W),7347 N. Federal Blvd.,Westminster,CO,80030 +-105.025229,39.884625,104th Ave. & Federal Blvd. - Westminster CO (W),10339 N. Federal Boulevard,Westminster,CO,80031 +-105.142493,39.761924,Applewood Village - Wheat Ridge CO (W),3450 Youngfield,Wheat Ridge,CO,80033 +-105.140854,39.763995,King Soopers-Wheatridge #20 - Wheat Ridge CO,3400 Yongfield,Wheat Ridge,CO,80033 +-105.109991,39.769099,38th & Kipling-Wheat Ridge - Wheat Ridge CO (W),3795 Kipling St.,Wheat Ridge,CO,80033 +-105.10952,39.790574,Super Target Arvada ST-2021 - Wheat Ridge CO,5171 Kipling St.,Wheat Ridge,CO,80033 +-105.08134,39.771702,Safeway-Wheat Ridge #1479 - Wheat Ridge CO,3900 Wadsworth,Wheat Ridge,CO,80033 +-104.920391,39.707188,"5835 Leetsdale - Denver CO (D, W)",5835 Leetsdale Drive,Denver,CO,80033 +-104.43337,39.76642,King Soopers-Bennett #112 - Bennett CO,1045 1st St.,Bennett,CO,80102 +-104.884428,39.468969,Safeway-Castle Pines #1967 - Castle Rock CO,560 Castle Pines Parkway,Castle Rock,CO,80104 +-104.883119,39.469171,"Castle Pines Pkwy. & Debbie - Castle Rock CO (D, W)",506 Castle Pines Pkwy,Castle Rock,CO,80104 +-104.864334,39.410752,Castle Rock - Castle Rock CO (W),62 Founders Parkway,Castle Rock,CO,80104 +-104.861387,39.364532,Safeway-Castle Rock #1877 - Castle Rock CO,880 Perry St.,Castle Rock,CO,80104 +-104.827608,39.375609,King Soopers - Castle Rock #132 - Castle Rock CO,750 Ridge Road,Castle Rock,CO,80104 +-104.6072,39.3596,Safeway-Elizabeth #1532 - Elizabeth CO,220 S. Elizabeth Street,Elizabeth,CO,80107 +-104.866387,39.413166,"Founders & Allen - Castle Rock CO - Castle Rock CO (D, W)",5642 Allen Way,Castle Rock,CO,80108 +-105.0021,39.653248,Super Target Sheridan ST-2261 - Sheridan CO,W Hampden Ave. & S. Santa Fe Dr,Sheridan,CO,80110 +-104.987705,39.654987,Broadway & Floyd - Englewood CO (W),3319 South Broadway,Englewood,CO,80110 +-104.984105,39.651832,Safeway - Englewood #17 - Englewood CO,201 E. Jefferson Ave.,Englewood,CO,80110 +-104.921106,39.607845,King Soopers-Greenwood Village #96 - Greenwood Village CO,6000 S. Holly,Greenwood Village,CO,80111 +-104.895047,39.623611,Belleview and Ulster - DTC - Greenwood Village CO (W),8000 E. Belleview,Greenwood Village,CO,80111 +-104.887753,39.610353,Orchard & Willow - Greenwood Village CO (W),8745 E. Orchard Road,Greenwood Village,CO,80111 +-104.884094,39.626093,King Soopers-Greenwood Village #100 - Greenwood Village CO,4910 S. Yosemite,Greenwood Village,CO,80111 +-104.884014,39.624724,Belleview & Yosemite - Greenwood Village CO (W),4920 S. Yosemite,Greenwood Village,CO,80111 +-104.849647,39.595569,Arapahoe & Peoria - Centennial CO (W),12023 East Arapahoe Road,Centennial,CO,80111 +-104.904319,39.569592,Willow Creek - Centennial CO (W),8100 S. Quebec,Centennial,CO,80112 +-104.903473,39.596047,Safeway-Englewood #0008 - Englewood CO,7375 E. Arapahoe Road,Englewood,CO,80112 +-104.890878,39.595127,Arapahoe Market Place - Greenwood Village CO (W),8547 E. Arapahoe Rd.,Greenwood Village,CO,80112 +-104.8809,39.593575,Target Arapahoe T-147 - Englewood CO,6767 S. Clinton St.,Englewood,CO,80112 +-104.987417,39.638784,"Broadway & Quincy Englewood - Englewood CO (D, W)",4298 S. Broadway,Englewood,CO,80113 +-104.987222,39.664221,"Broadway and Bates Ave. - Englewood CO (D, W)",2896 S. Broadway,Englewood,CO,80113 +-105.026422,39.584855,Santa Fe & Aspen Grove Way - Littleton CO (W),7301 Santa Fe Drive,Littleton,CO,80120 +-105.008095,39.5984,Safeway - Littleton #2791 - Littleton CO,NWC Broadway at Mineral,Littleton,CO,80120 +-104.98887,39.613135,Broadway & Littleton - Littleton CO (W),50 W. Littleton Blvd.,Littleton,CO,80120 +-104.958061,39.60805,Cherry Hills - Littleton CO (W),5910 South University Blvd.,Littleton,CO,80121 +-108.569877,39.068318,City Market - Grand Junction #432 - Grand Junction CO,200 Rood Ave.,Grand Junction,CO,80122 +-104.960377,39.580256,Cherrywood - Littleton CO (W),7521 S. University Blvd.,Littleton,CO,80122 +-104.960313,39.581914,Albertsons - Centennial #895 - Littleton CO,7450 South University,Littleton,CO,80122 +-104.927858,39.595054,Araphoe Village - Centennial CO - Centennial CO (W),5070 Arapahoe Road,Centennial,CO,80122 +-105.10841,39.624065,Belleview & Kipling - Littleton CO (W),9914 W. Belleview Ave.,Littleton,CO,80123 +-105.10078,39.610758,Super Target Littleton ST-1776 - Littleton CO,9390 W. Cross Dr,Littleton,CO,80123 +-105.018652,39.624027,"Belleview & Prince- Littleton - Littleton CO (D, W)",2600 West Belleview Avenue,Littleton,CO,80123 +-105.035461,39.610387,Albertsons-Littleton #874 - Littleton CO,3615 W. Bowles Avenue,Littleton,CO,80123 +-105.09031,39.60612,Wadworth & Bowles Littleton - Littleton CO (D),6149 S. Balsam Way,Littleton,CO,80123 +-104.8897,39.5363,Safeway-Littleton #1548 - Littleton CO,9229 E. Lincoln Ave.,Littleton,CO,80124 +-104.8869,39.5648,County Line & Yosemite (B&N) - Littleton CO (W),8374 South Willow Street,Littleton,CO,80124 +-104.884181,39.534915,Super Target Lone Tree ST-2023 - Lone Tree CO,10001 Commons St.,Lone Tree,CO,80124 +-104.883898,39.554499,"Yosemite & Maximus - Lone Tree - Lone Tree CO (D, W)",9222 Park Meadows Drive,Lone Tree,CO,80124 +-104.872744,39.563551,Park Meadows - Littleton CO (W),8405 Park Meadows Center Drive,Littleton,CO,80124 +-105.073337,39.48278,Safeway-Roxborough #2722 - Littleton CO,8335 N. Rampart Range Rd.,Littleton,CO,80125 +-104.995077,39.548397,Highlands Ranch & Broadway - Highlands Ranch CO (W),9245 S. Broadway,Highlands Ranch,CO,80126 +-104.993749,39.548144,Safeway-Highlands Ranch #1480 - Highlands Ranch CO,9255 S. Broadway,Highlands Ranch,CO,80126 +-104.944522,39.542792,King Soopers - Littleton #27 - Littleton CO,9551 S. University,Littleton,CO,80126 +-104.942301,39.542998,University Blvd. & Highlands Ranch - Highlands Ranch CO (W),9563 S. Univeristy Blvd.,Highlands Ranch,CO,80126 +-104.942005,39.526054,"Wildcat Reserve & Fairview-CO - Highlands Ranch CO (D, W)",3982 Red Cedar Dr,Highlands Ranch,CO,80126 +-104.940374,39.525544,King Soopers-Highlands Ranch #108 - Highlands Ranch CO,4000 Red Cedar Drive,Highlands Ranch,CO,80126 +-104.907351,39.559036,King Soopers-Highlands Ranch #110 - Highlands Ranch CO,8673 S. Quebec,Highlands Ranch,CO,80126 +-104.965895,39.565226,Target Highlands Ranch T-271 - Highlands Ranch CO,1950 E. County Line Rd.,Highlands Ranch,CO,80126 +-105.135071,39.580225,Ken Caryl & Alkire - Littleton CO (W),12512 West Ken Caryl Ave.,Littleton,CO,80127 +-105.1348,39.579277,Safeway-Littleton #1599 - Littleton CO,12442 W. Ken Caryl Ave.,Littleton,CO,80127 +-105.130607,39.581709,King Soopers-Littleton #25 - Littleton CO,11747 W. Ken Caryl Ave.,Littleton,CO,80127 +-105.10767,39.564099,C-470 & Kipling - Littleton CO (W),9956 W. Remington Place,Littleton,CO,80128 +-105.080298,39.567326,"Wadsworth & Chatfield - Littleton CO (D, W)",7403 West Chatfield,Littleton,CO,80128 +-105.0728,39.5806,Safeway - Littleton #1249 - Littleton CO,Pierce & Ken Caryl,Littleton,CO,80128 +-105.035591,39.548595,Town Center & Santa Fe Highlands R - Highlands Ranch CO (D),9135 Commerce Center Circle,Highlands Ranch,CO,80129 +-105.016159,39.535905,King soopers - Highlands Ranch #8 - Highlands Ranch CO,2205 Wildcat Reserve Pkwy,Highlands Ranch,CO,80129 +-105.0098,39.5451,Target Highlands Ranch T-2716 - Hghlands Ranch CO,1265 SGT Jon Stiles Dr,Hghlands Ranch,CO,80129 +-104.87139,39.09789,"Monument @ I-25 - Monument CO (D, W)",541 Highway 105,Monument,CO,80132 +-104.865695,39.098331,Safeway-Monument #1440 - Monument CO,624 Hwy. 105,Monument,CO,80132 +-104.79064,39.534787,Lincoln & Jordan #21-Parker CO - Parker CO (W),17051 Lincoln Ave.,Parker,CO,80134 +-104.772475,39.513036,Super Target Parker ST-2219 - Parker CO,11150 S. Twenty Mile Rd.,Parker,CO,80134 +-104.766144,39.516412,Safeway-Parker #1446 - Parker CO,11051 S. Parker Road,Parker,CO,80134 +-104.765742,39.511547,Parker & Hilltop - Parker CO (W),11153 S. Parker Rd.,Parker,CO,80134 +-104.760155,39.479661,King Soopers-Parker #75 - Parker CO,12959 S. Parker Rd.,Parker,CO,80134 +-104.768299,39.539052,Parker & Lincoln - Parker - Parker CO (D),9700 S. Parker Road,Parker,CO,80138 +-105.002645,39.753182,16th St. & Blake - Denver CO (W),1490 16th Street,Denver,CO,80202 +-104.999539,39.747538,Larimer Square - Denver CO (W),1406 Larimer St.,Denver,CO,80202 +-104.99817,39.748605,Writer Square - Denver CO (W),1512 Larimer Street,Denver,CO,80202 +-104.99711,39.746019,The Curtis Hotel Lobby - Denver CO,1405 Curtis Street,Denver,CO,80202 +-104.996758,39.691662,REI Denver - Denver CO (W),1416 Platte River,Denver,CO,80202 +-104.995635,39.7492,Westin Tabor Center - Lobby - Denver CO,1672 Lawrence,Denver,CO,80202 +-104.995194,39.746517,16th Street & Curtis - Denver CO (W),934 Sixteenth Street,Denver,CO,80202 +-104.993039,39.744913,16th & California- Denver - Denver CO (W),700 16th St.,Denver,CO,80202 +-104.99213,39.746553,17th & Stout - Denver CO (W),1667 Stout St.,Denver,CO,80202 +-104.99151,39.748559,18th & Champa - Denver CO (W),999 18th Street,Denver,CO,80202 +-104.990308,39.746307,18th & California - Denver CO (W),633 17th St.,Denver,CO,80202 +-104.990099,39.747017,Denver Marriott CC - Lobby - Denver CO,1701 California Street,Denver,CO,80202 +-104.989407,39.745929,Grand Hyatt Denver - Denver CO,1740 Welton St.,Denver,CO,80202 +-104.988691,39.742887,16th & Tremont - Denver CO (W),303 16th Street,Denver,CO,80202 +-104.986838,39.742921,UMB Bank Plaza - Denver CO (W),1670 Broadway,Denver,CO,80202 +-104.986286,39.725483,6th & Lincoln - Denver CO (W),575 Lincoln St.,Denver,CO,80203 +-104.983257,39.725403,6th & Grant (Lattas) - Denver CO (W),300 E. 6th Ave.,Denver,CO,80203 +-104.996125,39.737375,King Soopers - Denver #1 - Denver CO,1331 N. Speer Blvd.,Denver,CO,80204 +-104.895128,39.780685,Bass Pro Shops - Denver - lobby - Denver CO,7970 E. 49th Avenue,Denver,CO,80204 +-104.894738,39.783605,SuperTarget Denver/Stapltn ST-2052 - Denver CO,7930 E. 49th Ave.,Denver,CO,80204 +-105.001077,39.739674,Colfax & Kalamath (UCO) - Denver CO (W),1050 W. Colfax Ave.,Denver,CO,80205 +-104.977539,39.748083,Safeway - Denver #2246 - Denver CO,757 E. 20th Ave.,Denver,CO,80205 +-104.95564,39.721187,Cherry Creek - Denver CO (W),2701 E. 3rd St.,Denver,CO,80206 +-104.954056,39.719855,Cherry Creek II - Denver CO (W),200 Fillmore Street,Denver,CO,80206 +-104.953372,39.71697,Cherry Creek Mall - West - Denver CO (W),3000 1st Ave.,Denver,CO,80206 +-104.952759,39.740538,"Colfax & Milwaukee-Denver - Denver CO (D, W)",2975 E. Colfax Ave.,Denver,CO,80206 +-104.952147,39.717981,Cherry Creek Mall - East - Denver CO (W),3000 E. 1st Ave.,Denver,CO,80206 +-104.950738,39.717054,Safeway-Denver #100 - Denver CO,3110 E. 1st Ave.,Denver,CO,80206 +-104.940877,39.729406,8th & Colorado - Denver CO (W),801 Colorado Blvd.,Denver,CO,80206 +-105.078013,39.758438,Stapleton TC-29th & Quebec (UCO) - Denver CO (W),7304 E. 29th Ave.,Denver,CO,80207 +-104.987605,39.709539,Alameda & Broadway- Denver - Denver CO (W),381 S. Broadway,Denver,CO,80209 +-104.987597,39.710728,Albertsons-Denver #885 - Denver CO,323 S. Broadway,Denver,CO,80209 +-104.972955,39.711132,Alameda & Downing - Denver CO (W),1209 East Alameda Ave.,Denver,CO,80209 +-104.972538,39.677622,Safeway - Denver #1463 - Denver CO,2150 S. Downing,Denver,CO,80210 +-104.968435,39.678706,Franklin & Evans-Denver - Denver CO (W),1605 E. Evans Ave.,Denver,CO,80210 +-104.958959,39.679712,University and Asbury - Denver CO (W),2000 S. University,Denver,CO,80210 +-104.940794,39.686604,Safeway-Denver #1038 - Denver CO,1653 S. Colorado Blvd.,Denver,CO,80210 +-105.036897,39.776077,Safeway-Denver #244 - Denver CO,3800 W. 44th Ave.,Denver,CO,80211 +-105.024949,39.776611,"44th Ave. & Federal Blvd-Denver - Denver CO (D, W)",2990 W. 44th Ave.,Denver,CO,80211 +-105.024868,39.760107,Speer & Federal - Denver - Denver CO (W),2990 North Speer Blvd.,Denver,CO,80211 +-105.045715,39.769076,"Highlands Garden Village - Denver CO (D, W)",4500 W. 38th Ave.,Denver,CO,80212 +-105.055143,39.746323,Target Edgewater T-2225 - Edgewater CO,1985 Sheridan Blvd.,Edgewater,CO,80214 +-105.05359,39.750481,"2255 Sheridan Blvd-Edgewater (UCO) - Edgewater CO (D, W)",2255 Sheridan Blvd.,Edgewater,CO,80214 +-105.10905,39.739824, Colfax & Kipling Lakewood CO - Lakewood CO (W),9998 W. Colfax Ave.,Lakewood,CO,80215 +-105.098917,39.73938,Safeway - Lakewood #344 - Lakewood CO,9160 West Colfax Avenue,Lakewood,CO,80215 +-104.99497,39.76604,"Park Ave. & Globeville- Denver - Denver CO (D, W)",3470 Park Ave. West,Denver,CO,80216 +-104.940408,39.77318,40th & Colorado-Denver - Denver CO (D),4030 Colorado Blvd.,Denver,CO,80216 +-104.973502,39.724979,Safeway-Denver #1614 - Denver CO,560 Corona St.,Denver,CO,80218 +-104.96811,39.744577,18th & Franklin - Denver CO - Denver CO (W),1600 E. 18th Ave.,Denver,CO,80218 +-104.97379,39.731542,King Soopers-Denver #29 - Denver CO,1155 E. 9th Ave.,Denver,CO,80218 +-104.916682,39.740092,Colfax & Krameria - Denver CO (W),6160 E. Colfax Ave.,Denver,CO,80220 +-104.915592,39.737395,Safeway-Denver #2714 - Denver CO,6220 E. 14th St.,Denver,CO,80220 +-104.940012,39.667705,University Hills - Denver CO (W),2700 S. Colorado Blvd.,Denver,CO,80222 +-104.937305,39.666473,King Soopers - Denver #72 - Denver CO,2750 S. Colorado Blvd.,Denver,CO,80222 +-104.929801,39.652296,Safeway-Denver #29 - Denver CO,4950 E. Hampden Ave.,Denver,CO,80222 +-104.928482,39.652977,Hampden & Happy Canyon - Denver CO (W),5074 E. Hampden Avenue,Denver,CO,80222 +-104.915699,39.653555,"Hampden & Locust Denver - Denver CO (D, W)",6395 E. Hampden Ave.,Denver,CO,80222 +-104.914117,39.676285,"Monaco & Evans - Denver CO (D, W)",2223 S. Monaco Parkway,Denver,CO,80222 +-104.913243,39.666356,Safeway-Denver #1267 - Denver CO,6460 East Yale Ave.,Denver,CO,80222 +-104.992801,39.693556,"Santa Fe & Mississippi - Denver CO (D, W)",1285 S. Santa Fe Drive,Denver,CO,80223 +-104.941576,39.912706,Safeway-Thornton #242 - Thornton CO,3904 E. 120th Ave.,Thornton,CO,80223 +-104.941066,39.694403,"Colorado & Arizona - Denver CO (D, W)",1233 S. Colorado Blvd.,Denver,CO,80223 +-104.904318,39.698404,Safeway-Denver #1115 - Denver CO,7150 Leetsdale Drive,Denver,CO,80224 +-105.123647,39.682099,Safeway - Lakewood #2342 - Lakewood CO,11088 West Jewell Ave.,Lakewood,CO,80226 +-105.110853,39.688218,King Soopers-Lakewood #59 - Lakewood CO,1545 S. Kipling Ct,Lakewood,CO,80226 +-105.085271,39.709732,King Soopers-Lakewood #127 - Lakewood CO,7984 W. Alameda Ave.,Lakewood,CO,80226 +-105.081066,39.716533,"1st & Wadsworth-Lakewood - Lakewood CO (D, W)",92 Wadsworth Blvd.,Lakewood,CO,80226 +-105.054618,39.681053,Safeway-Denver #1145 - Denver CO,1955 S. Sheridan Blvd.,Denver,CO,80227 +-105.052675,39.654621,King Soopers-Denver #19 - Denver CO,3100 S. Sheridan,Denver,CO,80227 +-105.14609,39.695971,Safeway-Lakewood #41 - Lakewood CO,13111 W. Alameda Pkwy,Lakewood,CO,80228 +-105.135474,39.707424,Alameda & Union-Lakewood - Lakewood CO (W),12097 W. Alameda Pkwy,Lakewood,CO,80228 +-105.132778,39.71382,Union Blvd. #17-Lakewood cO - Lakewood CO (W),150 South Union Boulevard,Lakewood,CO,80228 +-104.997193,39.863538,Safeway-Thornton #1873 - Thornton CO,811 Thornton Parkway,Thornton,CO,80229 +-104.98398,39.877934,"102nd & Grant-Thornton - Denver CO (D, W)",10005 Grant St. Unit F,Denver,CO,80229 +-104.979292,39.849301,"84th and Pearl-Thornton - Thornton CO (D, W)",8410 Pearl Street,Thornton,CO,80229 +-104.901812,39.719997,Lowry Town Center #26-Denver CO - Denver CO (W),200 Quebec St.,Denver,CO,80230 +-104.903384,39.720399,Albertsons-Denver #836 - Denver CO,200 Quebec St.,Denver,CO,80230 +-104.872926,39.653423,"Hampden & Dayton - Denver - Denver CO (D, W)",9925 East Hampden Ave.,Denver,CO,80231 +-104.869674,39.674324,Parker & Iliff Aurora - Aurora CO (D),2300 S. Parker Rd.,Aurora,CO,80231 +-105.117115,39.690759,"Florida & Kipling - Lakewood CO (D, W)",10611 W. Florida Ave.,Lakewood,CO,80232 +-105.081319,39.682546,Jewell & Wadsworth - Lakewood CO (W),1896 S. Wadsworth,Lakewood,CO,80232 +-104.974396,39.916196,Super Target Thornton ST-1372 - Thornton CO,1001 E. 120th Ave.,Thornton,CO,80233 +-104.941958,39.883747,Albertsons-Thornton #892 - Thornton CO,3840 E. 104th Ave.,Thornton,CO,80233 +-104.94046,39.94415,"136th & Colorado- Thornton - Thornton CO (D, W)",13671 Colorado Blvd.,Thornton,CO,80233 +-105.01393,39.930057,Safeway-Westminister #1685 - Westminster CO,12900 Zuni,Westminster,CO,80234 +-104.999551,39.914442,120th & Huron - Westminster CO (W),1171 West 120th,Westminster,CO,80234 +-104.89532,39.785465,"I-70 & I-270- Stapleton - Denver CO (D, W)",7990 E. 49th Avenue,Denver,CO,80238 +-104.847611,39.778377,"45th & Peoria (UCO) -Denver - Denver CO (D, W)",4505 Peoria Street,Denver,CO,80239 +-104.989708,39.91418,"I-25 & 120th-Thornton - Thornton CO (D, W)",45 East 120th,Thornton,CO,80241 +-104.941753,39.913803,120th & Colorado-Thornton - Thornton CO (W),3894 E. 120th Avenue,Thornton,CO,80241 +-104.939513,39.69883,Colorado Blvd. (B&N) - Glendale CO (W),960 S. Colorado Blvd.,Glendale,CO,80246 +-104.93852,39.708517,Super Target Glendale ST-1806 - Glendale CO,4301 E. Virginia Ave.,Glendale,CO,80246 +-104.672613,39.849987,DEN B RJ Term South Finger Lower - Denver CO (A),HMSHost 8500 Pena Blvd.,Denver,CO,80249 +-104.672613,39.849987,DEN B RJ Term South Finger Upper - Denver CO (A),HMSHost 8500 Pena Blvd.,Denver,CO,80249 +-105.023371,39.883587,Safeway-Federal Hieghts #1635 - Federal Heights CO,10300 Federal Blvd.,Federal Heights,CO,80260 +-104.986936,39.743591,Atrium @ 1700 Broadway - Denver CO,1700 Broadway,Denver,CO,80290 +-105.259686,40.035336,Safeway-Boulder #1615 - Boulder CO,3325 28th St.,Boulder,CO,80301 +-105.258939,40.021828,28th & Pearl - Boulder - Boulder CO (W),2770 Pearl Street,Boulder,CO,80301 +-105.256598,40.021674,Target Boulder T-64 - Boulder CO,2800 Pearl St.,Boulder,CO,80301 +-105.255388,40.018753,Twenty Ninth Street - Boulder CO (W),1810 29th St.,Boulder,CO,80301 +-105.253584,40.016043,King Soopers-Boulder #61 - Boulder CO,1650 30th St.,Boulder,CO,80301 +-105.252672,40.015027,30th & Arapahoe - Boulder CO (W),3033 Arapahoe,Boulder,CO,80301 +-105.276823,40.010584,University and Broadway - Boulder CO (W),1402 Broadway,Boulder,CO,80302 +-105.234136,39.998207,Safeway-Boulder #2919 - Boulder CO,4800 E. Baseline Road,Boulder,CO,80302 +-105.25965,40.014006,Safeway-Boulder #2911 - Boulder CO,2798 Arapahoe Ave.,Boulder,CO,80302 +-105.252039,39.98346,King Soopers - Boulder #33 - Boulder CO,3600 Table Mesa Drive,Boulder,CO,80303 +-105.276595,40.018896,Pearl St. Mall - Boulder CO (W),1427 Pearl Street,Boulder,CO,80304 +-105.262928,39.999857,Baseline & Broadway #7- Boulder - Boulder CO (W),2400 Baseline RD.,Boulder,CO,80305 +-105.329647,39.697714,"Hwy. 74 & Hotel Way-Evergreen CO - Golden CO (D, W)",29057 Hotel Way,Golden,CO,80401 +-105.215779,39.752023,Safeway-Golden #322 - Golden CO,1701 Jackson St.,Golden,CO,80401 +-105.193503,39.73896,King Soopers-Golden CO #82 - Golden CO,17171 South Golden Road,Golden,CO,80401 +-105.15718,39.733333,Colorado Mills - Lakewood CO,14500 W. Colfax Ave.,Lakewood,CO,80401 +-105.220131,39.75461,13th St. & Washington Ave. - Golden CO (W),1301 Washington Avenue,Golden,CO,80401 +-105.159154,39.73499,Super Target Lakewood ST-1500 - Lakewood CO,14500 W. Colfax Ave.,Lakewood,CO,80401 +-105.234359,39.767079,"Highway 93 & Washington Golden - Golden CO (D, W)",114 N. RUBEY DRIVE,Golden,CO,80403 +-105.48866,39.799625,Ameristar Mountain High Casino - Blackhawk CO,110 Richman Rd.,Blackhawk,CO,80422 +-106.045788,39.479484,Main Street - Breckenridge - Breckenridge CO (W),225 S. Main Street,Breckenridge,CO,80424 +-105.305977,39.526875,"Conifer Town Center - Conifer - Conifer CO (D, W)",26724 Conifer Town Center Dr,Conifer,CO,80433 +-105.30455,39.53185,Safeway - Conifer #2792 - Conifer CO,Hwy 285 & Light Ln.,Conifer,CO,80433 +-105.291716,39.544008,King Soopers-Aspen Park #87 - Conifer CO,25637 Conifer Road,Conifer,CO,80433 +-106.13542,39.74165,Keystone River Run Relocation - Keystone CO,140 Ida Belle Road,Keystone,CO,80435 +-106.05057,39.629295,City Market-Dillon #420 - Dillon CO,300 US Hwy. 6,Dillon,CO,80435 +-106.049854,39.630027,Dillon Ridge Market Place - Dillon CO (W),324 US Hwy. 6,Dillon,CO,80435 +-105.59969,39.7647,Vail @ Dumont - Dumont CO,308 County Rd.,Dumont,CO,80436 +-105.3586,39.6459,Safeway - Evergreen #10 - Evergreen CO,3851 S. Hwy. #74,Evergreen,CO,80439 +-105.358269,39.693179,King Soopers Bergen Park #64 - Evergreen CO,1173 Bergen Pkwy,Evergreen,CO,80439 +-105.8166,39.945,Safeway-Fraser #1568 - Fraser CO,40 Colorado Hwy. 804,Fraser,CO,80442 +-106.190834,39.38505,Intrawest Copper Resort - Copper Mtn CO,50 Hwy. 91,Copper Mtn,CO,80443 +-106.101906,39.5752,Safeway-Frisco #836 - Frisco CO,1008 N. Summit Blvd.,Frisco,CO,80443 +-106.101323,39.575213,710 Summit Blvd. - Frisco CO - Frisco CO (W),710 Summit Blvd.,Frisco,CO,80443 +-105.929,40.0632,City Market-Granby #446 - Granby CO,1001 Thompson Road,Granby,CO,80446 +-105.49741,39.742274,"Colorado & I-70- Idaho Springs - Idaho Springs CO (D, W)",2900 Colorado Blvd.,Idaho Springs,CO,80452 +-106.825581,40.467599,"Hwy. 40 & Anglers Dr-Steamboat Sprin - Steamboat Springs CO (D, W)",255 Anglers Drive Building B,Steamboat Springs,CO,80477 +-106.820537,40.46236,City Market - Steamboat Sprngs #414 - Steamboat Springs CO,1825 Central Park Plaza,Steamboat Springs,CO,80477 +-105.762,39.8856,Intrawest Winter Park - Winter Park CO,201 Zyphyr Way,Winter Park,CO,80482 +-106.8311,40.485,Safeway - Steamboat Springs #637 - Steamboat Springs CO,37500 E. US Hwy. 40,Steamboat Springs,CO,80488 +-105.130937,40.177952,Hover & Trade Center Dr. - Longmont CO (W),1087 South Hover Street,Longmont,CO,80501 +-105.130922,40.175222,King Soopers - Longmont #80 - Longmont CO,995 South Hover Street,Longmont,CO,80501 +-105.130844,40.138624,Safeway-Longmont #2910 - Longmont CO,1632 Hover Road,Longmont,CO,80501 +-105.13065,40.159194,Super Target Longmont T-2218 - Longmont CO,551 S. Hover Rd.,Longmont,CO,80501 +-105.130474,40.188594,"17th and Hover- Longmont - Longmont CO (D, W)",2318 17th Avenue,Longmont,CO,80501 +-105.120193,40.149738,Ken Pratt & S. Bowen (prev Florida - Longmont CO (W),1100 Ken Pratt Boulevard,Longmont,CO,80501 +-105.120106,40.149826,Safeway-Longmont #1116 - Longmont CO,1050 Ken Pratt Blvd.,Longmont,CO,80501 +-105.105959,40.188548,"17th & Pace-Longmont - Longmont CO (D, W)",815 East 17th Ave.,Longmont,CO,80501 +-105.102342,40.189266,"17th & Main- Longmont - Longmont CO (D, W)",1749 Main St.,Longmont,CO,80501 +-105.073944,40.187424,Safeway-Longmont #1634 RELO - Longmont CO,1630 Pace Street,Longmont,CO,80501 +-105.07339,40.18618,Safeway-Longmont #1634 - Longmont CO,1630 Pace Street,Longmont,CO,80501 +-104.977218,40.163545,"Firestone-I-25 & Hwy. 119 - Firestone CO (D, W)",11169 I-25 Frontage Road,Firestone,CO,80504 +-105.10065,40.015064,"Hwy. 287 & Arapahoe-Erie - Erie CO (D, W)",3336 Arapahoe,Erie,CO,80516 +-105.096725,40.01475,Safeway-Erie #1667 - Erie CO,3333 Arapahoe Rd. #B,Erie,CO,80516 +-105.530365,40.380348,Safeway-Estes Park #920 - Estes Park CO,451 E. Wonderview Ave.,Estes Park,CO,80517 +-105.518399,40.377092,Estes Park - Estes Park CO (W),356 E. Elkhorn Ave.,Estes Park,CO,80517 +-104.942018,40.118662,Safeway-Firestone #1828 - Firestone CO,8134 County Rd. 13,Firestone,CO,80520 +-104.9392,40.1122,King Soopers-Firestone #105 - Firestone CO,6110 Firestone Blvd.,Firestone,CO,80520 +-105.116417,40.554254,Safeway-Fort Collins #2913 - Fort Collins CO,2160 W. Drake Rd. Unit 6,Fort Collins,CO,80521 +-105.100622,40.573674,Elizabeth & City Park-Fort Collins - Fort Collins CO,1335 West Elizabeth,Fort Collins,CO,80521 +-105.076902,40.582214,Safeway-Fort Collins #1071 - Fort Collins CO,460A South College,Fort Collins,CO,80524 +-105.076155,40.577866,College Avenue & Laurel -Ft Collins - Fort Collins CO (W),700 South College Ave.,Fort Collins,CO,80524 +-105.076206,40.537609,College & Horsetooth - Fort Collins CO (W),3600 South College Avenue,Fort Collins,CO,80525 +-105.073862,40.52363,Harmony & JFK - Fort Collins CO (W),250 E. Harmony Road,Fort Collins,CO,80525 +-105.07161,40.525246,King Soopers-Ft Collins #73 - Ft Collins CO,4503 JFK Pkwy,Ft Collins,CO,80525 +-105.059123,40.55051,Scotch Pines - Fort Collins CO (W),2601 S. Lemay,Fort Collins,CO,80525 +-105.0524,40.5301,SuperTarget Fort Collins East ST-24 - Fort Collins CO,2936 Council Tree Ave.,Fort Collins,CO,80525 +-105.051811,40.52465,Safeway-Fort Collins #1552 - Fort Collins CO,1426 E. Harmony Rd.,Fort Collins,CO,80525 +-105.038027,40.551404,King Soopers-Fort Collins #97 - Fort Collins CO,2602 S. Timberline Rd.,Fort Collins,CO,80525 +-105.092405,40.552751,Drake & Shields Relocation - Fort Collins CO,838 West Drake Road,Fort Collins,CO,80526 +-105.076548,40.588492,Northern Hotel - Fort Collins CO (W),172 North College Ave.,Fort Collins,CO,80526 +-105.039456,40.522958,Harmony & Timberline-Fort Collins - Fort Collins CO (W),4609 S. Timberline Rd.,Fort Collins,CO,80528 +-104.9315,40.1025,"I-25 & Hwy. 52 Frederick - Frederick CO (D, W)",3652 Reliance Drive,Frederick,CO,80530 +-104.98137,40.406446,"Hwy. 34 & County Rd. 5 Johnstown - Johnstown CO (D, W)",4910 Thompson Pkwy,Johnstown,CO,80534 +-105.109536,40.408334,Safeway - Loveland #914 - Loveland CO,2321 W. Eisenhower Blvd.,Loveland,CO,80537 +-105.097967,40.379161,14th Str & Taft Ave. - Loveland CO (W),1317 Eagle Drive,Loveland,CO,80537 +-105.098648,40.406897,"Hwy. 34 & Taft--Loveland - Loveland CO (D, W)",1510 W. Eisenhower Blvd.,Loveland,CO,80537 +-105.077605,40.424508,Loveland Marketplace CO - Loveland CO (W),3157 N. Garfield,Loveland,CO,80538 +-104.923571,40.479515,Safeway-Windsor - Windsor CO,1535 Main St.,Windsor,CO,80550 +-104.920213,40.479521,King Soopers-Windsor #104 - Windsor CO,1520 Main Street,Windsor,CO,80550 +-104.821526,39.985298,"Hwy. 85 & Bridge- Brighton - Brighton CO (D, W)",59 Bush Street,Brighton,CO,80601 +-104.816682,39.972136,King Soopers-Brighton #81 - Brighton CO,500 E. Bromley Ln.,Brighton,CO,80601 +-104.815692,39.971237,Bromley & Sable - Brighton CO (W),530 East Bromley Lane,Brighton,CO,80601 +-104.779901,39.95587,Super Target Brighton ST-2183 - Brighton CO,2171 Prairie Center Pkwy,Brighton,CO,80601 +-104.974661,39.998524,"168th & Washington- Thornton - Thornton CO (D, W)",16769 N. Washington St.,Thornton,CO,80602 +-104.8059,40.0963,Safeway-Fort Lupton #1045 - Fort Lupton CO,1300 Dexter St.,Fort Lupton,CO,80621 +-104.75649,40.3974,Safeway-Greeley #2666 - Greeley CO,4548 Center Place Drive,Greeley,CO,80631 +-104.735849,40.422687,Safeway-Greeley #2918 - Greeley CO,3526 W. 10th St.,Greeley,CO,80631 +-104.696854,40.395273,"Hwy. 34 BP & 11th Ave-Greeley - Greeley CO (D, W)",2604 11th Ave.,Greeley,CO,80631 +-104.75405,40.395325,"Hwy. 34 Bypass & 47th Ave. - Greeley - Greeley CO (D, W)",4629 Centerplace Dr,Greeley,CO,80634 +-104.748508,40.422666,"10th Street & 47th Ave-Greeley - Greeley CO (D, W)",4320 9th St. Rd.,Greeley,CO,80634 +-104.74771,40.394962,Target Greeley T-1813 - Greeley CO,4400 Centerplace Dr,Greeley,CO,80634 +-104.735017,40.405321,35th Ave. & 20th St. (Greeley) - Greeley CO (W),2030 35th Avenue,Greeley,CO,80634 +-104.694663,40.405266,University Center - UNCO Greeley - Greeley CO,2045 10th Ave.,Greeley,CO,80639 +-104.602253,38.940939,Safeway-Falcon #1644 - Falcon CO,7655 McLaughlin Road,Falcon,CO,80831 +-105.04665,38.982758,Safeway-Woodland Park #1578 - Woodland Park CO,1101 E. Hwy. 24,Woodland Park,CO,80863 +-105.056593,38.99443,Woodland Park - Woodland Park CO (W),320 W. Midland Ave.,Woodland Park,CO,80866 +-104.82352,38.83356,7 S.Tejon @ Pikes Peak - Colorado Springs CO (W),7 South Tejon,Colorado Springs,CO,80903 +-104.823437,38.836005,Colorado Springs - Colorado Springs CO (W),134 North Tejon,Colorado Springs,CO,80903 +-104.746652,38.812768,Safeway-Colorado Springs #1792 - Colorado Springs CO,1425 S. Murray Blvd.,Colorado Springs,CO,80903 +-104.876536,38.855473,Safeway-Colorado Springs #1286 - Colorado Springs CO,3275 W. Colorado Ave.,Colorado Springs,CO,80904 +-104.872096,38.853674,"31st & Colorado-CO Springs - Colorado Springs CO (D, W)",3104 W. Colorado Avenue,Colorado Springs,CO,80904 +-104.808065,38.889505,King Soopers-Colorado Springs #6 - Colorado Springs CO,1750 W. Unitah St.,Colorado Springs,CO,80904 +-104.822416,38.806456,Safeway - Colorado Springs #2816 - Colorado Springs CO,1920 S. Nevada Ave.,Colorado Springs,CO,80906 +-104.817697,38.802492,Lake & Nevada (Broadmoar) - Colorado Springs CO (W),2130 Southgate Rd.,Colorado Springs,CO,80906 +-104.81516,38.767023,Safeway - Colorado Springs #1577 - Colorado Springs CO,6520 S. Academy Blvd.,Colorado Springs,CO,80906 +-104.812359,38.777588,Nevada & Cheyenne Meadows - Colorado Springs CO (W),817 Cheyenne Meadows Rd.,Colorado Springs,CO,80906 +-104.849879,38.896026,"Garden of the Gods @ Centennial - Colorado Springs CO (D, W)",4465 Centennial Blvd.,Colorado Springs,CO,80907 +-104.816828,38.864337,Safeway-Colorado Springs #812 - Colorado Springs CO,2210 N. Wahsatch Ave.,Colorado Springs,CO,80907 +-104.772804,38.848255,Safeway-Colorado Springs #1466 - Colorado Springs CO,1121 N. Circle Dr.,Colorado Springs,CO,80909 +-104.766113,38.843065,Citadel Mall - Colorado Springs CO (W),750 Citadel Drive,Colorado Springs,CO,80909 +-104.758106,38.843529,The Citadel (B&N) - Colorado Springs CO (W),747 Citadel Drive East,Colorado Springs,CO,80909 +-104.698662,38.716719,Safeway-Fountain #1975 - Fountain CO,6925 Mesa Ridge Parkway,Fountain,CO,80911 +-104.701198,38.825013,Peterson AFB BX - Peterson AFB CO,1040 East Stewart Avenue,Peterson AFB,CO,80914 +-104.757664,38.789948,"Hancock and Academy- Colorado Sprin - Colorado Springs CO (D, W)",2960 South Academy Blvd.,Colorado Springs,CO,80916 +-104.793968,38.930615,"Academy & Brookwood-CO Springs - Colorado Springs CO (D, W)",6815 N. Academy,Colorado Springs,CO,80918 +-104.768658,38.902223,"Academy & Flintridge-Colorado Spri - Colorado Springs CO (D, W)",4825 Academy Blvd. N.,Colorado Springs,CO,80918 +-104.75816,38.894084,Academy & Austin Bluffs - Colorado Springs CO (W),4272 N. Academy Blvd.,Colorado Springs,CO,80918 +-104.739194,38.932442,Albertsons-Austin Bluffs #803 - Colorado Springs CO,7055 Austin Bluffs Parkway,Colorado Springs,CO,80918 +-104.863836,38.928641,Centennial & Vindicator-CO Springs - Colorado Springs CO (W),6896 Centennial Blvd.,Colorado Springs,CO,80919 +-104.848398,38.877219,King Soopers-Colorado Springs #133 - Colorado Springs CO,3250 Centennial Blvd.,Colorado Springs,CO,80919 +-104.843913,38.923812,Safeway - Colorado Springs #2839 - Colorado Springs CO,840 Village Center Blvd.,Colorado Springs,CO,80919 +-104.795945,38.964297,Hwy. 83 & Briargate-Colorado Springs - Colorado Springs CO (W),1605 Briargate Parkway,Colorado Springs,CO,80920 +-104.768,38.9546,Super Target Colo Springs ST-2221 - Colorado Springs CO,9670 Promenent Point,Colorado Springs,CO,80920 +-104.766394,38.958664,Albertsons-N Union #840 - Colorado Springs CO,8750 N. Union Blvd.,Colorado Springs,CO,80920 +-104.760243,38.937739,"Woodmen & Rangewood - Colorado Springs CO (D, W)",3560 East Woodmen Rd.,Colorado Springs,CO,80920 +-104.75748,38.965572,Briargate and Union - Colorado Springs CO (W),9275 NORTH UNION BLVD,Colorado Springs,CO,80920 +-104.755359,38.964477,King Soopers-Colorado Springs #119 - Colorado Springs CO,9225 North Union Blvd.,Colorado Springs,CO,80920 +-104.799611,38.941473,North Academy/Chpl Hill - Colorado Springs CO (W),7650 N. Academy Blvd.,Colorado Springs,CO,80920 +-104.760476,38.939818,King Soopers-Hartzel #76 - Colorado Springs CO,3570 Hartsel Drive,Colorado Springs,CO,80920 +-104.720094,38.874061,Safeway-Colorado Springs #1499 - Colorado Springs CO,2890 N. Powers Blvd.,Colorado Springs,CO,80922 +-104.718249,38.887976,Super Target Colorado SpringsST1501 - Colorado Springs CO,3810 Bloomington St.,Colorado Springs,CO,80922 +-104.7037,38.895,"Powers & Stetson - Colorado Springs CO (D, W)",6082 Stetson Blvd.,Colorado Springs,CO,80922 +-104.720096,38.873829,Powers & Constitution - Colorado Springs CO (W),2856 North Powers Boulevard,Colorado Springs,CO,80922 +-104.627488,38.266356,4th and Abriendo - Pueblo CO (D),1500 West 4th Street,Pueblo,CO,81004 +-104.662415,38.234511,"Pueblo & Northern-Pueblo - Pueblo CO (D, W)",1875 S. Pueblo Blvd.,Pueblo,CO,81005 +-104.7292,38.3142,Safeway-Pueblo West #1760 - Pueblo West CO,1017 N. Market Plaza,Pueblo West,CO,81007 +-104.633324,38.310106,Hwy. 50 & Outlook - Pueblo CO (W),1565 Highway 50 West,Pueblo,CO,81008 +-104.61806,38.320263,"Eagleridge & Elizabeth - Pueblo - Pueblo CO (D, W)",700 Eagleridge Blvd.,Pueblo,CO,81008 +-104.508781,37.167094,Safeway - Trinidad #722 - Trinidad CO,457 W. Main St.,Trinidad,CO,81082 +-105.875755,37.468184,Safeway-Alamosa #1681 - Alamosa CO,1301 Main St.,Alamosa,CO,81101 +-108.352445,39.106181,Safeway-Salida #2817 - Salida CO,232 G St.,Salida,CO,81201 +-106.926871,38.553455,City Market-Gunnison #419 - Gunnison CO,880 N. Main,Gunnison,CO,81230 +-107.885172,37.272032,Albertsons-Durango #801 - Durango CO,311 West College Drive,Durango,CO,81301 +-107.881574,37.269767,College & Main-Durango - Durango CO (W),558 Main Avenue,Durango,CO,81301 +-107.866216,38.453382,King Soopers-Montrose #440 - Montrose CO,16400 S. Townsend,Montrose,CO,81401 +-107.86552,38.458355,"Montrose-Hwy 550 & Venture Way - Montrose CO (D, W)",2620 Wood Gate Road,Montrose,CO,81401 +-107.8654,38.4712,Target Montrose T-2343 - Montrose CO,3530 Wolverine Dr,Montrose,CO,81401 +-108.551173,39.083203,Albertsons-Grand Jct #886 - Grand Junction CO,1830 N. 12th St.,Grand Junction,CO,81501 +-108.588295,39.066558,Albertsons-Grand Jct #897 - Grand Junction CO,2512 Broadway,Grand Junction,CO,81503 +-108.514059,39.090818,Safeway-Grand Junction #1533 - Grand Junction CO,2901 F Rd.,Grand Junction,CO,81504 +-108.461658,39.086936,City Market-Grand Junction #425 - Grand Junction CO,569 32 Road,Grand Junction,CO,81504 +-108.608834,39.09582,"24 Rd. & Kassandra- Grand Junction - Grand Junction CO (D, W)",624 Rae Lynn St.,Grand Junction,CO,81505 +-108.60382,39.089493,Target Grand Junction T-93 - Grand Junction CO,2424 US-6 & 50,Grand Junction,CO,81505 +-108.58707,39.08232,"Hwy. 6 & 50 & 25 Road - Grand Juncti - Grand Junction CO (D, W)",2504 Hwy. 6 & 50,Grand Junction,CO,81505 +-108.551055,39.103614,Safeway-Grand Junction #2625 - Grand Junction CO,681 Horizon Dr,Grand Junction,CO,81506 +-108.459813,39.087391,"I-70 Business Loop & 32 Rd. - C - Clifton CO (D, W)",570 32 Rd.,Clifton,CO,81520 +-107.351809,39.561445,I-70 & Midland- Glenwood Springs - Glenwood Springs CO (W),25 Market St. Unit E.,Glenwood Springs,CO,81601 +-107.325261,39.532049,Safeway-Glenwood Springs #1132 - Glenwood Springs CO,2001 Grand Street,Glenwood Springs,CO,81601 +-107.287889,39.477258,Target Glenwood Springs T-2029 - Glenwood Springs CO,110 W. Meadow,Glenwood Springs,CO,81601 +-106.81848,39.187137,Vail @ Aspen - Aspen CO,555 E. Durant,Aspen,CO,81611 +-106.519653,39.633823,City Market-Avon CO #426 - Avon CO,260 Beaver Creek Pl,Avon,CO,81620 +-106.415415,39.567313,Beaver Creek 1 - Avon CO,Service Center,Avon,CO,81620 +-106.41541,39.56731,25 Hurd Lane - Avon - Avon CO (W),25 Hurd Lane,Avon,CO,81620 +-107.562498,40.514212,Safeway - Craig #635 - Craig CO,1295 Victory Way,Craig,CO,81625 +-107.087006,39.391285,City Market - El Jabel #433 - El Jebel CO,250 East Valley Road,El Jebel,CO,81628 +-106.827914,39.661909,City Market-Eagle #434 - Eagle CO,103 Market Dr,Eagle,CO,81631 +-106.5936,39.645,Edwards - Edwards CO (W),216 Main Street,Edwards,CO,81632 +-107.77121,39.524018,"Rifle-I-70 & CO Rd. 346 - Rifle CO (D, W)",900Airport Road,Rifle,CO,81650 +-106.418579,39.628771,Safeway-Vail #631 - Vail CO,2131 N. Frontage Rd. W.,Vail,CO,81657 +-106.374145,39.641996,Vail Village - Vail CO (W),242 East Meadow Drive,Vail,CO,81657 +-106.37231,39.5341,Arrabelle at Vail Square Lionshead - Vail CO,Eagle Bahn Gondola building,Vail,CO,81658 +-104.816982,41.137929,21st & Central Avenue-Cheyenne WY - Cheyenne WY,2111 Central Ave.,Cheyenne,WY,82001 +-104.769687,41.144546,Albertsons-Cheyenne WY #834 - Cheyenne WY,3355 E. Pershing Blvd.,Cheyenne,WY,82001 +-104.802175,41.110949,Safeway-Cheyenne #2667 - Cheyenne WY,700 S. Greeley Hwy.,Cheyenne,WY,82007 +-104.829619,41.172299,Albertsons - Cheyenne WY #847 - Cheyenne WY,5800 Yellowstone Rd.,Cheyenne,WY,82009 +-104.765474,41.160986,Dell Range Marketplace - Cheyenne WY (W),3610 Dell Range Boulevard,Cheyenne,WY,82009 +-105.592925,41.317206,Safeway-Laramie #2466 - Laramie WY,554 N. 3rd St.,Laramie,WY,82070 +-105.556454,41.308968,Albertsons-Laramie WY #830 - Laramie WY,3112 E. Grand,Laramie,WY,82070 +-115.248319,36.263035,Albertsons-Las Vegas #6090 - Las Vegas NV,7075 W. Ann Rd.,Las Vegas,NV,82129 +-106.369526,42.820872,"Cy Ave. & Wyoming Blvd.--Casper W. - Casper WY (D, W)",4003 Cy Ave.,Casper,WY,82604 +-106.274934,42.848876,Eastridge Mall- Casper - Casper WY (W),4585 East 2nd St.,Casper,WY,82609 +-106.270122,42.846972,Safeway - Casper #2468 - Casper WY,300 E. Wyoming Blvd.,Casper,WY,82609 +-105.494038,44.283715,"Camel Dr. & S. Douglas Hwy-Gillette - Gillette WY (D, W)",1215 S. Douglas Hwy.,Gillette,WY,82716 +-105.493937,44.2708,Albertsons-Gillette WY #864 - Gillette WY,2610 S. Douglas Hwy.,Gillette,WY,82718 +-106.942852,44.773059,"Coffeen & Brundage Lane-Sheridan - Sheridian WY (D, W)",2208 Coffeen Ave.,Sheridian,WY,82801 +-109.25225,41.579214,"I-80 & Dewar Dr-Rock Springs - Rock Springs WY (D, W)",118 Westland Way,Rock Springs,WY,82901 +-112.463881,42.905983,Fred Meyer-Pocatello #260 - Pocatello ID,800 Yellowstone Avenue,Pocatello,ID,83201 +-112.442877,42.861823,Albertsons - Pocatello #159 - Pocatello ID,330 East Benton,Pocatello,ID,83201 +-112.462244,42.911141,"150 Bullock St-Pocatello - Pocatello ID (D, W)",150 Bullock St.,Pocatello,ID,83202 +-114.462905,42.591068,Target Twin Falls T-699 - Twin Falls ID,1611 North Blue Lakes Blvd.,Twin Falls,ID,83301 +-114.460888,42.570687,"Filer & Blue Lakes Blvd- - Twin Falls ID (D, W)",509 Blue Lakes Blvd. N.,Twin Falls,ID,83301 +-114.30767,43.512413,Albertsons-Hailey #130 - Hailey ID,911 Main Street N.,Hailey,ID,83333 +-114.364135,43.680939,The Lane Bldg. - Ketchum ID (W),300 N. Main Street,Ketchum,ID,83340 +-112.017787,43.510212,Fred Meyer - Idaho Falls #156 - Idaho Falls ID,1555 Northgate Mile,Idaho Falls,ID,83401 +-112.0872,43.5004,"I-15 & Broadway- Idaho Falls - Idaho Falls ID (D, W)",157 Houston Circle,Idaho Falls,ID,83402 +-117.00191,46.406992,"Lewiston - Lewiston ID (D, W)",1325 21st,Lewiston,ID,83501 +-116.352627,43.692445,Albertsons -- Eagle #182 - Eagle ID,250 South Eagle Rd.,Eagle,ID,83616 +-116.352297,43.693412,Eagle Plaza - Eagle ID (W),228 East Plaza St.,Eagle,ID,83616 +-116.39314,43.599629,"Meridian Rd. & Corporate Dr. - Meridian ID (D, W)",536 S. Meridian Rd.,Meridian,ID,83642 +-116.3879,43.5907,"Eagle & Franklin - Meridian - Meridian ID (D, W)",3240 East Louise Dr.,Meridian,ID,83642 +-116.3445,43.6166,"Eagle Road & Florence Dr. - Meridian ID (D, W)",3120 E. Florence Street,Meridian,ID,83642 +-116.599202,43.602857,"Karcher Mall - Nampa ID - Nampa ID (D, W)",1451 Caldwell Blvd.,Nampa,ID,83651 +-116.5371,43.5954,Target Nampa T-2206 - Nampa ID,16300 N. Marketplace Blvd.,Nampa,ID,83687 +-116.374565,43.695647,17th & State/Boise - Boise ID (W),1797 W. State Street,Boise,ID,83702 +-116.209636,43.624666,Albertsons-Boise #101 - Boise ID,1650 W. State St.,Boise,ID,83702 +-116.236052,43.640061,"State and Veterans Parkway-Boise - Boise ID (D, W)",3809 W. State Street,Boise,ID,83703 +-116.233255,43.640299,Albertsons-Boise #189 - Boise ID,3614 West State Street,Boise,ID,83703 +-116.281238,43.604907,"Franklin Towne Plaza/Boise - Boise ID (D, W)",8077 Franklin Road,Boise,ID,83704 +-116.278263,43.605914,Boise Towne Square - Boise ID (W),350 N. Milwaukee,Boise,ID,83704 +-116.273759,43.619007,Fairview & Cole - Boise - Boise ID (D),7373 West Fairview,Boise,ID,83704 +-116.2137,43.590354,Albertsons-Boise #193 - Boise ID,1653 South Vista Ave.,Boise,ID,83705 +-116.186789,43.568113,Fred Meyer - Boise #613 - Boise ID,3527 Federal Way,Boise,ID,83705 +-116.245693,43.603647,Fred Meyer - Boise #662 - Boise ID,5230 W. Franklin Road,Boise,ID,83706 +-116.193072,43.599467,"Broadway Ave.&Belmont - Boise ID (D, W)",1100 Broadway Ave.,Boise,ID,83706 +-116.175545,43.579282,"Boise Avenue and Apple-ID - Boise ID (D, W)",672 East Boise Avenue,Boise,ID,83706 +-116.285095,43.589983,"Milwaukee & Overland- Boise - Boise ID (D, W)",8275 West Overland Rd.,Boise,ID,83709 +-116.316355,43.589386,Five Mile & Overland / Fred Meyer - Boise ID (W),10751 West Overland Rd.,Boise,ID,83709 +-116.353768,43.64703,"Eagle & McMillan- Meridian - Boise ID (D, W)",4622 N. Eagle Road,Boise,ID,83713 +-116.352667,43.647232,Albertsons-Boise #177 - Boise ID,4700 North Eagle Road,Boise,ID,83713 +-116.314831,43.634337,Albertsons-Boise #161 - Boise ID,10700 Ustick Road,Boise,ID,83713 +-116.28023,43.650166,"Glenwood & Chinden- Boise - Garden City ID (D, W)",4971 N. Glenwood St.,Garden City,ID,83714 +-116.206781,43.603796,BSU Albertsons Library - Boise ID,1910 University Drive,Boise,ID,83725 +-116.806505,47.694384,"Riverstone Center - Coeur d'Alene ID (D, W)",2360 Old Mill Road,Coeur d'Alene,ID,83814 +-116.794466,47.715427,Fred Meyer - Coeur d'Alene #49 - Coeur d'Alene ID,560 West Kathleen,Coeur d'Alene,ID,83814 +-116.787856,47.694949,Ironwood - Coeur d'Alene ID (W),212 Ironwood Dr,Coeur d'Alene,ID,83814 +-116.787136,47.707248,Safeway-Coeur d'Alene #1470 - Coeur d'Alene ID,121 Neider Ave.,Coeur d'Alene,ID,83814 +-116.812627,47.711364,Government Way & Neider - Coeur d'Alene ID (D),3500 N. Government Way,Coeur d'Alene,ID,83815 +-116.79331,47.743678,"Corner Stone Plaza- Hayden ID - Hayden ID (D, W)",540 W. Prairie Avenue,Hayden,ID,83815 +-116.789402,47.733217,Target Coeur d'Alene T-679 - Coeur d'Alene ID,315 W. Canfield Ave.,Coeur d'Alene,ID,83815 +-116.788094,47.744501,Hwy. 95 & Prairie/Hayden - Hayden Lake ID (W),97 W. Prairie,Hayden Lake,ID,83835 +-117.029007,46.732552,Palouse Mall - Moscow ID (W),1994 West Pullman Road,Moscow,ID,83843 +-116.985499,46.722611,Safeway - Moscow #383 - Moscow ID,1320 Blaine St.,Moscow,ID,83843 +-116.546163,48.306941,"Ponderay Plaza- Ponderay - Ponderay ID (D, W)",476864 Highway 95,Ponderay,ID,83852 +-116.547698,48.273221,Sandpoint ID - Sandpoint ID (W),108 N. 1st Ave.,Sandpoint,ID,83864 +-117.000632,47.705062,"Post Falls-ID - Post Falls ID (D, W)",4082 East Primrose Lane,Post Falls,ID,83877 +-111.818048,40.385342,American Fork-Salt Lake - American Fork UT (W),821 West State St.,American Fork,UT,84003 +-111.887908,40.922257,"Centerville Super Wal-Mart Shops - Centerville UT (D, W)",356 N. Marketplace Drive,Centerville,UT,84014 +-112.060794,41.139859,"1800 North & 2000 West-Clinton UT - Clinton UT (D, W)",1819 West 1800 North,Clinton,UT,84015 +-111.855208,40.528278,"12300 South & 1300 East-Draper - Draper UT (D, W)",1283 E. Draper Pkwy.,Draper,UT,84020 +-111.978726,41.07067,King & Main Layton - Layton UT (W),729 North King Street #600,Layton,UT,84041 +-111.97368,41.08957,"Antelope & Hillfield Layton - Layton UT (D, W)",2011 North Hillfield Road,Layton,UT,84041 +-111.854751,40.626042,"Union Park Ave. & 1300 East - Fort Union UT (D, W)",1300 E. Union Park,Fort Union,UT,84047 +-111.980083,40.508396,"134th South & Bangerter Riverton - Riverton UT (D, W)",3728 West 13400 South,Riverton,UT,84065 +-111.892056,40.567151,Super Target Sandy ST-1752 - Sandy UT,10130 S. State St.,Sandy,UT,84070 +-111.891987,40.55823,"Sandy-106th & State - Sandy UT (D, W)",77 West 10600 South,Sandy,UT,84070 +-111.986264,40.609666,Target West Jordan T-2150 - West Jordan UT,7779 S. Jordan Landing Blvd.,West Jordan,UT,84084 +-111.892748,40.890815,500 West & 500 South Bountiful - West Bountiful UT (W),175 North 500 West,West Bountiful,UT,84087 +-111.93568,40.587676,"9000 S. & Redwood W. Jordan - West Jordan UT (D, W)",1577 W. 9000 S.,West Jordan,UT,84088 +-111.835196,40.580349,"Little Cottonwood Shopping Center - Sandy UT (D, W)",1960 East 9400 South,Sandy,UT,84092 +-111.97112,40.541714,Target South Jordan T-2123 - South Jordan UT,11525 S. Jordan Pkwy. Plaza,South Jordan,UT,84095 +-111.681988,40.273549,Unversity Mall- Orem - Orem UT (W),555 East University Parkway,Orem,UT,84097 +-111.540999,40.722547,Kimball Junction- Park City - Park City UT (W),6400 N. Highway 224,Park City,UT,84098 +-111.506667,40.657793,Park Ave. & Iron Horse - Park City UT (W),1700 Park Ave.,Park City,UT,84098 +-111.904042,40.76854,The Gateway - Salt Lake City UT (W),9 South Rio Grande Street,Salt Lake City,UT,84101 +-111.898589,40.75631,600 South & 200 West SLC - Salt Lake City UT (D),224 West 600 South,Salt Lake City,UT,84101 +-111.895564,40.758519,Sheraton Salt Lake City - Lobby - Salt Lake City UT,150 W. 500th Street,Salt Lake City,UT,84101 +-111.888551,40.769356,Marriott Salt Lake City Downtown - Salt Lake City UT,75 SW Temple Street,Salt Lake City,UT,84101 +-111.876744,40.758929,Smith's - Downtown Utah #94 - Salt Lake City UT,455 S. 500 E.,Salt Lake City,UT,84102 +-111.8661,40.7602,"9400 South & 1000 East Sandy - Sandy UT (D, W)",9354 S. Village Shop Drive,Sandy,UT,84102 +-111.851178,40.760694,700 East & 400 South - Salt Lake Ci - Salt Lake City UT (W),655 E. 400 S.,Salt Lake City,UT,84102 +-111.864909,40.749519,9th & 9th - Salt Lake City UT (W),902 East 900 South,Salt Lake City,UT,84105 +-111.847627,40.736431,15th & 15th - Salt Lake City UT (W),1527 South 1500 East,Salt Lake City,UT,84105 +-111.870816,40.725664,2100 South/700 East - Salt Lake City UT (W),701 East 2100 South,Salt Lake City,UT,84106 +-111.888823,40.642676,5900 S. & State Street - Murray UT (W),5905 S. State St.,Murray,UT,84107 +-111.81063,40.74605,Foothill Village Store - Salt Lake City UT (W),1414 DS South Foothill Drive,Salt Lake City,UT,84108 +-111.888322,40.764912,Marriott Gallivan Center - Salt Lake City UT (W),200 South State St.,Salt Lake City,UT,84111 +-111.8924,40.7167,"1830 S. & 300 W. Salt Lake City - Salt Lake City UT (D, W)",1868 S. & 300 W.,Salt Lake City,UT,84115 +-111.887717,40.725195,"21st & State Salt Lake City - South Salt Lake City UT (D, W)",2101 S. State St.,South Salt Lake City,UT,84115 +-111.839288,40.665968,Cottonwood I - Salt Lake City UT (W),4744 South Highland Drive,Salt Lake City,UT,84117 +-112.02424,40.705735,"West Valley-Shoppes at Lake Park - West Valley UT (D, W)",2993 South 5600 West,West Valley,UT,84119 +-111.958685,40.696256,3500 S. & 2700 W. -West Valley City_U - West Valley City UT (W),2727 West 3500 South,West Valley City,UT,84119 +-111.850118,40.622381,Super Target Salt Lake City ST-1751 - Salt Lake City UT,7025 South Park Centre Dr,Salt Lake City,UT,84121 +-111.963375,40.766852,SLC B 10 - Salt Lake City UT (A),776 N. Terminal Drive,Salt Lake City,UT,84122 +-111.963375,40.766852,SLC E. 1 - Salt Lake City UT (A),776 N. Terminal Drive,Salt Lake City,UT,84122 +-111.877417,40.690663,SLC Salt LK CTY Term 1 Food Court - Salt Lake City UT (A),474 N. 3700 West,Salt Lake City,UT,84122 +-111.877417,40.690663,SLC Salt LK CTY Term 2 Post Sec - Salt Lake City UT (A),474 N. 3700 West,Salt Lake City,UT,84122 +-111.939372,40.651134,"Plaza 5500- Taylorsville - Taylorsville UT (D, W)",5500 South Redwood Road,Taylorsville,UT,84123 +-111.841701,40.771842,U of Utah Med Center- ER Entrance - Salt Lake City UT,50 N. Medical Dr,Salt Lake City,UT,84132 +-111.834199,41.761612,"1600 North & Main Logan - Logan UT (D, W)",1620 North Main Street,Logan,UT,84341 +-111.939948,41.161858,"56th & Harrison South Ogden - South Ogden UT (D, W)",5598 S. Harrison Blvd.,South Ogden,UT,84403 +-112.007276,41.176186,"1140 W. Riverdale Rd-Riverdale - Riverdale UT (D, W)",1140 W. Riverdale Rd.,Riverdale,UT,84405 +-109.550673,38.567583,City Market-Moab #410 - Moab UT,425 S. Main St.,Moab,UT,84532 +-113.0802,37.6652,"Providence Crossing- Cedar City - Cedar City UT (D, W)",1233 S. Sage Dr,Cedar City,UT,84720 +-113.6666,37.1495,Albertsons - St. George #329 - St. George UT,745 N. Dixie Downs Dr,St. George,UT,84770 +-113.601744,37.124773,"Sunset Blvd. & Bluff.-St. George U - St. George UT (D, W)",1091 North Bluff St.,St. George,UT,84770 +-113.55305,37.11515,"Red Cliffs Dr. & St. George Blvd. - St. George UT (D, W)",158 N. Red Cliff Dr,St. George,UT,84790 +-112.269376,33.423054,Target Phoenix SW T-2149 - Phoenix AZ,9830 W. Lower Buckeye,Phoenix,AZ,85003 +-112.076727,33.448474,Phoenix City Hall - Phoenix AZ,200 W. Washington St.,Phoenix,AZ,85003 +-112.065654,33.466246,7th & McDowell - Phoenix AZ (W),530 East McDowell Road,Phoenix,AZ,85003 +-112.07278,33.449639,Central & Adams (Crown Plaza) - Phoenix AZ (W),100 North 1st Street,Phoenix,AZ,85004 +-112.072278,33.453507,Aramark - ASU Taylor Place - Phoenix AZ,120 E. Taylor Street,Phoenix,AZ,85004 +-112.071211,33.4459,America West Arena - Phoenix AZ,201 E. Jefferson St.,Phoenix,AZ,85004 +-112.069938,33.449437,Phoenix Convention Center - Phoenix AZ,111 NW 3rd Street,Phoenix,AZ,85004 +-112.06706,33.466235,Safeway - Phoenix #2651 - Phoenix AZ,340 East McDowell Rd.,Phoenix,AZ,85004 +-112.069079,33.452679,3rd & Van Buren St. Phoenix - Phoenix AZ (W),455 N. 3rd Street,Phoenix,AZ,85004 +-112.082949,33.466112,701 W. McDowell Phx - Phoenix AZ (W),701 West McDowell Road,Phoenix,AZ,85007 +-112.013099,33.480465,32nd St. & Thomas Phoenix - Phoenix AZ (D),3175 E. Thomas Road,Phoenix,AZ,85008 +-111.98702,33.480232,"44th St. & Thomas Phoenix - Phoenix AZ (D, W)",2824 N. 44th Street,Phoenix,AZ,85008 +-112.12734,33.798408,Albertsons-Phoenix #1004 - Phoenix AZ,3130 W. Carefree Hwy.,Phoenix,AZ,85009 +-112.081873,33.488393,Safeway-Phoenix #174 - Phoenix AZ,520 W. Osborn,Phoenix,AZ,85013 +-112.079483,33.480726,St. Joseph Hospital - Phoenix AZ,350 W. Thomas Rd.,Phoenix,AZ,85013 +-112.074924,33.484149,Park Central Mall - Phoenix - Phoenix AZ (W),3110 North Central,Phoenix,AZ,85013 +-112.082907,33.5163,7th Avenue & Missouri Phoenix - Phoenix AZ (D),5344 N. 7th Avenue,Phoenix,AZ,85013 +-112.064972,33.518541,"5557 N. 7th Street Phoenix - Phoenix AZ (D, W)",5557 N. 7th Street,Phoenix,AZ,85014 +-112.098018,33.520824,Super Target Phoenix Spectrum ST-23 - Phoenix AZ,5715 N. 19th Ave.,Phoenix,AZ,85015 +-112.111739,33.480534,"I-17 & Thomas Phoenix - Phoenix AZ (D, W)",2441 W. Thomas Rd.,Phoenix,AZ,85015 +-112.04581,33.508763,16th & Camelback - Phoenix AZ (W),1641 East Camelback Road,Phoenix,AZ,85016 +-112.042584,33.507159,Fry's #129 Phoenix - Phoenix AZ,4724 N. 20th Street,Phoenix,AZ,85016 +-112.028103,33.508738,Esplanade - Phoenix AZ (W),2425 East Camelback Road,Phoenix,AZ,85016 +-112.01456,33.511184,Safeway - Phoenix #2042 - Phoenix AZ,3132 E. Camelback Road,Phoenix,AZ,85016 +-112.047136,33.52345,"16th Street & Bethany Home Phoenix - Phoenix AZ (D, W)",1601 E. Bethany Home Road,Phoenix,AZ,85016 +-112.130278,33.524009,"35th Ave. & Bethany Home Phoenix - Phoenix AZ (D, W)",3320 W. Bethany Home Road,Phoenix,AZ,85017 +-111.984907,33.477441,Target Phoenix T-950 - Phoenix AZ,4515 E. Thomas Rd.,Phoenix,AZ,85018 +-111.979963,33.494679,Safeway - Phoenix #2716 - Phoenix AZ,4750 E. Indian School Rd.,Phoenix,AZ,85018 +-111.988151,33.495499,44th & Indian School Road - Phoenix AZ (W),4340 East Indian School Road,Phoenix,AZ,85018 +-112.062394,33.53924,Safeway-Phoenix #1515 - Phoenix AZ,810 E. Glendale Ave.,Phoenix,AZ,85020 +-112.098189,33.553918,19th & Northern - Phoenix - Phoenix AZ (W),1820 W. Northern,Phoenix,AZ,85021 +-112.065624,33.638989,SuperTarget - Deer Valley T-2236 - Phoenix AZ,16806 N. 7th St.,Phoenix,AZ,85022 +-112.065408,33.641061,7th Street & Bell Phoenix - Phoenix AZ (D),17045 N. 7th St.,Phoenix,AZ,85022 +-112.065748,33.606763,7th & Thunderbird Phoenix - Phoenix AZ (W),13240 N. 7th St.,Phoenix,AZ,85022 +-112.070518,33.640179,"3rd Street & Bell Rd. Phoenix - Phoenix AZ (D, W)",275 East Bell Road,Phoenix,AZ,85022 +-112.008709,33.435298,PHX-Term 3 FS-1 North - Phoenix AZ (A),Terminal 3 North,Phoenix,AZ,85026 +-112.124528,33.667684,Loop 101 & Beardsley - Phoenix AZ (W),3049 West Agua Fria Freeway,Phoenix,AZ,85027 +-112.098494,33.65596,Safeway - Phoenix #1170 - Phoenix AZ,18631 N. 19th Ave.,Phoenix,AZ,85027 +-111.977758,33.58285,Tatum & Shea - Phoenix AZ (W),10625 North Tatum Boulevard,Phoenix,AZ,85028 +-112.121083,33.581829,31st & Peoria Phoenix - Phoenix AZ (W),2815 W. Peoria Avenue,Phoenix,AZ,85029 +-112.066574,33.640389,Safeway-Phoenix #413 - Phoenix AZ,550 E. Bell Rd.,Phoenix,AZ,85032 +-112.029724,33.652949,Albertsons-Phoenix #985 - Phoenix AZ,18411 N. Cave Creek Rd.,Phoenix,AZ,85032 +-112.014421,33.610013,Safeway - Phoenix #1202 - Phoenix AZ,3131 East Thunderbird Rd.,Phoenix,AZ,85032 +-111.994645,33.611062,Fry's #121 Phoenix - Phoenix AZ,4025 E. Thunderbird Road,Phoenix,AZ,85032 +-111.988532,33.601139,Target Paradise Vall Phoenix T-233 - Phoenix AZ,12602 N. Paradise Village Pkwy,Phoenix,AZ,85032 +-111.981186,33.599036,Paradise Valley Mall - Phoenix AZ (W),4550 E. Cactus,Phoenix,AZ,85032 +-111.978622,33.639998,Tatum & Bell - Phoenix AZ (W),4747 East Bell Rd.,Phoenix,AZ,85032 +-111.977781,33.610149,Tatum & Thunderbird - Phoenix AZ (W),13637 N. Tatum Blvd.,Phoenix,AZ,85032 +-112.010454,33.640541,"32nd Street & Bell Rd. Phoenix - Phoenix AZ (D, W)",3317 E. Bell Road,Phoenix,AZ,85032 +-111.99588,33.626502,"40th Street & Greenway Phoenix - Phoenix AZ (D, W)",4010 E. Greenway Road,Phoenix,AZ,85032 +-112.23636,33.507506,Safeway-Phoenix #1654 - Phoenix AZ,4811 N. 83rd Ave.,Phoenix,AZ,85033 +-112.011767,33.436395,PHX Terminal 4 N-3 - Phoenix AZ (A),3400 E. Sky Harbor Blvd.,Phoenix,AZ,85034 +-112.010296,33.436183,PHX-Term 4 S-2 - Phoenix AZ (A),3400 Sky Harbor Blvd.,Phoenix,AZ,85034 +-112.010296,33.436183,PHX-Term 4 Main Gate 2 - Phoenix AZ (A),3400 Sky Harbor Blvd.,Phoenix,AZ,85034 +-112.010296,33.436183,PHX-Term 4 Concourse A - Phoenix AZ (A),3400 Sky Harbor Blvd.,Phoenix,AZ,85034 +-112.010296,33.436183,PHX-Terminal 3 - Phoenix AZ (A),3400 Sky Harbor Blvd.,Phoenix,AZ,85034 +-112.010296,33.436183,PHX-Terminal 4 - Phoenix AZ (A),3400 Sky Harbor Blvd.,Phoenix,AZ,85034 +-112.010296,33.436183,PHX- N-2 - Phoenix AZ (A),3400 Sky Harbor Blvd.,Phoenix,AZ,85034 +-111.997826,33.435227,PHX-Term 4 Concourse C S-4 - Phoenix AZ (A),3800 E. Sky Harbor Blvd.,Phoenix,AZ,85034 +-112.218582,33.475716,Target Phoenix T-851 - Phoenix AZ,7409 W. Virginia Ave.,Phoenix,AZ,85035 +-112.220675,33.465922,"75th Ave. & McDowell Phoenix - Phoenix AZ (D, W)",1610 N. 75th Avenue,Phoenix,AZ,85035 +-112.25515,33.478136,"91st. Avenue & Thomas Phoenix - Phoenix AZ (D, W)",2815 N. 91st Avenue,Phoenix,AZ,85037 +-112.275332,33.507985,"99th Avenue & Camelback Phoenix - Phoenix AZ (D, W)",9925 W. Camelback Road,Phoenix,AZ,85037 +-112.048714,33.390434,Safeway-Phoenix #1591 - Phoenix AZ,6202 S. 16th St.,Phoenix,AZ,85040 +-112.034166,33.379052,Target S. Mountain Phoenix T-1905 - Phoenix AZ,2140 E. Baseline,Phoenix,AZ,85040 +-112.101768,33.378966,"19th Ave. & Baseline Phoenix - Phoenix AZ (D, W)",2020 W. Baseline Rd.,Phoenix,AZ,85041 +-112.030814,33.378699,"24th St. & Baseline Phoenix - Phoenix AZ (D, W)",2340 E. Baseline Road,Phoenix,AZ,85042 +-112.005508,33.316848,Fry's-Phoenix AZ #27 - Phoenix AZ,3616 E. Ray Rd.,Phoenix,AZ,85044 +-111.996517,33.304726,Safeway-Phoenix #1201 - Phoenix AZ,4005 East Chandler Boulevard,Phoenix,AZ,85044 +-111.981914,33.348096,Safeway-Phoenix #752 - Phoenix AZ,4747 E. Elliot Rd.,Phoenix,AZ,85044 +-112.053938,33.306573,Safeway - Phoenix #1980 - Phoenix AZ,1334 East Chandler Blvd.,Phoenix,AZ,85048 +-111.986405,33.305152,"46th & Chandler - Phoenix AZ (D, W)",4605 E. Chandler Blvd.,Phoenix,AZ,85048 +-111.977184,33.677189,Tatum & Loop 101 Phoenix - Phoenix AZ (W),21001 N. Tatum Blvd.,Phoenix,AZ,85050 +-111.971841,33.676247,Albertsons-Phoenix #1025 - Phoenix AZ,21001 North Tatum Blvd.,Phoenix,AZ,85050 +-111.978579,33.677854,"Tatum & Rose Garden Phoenix - Phoenix AZ (D, W)",21050 N. Tatum Blvd.,Phoenix,AZ,85050 +-112.134242,33.553503,Safeway - Phoenix #257 - Phoenix AZ,8021 N. 35th Avenue,Phoenix,AZ,85051 +-112.133505,33.640509,Safeway - Phoenix #240 - Phoenix AZ,3450 West Bell,Phoenix,AZ,85053 +-112.147565,33.610677,"43rd Avenue & Thunderbird Phoenix - Phoenix AZ (D, W)",4123 W. Thunderbird Road,Phoenix,AZ,85053 +-111.968499,33.684951,Marriott Desert Ridge - Lobby - Phoenix AZ,5350 East Pathfinder Drive,Phoenix,AZ,85054 +-111.93178,33.65515,Scottsdale & Loop 101 Scottsdale - Phoenix AZ (W),7000 E. Mayo Blvd. Bldg. #1,Phoenix,AZ,85054 +-112.159853,33.61063,ASU West Campus - Fletcher Library - Glendale AZ,4701 W. Thunderbird Road,Glendale,AZ,85069 +-112.11184,33.712898,Happy Valley & I-17 Phoenix - Phoenix AZ (W),2501 West Happy Valley Road,Phoenix,AZ,85085 +-112.13876,33.864874,Safeway-Anthem #1726 - Anthem AZ,3655 W. Anthem Way,Anthem,AZ,85086 +-112.136653,33.866001,"Anthem & I-17 Anthem - Anthem AZ (D, W)",3640 W. Anthem Way,Anthem,AZ,85086 +-112.134318,33.843357,Daisy Mountain & Gavilan Peak - Anthem AZ (W),39504 N. Daisy Mountain Drive,Anthem,AZ,85086 +-111.873531,33.414937,Safeway - Mesa #1717 - Mesa AZ,1960 W. Main St.,Mesa,AZ,85201 +-111.874571,33.383558,Dobson & Freeway - Mesa AZ (W),1653 Dobson Road,Mesa,AZ,85202 +-111.863732,33.392398,Target Mesa T-1429 - Mesa AZ,1230 S. Longmore Ave.,Mesa,AZ,85202 +-111.862943,33.392762,Southern & Longmore Mesa - Mesa AZ (W),1457 W. Southern Avenue,Mesa,AZ,85202 +-111.859842,33.363148,Safeway - Mesa #247 - Mesa AZ,1225 West Guadalupe,Mesa,AZ,85202 +-111.802973,33.451196,Stapley & McKellips Mesa - Mesa AZ (W),1229 E. McKellips Road,Mesa,AZ,85203 +-111.803969,33.384168,Stapley & the Freeway - Mesa AZ. - Mesa AZ (W),1641 S. Stapley Rd.,Mesa,AZ,85204 +-111.787158,33.381438,Baseline & Gilbert - Mesa AZ (W),2048 E. Baseline,Mesa,AZ,85204 +-111.753837,33.380608,"Val Vista & Baseline Mesa - Mesa AZ (D, W)",1939 S. Val Vista Dr,Mesa,AZ,85204 +-111.754828,33.393724,"Val Vista & Southern Mesa - Mesa AZ (D, W)",3550 E. Southern Avenue,Mesa,AZ,85204 +-111.735809,33.451819,"Greenfield & McKellips Mesa - Mesa AZ (D, W)",4409 E. McKellips Road,Mesa,AZ,85205 +-111.752316,33.394824,Safeway - Mesa #1637 - Mesa AZ,3622 E. Southern Ave.,Mesa,AZ,85206 +-111.737066,33.384693,"Greenfield & Inverness Mesa - Mesa AZ (D, W)",1705 S. Greenfield Road,Mesa,AZ,85206 +-111.685118,33.409068,"Power & Broadway Mesa - Mesa AZ (D, W)",344 S. Power Road,Mesa,AZ,85206 +-111.688629,33.378218,Power & Baseline - Mesa AZ (W),2060 S. Power Rd.,Mesa,AZ,85208 +-111.638657,33.376754,Safeway-Mesa #2676 - Mesa AZ,9101 E. Baseline Rd.,Mesa,AZ,85208 +-111.619399,33.377396,Bashas' Mesa #155 - Mesa AZ,9925 E. Baseline Rd.,Mesa,AZ,85208 +-111.635554,33.377398,"Ellsworth & Baseline Mesa - Mesa AZ (D, W)",2043 S. Ellsworth Road,Mesa,AZ,85209 +-111.600779,33.380619,"Signal Butte & Hwy. 60 Mesa - Mesa AZ (D, W)",1923 S. Signal Butte Road,Mesa,AZ,85209 +-111.687901,33.373101,Super Target Gilbert ST-1959 - Mesa AZ,5110 S. Power Rd.,Mesa,AZ,85212 +-111.771923,33.423698,Safeway - Mesa #1567 - Mesa AZ,2740 E. University Dr,Mesa,AZ,85213 +-111.702783,33.450332,Frys - Mesa #23 - Mesa AZ,5941 East McKellips Rd.,Mesa,AZ,85215 +-111.684316,33.441762,Safeway-Mesa #2644 - Mesa AZ,2151 N. Power Rd.,Mesa,AZ,85215 +-111.684057,33.466461,"Power & McDowell Mesa - Mesa AZ (D, W)",2832 North Power Road,Mesa,AZ,85215 +-111.579753,33.41504,Safeway-Apache Junction #253 - Apache Junction AZ,3185 W. Apache Tr,Apache Junction,AZ,85220 +-111.574161,33.415885,"Apache Trail & Delaware Apache Jun - Apache Junction AZ (D, W)",2580 W. Apache Trail,Apache Junction,AZ,85220 +-111.756588,32.940562,Fry's #669 Casa Grande - Casa Grande AZ,2858 North Pinal Avenue,Casa Grande,AZ,85222 +-111.741145,32.895418,Safeway-Casa Grande #1706 - Casa Grande AZ,1637 N. Trekel Rd.,Casa Grande,AZ,85222 +-111.6869,32.87965,Target Casa Grande T-2353 - Casa Grande AZ,I 10 & W. State Hwy. 287,Casa Grande,AZ,85222 +-111.723897,32.879101,"Florence & Peart Casa Grande - Casa Grande AZ (D, W)",1485 E. Florence Blvd.,Casa Grande,AZ,85222 +-111.892394,33.320242,"Ray Road & Loop 101 Chandler - Chandler AZ (D, W)",2885 W. Ray Road,Chandler,AZ,85224 +-111.874571,33.306082,Dobson & Chandler - Chandler AZ (W),1900 W. Chandler Blvd.,Chandler,AZ,85224 +-111.863163,33.304233,Safeway - Chandler #1604 - Chandler AZ,1159 W. Chandler Blvd.,Chandler,AZ,85224 +-111.877937,33.33561,Dobson & Warner Chandler - Chandler AZ (W),2050 N. Dobson Road Suite 5,Chandler,AZ,85224 +-111.842609,33.304416,San Marcos Resorts and Conference - Chandler AZ,One San Marcos Place,Chandler,AZ,85225 +-111.82267,33.321764,Safeway-Chandler #1605 - Chandler AZ,1060 E. Ray Rd.,Chandler,AZ,85225 +-111.858651,33.348097,Alma School & Elliot Rd. Chandler - Chandler AZ (W),985 West Elliot Road,Chandler,AZ,85225 +-111.947194,33.305885,Chandler & Kyrene Chandler - Chandler AZ (W),6140 West Chandler Blvd.,Chandler,AZ,85226 +-111.911683,33.321294,"McClintock & Ray Chandler - Chandler AZ (D, W)",4030 W. Ray Road,Chandler,AZ,85226 +-111.968069,33.314608,54th St. & Ray Rd. Chandler - Chandler AZ (W),885 N. 54th Street,Chandler,AZ,85226 +-111.896528,33.3057,Chandler & Price Road Phoenix - Chandler AZ (W),3161 W. Chandler Blvd.,Chandler,AZ,85226 +-111.522295,32.993972,Safeway-Coolidge #1732 - Coolidge AZ,1449 N. Arizona Blvd.,Coolidge,AZ,85228 +-111.484293,33.062253,Safeway - Florence #2835 - Florence AZ,3325 North Hunt Highway,Florence,AZ,85232 +-111.809135,33.335428,Warner & Cooper Road - Gilbert AZ (W),884 W. Warner Road,Gilbert,AZ,85234 +-111.789677,33.317465,Gilbert & Loop 202 Phoenix - Gilbert AZ (W),3765 S. Gilbert Rd.,Gilbert,AZ,85234 +-111.72342,33.377725,Safeway - Gilbert #1748 - Gilbert AZ,5137 E. Baseline Rd.,Gilbert,AZ,85234 +-111.719097,33.413657,Bashas - Gilbert/Higley Rd. #172 - Gilbert AZ,99 S. Higley Rd.,Gilbert,AZ,85236 +-111.6994,33.3391,Power & Loop 202 Gilbert - Higley AZ (W),4972 S. Power Road,Higley,AZ,85236 +-112.046323,33.070278,Bashas Maricopa #109 - Maricopa AZ,21044 N. John Wayne Parkway,Maricopa,AZ,85239 +-111.56568,33.218638,Fry's-Queen Creek #682 - Queen Creek AZ,155 West Combs Road,Queen Creek,AZ,85240 +-111.685864,33.232365,Bashas' Queen Creek #46 - Queen Creek AZ,23760 S. Power Rd.,Queen Creek,AZ,85242 +-111.683937,33.266217,Safeway-Queen Creek #1819 - Queen Creek AZ,18495 E. Queen Creek Rd.,Queen Creek,AZ,85242 +-111.641502,33.254022,Super Target Queen Creek ST-2365 - Queen Creek AZ,21398 S. Ellsworth Loop Rd.,Queen Creek,AZ,85242 +-111.560613,33.159762,Fry's #84 Queen Creek - Queen Creek AZ,542 E. Hunt Highway,Queen Creek,AZ,85242 +-111.585002,33.179245,Hunt & Gary Queen Creek - Queen Creek AZ (D),1757 W. Hunt Hwy.,Queen Creek,AZ,85243 +-111.860331,33.261101,Queen Creek & Alma School Chandler - Chandler AZ (W),1085 W. Queen Creek Rd.,Chandler,AZ,85248 +-111.859848,33.233712,Safeway-Chandler #1566 - Chandler AZ,4970 S. Alma School Rd.,Chandler,AZ,85248 +-111.841327,33.284775,"Arizona Ave. & Loop 202 Chandler - Chandler AZ (D, W)",1395 S. Arizona Avenue,Chandler,AZ,85248 +-111.791016,33.218109,Albertsons-Chandler #1021 - Chandler AZ,2935 E. Riggs Road,Chandler,AZ,85249 +-111.789896,33.320972,Bashas' - Chandler #161 - Chandler AZ,4940 S. Gilbert Rd.,Chandler,AZ,85249 +-111.790957,33.234146,"Chandler Heights & Gilbert - Chandler AZ (D, W)",4970 S. Gilbert Road,Chandler,AZ,85249 +-111.929473,33.798184,Albertsons-Sctdl AZ #979 - Scottsdale AZ,34442 N. Scottsdale,Scottsdale,AZ,85250 +-111.925759,33.525773,Hilton Village - Phoenix AZ (W),6137 N. Scottsdale Rd.,Phoenix,AZ,85250 +-111.910531,33.509427,Safeway-Phoenix #1491 - Scottsdale AZ,7920 E. Chaparral Rd.,Scottsdale,AZ,85250 +-111.886268,33.537871,"Indian Bend & Loop 101 Scottsdale - Scottsdale AZ (D, W)",9051 E. Indian Bend Road,Scottsdale,AZ,85250 +-111.926195,33.493947,Scottsdale & Indian School - Scottsdale AZ (W),4032 N. Scottsdale Road,Scottsdale,AZ,85251 +-111.926167,33.502366,Scottsdale Fashion Square - Scottsdale AZ (W),7014 E. Camelback Road,Scottsdale,AZ,85251 +-111.90712,33.494848,Bashas' - Scottsdale #7 - Scottsdale AZ,8035 E. Indian School Rd.,Scottsdale,AZ,85251 +-111.909351,33.485766,"Hayden & Osborn Scottsdale - Scottsdale AZ (D, W)",3300 N. Hayden Road,Scottsdale,AZ,85251 +-111.965626,33.534205,Camelback Inn-Scottsdale - Scottsdale AZ,5402 E. Lincoln Dr,Scottsdale,AZ,85253 +-111.925615,33.538719,Scottsdale & Indian Bend - Scottsdale AZ (W),7001 North Scottsdale Road,Scottsdale,AZ,85253 +-111.976338,33.626014,Safeway - Scottsdale #2088 - Scottsdale AZ,4857 E. Greenway Rd.,Scottsdale,AZ,85254 +-111.939858,33.624619,Safeway-Scottsdale #1750 - Scottsdale AZ,6501 E. Greenway Pkwy. #4,Scottsdale,AZ,85254 +-111.928051,33.582664,71st St. & Shea Scottsdale - Scottsdale AZ,7050 E. Shea Blvd.,Scottsdale,AZ,85254 +-111.925884,33.584121,Safeway-Scottsdale #2032 - Scottsdale AZ,10773 N. Scottsdale Rd.,Scottsdale,AZ,85254 +-111.92526,33.62013,Scottsdale & Kierland Phoenix - Phoenix AZ (W),15054 N. Scottsdale Rd.,Phoenix,AZ,85254 +-111.925286,33.700312,Scottsdale & Pinnacle Peak - Scottsdale AZ (W),23535 N. Scottsdale Road,Scottsdale,AZ,85255 +-111.890459,33.67255,Safeway-Scottsdale #1663 - Scottsdale AZ,20901 N. Pima Rd.,Scottsdale,AZ,85255 +-111.925285,33.70053,Safeway-Scottsdale #1253 - Scottsdale AZ,23565 N. Scottsdale Rd.,Scottsdale,AZ,85255 +-111.888295,33.69884,Pima & Pinnacle Peak Scottsdale - Scottsdale AZ (W),8912 E. Pinnacle Peak Road,Scottsdale,AZ,85255 +-111.905966,33.67114,"Hayden & Thompson Peak Scottsdale - Scottsdale AZ (D, W)",20553 North Hayden Road,Scottsdale,AZ,85255 +-111.925617,33.479969,Scottsdale & Thomas Scottsdale - Scottsdale AZ (W),2865 N. Scottsdale Rd.,Scottsdale,AZ,85257 +-111.886466,33.580882,Fry's #125 Phoenix - Phoenix AZ,10450 N. 90th Street,Phoenix,AZ,85258 +-111.838166,33.587977,Safeway-Scottsdale #1126 - Scottsdale AZ,11275 E. Via Linda,Scottsdale,AZ,85259 +-111.833885,33.589621,Albertsons-Sctdl AZ #983 - Scottsdale AZ,11475 E. Via Linda,Scottsdale,AZ,85259 +-111.8919,33.623427,"101 Freeway & Raintree - Scottsdale AZ (D, W)",15227 N. 87th St. #100,Scottsdale,AZ,85260 +-111.882116,33.628701,Scottsdale Town Center - Scottsdale AZ (W),15768 N. Frank Lloyd Wright Blvd.,Scottsdale,AZ,85260 +-111.880854,33.581236,"92nd & Shea Scottsdale - Scottsdale AZ (D, W)",9301 E. Shea Blvd.,Scottsdale,AZ,85260 +-111.874477,33.620442,Safeway-Scottsdale #1549 - Scottsdale AZ,14696 N. Frank Lloyd Wright Blvd.,Scottsdale,AZ,85260 +-111.873937,33.622734,Frank Lloyd Wright & Thompson Peak - Scottsdale AZ (W),15029 N. Thompson Peak Parkway,Scottsdale,AZ,85260 +-111.88836,33.629561,Target North Scottsdale T-936 - Scottsdale AZ,15444 N. Frank Lloyd Wright Blvd.,Scottsdale,AZ,85260 +-111.925754,33.779068,Scottsdale & Ashler Hills Scottsda - Scottsdale AZ (W),32421 N. Scottsdale Road,Scottsdale,AZ,85262 +-111.925748,33.780681,Safeway - Scottsdale #1849 - Scottsdale AZ,32551 N. Scottsdale Rd.,Scottsdale,AZ,85262 +-111.728098,33.610583,Safeway - Fountain Hills #1291 - Fountain Hills AZ,13733 Fountain Hills Blvd.,Fountain Hills,AZ,85268 +-111.725309,33.609669,Fountain Hills - Fountain Hills AZ (W),16425 E. Palisades Blvd.,Fountain Hills,AZ,85268 +-111.717027,33.574924,Shea & Technology Fountain Hills - Fountain Hills AZ (W),16815 E. Shea Blvd.,Fountain Hills,AZ,85268 +-111.94047,33.425711,Mill & 5th Avenue - Tempe AZ (W),420 S. Mill Avenue,Tempe,AZ,85281 +-111.909039,33.429352,Target Tempe NE T-2176 - Tempe AZ,1800 E. Rio Salado Pkwy,Tempe,AZ,85281 +-111.955669,33.442405,"Priest & Washington Tempe - Tempe AZ (D, W)",1158 W. Washington Street,Tempe,AZ,85281 +-111.926899,33.450888,"Scottsdale & McKellips Tempe - Tempe AZ (D, W)",1926 N. Scottsdale Rd.,Tempe,AZ,85281 +-111.926135,33.43405,"Rural & Loop 202 Tempe - Tempe AZ (D, W)",555 N. Scottsdale Road,Tempe,AZ,85281 +-111.950744,33.421891,University & Hardy Tempe - Tempe AZ (W),871 W. University Drive,Tempe,AZ,85281 +-111.966985,33.379766,Arizona Mills - Tempe AZ (W),5000 Arizona Mills Circle,Tempe,AZ,85282 +-111.928695,33.37841,Rural & Baseline - Tempe - Tempe AZ (W),5158 South Rural Road,Tempe,AZ,85282 +-111.925816,33.408755,Safeway-Tempe #1487 - Tempe AZ,926 E. Broadway,Tempe,AZ,85282 +-111.909098,33.393667,McClintock & Southern Tempe - Tempe AZ (W),3223 S. McClintock Drive,Tempe,AZ,85282 +-111.929727,33.364723,Albertsons-Tempe AZ #940 - Tempe AZ,750 E. Guadalupe Rd.,Tempe,AZ,85283 +-111.910822,33.363746,"Guadalupe & McClintock - Tempe AZ (D, W)",1817 E. Guadalupe,Tempe,AZ,85283 +-111.914007,33.349038,Safeway-Tempe #1535 - Tempe AZ,1515 E. Elliott Rd.,Tempe,AZ,85284 +-111.965253,33.349165,Elliot & Priest Tempe - Tempe AZ (W),1620 W. Elliot Road,Tempe,AZ,85284 +-111.934432,33.418102,Aramark ASU Memorial Union - Tempe AZ,1290 S. Normal,Tempe,AZ,85287 +-111.9335,33.418,Aramark ASU Business College - Tempe AZ,College of Business 1st Floor,Tempe,AZ,85287 +-111.93119,33.418348,Aramark ASU Bookstore - Tempe AZ,525 E. Orange St.,Tempe,AZ,85287 +-111.88766,33.422098,Aramark ASU Palo Verde East - Tempe AZ,340 E. University Dr,Tempe,AZ,85287 +-111.789677,33.317463,Super Target Gilbert ST-1960 - Gilbert AZ,3931 S. Gilbert Rd.,Gilbert,AZ,85296 +-111.778812,33.33546,Val Vista & Warner Gilbert - Gilbert AZ (W),1505 E. Warner Road,Gilbert,AZ,85296 +-111.771705,33.335511,Albertsons-Gilbert #1023 - Gilbert AZ,861 E. Warner,Gilbert,AZ,85296 +-111.755797,33.349152,Safeway-Gilbert #1534 - Gilbert AZ,90 S. Val Vista Dr,Gilbert,AZ,85296 +-111.7464,33.3344,Macy's - San Tan Village - Gilbert AZ,SR-202 Loop & William Fields Rd.,Gilbert,AZ,85296 +-111.687342,33.265627,Albertsons-Gilbert AZ #929 - Gilbert AZ,8454 S. Power Rd.,Gilbert,AZ,85297 +-112.152467,33.579198,Target Glendale T-2341 - Glendale AZ,10404 N. 43rd Ave.,Glendale,AZ,85302 +-112.202432,33.581636,67th Ave. & Peoria Glendale - Glendale AZ (D),6649 W. Peoria Avenue,Glendale,AZ,85302 +-112.167359,33.597302,Albertsons-Glendale #941 - Glendale AZ,5040 W. Cactus,Glendale,AZ,85304 +-112.185218,33.610777,59th & Thunderbird - Glendale AZ (W),5890 W. Thunderbird Rd.,Glendale,AZ,85306 +-112.184822,33.610778,Safeway - Glendale #1636 - Glendale AZ,5860 West Thunderbird,Glendale,AZ,85306 +-112.227509,33.639812,Arrowhead Towne Center - Glendale AZ (W),7700 Arrowhead Town Center,Glendale,AZ,85308 +-112.202914,33.668836,67th & Beardsley - Phoenix AZ (W),20249 N. 67th Ave.,Phoenix,AZ,85308 +-112.202907,33.668084,Safeway-Glendale #1510 - Glendale AZ,20205 N. 67th Ave.,Glendale,AZ,85308 +-112.199718,33.638303,Fry's - Glendale #625 - Glendale AZ,6611 W. Bell Road,Glendale,AZ,85308 +-112.188464,33.669591,Fry's-Glendale AZ #60 - Glendale AZ,20220 N. 59th Ave.,Glendale,AZ,85308 +-112.186257,33.653415,59th & Union Hills Glendale - Glendale AZ (W),18555 N. 59th Avenue,Glendale,AZ,85308 +-112.235065,33.652632,"101 Freeway & Union Hills Drive - Glendale AZ (D, W)",8251 W. Union Hills Drive,Glendale,AZ,85308 +-112.356761,33.539368,Main Exchange Mall - Glendale AZ,7123 N. 138th Ave.,Glendale,AZ,85309 +-112.1422,33.699101,39th & Pinnacle Peak Phoenix - Glendale AZ (W),23425 N. 39th Drive,Glendale,AZ,85310 +-112.276164,33.464755,Mc Dowell & 99th Avondale - Avondale AZ (W),10030 W. McDowell Rd. Ste. 160,Avondale,AZ,85323 +-112.305646,33.435397,115th Ave. & Buckeye Avondale - Avondale AZ (W),11435 W. Buckeye Road,Avondale,AZ,85323 +-111.991317,33.75736,Safeway-Phoenix #1543 - Phoenix AZ,29834 N. Cave Creek Rd.,Phoenix,AZ,85331 +-111.977619,33.798529,Fry's #67 Cave Creek - Cave Creek AZ,4815 E. Carfree highway,Cave Creek,AZ,85331 +-111.977619,33.798529,48th & Carefree Hwy. N. Phoenix - Phoenix AZ (W),4815 E. Carefree Hwy.,Phoenix,AZ,85331 +-112.426789,33.444501,SuperTarget Goodyear West ST-2400 - Goodyear AZ,995 South Cotton Lane,Goodyear,AZ,85338 +-112.392589,33.457269,Safeway-Goodyear #2618 - Goodyear AZ,440 N. Estrella Pkwy,Goodyear,AZ,85338 +-112.364077,33.485717,Safeway-Goodyear #1511 - Goodyear AZ,14175 W. Indian Sch R,Goodyear,AZ,85338 +-112.355778,33.462188,Litchfield & McDowell Goodyear - GOODYEAR AZ (W),1375 North Litchfield Road,Goodyear,AZ,85338 +-112.167223,33.37742,Safeway - Phoenix #2709 - Laveen AZ,5035 W. Baseline Rd.,Laveen,AZ,85339 +-112.168664,33.377598,Baseline & 51st. Avenue Laveen - Laveen AZ (W),5150 W. Baseline Road,Laveen,AZ,85339 +-112.340813,33.510474,Bashas' Litchfield Park #130 - Litchfield Park AZ,5115 N. Dysart Rd. Ste. 150,Litchfield Park,AZ,85340 +-112.341008,33.510352,"Dysart & Camelback Phoenix - Litchfield Park AZ (D, W)",5104 N. Dysart Road,Litchfield Park,AZ,85340 +-114.28049,34.153767,Safeway - Parker #2075 - Parker AZ,121 W. Riverside Rd.,Parker,AZ,85344 +-112.288448,33.56416,Safeway-Peoria #1662 - Peoria AZ,10641 W. Olive Ave.,Peoria,AZ,85345 +-112.218201,33.638343,75th & Bell Ave. - Glendale AZ (W),7410 West Bell Road,Glendale,AZ,85345 +-112.275518,33.637358,99th Ave. & Bell Sun City - Sun City AZ (W),10001 W. Bell Road,Sun City,AZ,85351 +-112.271974,33.422605,"99th Ave. & Lower Buckeye - Tolleson AZ (D, W)",2735 S. 99th Avenue,Tolleson,AZ,85353 +-114.648936,32.683278,"24th & Avenue B Yuma - Yuma AZ (D, W)",2383 W. 24th Street,Yuma,AZ,85364 +-114.64858,32.684863,Albertsons-Yuma #931 - Yuma AZ,2378 W. 24th St.,Yuma,AZ,85364 +-114.606004,32.704623,Target Yuma T-2083 - Yuma AZ,1450 S. Yuma Palms Pkwy,Yuma,AZ,85364 +-114.624144,32.671984,4th & Catalina Yuma - Yuma AZ (D),3115 South 4th Avenue,Yuma,AZ,85364 +-114.60354,32.70183,16th Street & I-8 Yuma - Yuma AZ (W),1418 S. Yuma Palms Parkway,Yuma,AZ,85365 +-114.497237,32.688383,Arizona Western College - Yuma AZ,2020 South Ave. 8E,Yuma,AZ,85365 +-114.600024,32.697615,16th & Pacific Yuma - Yuma AZ (D),1630 S. Pacific Avenue,Yuma,AZ,85365 +-112.292891,33.638061,Safeway-Phoenix #236 - Phoenix AZ,10926 W. Bell Rd.,Phoenix,AZ,85373 +-112.425869,33.63876,Safeway-Surprise #1997 - Surprise AZ,17049 W. Bell Rd.,Surprise,AZ,85374 +-112.420848,33.63937,Albertsons-Surprise #1026 - Surprise AZ,16750 W. Bell Rd.,Surprise,AZ,85374 +-112.395113,33.639874,Fry's #61 Surprise - Surprise AZ,15510 W. Bell Road,Surprise,AZ,85374 +-112.373838,33.656887,Safeway-Sun City West #1520 - Surprise AZ,14505 W. Grand Ave.,Surprise,AZ,85374 +-112.3738,33.6566,"Grand & Reems Surprise - Surprise AZ (D, W)",18885 Reems Road,Surprise,AZ,85374 +-112.358018,33.610069,Safeway-Surprise #2699 - Surprise AZ,13828 W. Waddell Rd.,Surprise,AZ,85374 +-112.35526,33.63872,Bell & Grand Surprise - Surprise AZ (W),13706 W. Bell Road,Surprise,AZ,85374 +-112.390408,33.639324,Bell & Brookside Surprise - Surprise AZ (W),15332 W. Bell Road,Surprise,AZ,85374 +-112.351699,33.656336,Safeway - Sun City West #2054 - Sun City West AZ,13503 Camino Del Sol,Sun City West,AZ,85375 +-112.426749,33.621919,Fry's #680 Surprise - Surprise AZ,15215 N. Cotton Lane,Surprise,AZ,85379 +-112.391674,33.609581,Bashas - Surprise #137 - Surprise AZ,15367 W. Waddell Rd.,Surprise,AZ,85379 +-112.226075,33.635053,Chile Davis Baseball Club - Peoria AZ,7797 W. Paradise Ln.,Peoria,AZ,85381 +-112.221606,33.611335,75th Avenue & Thurderbird Peoria - Peoria AZ (W),7518 W. Thunderbird Road,Peoria,AZ,85381 +-112.27987,33.667662,Bashas' Peoria #102 - Peoria AZ,20351 N. Lake Pleasant Rd.,Peoria,AZ,85382 +-112.240005,33.67196,Safeway-Peoria #1955 - Peoria AZ,20713 N. 83rd Ave.,Peoria,AZ,85382 +-112.236638,33.681586,Albertsons-Peoria #991 - Peoria AZ,8240 W. Deer Valley Rd.,Peoria,AZ,85382 +-112.251023,33.63962,91st & Bell Peoria - Peoria AZ (W),8940 W. Bell Rd. Suite B-101,Peoria,AZ,85382 +-112.320882,33.740695,Safeway - Peoria #2799 - Peoria AZ,28455 N. Vistancia Blvd.,Peoria,AZ,85383 +-112.272628,33.709647,Super Target Peoria T-2227 - Peoria AZ,24890 N. Lake Pleasant Rd.,Peoria,AZ,85383 +-112.272687,33.707255,"Lake Pleasant & Happy Valley - Peoria AZ (D, W)",24654 N. Lake Pleasant Parkway,Peoria,AZ,85383 +-112.771732,33.962203,Safeway - Wickenburg #1584 - Wickenburg AZ,1999 W. Wickenburg Way,Wickenburg,AZ,85390 +-112.286572,33.493653,"Indian School & 107 Ave. Avondale - Avondale AZ (D, W)",10585 W. Indian School Rd.,Avondale,AZ,85392 +-112.392372,33.468936,Bashas #169 Goodyear - Goodyear AZ,2075 N. Pebble Creek Pkwy,Goodyear,AZ,85395 +-112.341557,33.465289,Dysart & McDowell Goodyear - Goodyear AZ (D),1690 N. Dysart Road,Goodyear,AZ,85395 +-110.83744,33.413532,Safeway-Miami #1274 - Miami AZ,4567 E. US Highway 60,Miami,AZ,85539 +-111.31757,34.24052,Safeway-Payson #1536 - Payson AZ,401 E. Hwy. 260,Payson,AZ,85541 +-109.734988,32.837538,Safeway-Thatcher #2648 - Thatcher AZ,2125 W. US-70,Thatcher,AZ,85552 +-110.306264,31.969357,Safeway-Benson #1275 - Benson AZ,599 W. 4th St.,Benson,AZ,85602 +-109.919126,31.397774,Safeway - Bisbee #261 - Bisbee AZ,101 Naco Highway,Bisbee,AZ,85603 +-110.353165,31.556711,Fort Huachuca PX - Fort Huachuca AZ,Smith Ave. & Hatfield St.,Fort Huachuca,AZ,85613 +-110.996875,31.851718,Safeway-Green Valley #2044 - Green Valley AZ,260 West Continental,Green Valley,AZ,85614 +-110.940557,31.366032,Safeway - Nogales #1229 - Nogales AZ,465 W. Mariposa Rd.,Nogales,AZ,85621 +-110.992882,31.900258,Safeway-Sahuarita #1771 - Sahuarita AZ,1301 W. Duval Mine Rd.,Sahuarita,AZ,85629 +-110.98582,31.960513,Fry's #679 Suahrita - Sahuarita AZ,15950 South Rancho Sahuarita,Sahuarita,AZ,85629 +-110.275466,31.554581,Safeway-Sierra Vista #2083 - Sierra Vista AZ,2190 E. Fry Blvd.,Sierra Vista,AZ,85635 +-110.255399,31.555815,Target Sierra Vista T-735 - Sierra Vista AZ,4151 E. Hwy. 90,Sierra Vista,AZ,85635 +-110.253527,31.556135,Fry's #59 Sierra Vista - Sierra Vista AZ,4351 E. Highway 90,Sierra Vista,AZ,85635 +-109.841442,32.261142,Safeway - Willcox #272 - WILLCOX AZ,650 N. Bisbee Ave.,Willcox,AZ,85643 +-111.138022,32.371618,Safeway-Marana #1749 - Marana AZ,9100 North Silver Bell,Marana,AZ,85653 +-111.045112,32.425545,Fry's #689 Marana - Marana AZ,12100 North Thorneydale Road,Marana,AZ,85653 +-111.010416,32.306481,Bashas' W. River Rd. Tucson #160 - Tucson AZ,2000 W. River Rd.,Tucson,AZ,85704 +-110.995786,32.297939,Albertsons-Tucson #988 - Tucson AZ,5085 N. La Canada Drive,Tucson,AZ,85704 +-110.97816,32.33692,"Ina & Oracle - Tucson AZ (D, W)",7151 N. Oracle,Tucson,AZ,85704 +-110.977295,32.315822,Oracle & Rudasill-Tucson AZ - Tucson AZ (D),6001 North Oracle Rd.,Tucson,AZ,85704 +-110.975632,32.336092,Safeway-Tucson #1255 - Tucson AZ,7110 N. Oracle Rd.,Tucson,AZ,85704 +-110.973433,32.297174,River Road & Stoneloop - Tucson AZ (W),98 West River Road,Tucson,AZ,85704 +-110.97805,32.279948,Target Tucson North T-2140 - Tucson AZ,4040 N. Oracle Rd.,Tucson,AZ,85705 +-110.965757,32.287359,First & Wetmore Tucson - Tucson AZ (W),405 E. Wetmore Road,Tucson,AZ,85705 +-110.875901,32.182128,Davis Monthan AFB - Tucson AZ,5405 E. Granite St. Bldg 2527,Tucson,AZ,85708 +-110.825828,32.235433,Fry's - Tucson #34 - Tucson AZ,7812 E. Speedway Blvd.,Tucson,AZ,85710 +-110.806593,32.22082,Safeway - Tucson #234 - Tucson AZ,8740 E. Broadway,Tucson,AZ,85710 +-110.83752,32.220906,"Broadway Bl & Kolb Rd. Tucson - Tucson AZ (D, W)",7288 E. Broadway Blvd.,Tucson,AZ,85710 +-110.843656,32.206384,22nd Street & Kolb Tucson - Tucson AZ (W),6970 E. 22nd Street,Tucson,AZ,85710 +-110.866166,32.220031,Park Place - Tucson - Tucson AZ (W),5870 East Broadway Blvd.,Tucson,AZ,85711 +-110.892566,32.269381,Bashas N. Swan Rd. Tucson #100 - Tucson AZ,3275 N. Swan Rd.,Tucson,AZ,85712 +-110.889344,32.251263,Grant & Swan - Tucson AZ (W),4811 E. Grant,Tucson,AZ,85712 +-110.858194,32.235973,"Speedway & Wilmot Tucson - Tucson AZ (D, W)",6291 E. Speedway Blvd.,Tucson,AZ,85712 +-110.991003,32.162937,"Irvington & I-19 Tucson - Tucson AZ (D, W)",1209 W. Irvington Road,Tucson,AZ,85714 +-110.838976,32.251009,Safeway - Tanque Verde #1988 - Tucson AZ,7177 E. Tanque Verde,Tucson,AZ,85715 +-110.913935,32.221704,Target Tucson El Con Mall T-1439 - Tucson AZ,3699 E. Broadway Blvd.,Tucson,AZ,85716 +-110.927504,32.236152,Speedway & Country Club Tucson - Tucson AZ (W),3025 E. Speedway Blvd.,Tucson,AZ,85716 +-110.919428,32.221709,"Broadway & Randolph Tucson - Tucson AZ (D, W)",3421 E. Broadway Blvd.,Tucson,AZ,85716 +-110.943559,32.287254,River & Campbell Tucson - Tucson AZ (W),1825 E. River Road Suite 119,Tucson,AZ,85718 +-110.892374,32.308308,Sunrise & Swan - Tucson - Tucson AZ (W),4700 East Sunrise Drive,Tucson,AZ,85718 +-110.92909,32.32243,Skyline & Campbell Tucson - Tucson AZ (W),6370 N. Campbell Avenue,Tucson,AZ,85718 +-110.891712,32.308314,Safeway-Tucson #250 - Tucson AZ,4752 E. Sunrise Dr,Tucson,AZ,85718 +-110.958931,32.23167,University of Arizona - Tucson AZ (W),802-804 E. University Blvd.,Tucson,AZ,85719 +-110.945071,32.272245,Safeway - Tucson #2060 - Tucson AZ,1767 East Prince Rd.,Tucson,AZ,85719 +-110.943289,32.22117,Safeway - Tucson #1684 - Tucson AZ,1940 East Broadway Road,Tucson,AZ,85719 +-110.944412,32.221752,"Broadway & Campbell Tucson - Tucson AZ (D, W)",1821 E. Broadway Blvd.,Tucson,AZ,85719 +-110.95376,32.23248,The University of Arizona Bookstore - Tucson AZ,1209 E. University Blvd.,Tucson,AZ,85721 +-110.856475,32.189647,Safeway - Tucson #1874 - Tucson AZ,6360 E. Golf Links,Tucson,AZ,85730 +-110.791113,32.190585,Safeway - Tucson #1989 - Tucson AZ,9460 E. Golf Links Rd.,Tucson,AZ,85730 +-110.960121,32.426155,Safeway-Oro Valley #1521 - Oro Valley AZ,12122 N. Rancho Vistoso Blvd.,Oro Valley,AZ,85737 +-110.957475,32.400851,Fry's-Oro Valley AZ #18 - Oro Valley AZ,10661 N. Oracle Rd.,Oro Valley,AZ,85737 +-110.95633,32.401952,1st & Oracle Oro Valley - Oro Valley AZ (W),10785 N. Oracle Road,Oro Valley,AZ,85737 +-111.048473,32.336646,Target Tucson T-854 - Tucson AZ,3901 W. Ina Rd.,Tucson,AZ,85741 +-111.04997,32.337113,"Ina & Thornydale Tucson - Marana AZ (D, W)",3951 W. Ina Road,Marana,AZ,85741 +-111.013338,32.343441,La Cholla & Ina Tucson - Tucson AZ (W),7555 N. La Cholla Blvd.,Tucson,AZ,85741 +-111.069094,32.337552,"Ina & I-10 Tucson - Tucson AZ (D, W)",4905 W. Ina Rd.,Tucson,AZ,85743 +-111.091925,32.355074,"Cortaro & I-10 Tucson - Tucson AZ (D, W)",5970 W. Arizona Pavilions Dr,Tucson,AZ,85743 +-111.04962,32.215732,Starr Pass Marriott Resort & Spa - Tucson AZ,3800 W. Starr Pass Blvd.,Tucson,AZ,85745 +-111.012847,32.251986,Safeway - Tucson #1983 - Tucson AZ,2140 West Grant Rd.,Tucson,AZ,85745 +-111.004556,32.238131,Albertsons-Tucson #972 - Tucson AZ,1350 N. Silverbell Rd.,Tucson,AZ,85745 +-111.010549,32.133921,Safeway - Tucson #267 - Tucson AZ,2040 West Valencia,Tucson,AZ,85746 +-110.800138,32.119023,Safeway-Tucson #1986 - Tucson AZ,9050 E. Valencia Rd.,Tucson,AZ,85747 +-110.786777,32.207554,Target Tucson T-1863 - Tucson AZ,9615 E. Old Spanish Trail,Tucson,AZ,85748 +-110.771515,32.218034,Broadway & Houghton Tucson - Tucson AZ (W),50 South Houghton Road,Tucson,AZ,85748 +-110.768994,32.220784,Safeway - Tucson #2611 - Tucson AZ,10380 E. Broadway,Tucson,AZ,85748 +-110.78903,32.208149,22nd & Harrison Tucson - Tucson AZ (W),9525 E. Old Spanish Trail,Tucson,AZ,85748 +-110.797594,32.257844,Safeway - Tucson #1984 - Tucson AZ,9125 East Tanque Verde,Tucson,AZ,85749 +-110.846495,32.308825,Bashas' Tucson #71 - Tucson AZ,6900 E. Sunrise,Tucson,AZ,85750 +-110.052369,34.246004,Safeway-Show Low #1733 - Show Low AZ,900 W. Deuce of Clubs,Show Low,AZ,85901 +-109.953499,34.14073,Safeway-Lakeside #2069 (Pinetop) - Lakeside AZ,20 W. White Mountain Blvd.,Lakeside,AZ,85929 +-109.287599,34.130487,Safeway - Springerville #2076 - Springerville AZ,203 S. Mountain Ave.,Springerville,AZ,85938 +-111.662387,35.189052,Safeway - Flagstaff #2028 - Flagstaff AZ,1201 S. Plaza Way,Flagstaff,AZ,86001 +-111.66144,35.184341,Target Flagstaff T-935 - Flagstaff AZ,1650 S. Milton Rd.,Flagstaff,AZ,86001 +-111.632564,35.194228,Highway 66 & Switzer Canyon Flagst - Flagstaff AZ (W),1426 E. Route 66,Flagstaff,AZ,86001 +-111.579652,35.228052,Safeway-Flagstaff #270 - Flagstaff AZ,4910 N. US-89,Flagstaff,AZ,86001 +-111.661601,35.18752,"1307 S. Milton Rd. Flagstaff - Flagstaff AZ (D, W)",1307 S. Milton Road,Flagstaff,AZ,86001 +-111.622902,35.218415,Safeway - Flagstaff #1225 - Flagstaff AZ,1500 East Cedar Ave.,Flagstaff,AZ,86004 +-111.655898,35.189464,NAU Student Union Building - Flagstaff AZ,Building 30,Flagstaff,AZ,86011 +-111.45908,36.916456,Safeway - Page #249 - Page AZ,650 ELM STREET,Page,AZ,86040 +-112.181539,35.253421,Safeway - Williams #1639 - Williams AZ,637 W. Route 66,Williams,AZ,86046 +-112.482261,34.561787,Safeway-Prescott #245 - Prescott AZ,1044 Willow Creek Road,Prescott,AZ,86301 +-112.474648,34.530237,Safeway - Prescott #274 - Prescott AZ,450 White Spar Rd.,Prescott,AZ,86301 +-112.4341,34.5505,Prescott,1861 Hwy 69,Prescott,AZ,86301 +-112.469979,34.546125,Montezuma & Sheldon Prescott - Prescott AZ (W),351 N. Montezuma St.,Prescott,AZ,86301 +-112.4874,34.563308,"Iron Springs & Gail Gardner Way - Prescott AZ (D, W)",1220 Gail Gardner Way,Prescott,AZ,86305 +-112.339449,34.588396,Frys-Prescott Valley #63 - Prescott Valley AZ,3100 N. Glassford Hill Rd.,Prescott Valley,AZ,86314 +-112.32927,34.585526,Safeway-Prescott Valley #1055 - Prescott Valley AZ,7720 E. Hwy. 69,Prescott Valley,AZ,86314 +-111.86635,34.565838,Bashas camp Verde #49 - Camp Verde AZ,650 Finney Flat Rd.,Camp Verde,AZ,86322 +-111.88227,34.57512,"I-17 & Hwy. 260 Camp Verde - Camp Verde AZ (D, W)",1620 W. Highway 260,Camp Verde,AZ,86322 +-112.453372,34.761358,Safeway-Chino Valley #1747 - Chino Valley AZ,1031 N. US Hwy. 89,Chino Valley,AZ,86323 +-112.010067,34.728615,Safeway-Cottonwood #2052 - Cottonwood AZ,1635 Cottonwood St.,Cottonwood,AZ,86326 +-111.799907,34.863515,Safeway-Sedona #1207 - Sedona AZ,2300 SR-89A,Sedona,AZ,86336 +-111.762844,34.866783,Hyatt Sedona-Shoppes@Pinon Point - Sedona AZ,101 N. SR 89A unit F28,Sedona,AZ,86336 +-114.035165,35.213903,Safeway - Kingman #2017 - Kingman AZ,3125 Stockton Hill Rd.,Kingman,AZ,86401 +-114.342664,34.475143,Safeway - Lake Havasu City #216 - Lake Havasu City AZ,1650 McCulloch,Lake Havasu City,AZ,86403 +-114.34301,34.472476,Swanson & S. Lake Havasu - Lake Havasu City AZ (W),55 Lake Havasu Avenue South,Lake Havasu City,AZ,86403 +-114.278315,34.458075,Bashas' Lake Havasu #116 - Lake Havasu City AZ,3269 Maricopa Ave. Suite 120,Lake Havasu City,AZ,86406 +-114.037612,35.232503,"Stockton Hill & Kino Kingman - Kingman AZ (D, W)",3765 Stockton Hill Road,Kingman,AZ,86409 +-114.599128,35.016998,Safeway - Fort Mohave #1474 - Fort Mohave AZ,4823 S. Hwy. 95,Fort Mohave,AZ,86426 +-114.589165,35.0504,Target Bullhead City T-2368 - Bullhead City AZ,3699 Hwy. 95,Bullhead City,AZ,86442 +-114.587166,35.121724,Safeway-Bullhead City #248 - Bullhead City AZ,1751 Highway 95,Bullhead City,AZ,86442 +-106.542734,35.317997,"Hwy. 550 & NM 313 Bernalillo - Bernalillo NM (D, W)",170 E. Highway 550,Bernalillo,NM,87004 +-106.191297,35.061665,Smith's-Edgewood #424 - Edgewood NM,2B State Road 344,Edgewood,NM,87015 +-106.757045,34.813648,"NM 6 & Emilio Lopez Los Lunas - Los Lunas NM (D, W)",1830 Main Street NW,Los Lunas,NM,87031 +-106.650372,35.086539,Hyatt Regency Alburquerque - Albuquerque NM,330 Tijeras NW,Albuquerque,NM,87102 +-106.642793,35.090777,"Lomas & Broadway Albuquerque - Albuquerque NM (D, W)",800 Broadway NE,Albuquerque,NM,87102 +-106.67029,35.102604,Rio Grande Blvd. & I-40 - Albuquerque NM (W),901 Rio Grande Blvd.,Albuquerque,NM,87104 +-106.606742,35.079705,3400 Central Avenue - Albuquerque NM (W),3400 Central Avenue S.E.,Albuquerque,NM,87106 +-106.612175,35.133753,"I-25 & Montano - Albuquerque NM (D, W)",1450 Montano NE,Albuquerque,NM,87107 +-106.58315,35.058431,"Gibson & Palomas Albuquerque - Albuquerque NM (D, W)",5301 Gibson Blvd. SE,Albuquerque,NM,87108 +-106.591081,35.165868,Market Place at Journal Center - Albuquerque NM (W),7600 Jefferson NE Street,Albuquerque,NM,87109 +-106.582459,35.131013,"San Pedro & Montgomery - Albuquerque NM (D, W)",5501 Montgomery NE,Albuquerque,NM,87109 +-106.5823,35.172589,Target Albuquerque T-2031 - Albuquerque NM,6100 Paseo Del Norte NE,Albuquerque,NM,87109 +-106.577955,35.17506,Paseo Del Norte & San Pedro Albuqu - Albuquerque NM,8101 San Pedro NE,Albuquerque,NM,87109 +-106.586207,35.151615,"San Mateo & I-25 Albuquerque - Albuquerque NM (D, W)",6828 San Mateo Blvd. NE,Albuquerque,NM,87109 +-106.589029,35.105168,I-40 & San Mateo - Albuquerque NM (W),5010 Cutler Ave. NE,Albuquerque,NM,87110 +-106.586218,35.10036,San Mateo and Haines - Albuquerque NM,2104 San Mateo Blvd. NE,Albuquerque,NM,87110 +-106.568658,35.101949,Louisiana & Indian School - Albuquerque NM (W),2200 Louisiana Blvd. NE,Albuquerque,NM,87110 +-106.550202,35.147201,Wyoming & Academy - New Mexico - Albuquerque NM (W),8050 Academy Rd. NE,Albuquerque,NM,87111 +-106.547703,35.129723,Target Albuquerque T-356 - Albuquerque NM,8710 Montgomery Blvd. NE,Albuquerque,NM,87111 +-106.530924,35.131187,9821 Montgomery Blvd. - Albuquerque NM (W),9821 Montgomery Blvd. NE,Albuquerque,NM,87111 +-106.499156,35.152664,"Academy and Tramway-Albuquerque - Albuquerque NM (D, W)",12251 Academy Rd. NE,Albuquerque,NM,87111 +-106.496888,35.131114,Smiths-Albuquerque #439 - Albuquerque NM,4700 Tramway Blvd. NE,Albuquerque,NM,87111 +-106.534913,35.115229,"Eubank & Candelaria Albuquerque - Albuquerque NM (D, W)",2801 Eubank Blvd. NE,Albuquerque,NM,87112 +-106.527908,35.085854,Target - Albuquerque T-0357 - Albuquerque NM,11120 Lomas Blvd. NE,Albuquerque,NM,87112 +-106.515301,35.099403,"Juan Tabo - Albuquerque NM (D, W)",1624 Juan Tabo NE,Albuquerque,NM,87112 +-106.650552,35.205581,"528 Lowe's Access Rd. - Albuquerque NM (D, W)",3410 NM 528 NW,Albuquerque,NM,87114 +-106.658892,35.206058,Coors Blvd. & Seven Bar Loop - Albuquerque NM (W),10254 Coors Bypass NW,Albuquerque,NM,87114 +-106.712814,35.139057,Coors Road & Montano - Albuquerque NM (W),6421 Riverside Plaza Lane,Albuquerque,NM,87120 +-106.698666,35.112449,Quail & Coors - Albuquerque NM (W),5241 Ouray NW,Albuquerque,NM,87120 +-106.687853,35.176987,Paseo & Golf Course Rd. - Albuquerque NM (W),8201 Golf Course Road,Albuquerque,NM,87120 +-106.557359,35.174692,Wyoming & Paseo del Norte - Albuquerque NM (W),8100 Wyoming Blvd. NE,Albuquerque,NM,87122 +-106.532574,35.071794,"Eubank and Central-Albuquerque - Albuquerque NM (D, W)",111 Eubank S.E.,Albuquerque,NM,87123 +-106.497984,35.068249,Four Hills - Albuquerque - Albuquerque NM (W),13170 Central Ave. SE,Albuquerque,NM,87123 +-106.7382,35.2574,"NM 528 and Rockaway Rio Rancho - Rio Rancho NM (D, W)",115 State Highway 528 NE,Rio Rancho,NM,87124 +-106.700762,35.241515,"Southern & Unser Rio Rancho - Rio Rancho NM (D, W)",1810 Southern Blvd. SE,Rio Rancho,NM,87124 +-106.659666,35.22792,"1761 Rio Rancho Blvd. - Rio Rancho NM (D, W)",1761 Rio Rancho Blvd. SE,Rio Rancho,NM,87124 +-106.647742,35.085027,U of NM - Zimmerman Library - Albuquerque NM,201 La Posada,Albuquerque,NM,87131 +-108.759113,35.536006,Safeway-Gallup #1743 - Gallup NM,980 US-491,Gallup,NM,87301 +-108.158917,36.750514,Safeway-Farmington #2004 - Farmington NM,3540 E. Main St.,Farmington,NM,87401 +-108.148677,36.766896,Target Farmington T-952 - Farmington NM,4900 E. Main St.,Farmington,NM,87402 +-108.155472,36.760884,"Main & Largo Farmington - Farmington NM (D, W)",4337 E. Main Street,Farmington,NM,87402 +-107.993794,36.825268,Safeway-Aztec #1438 - Aztec NM,415 N. Main Ave.,Aztec,NM,87410 +-105.951076,35.693962,Albertsons - Santa Fe #927 - Santa Fe NM,600 N. Guadalupe,Santa Fe,NM,87501 +-105.95081,35.691288,DeVargas Center - Santa Fe - Santa Fe NM (W),191 Paseo de Peralta,Santa Fe,NM,87501 +-105.939928,35.687348,106 W. San Francisco - Santa Fe NM (W),106 W. San Francisco,Santa Fe,NM,87501 +-106.012205,35.64165,Plaza Santa Fe - Santa Fe - Santa Fe NM (W),3526 Zafarano Blvd.,Santa Fe,NM,87505 +-106.006838,35.646067,Cerrillos & Zafarano Santa Fe - Santa Fe NM (D),3899 Cerrillos Road,Santa Fe,NM,87505 +-105.95591,35.629585,Albertsons-Santa Fe #987 - Santa Fe NM,3001 S. St. Francis Drive,Santa Fe,NM,87505 +-106.011741,35.640571,Albersons-Santa Fe #986 - Santa Fe NM,3542 Zafarano Drive,Santa Fe,NM,87507 +-106.301307,35.881467,Central Ave. - Los Alamos - Los Alamos NM (W),1801 Central Avenue,Los Alamos,NM,87544 +-106.756691,32.284044,University & Espina Las Cruces - Las Cruces NM,985 University Avenue,Las Cruces,NM,88001 +-106.785,32.2908,"Valley & Rigsby Las Cruces - Las Cruces NM (D, W)",1500 S. Valley Drive,Las Cruces,NM,88005 +-106.765,32.3472,"Telshore & Commerce Las Cruces - Las Cruces NM (D, W)",2808 N. Telshore Blvd.,Las Cruces,NM,88005 +-106.744,32.3162,"I-25 & Lohman - Las Cruces NM (D, W)",2511 Lohman,Las Cruces,NM,88011 +-104.522697,33.407072,"Main & College Roswell - Roswell NM (D, W)",1309 N. Main St.,Roswell,NM,88201 +-104.522789,33.381412,Albertsons-Roswell #990 - Roswell NM,1110 South Main Street,Roswell,NM,88201 +-105.678082,33.332434,"Sudderth & Navajo Ruidoso - Ruidoso NM (D, W)",2722 Sudderth Dr,Ruidoso,NM,88345 +-114.845856,35.974367,Nevada Hwy. & Buchanan - Boulder City NV (W),1048 Nevada Highway (US 93),Boulder City,NV,89005 +-114.995265,36.036049,Target Henderson South T-2404 - Henderson NV,350 West Lake Mead,Henderson,NV,89009 +-115.102705,35.999406,Smith's-Henderson #346 - Henderson NV,10616 S. Eastern Ave.,Henderson,NV,89012 +-115.048778,36.020416,Albertsons-Henderson #6002 - Henderson NV,201 S. Stephanie St.,Henderson,NV,89012 +-114.9924,36.010952,Vons - Henderson #2615 - Henderson NV,W Horizon Ridge Pkwy. & E. Horizon Dr,Henderson,NV,89012 +-115.063394,36.024337,Valle Verde & Paseo Verde Henderson - Henderson NV (W),75 S. Valle Verde Drive,Henderson,NV,89012 +-115.101956,36.04067,Vons-Henderson #2511 - Henderson NV,2667 E. Windmill Pkwy,Henderson,NV,89014 +-115.040352,36.063445,Sunset Station - Henderson NV,1301 W. Sunset Rd.,Henderson,NV,89014 +-115.036389,36.065782,"Marks & Sunset Henderson - Henderson NV (D, W)",661 Marks Street,Henderson,NV,89014 +-115.084223,36.056315,Green Valley & Warm Springs Hender - Henderson NV (W),2295 N. Green Valley Parkway,Henderson,NV,89014 +-115.040233,36.063824,Galleria at Sunset Henderson - Henderson NV (W),1300 West Sunset Road,Henderson,NV,89014 +-115.042465,36.055789,Warm Springs & Julia Henderson - Henderson NV (W),1331 W. Warm Springs Road,Henderson,NV,89014 +-115.009299,36.031862,Stations @ Fiesta Henderson-Valet E. - Henderson NV,777 West Lake Mead Pkwy,Henderson,NV,89015 +-114.981669,36.041339,Albertsons-Henderson #6019 - Henderson NV,190 N. Boulder Hwy.,Henderson,NV,89015 +-114.964379,36.013656,Albertsons-Henderson #6014 - Henderson NV,575 College Dr,Henderson,NV,89015 +-114.963338,36.013221,College & Horizon Henderson - Henderson NV (W),591 College Dr,Henderson,NV,89015 +-115.386326,35.61279,Primadonna Resorts Travel Plaza - Primm NV,31881 Las Vegas Blvd. S.,Primm,NV,89019 +-114.102381,36.802184,Casablanca Hotel & Casino - Lobby - Mesquite NV,950 W. Mesquite Blvd.,Mesquite,NV,89027 +-114.066644,36.814923,Virgin River Hotel & Casino - Mesquite NV,100 Pioneer Blvd.,Mesquite,NV,89027 +-114.577045,35.144567,Harrahs Laughlin Club Cappucino - Laughlin NV,2900 S. Casino Dr,Laughlin,NV,89029 +-114.572983,35.153881,Golden Nugget - Laughlin - Laughlin NV,2300 S. Casino Dr,Laughlin,NV,89029 +-114.572613,35.163436,Aquarius Casino and resort-Main Lob - Laughlin NV,1900 S. Casino Drive,Laughlin,NV,89029 +-115.116441,36.239704,"Craig & Losee North Las Vegas - North Las Vegas NV (D, W)",2517 E. Craig Rd.,North Las Vegas,NV,89030 +-115.118504,36.194847,"Lake Mead & McDaniel N. LV - North Las Vegas NV (D, W)",2001 E. Lake Mead Blvd.,North Las Vegas,NV,89030 +-115.180874,36.261689,Albertsons-Las Vegas #6005 - Las Vegas NV,3010 W. Ann Rd.,Las Vegas,NV,89031 +-115.15518,36.259983,"Ann & Camino Al Norte - North Las Vegas NV (D, W)",5515 Camino Al Norte,North Las Vegas,NV,89031 +-115.191711,36.197365,Texas Hotel & Casino - North Las Vegas NV,2101 Texas Star Lane,North Las Vegas,NV,89032 +-115.158649,36.217827,"Cheyenne & MLK North Las Vegas - North Las Vegas NV (D, W)",1380 W. Cheyenne,North Las Vegas,NV,89032 +-115.99121,36.21378,Albertsons-Pahrump #6041 - Pahrump NV,200 S. Hwy. 160,Pahrump,NV,89048 +-115.116622,35.941612,"Bicentennial & Sun City Anthem Hend - Henderson NV (D, W)",2810 Bicentennial Parkway,Henderson,NV,89052 +-115.108636,36.011055,"St. Rose & Seven HIlls Henderson - Henderson NV (D, W)",3215 St. Rose Parkway,Henderson,NV,89052 +-115.099691,35.978739,Vons-Henderson #1795 - Henderson NV,2511 Anthem Village Dr,Henderson,NV,89052 +-115.083296,36.004526,Target Henderson SW T-2568 - Henderson NV,695 S. Green Valley Parkway,Henderson,NV,89052 +-115.10435,35.999063,Eastern & Horizon Ridge Henderson - Henderson NV (W),10604 S. Eastern Avenue,Henderson,NV,89052 +-115.086011,36.028222,Pebble Marketplace - Henderson NV (W),1500 N. Green Valley Parkway,Henderson,NV,89074 +-115.046616,36.022882,"Stephanie & Horizon Ridge Henderso - Henderson NV (D, W)",180 S. Stephanie Street,Henderson,NV,89074 +-115.119103,36.274522,Smiths-Las Vegas #334 - Las Vegas NV,2255 E. Centennial Parkway,Las Vegas,NV,89084 +-115.178755,36.287863,"Aliante & I-215 North Las Vegas - North Las Vegas NV (D, W)",7021 Aliante Parkway,North Las Vegas,NV,89084 +-115.133092,36.289276,Target N.L.V. Deer Springs T-2497 - North Las Vegas NV,7090 N. 5th St.,North Las Vegas,NV,89086 +-115.313787,36.116453,Albertsons-Las Vegas #6021 - Las Vegas NV,10140 W. Flamingo Rd.,Las Vegas,NV,89101 +-115.144422,36.170603,Golden Nugget Las Vegas West Lobby - Las Vegas NV,129 East Freemont St.,Las Vegas,NV,89101 +-115.14401,36.16695,4th & Lewis Las Vegas - Las Vegas NV (W),300 South Fourth Street,Las Vegas,NV,89101 +-115.116668,36.173648,"Eastern & Bonanza Las Vegas - Las Vegas NV (D, W)",591 N. Eastern Ave.,Las Vegas,NV,89101 +-115.112488,36.155276,Golden Nugget Casino - Las Vegas NV,129 East Fremont Street,Las Vegas,NV,89101 +-115.206885,36.143766,"Sahara & Decatur - Las Vegas NV (D, W)",2530 S. Decatur Blvd.,Las Vegas,NV,89102 +-115.205732,36.158639,Westland Fair - Las Vegas NV (W),1121 S. DECATUR BLVD,Las Vegas,NV,89102 +-115.175407,36.144113,Palace Stn Hotel & Casino - Las Vegas - Las Vegas NV,2411 West Sahara Ave.,Las Vegas,NV,89102 +-115.189516,36.125949,"Spring Mountain & Valley View - Las Vegas NV (D, W)",3755 Spring Mountain Road,Las Vegas,NV,89102 +-115.242488,36.11608,"Rainbow at Flamingo Las Vegas - Las Vegas NV (D, W)",4010 South Rainbow Blvd.,Las Vegas,NV,89103 +-115.22388,36.098614,Albertsons - Las Vegas #6029 - Las Vegas NV,5975 W. Tropicana Ave.,Las Vegas,NV,89103 +-115.207936,36.100807,"Tropicana & Decatur Blvd. - Las Vegas NV (D, W)",4985 W. Tropicana Avenue,Las Vegas,NV,89103 +-115.185599,36.118932,Rio Hotel & Casino Star Deli - Las Vegas NV,3700 W. Flamingo Rd.,Las Vegas,NV,89103 +-115.185599,36.118932,Rio Java - Las Vegas NV,3700 W. Flamingo Rd.,Las Vegas,NV,89103 +-115.201631,36.115393,Flamingo & Arville Las Vega - Las Vegas NV (W),4469 W. Flamingo Road,Las Vegas,NV,89103 +-115.156902,36.147486,Stratosphere Hotel & Casino Lobby - Las Vegas NV,2000 Las Vegas Blvd.,Las Vegas,NV,89104 +-115.154269,36.144029,Paradise & Sahara Las Vegas - Las Vegas NV (D),2233 Paradise Road,Las Vegas,NV,89104 +-115.046297,36.062426,Stephanie - Henderson (B&N) - Henderson NV (W),567 N. Stephanie Street,Henderson,NV,89104 +-115.173946,36.160397,Rancho Town & Country - Las Vegas NV (W),840 S. Rancho Drive,Las Vegas,NV,89106 +-115.156876,36.163385,Las Vegas Premium Outlets - Las Vegas NV (W),855 S. Grand Central Parkway,Las Vegas,NV,89106 +-115.177633,36.179398,"Rancho & Bonanza Las Vegas - Las Vegas NV (D, W)",751 N. Rancho Drive,Las Vegas,NV,89106 +-115.242279,36.179282,"Rainbow & Silverstream Las Vegas - Las Vegas NV (D, W)",651 N. Rainbow Blvd.,Las Vegas,NV,89107 +-115.241772,36.19936,Lake Mead & Rainbow - Las Vegas NV (W),2192 N. Rainbow Blvd.,Las Vegas,NV,89108 +-115.174746,36.122512,Treasure Island Hotel & Casino - Las Vegas NV,3300 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.174634,36.102099,New York New York - Las Vegas NV,3790 Las Vegas Blvd. So,Las Vegas,NV,89109 +-115.174634,36.102099,New York New York-Upstairs Lobby - Las Vegas NV,3790 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.174162,36.103902,Monte Carlo Food Ct - Las Vegas NV,3770 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.174162,36.103902,Monte Carlo Street of Dreams - Las Vegas NV,3770 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.174034,36.121246,Mirage Hotel and Casino - Las Vegas NV,3400 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.173773,36.091854,Mandalay Bay Hotel - Las Vegas NV,3950 Las Vegas Blvd. So,Las Vegas,NV,89109 +-115.173773,36.091854,Mandalay Bay Hotel - Kona Cafe - Las Vegas NV,3950 Las Vegas Blvd. So,Las Vegas,NV,89109 +-115.17309,36.099256,Excalibur Hotel & Casino - Food Court - Las Vegas NV,3850 Las Vegas Blvd. So,Las Vegas,NV,89109 +-115.17309,36.099256,Excalibur Hotel & Casino - Las Vega - Las Vegas NV,3850 Las Vegas Blvd. So,Las Vegas,NV,89109 +-115.172424,36.101198,MGM Grand - Buffet - Las Vegas NV,3799 Las Vegas Blvd. South,Las Vegas,NV,89109 +-115.172424,36.101198,MGM Grand - Las Vegas NV,3799 Las Vegas Blvd. South,Las Vegas,NV,89109 +-115.172424,36.101198,MGM Restaurant Walk - Las Vegas NV,3799 Las Vegas Blvd. South,Las Vegas,NV,89109 +-115.172368,36.103163,Showcase Mall Food Ct - Las Vegas NV,3785 S. Las Vegas Blvd.,Las Vegas,NV,89109 +-115.172242,36.120006,Harrahs Casino LV 2nd Flr Lobby Int - Las Vegas NV,3475 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.172242,36.120006,Harrahs Casino LV Carnival Corner - Las Vegas NV,3475 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.172242,36.120006,Harrahs Casino LV Club Cappuccino - Las Vegas NV,3475 Las Vegas Blvd. S.,Las Vegas,NV,89109 +-115.16549,36.115204,Westin Las Vegas - Las Vegas NV,160 E. Flamingo Rd.,Las Vegas,NV,89109 +-115.154455,36.109768,Hard Rock Hotel - Lobby - Las Vegas NV,4455 Paradise Rd.,Las Vegas,NV,89109 +-115.152683,36.130059,Las Vegas Conv Ctr. - Food Court - Las Vegas NV,3150 Paradise Rd.,Las Vegas,NV,89109 +-115.138597,36.1212,Vons-Las Vegas #1963 - Las Vegas NV,1155 E. Twain Ave.,Las Vegas,NV,89109 +-115.079401,36.22601,Planet Hollywood Casino Floor Level - Las Vegas NV,3667 S. Las Vegas,Las Vegas,NV,89109 +-115.074645,36.228773,The Signature @ MGM - Las Vegas NV,3799 Las Vegas blvd,Las Vegas,NV,89109 +-115.136957,36.142097,Sahara & Maryland Pkwy. Las Vegas - Las Vegas NV (W),2595 S. Maryland Parkway,Las Vegas,NV,89109 +-115.096127,36.215963,Fashion Show Mall (Exterior) - Las Vegas NV (W),3200 Las Vegas Blvd.,Las Vegas,NV,89109 +-115.154929,36.116197,Paradise & Flamingo Las Vegas - Las Vegas NV (W),395 Hughes Center Drive,Las Vegas,NV,89109 +-115.281494,36.053488,Vons-Las Vegas #2614 - Las Vegas NV,7405 S. Durango Dr,Las Vegas,NV,89113 +-115.314561,36.128434,Hualapia & Desert Inn Las Vegas - Las Vegas NV (W),3370 S. Hualapai Way,Las Vegas,NV,89117 +-115.31235,36.157368,Smith's-Las Vegas #347 - Las Vegas NV,9851 W. Charleston,Las Vegas,NV,89117 +-115.296978,36.143942,Sahara & Ft. Apache - Las Vegas NV (W),9151 West Sahara,Las Vegas,NV,89117 +-115.287455,36.159538,"Charleston & Rampart Las Vegas - Las Vegas NV (D, W)",8780 West Charleston Blvd.,Las Vegas,NV,89117 +-115.277719,36.131225,Vons-Las Vegas #1970 - Las Vegas NV,8540 W. Desert Inn Rd.,Las Vegas,NV,89117 +-115.223798,36.062034,Jones & Badura Las Vegas - Las Vegas NV (D),6080 W. Badura Avenue,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Arrival Baggage Claim - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS McCarran B Esplanade - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Term 1 Gate A - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Term 1 Gate B-4 - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Term 3 Conc D Gates 1-13 - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Term 3 Conc D Gates 31-43 - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Term 3 Concourse D Rotunda - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Term C - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.144773,36.084971,LAS Terminal D - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89118 +-115.243024,36.072501,"Rainbow & Sunset Las Vegas - Las Vegas NV (D, W)",6365 S. Rainbow Blvd.,Las Vegas,NV,89118 +-115.242285,36.056699,"Rainbow & Warm Springs Las Vegas - Las Vegas NV (D, W)",7260 S. Rainbow Suite 100,Las Vegas,NV,89118 +-115.173049,36.093291,Luxor Hotel and Casino - Las Vegas - Las Vegas NV,3960 S. Las Vegas Blvd.,Las Vegas,NV,89119 +-115.149193,36.057543,McCarran Center - Las Vegas NV (W),600 E. Warm Springs,Las Vegas,NV,89119 +-115.144773,36.084971,LAS D 52 - Las Vegas NV (A),5757 Paradise Road,Las Vegas,NV,89119 +-115.144773,36.084971,LAS McCarran Terminal A Rotunda - Las Vegas NV (A),5757 Paradise Rd.,Las Vegas,NV,89119 +-115.139052,36.116504,Target Las Vegas Flamingo T-265 - Las Vegas NV,4001 S. Maryland Pkwy,Las Vegas,NV,89119 +-115.119365,36.085144,Eastern & Russell - Las Vegas NV (D),5715 S. Eastern Ave.,Las Vegas,NV,89119 +-115.072002,36.229804,Luxor Hotel and Casino - Photo Shop - Las Vegas NV,3900 Las Vegas Blvd.,Las Vegas,NV,89119 +-115.072002,36.229804,Luxor Hotel and Casino Intl Grounds - Las Vegas NV,3900 Las Vegas Blvd.,Las Vegas,NV,89119 +-115.136572,36.102963,4780 S. Maryland Pkwy. Las Vegas - Las Vegas NV (D),4780 S. Maryland Parkway,Las Vegas,NV,89119 +-115.171716,36.127754,Fashion Show Mall - Las Vegas NV (W),3200 Las Vegas Blvd. S.,Las Vegas,NV,89120 +-115.10258,36.084715,Pecos & Russell Las Vegas - Las Vegas NV (W),5715 S. Pecos Rd.,Las Vegas,NV,89120 +-115.11815,36.115215,"Flamingo & Eastern Las Vegas - Las Vegas NV (D, W)",2430 E. Flamingo Road,Las Vegas,NV,89121 +-115.112531,36.155312,Boulder Station Hotel and Casino-Lo - Las Vegas NV,Boulder Hwy. & US-95,Las Vegas,NV,89121 +-115.118117,36.130173,"Desert Inn & Eastern Las Vegas - Las Vegas NV (D, W)",2412 E. Desert Inn Road,Las Vegas,NV,89121 +-115.091535,36.11486,"Sandhill & Flamingo Las Vegas - Las Vegas NV (D, W)",3805 E. Flamingo Road,Las Vegas,NV,89121 +-115.066027,36.14305,"Sahara & Nellis Las Vegas - Las Vegas NV (D, W)",2585 S. Nellis Blvd.,Las Vegas,NV,89121 +-115.050352,36.099429,"Tropicana & Boulder Hwy. Las Vegas - Las Vegas NV (D, W)",5566 Boulder Highway,Las Vegas,NV,89122 +-115.172238,36.041245,"Las Vegas & Windmill Las Vegas - Las Vegas NV (D, W)",8164 S. Las Vegas Blvd.,Las Vegas,NV,89123 +-115.15264,36.041274,Vons-Las Vegas #2390 - Las Vegas NV,475 E. Windmill Lane,Las Vegas,NV,89123 +-115.136846,36.009975,Albertsons-Las Vegas #6006 - Las Vegas NV,9725 S. Maryland,Las Vegas,NV,89123 +-115.136189,36.041572,"Maryland & Windmill Las Vegas - Las Vegas NV (D, W)",8150 S. Maryland Pkwy.,Las Vegas,NV,89123 +-115.119122,36.026247,"Eastern & Pebble Las Vegas - Las Vegas NV (D, W)",8975 S. Eastern Avenue,Las Vegas,NV,89123 +-115.13618,36.011941,Maryland Pkwy. & Silverado Ranch La - Las Vegas NV (W),9770 S. Maryland Parkway,Las Vegas,NV,89123 +-115.283281,36.198781,"Rampart & Lake Mead Las Vegas - Las Vegas NV (D, W)",2120 N. Rampart,Las Vegas,NV,89128 +-115.259945,36.189352,Albertsons-Las Vegas #6011 - Las Vegas NV,1650 N. Buffalo Dr,Las Vegas,NV,89128 +-115.25983,36.196207,Vons-Las Vegas #2392 - Las Vegas NV,7530 W. Lake Mead Blvd.,Las Vegas,NV,89128 +-115.258559,36.196021,"Summerhill Plaza - Las Vegas NV (D, W)",7541 West Lake Mead Boulevard,Las Vegas,NV,89128 +-115.323209,36.218447,"Cheyenne & Shady Timber Las Vegas - Las Vegas NV (D, W)",10430 West Cheyenne Ave.,Las Vegas,NV,89129 +-115.277845,36.21914,Albertsons-Las Vegas #6012 - Las Vegas NV,8350 W. Cheyenne Ave.,Las Vegas,NV,89129 +-115.262221,36.219244,Cheyenne & Buffalo Las Vegas - Las Vegas NV (W),7660 West Cheyenne Avenue,Las Vegas,NV,89129 +-115.250245,36.24039,Albertsons-Las Vegas #6018 - Las Vegas NV,7151 W. Craig Rd.,Las Vegas,NV,89129 +-115.250223,36.238723,Craig & Tenaya Las Vegas - Las Vegas NV (W),7101 West Craig Road,Las Vegas,NV,89129 +-115.242108,36.249876,Santa Fe Station Hotel and Casino - Las Vegas NV,4949 N. Rancho Rd.,Las Vegas,NV,89130 +-115.208552,36.247766,Vons - Las Vegas #2393 - Las Vegas NV,4854 W. Lone Mountain,Las Vegas,NV,89130 +-115.208449,36.238853,Albertsons-Las Vegas #6061 - Las Vegas NV,4850 West Craig Road,Las Vegas,NV,89130 +-115.206625,36.276968,Target Las Vegas N. Decatur T-2569 - Las Vegas NV,6385 North Decatur,Las Vegas,NV,89130 +-115.226692,36.239199,"Craig & Jones Las Vegas - Las Vegas NV (D, W)",6020 W. Craig Rd.,Las Vegas,NV,89130 +-115.252982,36.274164,"Tenaya & Azure Las Vegas - Las Vegas NV (D, W)",7220 West Azure Drive,Las Vegas,NV,89130 +-115.280388,36.299847,"Durango & Farm Las Vegas - Las Vegas NV (D, W)",8440 Farm Road,Las Vegas,NV,89131 +-115.280331,36.300577,Albertsons-Las Vegas #6009 - Las Vegas NV,8410 Farm Road,Las Vegas,NV,89131 +-115.20623,36.279297,I-215 & Decatur North Las Vegas - North Las Vegas NV (W),6572 North Decatur BLVD.,North Las Vegas,NV,89131 +-115.305889,36.193696,Vons - Las Vegas #2395 - Las Vegas NV,1940 Village Center Cir,Las Vegas,NV,89134 +-115.30473,36.191561,Trails Village Center - Summerlin - Las Vegas NV (W),1990 Village Center Circle,Las Vegas,NV,89134 +-115.350437,36.161127,Albertsons - Las Vegas #6060 - Las Vegas NV,11720 W. CHARLESTON BLVD,Las Vegas,NV,89135 +-115.33358,36.158854,Red Rock Station - Food Court - Las Vegas NV,10973 W. Charleston Boulevard,Las Vegas,NV,89135 +-115.33358,36.158854,Red Rock Station - Lobby - Las Vegas NV,10973 W. Charleston Blvd.,Las Vegas,NV,89135 +-115.319624,36.160399,Albertsons-Las Vegas #6016 - Las Vegas NV,10250 West Charleston Blvd.,Las Vegas,NV,89135 +-115.319455,36.159532,"Charleston & Town Center Dr. Las V - Las Vegas NV (D, W)",10260 W. Charleston Blvd.,Las Vegas,NV,89135 +-115.241824,36.054677,Albertsons-Las Vegas #6076 - Las Vegas NV,7350 S. Rainbow Blvd.,Las Vegas,NV,89139 +-115.216095,36.0412,Smith's-Las Vegas #311 - Las Vegas NV,North-East corner of South Rainbow Blvd.,Las Vegas,NV,89139 +-115.195312,36.038342,Target Las Vegas/Blue Dimond T-2164 - Las Vegas NV,4100 Blue Diamond Rd.,Las Vegas,NV,89139 +-115.184574,36.041619,Silverton Casino & Hotel off Lobby - Las Vegas NV,3333 Blue Diamond Road,Las Vegas,NV,89139 +-115.207436,35.998142,"Cactus & Southern Highland LV - Las Vegas NV (D, W)",10520 Southern Highlands Pkwy,Las Vegas,NV,89141 +-115.044956,36.158213,Albertsons-Las Vegas #6091 - Las Vegas NV,5881 E. Charleston Blvd.,Las Vegas,NV,89142 +-115.288661,36.163067,Vons-Las Vegas #1688 - Las Vegas NV,820 S. Rampart Blvd.,Las Vegas,NV,89145 +-115.288477,36.174437,JW Marriott - Las Vegas NV,221 N. Rampart Blvd.,Las Vegas,NV,89145 +-115.245509,36.160296,Albertsons-Las Vegas #6046 - Las Vegas NV,1001 S. Rainbow Blvd.,Las Vegas,NV,89145 +-115.243154,36.151347,"Rainbow & Oakey Las Vegas - Las Vegas NV (D, W)",1772 S. Rainbow Blvd.,Las Vegas,NV,89146 +-115.280228,36.115846,Albertsons-Las Vegas #6004 - Las Vegas NV,4055 South Durango Drive,Las Vegas,NV,89147 +-115.304638,36.114518,"Flamingo & I-215 Las Vegas - Las Vegas NV (D, W)",9701 W. Flamingo Road,Las Vegas,NV,89147 +-115.298321,36.076851,"Ft. Apache & Patrick Las Vegas - Las Vegas NV (D, W)",6105 S. Ft. Apache Rd.,Las Vegas,NV,89148 +-115.295248,36.098868,"Tropicana & Ft. Apache - Las Vegas NV (D, W)",4916 S. Ft. Apache Road,Las Vegas,NV,89148 +-115.269156,36.27467,"Centennial & I-95 Las Vegas - Las Vegas NV (D, W)",6381 Centennial Center Blvd.,Las Vegas,NV,89149 +-115.287901,36.290865,"Durango & Elkhorn Las Vegas - Las Vegas NV (D, W)",7170 N. Durango Drive,Las Vegas,NV,89149 +-115.138907,36.106728,UNLV - Student Union - Las Vegas NV,4505 S. Maryland Pkwy,Las Vegas,NV,89154 +-115.045845,36.236862,Nellis AFB - Nellis AFB NV,5691 Rickenbacker Rd.,Nellis AFB,NV,89191 +-119.58276,39.26197,"Pine Cone Rd. & Hwy. 50 - Dayton - Dayton NV (D, W)",12 Pine Cone Rd.,Dayton,NV,89403 +-118.787066,39.477142,Safeway - Fallon #1517 - Fallon NV,890 West Williams,Fallon,NV,89406 +-119.2228,39.6112,"Chisholm Crossing - Fernley - Fernley NV (D, W)",1201 Penny Lane,Fernley,NV,89408 +-119.739377,38.935994,"Hwy. 395 & Waterloo - Gardnerville - Gardnerville NV (D, W)",1327 US Highway 395 North,Gardnerville,NV,89410 +-119.779681,38.961232,"Hwy. 395 & Hwy. 88 - Minden - Minden NV (D, W)",1734 US Hwy. 395 N.,Minden,NV,89423 +-119.756745,39.532884,John Ascuaga's Nuggett - Sparks NV,1100 Nuggettt Ave.,Sparks,NV,89431 +-119.752981,39.556339,"McCarren & Pyramid - Sparks - Sparks NV (D, W)",2835 N. McCarren Blvd. #103,Sparks,NV,89431 +-119.752831,39.535859,"Pyramid & C - Sparks - Sparks NV (D, W)",300 Pyramid Way,Sparks,NV,89431 +-119.741558,39.520761,"Stanford Crossing - Sparks - Sparks NV (D, W)",1560 S. Stanford Way,Sparks,NV,89431 +-119.718743,39.533616,Target Sparks South T-2472 - Sparks NV,1550 E. Lincoln Way,Sparks,NV,89434 +-119.715471,39.541315,"Sparks & Prater - Sparks - Sparks NV (D, W)",745 Sparks Blvd.,Sparks,NV,89434 +-119.73727,39.585144,Pyramid & Los Altos - Sparks - Sparks NV (D),282 Los Altos Parkway,Sparks,NV,89436 +-119.711,39.5775,"Pyramid & Disc - Sparks - Sparks NV (D, W)",171 Disc Drive,Sparks,NV,89436 +-119.705518,39.554356,Safeway-Sparks #2656 - Sparks NV,2858 Vista Blvd.,Sparks,NV,89436 +-119.955,39.0022,Safeway - Zephyr Cove #1537 - Zephyr Cove NV,212 Elk Point Dr,Zephyr Cove,NV,89448 +-119.941972,38.962837,Horizon Casino Lake Tahoe - Lobby - Stateline NV,50 Highway 50,Stateline,NV,89449 +-119.941737,38.959708,Montbleu Resort & Casino-Lake Tahoe - Lake Tahoe NV,55 Hwy. 50,Lake Tahoe,NV,89449 +-119.9388,38.9625,Harrahs Lake Tahoe Club Cappucino - Stateline NV,15 US-50,Stateline,NV,89449 +-119.953164,39.249677,Tahoe & Village - Incline Village - Incline Village NV (W),899 Tahoe Boulevard,Incline Village,NV,89451 +-119.812129,39.527612,Harrahs Reno - Reno NV,219 N. Center Street,Reno,NV,89501 +-119.810295,39.520381,South Virginia & California - Reno - Reno NV (W),538 S. Virginia St.,Reno,NV,89501 +-119.795822,39.524617,Renown Business - Reno NV,75 Pringle Way,Reno,NV,89502 +-119.791427,39.482447,Kietzke & S. Virginia - Reno - Reno NV (W),4809 Kietzke Lane,Reno,NV,89502 +-119.779911,39.475071,Meadowood Mall - Reno NV (W),5000 #1 Meadowood Mall Circle,Reno,NV,89502 +-119.8634,39.5284,North McCarran - Reno NV (W),10190 N. McCarran Boulevard,Reno,NV,89503 +-119.831133,39.530858,"7th & Keystone - Reno - Reno NV (D, W)",690 Keystone Avenue,Reno,NV,89503 +-119.819875,39.530223,5th & Nevada - Reno - Reno NV (W),400 West Fifth Street,Reno,NV,89503 +-119.84882,39.61395,"Buck & Lemmon - Reno - Reno NV (D, W)",290 Lemon Drive,Reno,NV,89506 +-119.852873,39.484941,Caughlin & McCarran - Reno - Reno NV (W),4798 Caughlin Pkwy,Reno,NV,89509 +-119.817291,39.505472,Plumb & Arlington - Reno - Reno NV (W),550 West Plumb Lane,Reno,NV,89509 +-119.806468,39.476616,"McCarran & Lakeside - Reno - Reno NV (D, W)",6890 South McCarran Boulevard,Reno,NV,89509 +-119.784239,39.46665,S. Virginia & Sierra Center Pkwy. - - Reno NV (W),6637 S. Virginia St.,Reno,NV,89511 +-119.767371,39.395335,"Galena Junction - Reno NV (D, W)",18250 Wedge Parkway,Reno,NV,89511 +-119.764731,39.47437,Longley & McCarran - Reno - Reno NV (D),5280 Longley Lane,Reno,NV,89511 +-119.755054,39.43947,S. Meadows & Double R - Reno - Reno NV (W),720 South Meadows Parkway,Reno,NV,89511 +-119.754504,39.419825,"Damonte Ranch & Virginia - Reno - Reno NV (D, W)",191 Damonte Ranch Parkway,Reno,NV,89511 +-119.750528,39.409413,The Summit at Sierra - Reno - Reno NV (W),13981 S. Virginia Street,Reno,NV,89511 +-119.782024,39.556076,"McCarran & Hwy. 395 - Reno - Reno NV (D, W)",2905 Northtowne Lane,Reno,NV,89512 +-119.73816,39.42315,"Damonte Ranch Town Center - Reno - Reno NV (D, W)",1193 Steamboat Pkwy. Ste. 840,Reno,NV,89521 +-119.882079,39.528497,Robb & Mae Anne - Reno - Reno NV (W),1610 Robb Drive,Reno,NV,89523 +-119.864554,39.533545,Safeway - Reno #1210 - Reno NV,5150 Mae Anne Ave.,Reno,NV,89523 +-119.818268,39.546925,University of Nevada Reno Student U - Reno NV,1664 N. Virginia St.,Reno,NV,89557 +-119.780974,39.523227,Grand Sierra Resort - Reno NV,2500 East Second Avenue,Reno,NV,89595 +-119.76809,39.145532,"Rhodes Road & Hwy. 395 - Carson City - Carson City NV (D, W)",2320 S. Carson Street,Carson City,NV,89701 +-119.758058,39.189428,"North Carson Crossing - Carson City - Carson City NV (D, W)",3325 Retail Dr,Carson City,NV,89701 +-119.752722,39.171566,Williams & State - Carson City - Carson City NV (D),1410 William St.,Carson City,NV,89701 +-119.773128,39.187572,"North Carson Street - Carson City NV (D, W)",3228 N. Carson,Carson City,NV,89703 +-119.776743,39.110009,"Hwy. 395 & Topsy - Carson City - Carson City NV (D, W)",921 Topsy Lane,Carson City,NV,89705 +-118.301575,33.982616,"Gage & Compton Huntington Park - Los Angeles CA (D, W)",1437 E. Gage Avenue,Los Angeles,CA,90001 +-118.323621,34.074873,Hancock Park - Los Angeles CA (W),206 North Larchmont,Los Angeles,CA,90004 +-118.287254,34.011825,Hoover & Jefferson (UCO) - Los Angeles CA (W),3303 S. Hoover Street,Los Angeles,CA,90007 +-118.306212,34.060685,Wilshire & Serrano Los Angeles - Los Angeles CA (W),3680 Wilshire Blvd.,Los Angeles,CA,90010 +-118.245366,34.055608,217 N. Hill Street - Los Angeles CA (W),217 North Hill Street,Los Angeles,CA,90012 +-118.242931,34.050357,Kyoto Grand - Los Angeles CA (W),120 S. Los Angeles Street,Los Angeles,CA,90012 +-118.239203,34.048634,2nd & Alameda Los Angeles - Los Angeles CA (W),138 S. Central Avenue,Los Angeles,CA,90012 +-118.253703,34.050046,The Gas Co. Tower - Los Angeles CA,555 West 5th Street,Los Angeles,CA,90013 +-118.254696,34.04839,6th & Grand Los Angeles - Los Angeles CA (W),523 West 6th Street,Los Angeles,CA,90014 +-118.268133,34.040605,LACC-South Hall - Los Angeles CA,1201 S. Figueroa St.,Los Angeles,CA,90015 +-118.267001,34.041864,LACC-West Hall - Los Angeles CA,1201 S. Figueroa Rd.,Los Angeles,CA,90015 +-118.263925,34.044946,Olympic & Figueroa- LA Live - Los Angeles CA (W),800 W. Olympic Blvd.,Los Angeles,CA,90015 +-118.262389,34.041104,11th & Grand Los Angeles - Los Angeles CA (W),1111 South Grand Avenue,Los Angeles,CA,90015 +-118.25344,34.039677,9th & Santee Los Angeles - Los Angeles CA (W),300 E. 9th Street,Los Angeles,CA,90015 +-118.373485,34.022801,Target Los Angeles T-1306 - Los Angeles CA,3535 S. La Cienega Blvd.,Los Angeles,CA,90016 +-118.335066,34.019302,Crenshaw & Coliseum Los Angeles (U - Los Angeles CA (W),3722 Crenshaw Blvd.,Los Angeles,CA,90016 +-118.371582,34.026927,La Cienega & Jefferson Los Angeles - Los Angeles CA,3344 S. La Cienega Blvd.,Los Angeles,CA,90016 +-118.260891,34.049602,7th & Figueroa Los Angeles (RAD) - Los Angeles CA (W),735 S. Figueroa Street,Los Angeles,CA,90017 +-118.27016,34.055406,Wilshire & Union Los Angeles (UCO) - Los Angeles CA (W),1601 Wilshire Blvd.,Los Angeles,CA,90017 +-118.263207,34.052246,Wilshire & Bixel Los Angeles - Los Angeles CA (W),1090 Wilshire Blvd.,Los Angeles,CA,90017 +-118.330415,34.039872,"Crenshaw & Washington Los Angeles - Los Angeles CA (D, W)",4177 W. Washington Blvd.,Los Angeles,CA,90018 +-118.344187,34.051756,LaBrea&SanVicente-LosAngeles (UCO) - Los Angeles CA (W),1258 South La Brea Ave.,Los Angeles,CA,90019 +-118.338681,34.048559,Pico & San Vicente (UCO) - Los Angeles CA (W),4700 West Pico Blvd.,Los Angeles,CA,90019 +-118.290761,34.069065,Vons-Los Angeles #2261 - Los Angeles CA,3461 W. 3rd St.,Los Angeles,CA,90020 +-118.447138,34.062481,Broxton & Weyburn - Westwood - Los Angeles CA (W),10955 West Weyburn,Los Angeles,CA,90024 +-118.444714,34.059593,Westwood - Los Angeles CA (W),1161 Westwood Blvd.,Los Angeles,CA,90024 +-118.46326,34.040247,Santa Monica at Bundy - West Los Angeles CA (W),12100 Santa Monica Blvd.,West Los Angeles,CA,90025 +-118.445344,34.047388,Santa Monica & Pontius - West Los Angeles CA (W),11155 Santa Monica Blvd.,West Los Angeles,CA,90025 +-118.435435,34.048205,Westwood & Missouri - Westwood - Westwood CA (W),1898 Westwood Blvd.,Westwood,CA,90025 +-118.264719,34.077008,Sunset & Mohawk (Lucy's) - Los Angeles CA (W),2134 Sunset Blvd.,Los Angeles,CA,90026 +-118.388524,33.904337,Rosecrans & Sepulveda El Segundo - El Segundo CA (W),2005 Park Place,El Segundo,CA,90026 +-118.309016,34.101891,Hollywood & Western Hollywood - Los Angeles CA (W),5453 Hollywood Boulevard,Los Angeles,CA,90027 +-118.291374,34.102004,Vermont & Prospect Los Angeles - Los Angeles CA (W),1700 N. Vermont Avenue,Los Angeles,CA,90027 +-118.343193,34.097998,Sunset & La Brea - Hollywood - Los Angeles CA (W),7055 Sunset Blvd.,Los Angeles,CA,90028 +-118.323012,34.097563,Sunset & Gower - Hollywood - Los Angeles CA (W),6102 W. Sunset Blvd.,Los Angeles,CA,90028 +-118.287936,34.098156,Vons - Los Angeles #2665 - Los Angeles CA,4520 Sunset Blvd.,Los Angeles,CA,90028 +-118.337318,34.101568,Hollywood & McCadden Hollywood - Hollywood CA (W),6745 Hollywood Blvd.,Hollywood,CA,90028 +-118.338976,34.101731,Hollywood & Highland Hollywood - Hollywood CA (W),6801 Hollywood Blvd.,Hollywood,CA,90028 +-118.310724,34.098112,Sunset Blvd. & St. Andrews Place Ho - Hollywood CA (W),5545 W. Sunset Blvd.,Hollywood,CA,90028 +-118.170705,34.063557,California State University Cafe LA - Los Angeles CA,5151 State University Drive,Los Angeles,CA,90032 +-118.427618,34.026115,Vons-Los Angeles #2077 - Los Angeles CA,3118 S. Sepulveda Blvd.,Los Angeles,CA,90034 +-118.402392,34.030424,National & Castle Heights Los Ange - Los Angeles CA (W),9824 National Blvd.,Los Angeles,CA,90034 +-118.393236,34.027012,Venice Crossroads - Los Angeles CA (W),8985 Venice Blvd.,Los Angeles,CA,90035 +-118.363475,34.058101,Fairfax & Olympic - Los Angeles - Los Angeles CA (W),6066 West Olympic Boulevard,Los Angeles,CA,90036 +-118.360396,34.071378,Farmers Market - Los Angeles CA (W),6333 W. 3rd Street,Los Angeles,CA,90036 +-118.339093,34.06182,Wilshire & Highland - Los Angeles CA (W),5020 Wilshire Blvd.,Los Angeles,CA,90036 +-118.345414,34.062638,Wilshire & Detroit Los Angeles - Los Angeles CA (W),5353 Wilshire Blvd.,Los Angeles,CA,90036 +-118.344824,34.075734,7122 Beverly Blvd. - Los Angeles CA (W),7122 Beverly Boulevard,Los Angeles,CA,90038 +-118.327173,34.084219,Vons - Los Angeles #2229 - Los Angeles CA,727 N. Vine St.,Los Angeles,CA,90038 +-118.263571,34.126849,Los Feliz & Seneca-Atwater - Los Angeles CA (W),2919 Los Feliz Blvd.,Los Angeles,CA,90039 +-118.262973,34.11637,Glendale & Glenfeliz Los Angeles - Los Angeles CA,3111 Glendale Blvd.,Los Angeles,CA,90039 +-118.258824,34.104,Glendale & Fletcher - Los Angeles CA (W),2560 Glendale Boulevard,Los Angeles,CA,90039 +-118.149906,34.007416,Citadel Outlets City of Commerce - City of Commerce CA (W),100 Citadel Drive Suite 200,City Of Commerce,CA,90040 +-118.124504,33.975469,"Slauson & I-5 Commerce (UCO) - Los Angeles CA (D, W)",7724 Telegraph Road,Los Angeles,CA,90040 +-118.167693,34.00307,"Atlantic & Washington (UCO) - City of Commerce CA (D, W)",5201 E. Washington Blvd.,City Of Commerce,CA,90040 +-118.189219,34.136144,Vons- Los Angeles #2655 - Los Angeles CA,7311 N. Figueroa St.,Los Angeles,CA,90041 +-118.214911,34.139232,Colorado & Eagle Rock Eagle Rock - Los Angeles CA (W),2218 W. Colorado Blvd.,Los Angeles,CA,90041 +-118.219576,34.123432,Eagle Rock & York Eagle Rock - Los Angeles CA (D),4430 York Blvd.,Los Angeles,CA,90041 +-118.408004,33.943789,LAX Terminal 4 2nd - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 1 North End - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal - 2 - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 1 Food Court - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 2 Lower Level - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal- 3 - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 4 - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 6 Gate 60 - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 7 - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 8 Boudins - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.408004,33.943789,LAX Terminal 8 Gate 80 Food Court - Los Angeles CA (A),201 World Way,Los Angeles,CA,90045 +-118.396721,33.956756,Westchester - Los Angeles CA (W),8817 South Sepulveda Blvd.,Los Angeles,CA,90045 +-118.39078,33.946531,Sheraton Gateway Hotel - Los Angeles CA,6101 W. Century Blvd.,Los Angeles,CA,90045 +-118.384432,33.946565,Marriott Los Angeles Int'lAirport - Los Angeles CA,5855 W. Century Blvd.,Los Angeles,CA,90045 +-118.370126,33.97732,Ladera Center (UCO) - Los Angeles CA (W),5301 Centinella Ave.,Los Angeles,CA,90045 +-118.391105,33.97749,Howard Hughes Ent. Center - Los Angeles CA (W),6081 Center Drive,Los Angeles,CA,90045 +-118.396093,33.95608,Sepulveda & 89th Westchester - Westchester CA (W),8844 S. Sepulveda Blvd.,Westchester,CA,90045 +-118.362256,34.091208,Santa Monica & Fairfax Los Angeles - W. Hollywood CA (W),7901 Santa Monica Blvd.,W. Hollywood,CA,90046 +-118.356174,34.083436,Melrose - Los Angeles CA (W),7624 Melrose Avenue,Los Angeles,CA,90046 +-118.34426,34.090585,Santa Monica & La Brea West Hollyw - Los Angeles CA (W),7100 Santa Monica Blvd.,Los Angeles,CA,90046 +-118.36445,34.097992,Sunset & Crescent Heights Hollywoo - Los Angeles CA,8000 Sunset Blvd.,Los Angeles,CA,90046 +-118.310253,33.989111,Western & Slauson (UCO) - Reloc. - Los Angeles CA (D),1850 W. Slauson Avenue,Los Angeles,CA,90047 +-118.380135,34.076592,Cedars-Sinai Medical Center - Los Angeles CA,8700 Beverly Blvd.,Los Angeles,CA,90048 +-118.377,34.075,The Beverly Center - Los Angeles CA,8500 Beverly Center,Los Angeles,CA,90048 +-118.383691,34.076845,Beverly & Robertson W. Hollywood - West Hollywood CA (W),164 N. Robertson,West Hollywood,CA,90048 +-118.490378,34.048579,San Vicente & 26th - Brentwood CA (W),13050 San Vicente Blvd.,Brentwood,CA,90049 +-118.469463,34.064711,Brentwood Village Court - Los Angeles CA (W),11700 Barrington Court,Los Angeles,CA,90049 +-118.466036,34.053444,Brentwood - Los Angeles CA (W),11707 San Vicente Blvd.,Los Angeles,CA,90049 +-118.18426,34.033673,"3rd & Gage Los Angeles - Los Angeles CA (D, W)",3853 E. 3rd Street,Los Angeles,CA,90063 +-118.440916,34.038368,One Westside Place - L.A. - Los Angeles CA (W),11280 Olympic Blvd.,Los Angeles,CA,90064 +-118.430085,34.039688,West Pico Boulevard - Los Angeles CA (W),10911 W. Pico Boulevard,Los Angeles,CA,90064 +-118.383533,34.054775,Pico & Robertson - Los Angeles - Los Angeles CA (W),8783 West Pico Blvd.,Los Angeles,CA,90064 +-118.431586,34.04319,Olympic & Westwood - Los Angeles - Los Angeles CA (W),2215 Westwood Blvd.,Los Angeles,CA,90064 +-118.439293,34.022652,National & Barrington - Los Angeles CA (W),11705 National Blvd.,Los Angeles,CA,90064 +-118.416567,34.058739,1999 Ave. of the Stars - Century City CA (W),1999 Avenue of the Stars,Century City,CA,90067 +-118.415876,34.057571,Hyatt Regency Century Plaza - Century City CA,2025 Avenue of the Stars,Century City,CA,90067 +-118.414558,34.061079,1875 Century Park E. - Century City CA (W),1875 Century Park East,Century City,CA,90067 +-118.413155,34.058908,2049 Century Park E. - Century City CA (W),2049 Century Park East,Century City,CA,90067 +-118.348486,34.129366,Cahuenga & Barham Los Angeles - Los Angeles CA (W),3242 Cahuenga Blvd.,Los Angeles,CA,90068 +-118.33701,34.105512,1900 Highland Ave. - Hollywood - Hollywood CA (W),1900 N. Highland,Hollywood,CA,90068 +-118.38645,34.083965,Von's-West Hollywood #2739 - West Hollywood CA,8969 Santa Monica Blvd.,West Hollywood,CA,90069 +-118.385559,34.084252,West Hollywood II - West Hollywood CA (W),8949 Santa Monica Blvd.,West Hollywood,CA,90069 +-118.376959,34.089228,West Hollywood - #633 - West Hollywood CA (W),8595 Santa Monica Blvd.,West Hollywood,CA,90069 +-118.371875,34.095731,Sunset Strip - West Hollywood CA (W),8363 N.E. Sunset Blvd.,West Hollywood,CA,90069 +-118.259825,34.049439,Wilshire Center - D.T. L.A. - Los Angeles CA (W),695 S. Figueroa St.,Los Angeles,CA,90071 +-118.257136,34.052659,445 S. Figueroa Street Union Bank - Los Angeles CA (W),445 S. Figueroa Street,Los Angeles,CA,90071 +-118.256372,34.05145,Arco Plaza (Downstairs) -Downtown L - Los Angeles CA (W),505 S. Flower Street,Los Angeles,CA,90071 +-118.255334,34.051757,444 S. Flower - D.T. L.A. - Los Angeles CA (W),444 South Flower Street,Los Angeles,CA,90071 +-118.253617,34.051682,400 S. Hope St. - Los Angeles CA (W),400 South Hope Street,Los Angeles,CA,90071 +-118.253016,34.053353,333 South Hope St. - Los Angeles CA,333 South Hope Street,Los Angeles,CA,90071 +-118.25286,34.053096,330 South Hope St. - Los Angeles CA (W),330 South Hope Street,Los Angeles,CA,90071 +-118.251393,34.051502,II California Plaza - D.T. L.A. - Los Angeles CA (W),350 South Grand Avenue,Los Angeles,CA,90071 +-118.444552,34.127611,2950 Beverly Glen Circle - Los Ange - Los Angeles CA (W),2952 Beverly Glen Circle,Los Angeles,CA,90077 +-118.053001,34.162467,Sierra Madre - Sierra Madre CA (W),1 Kersting Court,Sierra Madre,CA,90124 +-118.188479,33.970663,"Altantic & Florence Bell (UCO) - Bell CA (D, W)",7121 Atlantic Blvd.,Bell,CA,90201 +-118.163732,33.969635,"Eastern & Florence (UCO) - Bell Gardens CA (D, W)",7000-F Eastern Avenue,Bell Gardens,CA,90201 +-118.410285,34.066706,Beverly Hills Triangle - Beverly Hills CA (W),9844 Wilshire Blvd.,Beverly Hills,CA,90210 +-118.402505,34.070541,Beverly Drive - Beverly Hills CA (W),428 North Beverly Drive,Beverly Hills,CA,90210 +-118.389505,34.059397,Olympic/Doheny - Beverly Hills CA (W),9049 Olympic Blvd.,Beverly Hills,CA,90211 +-118.376502,34.063549,La Cienega & Gregory Way Beverly H - Beverly Hills CA (W),257 S. La Cienega Blvd.,Beverly Hills,CA,90211 +-118.39906,34.064719,South Beverly Drive - Beverly Hills CA (W),202 South Beverly Drive,Beverly Hills,CA,90212 +-118.222386,33.895587,Compton & Alameda Compton (UCO) - Compton CA (W),162 E. Compton,Compton,CA,90220 +-118.21942,33.879553,Target Compton T-2275 - Compton CA,1621 S. Alameda St.,Compton,CA,90220 +-118.200268,33.903594,"Rosecrans & Central Compton (UCO) - Compton CA (D, W)",2161 W. Rosecrans Ave.,Compton,CA,90220 +-118.24765,33.874212,"Central & The 91 Fwy Compton (UCO) - Compton CA (D, W)",1929 W. Artesia Blvd.,Compton,CA,90220 +-118.408978,33.981663,Jefferson & Centinela Los Angeles - Los Angeles CA,12313 Jefferson Blvd.,Los Angeles,CA,90230 +-118.395397,33.998477,Vons - Culver City #2212 - Culver City CA,11030 Jefferson Blvd.,Culver City,CA,90230 +-118.394938,33.985787,Target Culver City South T-2632 - Culver City CA,6000 Sepulveda Blvd.,Culver City,CA,90230 +-118.394641,34.00157,Target Culver City T-198 - Culver City CA,10820 Jefferson Blvd.,Culver City,CA,90230 +-118.406007,34.017137,Washington & Overland - Culver City - Culver City CA (W),10705 W. Washington Blvd.,Culver City,CA,90232 +-118.396217,34.022321,Washington & Culver - Culver City CA (W),9718 Washington Blvd.,Culver City,CA,90232 +-118.110217,33.960988,"Lakewood & Telegraph Downey - Downey CA (D, W)",8801 Lakewood Blvd.,Downey,CA,90240 +-118.123381,33.935785,Firestone & Lakewood Downey - Downey CA (W),9001 East Firestone Blvd.,Downey,CA,90241 +-118.13157,33.925134,Lakewood & Stewart and Gray Downey - Downey CA (W),12016 Lakewood Blvd.,Downey,CA,90242 +-118.395853,33.923038,Sepulveda & Mariposa - El Segundo - El Segundo CA (W),530 N. Sepulveda Blvd.,El Segundo,CA,90245 +-118.38807,33.927074,Douglas & Maple - El Segundo CA,2263 E. Maple Avenue,El Segundo,CA,90245 +-118.38385,33.902977,Rosecrans & Douglas - El Segundo - El Segundo CA (W),2231 Rosecrans Avenue,El Segundo,CA,90245 +-118.38318,33.916571,Los Angeles Airforce Base El Segund - El Segundo CA,200 N. Douglas Street Bldg 252,El Segundo,CA,90245 +-118.412506,33.919085,Grand & Eucalyptus El Segundo - El Segundo CA (W),310 E. Grand Avenue,El Segundo,CA,90245 +-118.315985,33.886929,Target Gardena T-290 - Gardena CA,2169 W. Redono Beach Blvd.,Gardena,CA,90247 +-118.297644,33.892226,Redondo Beach & Normandie (UCO) - Gardena CA (W),1258 W. Redondo Beach Blvd.,Gardena,CA,90247 +-118.30365,33.872977,Artesia & Western Gardena (UCO) - Gardena CA (W),1759 W. Artesia Blvd.,Gardena,CA,90248 +-118.352382,33.916578,Hawthorne & El Segundo Blvd. (UCO) - Hawthorne CA (W),12770 Hawthorne Blvd.,Hawthorne,CA,90250 +-118.325744,33.924146,"Crenshaw & I-105 Hawthorne (UCO) - Hawthorne CA (D, W)",2909 W. 120th Street,Hawthorne,CA,90250 +-118.32268,33.923699,Target Hawthorne T-2280 - Hawthorne CA,2700 120th St.,Hawthorne,CA,90250 +-118.366682,33.901352,Rosecrans & Oceangate Hawthorne - Hawthorne CA (W),5030 W. Rosecrans Ave.,Hawthorne,CA,90250 +-118.374069,33.90174,Rosecrans & The 405 Fwy Hawthorne - Hawthorne CA (W),5378 W. Rosecrans Avenue,Hawthorne,CA,90250 +-118.40031,33.862979,Hermosa & 13th Hermosa Beach - Hermosa Beach CA (W),1303 Hermosa Avenue,Hermosa Beach,CA,90254 +-118.39163,33.863931,"Hermosa Beach - Hermosa Beach CA (D, W)",1100 Pacific Coast Highway,Hermosa Beach,CA,90254 +-118.394086,33.864849,Vons-Hermosa Beach #2110 - Hermosa Beach CA,715 Pier Ave.,Hermosa Beach,CA,90254 +-118.22591,33.98677,"Pacific & Belgrave (UCO) - Huntington Park CA (D, W)",6021 Pacific Blvd.,Huntington Park,CA,90255 +-118.213813,33.988893,"Slauson & State (UCO) - Huntington Park CA (D, W)",3060 E. Slauson Ave.,Huntington Park,CA,90255 +-118.352057,33.896688,Hawthorne Blvd. & 149th St. Lawndale - Lawndale CA (D),14828 Hawthorne Blvd.,Lawndale,CA,90260 +-118.183671,33.931339,"Atlantic & Imperial Lynwood (UCO) - Lynwood CA (D, W)",10925 Atlantic Avenue,Lynwood,CA,90262 +-118.843279,34.031403,PCH & Trancas Canyon Rd. - Malibu - Malibu CA (W),30765 Pacific Coast Highway,Malibu,CA,90265 +-118.810157,34.020883,Vons - Malibu #2813 - Malibu CA,29211 Heather Cliff Rd.,Malibu,CA,90265 +-118.702402,34.034196,Malibu-West - Malibu CA,23755 W. Malibu Road,Malibu,CA,90265 +-118.685217,34.034506,Malibu - Malibu CA (W),3900 Cross Creek Road,Malibu,CA,90265 +-118.409892,33.885064,Manhattan Beach - Manhattan Beach CA (W),233 Manhattan Beach,Manhattan Beach,CA,90266 +-118.394751,33.888397,Target Manhattan Beach T-199 - Manhattan Beach CA,1200 N. Sepulveda Blvd.,Manhattan Beach,CA,90266 +-118.525869,34.04741,Pacific Palisades - Pacific Palisades CA (W),15300 Sunset Boulevard,Pacific Palisades,CA,90272 +-118.384809,33.776757,Vons-Rolling Hills Estates #2233 - Rolling Hills Estates CA,7 Peninsula Ctr,Rolling Hills Estates,CA,90274 +-118.37469,33.77507,Palos Verdes - Rolling Hills Estates CA (W),46 A Peninsula Center,Rolling Hills Estates,CA,90274 +-118.372998,33.772515,Avenue of the Peninsula Rolling Hi - Rolling Hills CA (W),550 Deep Valley Drive,Rolling Hills,CA,90274 +-118.40591,33.7493,Palos Verdes Dr. West & Hawthorne - Rancho Palos Verdes CA (W),31202 HAWTHORNE BLVD,Rancho Palos Verdes,CA,90275 +-118.387047,33.845436,Pacific Coast Hwy. & Diamond St. - Redondo Beach CA (W),300 N. Pacific Coast Highway,Redondo Beach,CA,90277 +-118.38559,33.817837,Redondo Beach - Redondo Beach CA (W),1749 S. Elena,Redondo Beach,CA,90277 +-118.378586,33.872763,Artesia & Flagler - Redondo Bch. - Redondo Beach CA (W),1904 Artesia Blvd.,Redondo Beach,CA,90278 +-118.362249,33.892936,Vons - Redondo Beach #1623 - Redondo Beach CA,4001 Inglewood Ave.,Redondo Beach,CA,90278 +-118.356852,33.867835,Target Redondo Beach T-1980 - Redondo Beach CA,1601 Kingsdale Ave.,Redondo Beach,CA,90278 +-118.352709,33.866718,South Bay Galleria - Redondo Beach - Redondo Beach CA (W),1815 Hawthorne Blvd.,Redondo Beach,CA,90278 +-118.164198,33.952007,"Firestone & Garfield Southgate (UC - Southgate CA (D, W)",8620 Garfield Ave.,Southgate,CA,90280 +-118.219306,33.955022,"Firestone & Long Beach UCO Southg - Southgate CA (D, W)",8924 Long Beach Blvd.,Southgate,CA,90280 +-118.465292,33.979668,100 Washington Blvd. - Marina Del R - Marina Del Rey CA (W),100 Washington Blvd.,Marina Del Rey,CA,90292 +-118.445878,33.991435,Washington & Del Rey Culver City - Marina Del Rey CA (W),13431 Washington Blvd.,Marina Del Rey,CA,90292 +-118.444892,33.99193,Albertsons-Marina Del #6104 - Marina Del Rey CA,13401 Washington Blvd.,Marina Del Rey,CA,90292 +-118.443638,33.985924,Marina Del Rey - Marina Del Rey CA (W),4264 Lincoln Boulevard,Marina Del Rey,CA,90292 +-118.439402,33.985167,Vons - Marina Del Rey #2105 - Marina Del Rey CA,4365 Glencoe Ave.,Marina Del Rey,CA,90292 +-118.438306,33.977375,Lincoln & Fiji Marina del Rey - Marina del Rey CA (W),4724 1/2 Admiralty,Marina Del Rey,CA,90292 +-118.348886,33.960622,Vons-Inglewood #2502 - Inglewood CA,500 E. Manchester Blvd.,Inglewood,CA,90301 +-118.357652,33.975256,"La Brea & Centinela Inglewood (UCO - Inglewood CA (D, W)",941 N. La Brea Avenue,Inglewood,CA,90302 +-118.331108,33.945931,"Hollywood Park Marketplace (UCO) - Inglewood CA (D, W)",3351 W. Century Blvd.,Inglewood,CA,90303 +-118.498917,34.018601,Third Street (B&N) - Santa Monica CA (W),308 Wilshire Blvd.,Santa Monica,CA,90401 +-118.490631,34.017448,Vons-Santa Monica #2262 - Santa Monica CA,710 Broadway,Santa Monica,CA,90401 +-118.496409,34.015839,3rd & Santa Monica Santa Monica - Santa Monica CA (W),1356 Third Street Promenade,Santa Monica,CA,90401 +-118.501815,34.026841,7th & Montana Avenue - Santa Monica CA (W),701 Montana Avenue,Santa Monica,CA,90403 +-118.4998,34.027815,Vons - Santa Monica #2231 - Santa Monica CA,820 Montana Avenue,Santa Monica,CA,90403 +-118.494297,34.032561,15th & Montana - Santa Monica CA (W),1426 Montana Avenue,Santa Monica,CA,90403 +-118.489528,34.026375,Vons-Santa Monica #2002 - Santa Monica CA,1311 Wilshire Blvd.,Santa Monica,CA,90403 +-118.47789,34.036065,Wilshire Boulevard - Santa Monica CA (W),2525 Wilshire Blvd.,Santa Monica,CA,90403 +-118.472766,34.040368,Albertsons-Santa Monica #6136 - Santa Monica CA,3105 Wilshire Blvd.,Santa Monica,CA,90403 +-118.474771,34.027701,Colorado & Cloverfield Santa Monic - Santa Monica CA (W),2200 Colorado Blvd.,Santa Monica,CA,90404 +-118.4756,34.03229,Santa Monica & 26th Santa Monica - Santa Monica CA (W),2461-A Santa Monica Blvd.,Santa Monica,CA,90404 +-118.482619,34.001063,Main Street - Santa Monica CA (W),2671 Main Street,Santa Monica,CA,90405 +-118.4722,34.003552,"Lincoln & Marine-Santa Monica - Santa Monica CA (D, W)",3020 Lincoln Blvd.,Santa Monica,CA,90405 +-118.454699,34.020029,Ocean Park - Santa Monica - Santa Monica CA (W),2901 Ocean Park Blvd.,Santa Monica,CA,90405 +-118.479478,33.997643,Main & Navy - Santa Monica CA (W),3110 Main Street,Santa Monica,CA,90405 +-118.327987,33.823245,Crenshaw & Sepulveda Torrance - Torrance CA (W),2370 Crenshaw Blvd.,Torrance,CA,90501 +-118.303374,33.858318,South Bay Towne Center-Torrance - Torrance CA (W),1450 190th Street,Torrance,CA,90501 +-118.296092,33.831586,"Carson & Normandie Torrance - Torrance CA (D, W)",1171 W. Carson Street,Torrance,CA,90502 +-118.364468,33.858217,190th & Anza - Torrance CA (W),5050 190th Street,Torrance,CA,90503 +-118.354863,33.838576,Albertsons-Torrance #6153 - Torrance CA,21035 Hawthorne Blvd.,Torrance,CA,90503 +-118.353492,33.837336,Torrance & Hawthorne - Torrance CA (W),21209-A Hawthorne Blvd.,Torrance,CA,90503 +-118.350578,33.832354,Del Amo - Torrance CA (W),6 Del Amo Fashion Center,Torrance,CA,90503 +-118.349965,33.835781,Marriott Torrance - Torrance CA,3635 Fashion Way,Torrance,CA,90503 +-118.328055,33.804798,Vons-Torrance #3517 - Torrance CA,24325 Crenshaw Blvd.,Torrance,CA,90503 +-118.346147,33.83126,Del Amo Fashion Center - Torrance CA (W),3525 Carson Street Suite 78,Torrance,CA,90503 +-118.343243,33.873449,Artesia & Prairie Torrance - Torrance CA (W),3931 W. Artesia Blvd.,Torrance,CA,90504 +-118.352084,33.872473,Hawthorne & Artesia Torrance - Torrance CA (W),17400 Hawthorne Boulevard,Torrance,CA,90504 +-118.367858,33.812386,Pacific Plaza (PCH/Calle Mayor) - Torrance CA (W),5005 Pacific Coast Highway,Torrance,CA,90505 +-118.359382,33.826507,"Sepulveda & Anza Torrance - Torrance CA (D, W)",4437 Sepulveda Bl.,Torrance,CA,90505 +-118.328056,33.804315,Torrance Crossroads - Torrance CA (W),24427 Crenshaw,Torrance,CA,90505 +-118.350681,33.80527,Pacific Coast Hwy. & Hawthorne - To - Torrance CA (W),3737 Pacific Coast Highway,Torrance,CA,90505 +-118.332298,33.79263,Crenshaw &Airport Torrance - Torrance CA (W),25348 Crenshaw Blvd.,Torrance,CA,90505 +-118.037336,33.979349,Greenleaf & Philadelphia - Whittier - Whittier CA (W),6756 S. Greenleaf Avenue,Whittier,CA,90601 +-118.055482,33.998702,Beverly & Norwalk Whittier - Whitter CA (W),5403 Norwalk Blvd.,Whitter,CA,90601 +-118.003036,33.948158,Whittier Blvd. & La Serna - Whittier CA (W),15175 Whittier Blvd.,Whittier,CA,90602 +-117.995942,33.943306,Target Whittier T-2019 - Whittier CA,15614 Whittwood Ln.,Whittier,CA,90603 +-117.9922,33.9428,Vons - Whittier #2027 - Whittier CA,15740 Laforge St.,Whittier,CA,90603 +-118.031039,33.962046,Whittier & Painter Whittier - Whitter CA (W),13520 Whittier Blvd.,Whitter,CA,90605 +-118.048413,33.966948,Washington & Lambert Whittier - Whittier CA (W),12376 Washington Blvd.,Whittier,CA,90606 +-118.028432,33.848468,Valley View & La Palma Buena Park - Buena Park CA (D),7876 Valley View Street,Buena Park,CA,90620 +-117.999151,33.85139,Movieland Wax Museum - Buena Park - Buena Park CA (W),7711 Beach Blvd.,Buena Park,CA,90620 +-117.989495,33.847222,"La Palma & Dale Buena Park - Buena Park CA (D, W)",8231 La Palma Avenue,Buena Park,CA,90620 +-118.029757,33.832143,"Lincoln & Valley View Buena Park - Buena Park CA (D, W)",5897 Lincoln Ave.,Buena Park,CA,90620 +-118.00026,33.857497,Target Buena Park T-2082 - Buena Park CA,7530 Orangethorpe Ave.,Buena Park,CA,90621 +-118.028327,33.816369,Valley View & Ball Cypress - Cypress CA (W),10031 Valley View Street,Cypress,CA,90630 +-118.014649,33.803545,Katella & Meridian Cypress - Cypress CA (W),10953 Meridian Drive,Cypress,CA,90630 +-117.969057,33.918368,Vons-La Habra #2524 - La Habra CA,2101 W. Imperial Hwy.,La Habra,CA,90631 +-117.967431,33.938597,Beach & Whittier - La Habra - La Habra CA (W),1950 W. Whittier Rd.,La Habra,CA,90631 +-117.960852,33.917281,La Habra Marketplace - La Habra CA (W),1331 W. Imperial Hwy.,La Habra,CA,90631 +-117.957712,33.916081,Target La Habra T-2397 - La Habra CA,1000 W. Imperial Hwy.,La Habra,CA,90631 +-117.93264,33.932182,"Harbor & La Habra La Habra - La Habra CA (D, W)",1201 E. La Habra Blvd.,La Habra,CA,90631 +-118.008001,33.896792,Albertsons-La Mirada #6148 - La Mirada CA,15200 E. Rosecrans Blvd.,La Mirada,CA,90638 +-118.006768,33.898654,Rosecrans & La Mirada La Mirada - La Mirada CA (W),15220 Rosecrans Avenue,La Mirada,CA,90638 +-118.012965,33.917103,La Mirada & Imperial Hwy. - La Mirada CA (W),14948 Imperial Hwy.,La Mirada,CA,90639 +-118.122673,34.032816,Albertsons - Montebello #6181 - Montebello CA,2469 Via Campo,Montebello,CA,90640 +-118.106571,34.019408,Beverly and Montebello Montebello - Montebello CA (W),800 W. Beverly Blvd.,Montebello,CA,90640 +-118.084474,34.033463,Montebello Town Center Mall - Montebello CA (W),1780 Montebello Town Center,Montebello,CA,90640 +-118.105009,33.925192,Firestone & 605 Frwy Norwalk - Norwalk CA (W),10716 Firestone Blvd.,Norwalk,CA,90650 +-118.054961,33.902695,Rosecrans & Shoemaker Norwalk - Norwalk CA (D),13001 Rosecrans Avenue,Norwalk,CA,90650 +-118.082295,33.912409,"Firestone & Pioneer Norwalk - Norwalk CA (D, W)",11790 Firestone Blvd.,Norwalk,CA,90650 +-118.083393,33.902276,Pioneer & Rosecrans Norwalk - Norwalk CA (W),11739 Rosecrans Avenue,Norwalk,CA,90650 +-118.100068,33.984182,Washington & Rosemead Pico Rivera - Pico Rivera CA (W),8754 Washington Blvd.,Pico Rivera,CA,90660 +-118.078943,33.99916,Whittier & Passons Pico Rivera - Pico Rivera CA (D),9329 Whittier Blvd.,Pico Rivera,CA,90660 +-118.049865,33.916876,"Imperial & Carmenita Santa Fe Spri - Santa Fe Springs CA (D, W)",13248 Imperial Highway,Santa Fe Springs,CA,90670 +-118.04759,33.940942,Carmenita & Telegraph Santa Fe Spr - Santa Fe Springs CA (W),13352 E. Telegraph Road,Santa Fe Springs,CA,90670 +-118.072144,33.94228,Telegraph & Norwalk Santa Fe Sprin - Santa Fe Springs CA (W),12215 Telegraph Road,Santa Fe Springs,CA,90670 +-118.029338,33.887647,"Valley View & Alondra Santa Fe Srp - Santa Fe Springs CA (D, W)",15905 Valley View Avenue,Santa Fe Springs,CA,90670 +-117.993082,33.789379,"Beach & Chapman Stanton - Stanton CA (D, W)",11931 Beach Blvd.,Stanton,CA,90680 +-118.081908,33.874203,Pioneer & Artesia Artesia - Artesia CA (W),11809 Artesia Blvd.,Artesia,CA,90701 +-118.062708,33.870323,Cerritos - Cerritos CA (W),12751 Towne Center Drive,Cerritos,CA,90703 +-118.090798,33.858491,Gridley & South Cerritos - Cerritos CA (W),11401 East South Street,Cerritos,CA,90703 +-118.081574,33.846328,Del Amo & Pioneer Cerritos - Cerritos CA (W),20226 Pioneer Blvd.,Cerritos,CA,90703 +-118.125702,33.901635,"Rosecrans & Bellflower Bellflower - Bellflower CA (D, W)",14301 Bellflower Blvd.,Bellflower,CA,90706 +-118.142238,33.875031,Lakewood & Artesia Bellflower - Bellflower CA (W),17254 Lakewood Blvd.,Bellflower,CA,90706 +-118.309156,33.779388,Palos Verdes & Western Harbor City - Harbor City CA (W),26650 Western Ave.,Harbor City,CA,90710 +-118.289898,33.80962,"Sepulveda & Vermont Harbor City - Harbor City CA (D, W)",898 Sepulveda Blvd.,Harbor City,CA,90710 +-118.13845,33.852062,Lakewood Center Breve - Lakewood CA,208 Lakewood Center Mall,Lakewood,CA,90712 +-118.13644,33.853866,"Candlewood St. & Lakewood Blvd. - Lakewood CA (D, W)",4833 Candlewood Street,Lakewood,CA,90712 +-118.159446,33.832,Carson & Paramount Lakewood - Lakewood CA (W),2700 Carson Street,Lakewood,CA,90712 +-118.117031,33.857075,South & Woodruff Lakewood - Lakewood CA (W),5538 Woodruff Ave.,Lakewood,CA,90713 +-118.115606,33.83512,Vons - Lakewood #1638 - Lakewood CA,4226 Woodruff Ave.,Lakewood,CA,90713 +-118.116739,33.856143,Pavilions-Lakewood #2209 - Lakewood CA,5500 Woodruff Ave.,Lakewood,CA,90713 +-118.116142,33.847009,"Del Amo & Woodruff Lakewood - Lakewood CA (D, W)",5906 Del Amo Blvd.,Lakewood,CA,90713 +-118.318134,33.788962,Albertsons-Lomita #6107 - Lomita CA,2130 Pacific Coast Hwy.,Lomita,CA,90717 +-118.06957,33.803202,Katella & Los Alamitos Los Alamito - Los Alamitos CA (W),3575 Katella Avenue,Los Alamitos,CA,90720 +-118.144001,33.889505,"Alondra & Lakewood Paramount - Paramount CA (D, W)",8819 Alondra Blvd.,Paramount,CA,90723 +-118.159644,33.885826,Paramount & Jackson Paramount - Paramount CA (W),16280-C Paramount Blvd.,Paramount,CA,90723 +-118.293936,33.760443,Target San Pedro T-2470 - San Pedro CA,1701 N. Gaffey St.,San Pedro,CA,90731 +-118.292831,33.732878,Vons - San Pedro #2283 - San Pedro CA,1221 Gaffey St.,San Pedro,CA,90731 +-118.292048,33.739932,Gaffey & 5th San Pedro - San Pedro CA (W),438 S. Gaffey Ave.,San Pedro,CA,90731 +-118.312084,33.723226,Western & 25th - San Pedro CA (W),2470 S. Western Ave.,San Pedro,CA,90732 +-118.311132,33.764356,Western & Westmont San Pedro - San Pedro CA (W),28166 S. Western Ave.,San Pedro,CA,90732 +-118.310129,33.765007,Albertsons - San Pedro #6164 - San Pedro CA,28090 S. Western Ave.,San Pedro,CA,90732 +-118.310885,33.722667,Vons-San Pedro #2162 - San Pedro CA,1440 W. 25th St.,San Pedro,CA,90732 +-118.101698,33.743894,Von's-Seal Beach #2803 - Seal Beach CA,1101 Pacific Coast Highway,Seal Beach,CA,90740 +-118.091184,33.74685,"Seal Beach & Westminster Seal Beac - Seal Beach CA (D, W)",2311 Seal Beach Blvd.,Seal Beach,CA,90740 +-118.07758,33.759588,Seal Beach Blvd. & St. Cloud - Seal Beach CA (W),12430 Seal Beach Blvd.,Seal Beach,CA,90740 +-118.285436,33.842025,"Torrance & I-110 Carson - Carson CA (D, W)",20806 Figeroa Street,Carson,CA,90745 +-118.277545,33.831539,Albertsons-Carson #6135 - Carson CA,110 E. Carson St.,Carson,CA,90745 +-118.272775,33.806663,Albertsons-Carson #6159 - Carson CA,200 E. Sepulveda,Carson,CA,90745 +-118.285829,33.809546,Target Carson T-2328 - Carson CA,651 W. Sepulveda Blvd.,Carson,CA,90745 +-118.26276,33.842901,Target Carson T-2026 - Carson CA,20700 S. Avalon Blvd.,Carson,CA,90746 +-118.262255,33.84149,"Avalon & Dominguez Carson (UCO) - Carson CA (D, W)",20810 Avalon Boulevard,Carson,CA,90746 +-118.27021,33.871827,"Avalon & 91 Fwy Carson ( UCO ) - Carson CA (D, W)",335 East Albertoni Street,Carson,CA,90746 +-118.264306,33.847893,"Del Amo & Avalon Carson - Carson CA (D, W)",20240 Avalon Blvd.,Carson,CA,90746 +-118.279046,33.807818,Sepulveda & Main Carson - Carson CA (W),208 Sepulveda Blvd.,Carson,CA,90749 +-118.170141,33.80399,"Willow & Cherry Signal Hill - Signal Hill CA (D, W)",1788 E. Willow Street,Signal Hill,CA,90755 +-118.182195,33.816821,Target Long Beach/Sgnal Hill T-2319 - Long Beach CA,950 E. 33rd St.,Long Beach,CA,90755 +-118.192357,33.770199,Pine Avenue - Long Beach CA (W),242 Pine Avenue,Long Beach,CA,90802 +-118.191711,33.767551,Renaissance Long Beach - Gift Shop - Long Beach CA,111 east ocean Boulevard,Long Beach,CA,90802 +-118.189072,33.772631,Long Beach & 5th Long Beach - Long Beach CA (W),500 Long Beach Blvd.,Long Beach,CA,90802 +-118.147345,33.759819,Von's - Long Beach #2280 - Long Beach CA,3900 E. OCEAN AVENUE,Long Beach,CA,90803 +-118.138463,33.761723,Sunrise Plaza - Belmont Shore - Long Beach CA (W),4708 E. 2nd St.,Long Beach,CA,90803 +-118.133425,33.759967,Belmont Shores - Long Beach CA (W),5251 E. 2nd Street,Long Beach,CA,90803 +-118.11561,33.764027,Marina Pacifica - Long Beach CA (W),6324 East Pacific Coast Hwy.,Long Beach,CA,90803 +-118.112866,33.758197,Albertsons-Long Beach #6120 - Long Beach CA,6255 E. 2nd St.,Long Beach,CA,90803 +-118.139151,33.787552,4549 E. Pacific Coast Hwy. Long Bea - Long Beach CA (W),4549 E. Pacific Coast Hwy.,Long Beach,CA,90804 +-118.137505,33.775042,7th & Park Long Beach - Long Beach CA (W),4740 E. 7th Street,Long Beach,CA,90804 +-118.152461,33.775318,Redondo & 7th Long Beach - Long Beach CA (W),3390 E. 7th Street,Long Beach,CA,90804 +-118.166178,33.877333,Target Long Beach NW T-2424 - Long Beach CA,6750 Cherry Ave.,Long Beach,CA,90805 +-118.190657,33.805413,Long Beach Blvd. & Willow (UCO) - Long Beach CA (W),141 E. Willow St.,Long Beach,CA,90806 +-118.184491,33.837372,Atlantic & San Antonio Long Beach - Long Beach CA (W),4406 Atlantic Avenue,Long Beach,CA,90807 +-118.182813,33.841067,Vons-Long Beach #3519 - Long Beach CA,4550 Atlantic Avenue,Long Beach,CA,90807 +-118.109465,33.810906,Albertsons - Long Beach #6154 - Long Beach CA,6235 E. Spring St.,Long Beach,CA,90808 +-118.115802,33.811462,Pavilions-Long Beach #2203 - Long Beach CA,5949 E. Spring St.,Long Beach,CA,90808 +-118.138883,33.790051,Von's - Long Beach #3076 - Long Beach CA,1820 Ximeno Ave.,Long Beach,CA,90815 +-118.124575,33.808716,"Bellflower & Spring Long Beach - Long Beach CA (D, W)",2890 N. Bellflower Blvd.,Long Beach,CA,90815 +-118.107922,33.79596,Stearns & Palo Verde Long Beach - Long Beach CA (W),2221 Palo Verde Ave.,Long Beach,CA,90815 +-118.085228,33.82843,Long Beach Towne Center - Long Beach CA (W),7565 Carson Blvd.,Long Beach,CA,90822 +-118.117162,33.775472,CSU Long Beach - Dining Plaza - Long Beach CA,6049 East Seventh street,Long Beach,CA,90840 +-118.113795,33.778449,CSU Long beach - Long Beach Library - Long Beach CA,6049 East Seventh Street,Long Beach,CA,90840 +-118.056501,34.12384,Arcadia - Arcadia CA (W),733 West Naomi,Arcadia,CA,91006 +-118.023514,34.139548,300 E. Huntington Dr. - Arcadia - Arcadia CA (W),300 E. Huntington Drive,Arcadia,CA,91006 +-118.023487,34.107539,Albertsons-Arcadia #6561 - Arcadia CA,298 E. Live Oak Ave.,Arcadia,CA,91006 +-118.057563,34.124178,Vons - Arcadia #3208 - Arcadia CA,745 E. Naomi Ave.,Arcadia,CA,91007 +-117.980978,34.139675,Huntington & Buena Vista - Duarte - Duarte CA (W),1155 Huntington Drive,Duarte,CA,91010 +-118.21965,34.205066,Verdugo & 2 Freeway - La Canada CA (W),1929 Verdugo,La Canada,CA,91011 +-118.188571,34.199749,La Canada - La Canada CA (W),475 Foothill Blvd.,La Canada,CA,91011 +-118.01242,34.140359,Monrovia - Monrovia CA (W),621 W. Huntington Drive,Monrovia,CA,91016 +-118.002389,34.151034,Foothill & Myrtle - Monrovia - Monrovia CA (W),140 West Foothill Blvd.,Monrovia,CA,91016 +-118.002133,34.151318,Vons-Monrovia #2200 - Monrovia CA,130 W. Foothill Blvd.,Monrovia,CA,91016 +-118.152869,34.104295,Huntington & Fremont S. Pasadena - South Pasadena CA (W),1318 Huntington Drive,South Pasadena,CA,91030 +-118.150599,34.163355,South Pasadena - Wells Fargo - Pasadena CA (W),1000 Fair Oaks Ave.,Pasadena,CA,91030 +-118.150468,34.153515,Fair Oaks & State Street - South Pasadena CA (W),454 North Fair Oaks Ave.,South Pasadena,CA,91030 +-118.1505,34.112078,Vons-South Pasadena #2228 - South Pasadena CA,1213 Fair Oaks Ave.,South Pasadena,CA,91030 +-118.315114,34.259777,Foothill & Oro Vista Sunland - Sunland CA (W),8349 Foothill Blvd.,Sunland,CA,91040 +-118.301703,34.25913,Vons - Tujunga #2124 - Tujunga CA,7789 Foothill Blvd.,Tujunga,CA,91042 +-118.268075,34.240629,Albertsons - Tujunga #6397 - Tujunga CA,6240 Foothill Bl,Tujunga,CA,91042 +-118.142037,34.145818,Colorado & Los Robles Pasadena - Pasadena CA (W),408 E. Colorado Boulevard,Pasadena,CA,91101 +-118.13455,34.146843,Target Pasadena T-883 - Pasadena CA,777 E. Colorado Blvd.,Pasadena,CA,91101 +-118.132377,34.13787,Pasadena - Pasadena CA (W),575 South Lake Avenue,Pasadena,CA,91101 +-118.132237,34.144266,Pasadena Lake - Wells Fargo - Pasadena CA (W),82 South Lake Avenue,Pasadena,CA,91101 +-118.150587,34.157399,Fair Oaks & Orange Grove Pasadena - Pasadena CA (W),671 N. Fair Oaks Avenue,Pasadena,CA,91103 +-118.112164,34.170019,Vons-Pasadena #2139 - Pasadena CA,1390 N. Allen Ave.,Pasadena,CA,91104 +-118.11269,34.168896,Washington & Allen Pasadena - Pasadena CA (W),1830 E. Washington Blvd.,Pasadena,CA,91104 +-118.152998,34.146043,Old Town Pasadena - Pasadena CA (W),117 W. Colorado Blvd.,Pasadena,CA,91105 +-118.150369,34.136212,Fairoaks & California - Pasadena - Pasadena CA (W),556 S. Fair Oaks Avenue,Pasadena,CA,91105 +-118.153462,34.136438,Vons-Pasadena #2152 - Pasadena CA,155 W. California Blvd.,Pasadena,CA,91105 +-118.147754,34.132703,Arroyo & Fillmore Pasadena - Pasadena CA (W),753 South Arroyo Parkway,Pasadena,CA,91105 +-118.11548,34.146015,Colorado & Bonnie Pasadena - Pasadena CA (W),1687 E. Colorado Blvd.,Pasadena,CA,91106 +-118.121819,34.148774,Hill & Walnut East Pasadena - Pasadena CA (W),161 N. Hill Avenue,Pasadena,CA,91106 +-118.07896,34.150142,Sierra Madre Villa & Foothill - Pasadena CA (W),3429 East Foothill Blvd.,Pasadena,CA,91107 +-118.073506,34.150223,Hastings Ranch - Pasadena CA (W),3699 E. Foothill Blvd.,Pasadena,CA,91107 +-118.102032,34.146101,Vons-Pasadena #2257 - Pasadena CA,2355 E. Colorado Blvd.,Pasadena,CA,91107 +-118.091018,34.127689,Huntington Drive & San Gabriel - Pasadena CA (W),3007 Huntington Drive,Pasadena,CA,91107 +-118.105385,34.122314,San Marino - San Marino CA (W),2265 Huntington Drive,San Marino,CA,91108 +-118.28531,34.158215,DreamWorks - Glendale CA,1000 Flower Street,Glendale,CA,91201 +-118.289677,34.171255,Glenoaks & Western Glendale - Glendale CA (W),1703 W. Glenoaks Blvd.,Glendale,CA,91201 +-118.264915,34.163221,Pacific & Stocker Glendale - Glendale CA (W),1200 North Pacific Avenue,Glendale,CA,91202 +-118.261351,34.039491,12th & Hill Los Angeles(AT&T Bldg) - Los Angeles CA (W),1149 S. Hill Street,Los Angeles,CA,91203 +-118.254646,34.146978,Glendale - Glendale CA (W),114 North Brand Blvd.,Glendale,CA,91203 +-118.264467,34.157535,Pacific & Burchett Glendale - Glendale CA (W),469 Burchett Street,Glendale,CA,91203 +-118.258818,34.129256,Vons - Glendale #2254 - GLENDALE CA,311 W. LOS FELIZ BLVD,Glendale,CA,91204 +-118.255048,34.145639,Glendale Marketplace - Glendale CA (W),130 S. Brand Ave.,Glendale,CA,91204 +-118.257906,34.143617,Target Glendale T-2307 - Glendale CA,241 S. Central Ave.,Glendale,CA,91204 +-118.258229,34.135128,Central & Acacia Glendale - Glendale CA (D),919 S. Central Ave.,Glendale,CA,91204 +-118.244821,34.155202,Vons - Glendale #1707 - Glendale CA,561 N. Glendale Ave.,Glendale,CA,91206 +-118.246453,34.148172,Glendale & Wilson Glendale - Glendale CA (W),203-A North Glendale Avenue,Glendale,CA,91206 +-118.26106,34.237305,Foothill & Boston La Crescenta - La Cresenta CA (W),3747 Foothill Boulevard,La Cresenta,CA,91214 +-118.248655,34.229594,Vons-La Crescenta #2598 - La Crescenta CA,3201 Foothill Blvd.,La Crescenta,CA,91214 +-118.235885,34.221644,La Crescenta - Foothill & Rosemont - La Crescenta CA (W),2627 Foothill Blvd.,La Crescenta,CA,91214 +-118.285662,34.158736,Sodexho @ Disney GC3 - Glendale CA,1101 Flower Street,Glendale,CA,91221 +-118.758854,34.153593,Vons-Agoura Hills #2001 - Agoura Hills CA,5671 Kanan Rd.,Agoura Hills,CA,91301 +-118.756623,34.15578,Agoura - Agoura CA (W),5827 Kanan Road,Agoura,CA,91301 +-118.701265,34.143558,Agoura & Las Virgenes Calabasas - Calabasas CA (W),26531 Agoura Road,Calabasas,CA,91301 +-118.699605,34.144729,Albertsons-Calabasas #6335 - Calabasas CA,26521 Agoura Road,Calabasas,CA,91302 +-118.642962,34.155257,Calabasas Rd. & Park Granada - Calabasas CA (W),4776 Commons Way,Calabasas,CA,91302 +-118.605904,34.193034,Target Woodland Hills/TopangaT-2143 - Canoga Park CA,6700 Topanga Canyon Blvd.,Canoga Park,CA,91303 +-118.604525,34.190794,Topanga Plaza - Canoga Park CA (W),6600 Topanga Canyon Blvd.,Canoga Park,CA,91303 +-118.597704,34.202083,Canoga & Sherman Canoga Park - Canoga Park CA (D),7258 Canoga Ave.,Canoga Park,CA,91303 +-118.606537,34.218243,Vons - Canoga Park #1673 - CANOGA PARK CA,8201 Topanga Canyon Blvd.,Canoga Park,CA,91304 +-118.642649,34.188873,West Hills - West Hills CA (W),6516 Platt Avenue,West Hills,CA,91307 +-118.64134,34.189151,Pavilions - West Hills #2225 - West Hills CA,6534 Platt Ave.,West Hills,CA,91307 +-118.624421,34.186778,Fallbrook & Victory Canoga Park - West Hills CA (W),22815 Victory Blvd.,West Hills,CA,91307 +-118.580269,34.256873,Chatsworth Plaza - Chatsworth CA (W),20516 Devonshire Street,Chatsworth,CA,91311 +-118.578639,34.257234,Vons-Chatsworth #1671 - Chatsworth CA,20440 Devonshire St.,Chatsworth,CA,91311 +-118.606061,34.251046,Topanga Cyn./Lassen - Chatsworth CA (W),9935 Topanga Canyon Boulevard,Chatsworth,CA,91311 +-118.509778,34.160841,Encino - Encino CA (W),17308 Ventura Blvd.,Encino,CA,91316 +-118.956412,34.167245,Reino Road & Kimber Drive - Newbury Park CA (W),421 S. Reino Rd.,Newbury Park,CA,91320 +-118.937082,34.192158,Wendy Drive & 101 Fwy Thousand Oak - Thousand Oaks CA (W),1025 Broadbeck Lane,Thousand Oaks,CA,91320 +-118.934715,34.190858,Target Thousand Oaks T-1100 - Thousand Oaks CA,2705 Teller Rd.,Thousand Oaks,CA,91320 +-118.911102,34.187117,Ventu Park & Hillcrest - Newbury Park CA (W),587 N. Ventu Park Rd.,Newbury Park,CA,91320 +-118.921945,34.183876,Newbury & Kelly Newbury Park - Thousand Oaks CA (W),1940 Newbury Road,Thousand Oaks,CA,91320 +-118.466509,34.404578,"Via Princessa & Sierra Hwy. Santa C - Santa Clarita CA (D, W)",26925 Sierra Highway,Santa Clarita,CA,91321 +-118.51632,34.371933,"San Fernando & Carl Ct. Newhall - Santa Clarita CA (D, W)",23790 San Fernando Rd.,Santa Clarita,CA,91321 +-118.536231,34.241242,Reseda & Plummer Northridge - Northridge CA (W),9420 Reseda Blvd.,Northridge,CA,91324 +-118.536104,34.256428,Northridge - Northridge CA (W),10235 Reseda Blvd.,Northridge,CA,91324 +-118.559086,34.241742,Shirley & Plummer - Northridge - Northridge CA (W),19500 Plummer St.,Northridge,CA,91324 +-118.503448,34.234558,Target Northridge T-2020 - Northridge CA,8999 Balboa Ave.,Northridge,CA,91325 +-118.563735,34.274939,Rinaldi & Corbin Porter Ranch - Northridge CA (W),19759 Rinaldi St.,Northridge,CA,91326 +-118.553747,34.186594,Tampa & Victory Reseda - Reseda CA (W),19313 Victory Boulevard,Reseda,CA,91335 +-118.535624,34.194981,"Reseda & Vanowen Reseda - Reseda CA (D, W)",6840 Reseda Blvd.,Reseda,CA,91335 +-118.441406,34.283934,"Truman & Maclay San Fernando - San Fernando CA (D, W)",1135 Truman Street,San Fernando,CA,91340 +-118.485972,34.235628,Nordhoff & Woodley - North Hills CA (W),16222 Nordhoff Street,North Hills,CA,91343 +-118.469148,34.22139,Galpin Motors - Jaguar Showroom - North Hills CA,15430 Roscoe Blvd.,North Hills,CA,91343 +-118.466967,34.234614,"Sepulveda & Nordhoff (UCO) - North Hills CA (D, W)",9002 Sepulveda Blvd.,North Hills,CA,91343 +-118.527244,34.264504,Chatsworth & Lindley - Granada Hill - Granada Hills CA (W),18100 Chatsworth St.,Granada Hills,CA,91344 +-118.502002,34.287541,Balboa & Knollwood Granada Hills - Granada Hills CA (W),11850 Balboa Boulevard,Granada Hills,CA,91344 +-118.499049,34.257486,Granada Hills - Granada Hills CA (W),16850 Devonshire Blvd.,Granada Hills,CA,91344 +-118.472307,34.284168,Vons-Granada Hills #2250 - Granada Hills CA,16830 San Fernando Mission B,Granada Hills,CA,91344 +-118.503382,34.272984,Target Granada Hills T-2329 - Granada Hills CA,17055 San Fernando Mission Blvd.,Granada Hills,CA,91344 +-118.470216,34.257713,Devonshire & The 405 Fwy Mission H - Mission Hills CA (W),15501 Devonshire Blvd.,Mission Hills,CA,91345 +-118.533831,34.459843,Copper Hill & Seco Canyon Santa Cl - Santa Clarita CA (W),27984 Seco Canyon Road,Santa Clarita,CA,91350 +-118.512132,34.443073,Albertsons - Santa Clarit #6360 - Saugus CA,27631 W. Bouquet Canyon Rd.,Saugus,CA,91350 +-118.510163,34.443275,Bouquet Canyon & Haskell Canyon Sa - Saugus CA (W),27667 Bouquet Canyon Road,Saugus,CA,91350 +-118.53618,34.428013,Vons-Saugus #1669 - Santa Clara CA,26518 Bouquet Canyon Rd.,Santa Clara,CA,91350 +-118.538746,34.426074,Bouquet Canyon & Newhall Ranch San - Santa Clarita CA (W),26441 Bouquet Canyon Road,Santa Clarita,CA,91350 +-118.475071,34.4158,Canyon Center - Santa Clarita - Santa Clarita CA (W),19435 Soledad Canyon Road,Santa Clarita,CA,91351 +-118.572016,34.389933,Vons-Valencia #2030 - Valencia CA,25850 N. The Old Road,Valencia,CA,91355 +-118.570496,34.414,"Magic Mountain & Tourney Valencia - Valencia CA (D, W)",25349 Wayne Mills Place,Valencia,CA,91355 +-118.563928,34.422876,Vons-Santa Clarita #1961 - Santa Clarita CA,27095 McBean Pkwy,Santa Clarita,CA,91355 +-118.561195,34.419575,Target Valencia T-257 - Valencia CA,24425 W. Magic Mountain Pkwy,Valencia,CA,91355 +-118.559335,34.41308,Valencia & McBean Santa Clarita - Santa Clarita CA (W),24286 Valencia Blvd.,Santa Clarita,CA,91355 +-118.555561,34.407604,Valencia - Santa Clarita CA (W),25912 McBean Parkway,Santa Clarita,CA,91355 +-118.55305,34.441727,McBean & Decoro - Valencia - Valencia CA (W),27748 West McBean Parkway,Valencia,CA,91355 +-118.540125,34.380694,Lyons & Orchard Village Newhall - Santa Clarita CA (W),24802-A Orchard Village Road,Santa Clarita,CA,91355 +-118.54671,34.428,"Copper Hill & Newhall Santa Clarita - Santa Clarita CA (D, W)",28160 Newhall Ranch Rd.,Santa Clarita,CA,91355 +-118.591166,34.432733,"I-5 & Rye Canyon Valencia - Valencia CA (D, W)",28120 The Old Road,Valencia,CA,91355 +-118.557464,34.415587,Valencia & Magic Mountain Pkwy. Val - Santa Clarita CA (W),24201 Valencia Blvd.,Santa Clarita,CA,91355 +-118.558973,34.1721,Ventura Shirley-Tarzana - Tarzana CA (W),19522 Ventura Blvd.,Tarzana,CA,91356 +-118.534417,34.168975,Vons-Tarzana #2066 - Tarzana CA,18439 Ventura Blvd.,Tarzana,CA,91356 +-118.557067,34.173055,19439 Ventura & Shirley Tarzana - Tarzana CA (D),19439 Ventura Blvd.,Tarzana,CA,91356 +-122.631129,47.517713,Safeway-Port Orchard #1082 - Port Orchard WA,3355 Bethel Rd. SE,Port Orchard,WA,91360 +-118.876997,34.179823,Village at Moorpark - Thousand Oaks CA (W),33 N. Moorpark Road,Thousand Oaks,CA,91360 +-118.866743,34.201504,Vons - Thousand Oaks #1610 - Thousand Oaks CA,1790 N. Moorpark Rd.,Thousand Oaks,CA,91360 +-118.843474,34.211337,Vons-Thousand Oaks #2092 - Thousand Oaks CA,2048 Avenida De Los Arboles,Thousand Oaks,CA,91360 +-118.867425,34.19994,Janss & Moorpark Thousand Oaks - Thousand Oaks CA (W),605 E. Janss Road,Thousand Oaks,CA,91360 +-118.825871,34.150821,Westlake - Westlake CA (W),2755 Agoura Rd.,Westlake,CA,91361 +-118.840321,34.211183,Oak Brook Shopping Center - 1000 Oa - Thousand Oaks CA (W),2072 E. Avenida De Los Arboles,Thousand Oaks,CA,91362 +-118.826462,34.159234,Northgate Centre - Thousand Oaks - Thousand Oaks CA (W),111 S. Westlake Blvd.,Thousand Oaks,CA,91362 +-118.794726,34.154239,Albertsons-Westlake Vlg #6388 - Westlake Village CA,5770 Lindero Canyon Road,Westlake Village,CA,91362 +-118.605702,34.169161,Woodland Hills - Woodland Hills CA (W),5422 Topanga Canyon Blvd.,Woodland Hills,CA,91364 +-118.605441,34.157177,Topanga Cyn & Dumetz Woodland Hill - Woodland Hills CA,4900 Topanga Canyon Blvd.,Woodland Hills,CA,91364 +-118.58493,34.167252,Target Woodland Hills T-288 - Woodland Hills CA,20801 Ventura Blvd.,Woodland Hills,CA,91364 +-118.570183,34.17121,Taft Plaza - Woodland Hills - Woodland Hills CA (W),20054 Ventura Blvd.,Woodland Hills,CA,91364 +-118.636183,34.158607,Vons-Woodland Hills #2031 - Woodland Hills CA,23381 Mulholland Dr,Woodland Hills,CA,91364 +-118.603601,34.178496,Marriott Warner Center Lobby - Woodland Hills CA,21850 Oxnard St.,Woodland Hills,CA,91367 +-118.597485,34.188335,Victory & Canoga - Woodland Hills - Woodland Hills CA (W),21504 Victory Blvd.,Woodland Hills,CA,91367 +-118.615931,34.168709,Ventura & Shoup Woodland Hills - Woodland Hills CA (W),22435 Ventura Blvd.,Woodland Hills,CA,91367 +-118.596947,34.178845,Canoga & Oxnard Woodland Hills - Woodland Hills CA (W),5960 N. Canoga Ave.,Woodland Hills,CA,91367 +-118.785821,34.185346,Kanan Rd. & Lindero Rd. - Thousand - Oak Park CA (W),706 Lindero Canyon,Oak Park,CA,91377 +-118.582625,34.419802,Valencia & I-5 Valencia - Santa Clarita CA (W),26802 The Old Road,Santa Clarita,CA,91381 +-118.573764,34.391729,Valencia Marketplace - Stevenson Ranch CA (W),25900 The Old Road,Stevenson Ranch,CA,91381 +-118.621967,34.495918,"Lake Hughes & I-5 Castaic - Castaic CA (D, W)",31777 Castaic Road,Castaic,CA,91384 +-118.4214,34.4482,Target Santa Clarita T-2030 - Santa Clarita CA,19105 Golden Valley Rd.,Santa Clarita,CA,91387 +-118.447429,34.172137,Burbank & Van Nuys Van Nuys - Van Nuys CA (W),14431 Burbank Blvd.,Van Nuys,CA,91401 +-118.448745,34.214315,Van Nuys & Michaels Van Nuys (UCO) - PANORAMA CA (W),7902 Van Nuys Blvd.,Panorama,CA,91402 +-118.466606,34.154005,Sepulveda & Ventura Sherman Oaks - Sherman Oaks CA (W),15301 Ventura Blvd.,Sherman Oaks,CA,91403 +-118.452272,34.151289,Sherman Oaks - Sherman Oaks CA (W),14622 Ventura Blvd.,Sherman Oaks,CA,91403 +-118.460778,34.152532,Ventura & Noble - Sherman Oaks - Sherman Oaks CA (W),15030 Ventura Blvd.,Sherman Oaks,CA,91403 +-118.509274,34.208393,Saticoy & Louise West Van Nuys - Van Nuys CA (W),17272 Saticoy Street,Van Nuys,CA,91406 +-118.468012,34.20177,Sherman Way & Sepulveda Van Nuys - Van Nuys CA (W),15355 Sherman Way,Van Nuys,CA,91406 +-118.422956,34.157631,Riverside & Fulton Sherman Oaks - Sherman Oaks CA (W),13351 Riverside Dr,Sherman Oaks,CA,91423 +-118.42818,34.147821,Ventura & Allott Sherman Oaks - Sherman Oaks CA (W),13535 Ventura Blvd.,Sherman Oaks,CA,91423 +-118.492014,34.157546,Encino Market Place (B&N) - Encino CA (W),16461A Ventura Blvd.,Encino,CA,91436 +-118.328315,34.19132,Victory & Empire Burbank - Burbank CA (W),1711 North Victory Place,Burbank,CA,91502 +-118.306665,34.179352,Downtown Burbank - Burbank CA (W),300 N. San Fernando Road,Burbank,CA,91502 +-118.30097,34.173343,Alameda & San Fernando - Burbank CA (W),113 East Alameda Ave.,Burbank,CA,91502 +-118.327095,34.198429,Glenoaks & Keeler Burbank - Burbank CA (W),2130 N. Glenoaks Blvd.,Burbank,CA,91504 +-118.318066,34.186795,"San Fernando & Walnut Burbank - Burbank CA (D, W)",1001 North San Fernando Blvd.,Burbank,CA,91504 +-118.346028,34.152251,Toluca Lake - Burbank CA (W),4207 Riverside Drive,Burbank,CA,91505 +-118.345726,34.155469,Oak Street & Pass Avenue - Burbank CA (W),347 N. Pass Ave.,Burbank,CA,91505 +-118.344967,34.160541,Albertsons-Burbank #6315 - Burbank CA,3830 W. Verdugo Ave.,Burbank,CA,91505 +-118.338697,34.150543,Warner Brothers Studio - Burbank CA,4000 Warner Blvd.,Burbank,CA,91505 +-118.335842,34.152352,Warner Bros Studio Plaza Lobby - Burbank CA,3400 Riverside Drive,Burbank,CA,91505 +-118.351085,34.200284,Hollywood Way &Airport Access Bur - Burbank CA (W),2555 North Hollywood Way,Burbank,CA,91505 +-118.346256,34.15479,Vons-Burbank #3083 - Burbank CA,301 N. Pass Ave.,Burbank,CA,91505 +-118.341765,34.152976,Burbank Center (aka Disney Bldg) - Burbank CA (W),3800 West Alameda Avenue,Burbank,CA,91505 +-118.314792,34.162658,Rancho Market Place - Burbank CA (W),1190 Alameda Avenue,Burbank,CA,91506 +-118.313655,34.163041,Vons-Burbank #2214 - Burbank CA,1110 Alameda Ave.,Burbank,CA,91506 +-118.326734,34.15579,Sodexho @ Disney Burbank Video / Co - Burbank CA,500 South Buena Vista Street,Burbank,CA,91521 +-118.374123,34.164676,Lankershim & Magnolia - N. Hollywoo - North Hollywood CA (W),5166 A Lankershim Blvd.,North Hollywood,CA,91601 +-118.378328,34.15794,Tujunga & Camarillo North Hollywood - North Hollywood CA (D),11331 Camarillo Street,North Hollywood,CA,91602 +-118.412433,34.144882,Ventura & Alcove - Studio City - Studio City CA (W),12824 Ventura Blvd.,Studio City,CA,91604 +-118.397556,34.143342,Studio City - Studio City CA (W),12170 Ventura Blvd.,Studio City,CA,91604 +-118.369683,34.140259,Ventura & Vineland Studio City - Studio City CA (W),10965 Ventura Blvd.,Studio City,CA,91604 +-118.396177,34.144539,Vons-Studio City #1674 - Studio City CA,4033 Laurel Canyon Blvd.,Studio City,CA,91604 +-118.406569,34.20085,Sherman & Whitsett North Hollywood - North Hollywood CA (D),12520 Sherman Way,North Hollywood,CA,91605 +-118.371356,34.188116,Target North Hollywood T-294 - North Hollywood CA,11051 Victory Blvd.,North Hollywood,CA,91606 +-118.413455,34.18638,Victory & Coldwater N. Hollywood - North Hollywood CA (W),12848 Victory Blvd.,North Hollywood,CA,91606 +-118.395886,34.15789,Laurel Canyon & Riverside North Ho - Valley Village CA (W),4800 Laurel Canyon Blvd.,Valley Village,CA,91607 +-118.359308,34.141965,Universal City Walk - Universal City CA,100 Universal City Plaza,Universal City,CA,91608 +-117.614535,34.132621,Vons-Rancho Cucamonga #2147 - Rancho Cucamonga CA,8778 19th St.,Rancho Cucamonga,CA,91701 +-117.557228,34.135355,Albertsons-Rnch Cucamon #6520 - Rancho Cucamonga CA,11358 Kenyon Way,Rancho Cucamonga,CA,91701 +-117.537758,34.135068,Day Creek & Highland Rancho Cucamo - Rancho Cucamonga CA (W),12273 Highland Avenue,Rancho Cucamonga,CA,91701 +-117.616811,34.13301,Carnelian & 19th Rancho Cucamonga - Rancho Cucamonga CA (W),8678 19th Street,Rancho Cucamonga,CA,91701 +-117.574911,34.121704,Baseline & Haven Rancho Cucamonga - Rancho Cucamonga CA (W),10540 Baseline Road,Rancho Cucamonga,CA,91701 +-117.53631,34.107666,"Day Creek & Foothill Rancho Cucamo - Rancho Cucamonga CA (D, W)",8025 Day Creek Blvd.,Rancho Cucamonga,CA,91701 +-117.907838,34.133428,Foothill & Azusa Azusa - Azusa CA (W),118 W. Foothill Blvd.,Azusa,CA,91702 +-117.889941,34.128844,Alosta & Barranca Azusa - Azusa CA (W),1119 E. Alosta Avenue,Azusa,CA,91702 +-117.937992,34.106452,"Arrow Hwy. & 4th Irwindale - Irwindale CA (D, W)",15700 Arrow Highway,Irwindale,CA,91706 +-117.978781,34.070605,Baldwin Park & Francisquito - Baldwin Park CA (W),3133 Baldwin Park Blvd.,Baldwin Park,CA,91706 +-117.958905,34.071343,"Puente & The 10 Fwy Baldwin Park - Baldwin Park CA (D, W)",14540 Baldwin Park Towne Ctr. Dr,Baldwin Park,CA,91706 +-117.967504,34.064521,"Puente & Francisquito Baldwin Park - Baldwin Park CA (D, W)",1620 Puente Avenue,Baldwin Park,CA,91706 +-117.73614,34.011261,"Chino & 71 Chino Hills - Chino Hills CA (D, W)",3210 Chino Ave.,Chino Hills,CA,91709 +-117.734277,34.001016,Albertsons-Chino Hills #6515 - Chino Hills CA,3255 Grand Ave.,Chino Hills,CA,91709 +-117.713853,33.985441,Chino Hills Pkwy. & Pipeline Chino - Chino Hills CA (W),4200 Chino Hills Parkway,Chino Hills,CA,91709 +-117.712831,33.982872,Vons-Chino Hills #2597 - Chino Hills CA,4200 Chino Hills Parkway,Chino Hills,CA,91709 +-117.695645,33.961736,Albertsons-Chino Hills #6592 - Chino Hills CA,15970 Los Serranos Ctry Club Dr,Chino Hills,CA,91709 +-117.689489,33.971213,"Central & Fairfield Ranch Road Chi - Chino Hills CA (D, W)",15463 Fairfield Ranch Road,Chino Hills,CA,91709 +-117.715875,33.996646,Grand & Pipeline Chino - Chino CA (W),4013-A Grand Avenue,Chino,CA,91710 +-117.689946,34.032861,"Central & Philadelphia Chino - Chino CA (D, W)",12150 Central Ave.,Chino,CA,91710 +-117.689826,34.026626,Central & Walnut Chino - Chino CA (W),12488 Central Avenue,Chino,CA,91710 +-117.667529,34.019978,Mountain & Riverside Chino - Chino CA (W),12867 Mountain Avenue,Chino,CA,91710 +-117.718872,34.001476,Target Chino Hills T-912 - Chino CA,3944 Grand Ave.,Chino,CA,91710 +-117.717926,34.095637,Claremont - Wells Fargo - Claremont CA (W),203 Yale Avenue,Claremont,CA,91711 +-117.703679,34.107061,Foothill & Claremont CLaremont - Claremont CA (W),665 E. Foothill Blvd.,Claremont,CA,91711 +-117.705655,34.121607,Vons-Claremont #2155 - Claremont CA,550 E. Baseline Rd.,Claremont,CA,91711 +-117.7192,34.081618,"Indian Hill & I-10 Claremont - Claremont CA (D, W)",810 S. Indian Hill Blvd.,Claremont,CA,91711 +-117.542537,33.846862,Albertsons-Corona #6796 - Corona CA,1260 E. Ontario Ave.,Corona,CA,91719 +-117.906552,34.097744,Albertsons-Covina #6597 - Covina CA,1000 N. Azusa,Covina,CA,91722 +-117.89046,34.087327,Citrus & College Covina - Covina CA (W),145 N. Citrus Avenue,Covina,CA,91723 +-117.872455,34.086081,N. Grand Ave. & Badillo St. Covina. - Covina CA (W),966 E. Badillo Street,Covina,CA,91724 +-117.612154,34.107809,Albertsons-Rnch Cucamon #6523 - Rancho Cucamonga CA,8850 Foothill Blvd.,Rancho Cucamonga,CA,91730 +-117.562366,34.106594,Rancho Cucamonga (B&N) - Rancho Cucamonga CA (W),11090 Foothill Blvd.,Rancho Cucamonga,CA,91730 +-117.592244,34.106696,"Foothill & Archibald Rancho Cucamo - Rancho Cucamonga CA (D, W)",9754 Foothill Blvd.,Rancho Cucamonga,CA,91730 +-117.568423,34.106368,"Foothill & Spruce Rancho Cucamonga - Rancho Cucamonga CA (D, W)",10831 Foothill Blvd.,Rancho Cucamonga,CA,91730 +-118.067221,34.071879,"Flair & Aerojet El Monte - El Monte CA (D, W)",9208 Flair Drive,El Monte,CA,91731 +-118.020279,34.07066,Peck Road & The 10 Fwy El Monte - El Monte CA (W),3534 Peck Road,El Monte,CA,91731 +-118.019253,34.06312,"Valley & Garvey El Monte - El Monte CA (D, W)",11979 E. Garvey Avenue,El Monte,CA,91732 +-117.532974,34.112263,Victoria Gardens Rancho Cucamonga - Rancho Cucamonga CA (W),12466 North Main Street,Rancho Cucamonga,CA,91739 +-117.864848,34.129753,Albertsons-Glendora #6601 - Glendora CA,133 West Route 66,Glendora,CA,91740 +-117.830301,34.12867,"Route 66 & Lone Hill Glendora - Glendora CA (D, W)",1832 East Route 66,Glendora,CA,91740 +-117.872041,34.136013,Foothill & Grand - Glendora - Glendora CA (W),459 W. Foothill Blvd.,Glendora,CA,91741 +-117.860117,34.136226,Vons-Glendora #2169 - Glendora CA,435 E. Foothill Blvd.,Glendora,CA,91741 +-117.967536,33.994974,Vons-Hacienda Heights #3086 - Hacienda Heights CA,2122 S. Hacienda Blvd.,Hacienda Heights,CA,91745 +-117.958578,34.019565,"Hacienda & Valley City of Industry - Hacienda Heights CA (D, W)",209 S. Hacienda Blvd.,Hacienda Heights,CA,91745 +-117.926424,33.990321,Puente Hills - Rowland Heights CA (W),17416 A Colima Road,Rowland Heights,CA,91748 +-117.918748,33.991756,Target Rowland Heights T-222 - Rowland Heights CA,17751 Colima Rd.,Rowland Heights,CA,91748 +-117.906022,33.995075,Gale & Fullerton City of Industry - Rowland Heights CA (W),18248 Gale Avenue,Rowland Heights,CA,91748 +-117.869994,33.986686,Colima Rd. & Fairway Dr. - Rowland Heights CA (W),19759 E. Colima Rd.,Rowland Heights,CA,91748 +-117.774873,34.116512,Vons - La Verne #2832 - LA VERNE CA,1500 FOOTHILL BL.,La Verne,CA,91750 +-117.759687,34.109725,Target La Verne T-226 - La Verne CA,2462 Foothill Blvd.,La Verne,CA,91750 +-117.762737,34.1125,Foothill & D Street La Verne - La Verne CA (W),2145 Foothill Blvd.,La Verne,CA,91750 +-117.78186,34.119124,"Foothill & Wheeler- La Verne - La Verne CA (D, W)",1181 Foothill Boulevard,La Verne,CA,91750 +-117.551479,33.975182,Target Mira Loma T-1961 - Mira Loma CA,12471 Limonite Ave.,Mira Loma,CA,91752 +-118.144541,34.038318,Atlantic Square - Monterey Park CA (W),2100 South Atlantic Blvd.,Monterey Park,CA,91754 +-117.562773,33.898902,Albertsons - Norco #6545 - Norco CA,1100 Hamner Ave.,Norco,CA,91760 +-117.61159,34.027045,"Vineyard & Walnut Ontario - Ontario CA (D, W)",2570 S. Vineyard Avenue,Ontario,CA,91761 +-117.547788,34.047495,"Jurupa & I-15 Ontario - Ontario CA (D, W)",4880 E. Motor Lane,Ontario,CA,91761 +-117.669073,34.086616,"Mountain & 6th Ontario - Ontario CA (D, W)",1520 N. Mountain Ave.,Ontario,CA,91762 +-117.689147,34.09022,Montclair Promenade - Montclair CA (W),9015-A Central Ave.,Montclair,CA,91763 +-117.561546,34.075803,Target Ontario T-2245 - Ontario CA,4200 E. 4th St.,Ontario,CA,91764 +-117.555308,34.07638,Ontario Mills Mall - Neighborhood 2 - Ontario CA,One Mills Circle,Ontario,CA,91764 +-117.545921,34.07524,Day Break Plaza - Ontario - Ontario CA (W),990 Ontario Mills Drive,Ontario,CA,91764 +-117.61177,34.064085,Vineyard & Holt Ontario - Ontario CA (D),111 N. Vineyard Avenue,Ontario,CA,91764 +-117.593938,34.071649,"Archibald & Inland Empire - Ontario CA (D, W)",791 N. Archibald Avenue,Ontario,CA,91764 +-117.558278,34.075581,"Milliken & 4th Ontario - Ontario CA (D, W)",1041 N. Milliken Avenue,Ontario,CA,91764 +-117.821662,34.004566,Target Diamond Bar T-2179 - Diamond Bar CA,747 Grand Ave.,Diamond Bar,CA,91765 +-117.809506,34.021528,Vons-Diamond Bar #2062 - Diamond Bar CA,240 S. Diamond Bar Blvd.,Diamond Bar,CA,91765 +-117.809,34.000265,Diamond Bar & Grand - Diamond Bar CA (W),1194 Grand Avenue,Diamond Bar,CA,91765 +-117.83781,33.974629,Diamond Bar & Cold Spring Diamond - Diamond Bar CA (D),2837 Diamond Bar Blvd.,Diamond Bar,CA,91765 +-117.800712,34.043458,Temple & Mission Pomona - Pomona CA (W),3044 Temple Avenue,Pomona,CA,91766 +-117.750532,34.05537,Garey & Mission Pomona - Pomona CA (W),101 W. Mission Blvd. Suite 106,Pomona,CA,91766 +-117.761024,34.028104,"Rio Rancho & The 71 Pomona - Pomona CA (D, W)",68 Rio Ranch Road,Pomona,CA,91766 +-117.815723,34.049757,Cal Poly Pomona Library - Pomona CA,3801 West Temple Ave.,Pomona,CA,91768 +-117.788224,34.071471,Fairplex & I-10 Pomona - Pomona CA (D),2101 Murchison Ave.,Pomona,CA,91768 +-118.09013,34.063185,San Gabriel & Garvey Rosemead - Rosemead CA (W),3000 San Gabriel Blvd.,Rosemead,CA,91770 +-118.072957,34.070947,Rosemead & The 10 Fwy Rosemead - Rosemead CA (W),3620 Rosemead Blvd.,Rosemead,CA,91770 +-117.823476,34.103573,Target San Dimas T-767 - San Dimas CA,888 W. Arrow Hwy.,San Dimas,CA,91773 +-117.81401,34.099194,Albertsons-San Dimas #6594 - San Dimas CA,SEC San Dimas & Bonita,San Dimas,CA,91773 +-117.806394,34.106429,Bonita & San Dimas San Dimas - San Dimas CA (W),114 E. Bonita Avenue,San Dimas,CA,91773 +-117.828844,34.106562,San Dimas - San Dimas CA (W),942 W. Arrow Highway,San Dimas,CA,91773 +-118.073661,34.103636,Las Tunas & Rosemead Temple City - Temple City CA (W),5705 Rosemead Blvd.,Temple City,CA,91780 +-117.640681,34.133219,Target Upland T-1834 - Upland CA,1931 N. Campus Ave.,Upland,CA,91784 +-117.636701,34.133769,Campus & 19th Upland - Upland CA (W),1943 North Campus Avenue,Upland,CA,91784 +-117.665807,34.107391,"Foothill & Mullberry Upland - Upland CA (D, W)",1013 W. Foothill Blvd.,Upland,CA,91786 +-117.652966,34.10796,Vons-Upland #2681 - Upland CA,81 West Foothill Blvd.,Upland,CA,91786 +-117.836446,34.027454,Valley & Grand Walnut - Walnut CA (W),505-A Grand Avenue,Walnut,CA,91789 +-117.927421,34.068245,"Vincent & West Covina Pkwy. West Co - West Covina CA (D, W)",333 S. Vincent Avenue,West Covina,CA,91790 +-117.924063,34.069938,West Covina (B&N) - West Covina CA (W),970 Lakes Drive,West Covina,CA,91790 +-117.88983,34.075563,Eastland Center - West Covina - West Covina CA (W),2620 E. Workman Ave.,West Covina,CA,91791 +-117.885189,34.072859,Target West Covina T-1028 - West Covina CA,2831 Eastland Ctr. Dr,West Covina,CA,91791 +-117.881874,34.072463,"Barranca & I-10 West Covina - West Covina CA (D, W)",101 N. Barranca,West Covina,CA,91791 +-117.911877,34.035345,"Azusa & Amar West Covina - West Covina CA (D, W)",2320 S. Azusa Avenue,West Covina,CA,91792 +-117.911064,34.033552,Target West Covina T-2147 - West covina CA,2370 S. Azusa Ave.,West Covina,CA,91792 +-118.128248,34.094855,Main & 1st - Alhambra - Alhambra CA (W),101 W. Main Street,Alhambra,CA,91801 +-118.114378,34.078752,Valley & Almansor Alhambra - ALHAMBRA CA (W),810 E. Valley Blvd.,Alhambra,CA,91801 +-118.152487,34.080473,Fremont Ave. & Mission Rd. - Alhambra CA (W),1131 S. Fremont Ave.,Alhambra,CA,91803 +-118.13448,34.077778,"Atlantic & Valley Alhambra - Alhambra CA (D, W)",1410 South Atlantic Blvd.,Alhambra,CA,91803 +-116.749663,32.834384,Alpine & South Grade Alpine - Alpine CA (W),2963 Alpine Blvd.,Alpine,CA,91901 +-117.033951,32.660507,Vons - Bonita #2130 - Bonita CA,4404 Bonita Rd.,Bonita,CA,91902 +-117.022734,32.66948,Bonita & Central Bonita - Bonita CA (W),5030 Bonita Road,Bonita,CA,91902 +-117.088667,32.629024,Chula Vista Center Chula Vista - Chula Vista CA (W),555 Broadway,Chula Vista,CA,91910 +-117.050625,32.639199,Von's - Chula Vista #2336 - Chula Vista CA,360 E. H St.,Chula Vista,CA,91910 +-117.000433,32.644354,Bonita Point Plaza - Chula Vista CA (W),1467 East H Street,Chula Vista,CA,91910 +-117.083564,32.649541,"4th & C Chula Vista - Chula Vista CA (D, W)",20 3rd Avenue,Chula Vista,CA,91910 +-117.089265,32.631018,"Broadway & H St. Chula Vista - Chula Vista CA (D, W)",595 H Street,Chula Vista,CA,91910 +-117.040784,32.628546,Telegraph Cany & I-805 Chula Vista - Chula Vista CA (W),519 Telegraph Canyon Road,Chula Vista,CA,91910 +-117.026407,32.614519,Medical Center & E. Palomar Chula - Chula Vista CA (W),605 E. Palomar Street,Chula Vista,CA,91911 +-117.079918,32.606331,Broadway & Oxford Chula Vista - Chula Vista CA (W),1208 Broadway,Chula Vista,CA,91911 +-116.970104,32.660636,Proctor Valley & Mt. Miquel - Chula Vista CA (W),2326 Proctor Valley Rd.,Chula Vista,CA,91914 +-116.96778,32.647343,Vons-Chula Vista #2071 - Chula Vista CA,2250 Otay Lake Rd.,Chula Vista,CA,91915 +-116.965638,32.628554,Olympic Parkway & Eastlake Chula V - San Diego CA (W),2127 Olympic Parkway,San Diego,CA,91915 +-116.965678,32.648255,Eastlake Pkwy. & Otay Lakes Chula V - Chula Vista CA (W),2295 Otay Lakes Rd.,Chula Vista,CA,91915 +-117.024421,32.765035,Vons-La Mesa #2093 - La Mesa CA,8011 University Ave.,La Mesa,CA,91941 +-117.025744,32.770492,Baltimore & El Cajon La Mesa - La Mesa CA (W),5020 Baltimore Drive,La Mesa,CA,91941 +-117.022112,32.763749,La Mesa & Spring La Mesa - La Mesa CA (W),8138 La Mesa Blvd.,La Mesa,CA,91941 +-116.962095,32.74724,Avocado & Campo La Mesa - La Mesa CA (W),3759 Avocado Blvd.,La Mesa,CA,91941 +-116.958922,32.746523,Vons-La Mesa #2365 - La Mesa CA,3681 Avocado Blvd.,La Mesa,CA,91941 +-117.032343,32.78237,Vons-La Mesa #2137 - La Mesa CA,5630 Lake Murray,La Mesa,CA,91942 +-117.014966,32.779998,Fletcher & Trolley La Mesa - La Mesa CA (W),8497 Fletcher Parkway,La Mesa,CA,91942 +-117.010081,32.779644,Grossmont Center (B&N) - La Mesa CA (W),5500 Grossmont Center Drive,La Mesa,CA,91942 +-117.039673,32.779798,"Lake Murray & Kiowa La Mesa - La Mesa CA (D, W)",5416 Lake Murray Blvd.,La Mesa,CA,91942 +-117.045052,32.743356,Albertsons-Lemon Grove #6707 - Lemon Grove CA,7090 Broadway,Lemon Grove,CA,91945 +-117.030084,32.74263,Broadway & Lemon Grove Lemon Grove - Lemon Grove CA (W),7801 Broadway,Lemon Grove,CA,91945 +-117.082027,32.678149,"Plaza & Grove (UCO) - National City CA (D, W)",2230 E. Plaza Blvd.,National City,CA,91950 +-117.080014,32.661049,Sweetwater & The 805 Fwy National - National City CA (W),1860 Sweetwater Road,National City,CA,91950 +-117.067558,32.656204,Target Natl City Plaza Bonita T-223 - National City CA,3060 Plaza Bonita Rd.,National City,CA,91950 +-117.065756,32.655925,Plaza Bonita National City - National City CA (W),3030 Plaza Bonita Road,National City,CA,91950 +-116.985646,32.747954,Campo & Conrad Spring Valley - Spring Valley CA (W),9716 Campo Road,Spring Valley,CA,91977 +-117.282583,33.021281,San Elijo & Birmingham-Cardiff - Cardiff CA (W),2081 San Elijo Avenue,Cardiff,CA,92007 +-117.351425,33.159121,Village Faire - Carlsbad - Carlsbad CA (W),2924 Carlsbad Blvd.,Carlsbad,CA,92008 +-117.326603,33.179262,Vons - Carlsbad #2142 - Carlsbad CA,2560 El Camino Real,Carlsbad,CA,92008 +-117.322617,33.126057,Carlsbad Company Stores - Carlsbad CA (W),5620 Paseo Del Norte,Carlsbad,CA,92008 +-117.268576,33.103415,Vons-Carlsbad #2065 - Carlsbad CA,6951 El Camino Real,Carlsbad,CA,92009 +-117.266387,33.102399,El Camino Real & La Costa Carlsbad - Carlsbad CA (W),7680 El Camino Real,Carlsbad,CA,92009 +-117.259592,33.132008,PalomarAirport & Loker Carlsbad - Carlsbad CA (W),2708 Loker Avenue West,Carlsbad,CA,92010 +-117.312508,33.100928,Avenida Encinas & Poinsettia - Carlsbad CA (W),7130 Avenida Encinas,Carlsbad,CA,92011 +-117.264843,32.959473,Del Mar - Del Mar CA (W),1435 Camino Del Mar,Del Mar,CA,92014 +-117.248146,32.981037,Albertsons-San Diego #6702 - Del Mar CA,2707 Via De La Valle,Del Mar,CA,92014 +-117.247499,32.948765,Vons-San Diego #2348 - San Diego CA,2606 Del Mar Heights Rd.,San Diego,CA,92014 +-116.940945,32.740213,"Jamacha & Campo El Cajon - San Diego CA (D, W)",2986 Jamacha Road,San Diego,CA,92019 +-116.93893,32.738689,Target Rancho San Diego T-1140 - El Cajon CA,2911 Jamacha Rd.,El Cajon,CA,92019 +-116.930565,32.745357,Rancho San Diego - El Cajon CA (W),2512 Jamacha Road,El Cajon,CA,92019 +-116.927883,32.786065,Jamacha & Washington El Caj - El Cajon CA (W),745 Jamacha Road,El Cajon,CA,92019 +-117.003887,32.801093,Vons-El Cajon #2064 - El Cajon CA,2800 Fletcher Pkwy,El Cajon,CA,92020 +-117.000545,32.801621,Fletcher Hills - El Cajon CA (W),2740 Fletcher Parkway,El Cajon,CA,92020 +-116.956835,32.778789,Vons - El Cajon #3044 - El Cajon CA,1201 Avocado Ave.,El Cajon,CA,92020 +-116.962232,32.820407,"Bradley & Magnolia El Cajon - El Cajon CA (D, W)",1591 N. Magnolia Ave.,El Cajon,CA,92020 +-116.96808,32.803577,Parkway Plaza - El Cajon - El Cajon CA,701 Parkway Plaza,El Cajon,CA,92020 +-116.962906,32.795236,Main & Magnolia El Cajon - El Cajon CA (W),124 W. Main Street,El Cajon,CA,92020 +-116.956666,32.780399,"Chase & Avocado El Cajon - El Cajon CA (D, W)",450 E. Chase Avenue,El Cajon,CA,92020 +-116.950618,32.807614,Broadway & Mollison El Cajon - El Cajon CA (W),903 Broadway,El Cajon,CA,92021 +-116.903583,32.824598,Vons - El Cajon #2333 - El Cajon CA,13439 Camino Canada,El Cajon,CA,92021 +-117.292015,33.040043,Encinitas II - Lumberyard - Encinitas CA (W),947 First Street,Encinitas,CA,92024 +-117.26535,33.068539,Leucadia Blvd. & Calle Barcelona E. - Encinitas CA (W),1560 Leucadia Blvd.,Encinitas,CA,92024 +-117.260679,33.051055,Vons-Encinitas #2144 - Encinitas CA,262 N. El Camino Real,Encinitas,CA,92024 +-117.260651,33.050975,Encinitas - Encinitas CA (W),258 N. El Camino Real,Encinitas,CA,92024 +-117.256483,33.033877,Encinitas Town Center (B&N) - Encinitas CA (W),1040 El Camino Real,Encinitas,CA,92024 +-117.085408,33.120997,Escondido & Valley Pkwy. Escondido - Escondido CA (W),320 W. Valley Parkway,Escondido,CA,92025 +-117.074342,33.101269,Felicita & Centre City Parkway - Escondido CA (W),1831 S. Centre City Parkway,Escondido,CA,92025 +-117.073521,33.1029,Vons-Escondido #2344 - Escondido CA,351 W. Felicita Ave.,Escondido,CA,92025 +-117.067028,33.068716,North County Fair Mall - Escondido - Escondido CA,200 East Via Rancho Parkway,Escondido,CA,92025 +-117.093698,33.127497,"Mission & Quince Escondido - Escondido CA (D, W)",603 W. Mission Ave.,Escondido,CA,92025 +-117.103511,33.110709,Valley & I-15 Escondido - Escondido CA (W),1020 West Valley Parkway,Escondido,CA,92025 +-117.106774,33.148108,Vons-Escondido #2345 - Escondido CA,1000 W. El Norte Pkwy,Escondido,CA,92026 +-117.086804,33.140705,El Norte & Centre City Escondido - Escondido CA (W),306 El Norte Parkway,Escondido,CA,92026 +-117.06159,33.132906,Valley Parkway & Harding Escondido - Escondido CA (W),1485 E. Valley Parkway,Escondido,CA,92027 +-117.059728,33.131786,Albertsons-Escondido #6713 - Escondido CA,1509 E. Valley Parkway,Escondido,CA,92027 +-117.253199,33.372172,Albertsons-Fallbrook #6786 - Fallbrook CA,1133 S. Mission Rd.,Fallbrook,CA,92028 +-117.105439,33.109142,Albertsons -- Escondido #6705 - Escondido CA,1570 W. Valley Parkway,Escondido,CA,92029 +-117.101013,33.112968,Escondido Promenade - Escondido CA (W),1282-C Auto Parkway,Escondido,CA,92029 +-117.070444,33.07102,Del Lago & Via Rancho Pkwy. Escondi - Escondido CA (W),3440 Del Lago Blvd.,Escondido,CA,92029 +-117.273769,32.848157,La Jolla - La Jolla CA (W),1150 Prospect Street,La Jolla,CA,92037 +-117.273374,32.840282,Pearl Street & Fay Ave. - La Jolla - La Jolla CA (W),905 Pearl Street,La Jolla,CA,92037 +-117.273019,32.842062,Vons-La Jolla #2323 - La Jolla CA,7544 Girard Ave.,La Jolla,CA,92037 +-117.269967,32.813919,La Jolla & Forward La Jolla - La Jolla CA (W),5604 La Jolla Blvd.,La Jolla,CA,92037 +-117.254848,32.850589,La Jolla Shores & Torrey Pines La - La Jolla CA (W),2206 Torrey Pines Road,La Jolla,CA,92037 +-117.231729,32.866411,La Jolla Village Square - La Jolla CA (W),8657 Villa La Jolla Drive,La Jolla,CA,92037 +-117.217654,32.873093,Regents & La Jolla Village La Joll - La Jolla CA (W),4150 Regents Park Row,La Jolla,CA,92037 +-117.340747,33.182489,Pacific Coast Plaza - Oceanside - Oceanside CA (W),2183 Vista Way,Oceanside,CA,92054 +-117.326224,33.182588,Oceanside - Oceanside CA (W),3125 Vista Way,Oceanside,CA,92054 +-117.331426,33.226546,"Mission & El Camino Real Oceanside - Oceanside CA (D, W)",3760 Mission Avenue,Oceanside,CA,92054 +-117.359746,33.191,"Oceanside & I-5 Oceanside - Oceanside CA (D, W)",1779 Oceanside Blvd.,Oceanside,CA,92054 +-117.296361,33.179182,Albertsons-Oceanside #6733 - Oceanside CA,3450 Marron Rd.,Oceanside,CA,92056 +-117.295548,33.180961,"College & Plaza Oceanside - Oceanside CA (D, W)",3702 Plaza Drive,Oceanside,CA,92056 +-117.285117,33.207159,Oceanside & College Oceanside - Oceanside CA (W),4176 Oceanside Blvd.,Oceanside,CA,92056 +-117.294463,33.240958,Vons-Oceanside #2360 - Oceanside CA,845 College Blvd.,Oceanside,CA,92057 +-117.293445,33.240751,North Oceanside - Oceanside CA (W),815 College Blvd.,Oceanside,CA,92057 +-117.307738,33.23149,"Old Grove & Mission Oceanside - Oceanside CA (D, W)",175 Old Grove Rd.,Oceanside,CA,92057 +-117.067459,32.951224,"Poway & Oak Knoll Poway - Poway CA (D, W)",12202 Poway Road,Poway,CA,92064 +-117.03909,32.956481,Poway & Community Rd. - Poway CA (W),13479 Poway Road,Poway,CA,92064 +-117.061923,32.983213,Pomerado & Twin Peaks Poway - Poway CA (W),14835 Pomerado Road,Poway,CA,92064 +-116.877099,33.038778,Albertsons-Ramona #6725 - Ramona CA,1459 Main St.,Ramona,CA,92065 +-117.209151,33.131181,San Marcos Blvd. & Rancho Santa Fe - San Marcos CA (W),1903 W. San Marcos Blvd.,San Marcos,CA,92069 +-117.205956,33.132412,Vons-San Marcos #2174 - San Marcos CA,671 S. Rancho Santa Fe Rd.,San Marcos,CA,92069 +-117.198318,33.149161,"Hwy. 78 & Rancho Santa Fe San Marco - San Marcos CA (D, W)",1680 Descanso Avenue,San Marcos,CA,92069 +-117.1744,33.139046,"Knoll & San Marcos San Marcos - San Marcos CA (D, W)",126 Knoll Road,San Marcos,CA,92069 +-117.164406,33.133431,Twin Oaks Valley & Discovery San M - San Marcos CA (W),342 S. Twin Oaks Valley Rd.,San Marcos,CA,92069 +-117.13874,33.140134,Albertsons -- San Marcos #6708 - San Marcos CA,151 Woodland Pkwy,San Marcos,CA,92069 +-117.121513,33.135583,Nordahl & Hwy. 78 San Marcos - San Marcos CA (W),751 Center Drive,San Marcos,CA,92069 +-116.995798,32.838573,"Mission Gorge & Carlton Hills Sant - Santee CA (D, W)",9325 Mission Gorge Road,Santee,CA,92071 +-116.987601,32.838616,Vons-Santee #1897 - Santee CA,9643 Mission Gorge Rd.,Santee,CA,92071 +-116.981682,32.838742,Cuyamaca & Mission Gorge Santee - Santee CA (W),9868 Mission Gorge Road,Santee,CA,92071 +-116.971509,32.855488,Magnolia & Mast Santee - Santee CA (W),9802 N. Magnolia Avenue,Santee,CA,92071 +-117.259009,32.995968,Solana Beach Towne Center - Solana Beach CA (W),691 Lomas Santa Fe,Solana Beach,CA,92075 +-117.255209,32.995777,Lomas Santa Fe & I-5 Solana Beach - Solana Beach CA (W),937 Lomas Santa Fe Drive,Solana Beach,CA,92075 +-117.199525,33.096686,Albertsons - San Marcos #6750 - San Marcos CA,1571 San Elijo Road S.,San Marcos,CA,92078 +-117.191057,33.143837,"Las Posas Drive & Grand San Marcos - San Marcos CA (D, W)",125 South Las Posas Rd. Suite 131,San Marcos,CA,92078 +-117.228285,33.132272,Target Vista South T-2165 - Vista CA,3150 Business Park Dr,Vista,CA,92081 +-117.253775,33.193693,Melrose & Hacienda Vista - Vista CA (W),251 S. Melrose Drive,Vista,CA,92083 +-117.2478,33.1962,Vista Village & South Santa Fe Vis - Vista CA (W),30 W. Main Street,Vista,CA,92083 +-117.241578,33.155655,Albertsons-Vista #6797 - Vista CA,1601 S. Melrose Dr,Vista,CA,92083 +-117.241517,33.156036,Melrose & Longhorn Vista - Vista CA (W),1661 S. Melrose Drive,Vista,CA,92083 +-117.218599,33.162776,Sycamore & Shadowridge Drive Vista - Vista CA (W),790 Sycamore Ave.,Vista,CA,92083 +-117.214921,33.169356,Target Vista T-1040 - Vista CA,1751 University Dr,Vista,CA,92083 +-117.226073,33.21921,"Vista & Foothill Vista - Vista CA (D, W)",1385 East Vista Way,Vista,CA,92084 +-117.164894,33.1276,CSU/San Marcos- Kellogg Cafe - San Marcos CA,555 Campus View Drive,San Marcos,CA,92096 +-117.202346,32.729494,SAN Terminal 2 - San Diego CA (A),3665 N. Harbor Drive,San Diego,CA,92101 +-117.202346,32.729494,SAN Terminal E-2 - San Diego CA (A),3665 N. Harbor Drive,San Diego,CA,92101 +-117.202346,32.729494,SAN Terminal E-5 - San Diego CA (A),3665 N. Harbor Drive,San Diego,CA,92101 +-117.202346,32.729494,SAN Terminal W-3 - San Diego CA (A),3665 N. Harbor Drive,San Diego,CA,92101 +-117.202346,32.729494,SAN Terminal 1 West Rotunda - San Diego CA (A),3665 N. Harbor Dr,San Diego,CA,92101 +-117.202346,32.729494,SAN Terminal 2 West - San Diego CA (A),3665 N. Harbor Dr,San Diego,CA,92101 +-117.202346,32.729494,SAN Terml 1-Southwest Air Conc - San Diego CA (A),3665 N. Harbor Dr,San Diego,CA,92101 +-117.19847,32.727063,Sheraton San Diego Hotel and Marina - San Diego CA,1380 Harbor Island Drive,San Diego,CA,92101 +-117.170484,32.712024,Embassy Suites San Diego Lobby - San Diego CA,601 Pacific Hwy.,San Diego,CA,92101 +-117.169753,32.726096,India & Hawthorn San Diego - San Diego CA (W),801 Hawthorn Street,San Diego,CA,92101 +-117.168996,32.716009,Broadway & Kettner San Diego - San Diego CA (W),600 West Broadway,San Diego,CA,92101 +-117.165271,32.708408,Marriott San Diego Marina - San Diego CA,333 West Harbor Drive,San Diego,CA,92101 +-117.163846,32.707885,San Diego Conv Ctr. Lobby 3rd Loc - San Diego CA,111 West Harbor Drive,San Diego,CA,92101 +-117.163846,32.707885,San Diego Conv Ctr. - Location 2 - San Diego CA,111 W. Harbor Dr,San Diego,CA,92101 +-117.163846,32.707885,San Diego Conv Ctr. - San Diego CA,111 West Harbor Drive,San Diego,CA,92101 +-117.162437,32.713654,Horton Plaza Relocation - San Diego CA,324 Horton Plaza,San Diego,CA,92101 +-117.161258,32.711414,4th & Market San Diego - San Diego CA (W),345 Market Street,San Diego,CA,92101 +-117.159289,32.717762,525 B Street - San Diego CA (W),1194 Sixth Avenue,San Diego,CA,92101 +-117.158773,32.703395,Hilton San Diego Bayfront - San Diego CA,1 Park Blvd.,San Diego,CA,92101 +-117.160335,32.730998,5th & Laurel San Diego - San Diego CA (W),2440 5th Avenue,San Diego,CA,92101 +-117.161765,32.715063,Horton Plaza II - San Diego CA (W),75 Horton Plaza,San Diego,CA,92101 +-117.159735,32.713609,5th & F Street San Diego - San Diego CA (W),511 F Street,San Diego,CA,92101 +-117.155113,32.711255,10th & Market San Diego - San Diego CA (W),1011 Market Street,San Diego,CA,92101 +-117.13388,32.718169,28th & B Street San Diego (UCO) - San Diego CA (W),1206 28th Street,San Diego,CA,92102 +-117.160388,32.747171,5TH and Robinson - San Diego CA (W),3801 Fifth Avenue,San Diego,CA,92103 +-117.153874,32.749461,University & Vermont - San Diego CA (W),1080 University Ave.,San Diego,CA,92103 +-117.151929,32.748618,University & Richmond - San Diego - San Diego CA (W),1240 University Avenue,San Diego,CA,92103 +-117.170407,32.749969,Falcon & Washington San Diego - San Diego CA (W),784 W. Washington St.,San Diego,CA,92103 +-117.130162,32.753093,Vons-San Diego #2355 - San Diego CA,4145 30th St.,San Diego,CA,92104 +-117.125099,32.748525,32nd & University San Diego - San Diego CA (W),3206 University Ave.,San Diego,CA,92104 +-117.138811,32.748444,29th & University San Diego (UCO) - San Diego CA (W),2899 University Avenue,San Diego,CA,92104 +-117.099219,32.748591,Albertsons - City Heights #6801 - San Diego CA,4421 University Ave.,San Diego,CA,92105 +-117.099807,32.748735,"Fairmount & University (UCO) - San Diego CA (D, W)",3895 Fairmount Avenue,San Diego,CA,92105 +-117.230331,32.722808,Rosecrans & Carleton SD - San Diego CA (W),1221 Rosecrans Street,San Diego,CA,92106 +-117.21791,32.735573,Vons - San Diego #2735 - San Diego CA,2495 Truxton Rd. #100,San Diego,CA,92106 +-117.216623,32.735733,Roosevelt & Rosecrans San Diego - San Diego CA (W),2401 Truxtun Road,San Diego,CA,92106 +-117.217985,32.72792,Harbor & Laning San Diego - San Diego CA (W),2556 Laning Road,San Diego,CA,92106 +-117.250573,32.746945,Newport & Bacon Ocean Beach - San Diego CA (W),4994 Newport Avenue,San Diego,CA,92107 +-117.16966,32.769552,Fashion Valley Mall - San Diego - San Diego CA (W),7007 Friars Road,San Diego,CA,92108 +-117.158139,32.770595,Frazee & Friars San Diego - San Diego CA (W),7610 Hazard Center Drive,San Diego,CA,92108 +-117.154934,32.776163,Friars Mission - San Diego CA (W),5694 Mission Center Road,San Diego,CA,92108 +-117.148612,32.770857,Park in the Valley - San Diego - San Diego CA (W),1620 Camino De La Reina,San Diego,CA,92108 +-117.102796,32.779798,"Camino Del Rio North & Mission Gorg - San Diego CA (D, W)",4262 Camino Del Rio North,San Diego,CA,92108 +-117.126136,32.782744,Friars Rd. & Fenton Pkwy. San Diego - San Diego CA (W),2245 Fenton Pkwy,San Diego,CA,92108 +-117.254727,32.794336,P.B. Marketplace - San Diego CA (W),4343 Mission Blvd.,San Diego,CA,92109 +-117.237417,32.800564,Pacific Beach - San Diego CA (W),1774-A Garnet Ave.,San Diego,CA,92109 +-117.245006,32.798577,"Garnet & Fanuel Pacific Beach - Pacific Beach CA (D, W)",1359 Garnet Avenue,Pacific Beach,CA,92109 +-117.238097,32.800414,Vons-San Diego #2116 - San Diego CA,1702 Garnet St.,San Diego,CA,92109 +-117.217392,32.75116,Vons-San Diego #2053 - San Diego CA,3645 Midway Dr,San Diego,CA,92110 +-117.207755,32.747896,Point Loma - San Diego CA (W),3305 Rosecrans Ave.,San Diego,CA,92110 +-117.197179,32.764944,Linda Vista & Napa San Diego - San Diego CA (W),5175 Linda Vista Road,San Diego,CA,92110 +-117.205076,32.751591,"Sports Arena & Rosecrans San Diego - San Diego CA (D, W)",3145 Sports Arena Blvd.,San Diego,CA,92110 +-117.181387,32.819618,Target San Diego/Balboa T-2465 - San Diego CA,5454 Balboa Ave.,San Diego,CA,92111 +-117.178922,32.818332,Vons - San Diego #2040 - San Diego CA,5555 Balboa Ave.,San Diego,CA,92111 +-117.149264,32.818641,Kearny Mesa - San Diego CA (W),4240 Kearny Mesa Blvd.,San Diego,CA,92111 +-117.153262,32.830855,"Convoy & Raytheon San Diego - San Diego CA (D, W)",4898 Convoy Street,San Diego,CA,92111 +-117.157036,32.801565,Linda Vista & Mesa College - San Diego CA (D),7625 Linda Vista Road,San Diego,CA,92111 +-117.132553,32.696236,"28th & National San Diego - San Diego CA (D, W)",2828 National Avenue,San Diego,CA,92113 +-117.085137,32.708353,"Euclid & Market San Diego - San Diego CA (D, W)",350 Euclid Avenue,San Diego,CA,92114 +-117.069954,32.771633,Aztec Shops @ College & Lindo Paseo - San Diego CA,College Ave. & Lindo Paseo,San Diego,CA,92115 +-117.065153,32.761208,Vons - San Diego #2352 - San Diego CA,6155 El Cajon Blvd.,San Diego,CA,92115 +-117.053444,32.768253,"El Cajon & 67th San Diego - San Diego CA (D, W)",6701 El Cajon Blvd.,San Diego,CA,92115 +-117.053717,32.744263,College Grove & College way San Di - San Diego CA (W),3436 College Avenue,San Diego,CA,92115 +-117.114626,32.763838,Vons - San Diego #2358 - San Diego CA,3610 Adams Ave.,San Diego,CA,92116 +-117.106618,32.763546,Adams & Marlborough - San Diego - San Diego CA (W),4134 Adams Avenue,San Diego,CA,92116 +-117.121517,32.763565,Adams & Felton San Diego - San Diego CA (W),3352 Adams Avenue,San Diego,CA,92116 +-117.20578,32.830922,Vons-San Diego #2120 - San Diego CA,4725 Clairemont Dr,San Diego,CA,92117 +-117.205043,32.829614,Clairemont Square - San Diego CA (W),4711-E Clairemont Drive,San Diego,CA,92117 +-117.200615,32.811425,Clairemont & Balboa San Diego - San Diego CA (D),3895 Clairemont Drive,San Diego,CA,92117 +-117.182233,32.819911,Genesee Plaza - San Diego CA (W),4227 Genesee Avenue,San Diego,CA,92117 +-117.163506,32.832417,Clairemont Mesa & Shawline SDiego - San Diego CA (W),7035 Clairmont Mesa Blvd.,San Diego,CA,92117 +-117.180046,32.686439,Coronado - Coronado CA (W),960 Orange Avenue,Coronado,CA,92118 +-117.00636,32.802937,Navajo & Hwy. 125 San Diego - San Diego CA (W),8898 Navajo Road,San Diego,CA,92119 +-117.098872,32.791186,Friars & Riverdale San Diego - San Diego CA (W),10406 Friars Road,San Diego,CA,92120 +-117.096461,32.792292,Vons - San Diego #2359 - San Diego CA,6555 Mission Gorge Rd.,San Diego,CA,92120 +-117.203125,32.893507,Sorrento Court - San Diego - San Diego CA (W),9430 Scranton Road,San Diego,CA,92121 +-117.202749,32.891966,Mira Mesa & Scranton San Diego - San Diego CA (W),9276 Scranton Blvd.,San Diego,CA,92121 +-117.164011,32.878973,"Miramar & Production San Diego - San Diego CA (D, W)",7030 Miramar Road,San Diego,CA,92121 +-117.172201,32.907005,Mira Mesa &Camino Santa Fe San Die - San Diego CA (W),6765 Mira Mesa Blvd. Ste. 149,San Diego,CA,92121 +-117.223798,32.862387,Vons - San Diego #2012 - San Diego CA,7788 Regents Rd.,San Diego,CA,92122 +-117.207396,32.873933,University Town Centre - San Diego CA (W),4545 La Jolla Village Dr,San Diego,CA,92122 +-117.214187,32.868857,Genesee & Nobel Dr. San Diego - San Diego CA (W),8750 Genesee Avenue,San Diego,CA,92122 +-117.216193,32.851732,Governor Dr. & Regents Rd. SD - San Diego CA (W),3202 Governor Drive,San Diego,CA,92122 +-117.154262,32.800304,Aramark-Cambridge Healthcare - San Diego CA,7910 Frost Street,San Diego,CA,92123 +-117.13204,32.831196,Clairmont Mesa & Overland San Dieg - San Diego CA (W),9211 Clairmont Mesa Blvd.,San Diego,CA,92123 +-117.115433,32.808897,Stonecrest Plaza - San Diego CA (W),3675 Murphy Canyon Road,San Diego,CA,92123 +-117.104092,32.830274,Vons - San Diego #2134 - San Diego CA,10460 Clairemont M,San Diego,CA,92124 +-117.101058,32.823042,Tierrasanta & Santo San Diego - San Diego CA (W),10601 Tierrasanta Blvd.,San Diego,CA,92124 +-117.146,32.913849,Mira Mesa Mall - San Diego CA (W),8250 Mira Mesa Blvd.,San Diego,CA,92126 +-117.144974,32.915271,Vons-San Diego #2136 - San Diego CA,8310 Mira Mesa Blvd.,San Diego,CA,92126 +-117.121744,32.915615,Albertsons-Mira Mesa #6770 - San Diego CA,10740 Westview Pkwy.,San Diego,CA,92126 +-117.120612,32.915673,Mira Mesa & I-15 San Diego - San Diego CA (W),10720 Westview Parkway,San Diego,CA,92126 +-117.110773,33.015838,Camino Del Norte & Dove Canyon San - San Diego CA (W),16621 Dove Canyon Road,San Diego,CA,92127 +-117.081692,33.023324,Rancho Bernardo & W. Bernardo - San Diego CA,11611 Rancho Bernardo Rd.,San Diego,CA,92127 +-117.075248,32.981429,Carmel Mountain - San Diego CA (W),11885 Carmel Mountain,San Diego,CA,92128 +-117.074781,33.020321,Rancho Bernardo - San Diego CA (W),11922 Bernardo Plaza Drive,San Diego,CA,92128 +-117.072693,33.020785,Vons - Rancho Bernardo #2079 - RANCHO BERNARDO CA,11986 Bernardo Plaza Dr,Rancho Bernardo,CA,92128 +-117.061973,33.018594,Rancho Bernardo & Pomerado San Die - San Diego CA (W),12469 Rancho Bernardo Road,San Diego,CA,92128 +-117.15404,32.96093,Albertsons-San Diego #6742 - San Diego CA,7895 Highland Village Place,San Diego,CA,92129 +-117.125371,32.958146,Vons-San Diego #2081 - San Diego CA,13255 Black Mountain Rd.,San Diego,CA,92129 +-117.124793,32.958469,Rancho Penasquitos - San Diego CA (W),13289-4 Black Mountain Rd.,San Diego,CA,92129 +-117.114691,32.938997,Mercy & I-15 San Diego - San Diego CA (W),9932 Mercy Road,San Diego,CA,92129 +-117.089117,32.976955,Albertsons-Carmel Mtn#6772 - San Diego CA,14340 Penasquitos Road,San Diego,CA,92129 +-117.107223,32.951198,"Rancho Penasquitos & I-15 San Dieg - San Diego CA (D, W)",12889 Rancho Penasquitos Blvd.,San Diego,CA,92129 +-117.231718,32.938705,Vons-Del Mar #2119 - Del Mar CA,3850 Valley Center Dr.,Del Mar,CA,92130 +-117.231193,32.953221,Del Mar Highlands - San Diego CA (W),3485 Del Mar Heights Rd.,San Diego,CA,92130 +-117.214807,32.921439,Carmel Mountain & E. Ocean Air SD - San Diego CA (W),4645 Carmel Mountain Rd.,San Diego,CA,92130 +-117.230121,32.937938,Carmel Creek & Valley Centre - San Diego CA (W),3881 Valley Centre Drive,San Diego,CA,92130 +-117.099188,32.935523,Scripps Ranch Village - San Diego CA (W),10625 Scripps Poway Parkway,San Diego,CA,92131 +-117.09798,32.936167,Vons-San Diego #2107 - San Diego CA,10675 Scripps Poway Pkwy,San Diego,CA,92131 +-117.100475,32.904356,Aviary & Scripps Ranch San Diego - San Diego CA (W),10000 Aviary Drive Suite A,San Diego,CA,92131 +-117.120895,32.6818,Sodexho@Naval Station 32nd. St. San - San Diego CA,2260 Callagan Hwy. Bldg. 3187,San Diego,CA,92136 +-117.1964,32.742,Marine Corps Recruit Depot - San Diego CA,3800 Chosin Avenue Bldg 10,San Diego,CA,92140 +-117.138792,32.868293,MCAS Miramar - San Diego CA,Sodexho at MCAS Miramar,San Diego,CA,92145 +-117.092535,32.585,Palm & Saturn San Diego - San Diego CA (W),635 Saturn Blvd.,San Diego,CA,92154 +-117.033008,32.581338,Palm & The 805 Fwy San Diego - San Diego CA (W),940 Dennery Road,San Diego,CA,92154 +-117.061204,32.584687,"Palm & Beyer - San Diego CA (D, W)",3320 Palm Avenue,San Diego,CA,92154 +-116.96543,32.567277,"Hwy. 905 & La Media San Diego - San Diego CA (D, W)",8299 Otay Mesa Road,San Diego,CA,92154 +-117.036424,32.543916,Camino de la Plaza & I-5 San Ysidr - San Ysidro CA (W),4201 Camino de la Plaza,San Ysidro,CA,92173 +-117.072065,32.772285,SDSU - Aztec Shops Pfieffer Lounge - San Diego CA,5500 Campenile Dr,San Diego,CA,92182 +-117.07153,32.772907,SDSU - Aztec Shops West-End Plaza - San Diego CA,5500 Campenile Dr,San Diego,CA,92182 +-116.23436,33.714588,"Hwy. 111 & Monroe Indio - Indio CA (D, W)",81952 US Highway 111,Indio,CA,92201 +-116.216589,33.739134,Super Target Indio ST-2441 - Indio CA,42625 Jackson St.,Indio,CA,92203 +-116.19752,33.727116,Fantasy Springs Casino - Indio CA,84245 Indio Springs Pkwy,Indio,CA,92203 +-116.388,33.7849,"Monterey & Dinah Shore Palm Desert - Palm Desert CA (D, W)",34300 Monterey Ave.,Palm Desert,CA,92211 +-116.356489,33.783034,Gerald Ford & Cook Palm Desert - Palm Desert CA (D),74836 Technology Drive,Palm Desert,CA,92211 +-116.297679,33.759698,"Varner & Washington Palm Desert - Palm Desert CA (D, W)",78385 Varner Road,Palm Desert,CA,92211 +-116.30406,33.742336,Washington & 42nd. Ave. Palm Deser - Palm Desert CA (W),42-175 Washington Street,Palm Desert,CA,92211 +-116.945558,33.922971,Albertsons-Banning #6512 - Banning CA,300 S. Highland Springs Ave. #7,Banning,CA,92220 +-116.901837,33.925191,"Ramsey & 22nd Street Banning - Banning CA (D, W)",2270 West Ramsey Street,Banning,CA,92220 +-116.9802,33.9232,Highland Springs & 10 Fwy Beaumont - Beaumont CA (D),1610 E. 2nd Street Market Place,Beaumont,CA,92223 +-116.977188,33.948729,Oak Valley & Beaumont Ave. - Beaumont CA (W),1420 Beaumont Avenue,Beaumont,CA,92223 +-114.605206,33.610681,"Hobsonway & Lovekin Blythe - BLYTHE CA (D, W)",745 West Hobsonway,Blythe,CA,92225 +-114.587134,33.609562,Albertsons-Blythe #6587 - Blythe CA,840 E. Hobson Way,Blythe,CA,92225 +-115.549602,32.978715,Von's - Brawley #1767 - Brawley CA,475 W. Main St.,Brawley,CA,92227 +-116.810789,33.925244,Hwy. 10 & Fields Rd. Cabazon - Cabazon CA (W),48750 Seminole Dr,Cabazon,CA,92230 +-115.498643,32.679405,"Hwy. 111 & Hwy. 98 Calexico - Calexico CA (D, W)",1113 Imperial West,Calexico,CA,92231 +-116.48088,33.788028,"Hwy. 111 & Canyon Plaza Cathedral C - Cathedral City CA (D, W)",67760 E. Palm Canyon Dr.,Cathedral City,CA,92234 +-116.477256,33.844924,"Vista Chino & Landau Cathedral Cit - Cathedral City CA (D, W)",67870 Vista Chino,Cathedral City,CA,92234 +-116.45739,33.816279,"Date Palm Centre - Cathedral City - Cathedral City CA (D, W)",69040 Ramon Road,Cathedral City,CA,92234 +-116.215323,33.700324,"Avenue 48 & Jackson Coachella - Coachella CA (D, W)",83073 Avenue 48,Coachella,CA,92236 +-116.50175,33.945188,"Palm Dr. & Two Bunch Palms - Desert Hot Springs CA (D, W)",14207 Palm Drive,Desert Hot Springs,CA,92240 +-115.570056,32.798253,Von's - El Centro #2406 - El Centro CA,750 N. Imperial Ave.,El Centro,CA,92243 +-115.569965,32.791676,"Imperial & Main El Centro - El Centro CA (D, W)",202 S. Imperial Avenue,El Centro,CA,92243 +-115.545135,32.766766,"Dogwood & I-8 El Centro - El Centro CA (D, W)",599 E. Danenberg Drive,El Centro,CA,92243 +-116.296394,33.71549,Vons-La Quinta #2175 - La Quinta CA,78-271 Highway 111,La Quinta,CA,92253 +-116.289887,33.708972,Target La Quinta T-1867 - La Quinta CA,78935 US Hwy. 111,La Quinta,CA,92253 +-116.27212,33.70716,Hwy. 111 & Jefferson La Quinta - La Quinta CA (D),79845 Highway 111,La Quinta,CA,92253 +-116.29507,33.68008,Washington & Calle Tampico La Quin - La Quinta CA (W),50-921 Washington Street,La Quinta,CA,92253 +-116.067938,33.56931,"Highway 86 & 66th Avenue Mecca - Mecca CA (D, W)",90496 66th Avenue,Mecca,CA,92254 +-116.391306,33.720727,Monterey & El Paseo Palm Desert - Palm Desert CA (W),73030 El Paseo,Palm Desert,CA,92260 +-116.382687,33.719878,El Paseo & San Pablo Palm Desert - Palm Desert CA (W),73520 El Paseo,Palm Desert,CA,92260 +-116.374109,33.757907,Marriott Desert Springs - Palm Desert CA,74855 Country Club Dr,Palm Desert,CA,92260 +-116.400505,33.724953,Target Palm Desert T-940 - Palm Desert CA,72-549 Hwy. 111,Palm Desert,CA,92260 +-116.363039,33.722004,Hwy. 111 & Deep Canyon - Palm Desert CA (W),74600 Highway 111,Palm Desert,CA,92260 +-116.547294,33.8227,Palm Springs - Palm Springs CA (W),101 S. Palm Canyon Drive,Palm Springs,CA,92262 +-116.529832,33.817211,"Sunrise & Ramon Palm Springs - Palm Springs CA (D, W)",425 S. Sunrise Way,Palm Springs,CA,92262 +-116.528582,33.84509,Albertsons-Palm Springs #6569 - Palm Springs CA,1751 N. Sunrise Way,Palm Springs,CA,92262 +-116.508221,33.823875,PSP Post Sec. Courtyard - Palm Springs CA (A),3400 East Tahquitz Canyon Way,Palm Springs,CA,92262 +-116.544304,33.812749,"Sunny Dunes & Hwy. 111 - Palm Springs CA (D, W)",682 S. Palm Canyon Dr,Palm Springs,CA,92264 +-116.494848,33.792077,Vons - Palm Springs #2384 - Palm Springs CA,4733 E. Palm Canyon,Palm Springs,CA,92264 +-116.41021,33.740579,Bob Hope Drive & Hwy. 111 Rancho Mi - Rancho Mirage CA (W),71800 HWY 111,Rancho Mirage,CA,92270 +-116.406611,33.785586,Vons-Rancho Mirage #3218 - Rancho Mirage CA,36101 Bob Hope Dr,Rancho Mirage,CA,92270 +-116.392569,33.755687,Country Club & Monterey Avenue Ran - Rancho Mirage CA (W),40101 Monterey Avenue,Rancho Mirage,CA,92270 +-116.404808,34.127091,"Highway 62 & Warren Vista Yucca Va - Yucca Valley CA (D, W)",57744 29 Palms Highway,Yucca Valley,CA,92284 +-117.399524,34.509411,"Palmdale & Hwy. 395 Adelanto - Adelanto CA (D, W)",14136 US Hwy. 395,Adelanto,CA,92301 +-117.217536,34.5276,SuperTarget - Apple Valley T-2260 - Apple Valley CA,20288 Hwy. 18,Apple Valley,CA,92307 +-117.222652,34.528088,Rancheras & Hwy. 18 Apple Valley - Apple Valley CA (W),20226 US Highway 18,Apple Valley,CA,92307 +-117.243472,34.469037,Target Apple Valley T-939 - Apple Valley CA,19201 Bear Valley Rd.,Apple Valley,CA,92308 +-117.243824,34.472927,"Apple Valley & Bear Valley Apple - Apple Valley CA (D, W)",12218 Apple Valley Road,Apple Valley,CA,92308 +-116.67351,35.3478,Fort Irwin - Ft. Irwin CA,Barstow and 8th Ft. Irwin Army and Air F,Ft. Irwin,CA,92310 +-117.088404,34.854671,"Lenwood & I-15 Barstow - Barstow CA (D, W)",2835 Lenwood Road,Barstow,CA,92311 +-116.999843,34.890617,"Main & I-15 Barstow - Barstow CA (D, W)",1620 E. Main Street,Barstow,CA,92311 +-117.088558,34.854736,2843 Lenwood Blvd. - Barstow - Barstow CA (W),2849 Lenwood Blvd.,Barstow,CA,92311 +-116.916761,34.241495,Village & Paine Big Bear Lake - Big Bear Lake CA (W),40568 Village Drive,Big Bear Lake,CA,92315 +-116.88497,34.254696,Vons-Big Bear Lake #2374 - Big Bear Lake CA,42170 Big Bear Blvd.,Big Bear Lake,CA,92315 +-116.884891,34.247788,"Big Bear & Christmas Tree Lane Big - Big Bear Lake CA (D, W)",42140 Big Bear Blvd.,Big Bear Lake,CA,92315 +-117.208827,34.247539,Jensen's Finest Foods-Blue Jay - Blue Jay CA,27264 Highway 189,Blue Jay,CA,92317 +-117.309578,34.049252,"Mt. Vernon & Washington Colton - Colton CA (D, W)",1181 S. Mount Vernon Ave.,Colton,CA,92324 +-117.30557,34.048249,"Washington & I-215 Colton - Colton CA (D, W)",1241 East Washington Street,Colton,CA,92324 +-117.488743,34.110201,Vons-Fontana #1742 - Fontana CA,7930 Cherry Ave.,Fontana,CA,92336 +-117.473148,34.151555,Target Fontana North T-1958 - Fontana CA,15272 Summit Ave.,Fontana,CA,92336 +-117.451835,34.107018,Foothill & Citrus Fontana - FONTANA CA (D),16192 FOOTHILL BLVD,Fontana,CA,92336 +-117.510444,34.122223,"Baseline & I-15 Fontana - Fontana CA (D, W)",13518 Baseline Avenue,Fontana,CA,92336 +-117.471019,34.150557,"Summit & I-15 Fontana - Fontana CA (D, W)",15270 Summit Avenue,Fontana,CA,92336 +-117.434156,34.064866,Target-Fontana T-660 - Fontana CA,16964 Slover Ave.,Fontana,CA,92337 +-117.435369,34.049233,"Sierra & Jurupa Fontana - Fontana CA (D, W)",11255 SIerra Avenue,Fontana,CA,92337 +-117.379034,34.426631,Super Target Hesperia ST-2468 - Hesperia CA,12795 Main St.,Hesperia,CA,92345 +-117.294001,34.420791,Main & C Hesperia - Hesperia CA (W),16922 Main Street,Hesperia,CA,92345 +-117.376861,34.426802,"Main & Mountain Vista Hesperia - Hesperia CA (D, W)",13166 Main Street,Hesperia,CA,92345 +-117.202595,34.120645,"Baseline & Hwy. 30 Highland - Highland CA (D, W)",27615 Baseline Street,Highland,CA,92346 +-117.293948,33.660506,Vons - Lake Elsinore #2373 - Lake Elsinore CA,31564 Grape St.,Lake Elsinore,CA,92352 +-117.225546,34.049167,"California & Barton Loma Linda - Loma Linda CA (D, W)",11245 California Street,Loma Linda,CA,92354 +-117.208803,34.062784,Redlands & Alabama Redlands - Redlands CA (W),1599 W. REDLANDS BLVD,Redlands,CA,92373 +-117.181017,34.044904,Albertsons-Redlands #6519 - Redlands CA,450 W. Cypress Ave.,Redlands,CA,92373 +-117.20757,34.072399,Target Redlands T-1869 - Redlands CA,27320 Lugonia Ave.,Redlands,CA,92374 +-117.18263,34.060793,Orange & Pearl- Redlands - Redlands CA (W),627 Orange St.,Redlands,CA,92374 +-117.181456,34.060161,Vons - Redlands #1734 - Redlands CA,522 NORTH ORANGE,Redlands,CA,92374 +-117.206803,34.071544,Lugonia & Alabama Redlands - Redlands CA (W),27512 W. Lugonia Avenue,Redlands,CA,92374 +-117.208738,34.057947,"Alabama & Orange Tree Lane Redland - Redlands CA (D, W)",1265 Alabama Street,Redlands,CA,92374 +-117.370177,34.072275,"Riverside & Valley Rialto (UCO) - Rialto CA (D, W)",1611 S. Riverside Avenue,Rialto,CA,92376 +-117.375593,34.141564,"Riverside & I-210 Rialto - Rialto CA (D, W)",2004 North Riverside,Rialto,CA,92377 +-117.365484,34.471371,Albertsons-Victorville #6530 - Victorville CA,13650-A Bear Valley Rd.,Victorville,CA,92392 +-117.340039,34.470869,Bear Valley & Cottonwood Victorvil - Victorville CA (D),14848 Bear Valley Road,Victorville,CA,92392 +-117.289972,34.47176,Vons-Victorville #2131 - Victorville CA,12199 Hesperia Rd.,Victorville,CA,92392 +-117.328038,34.506721,"Palmdale & Kentwood Victorville - Victorville CA (D, W)",15327 Palmdale Road,Victorville,CA,92392 +-117.35083,34.469985,Bear Valley & I-15 Victorville - Victorville CA (W),14329 Bear Valley Road,Victorville,CA,92392 +-117.345006,34.473443,Mall of Victor Valley - Victorville CA,14400 Bear Valley Rd.,Victorville,CA,92392 +-117.32626,34.52098,"Roy Rogers & Civic Drive Vi - Victorville CA (D, W)",15617 Roy Rogers Dr.,Victorville,CA,92394 +-117.292524,34.470372,"SWC Hesperia & Bear Valley Hesperi - Hesperia CA (D, W)",17003 Bear Valley Rd.,Hesperia,CA,92395 +-117.319515,34.509146,"7th & Green Tree Victorville - Victorville CA (D, W)",14213 7th Street,Victorville,CA,92395 +-117.070072,34.034941,Vons - Yucaipa #1796 - YUCAIPA CA,33644 Yucaipa Blvd.,Yucaipa,CA,92399 +-117.066922,34.034666,Yucaipa & Oak Glen Yucaipa - Yucaipa CA (W),33562-L Yucaipa Blvd.,Yucaipa,CA,92399 +-117.1187,34.0279,"Yucaipa & Hampton Yucaipa - Yucaipa CA (D, W)",31364 Yucaipa Blvd.,Yucaipa,CA,92399 +-117.279095,34.165605,"40th & Waterman San Bernardino - San Bernardino CA (D, W)",292 E. 40th Street,San Bernardino,CA,92404 +-117.325509,34.180282,CSU San Bernadino - Commons Bldg - San Bernardino CA,5500 University Pkwy,San Bernardino,CA,92406 +-117.325509,34.180282,CSU San Bernadino - Student Union Rel - San Bernardino CA,5500 University Pkwy,San Bernardino,CA,92406 +-117.361372,34.192209,"Little League & I-215 - San Bernardino CA (D, W)",3225 Little League Drive,San Bernardino,CA,92407 +-117.331505,34.167013,University & I-215 San Bernadino - San Bernadino CA (W),4275 N. University Parkway,San Bernadino,CA,92407 +-117.283559,34.063064," I-10 & Waterman San Bernardino - San Bernardino CA (D, W)",126 E. Redlands Blvd.,San Bernardino,CA,92408 +-117.26172,34.069639,Tippecanoe & Hospitality San Berna - San Bernardino CA (W),1760 S. Tippecanoe Ave.,San Bernardino,CA,92408 +-117.296771,34.102462,"2nd & F Street SanBernardino - SAN BERNARDINO CA (D, W)",601 W. 2ND ST,San Bernardino,CA,92410 +-117.372513,33.987277,3rd & Market Riverside - Riverside CA (W),3311 Market Street,Riverside,CA,92501 +-117.470379,33.895613,"La Sierra & Indiana Riverside - Riverside CA (D, W)",3312 La Sierra Ave.,Riverside,CA,92503 +-117.45631,33.9058,Galleria @ Tyler Mall - Riverside CA (W),2264 Galleria at Tyler,Riverside,CA,92503 +-117.135862,33.508294,Rancho California & Ynez Temecula - Temecula CA (W),29588 Rancho California Road,Temecula,CA,92503 +-117.454368,33.945496,Van Buren & Arlington Riverside - Riverside CA (W),6390 Van Buren Blvd.,Riverside,CA,92503 +-117.46118,33.911512,Magnolia & Tyler Center Riverside - Riverside CA (W),3782 Tyler Street,Riverside,CA,92503 +-117.494546,33.898522,"Pierce & 91 Fwy Riverside - Riverside CA (D, W)",3950 Pierce Street,Riverside,CA,92503 +-117.41616,33.946169,"Arlington & Streeter Riverside - Riverside CA (D, W)",5201 Arlington Avenue,Riverside,CA,92504 +-117.557077,33.97651,Vons-Riverside #2688 - Riverside CA,6170 Hamner Ave.,Riverside,CA,92505 +-117.386598,33.945721,"Arlington & 91 Fwy Riverside - Riverside CA (D, W)",3434 Arlington Avenue,Riverside,CA,92506 +-117.362439,34.020605,Vons-Riverside #2659 - Riverside CA,3520 Riverside Ave.,Riverside,CA,92506 +-117.397066,33.946286,"Arlington & Brockton Riverside - Riverside CA (D, W)",3707 Arlington Avenue,Riverside,CA,92506 +-117.338184,33.977002,University & Iowa - Riverside - Riverside CA (W),1201 University Avenue,Riverside,CA,92507 +-117.339363,33.98271,"Blaine & Iowa Riverside - Riverside CA (D, W)",1280 W. Blaine Street,Riverside,CA,92507 +-117.33179,33.95667,Canyon Crest & Central Riverside - Riverside CA (W),5225 Canyon Crest Drive,Riverside,CA,92507 +-117.366244,33.882381,Van Buren & King Riverside - Riverside CA (D),16810 Van Buren Blvd.,Riverside,CA,92508 +-117.330608,33.887377,Wood & Van Buren Riverside - Riverside CA (W),19040 Van Buren Blvd.,Riverside,CA,92508 +-117.323647,33.889607,Albertsons-Riverside #6514 - Riverside CA,8938 Trautwein Rd.,Riverside,CA,92508 +-117.459648,33.976711,Clay & Limonite Riverside - Riverside CA (W),8022 Limonite Ave.,Riverside,CA,92509 +-117.366495,33.68615,Albertsons-Lake Elsinore #6798 - Lake Elsinore CA,30901 Riverside Dr,Lake Elsinore,CA,92530 +-117.34227,33.688961,Target Lake Elsinore T-2195 - Lake Elsinore CA,18287 Collier Ave.,Lake Elsinore,CA,92530 +-117.297839,33.653398,Albertsons-Lk Elsinore #6789 - Lake Elsinore CA,32281 Mission Trail,Lake Elsinore,CA,92530 +-117.342078,33.690302,Collier & Central Lake Elsinore - Lake Elsinore CA (W),18285 Collier Avenue,Lake Elsinore,CA,92530 +-117.2584,33.6651,Railroad Canyon Rd. & Canyon HIlls - Lake Elsinore CA (W),29991 Canyon Hills Road,Lake Elsinore,CA,92532 +-117.296935,33.662802,"Grape & Railroad Canyon Road Lake - Lake Elsinore CA (D, W)",31800 Grape Street,Lake Elsinore,CA,92532 +-116.972307,33.729434,"Stetson & State Hemet - Hemet CA (D, W)",150 W. Stetson Avenue,Hemet,CA,92543 +-116.979119,33.747123,"Florida & Palm Hemet - Hemet CA (D, W)",889 W. Florida Ave.,Hemet,CA,92543 +-117.008996,33.745916,Target Hemet T-761 - Hemet CA,3527 W. Florida Ave.,Hemet,CA,92545 +-116.996317,33.747684,"Florida & Kirby Hemet - Hemet CA (D, W)",2350 W. Florida Avenue,Hemet,CA,92545 +-117.278752,33.940323,"Day & The 60 Fwy Moreno Valley - Moreno Valley CA (D, W)",12430 Day Street,Moreno Valley,CA,92553 +-117.262128,33.938858,Frederick & Hwy. 60 Moreno Valley - Moreno Valley CA (W),12515 Frederick Street,Moreno Valley,CA,92553 +-117.18971,33.938024,Super Target Moreno Valley East ST- - Moreno Valley CA,27100 Eucalyptus,Moreno Valley,CA,92555 +-117.1789,33.935618,"Moreno Beach & Hwy. 60 Moreno Valle - Moreno Valley CA (D, W)",12751 Moreno Beach Drive,Moreno Valley,CA,92555 +-117.225146,33.944405,Hemlock & Perris Moreno Valley - Moreno Valley CA (W),12190 Perris Blvd.,Moreno Valley,CA,92557 +-117.206582,33.566004,California Oaks Road & I-15 Murrie - Murrietta CA (W),41032 California Oaks Rd.,Murrietta,CA,92562 +-117.182333,33.571722,Los Alamos & Hancock Murrieta - Murrieta CA (W),25030 Hancock Avenue,Murrieta,CA,92562 +-117.176265,33.59886,Target Murrieta North T-2499 - Murrieta CA,27818 Clinton Keith Rd.,Murrieta,CA,92562 +-117.234397,33.572268,Washington & Calle Del Oso Oro Mur - Murrieta CA (W),23811 Washington Ave. Ste. 101,Murrieta,CA,92562 +-117.175906,33.598928,Clinton Keith & The 215 Fwy Murrie - Murrieta CA (D),27890 Clinton Keith Road,Murrieta,CA,92562 +-117.195778,33.552948,"Madison & Los Alamos Murri - Murrieta CA (D, W)",25175 Madison Ave.,Murrieta,CA,92562 +-117.184193,33.556116,"Murrieta Hot Springs & Hancock Mur - Murrieta CA (D, W)",40735 Murrieta Hot Springs Rd.,Murrieta,CA,92562 +-117.139057,33.551284,Albertsons - Temecula #6734 - Murrieta CA,39140 Winchester Rd.,Murrieta,CA,92563 +-117.130009,33.58101,Vons-Murrieta #2660 - Murrieta CA,38995 Sky Canyon Dr,Murrieta,CA,92563 +-117.190508,33.745667,"I-215 & Ethanac Perris - Perris CA (D, W)",3150 Case Road,Perris,CA,92570 +-117.229375,33.802582,Nuevo & I-215 Perris - Perris CA (W),1688 North Perris Blvd.,Perris,CA,92571 +-117.224116,33.845196,"Ramona Expressway & Perris Perris - Perris CA (D, W)",120 E. Ramona Expressway,Perris,CA,92571 +-117.006142,33.773864,"Sanderson & Esplanade San Jacinto - San Jacinto CA (D, W)",2281 W. Esplanade Ave.,San Jacinto,CA,92582 +-116.972043,33.803487,"State & Ramona Expressway - San Jacinto CA (D, W)",1211 N. State Street,San Jacinto,CA,92583 +-117.173479,33.680476,Super Target Menifee ST-2471 - Menifee CA,30340 Haun Rd.,Menifee,CA,92584 +-117.175507,33.683356,Haun & Newport Menifee - Menifee CA,30010 Haun Road,Menifee,CA,92584 +-117.205539,33.6853,Albertsons-Sun City #6791 - Sun City CA,26100 Newport Road,Sun City,CA,92586 +-117.126881,33.509871,Albertsons-Temecula #6706 - Temecula CA,30530 Rancho California Rd.,Temecula,CA,92590 +-117.151463,33.495595,Old Town Front & 6th Temecula - Temecula CA (W),28459 Old Town Front Street,Temecula,CA,92590 +-117.167875,33.523754,Jefferson & Winchester Temecula - Temecula CA (W),27315 Jefferson Avenue,Temecula,CA,92590 +-117.15882,33.525542,Promenade In Temecula Temecula - Temecula CA (W),40820 Winchester Road,Temecula,CA,92591 +-117.155768,33.528542,Winchester Marketplace - Temecula CA (W),40695 Winchester Road,Temecula,CA,92591 +-117.149956,33.505032,Temecula - Temecula CA (W),27501 Ynez Avenue,Temecula,CA,92591 +-117.096727,33.517996,Rancho California & Meadows - Temecula CA (W),31867 Rancho California Rd.,Temecula,CA,92591 +-117.143853,33.540403,Winchester & Nicholas Temecula - Temecula CA (D),39848 Winchester Road,Temecula,CA,92591 +-117.1008,33.48073,Albertsons-Temecula #6753 - Temecula CA,31960 Hwy. 79,Temecula,CA,92592 +-117.092924,33.48238,Hwy. 79 & Meadows Pkwy. Temecula - Temecula CA (W),32240 Highway 79 South,Temecula,CA,92592 +-117.127583,33.475284,"Hwy. 79 & Pechanga Temecula - Temecula CA (D, W)",30571 Highway 79 S.,Temecula,CA,92592 +-117.247767,33.593207,"Clinton Keith & Hidden Springs - Wildomar CA (D, W)",32080 Clinton Keith Road,Wildomar,CA,92595 +-117.243439,33.596193,Albertsons - Wildomar #6735 - Wildomar CA,23805 Clinton Keith Rd.,Wildomar,CA,92595 +-117.243039,33.595231,"Clinton Keith Road & Hwy. 15 Wildom - Wildomar CA (D, W)",23823 Clinton Keith Road,Wildomar,CA,92595 +-117.124331,33.591658,"Winchester & Benton Winchester - Winchester CA (D, W)",30628 Benton Road,Winchester,CA,92596 +-117.77075,33.648056,Quail Hill & Shady Canyon Irvine - Irvine CA (W),6783 Quail Hill Parkway,Irvine,CA,92603 +-117.789043,33.671372,Alton Square - Irvine - Irvine CA (W),5365-B Alton Parkway,Irvine,CA,92604 +-117.786791,33.705756,Walnut Village - Irvine CA (W),14437 Culver Drive,Irvine,CA,92604 +-117.813435,33.682058,Albertsons-Irvine #6596 - Irvine CA,3825 Alton Pkwy,Irvine,CA,92606 +-117.811534,33.681004,Alton & Culver Irvine - Irvine CA (W),3995 Alton Pkwy,Irvine,CA,92606 +-117.663592,33.678331,Target Foothill Ranch T-913 - Foothill Ranch CA,26792 Portola Pkwy,Foothill Ranch,CA,92610 +-117.85411,33.642696,Bison & California Irvine - Irvine CA (W),5171 California Ave.,Irvine,CA,92612 +-117.849848,33.678176,Marriott Irvine - Lobby - Irvine CA,18000 Von Karman,Irvine,CA,92612 +-117.845364,33.671515,Park Place - Irvine - Irvine CA,2961 Michelson Drive,Irvine,CA,92612 +-117.854827,33.686678,MacArthur & Main Irvine - Irvine CA (W),17913 MacArthur Blvd.,Irvine,CA,92614 +-117.763488,33.668454,Irvine Center Drive & Sand Canyon - Irvine CA (W),6580 Irvine Center Drive,Irvine,CA,92618 +-117.76563,33.657023,Alton Technology - Irvine - Irvine CA (W),15342 Alton Parkway,Irvine,CA,92618 +-117.747099,33.651689, Irvine Spectrum Irvine - Irvine CA (W),55 Fortune Drive,Irvine,CA,92618 +-117.74557,33.65009,Target Irvine/Spectrum T-2128 - Irvine CA,115 Fortune Dr,Irvine,CA,92618 +-117.7507,33.6527,Spectrum & Irvine Center Dr. Irvine - Irvine CA (W),38 Prism,Irvine,CA,92618 +-117.76338,33.735428,Vons - Irvine #2822 - IRVINE CA,3901 Portola Pkwy,Irvine,CA,92620 +-117.735918,33.69709,Sand Canyon & Irvine Blvd. Irvine - Irvine CA (W),6364 Irvine Blvd.,Irvine,CA,92620 +-117.773743,33.723452,Culver & Irvine Irvine - Irvine CA (W),3997 Irvine Blvd.,Irvine,CA,92620 +-117.764732,33.693757,Jeffrey & Trabuco Irvine - Irvine CA (W),14061 Jeffrey Road,Irvine,CA,92620 +-117.872894,33.600546,Corona Del Mar - Corona Del Mar CA (W),2801 East Coast Hwy.,Corona Del Mar,CA,92625 +-117.919757,33.672173,Harbor & Adams - Costa Mesa - Costa Mesa CA (W),2701 Harbor Blvd.,Costa Mesa,CA,92626 +-117.917897,33.681016,Harbor & Baker Costa Mesa - Costa Mesa CA (W),3030 Harbor Blvd.,Costa Mesa,CA,92626 +-117.911426,33.668707,Orange Coast College - Costa Mesa CA,2701 Fairview Road,Costa Mesa,CA,92626 +-117.90633,33.680515,Fairview & Baker - Costa Mesa CA,1170 W. Baker Street,Costa Mesa,CA,92626 +-117.895934,33.689505,Metro Point - Costa Mesa CA (W),901 South Coast Drive,Costa Mesa,CA,92626 +-117.887026,33.691643,Bristol & I-405 Costa Mesa - Costa Mesa CA (W),3333 Bristol Street,Costa Mesa,CA,92626 +-117.877915,33.690074,Anton & Sakioka Costa Mesa - Costa Mesa CA (W),545 Anton Blvd.,Costa Mesa,CA,92626 +-117.918298,33.657969,Harbor & Wilson Costa Mesa - Costa Mesa CA (W),2300 Harbor Blvd.,Costa Mesa,CA,92626 +-117.922551,33.633425,17th & Newport Blvd. - Costa Mesa - Costa Mesa CA (W),1696 Newport Blvd.,Costa Mesa,CA,92627 +-117.916552,33.63432,17th & Westminster - Costa Mesa CA,250 E. 17th Street Suite A,Costa Mesa,CA,92627 +-117.897033,33.662464,Newport & Del Mar Costa Mesa - Costa Mesa CA (W),2590 Newport Blvd. Suite A,Costa Mesa,CA,92627 +-117.698073,33.489681,Golden Lantern & Camino de Avion D - Dana Point CA (W),32515 Golden Lantern Street,Dana Point,CA,92629 +-117.687576,33.465175,Albertsons-Dana Point #6558 - Dana Point CA,33601 Del Obispo,Dana Point,CA,92629 +-117.703556,33.466456,"PCH and Granada - Dana Point CA (D, W)",34122 South Pacific Coast Highway,Dana Point,CA,92629 +-117.723957,33.485355,PCH & Crown Valley Dana Point - Dana Point CA (W),32880 Pacific Coast Highway,Dana Point,CA,92629 +-117.701632,33.655454,Bake & Trabuco - Lake Forest CA (W),24531-A Trabuco Road,Lake Forest,CA,92630 +-117.68899,33.64544,Lake Forest & Dimension Lake Fores - Lake Forest CA (D),20790 Lake Forest Drive,Lake Forest,CA,92630 +-117.678459,33.638627,Lake Forest - Sycamore Plaza - Lake Forest CA (W),22331-A El Toro Road,Lake Forest,CA,92630 +-117.65306,33.671211,Portola & Glenn Ranch Rd. Foothill - Lake Forest CA (W),27412 Portola Parkway,Lake Forest,CA,92630 +-117.705023,33.629554,Muirlands & Ridge Route Lk Forest - Lake Forest CA (W),24301 Muirlands Blvd.,Lake Forest,CA,92630 +-117.988489,33.676759,Newland Center - Huntington Beach CA (W),19694 Beach Blvd.,Huntington Beach,CA,92646 +-117.972665,33.658107,Vons-Huntington Beach #3160 - Huntington Beach CA,8891 Atlanta Ave.,Huntington Beach,CA,92646 +-117.970139,33.658473,Atlanta & Magnolia Huntington Beac - Huntington Beach CA (W),9021 Atlanta Ave.,Huntington Beach,CA,92646 +-117.955656,33.671068,Target Huntington Beach T-2051 - Huntington Beach CA,9882 Adams Ave.,Huntington Beach,CA,92646 +-117.953441,33.6727,"Brookhurst & Adams Huntington Beac - Huntington Beach CA (D, W)",10001 Adams Avenue,Huntington Beach,CA,92646 +-117.99149,33.732085,Huntington Beach (B&N) - Huntington Beach CA (W),7881 Edinger Ave.,Huntington Beach,CA,92647 +-118.015305,33.744052,Bolsa & Edwards Huntington Beach - Huntington Beach CA (W),6502 Bolsa Avenue,Huntington Beach,CA,92647 +-118.00381,33.679245,Goldenwest & Yorktown H.B. - Huntington Beach CA (W),7101 Yorktown,Huntington Beach,CA,92648 +-118.00331,33.679436,Albertsons - Huntington Beach #6110 - Huntington Beach CA,7201 W. Yorktown Ave.,Huntington Beach,CA,92648 +-118.00219,33.679245,Albertsons-Huntngtn Bch #6110 - Huntington Beach CA,7201 W. Yorktown Ave.,Huntington Beach,CA,92648 +-118.000613,33.658919,Huntington Beach - Huntington Beach CA (W),221 Main Street,Huntington Beach,CA,92648 +-117.986949,33.677144,Albertsons-Huntngtn Bch #6124 - Huntington Beach CA,19640 Beach Blvd.,Huntington Beach,CA,92648 +-117.988653,33.687658,"Beach & Garfield Huntington Beach - Huntington Beach CA (D, W)",18922 Beach Blvd.,Huntington Beach,CA,92648 +-118.010324,33.663139,"PCH & Anderson Huntington Beach - Huntington Beach CA (D, W)",16470 Pacific Coast Hwy.,Huntington Beach,CA,92649 +-118.041426,33.722354,Bolsa Chica & Heil Huntington Beac - Huntington Beach CA (D),16471 Bolsa Chica Street,Huntington Beach,CA,92649 +-117.793402,33.546844,Vons - Laguna Beach #2089 - Laguna Beach CA,600 N. Pacific Coast,Laguna Beach,CA,92651 +-117.784402,33.542268,Laguna Beach - Laguna Beach CA (W),184 S. Coast Hwy.,Laguna Beach,CA,92651 +-117.785965,33.543181,Laguna Beach II - Laguna Beach CA (W),180 N. Coast Hwy.,Laguna Beach,CA,92651 +-117.730776,33.609086,Laguna Hills (El Toro/Calle Sonora) - Laguna Hills CA (W),24338 El Toro Road,Laguna Hills,CA,92653 +-117.713485,33.612227,El Toro & Paseo de Valencia Laguna - Laguna Woods CA (W),24100 El Toro Road,Laguna Woods,CA,92653 +-117.707564,33.568815,Aliso Viejo - Aliso Viejo CA (W),27072 La Paz Road,Aliso Viejo,CA,92653 +-117.680847,33.595584,La Paz & Cabot Laguna Hills - Laguna Hills CA (W),25912 La Paz Road,Laguna Hills,CA,92653 +-117.703884,33.584454,Alicia Pkwy. & Paseo De Valencia - Laguna Hills CA (W),25630 Alicia Parkway,Laguna Hills,CA,92653 +-117.721403,33.587435,Aliso Creek & Aliso Viejo Pkwy. - Aliso Viejo CA (W),23411 Aliso Viejo Pkwy,Aliso Viejo,CA,92656 +-117.836213,33.585129,Newport Coast & San Joaquin Hills - Newport Coast CA (W),21155 Newport Coast Drive,Newport Coast,CA,92657 +-117.834307,33.5697,Crystal Cove & PCH Newport Coast - Newport Beach CA (W),7958 Pacific Coast Highway,Newport Beach,CA,92657 +-117.827735,33.606904,Vons - Newport #1911 - Newport Coast CA,21181 Newport Coast Dr,Newport Coast,CA,92657 +-117.908546,33.628348,Westcliff Plaza - Newport Beach CA (W),1128 Irvine Avenue,Newport Beach,CA,92660 +-117.879224,33.616907,Marriott Newport Beach Lobby - Newport Beach CA,900 Newport Center Dr,Newport Beach,CA,92660 +-117.872521,33.616767,Fashion Island - Newport Beach CA (W),549 Newport Center Dr,Newport Beach,CA,92660 +-117.864859,33.656688,Jamboree & Bristol - Newport Beach CA,3601 Jamboree Road,Newport Beach,CA,92660 +-117.864561,33.655919,Bristol & Jamboree Newport Beach - Newport Beach CA (W),1000 North Bristol St.,Newport Beach,CA,92660 +-117.864544,33.671291,Mac Arthur & Campus - Newport Beach CA (W),4678 Campus Drive,Newport Beach,CA,92660 +-117.856629,33.66384,Jamboree & Birch Newport Beach - Newport Beach CA (W),4551 Jamboree Road,Newport Beach,CA,92660 +-117.85003,33.626335,Vons-Newport Beach #1912 - Newport Beach CA,2660 San Miguel Dr,Newport Beach,CA,92660 +-117.889591,33.606884,Balboa Island - Newport Beach CA (W),226 Marine Drive,Newport Beach,CA,92662 +-117.930161,33.618674,Via Lido - Newport Beach CA (W),3465 Via Lido,Newport Beach,CA,92663 +-117.923199,33.620224,W. Coast Hwy. & Riverside N.B. - Newport Beach CA (W),2700 W. Coast Highway,Newport Beach,CA,92663 +-117.922764,33.61963,PCH & Bayside Newport Beach - Newport Beach CA (W),377 East Pacific Coast Highway,Newport Beach,CA,92663 +-117.613715,33.444518,Albertsons-San Clemente #6509 - San Clemente CA,804 Avenida Pico,San Clemente,CA,92672 +-117.611386,33.425865,300 S. El Camino Real - San Clement - San Clemente CA (W),300 S. El Camino Real,San Clemente,CA,92672 +-117.603219,33.456373,Albertsons-San Clemente #6563 - San Clemente CA,989 Avenida Pico,San Clemente,CA,92673 +-117.600547,33.456795,Pico & La Pata San Clemente - San Clemente CA (W),1001 Avenida Pico,San Clemente,CA,92673 +-117.652169,33.458671,San Clemente - San Clemente CA (W),638 Camino de los Mares,San Clemente,CA,92673 +-117.675443,33.472208,Camino Capistrano & Ortega Hwy. - San Juan Capistrano CA,31760 Camino Capistrano,San Juan Capistrano,CA,92675 +-117.66207,33.497438,San Juan Capistrano - San Juan Capistrano CA (W),32022 Camino Capistrano,San Juan Capistrano,CA,92675 +-117.653881,33.504505,Ortega Hwy. & Rancho Viejo San Juan - San Juan Capistrano CA (W),27211 Ortega Hwy.,San Juan Capistrano,CA,92675 +-117.755912,33.514742,Albertsons-South Laguna #6575 - South Laguna CA,30922 Pacific Coast Hwy.,South Laguna,CA,92677 +-117.716974,33.526513,Laguna Niguel - Laguna Niguel CA,30065 Alicia Pkwy,Laguna Niguel,CA,92677 +-117.714171,33.523097,Crown Valley Pkwy. & Alicia Pkwy. - Laguna Niguel CA (W),30242 Crown Valley Parkway,Laguna Niguel,CA,92677 +-117.713877,33.522685,Vons-Laguna Niguel #1676 - Laguna Niguel CA,30252 Crown Valley Pkwy,Laguna Niguel,CA,92677 +-117.713699,33.566141,Safeway-Laguna Niguel #2508 - Laguna Niguel CA,27320 Alicia Pkwy,Laguna Niguel,CA,92677 +-117.710826,33.556633,La Paz & Aliso Creek - Laguna Nigue - Laguna Niguel CA (W),27931 La Paz Road,Laguna Niguel,CA,92677 +-117.685691,33.524606,Golden Lantern & Marina Hills Lagu - Laguna Niguel CA (W),30211 Golden Lantern,Laguna Niguel,CA,92677 +-117.715157,33.56676,Alicia & Pacific Park Laguna Nigue - Laguna Niguel CA (W),27020 Alicia Parkway,Laguna Niguel,CA,92677 +-117.576454,33.647713,Albertsons-Trabuco Cyn #6521 - Trabuco Canyon CA,21672 Plan Trabuco Road,Trabuco Canyon,CA,92679 +-118.023976,33.758483,Springdale & Westminster Westminst - Westminster CA (W),14022 Springdale Street,Westminster,CA,92683 +-118.012066,33.745668,Target Westminster NW T-2304 - Westminster CA,200 Westminster Mall,Westminster,CA,92683 +-117.989084,33.726064,Beach & McDonald - Westminster - Westminster CA (W),16302 Beach Blvd.,Westminster,CA,92683 +-117.987572,33.724209,Pavillions - Westminster #2206 - Westminster CA,16450 Beach Blvd.,Westminster,CA,92683 +-118.006942,33.772133,"Goldenwest & Natal Westminster - Westminster CA (D, W)",13102 Goldenwest Street,Westminster,CA,92683 +-117.989229,33.758965,Beach & Westminster - Westminster CA (W),14002 Beach Blvd.,Westminster,CA,92683 +-117.646279,33.563483,Albertsons - Mssn Viejo #6552 - Rancho Santa Margarita CA,27702 Crown Valley Pkwy,Rancho Santa Margarita,CA,92688 +-117.59156,33.636701,Vons-Rancho Santa Marg. #2217 - Rancho Santa Margarita CA,22451 Antonio Pkwy.,Rancho Santa Margarita,CA,92688 +-117.580958,33.648581,Rancho Santa Margarita - Rancho Santa Margarita CA (W),31437 Santa Margarita Parkway,Rancho Santa Margarita,CA,92688 +-117.591427,33.637781,Antonio & La Promesa Rancho Sant - Rancho Santa Margarita CA (W),22421 Antonio Parkway,Rancho Santa Margarita,CA,92688 +-117.598332,33.643402,Target Rancho Santa Margarita T-914 - Rancho Santa Margarita CA,30602 Santa Margarita Pkwy,Rancho Santa Margarita,CA,92688 +-117.5912,33.6531,Santa Margarita Pkwy. & 241 - Rancho Santa Margarita CA (W),30465 Avenida De Las Flores,Rancho Santa Margarita,CA,92688 +-117.63262,33.582952,Oso & Antonio Mission Viejo - Rancho Santa Margarita CA (W),28562 Oso Parkway,Rancho Santa Margarita,CA,92688 +-117.665408,33.581924,Oso & I-5 Mission Viejo - Mission Viejo CA (W),26342 Oso Parkway,Mission Viejo,CA,92690 +-117.677916,33.600176,Albertsons-Mssn Viejo #6517 - Mission Viejo CA,25872 Muirlands Blvd.,Mission Viejo,CA,92691 +-117.675045,33.618314,Mission Viejo - Mission Viejo CA (W),24012 Alicia Parkway,Mission Viejo,CA,92691 +-117.674201,33.619136,Albertsons - Mssn Viejo #6549 - Mission Viejo CA,23702 Alicia Pkwy,Mission Viejo,CA,92691 +-117.673895,33.601288,La Paz - Mission Viejo CA,26137 La Paz Road,Mission Viejo,CA,92691 +-117.66689,33.6101,Target Mission Viejo N. - Mission Viejo CA,25565 Los Alisos Blvd.,Mission Viejo,CA,92691 +-117.644593,33.651533,Mission Viejo II - Mission Viejo CA (W),27698 Santa Margarita Parkway,Mission Viejo,CA,92691 +-117.657909,33.585809,Pavillions-Mission Viejo #2210 - Mission Viejo CA,26022 Marguerite Parkway,Mission Viejo,CA,92692 +-117.670517,33.55376,"Marguerite & Avery Mission Viejo - Mission Viejo CA (D, W)",28391 Marguerite Parkway,Mission Viejo,CA,92692 +-117.630136,33.565613,Vons-Ladera Ranch #2703 - Ladera Ranch CA,25636 Crown Valley Pkwy,Ladera Ranch,CA,92694 +-117.646279,33.563483,Crown Valley & Cecil Pasture Lad - Ladera Ranch CA (W),27702 Crown Valley Pkwy,Ladera Ranch,CA,92694 +-117.842316,33.648852,University of California-Irvine - Irvine CA,203 B Student Ctr,Irvine,CA,92697 +-117.869928,33.748241,4th & Broadway Santa Ana - Santa Ana CA (W),301 W. 4th Street,Santa Ana,CA,92701 +-117.853015,33.759858,"17th & Grand Santa Ana - Santa Ana CA (D, W)",1248 East 17th Street,Santa Ana,CA,92701 +-117.885609,33.698884,Vons - Santa Ana #1626 - Santa Ana CA,3650 Bristol St.,Santa Ana,CA,92704 +-117.884906,33.715862,"Bristol & Warner Santa Ana - Santa Ana CA (D, W)",2303 S. Bristol Street,Santa Ana,CA,92704 +-117.920053,33.737972,"Harbor & McFadden Santa Ana - Santa Ana CA (D, W)",721 S. Harbor Blvd.,Santa Ana,CA,92704 +-117.8854,33.701998,Bristol & MacArthur Santa Ana - Santa Ana CA (W),3345 S. Bristol Street,Santa Ana,CA,92704 +-117.833839,33.759526,"17th & Tustin Santa Ana - Santa Ana CA (D, W)",2302 E. 17th Street,Santa Ana,CA,92705 +-117.888099,33.761393,Target Santa Ana T-1936 - Santa Ana CA,1441 W. 17th St.,Santa Ana,CA,92706 +-117.884333,33.773464,"Bristol & Memory Lane Santa Ana - Santa Ana CA (D, W)",2701 N. Bristol Street,Santa Ana,CA,92706 +-117.865747,33.699261,MacArthur & Hutton Santa Ana - Santa Ana CA (W),2 Hutton Centre Drive,Santa Ana,CA,92707 +-117.858917,33.680343,SNA John Wayne Conc A - Santa Ana CA (A),18601Airport Way North,Santa Ana,CA,92707 +-117.858917,33.680343,SNA John Wayne Conc B - Santa Ana CA (A),18601Airport Way North,Santa Ana,CA,92707 +-117.858917,33.680343,SNA John Wayne Food Court - Santa Ana CA (A),18601Airport Way North,Santa Ana,CA,92707 +-117.971453,33.716184,Magnolia & Warner Fountain Valley - Fountain Valley CA (W),9025 Warner Avenue,Fountain Valley,CA,92708 +-117.956612,33.72933,Albertsons-Fountain Vly #6157 - Fountain Valley CA,16061 Brookhurst St.,Fountain Valley,CA,92708 +-117.955058,33.729669,Brookhurst & Edinger - Fountain Valley CA (W),16051 A Brookhurst Street,Fountain Valley,CA,92708 +-117.933415,33.704215,Newhope & Southpark Fountain Valle - Fountain Valley CA (W),17850 Newhope Street,Fountain Valley,CA,92708 +-117.954283,33.693677,Brookhurst & Ellis Fountain Valley - Fountain Valley CA (W),18523 Brookhurst Street,Fountain Valley,CA,92708 +-117.829783,33.649025,Campus & California - Irvine CA (W),4545 Campus Drive,Irvine,CA,92714 +-117.828852,33.760122,Tustin - French Quarter - Tustin CA (W),17245 17th Street,Tustin,CA,92780 +-117.817533,33.745723,Tustin - Tustin CA (W),552 E. First Street,Tustin,CA,92780 +-117.815617,33.734448,Redhill & El Camino Real Tustin - Tustin CA (W),1450 El Camino Real,Tustin,CA,92780 +-117.825557,33.720805,Red Hill & Edinger Tustin - Tustin CA (W),1631 Edinger Avenue,Tustin,CA,92780 +-117.7919,33.7316,Target Irvine/Tustin T-2151 - Tustin CA,2340 Park Ave.,Tustin,CA,92782 +-117.793739,33.723644,El Camino Real & Jamboree Tustin - Tustin CA (W),2959 El Camino Real,Tustin,CA,92782 +-117.958383,33.838253,"Brookhurst & Alameda Anaheim - Anaheim CA (D, W)",500 N. Brookhurst Street,Anaheim,CA,92801 +-117.941618,33.841372,Euclid & Crescent Anaheim - Anaheim CA (W),681 N. Euclid Street,Anaheim,CA,92801 +-117.941613,33.832418,Target Anaheim T-2421 - Anaheim CA,101 S. Euclid,Anaheim,CA,92802 +-117.919221,33.799138,Anaheim Marriott Hotel - Anaheim CA,700 W. Convention Way,Anaheim,CA,92802 +-117.918448,33.799994,Hilton - Anaheim Hotel Lobby - Anaheim CA,777 Convention Way,Anaheim,CA,92802 +-117.959231,33.817795,Brookhurst & Ball Anaheim - Anaheim CA (W),2219 W. Ball Road,Anaheim,CA,92804 +-117.914717,33.817705,Harbor & Ball Anaheim - Anaheim CA (W),1200 S. Harbor Blvd.,Anaheim,CA,92805 +-117.887203,33.803858,Stadium Crossings - Anaheim - Anaheim CA (W),2035 E. Katella Ave.,Anaheim,CA,92805 +-117.914453,33.836452,Lincoln & Anaheim Anaheim - Anaheim CA,110 West Lincoln Avenue,Anaheim,CA,92805 +-117.928274,33.832733,"Lincoln & Carleton Anaheim - Anaheim CA (D, W)",1131 W. Lincoln Avenue,Anaheim,CA,92805 +-117.836834,33.855305,"Tustin & 91 Fwy Anaheim - Anaheim CA (D, W)",1070 N. Tustin Avenue,Anaheim,CA,92807 +-117.793925,33.859922,Anaheim Hills - Anaheim Hills CA (W),5655 E. La Palma,Anaheim Hills,CA,92807 +-117.791896,33.851271,Vons-Anaheim #2103 - Anaheim Hills CA,5600 E. Santa Ana Canyon Rd.,Anaheim Hills,CA,92807 +-117.788924,33.851555,Santa Ana Canyon & Imperial Hwy. An - Anaheim Hills CA (W),5741 E. Santa Ana Canyon Road,Anaheim Hills,CA,92807 +-117.751558,33.867264,Vons-Anaheim Hills #2216 - Anaheim CA,8010 E. Santa Ana Canyon Rd.,Anaheim,CA,92808 +-117.74077,33.864054,Weir Canyon & Monte Vista - Anaheim Hills CA (W),8295 E. Monte Vista Road,Anaheim Hills,CA,92808 +-117.901245,33.919017,Birch Street Promenade - Brea CA (W),260 West Birch Street,Brea,CA,92821 +-117.900596,33.916921,Brea Gateway - Brea CA (W),101 West Imperial Highway,Brea,CA,92821 +-117.88766,33.917892,Target Brea T-2482 - Brea CA,855 Birch St.,Brea,CA,92821 +-117.884256,33.91638,Macy's-Brea - Brea CA,300 Brea Mall,Brea,CA,92821 +-117.879403,33.912935,Brea II - Brea CA (W),435 South Associated Road,Brea,CA,92821 +-117.869752,33.910441,Albertsons-Brea #6141 - Brea CA,2500 E. Imperial Hwy. #158,Brea,CA,92821 +-117.852066,33.910404,"Valencia & Imperial Brea - Brea CA (D, W)",525 Valencia Avenue,Brea,CA,92823 +-117.827149,33.888338,Yorba Linda & Valley View Yorba Li - Yorba Linda CA (W),17474 Yorba Linda Boulevard,Yorba Linda,CA,92827 +-117.889395,33.883082,Cal State Fullerton-School Business - Fullerton CA,800 N. State College Blvd.,Fullerton,CA,92831 +-117.866408,33.888075,Yorba Linda & Bradford Fullerton - Fullerton CA,3362 Yorba Linda Blvd.,Fullerton,CA,92831 +-117.923868,33.873608,Harbor & Chapman Fullerton - Fullerton CA (W),444 Harbor Blvd.,Fullerton,CA,92832 +-117.889734,33.877644,State College & Chapman - Fullerton - Fullerton CA (W),505 N. State College Blvd.,Fullerton,CA,92832 +-117.924372,33.860047,Harbor & Orangethorpe Fullerton-BB - Fullerton CA (W),1137 S. Harbor Blvd.,Fullerton,CA,92832 +-117.965503,33.87851,Albertsons - Fullerton #6165 - Fullerton CA,2291 West Malvern Avenue,Fullerton,CA,92833 +-117.963365,33.877715,Gilbert & Malvern Fullerton - Fullerton CA (W),1951 W. Malvern,Fullerton,CA,92833 +-117.959944,33.860089,Orangethorpe & Brookhurst Fullerton - Fullerton CA (W),1805 W. Orangethorpe Ave.,Fullerton,CA,92833 +-117.899719,33.916406,"Imperial & Harbor Fullerton - Fullerton CA (D, W)",147 E. Imperial Highway,Fullerton,CA,92835 +-117.874231,33.889891,Albertsons-Fullerton #6119 - Fullerton CA,1930 N. Placentia Ave.,Fullerton,CA,92835 +-117.915176,33.788448,Anaheim Marriott Suites -Lobby - Garden Grove CA,12015 Harbor Blvd.,Garden Grove,CA,92840 +-117.914928,33.790341,Hyatt Regency Orange County - Garden Grove CA,11999 Harbor Blvd.,Garden Grove,CA,92840 +-117.902666,33.774143,"Fairview & Garden Grove - Garden Grove CA (D, W)",13172 Garden Grove,Garden Grove,CA,92843 +-117.972539,33.766893,"Magnolia & Trask Garden Grove - Garden Grove CA (D, W)",13471 Magnolia St.,Garden Grove,CA,92844 +-118.028598,33.790412,Vons-Garden Grove #2041 - Garden Grove CA,11861 Valley View St.,Garden Grove,CA,92845 +-117.557004,33.936937,"6th Street & Hamner Norco - Norco CA (D, W)",3699 Hamner Avenue,Norco,CA,92860 +-117.563358,33.898573,Hamner & Hidden Valley Pkwy. Norco - Norco CA (W),1030 Hamner Avenue,Norco,CA,92860 +-117.564305,33.901044,Target Norco T-736 - Norco CA,1290 Hamner Ave.,Norco,CA,92860 +-117.552841,33.89822,Hidden Valley & The 15 Fwy Norco - Norco CA (D),455 Hidden Valley Parkway,Norco,CA,92860 +-117.842403,33.865992,Vons-Orange #2335 - Orange CA,2684 N. Tustin Ave.,Orange,CA,92865 +-117.835434,33.823254,Tustin & Meats Blockbuster - Orange CA (W),2115 Tustin St.,Orange,CA,92865 +-117.852479,33.788125,Orange Plaza - Wells Fargo - Orange CA (W),101 East Chapman Avenue,Orange,CA,92866 +-117.853173,33.787541,Orange Plaza Square - Orange CA,44 Plaza Square,Orange,CA,92866 +-117.834219,33.759861,Albertsons-Orange #6534 - Orange CA,940 N. Tustin Ave.,Orange,CA,92867 +-117.869064,33.808036,Katella & Main Orange - Orange CA (D),1627 West Katella Avenue,Orange,CA,92867 +-117.892764,33.782893,The Block @ Orange - Orange CA (W),20 City Blvd. W.,Orange,CA,92868 +-117.867592,33.787537,Chapman & Main Orange - Orange CA (W),130 S. Main Street,Orange,CA,92868 +-117.866662,33.777134,Main & Town and Country - Orange CA (W),691 S. Main Street,Orange,CA,92868 +-117.892705,33.7894,Chapman & The City Drive Orange - Orange CA (W),3743 W. Chapman Avenue,Orange,CA,92868 +-117.804227,33.786974,Albertsons-Orange #6585 - Orange CA,4550 E. Chapman Ave.,Orange,CA,92869 +-117.81418,33.787753,"Chapman & Swidler Orange - Orange CA (D, W)",3630 E. Chapman Ave.,Orange,CA,92869 +-117.521056,33.887311,McKinley & Griffin Corona - Corona CA (D),344 N. McKinley St.,Corona,CA,92879 +-117.520059,33.891099,Vons-Corona #2381 - Corona CA,535 N. McKinley St.,Corona,CA,92879 +-117.55995,33.855878,Magnolia & Ontario Corona - Corona CA (W),469 Magnolia Ave.,Corona,CA,92879 +-117.55953,33.975239,"Limonite and Hamner Corona - Corona CA (D, W)",12700 Limonite Avenue,Corona,CA,92880 +-117.532764,33.842755,"Ontario & I-15 Corona - Corona CA (D, W)",1575 E. Ontario Ave.,Corona,CA,92881 +-117.515423,33.823494,Cajalco & Highway 15 Corona - Corona CA (W),2690 Tuscany Street,Corona,CA,92881 +-117.574002,33.843537,Albertsons-Corona #6727 - Corona CA,260 W. Foothill Pkwy,Corona,CA,92882 +-117.48209,33.7712,Vons - South Corona #2818 - SOUTH CORONA CA,11800 De Palma Road,South Corona,CA,92883 +-117.779044,33.891017,Eastlake Village - Yorba Linda - Yorba Linda CA (W),20355 Yorba Linda Blvd.,Yorba Linda,CA,92886 +-117.752622,33.877626,Albertsons-Yorba Linda #6510 - Yorba Linda CA,21500 Yorba Linda Blvd.,Yorba Linda,CA,92887 +-119.302331,34.282351,Vons - Ventura #2096 - Ventura CA,115 W. MAIN ST.,Ventura,CA,93001 +-119.291284,34.281098,Main & Chestnut Ventura - Ventura CA (W),607 E. Main Street,Ventura,CA,93001 +-119.268204,34.263532,Harbor & Seaward Ventura - Ventura CA (W),2453 Harbor Blvd.,Ventura,CA,93001 +-119.259247,34.271199,Vons-Ventura #2677 - Ventura CA,2764 E. Thompson Blvd.,Ventura,CA,93003 +-119.249034,34.269946,Target Ventura West T-2398 - Ventura CA,245 S. Mills Rd.,Ventura,CA,93003 +-119.234283,34.261174,Telephone & Main - Ventura - Ventura CA (W),4711-1a Telephone Road,Ventura,CA,93003 +-119.215129,34.264914,Vons - Ventura #2164 - Ventura CA,5688 Telephone Rd.,Ventura,CA,93003 +-119.212895,34.277558,Vons - Ventura #2678 - Ventura CA,6120 Telegraph Rd.,Ventura,CA,93003 +-119.211915,34.26225,Victoria Village - Ventura CA (W),1413-E South Victoria,Ventura,CA,93003 +-119.225757,34.26322,Telephone & Portola Ventura - Ventura CA (W),4960 Telephone Rd.,Ventura,CA,93003 +-119.246508,34.267411,Mills & Dean Ventura - Ventura CA,488 South Mills Road,Ventura,CA,93003 +-119.212307,34.277978,Telegraph & Victoria Ventura - Ventura CA (W),6128-B Telegraph Road,Ventura,CA,93003 +-119.177465,34.171541,"Saviers & Channel Islands Oxnard - Oxnard CA (D, W)",3042 Saviers Road,Oxnard,CA,93003 +-119.07273,34.217378,Target Camarillo T-1027 - Camarillo CA,209 W. Ventura Blvd.,Camarillo,CA,93010 +-119.068515,34.222714,Camarillo - Camarillo CA (W),540 Las Posas Road,Camarillo,CA,93010 +-119.03883,34.225822,Vons-Camarillo #1672 - Camarillo CA,820 Arnell Rd.,Camarillo,CA,93010 +-118.998405,34.229564,Vons-Camarillo #2094 - Camarillo CA,5275 Mission Oaks Blvd.,Camarillo,CA,93010 +-119.036092,34.237145,Las Posas & Arneill Camarillo - Camarillo CA (W),2508 E. Las Posas Road,Camarillo,CA,93011 +-119.004255,34.215946,Verdugo & Camino Ruiz Camarillo - Camarillo CA (W),5011 Verdugo Way,Camarillo,CA,93012 +-119.519404,34.397672,Vons-Carpinteria #2425 - Carpinteria CA,850 Linden Ave.,Carpinteria,CA,93013 +-119.513187,34.394622,Carpinteria & Casitas Pass Rd. - Carpinteria CA (W),5436 Carpinteria Rd.,Carpinteria,CA,93013 +-118.916642,34.396312,"Highway 126 & A Street. Fillmore - Fillmore CA (D, W)",650 W. Ventura Street,Fillmore,CA,93015 +-118.898931,34.267785,Vons - Moorpark #1735 - Moorpark CA,4241 Tierra Rejada Rd.,Moorpark,CA,93021 +-118.873066,34.278949,Moorpark - Moorpark CA (W),561 NEW LOS ANGELES AVE,Moorpark,CA,93021 +-118.843874,34.295579,Campus Park & Collins Moorpark - Moorpark CA (W),6595 Collins,Moorpark,CA,93021 +-119.288996,34.424999,Ventura & Villanova Ojai - Ojai CA (W),11484 North Ventura Avenue,Ojai,CA,93023 +-119.194504,34.210063,Albertsons-Oxnard #6217 - Oxnard CA,920 N. Ventura Rd.,Oxnard,CA,93030 +-119.179152,34.234409,Esplanade & Hwy. 1 Oxnard - Oxnard CA (W),331 W. Esplanade,Oxnard,CA,93030 +-119.161154,34.221802,Vons-Oxnard #2436 - Oxnard CA,2101 N. Rose Ave.,Oxnard,CA,93030 +-119.179623,34.197925,5th & B Street Oxnard - Oxnard CA (W),241 W. 5th Street,Oxnard,CA,93030 +-119.218833,34.154874,"Channel Islands & Rose Oxnard - Oxnard CA (D, W)",1611 E. Channel Island Blvd.,Oxnard,CA,93033 +-119.176222,34.227654,Vineyard & Esplanade - Oxnard - Oxnard CA (W),2350 N. Vineyard Ave.,Oxnard,CA,93036 +-119.2212,34.1903,Vons - Oxnard #2825 - OXNARD CA,VICTORIA & WOOLEY,Oxnard,CA,93041 +-119.21345,34.175787,Mandalay Village - Port Hueneme CA (W),587 W. Channel Islands Blvd.,Port Hueneme,CA,93041 +-119.083585,34.344718,Vons - Santa Paula 2434 - Santa Paula CA,576 W. Main St.,Santa Paula,CA,93060 +-118.717824,34.284323,Civic Center Plaza - Simi Valley - Simi Valley CA (W),2679 Tapo Canyon Rd.,Simi Valley,CA,93063 +-118.715434,34.287246,Vons-Simi Valley #2692 - Simi Valley CA,2938 Tapo Canyon Road,Simi Valley,CA,93063 +-118.692668,34.27275,Albertsons-Simi Valley #6317 - Simi Valley CA,5135 Los Angeles Avenue,Simi Valley,CA,93063 +-118.677407,34.273408,Vons-Simi Valley #2047 - Simi Valley CA,5805 E. Los Angeles Ave.,Simi Valley,CA,93063 +-118.794918,34.261811,Albertsons-Simi Valley #6393 - Simi Valley CA,1268 Madera Road,Simi Valley,CA,93065 +-118.786867,34.270238,Vons-Simi Valley #2163 - Simi Valley CA,660 E. Los Angeles Ave.,Simi Valley,CA,93065 +-118.762551,34.280084,Vons-Simi Valley #2501 - Simi Valley CA,1855 E. Cochran St.,Simi Valley,CA,93065 +-118.768494,34.284362,Hwy. 118 & First Simi Valley - Simi Valley CA (W),1555 Simi Town Center Way,Simi Valley,CA,93065 +-118.743328,34.279342,Sycamore & Cochran Simi Valley - Simi Valley CA (W),2410 Sycamore Drive,Simi Valley,CA,93065 +-118.777298,34.271797,"Los Angeles Avenue & 1st Simi Vall - Simi Valley CA (D, W)",1197 E. Los Angeles Avenue,Simi Valley,CA,93065 +-118.812815,34.252414,Wood Ranch & Country Club SimiValle - Simi Valley CA (W),575 Country Club Drive,Simi Valley,CA,93065 +-119.699475,34.419997,800 State Street - Santa Barbara CA (W),800 State Street,Santa Barbara,CA,93101 +-119.696593,34.417577,State & Cota Santa Barbara - Santa Barbara CA (W),539 State Street,Santa Barbara,CA,93101 +-119.705499,34.424109,State & Victoria Santa Barbara - Santa Barbara CA (W),1235 State Street,Santa Barbara,CA,93101 +-119.753417,34.44032,Five Points Center - Santa Barbara CA (W),3957 State Street,Santa Barbara,CA,93105 +-119.747956,34.440368,Hwy. 101 & La Cumbre Road Santa Bar - Santa Barbara CA (W),3815 State Street,Santa Barbara,CA,93105 +-119.650589,34.422008,Montecito - Santa Barbara CA (W),1046 - A Coast Village Road,Santa Barbara,CA,93108 +-119.724478,34.402085,1990 Cliff Drive Santa Barbara - Santa Barbara CA (W),1990 Cliff Drive,Santa Barbara,CA,93109 +-119.8693,34.429,Hollister & Storke-Goleta - Goleta CA (W),7030 Marketplace Drive,Goleta,CA,93117 +-119.830658,34.443494,Vons-Goleta #2691 - Goleta CA,175 N. Fairview Ave.,Goleta,CA,93117 +-119.830656,34.443445,Goleta - Goleta CA (W),173 N. Fairview Avenue,Goleta,CA,93117 +-119.85509,34.413316,Isla Vista - Isla Vista CA (W),888 Embarcadero del Norte,Isla Vista,CA,93117 +-119.397706,35.400322,"I-5 & Hwy. 58 Buttonwillow - Buttonwillow CA (D, W)",20673 Tracy Avenue,Buttonwillow,CA,93206 +-120.364461,36.136133,"Polk & Elm Coalinga - Coalinga CA (D, W)",113 W. Polk Street,Coalinga,CA,93210 +-119.251748,35.776565,Cecil & Hwy. 99 Delano - Delano CA (D),1607 Glenwood St.,Delano,CA,93215 +-119.675733,36.323642,Target Hanford T-1906 - Hanford CA,140 N. 12th Steet,Hanford,CA,93230 +-119.656342,36.328143,11th & Lacey - Hanford - Hanford CA (W),826 W. Lacey Blvd.,Hanford,CA,93230 +-119.67319,36.32833,"12th & Centennial Hanford - Hanford CA (D, W)",240 N. 12th Avenue,Hanford,CA,93230 +-119.958947,35.988028,Hwy. 41 & Bernard Kettleman City - Kettleman City CA (D),33300 Bernard Dr.,Kettleman City,CA,93239 +-118.477565,35.61793,Von's - Lake Isabella #2413 - Lake Isabella CA,5610 Lake Isabella Blvd.,Lake Isabella,CA,93240 +-118.9286,34.94,"Laval & I-5 Fwy Lebec - Lebec CA (D, W)",5844 Dennis McCarthy Drive,Lebec,CA,93243 +-119.78249,36.3009,NAS Lemoore-Reeves Blvd. - NAS Lemoore CA,796 Reeves Blvd.,Nas Lemoore,CA,93245 +-119.78084,36.307955,"Lemoore & Cinnamon Lemoore - Lemoore CA (D, W)",855 N. Lemoore Avenue,Lemoore,CA,93245 +-119.101287,36.202252,"Hwy. 65 & Hermosa Lindsay - Lindsay CA (D, W)",260 Highway 65,Lindsay,CA,93247 +-119.047794,36.080157,Target Porterville T-2420 - Porterville CA,1363 W. Henderson Ave.,Porterville,CA,93257 +-119.045634,36.08031,Henderson & Prospect - Porterville - Porterville CA (W),1270A Henderson Avenue,Porterville,CA,93257 +-119.038486,36.065529,"Olive & Cloverleaf Porterville - Porterville CA (D, W)",947 W. Olive Avenue,Porterville,CA,93257 +-119.016552,36.064804,"Olive& Main Porterville - Porterville CA (D, W)",12 South Main Street,Porterville,CA,93257 +-119.333126,36.22473,"Prosperity & Hillman Tulare - Tulare CA (D, W)",1089 E. Prosperity Avenue,Tulare,CA,93274 +-119.312409,36.225905,Super Target Tulare ST-2349 - Tulare CA,2195 E. Prosperity Ave.,Tulare,CA,93274 +-119.347444,36.31267,"Walnut & Akers - Visalia - Visalia CA (D, W)",5101 West Walnut Avenue,Visalia,CA,93277 +-119.331398,36.326692,"Hwy. 198 & Demaree Visalia - Visalia CA (D, W)",3401 W. Noble Avenue,Visalia,CA,93277 +-119.314282,36.340428,Mooney & Tulare Visalia - Visalia CA (D),1229 S. Mooney Blvd.,Visalia,CA,93277 +-119.314379,36.292303,"Mooney & Packwood Visalia - Visalia CA (D, W)",4219 South Mooney Blvd.,Visalia,CA,93277 +-119.334757,36.297914,"Caldwell & Demaree Visalia - Visalia CA (D, W)",3927 W. Caldwell Avenue,Visalia,CA,93277 +-119.347593,36.341065,"Goshen & Akers Visalia - Visalia CA (D, W)",5103 W. Goshen,Visalia,CA,93291 +-119.296958,36.358601,Target Visalia North T-2469 - Visalia CA,3308 N. Dinuba Blvd.,Visalia,CA,93291 +-119.292656,36.330423,Main & Court - Visalia - Visalia CA (W),110 W. Main Street,Visalia,CA,93291 +-119.026775,35.296309,Panama & Colony Bakersfield - Bakersfield CA (W),2200 Panama Lane,Bakersfield,CA,93301 +-119.01844,35.368853,Chester & California Bakersfield - Bakersfield CA (W),1200 Chester Avenue,Bakersfield,CA,93301 +-119.015825,35.380615,"24th & L Street Bakersfield - Bakersfield CA (D, W)",1201 24th Street,Bakersfield,CA,93301 +-119.033661,35.338874,Ming & Hwy. 99 Bakersfield - Bakersfield CA (W),2701 Ming Avenue,Bakersfield,CA,93304 +-118.949374,35.398068,"Oswell & Auburn Bakersfield - Bakersfield CA (D, W)",2701 Oswell Street,Bakersfield,CA,93306 +-118.967448,35.393785,"Mt Vernon & Hwy. 178 Bakersfield - Bakersfield CA (D, W)",2659 Mt Vernon Avenue,Bakersfield,CA,93306 +-118.914611,35.353558,Weedpatch Hwy. & Hwy. 58 Bakersfield - Bakersfield CA (D),420-A Weedpatch Hwy.,Bakersfield,CA,93307 +-119.091573,35.399401,Coffee & Hageman - Bakersfield - Bakersfield CA (W),4420 Coffee Road,Bakersfield,CA,93308 +-119.090866,35.400266,Von's - Bakersfield #2033 - Bakersfield CA,4500 Coffee Rd.,Bakersfield,CA,93308 +-119.058387,35.412789,"Olive & Knudsen Bakersfield - Bakersfield CA (D, W)",5210 Olive Drive,Bakersfield,CA,93308 +-119.07702,35.441162,"7th Standard & Hwy. 65 Bakersfield - Bakersfield CA (D, W)",35171 7th Standard Road,Bakersfield,CA,93308 +-119.065006,35.355041,Vons-Bakersfield #1969 - Bakersfield CA,5700 Stockdale Hwy.,Bakersfield,CA,93309 +-119.061332,35.355918,Stockdale Village - Bakersfield - Bakersfield CA (W),5620-A California Avenue,Bakersfield,CA,93309 +-119.054426,35.317061,"White & Stine Bakersfield - Bakersfield CA (D, W)",4701 White Lane,Bakersfield,CA,93309 +-119.121344,35.349936,Target Bakersfield West T-2715 - Bakersfield CA,11000 Stockdale Hwy.,Bakersfield,CA,93311 +-119.103639,35.340025,Bakersfield Marketplace - Bakersfield CA (W),9000 Ming Avenue,Bakersfield,CA,93311 +-119.101796,35.340185,Vons - Bakersfield #2420 - Bakersfield CA,9000 Ming Ave.,Bakersfield,CA,93311 +-119.094265,35.355579,Coffee & Stockdale Hwy. Bakersfield - Bakersfield CA (W),8200 Stockdale Highway,Bakersfield,CA,93311 +-119.090165,35.318817,Albertsons-Bakersfield #6325 - Bakersfield CA,7900 White Lane,Bakersfield,CA,93311 +-119.146351,35.382199,Albertsons-Bakersfield #6377 - Bakersfield CA,13045 Rosedale Hwy.,Bakersfield,CA,93312 +-119.110705,35.397191," Hageman & Calloway Bakersfield - Bakersfield CA (D, W)",9801 Hageman Road,Bakersfield,CA,93312 +-119.104851,35.383906,"Rosedale & Calloway Bakersfield - Bakersfield CA (D, W)",9200 Rosedale Hwy.,Bakersfield,CA,93312 +-119.054959,35.295488,"Panama & Stine Bakersfield - Bakersfield CA (D, W)",4741 Panama Lane,Bakersfield,CA,93313 +-119.040522,35.296469,Albertsons - Bakersfield #6323 - Bakersfield CA,3500 Panama Ln.,Bakersfield,CA,93313 +-119.092761,35.309005,"Gosford & Pacheco Bakersfield - Bakersfield CA (D, W)",5041 Gosford Road,Bakersfield,CA,93313 +-119.147497,35.38349,"Rosedale Hwy. & Froehlich St. - Bakersfield CA (D, W)",13133 Rosedale Hwy.,Bakersfield,CA,93314 +-120.674338,35.245492,Higuera & Tank Farm San Luis Obisp - San Luis Obispo CA (W),3971 S. Higuera Street,San Luis Obispo,CA,93401 +-120.662153,35.280295,San Luis Obispo - San Luis Obispo CA (W),885 Higuera St.,San Luis Obispo,CA,93401 +-120.643815,35.249728,Vons-San Luis Obispo #2306 - San Luis Obispo CA,3900 S. Broad,San Luis Obispo,CA,93401 +-120.643286,35.248779,Broad & Tank Farm San Luis Obispo - San Luis Obispo CA (W),3970 Broad Street,San Luis Obispo,CA,93401 +-120.828042,35.311349,Los Osos & Fairchild Los Osos - Los Osos CA (W),1230 Los Osos Valley Rd.,Los Osos,CA,93402 +-120.677072,35.263387,Madonna & El Mercado - San Luis Obispo CA (W),253 Madonna Road,San Luis Obispo,CA,93405 +-120.671701,35.29409,Albertsons - San Luis Ob #6372 - San Luis Obispo CA,771 Foothill Blvd.,San Luis Obispo,CA,93405 +-120.670726,35.293677,Chorro Street - San Luis Obispo - San Luis Obispo CA (W),17 Chorro Street,San Luis Obispo,CA,93405 +-120.634167,35.122217,CSU San Luis Obispo Student Union C - San Luis Obispo CA,1 Grand Ave.,San Luis Obispo,CA,93407 +-120.60434,35.120689,Grand & Courtland Arroyo Grande - Arroyo Grande CA (W),1421 Grand Ave.,Arroyo Grande,CA,93420 +-120.593699,35.12508,West Branch & Rancho Parkway - Arroyo Grande CA (W),924 West Branch,Arroyo Grande,CA,93420 +-120.703264,35.525347,"El Camino & Santa Cruz Atascadero - Atascadero CA (D, W)",925 El Camino Real,Atascadero,CA,93422 +-120.664671,35.474089,Albertsons-Atascadero #6390 - Atascadero CA,8200 Curbaril Ave.,Atascadero,CA,93422 +-120.663074,35.485274,El Camino Real & Morro Atascadero - Atascadero CA (W),7135 El Camino Real,Atascadero,CA,93422 +-120.609877,35.120961,Vons-Grover Beach #2560 (560) - Grover Beach CA,1758 Grand Ave.,Grover Beach,CA,93433 +-120.457811,34.648947,Vons-Lompoc #1738 - Lompoc CA,729 N. H ST,Lompoc,CA,93436 +-120.457312,34.661905,"H & Central Lompoc - Lompoc CA (D, W)",1436 H Street,Lompoc,CA,93436 +-120.844124,35.367945,Albertsons - Morro Bay #6345 - Morro Bay CA,730 Quintana,Morro Bay,CA,93442 +-120.486068,35.034719,Tefft & Mary Nipomo - Nipomo CA (D),581 W. Tefft Street,Nipomo,CA,93444 +-120.486774,35.036608,Vons-Nipomo #1621 - Nipomo CA,520 W. Tefft St.,Nipomo,CA,93444 +-120.698477,35.583812,Target Paso Robles T-1120 - Paso Robles CA,2305 Theatre Dr,Paso Robles,CA,93446 +-120.680656,35.616623,Albertsons-Paso Robles #6314 - Paso Robles CA,189 Niblick Rd.,Paso Robles,CA,93446 +-120.66023,35.623893,Vons-Paso Robles #2317 - Paso Robles CA,1191 E. Creston Rd.,Paso Robles,CA,93446 +-120.686884,35.64185,"24th & Ysabel Paso Robles - Paso Robles CA (D, W)",1205 24th Street,Paso Robles,CA,93446 +-120.659026,35.615857,"Creston & Sherwood Paso Robles - Paso Robles CA (D, W)",1495 Creston Road,Paso Robles,CA,93446 +-120.69666,35.58497,"46 West & US 101 Paso Robles - Paso Robles CA (D, W)",2301 Theatre Drive,Paso Robles,CA,93446 +-120.627153,35.136537,Five Cities Drive & 101 Fwy Pismo - Pismo Beach CA (W),501 Five Cities Drive,Pismo Beach,CA,93449 +-120.435822,34.913917,Broadway & McCoy Santa Maria - Santa Maria CA (W),2530A S. Broadway,Santa Maria,CA,93454 +-120.41599,34.953262,US 101 & E. Main Street Santa Maria - Santa Maria CA,1201 E. Main Street,Santa Maria,CA,93454 +-120.427024,34.923595,"Betteravia & College Santa Maria - Santa Maria CA (D, W)",530 E. Betteravia Road Suite C,Santa Maria,CA,93454 +-120.435699,34.966631,"Broadway & Stowell Santa Maria - Santa Maria CA (D, W)",1419 S. Broadway Street,Santa Maria,CA,93455 +-120.434785,34.917878,Albertsons-Santa Maria #6348 - Santa Maria CA,2320 S. Broadway,Santa Maria,CA,93455 +-120.417332,34.863881,Albertsons - Orcutt #6394 - Orcutt CA,1120 E. Clark Ave.,Orcutt,CA,93455 +-118.392907,37.373459,Safeway-Bishop #1753 - Bishop CA,1190 N. Main St.,Bishop,CA,93514 +-118.395837,37.370708,"Main & Sierra Bishop - Bishop CA (D, W)",905 North Main Street,Bishop,CA,93514 +-117.9088,34.909405,Edwards AFB TRAVEL CENTER - Edwards CA,240 West Fitzgerald Blvd.,Edwards,CA,93524 +-118.164209,34.704111,20th St. West & Avenue I Lancaster - Lancaster CA (D),1845 W. Avenue I,Lancaster,CA,93534 +-118.114563,34.674994,"Challenger Way & Avenue K - Lancaster CA (D, W)",805 E. Avenue K,Lancaster,CA,93535 +-118.201922,34.660274,Vons-Lancaster #2029 - Lancaster CA,4033 W. Ave. L,Lancaster,CA,93536 +-118.167071,34.67487,"Avenue K & 20th St. West Lancaster - Lancaster CA (D, W)",2062 West Avenue K,Lancaster,CA,93536 +-118.985546,37.651101,Mammoth Mountain-Mammoth Village - Mammoth Lakes CA,6201 Minaret Rd.,Mammoth Lakes,CA,93546 +-118.965688,37.638727,Vons - Mammoth Lakes #2400 - Mammoth Lakes CA,481 Old Mammoth Rd.,Mammoth Lakes,CA,93546 +-118.13292,34.580826,"Palmdale & 3rd Palmdale - Palmdale CA (D, W)",280 East Palmdale Blvd.,Palmdale,CA,93550 +-118.184338,34.602888,Vons-Palmdale #3017 - Palmdale CA,3027 Rancho Vista Blvd.,Palmdale,CA,93551 +-118.148961,34.585385,Albertsons-Palmdale #6333 - Palmdale CA,38727 N. Tierra Subida Ave.,Palmdale,CA,93551 +-118.143758,34.601065,"Avenue P & Highway 14 Palmdale - Palmdale CA (D, W)",39570 Lowes Drive,Palmdale,CA,93551 +-118.14717,34.607252,"10th & Hwy. 14 Palmdale - Palmdale CA (D, W)",39904 10th Street West,Palmdale,CA,93551 +-118.04662,34.558235,"Ave. S. & 47th Street East Palmdale - Palmdale CA (D, W)",4631 East Avenue S.,Palmdale,CA,93552 +-118.046365,34.557226,Albertsons-Palmdale #6303 - Palmdale CA,4644 E. Avenue S.,Palmdale,CA,93552 +-118.045142,34.577746,Super Target Palmdale East ST-2350 - Palmdale CA,38019 47th St. E.,Palmdale,CA,93552 +-117.674458,35.60516,Albertsons-Ridgecrest #6331 - Ridgecrest CA,927 S. China Lake Blvd.,Ridgecrest,CA,93555 +-117.669776,35.634353,China Lake & Drummond Ridgecrest - Ridgecrest CA (W),750-A N. China Lake Blvd.,Ridgecrest,CA,93555 +-118.494705,35.132,"Tehachapi & Tucker Tehachapi - Tehachapi CA (D, W)",300 S. Tucker Road,Tehachapi,CA,93561 +-120.2594,37.123426,"Robertson & Hwy. 99 - Chowchilla - Chowchilla CA (D, W)",120 E. Robertson,Chowchilla,CA,93610 +-119.727333,36.756648,"Willow & Nees Clovis - Clovis CA (D, W)",1057 N. Willow Avenue,Clovis,CA,93611 +-119.684083,36.85161,"Ashlan & Fowler Clovis - Clovis CA (D, W)",3170 N. Fowler Avenue,Clovis,CA,93611 +-119.664725,36.845249,"Temperance & Hwy. 168 Clovis - Clovis CA (D, W)",765 N. Temperance Avenue,Clovis,CA,93611 +-119.728164,36.839724,Target Clovis T-2018 - Clovis CA,695 W. Herndon Ave.,Clovis,CA,93612 +-119.71287,36.808568,"175 West Shaw - Clovis - Clovis CA (D, W)",175 W. Shaw,Clovis,CA,93612 +-119.698653,36.808418,Sierra Vista Mall Pad - Clovis - Clovis CA (W),1020 Shaw Avenue,Clovis,CA,93612 +-119.684482,36.835297,Vons-Clovis #1756 - Clovis CA,1650 Herndon Ave.,Clovis,CA,93612 +-119.681649,36.837558,"Herndon & Fowler - Clovis - Clovis CA (D, W)",1845 Herndon Avenue,Clovis,CA,93612 +-119.719926,36.837671,"Herndon & Willow Clovis - Clovis CA (D, W)",755 West Herndon Avenue,Clovis,CA,93612 +-119.70051,36.837886,"Herndon & Clovis Clovis - Clovis CA (D, W)",779 Herndon,Clovis,CA,93612 +-119.399331,36.545933,"El Monte Way & Monte Vista Dinuba - Dinuba CA (D, W)",450 W. El Monte Way,Dinuba,CA,93618 +-119.68323,36.62784,"Merced & 10th Fowler - Fowler CA (D, W)",216 W. Merced Street,Fowler,CA,93625 +-119.557359,36.517718,"Sierra & 10th Kingsburg - Kingsburg CA (D, W)",969 Sierra Street,Kingsburg,CA,93631 +-120.870772,37.056746,Target Los Banos T-2359 - Los Banos CA,1405 W. Pacheco Blvd.,Los Banos,CA,93635 +-120.870679,37.056748,Hwy. 152 & Ortigalita - Los Banos - Los Banos CA (D),1363 West Pacheco Blvd.,Los Banos,CA,93635 +-120.833573,37.057545,"Hwy. 152 & Hwy. 165 - Los Banos - Los Banos CA (D, W)",1380 Pacheco Blvd.,Los Banos,CA,93635 +-120.086285,36.981372,"Avenue 16 & Hwy. 99 - Madera - Madera CA (D, W)",2295 Marketplace Drive,Madera,CA,93637 +-120.083021,36.953071,Howard & Schnoor - Madera - Madera CA (W),1933 Howard Road,Madera,CA,93637 +-119.800692,36.883998,Children's Hospital Central CA - Ma - Madera CA,9300 Valley Children's Place,Madera,CA,93638 +-119.66006,37.33368,Vons-Oakhurst #2409 - Oakhurst CA,40044 Hwy. 49,Oakhurst,CA,93644 +-119.652568,37.3329,"Highway 49 & Highway 41 - Oakhurst - Oakhurst CA (D, W)",40208 Highway 41 PO Box 3630,Oakhurst,CA,93644 +-119.459839,36.603245,"Manning & Reed Reedley - Reedley CA (D, W)",1081 W. Manning Ave.,Reedley,CA,93654 +-119.555822,36.708848,"Academy & Jensen Sanger - Sanger CA (D, W)",512 Academy Ave.,Sanger,CA,93657 +-119.807454,36.836035,"Palm & Herndon Fresno - Fresno CA (D, W)",790 W. Palmdon Dr,Fresno,CA,93704 +-119.804548,36.808509,Fig Garden Village (relocation) - Fresno CA,704 West Shaw Avenue,Fresno,CA,93704 +-119.740261,36.808475,"Shaw & Woodrow Fresno - Fresno CA (D, W)",2635 E. Shaw,Fresno,CA,93704 +-119.826336,36.792247,"Ashlan & West Fresno - Fresno CA (D, W)",4116 N. West Avenue,Fresno,CA,93705 +-119.782773,36.80865,"Shaw & Hwy. 41 Fresno - Fresno CA (D, W)",318 E. Shaw Avenue,Fresno,CA,93710 +-119.77634,36.808446,Fresno Fashion Fair Mall - Fresno CA,645 East Shaw Ave.,Fresno,CA,93710 +-119.771064,36.808473,"First & Shaw Fresno - Fresno CA (D, W)",1041 E. Shaw Avenue,Fresno,CA,93710 +-119.790818,36.813654,"Blackstone & Barstow Fresno - Fresno CA (D, W)",5347 N. Blackstone Avenue,Fresno,CA,93710 +-119.847087,36.808178,Shaw & Feland - Fresno - Fresno CA (W),3181 W. Shaw,Fresno,CA,93711 +-119.790657,36.84936,Shops @ Riverpark - Fresno - Fresno CA (W),7658 N. Blackstone Ave.,Fresno,CA,93720 +-119.756906,36.864798,Cedar & Shepherd Fresno - Fresno CA (W),8821 N. CEDAR AVE,Fresno,CA,93720 +-119.756896,36.865713,Vons - Fresno #2188 - Fresno CA,8949 N. Cedar,Fresno,CA,93720 +-119.776863,36.873416,"Fort Washington & Friant Fresno - Fresno CA (D, W)",9423 N. Fort Washington Road,Fresno,CA,93720 +-119.790349,36.848244,Shops @ Riverpark II Fresno - Fresno CA (W),7680 N. Blackstone Ave.,Fresno,CA,93720 +-119.787099,36.847189,Target North Fresno T-911 - Fresno CA,7600 N. Blackstone Ave.,Fresno,CA,93720 +-119.740791,36.873658,"Sommerville & Perrin Fresno - Fresno CA (D, W)",9505 North Sommerville Drive,Fresno,CA,93720 +-119.785625,36.735368,Kern & N. Street - Fresno - Fresno CA (W),2325 Kern Street,Fresno,CA,93721 +-119.779743,36.742955,"Divisadero & U Street Fresno - Fresno CA (D, W)",1100 U Street,Fresno,CA,93721 +-119.773407,36.743477,"Tulare & First Fresno - Fresno CA (D, W)",3045 E. Tulare St.,Fresno,CA,93721 +-119.917177,36.834135,"Herndon & Hwy. 99 Fresno - Fresno CA (D, W)",6833 Golden State Blvd.,Fresno,CA,93722 +-119.87227,36.793553,Ashlan & Blythe Fresno - Fresno CA (D),4441 W. Ashlan Ave.,Fresno,CA,93722 +-119.879522,36.834814,Herndon & Milburn Fresno - Fresno CA (D),6701 N. Milburn Avenue,Fresno,CA,93722 +-119.790484,36.779759,"Shields & Hwy. 41 Fresno - Fresno CA (D, W)",2035 E. Shields,Fresno,CA,93726 +-119.754765,36.794222,"Ashlan & Cedar Fresno - Fresno CA (D, W)",4171 E. Ashlan,Fresno,CA,93726 +-119.792226,36.772291,FAT Pre-Security - Fresno CA (A),1575 E. Clinton Way,Fresno,CA,93727 +-119.700187,36.736167,Clovis & Kings Canyon - Fresno - Fresno CA (W),660 S. Clovis Avenue,Fresno,CA,93727 +-119.69882,36.734932,Vons-Fresno #1754 - Fresno CA,5638 E. Kings Canyon Rd.,Fresno,CA,93727 +-119.71876,36.764174,"Peach & McKinley Fresno - Fresno CA (D, W)",1595 N. Peach Avenue,Fresno,CA,93727 +-119.802582,36.757677,741 E. Olive Avenue - Fresno - Fresno CA (W),741 E. Olive Avenue,Fresno,CA,93728 +-119.745727,36.661274,CSU/Fresno - Corner Univ Ctr. - Fresno CA,5150 N. Maple Ave.,Fresno,CA,93740 +-121.659412,36.658073,Main & San Joaquin - Salinas - Salinas CA (W),1186 South Main Street,Salinas,CA,93901 +-121.646299,36.6591,Salinas Valley Memorial Lobby - Salinas CA,450 E. Romie Lane,Salinas,CA,93901 +-121.59576,36.694881,"Boranda & Sanborn - Salinas - Salinas CA (D, W)",1598 N. Sanborn Rd.,Salinas,CA,93905 +-121.667011,36.703854,Westridge S.C.-Salinas - Salinas CA (W),1363 N. Davis Road,Salinas,CA,93906 +-121.655897,36.720495,Main & Boranda - Salinas - Salinas CA (W),1964 North Main Street,Salinas,CA,93906 +-121.653763,36.709474,Target Salinas T-676 - Salinas CA,1640 N. Main St.,Salinas,CA,93906 +-121.653355,36.707322,Safeway - Salinas #1110 - Salinas CA,1546 N. Main St.,Salinas,CA,93906 +-121.652419,36.690575,"Main & Bernal - Salinas - Salinas CA (D, W)",917 B N. Main Street,Salinas,CA,93906 +-121.620695,36.700298,Constitution & Independence - Salin - Salinas CA (W),1508 Constitution Boulevard,Salinas,CA,93906 +-121.620053,36.700269,Safeway-Salinas #2654 - Salinas CA,1516 Constitution Blvd.,Salinas,CA,93906 +-121.665379,36.791862,Safeway - Prunedale #1204 - Prunedale CA,17539 Vierra Canyon,Prunedale,CA,93907 +-121.665344,36.791867,Hwy. 101 & Vierra Canyon - Prunedale - Prunedale CA (W),17543 Vierra Canyon Road,Prunedale,CA,93907 +-121.9078,36.5382,Safeway - Carmel #2669 - Carmel CA,Crmel Center & Rio Road,Carmel,CA,93923 +-121.139205,36.204743,"Broadway & Hwy. 101 - King City - King City CA (D, W)",1301 Broadway,King City,CA,93930 +-121.811382,36.667368,Target Marina T-2306 - Marina CA,133 General Stilwell Dr,Marina,CA,93933 +-121.799941,36.686705,Del Monte & Reservation - Marina - Marina CA (W),3148 Del Monte Boulevard,Marina,CA,93933 +-121.897073,36.583316,Del Monte - Monterey CA (W),492 Del Monte Center,Monterey,CA,93940 +-121.850335,36.597756,Safeway - Del Rey Oaks #2841 - Del Rey Oaks CA,815 Canyon Del Rey,Del Rey Oaks,CA,93940 +-121.82976,36.584861,Canyon Del Rey & Hwy. 68 - Del Rey O - Del Rey Oaks CA (W),441 Canyon Del Rey,Del Rey Oaks,CA,93940 +-121.49438,38.534745,Freeport & Sutterville - Sacramento - Sacramento CA (W),4424 Freeport Blvd.,Sacramento,CA,93940 +-121.900414,36.616095,Cannery Row - Monterey - Monterey CA (W),711 Cannery Row,Monterey,CA,93940 +-121.855568,36.607956,"Canyon Del Rey & Del Monte - Seasid - Seaside CA (D, W)",1504 Canyon Del Rey,Seaside,CA,93955 +-121.843143,36.620892,Target Sand City T-1062 - Sand City CA,2040 California Ave.,Sand City,CA,93955 +-121.841655,36.62204,Hwy. 1 & Tioga - Sand City - Sand City CA (W),2160 California Avenue,Sand City,CA,93955 +-121.32649,36.4132,"Front & 4th Street - Soledad - Soledad CA (D, W)",3070 H DeLaRosa Sr. Street,Soledad,CA,93960 +-122.293648,37.510623,Belmont N. California - Belmont CA (W),1071 Alameda De Las Pulgas,Belmont,CA,94002 +-122.275556,37.518887,Safeway-Belmont #1138 - Belmont CA,1100 El Camino Real,Belmont,CA,94002 +-122.275551,37.520019,Ralston & ElCamino - Belmont - Belmont CA (W),1050-A El Camino Real,Belmont,CA,94002 +-122.385124,37.59584,Murchison & El Camino - Burlingame - Burlingame CA (W),1865 El Camino Real,Burlingame,CA,94010 +-122.37206,37.602844,Marriott San FranciscoAirport - Burlingame CA,1800 Old Bayshore Hwy.,Burlingame,CA,94010 +-122.364935,37.585873,Broadway & Laguna - Burlingame - Burlingame CA (W),1230 Broadway,Burlingame,CA,94010 +-122.345818,37.579471,Burlingame Ave. - Burlingame CA (W),1160 Burlingame Avenue,Burlingame,CA,94010 +-122.47083,37.701531,John Daly & Highway 280 - Daly City - Daly City CA (W),2001 Junipero Serra Blvd.,Daly City,CA,94014 +-122.464125,37.698205,Mission St.@ Gambetta - Daly City - Daly City CA (W),6873 Mission Street,Daly City,CA,94014 +-122.4834,37.7016,Westlake Mall - Daly City - Daly City CA,332 Westlake Center,Daly City,CA,94015 +-122.46941,37.670967,Serramonte Center - Daly City - Daly City CA (W),49 Serramonte Center,Daly City,CA,94015 +-122.469157,37.663808,Gellert & Serramonte - Daly City - Daly City CA (W),321 Gellert Blvd.,Daly City,CA,94015 +-122.435369,37.469758,Hwy. 1 & Belleville - Half Moon Bay - Half Moon Bay CA (W),80 Cabrillo Highway N.,Half Moon Bay,CA,94019 +-122.116729,37.378587,Los Altos - Los Altos CA (W),296 Main Street,Los Altos,CA,94022 +-122.0981,37.3615,Los Altos Rancho - Los Altos CA (W),654 Los Altos Rancho,Los Altos,CA,94024 +-122.201666,37.431836,Alameda & Avy - Menlo Park - Menlo Park CA (W),3590 Alameda de las Pulgas,Menlo Park,CA,94025 +-122.198059,37.423783,Sharon Park & Sand Hill Road - Menlo Park CA (W),325 Sharon Park Drive,Menlo Park,CA,94025 +-122.180312,37.452131,Live Oak & El Camino Real - Menlo Park CA (W),863 El Camino Real,Menlo Park,CA,94025 +-122.178848,37.450419,Safeway - Menlo Park #2719 - Menlo Park CA,525 El Camino Real,Menlo Park,CA,94025 +-122.151399,37.479907,Willow & Hamilton - Menlo Park - Menlo Park CA (W),1401 Willow,Menlo Park,CA,94025 +-122.184028,37.452235,Menlo Park - Menlo Park CA (W),643-693 Santa Cruz Avenue,Menlo Park,CA,94027 +-122.394232,37.602786,Millbrae Square - Millbrae CA (W),513 Broadway,Millbrae,CA,94030 +-122.094734,37.390846,Mountain View - Mountain View CA (W),1037-C El Monte Ave.,Mountain View,CA,94040 +-122.088264,37.371833,Safeway-Mountain View #1108 - Mountain View CA,1750 Miramonte Ave.,Mountain View,CA,94040 +-122.087573,37.373353,Miramonte & Cuesta - Mtn. View - Mountain View CA (W),809A Cuesta Blvd.,Mountain View,CA,94040 +-122.078351,37.402432,Safeway - Mountain View #705 - Mountain View CA,570 Shoreline Blvd.,Mountain View,CA,94040 +-122.082955,37.387407,Castro @ High School - Mtn. View - Mountain View CA (W),750 Castro St.,Mountain View,CA,94041 +-122.09645,37.421793,Charleston & Independence-Mnt. View - Mountain View CA (W),2410 Charleston Avenue,Mountain View,CA,94043 +-122.093157,37.410588,Rengstorff & Middlefield - Mountain - Mountain View CA (W),580 N. Rengstorff Avenue,Mountain View,CA,94043 +-122.077229,37.415856,Shoreline & Pear - Mnt. View - Mountain View CA (W),1380 Pear Avenue,Mountain View,CA,94043 +-122.502846,37.594982,Hwy. 1 & Linda Mar - Linda Mar - Pacifica CA (W),1227 Linda Mar Shopping Center,Pacifica,CA,94044 +-122.492819,37.649452,Safeway - Pacifica #3008 - Pacifica CA,12 Manor Plaza,Pacifica,CA,94044 +-122.483955,37.58267,Safeway - Pacifica #304 - Pacifica CA,1380 Linda Mar SC,Pacifica,CA,94044 +-122.477571,37.661097,Hickey & Skyline - Pacifica - Pacifica CA (W),791 Hickey Boulevard,Pacifica,CA,94044 +-122.230419,37.484481,Safeway-Redwood City #305 - Redwood City CA,1071 El Camino Real,Redwood City,CA,94061 +-122.224551,37.466481,Woodside & Gordon - Redwood City - Redwood City CA (W),820 Woodside Road,Redwood City,CA,94061 +-122.240423,37.490318,El Camino & Whipple - Redwood City - Redwood City CA (W),490 El Camino Real,Redwood City,CA,94063 +-122.230265,37.482659,Redwood City - Redwood City CA (W),1045 El Camino Real,Redwood City,CA,94063 +-122.224805,37.489735,Veterans Pkwy. & Walnut - Redwood Ci - Redwood City CA (W),400 Walnut Road,Redwood City,CA,94063 +-122.207695,37.466058,El Camino & Woodside - Redwood City - Redwood City CA (W),1900 El Camino Real,Redwood City,CA,94063 +-122.186146,37.478489,Marsh & Florence - Redwood City - Redwood City CA (W),995 Marsh Road,Redwood City,CA,94063 +-122.217679,37.475287,Target Redwood City T-321 - Redwood City CA,2485 El Camino Real,Redwood City,CA,94063 +-122.252157,37.519772,Redwood Shores - Redwood City CA (W),264 Redwood Shores Parkway,Redwood City,CA,94065 +-122.426051,37.625819,Bayhill & Cherry - San Bruno - San Bruno CA (W),851 Cherry Avenue,San Bruno,CA,94066 +-122.420724,37.636267,The Shops at Tanforan - San Bruno CA (W),1150 El Camino Real,San Bruno,CA,94066 +-122.420309,37.63535,El Camino & Sneath - San Bruno - San Bruno CA (W),1212 El Camino Real,San Bruno,CA,94066 +-122.418771,37.636043,Target San Bruno T-1054 - San Bruno CA,1150 El Camino Real,San Bruno,CA,94066 +-122.411241,37.62456,501 San Mateo Avenue - San Bruno CA (W),501 San Mateo Avenue,San Bruno,CA,94066 +-122.278781,37.520788,Laurel & Arroyo - San Carlos - San Carlos CA (W),856 Laurel Avenue,San Carlos,CA,94070 +-122.260841,37.506397,San Carlos - San Carlos CA (W),1187 San Carlos Avenue,San Carlos,CA,94070 +-122.247035,37.502379,Industrial & Howard - San Carlos - San Carlos CA (W),1135 Industrial Rd.,San Carlos,CA,94070 +-122.4461,37.6631,Transit Village - South San Francis - South San Francisco CA (W),100 McClellan Dr,South San Francisco,CA,94080 +-122.410956,37.655042,Grand & Linden - South San Francisc - South San Francisco CA (W),329 Grand Avenue,South San Francisco,CA,94080 +-122.40201,37.652203,176 Gateway Blvd. - South San Francisco CA (W),176 Gateway Blvd.,South San Francisco,CA,94080 +-122.046254,37.378747,Mary & Washington - Sunnyvale - Sunnyvale CA (W),201 S. Mary Avenue,Sunnyvale,CA,94086 +-122.030264,37.388269,Mathilda & Maude - Sunnyvale - Sunnyvale CA (W),460 N. Mathilda Avenue,Sunnyvale,CA,94086 +-122.02887,37.373778,Target Sunnyvale T-2584 - Sunnyvale CA,298 W. McKinley Ave.,Sunnyvale,CA,94086 +-122.056582,37.373122,Safeway - Sunnyvale #1196 - Sunnyvale CA,639 Bernardo Ave.,Sunnyvale,CA,94087 +-122.050593,37.35247,Fremont & Mary - Sunnyvale - Sunnyvale CA (W),1291 South Mary,Sunnyvale,CA,94087 +-122.041819,37.340633,Safeway - Sunnyvale #313 - Sunnyvale CA,1601 Hollenbeck Ave.,Sunnyvale,CA,94087 +-122.041455,37.338873,Hollenbeck Road - Sunnyvale CA (W),1685-87 Hollenbeck Road,Sunnyvale,CA,94087 +-122.034649,37.368564,El Camino & Mathilda - Sunnyvale CA (W),332 W. El Camino Real,Sunnyvale,CA,94087 +-122.017871,37.356038,Sunnyvale - Sunnyvale CA (W),795 East El Camino Real,Sunnyvale,CA,94087 +-122.007695,37.352596,El Camino Real & Poplar Sunnyvale - Sunnyvale CA (D),1003 E. El Camino Real,Sunnyvale,CA,94087 +-122.018683,37.356684,Safeway - Sunnyvale #1439 - Sunnyvale CA,785 E. El Camino Real,Sunnyvale,CA,94087 +-122.417521,37.776702,Market & Fell - San Francisco - San Francisco CA (W),1390 Market Street,San Francisco,CA,94102 +-122.41117,37.785521,Hilton @ San Francisco - San Francisco CA,333 O'Farrell Street,San Francisco,CA,94102 +-122.410237,37.787122,Geary & Taylor - San Francisco - San Francisco CA (W),442 Geary Street,San Francisco,CA,94102 +-122.409531,37.785727,Cyril Magnin at O`Farrell - Nikko - San Francisco CA (W),222 Mason St.,San Francisco,CA,94102 +-122.408467,37.786751,201 Powell Street - San Francisco - San Francisco CA (W),201 Powell Street,San Francisco,CA,94102 +-122.408226,37.788984,Powell & Sutter - San Francisco - San Francisco CA (W),462 Powell Street,San Francisco,CA,94102 +-122.407463,37.786835,Macy's-Union Square 4th Floor - San Francisco CA,170 O'Farrell St.,San Francisco,CA,94102 +-122.398763,37.791325,455 Market - San Francisco CA (W),455 Market Street,San Francisco,CA,94102 +-122.415176,37.778211,1231 Market Street - San Francisco CA (W),1231 Market Street,San Francisco,CA,94103 +-122.413029,37.775584,9th & Howard - San Francisco CA (W),1298 Howard Street,San Francisco,CA,94103 +-122.409528,37.765683,Safeway-San Francisco #1490 - San Francisco CA,2300 16th St. Unit 203,San Francisco,CA,94103 +-122.407361,37.784143,865 Market - SF Centre - San Francisco CA (W),865 Market Street,San Francisco,CA,94103 +-122.404786,37.784943,Marriott SF Lobby - San Francisco CA,55 Fourth St.,San Francisco,CA,94103 +-122.40426,37.784444,120 4th Street - San Francisco CA (W),120 4th Street,San Francisco,CA,94103 +-122.403641,37.770195,8th & Townsend - San Francisco - San Francisco CA (W),689 Townsend,San Francisco,CA,94103 +-122.403392,37.78757,Third & Market - San Francisco - San Francisco CA (W),7 Third Street,San Francisco,CA,94103 +-122.403111,37.765389,Kansas & 16th St. - San Francisco - San Francisco CA (W),350 Rhode Island,San Francisco,CA,94103 +-122.393889,37.793333,One Market Plaza - San Francisco CA (W),1 Market Plaza,San Francisco,CA,94103 +-122.399817,37.78505,3rd & Howard - San Francisco CA (W),201 3rd St.,San Francisco,CA,94103 +-122.403973,37.790592,Kearny @ Bush - San Francisco CA (W),264 Kearny Street,San Francisco,CA,94104 +-122.403889,37.791944,555 California St. - San Francisco CA (W),555 California St.,San Francisco,CA,94104 +-122.402018,37.789663,44 Montgomery @ Market St. - San Francisco CA (W),44 Montgomery Street,San Francisco,CA,94104 +-122.401245,37.793546,Sansome - San Francisco CA (W),343 Sansome,San Francisco,CA,94104 +-122.400958,37.788587,36 Second Street - San Francisco CA (W),36 2nd Street,San Francisco,CA,94104 +-122.40131,37.787458,74 New Montgomery - San Francisco CA (W),74 New Montgomery Street,San Francisco,CA,94105 +-122.397525,37.791735,333 Market St. - San Francisco CA (W),333 Market Street,San Francisco,CA,94105 +-122.396829,37.785997,SF Courtyard Marriott Lobby - San Francisco CA,299 Second St.,San Francisco,CA,94105 +-122.396315,37.790778,340 Mission - San Francisco CA (W),340 Mission Street,San Francisco,CA,94105 +-122.394626,37.792015,123 Mission Street - San Francisco CA (W),123 Mission Street,San Francisco,CA,94105 +-122.392148,37.791388,Spear Street - San Francisco CA (W),201 Spear Street,San Francisco,CA,94105 +-122.394128,37.776574,Safeway-San Francisco #2606 - San Francisco CA,298 King Street,San Francisco,CA,94107 +-122.393849,37.776855,King & 4th Street - San Francisco - San Francisco CA (W),280 King Street,San Francisco,CA,94107 +-122.396445,37.778862,4th & Brannan - WFB - San Francisco CA (W),490 Brannan Street,San Francisco,CA,94107 +-122.405763,37.785854,4th & Market - S.F. - San Francisco CA (W),780 Market Street,San Francisco,CA,94108 +-122.405519,37.790062,Grant & Bush - San Francisco - San Francisco CA (W),359 Grant Avenue,San Francisco,CA,94108 +-122.406943,37.789353,390 Stockton @ Sutter (Union Sq) - San Francisco CA (W),390 Stockton Street,San Francisco,CA,94108 +-122.422222,37.796726,Polk Street - San Francisco CA (W),2165 Polk Street,San Francisco,CA,94109 +-122.422058,37.788501,Bush & Van Ness - S.F. - San Francisco CA (W),1401 Van Ness Avenue,San Francisco,CA,94109 +-122.420177,37.806734,Beach & Hyde - San Francisco - San Francisco CA (W),680 Beach Street,San Francisco,CA,94109 +-122.422193,37.79019,Van Ness & California - WFB - San Francisco CA (W),1560 Van Ness Avenue,San Francisco,CA,94109 +-122.410503,37.762998,Mariposa & Bryant - San Francisco CA (W),2727 Mariposa St.,San Francisco,CA,94110 +-122.428985,37.767513,Church & Market - S.F. - San Francisco CA (W),2018 Market Street,San Francisco,CA,94111 +-122.402661,37.794558,565 Clay St. - San Francisco CA (W),565 Clay Street,San Francisco,CA,94111 +-122.401934,37.802814,Levi's Plaza @ Sansome - San Francisco CA (W),1255 Battery Street,San Francisco,CA,94111 +-122.401844,37.795062,505 Sansome Street - San Francisco CA (W),505 Sansome Street,San Francisco,CA,94111 +-122.400884,37.797659,701 Battery - San Francisco CA (W),701 Battery Street,San Francisco,CA,94111 +-122.400733,37.795197,425 Battery - San Francisco - San Francisco CA (W),425 Battery Street,San Francisco,CA,94111 +-122.399916,37.793196,California & Battery - SF - San Francisco CA (W),295 California Street,San Francisco,CA,94111 +-122.398317,37.796988,99 Jackson - San Francisco CA (W),99 Jackson Street,San Francisco,CA,94111 +-122.39748,37.792465,398 Market St. - San Francisco CA (W),398 Market Street,San Francisco,CA,94111 +-122.397278,37.79357,50 California St. - San Francisco CA (W),52 California Street,San Francisco,CA,94111 +-122.396886,37.794148,27 Drumm Street - San Francisco CA (W),27 Drumm Street,San Francisco,CA,94111 +-122.394841,37.789938,199 Fremont @ Howard - SF - San Francisco CA (W),199 Fremont Street,San Francisco,CA,94111 +-122.434672,37.760968,4094 18th St. - San Francisco CA (W),4094 18th Street,San Francisco,CA,94114 +-122.431622,37.751244,24th & Noe - San Francisco CA (W),3995 24th Street,San Francisco,CA,94114 +-122.427846,37.769117,Safeway-San Franscisco #1507 - San Francisco CA,2020 Market St.,San Francisco,CA,94114 +-122.439697,37.785974,1750 Divisadero Street - San Francisco CA (W),1750 Divisadero Street,San Francisco,CA,94115 +-122.434812,37.788472,Grand Central Market - Mollie Stone - San Francisco CA,2435 California Street,San Francisco,CA,94115 +-122.434082,37.790209,Fillmore - San Francisco CA (W),2222 Fillmore Street,San Francisco,CA,94115 +-122.432727,37.7833,Fillmore & O'Farrell (UCO) - San Francisco CA (W),1501 Fillmore Street,San Francisco,CA,94115 +-122.431013,37.783066,Safeway - San Francisco #995 - San Francisco CA,1335 Webster,San Francisco,CA,94115 +-122.456249,37.764217,350 Parnassus - San Francisco CA (W),350 Parnassus Street,San Francisco,CA,94117 +-122.446454,37.775794,Masonic @ Fulton - S.F. - San Francisco CA (W),1799 Fulton Street,San Francisco,CA,94117 +-122.453151,37.78604,Laurel Village - SAN FRANCISCO CA (W),3595 California St.,San Francisco,CA,94118 +-122.478041,37.780088,5455 Geary Blvd. - WFB - San Francisco CA (W),5455 Geary Blvd.,San Francisco,CA,94121 +-122.488788,37.753953,Safeway - Noriega #985 - San Francisco CA,2350 Noriega Street,San Francisco,CA,94122 +-122.477486,37.763762,1800 Irving Street - San Francisco CA (W),1800 Irving Street,San Francisco,CA,94122 +-122.466,37.764301,Irving Street - San Francisco CA (W),744 Irving Street,San Francisco,CA,94122 +-122.438512,37.800749,Chestnut - San Francisco CA (W),2132 Chestnut Street,San Francisco,CA,94123 +-122.433663,37.804538,3727 Buchanan - San Francisco - San Francisco CA (W),3735 Buchanan,San Francisco,CA,94123 +-122.430316,37.797543,Union Street - San Francisco CA (W),1899 Union Street,San Francisco,CA,94123 +-122.418304,37.775,SFO T3 Baggage Claim (Retail) - San Francisco CA (A),HMSHost SFO Terminal 3 United Gatte73,San Francisco,CA,94125 +-122.46706,37.739737,100 West Portal/Vicente - San Francisco CA (W),100 West Portal,San Francisco,CA,94127 +-122.452562,37.74456,675 Portola - Miraloma - San Francisco CA (W),675 Portola Drive,San Francisco,CA,94127 +-122.44893,37.79771,Presidio & Letterman - SF - San Francisco CA (W),1 Letterman Drive,San Francisco,CA,94129 +-122.438981,37.743671,Safeway - San Francisco #667 - San Francisco CA,5290 Diamond Heights Blvd.,San Francisco,CA,94131 +-122.476733,37.729141,Stonestown Galleria - San Francisco CA (W),3251 20th Ave.,San Francisco,CA,94132 +-122.417294,37.80709,Jones @ Jefferson - San Francisco - San Francisco CA (W),2801 Jones S.,San Francisco,CA,94133 +-122.415229,37.805406,Bay & Taylor - San Francisco - San Francisco CA (W),499 Bay Street,San Francisco,CA,94133 +-122.393644,37.76731,Owens & 16th - San Francisco - San Francisco CA (W),1700 Owens Street,San Francisco,CA,94158 +-122.160646,37.446867,University & Waverly - Palo A(Relo) - Palo Alto CA,376 University Avenue,Palo Alto,CA,94301 +-122.137285,37.461627,Donohoe & East Bayshore (UCO) - Palo Alto CA (W),1745 East Bayshore Blvd.,Palo Alto,CA,94303 +-122.171057,37.442303,Stanford Shopping Center -Palo Alto - Palo Alto CA (W),79 Stanford Mall,Palo Alto,CA,94304 +-122.5233,37.9453,Mollie Stone - Greenbrae - Greenbrae CA,270 Bon Air Shopping Center,Greenbrae,CA,94304 +-122.149289,37.427355,2000 El Camino - Palo Alto - Palo Alto CA (W),2000 El Camino Real,Palo Alto,CA,94306 +-122.144374,37.426857,361 California - Palo Alto - Palo Alto CA (W),361 S. California Ave.,Palo Alto,CA,94306 +-122.128569,37.433283,Colorado & Middlefield - Palo Alto - Palo Alto CA (W),2775 Middlefield Road,Palo Alto,CA,94306 +-122.125113,37.413281,El Camino & El Camino Way - Palo Alto CA (W),4131 El Camino Real,Palo Alto,CA,94306 +-122.333113,37.579856,Peninsula & Delaware - San Mateo - San Mateo CA (W),842 North Delaware Street,San Mateo,CA,94401 +-122.324036,37.563018,San Mateo - San Mateo CA (W),54 East Fourth Avenue,San Mateo,CA,94401 +-122.347764,37.590781,DeAnza & Polhemus - San Mateo CA (W),111 DeAnza Blvd.,San Mateo,CA,94402 +-122.314532,37.552612,17th & El Camino - San Mateo - San Mateo CA (W),1701 South El Camino Real,San Mateo,CA,94402 +-122.329029,37.532826,Piazza-San Mateo - San Mateo CA,1218 W. Hillsdale Blvd.,San Mateo,CA,94403 +-122.30092,37.540263,Saratoga & Park Place North - San Mateo CA (W),1391 Saratoga Drive,San Mateo,CA,94403 +-122.293948,37.533577,38th & El Camino - San Mateo - San Mateo CA (W),3790 El Camino Real,San Mateo,CA,94403 +-122.3003,37.5373,Hillsdale Mall - San Mateo CA (W),145 Hillsdale Mall,San Mateo,CA,94403 +-122.291064,37.529711,Mollie Stone Market-San Mateo - San Mateo CA,47 W. 42nd Ave.,San Mateo,CA,94403 +-122.28457,37.559054,Target San Mateo T-1122 - San Mateo CA,2220 Bridgepointe Pkwy,San Mateo,CA,94404 +-122.28325,37.56051,Bridgepoint Pkwy. @ Hwy. 92 - San Mat - San Mateo CA (W),2292 Bridgepoint Parkway,San Mateo,CA,94404 +-122.275682,37.556513,Safeway - San Mateo #999 - San Mateo CA,921 E. Hillsdale Blvd.,San Mateo,CA,94404 +-122.273984,37.560795,Foster City - Foster City CA (W),1000 Metro Center Blvd.,Foster City,CA,94404 +-122.256472,37.554138,Foster City & Marlin Cove - Foster - Foster City CA (W),1066 Foster City Boulevard,Foster City,CA,94404 +-122.276499,37.779579,Webster & Atlantic - Alameda - Alameda CA (W),720 Atlantic Avenue,Alameda,CA,94501 +-122.25291,37.757015,Safeway - Alameda #2708 - Alameda CA,2227 South Shore Center,Alameda,CA,94501 +-122.25112,37.75677,South Shore Shopping Center - Alameda CA (W),2210-J South Shore Drive,Alameda,CA,94501 +-122.24275,37.763799,Park Street & Central - Alameda - Alameda CA (W),1364 Park Street,Alameda,CA,94501 +-122.233216,37.768045,Tilden & Blanding - Alameda - Alameda CA (W),2671 Blanding Avene,Alameda,CA,94501 +-122.254639,38.165251,American Canyon & Highway 29 - American Canyon CA (W),101 W. American Canyon Rd.,American Canyon,CA,94503 +-122.250468,38.165482,Safeway-American Canyon #1883 - American Canyon CA,103 American Canyon Rd.,American Canyon,CA,94503 +-122.2452,38.1711,"Napa Junction & Hwy. 29 - American C - American Canyon CA (D, W)",6050 Main St.,American Canyon,CA,94503 +-122.711772,38.440401,Santa Rosa (B&N) - Santa Rosa CA (W),200 D Street,Santa Rosa,CA,94504 +-121.922182,37.798708,Blackhawk - Danville CA (W),11000 Crow Canyon Road,Danville,CA,94506 +-121.919589,37.800639,Blackhawk & Camino Tassajara - Danv - Danville CA (W),4000 Blackhawk Plaza Circle,Danville,CA,94506 +-121.919431,37.798153,Safeway-Danville #1211 - Danville CA,3496 Camino Tassajar,Danville,CA,94506 +-122.032305,37.848474,Las Trampas & Danville- Alamo - Alamo CA (W),3225 Danville Boulevard,Alamo,CA,94507 +-122.027331,37.846216,Safeway-Alamo #962 - Alamo CA,200 Alamo Plaza,Alamo,CA,94507 +-121.842296,38.000294,Somersville & Delta Fair Antioch - Antioch CA (D),2504 Somersville Rd.,Antioch,CA,94509 +-121.78445,37.987864,Safeway-Antioch #1259 - Antioch CA,3365 Deer Valley Rd.,Antioch,CA,94509 +-122.193898,38.081835,"Rose Dr. & Columbus Pkwy. - Benicia - Benicia CA (D, W)",2120 Columbus Parkway,Benicia,CA,94510 +-122.165134,38.066884,Benicia - Benicia CA (W),820 Southampton Drive,Benicia,CA,94510 +-122.155525,38.054043,1st & Military - Benicia - Benicia CA (W),90 Solano Square,Benicia,CA,94510 +-122.155495,38.054108,Safeway - Benicia #774 - Benicia CA,50 Solano Square,Benicia,CA,94510 +-121.746163,37.943441,Hwy. 4 & Sand Creek - Brentwood - Brentwood CA (W),2530 Sand Creek Road,Brentwood,CA,94513 +-121.722805,37.924835,Balfour & Fairview - Brentwood - Brentwood CA (W),3150 Balfour Road,Brentwood,CA,94513 +-121.722094,37.924336,Safeway-Brentwood #2621 - Brentwood CA,3110 Balfour Road,Brentwood,CA,94513 +-121.691941,37.927052,"Highway 4 & Balfour - Brentwood - Brentwood CA (D, W)",8610 Brentwood Blvd.,Brentwood,CA,94513 +-121.57833,37.890278,Hwy. 4 & Bixler - Discovery Bay - Byron CA (W),14804 Hwy. 4,Byron,CA,94514 +-121.954073,37.950556,Safeway-Clayton #1195 - Clayton CA,5431 Clayton Rd.,Clayton,CA,94517 +-122.024261,37.938372,Oak Grove & Treat - Concord - Concord CA (W),790 Oak Grove Road,Concord,CA,94518 +-121.992948,37.97808,"Concord & Landana - Concord - Concord CA (D, W)",4125 Concord Boulevard,Concord,CA,94519 +-122.062778,37.967222,Sunvalley Mall - Concord - Concord CA (W),1 Sunvalley Mall,Concord,CA,94520 +-122.056126,37.979859,Concord & John Glenn - Concord - Concord CA (W),1170 Concord Ave.,Concord,CA,94520 +-122.033489,37.976499,Willow Pass Road - Concord - Concord CA (W),2118 Willow Pass Road,Concord,CA,94520 +-122.028554,37.978116,Safeway-Concord #955 - Concord CA,2600 Willow Pass Rd.,Concord,CA,94520 +-122.02693,38.000826,"Port Chicago & Olivera - Concord - Concord CA (D, W)",3373 Port Chicago Highway,Concord,CA,94520 +-121.991141,37.965932,Safeway - Concord #1192 - Concord CA,4309 Clayton Rd.,Concord,CA,94521 +-121.989403,37.964296,Clayton & Treat - Concord - Concord CA (W),4375 Clayton Road,Concord,CA,94521 +-121.956974,37.952255,Clayton Station - Concord CA (W),1536A Kirker Pass Road,Concord,CA,94521 +-122.073399,37.934484,Safeway - Pleasant Hill #928 - Pleasant Hill CA,600 Patterson Blvd.,Pleasant Hill,CA,94523 +-122.060055,37.949505,Safeway - Pleasant Hill #1541 - Pleasant Hill CA,1978 Contra Costa Blvd.,Pleasant Hill,CA,94523 +-122.059746,37.948527,Contra Costa & Gregory - Pleasant H - Pleasant Hill CA (W),1900 Contra Costa Boulevard,Pleasant Hill,CA,94523 +-122.035259,37.958829,I-680 & Monument - Pleasant Hill - Pleasant Hill CA (W),2370 Monument Blvd.,Pleasant Hill,CA,94523 +-122.004254,37.823474,Railroad & Love - Danville - Danville CA (W),1 Railroad Blvd.,Danville,CA,94526 +-121.999823,37.821928,Danville - Danville CA (W),398 Hartz Avenue,Danville,CA,94526 +-122.32135,37.928758,"San Pablo & Wall - El Cerrito (UCO) - El Cerrito CA (D, W)",11861 San Pablo Avenue,El Cerrito,CA,94530 +-122.298968,37.902694,San Pablo & Fairmount - El Cerrito - El Cerrito CA (W),3090 El Cerrito Plaza,El Cerrito,CA,94530 +-121.805941,38.00384,18th & A - Antioch - Antioch CA (W),1896 A Street,Antioch,CA,94531 +-121.802158,37.977018,"Lone Tree & Bluerock - Antioch - Antioch CA (D, W)",4045 Lone Tree Way,Antioch,CA,94531 +-121.782523,37.964609,"Antioch - Antioch CA (D, W)",4448 Lone Tree Way,Antioch,CA,94531 +-121.738584,37.962165,"Lone Tree & Slatten Ranch - Antioch - Antioch CA (D, W)",5779 Lone Tree Way,Antioch,CA,94531 +-122.068952,38.259556,Travis & Oliver - Fairfield - Fairfield CA (W),1500 Oliver Road,Fairfield,CA,94533 +-122.054091,38.258451,"Solano Mall - Fairfield - Fairfield CA (D, W)",1450 Travis Boulevard,Fairfield,CA,94533 +-122.053525,38.271881,Safeway - Fairfield #1127 - Fairfield CA,2401 Waterman Blvd.,Fairfield,CA,94533 +-122.041966,38.249243,Texas & Jefferson - Fairfield - Fairfield CA (W),700 Texas,Fairfield,CA,94533 +-122.033632,38.258556,"N. Texas & Travis - Fairfield - Fairfield CA (D, W)",1600 N. Texas Street,Fairfield,CA,94533 +-122.033518,38.288948,N. Texas & Dickson Hill - Fairfield - Fairfield CA (W),3334 North Texas Street,Fairfield,CA,94533 +-122.144267,38.213655,Green Valley Crossing - Fairfield - Fairfield CA (W),5121 Business Center Dr,Fairfield,CA,94534 +-122.066239,38.254969,I-80 & Oliver - Fairfield - Fairfield CA (D),1200 Oliver Rd.,Fairfield,CA,94534 +-121.945589,38.265672,Travis AFB BX - Travis AFB CA,461 Skymaster Circle,Travis Afb,CA,94535 +-122.025355,37.567481,Fremont & Nicolete - Fremont - Fremont CA (W),35674 Fremont Boulevard,Fremont,CA,94538 +-122.002062,37.532645,"Mowry & 880 Fremont - Fremont CA (D, W)",5339 Mowry Avenue,Fremont,CA,94538 +-121.989441,37.544707,Safeway-Fremont #309 - Fremont CA,39100 Argonaut Way,Fremont,CA,94538 +-121.988005,37.548889,Fremont Plaza - B&N - Fremont CA (W),3950 Mowry Avenue,Fremont,CA,94538 +-121.974453,37.553815,Civic Center & Stevenson - Fremont - Fremont CA (W),39370 Civic Center Drive,Fremont,CA,94538 +-121.973957,37.504582,"Boscell & Auto Mall Pkwy. - Fremont - Fremont CA (D, W)",5605 Automall Parkway,Fremont,CA,94538 +-121.96853,37.52476,Auto Mall Pkwy. & Fremont - Fremont - Fremont CA (W),43941 Hugo Terrace,Fremont,CA,94538 +-121.957095,37.531964,Safeway - Fremont #993 - Fremont CA,3902 Washington Blvd.,Fremont,CA,94538 +-121.998707,37.535832,Mowry & Blacow - Fremont CA (W),5034 Mowry Ave.,Fremont,CA,94538 +-121.952574,37.557778,Mission & Las Palmas - Fremont - Fremont CA (W),39981 Mission Blvd.,Fremont,CA,94539 +-121.929334,37.491274,Warm Springs Plaza - Fremont - Fremont CA (W),46655 Mission Boulevard,Fremont,CA,94539 +-121.92713,37.516163,Safeway-Fremont #1931 - Fremont CA,Mission Blvd. & Warm Springs Blvd.,Fremont,CA,94539 +-121.918762,37.528684,Mission & Cedar - Fremont - Fremont CA (W),43571 MISSION BOULEVARD,Fremont,CA,94539 +-122.119832,37.668177,Target Hayward T-2185 - Hayward CA,19661 Hesperian Blvd.,Hayward,CA,94541 +-122.11882,37.665839,Hesperian & A - Hayward - Hayward CA (W),20523 Hesperian Blvd.,Hayward,CA,94541 +-122.110407,37.653508,Hesperian & Winton - Hayward - Hayward CA (W),23948 Hesperain Blvd.,Hayward,CA,94541 +-122.08596,37.672564,Mission & A Street - Hayward - Hayward CA (W),799 A Street,Hayward,CA,94541 +-122.084256,37.679149,Safeway - Hayward #971 - Hayward CA,22280 Foothill Blvd.,Hayward,CA,94541 +-122.084062,37.678823,Foothill & City Center - Hayward - Hayward CA (W),22288 Foothill Blvd.,Hayward,CA,94541 +-122.089943,37.652359,Jackson & Amador - Hayward - Hayward CA (W),245 West Jackson,Hayward,CA,94544 +-122.069566,37.617848,Industrial & Stratford - Hayward - Hayward CA (W),1695 Industrial Parkway West,Hayward,CA,94544 +-122.065199,37.607183,Whipple & Industrial - Hayward - Hayward CA (W),2480 Whipple Rd.,Hayward,CA,94544 +-122.086269,37.694437,Castro Valley & Lake Chabot - CV - Castro Valley CA (W),2720 Castro Valley Blvd.,Castro Valley,CA,94546 +-122.074001,37.69648,Safeway - Castro Valley #768 - Castro Valley CA,20629 Redwood Rd.,Castro Valley,CA,94546 +-122.077865,37.695997,Castro Valley - 20663 Rustic Dr. - Castro Valley CA (W),20663 Rustic Drive,Castro Valley,CA,94546 +-122.261578,38.021703,"I-80 & Willow - Hercules - Hercules CA (D, W)",842 Willow Avenue,Hercules,CA,94547 +-122.279823,38.011872,San Pablo & Sycamore - Hercules - Hercules CA (W),3700 San Pablo Ave.,Hercules,CA,94547 +-122.120081,37.891745,Lafayette - Lafayette CA (W),3547 A Mt Diablo Blvd.,Lafayette,CA,94549 +-122.119494,37.892024,Safeway-Lafayette #783 - Lafayette CA,3540 Mt. Diablo Blvd.,Lafayette,CA,94549 +-122.104759,37.895059,Mt. Diablo & Hampton - Lafayette - Lafayette CA (W),3343 Mt. Diablo Blvd.,Lafayette,CA,94549 +-121.803424,37.65086,Isabel & Vineyard - Livermore - Livermore CA (W),101 East Vineyard Avenue,Livermore,CA,94550 +-121.776752,37.679329,Safeway - Livermore #910 - Livermore CA,1554 First St.,Livermore,CA,94550 +-121.773883,37.691174,N. Livermore & Portola - Livermore - Livermore CA (W),2050 Portola Ave.,Livermore,CA,94550 +-121.7447,37.69592,Livermore - Livermore CA (W),4333 First Street,Livermore,CA,94550 +-121.742334,37.697778,Safeway - Livermore #1257 - Livermore CA,4495 1st St.,Livermore,CA,94550 +-121.724274,37.718304,Vasco & Scenic - Livermore - Livermore CA (W),1502 North Vasco Road,Livermore,CA,94550 +-121.723539,37.708123,Las Positas & Vasco - Livermore - Livermore CA (W),223 South Vasco Road,Livermore,CA,94550 +-121.777747,37.679025,Vintner Square - Livermore II - Livermore CA (W),1472 1st Street,Livermore,CA,94550 +-121.817815,37.702218,"Airway & Kitty Hawk - Livermore - Livermore CA (D, W)",883 Airway Boulevard,Livermore,CA,94551 +-121.746301,37.701231,Target Livermore T-828 - Livermore CA,4300 Las Positas Rd.,Livermore,CA,94551 +-122.062351,37.690008,Grove & Center - Castro Valley - Castro Valley CA (W),22095 Center Street,Castro Valley,CA,94552 +-122.136906,38.017099,Main & North Court - Martinez - Martinez CA (W),700 Main Street,Martinez,CA,94553 +-122.119562,37.993803,Muir Station - Martinez - Martinez CA (W),502 Center Avenue,Martinez,CA,94553 +-122.093628,37.958054,Safeway - Martinez #972 - Martinez CA,6688 Alhambra Ave.,Martinez,CA,94553 +-122.093381,37.958805,Virginia Hills - Martinez CA (W),6682 Alhambra Ave.,Martinez,CA,94553 +-122.130934,37.835553,Safeway - Moraga #969 - Moraga CA,1355 Moraga Way,Moraga,CA,94556 +-122.124373,37.857192,Moraga & Rheem - Moraga - Moraga CA (W),500 Moraga Road,Moraga,CA,94556 +-122.310452,38.320933,Hwy. 29 & Redwood - Napa - Napa CA (W),2007 Redwood Rd.,Napa,CA,94558 +-122.30787,38.322491,Target Napa North T-1438 - Napa CA,4000 Bel Aire Plaza,Napa,CA,94558 +-122.301822,38.321553,Safeway-Napa #2449 - Napa CA,3375 Jefferson Square,Napa,CA,94558 +-122.301328,38.322642,Napa - Napa CA (W),1340 Trancas Street,Napa,CA,94558 +-122.295458,38.308729,Jefferson & Lincoln Napa - Napa CA,1200 Lincoln Avenue,Napa,CA,94558 +-122.286497,38.324833,Silverado Plaza - Napa - Napa CA (W),663 Trancas Street,Napa,CA,94558 +-122.274618,38.284378,"Soscol @ Hwy. 121-Napa - Napa CA (D, W)",247 Soscol Avenue,Napa,CA,94559 +-122.050181,37.551035,Newark Marketplace - Newark CA (W),34956-64 Newark Blvd.,Newark,CA,94560 +-122.048253,37.551881,Safeway - Newark #1224 - Newark CA,5877 Jarvis Ave.,Newark,CA,94560 +-122.038995,37.52977,Thornton & Sycamore - Newark - Newark CA (W),7324 Thorton Av,Newark,CA,94560 +-122.005082,37.527344,NewPark Mall - Newark - Newark CA (W),2086 NewPark Mall,Newark,CA,94560 +-121.990817,37.520168,Stevenson & Balentine - Newark - Newark CA (W),5741 Stevenson,Newark,CA,94560 +-121.731819,38.002436,Hwy. 4 & Carol - Oakley - Oakley CA (D),2190 Main Street,Oakley,CA,94561 +-122.191807,37.884266,Orinda - Orinda CA (W),1 Camino Sobrante,Orinda,CA,94563 +-122.19107,37.884407,Safeway - Orinda #967 - Orinda CA,2 Camino Sobrante,Orinda,CA,94563 +-122.1859,37.8753,Moraga & Bryant - Orinda - Orinda CA (W),2 Theatre Square,Orinda,CA,94563 +-122.302427,37.991406,"Pinole - Pinole CA (D, W)",1540 Fitzgerald Drive,Pinole,CA,94564 +-122.309256,37.986864,Target Pinole T-737 - Pinole CA,1400 Fitzgerald Dr,Pinole,CA,94564 +-121.942045,38.016099,Safeway - Pittsburg #1215 - Pittsburg CA,660 Bailey Road,Pittsburg,CA,94565 +-121.890278,38.013179,"Railroad & Leland - Pittsburg - Pittsburg CA (D, W)",2285 Railroad Avenue,Pittsburg,CA,94565 +-121.873545,37.998268,"Buchanan & Loveridge - Pittsburg - Pittsburg CA (D, W)",1315 Buchanan Rd.,Pittsburg,CA,94565 +-121.86823,38.013392,California & Loveridge - Pittsburg - Pittsburg CA (D),1269 California Avenue,Pittsburg,CA,94565 +-121.897506,37.660858,Bernal & Valley - Pleasanton - Pleasanton CA,6654 Koll Center Parkway,Pleasanton,CA,94566 +-121.87341,37.674972,Safeway-Pleasanton #1502 - Pleasanton CA,1701 Santa Rita Rd.,Pleasanton,CA,94566 +-121.931451,37.703429,Dublin (B&N) - Dublin CA (W),7904 Dublin Blvd.,Dublin,CA,94568 +-121.926898,37.710247,Amador Valley & Village Pkwy. - Dubl - Dublin CA (W),7197 Village Parkway,Dublin,CA,94568 +-121.923693,37.706024,Safeway - Dublin #1953 - Dublin CA,7499 Dublin Blvd.,Dublin,CA,94568 +-121.885648,37.706228,Hacienda @ 580 FWY - Dublin - Dublin CA (W),4930 Dublin Blvd.,Dublin,CA,94568 +-121.87235,37.704205,Safeway - Dublin #1932 - Dublin CA,4440 Tassajara,Dublin,CA,94568 +-122.181755,37.717749,Davis & Hwy. 880 - San Leandro CA (W),1933 Davis St.,San Leandro,CA,94577 +-122.16262,37.711508,Marina @ 880 FWY - San Leandro - San Leandro CA (W),1209 Marina Boulevard,San Leandro,CA,94577 +-122.155136,37.723033,Safeway - San Leandro #994 - San Leandro CA,1499 Washington Ave.,San Leandro,CA,94577 +-122.139458,37.731675,MacArthur & Estudillo - San Leandro - San Leandro CA (W),1057 A MacArthur Blvd.,San Leandro,CA,94577 +-122.141642,37.71497,E. 14th & 136th - San Leandro - San Leandro CA (W),13808 E. 14th St.,San Leandro,CA,94578 +-122.125139,37.699238,"Bayfair Center - San Leandro - San Leandro CA (D, W)",15555 E. 14th St.,San Leandro,CA,94578 +-122.13531,37.687318,Safeway - San Leandro #2315 - San Leandro CA,699 Lewelling Blvd.,San Leandro,CA,94579 +-122.129658,37.686927,15600 Hesperian - San Lorenzo - San Lorenzo CA (W),15600 Hesperian Boulevard,San Lorenzo,CA,94580 +-123.205699,39.143997,Safeway - Ukiah #1583 - Ukiah CA,653 S. State St.,Ukiah,CA,94582 +-123.19531,39.151936,"E. Perkins & Hwy. 101 - Ukiah - Ukiah CA (D, W)",704 E. Perkins Street,Ukiah,CA,94582 +-121.921973,37.774145,Safeway - San Ramon #2712 - San Ramon CA,11060 Bollinger Canyon Rd.,San Ramon,CA,94582 +-121.976363,37.773321,Safeway-San Ramon #982 - San Ramon CA,2505 San Ramon Valley Road,San Ramon,CA,94583 +-121.972582,37.777513,Crow Canyon Place - San Ram - San Ramon CA (W),3110 Crow Canyon Place,San Ramon,CA,94583 +-121.972325,37.77991,Magnolia Square - San Ramon - San Ramon CA (W),2005 Crow Canyon Place,San Ramon,CA,94583 +-121.968738,37.76602,Target San Ramon T-949 - San Ramon CA,2610 Bishop Dr,San Ramon,CA,94583 +-121.931406,37.729421,Alcosta @ Village Pkwy. - San Ramon - San Ramon CA (W),9150 A Alcosta Blvd.,San Ramon,CA,94583 +-121.94978,37.763478,500 The Marketplace - San Ramon - San Ramon CA (W),500 The Marketplace,San Ramon,CA,94583 +-122.129568,38.221338,"Pittman & Central - Fairfield - Fairfield CA (D, W)",4490 Central Way,Fairfield,CA,94585 +-122.020517,38.24645,"Sunset & Merganser - Suisun City - Suisun City CA (D, W)",193 Sunset Ave.,Suisun City,CA,94585 +-122.0704,37.5888,Dyer & I-880 - Union City CA (W),32240 Dyer Street,Union City,CA,94587 +-122.064947,37.5872,"Alvarado & Dyer - Union City - Union City CA (D, W)",32340 Alvarado Blvd.,Union City,CA,94587 +-122.022442,37.608175,Mission & Tamarack - Union City - Union City CA (W),33115 Mission Boulevard,Union City,CA,94587 +-122.020859,37.589004,Safeway - Union City #1197 - Union City CA,1790 Decoto Rd.,Union City,CA,94587 +-122.020752,37.589316,DeCoto & Alvarado-Niles -Union City - Union City CA (W),1752 DeCoto Road,Union City,CA,94587 +-121.926594,37.692667,Stoneridge Mall - Pleasanton - Pleasanton CA (W),1140 Stoneridge Mall Rd.,Pleasanton,CA,94588 +-121.907931,37.700206,Johnson & Owens - Pleasanton - Pleasanton CA (W),6050 Johnson Drive,Pleasanton,CA,94588 +-121.902291,37.689149,Pleasanton (The Crossroads) - Pleasanton CA (W),4555 Hopyard Road,Pleasanton,CA,94588 +-121.873724,37.675843,Amador Center (aka Amador Plaza) - Pleasanton CA (W),1737 Santa Rita Road,Pleasanton,CA,94588 +-122.255379,38.122938,Sonoma & Redwood - Vallejo - Vallejo CA (W),3455 Sonoma Blvd.,Vallejo,CA,94590 +-122.233997,38.084469,"I-80 & Magazine - Vallejo - Vallejo CA (D, W)",199 Lincoln Road West,Vallejo,CA,94590 +-122.226515,38.125427,Safeway - Vallejo #989 - Vallejo CA,774 Admiral Callaghan,Vallejo,CA,94590 +-122.228843,38.094896,"Lincoln & Benicia - Vallejo - Vallejo CA (D, W)",400 E. Lincoln Blvd.,Vallejo,CA,94591 +-122.22366,38.132632,I-80 & Admiral Callaghan - Vallejo - Vallejo CA (W),966 Admiral Callaghan,Vallejo,CA,94591 +-122.21169,38.1061,Safeway - Vallejo #1631 - Vallejo CA,122 Robies Way,Vallejo,CA,94591 +-122.08713,37.924377,Geary & Camino Verde - Walnut Cree - Walnut Creek CA (W),1544 Palos Verdes Mall,Walnut Creek,CA,94596 +-122.06361,37.904867,Target Walnut Creek T-1208 - Walnut Creek CA,1871 N. Main St.,Walnut Creek,CA,94596 +-122.061024,37.927299,Main & Treat - Walnut Creek - Walnut Creek CA (W),2922 North Main Street,Walnut Creek,CA,94596 +-122.060618,37.895452,Main & Bothelo - Walnut Creek - Walnut Creek CA (W),1152 Locust Street,Walnut Creek,CA,94596 +-122.060296,37.898188,Main & Duncan - Walnut Creek - Walnut Creek CA (W),1340 Main Street,Walnut Creek,CA,94596 +-122.058703,37.897057,Broadway Plaza - Walnut Creek CA (W),1146 Broadway Plaza,Walnut Creek,CA,94596 +-122.057061,37.897975,Safeway-Walnut Creek #917 - Walnut Creek CA,600 S. Broadway,Walnut Creek,CA,94596 +-122.041189,37.928036,Countrywood - Walnut Creek - Walnut Creek CA (W),716 Bancroft Street,Walnut Creek,CA,94598 +-122.041035,37.92787,Safeway-Walnut Creek #936 - Walnut Creek CA,710 Bancroft Rd.,Walnut Creek,CA,94598 +-122.015348,37.925947,Safeway-Walnut Creek #1701 - Walnut Creek CA,2941 Ygnacio Valley Rd.,Walnut Creek,CA,94598 +-122.230236,37.774203,Fruitvale & I-880 - Oakland CA (W),3060A E. 9th St.,Oakland,CA,94601 +-122.215787,37.801182,Safeway-Oakland #908 - Oakland CA,3550 Fruitvale Ave.,Oakland,CA,94602 +-122.194212,37.729328,98th & Bigge - Oakland (UCO) - Oakland CA (W),185 98th Ave.,Oakland,CA,94603 +-122.250754,37.787971,Estuary Cove - Oakland - Oakland CA (W),1211 E. Embarcadero Cove,Oakland,CA,94606 +-122.273952,37.800472,Broadway & 8th Street - Oakland - Oakland CA (W),801 Broadway,Oakland,CA,94607 +-122.301564,37.838818,2200 Powell - Emeryville - Emeryville CA (W),2200 Powell Street,Emeryville,CA,94608 +-122.294456,37.837732,Christie & Shellmound - Emeryville - Emeryville CA (W),5767 Christie Avenue,Emeryville,CA,94608 +-122.291627,37.846732,Hollis & 65th - Emeryville - Emeryville CA (W),1405 65th St.,Emeryville,CA,94608 +-122.28236,37.828836,Emeryville - Emeryville CA (W),3839 Emery Street,Emeryville,CA,94608 +-122.243447,37.811274,3347 Lakeshore Avenue - Oakland CA (W),3347 Lakeshore Avenue,Oakland,CA,94610 +-122.252006,37.826427,4098 Piedmont Avenue - Oakland - Oakland CA (W),4098 Piedmont Ave.,Oakland,CA,94611 +-122.251815,37.835111,Rockridge - Oakland CA (W),5132 Broadway,Oakland,CA,94611 +-122.209405,37.826505,2059 Mountain Blvd. - Oakland - Oakland CA (W),2059 Mountain Blvd.,Oakland,CA,94611 +-122.274603,37.803503,Oakland City Center - Oakland CA (W),1200 Clay Street,Oakland,CA,94612 +-122.26922,37.81047,315 1/2 20th St. - Oakland CA,3 15 1/2 20th St.,Oakland,CA,94612 +-122.267203,37.811645,Broadway & Grand - Oakland - Oakland CA (W),420 W. Grand Ave.,Oakland,CA,94612 +-122.211348,37.715709,OAK T - 2 Gate 23 - Oakland CA (A),1Airport Drive,Oakland,CA,94621 +-122.211348,37.715709,OAK T - 1 Gate 11 - Oakland CA (A),1Airport Drive,Oakland,CA,94621 +-122.211348,37.715709,OAK T -1 Gate 4 - Oakland CA (A),1Airport Drive,Oakland,CA,94621 +-122.211348,37.715709,OAK T -2 Gate 28 - Oakland CA (A),1Airport Drive,Oakland,CA,94621 +-122.19744,37.73737,Hegenberger & I-880 - Oakland(UCO) - Oakland CA (W),8450-D Edgewater Drive,Oakland,CA,94621 +-122.268011,37.868923,2224 Shattuck - Berkeley - Berkeley CA (W),2224 Shattuck Avenue,Berkeley,CA,94704 +-122.266176,37.87026,2128 Oxford St. - Berkeley CA (W),2128 Oxford Street,Berkeley,CA,94704 +-122.279827,37.891351,Solano Avenue - Berkeley CA (W),1799 Solano Avenue,Berkeley,CA,94707 +-122.307741,37.88442,Target Albany T-1926 - Albany CA,1057 Eastshore Hwy.,Albany,CA,94710 +-122.384596,37.926372,Park Place & Washington - Point Richmond CA (W),133 Park Place,Point Richmond,CA,94801 +-122.295062,37.978798,Appian & Valley View - El Sobrante - El Sobrante CA (W),454 Appian Way,El Sobrante,CA,94803 +-122.330463,37.933225,Target Richmond T-1507 - Richmond CA,4500 Macdonald Ave.,Richmond,CA,94805 +-122.345013,37.964765,"San Pablo & El Portal - San P(UCO) - San Pablo CA (D, W)",14330 San Pablo Ave.,San Pablo,CA,94806 +-122.334766,37.990212,"Richmond & San Pablo (UCO) - Richmond CA (D, W)",15521 San Pablo Avenue,Richmond,CA,94806 +-122.333405,37.955368,San Pablo Dam & San Pablo - Sa(UCO) - San Pablo CA (W),308 San Pablo Town Center,San Pablo,CA,94806 +-122.529831,37.970848,Safeway - San Rafael #653 - San Rafael CA,700 B Street,San Rafael,CA,94901 +-122.528381,37.973351,San Rafael/4th St. - San Rafael CA (W),1100 Fourth Street,San Rafael,CA,94901 +-122.519632,37.969822,2nd & Grand - San Rafael - San Rafael CA (W),777 Grand Avenue,San Rafael,CA,94901 +-122.548855,38.008115,Safeway - San Rafael #932 - San Rafael CA,950 Las Gallinas,San Rafael,CA,94903 +-122.5459,38.0091,Terra Linda - San Rafael CA (W),260 Northgate One,San Rafael,CA,94903 +-122.522752,37.969157,Irwin & Lincoln - San Rafael - San Rafael CA (W),647 Irwin St.,San Rafael,CA,94915 +-122.530358,37.926278,Safeway-Corte Madera #2318 - Corte Madera CA,137 Corte Madera,Corte Madera,CA,94925 +-122.515758,37.931093,Corte Madera - Corte Madera CA (W),1732A Redwood Hwy.,Corte Madera,CA,94925 +-122.720245,38.348686,"Rohnert Park & Labath - Rohnert Pk - Rohnert Park CA (D, W)",459 Rohnert Park Expressway W.,Rohnert Park,CA,94928 +-122.709565,38.347656,Safeway - Rohnert Park #918 - Rohnert Park CA,6340 Commerce Blvd.,Rohnert Park,CA,94928 +-122.693031,38.362453,"Golf Course & Country Club - Rohnert Park CA (D, W)",969 A Golf Course Drive,Rohnert Park,CA,94928 +-122.678008,38.336055,"Cotati & Bodway - Rohnert Park - Rohnert Park CA (D, W)",1716 East Cotati Avenue,Rohnert Park,CA,94928 +-122.709547,38.346972,Rohnert Park - Commerce - Rohnert Park CA (W),6356 Commerce Blvd.,Rohnert Park,CA,94928 +-122.720323,38.346911,Target Rohnert Park T-852 - Rohnert Park CA,475 Rohnert Park Expy W.,Rohnert Park,CA,94928 +-122.697546,38.328981,E. Cotati & Lasalle - Cotati - Cotati CA (W),640 E. Cotati Avenue,Cotati,CA,94931 +-122.510629,37.9479,Larkspur Landing - Larkspur - Larkspur CA (W),1801 Larkspur Landing Circle,Larkspur,CA,94939 +-122.524756,37.881207,Shoreline & Almonte - Mill Valley - Mill Valley CA (W),247 Shoreline Highway,Mill Valley,CA,94941 +-122.513097,37.898648,Safeway - Mill Valley #2718 - Mill Valley CA,110 Strawberry Village,Mill Valley,CA,94941 +-122.504494,37.891825,Strawberry Village - Mill Valley CA (W),306 Strawberry Village,Mill Valley,CA,94941 +-122.530736,37.894461,45 Camino Alto - Mill Valley CA (W),45 Camino Alto,Mill Valley,CA,94941 +-122.603576,38.121898,San Marin & San Ramon - Novato - Novato CA (W),127 San Marin Dr,Novato,CA,94945 +-122.567756,38.111559,Redwood & Olive - Novato - Novato CA (W),7514 Redwood Blvd.,Novato,CA,94945 +-122.554994,38.093507,Vintage & Rowland - Novato - Novato CA (W),132 Vintage Way,Novato,CA,94945 +-122.571164,38.104007,Safeway-Novato #979 - Novato CA,900 Diablo Ave.,Novato,CA,94947 +-122.530785,38.05875,Safeway - Novato #2828 - Novato CA,5720 Nave Drive,Novato,CA,94947 +-117.115969,32.807547,Vons-San Diego #2118 - San Diego CA,3550 Murphy Canyon Rd.,San Diego,CA,94947 +-122.569669,38.105973,Novato - Novato CA (W),880 De Long Ave.,Novato,CA,94947 +-122.640855,38.234615,Petaluma - Petaluma CA (W),125 Petaluma Blvd. N.,Petaluma,CA,94952 +-122.668065,38.275945,Old Redwood & North McDowell - Peta - Petaluma CA (W),5306 C. Old Redwood Highway,Petaluma,CA,94954 +-122.639362,38.268081,Sonoma Mtn Pkwy. & Riesling - Petalu - Petaluma CA (W),701 Sonoma Mountain Pkwy,Petaluma,CA,94954 +-122.628781,38.250816,N. McDowell & E. Washington - Petaluma CA (W),205 N. McDowell,Petaluma,CA,94954 +-122.622772,38.247504,Safeway-Petaluma #796 - Petaluma CA,373 S. McDowell Blvd.,Petaluma,CA,94954 +-122.598884,38.233663,"Lakeville & McDowell - Petaluma - Petaluma CA (D, W)",3100 Lakeville Hwy.,Petaluma,CA,94954 +-122.56502,37.97997,Safeway-San Anselmo #1723 - San Anselmo CA,838 Sir Francis Drake Blvd.,San Anselmo,CA,94960 +-122.510147,37.873331,Donahue & Hwy. 101 - Marin City - Marin City CA (W),190 Donahue St.,Marin City,CA,94965 +-122.479337,37.85498,Sausalito - Sausalito CA (W),14-16 Princess Street,Sausalito,CA,94965 +-121.901131,36.980049,Safeway-Aptos #640 - Aptos CA,16 Rancho Del Mar,Aptos,CA,95003 +-121.982203,37.285491,Campbell & Fulton - Campbell - Campbell CA (W),1820 W. Campbell Ave.,Campbell,CA,95008 +-121.94979,37.280686,Safeway - Campbell #1293 - Campbell CA,2341 Winchester Blvd.,Campbell,CA,95008 +-121.946316,37.270739,Camden & Curtner - Campbell - Campbell CA (W),1228 Camden Avenue,Campbell,CA,95008 +-121.94504,37.287367,267 E. Campbell Ave. - Campbell CA (W),267 E. Campbell Avenue,Campbell,CA,95008 +-121.944436,37.29367,Hamilton & Central - Campbell - Campbell CA (W),330 East Hamilton Ave.,Campbell,CA,95008 +-121.931566,37.29224,Hamilton Plaza - Campbell CA (W),1696 S. Bascom Avenue,Campbell,CA,95008 +-121.966688,36.977844,Capitola - Capitola CA (W),1955 41st Avenue,Capitola,CA,95010 +-121.96517,36.976696,Capitola Mall - Capitola CA (W),1855 41st Avenue- Space F01,Capitola,CA,95010 +-122.066752,37.337197,Homestead & Foothill - Cupertino - Cupertino CA (W),22390 Homestead Road,Cupertino,CA,95014 +-122.036108,37.324067,Target Cupertino T-323 - Cupertino CA,20745 Stevens Creek Blvd.,Cupertino,CA,95014 +-122.032499,37.322809,Cupertino - Cupertino CA (W),20520A Stevens Creek Blvd.,Cupertino,CA,95014 +-122.014719,37.337354,Homestead & Wolfe - Cupertino - Cupertino CA (W),11111 N. Wolfe Rd.,Cupertino,CA,95014 +-121.776763,36.938344,Freedom &Airport - Watsonville - Freedom CA (W),2024 Freedom Blvd.,Freedom,CA,95019 +-121.775741,36.939835,Safeway - Freedom #2840 - Freedom CA,2010 Freedom Blvd.,Freedom,CA,95019 +-121.58932,37.014256,Safeway-Gilroy #1505 - Gilroy CA,905 1st St.,Gilroy,CA,95020 +-121.58519,37.014263,Gilroy Town Place - Gilroy CA (W),795 First Street,Gilroy,CA,95020 +-121.56244,37.022558,Gilroy Outlet Center - Gilroy CA (W),8375 Arroya Circle,Gilroy,CA,95020 +-121.551436,37.002313,"Camino Arroyo & Pacheco - Gilroy - Gilroy CA (D, W)",6865 Camino Arroyo,Gilroy,CA,95020 +-121.39145,36.838578,Safeway - Hollister #1757 - Hollister CA,591 Tres Pinos Road,Hollister,CA,95023 +-121.390789,36.83574,Sunset & Airline - Hollister - Hollister CA (W),1760 A Airline Highway,Hollister,CA,95023 +-121.389588,36.835447,Target Hollister T-941 - Hollister CA,1790 Airline Hwy.,Hollister,CA,95023 +-121.979764,37.230194,Santa Cruz & Hwy. 9 - Los Gatos - Los Gatos CA,442 N. Santa Cruz Avenue,Los Gatos,CA,95030 +-121.965754,37.235994,Blossom Hill Pavilion Relocation - Los Gatos CA (W),624 Blossom Hill Road,Los Gatos,CA,95032 +-121.952584,37.253628,Los Gatos & Hwy. 85 - Los Gatos - Los Gatos CA (W),14777 Los Gatos Blvd.,Los Gatos,CA,95032 +-121.900937,36.975832,Soquel & Trout Gulch - Aptos - Aptos CA (W),105 B Post Office Drive,Aptos,CA,95033 +-121.921571,37.421601,Cypress & Bellew - Milpitas CA (W),367 Cypress Dr,Milpitas,CA,95035 +-121.921115,37.453727,"California & Dixon Landing - Milpitas CA (D, W)",1545 California Circle,Milpitas,CA,95035 +-121.920866,37.42775,McCarthy Ranch - Milpitas CA (W),127 Ranch Drive,Milpitas,CA,95035 +-121.901747,37.446528,Jacklin & Escuela - Milpitas - Milpitas CA (W),353 Jacklin Rd.,Milpitas,CA,95035 +-121.900395,37.434706,Milpitas II - Milpitas CA (W),128 N. Milpitas Blvd.,Milpitas,CA,95035 +-121.899877,37.415641,Great Mall of the Bay Area-Milpitas - Milpitas CA (W),447 Great Mall Drive,Milpitas,CA,95035 +-121.8996,37.4322,Safeway - Milpitas #1879 - Milpitas CA,Milpitas Blvd. & Calaveras Blvd.,Milpitas,CA,95035 +-121.885909,37.435368,Calaveras & Park Victoria - Milpita - Milpitas CA (W),1197 East Calaveras Boulevard,Milpitas,CA,95035 +-121.664669,37.144612,"Cochrane & Monterey - Morgan Hill - Morgan Hill CA (D, W)",18585 Monterey Road,Morgan Hill,CA,95037 +-121.65419,37.156596,Target Morgan Hill T-2252 - Morgan Hill CA,1061 Cochrane Rd.,Morgan Hill,CA,95037 +-121.65068,37.155649,"Cochrane & Hwy. 101 - Morgan Hill - Morgan Hill CA (D, W)",1041 Cochrane Road,Morgan Hill,CA,95037 +-121.643734,37.113245,Morgan Hill - Vineyard Blvd./Monter - Morgan Hill CA (W),251 Vineyard Town Center Way,Morgan Hill,CA,95037 +-121.63903,37.130545,Dunne & Walnut Grove - Morgan Hill - Morgan Hill CA (W),17015 Walnut Grove Drive,Morgan Hill,CA,95037 +-121.638779,37.114604,Safeway-Morgan Hill #1891 - Morgan Hill CA,235 Tennant Station,Morgan Hill,CA,95037 +-121.636545,37.128944,Safeway-Morgan Hill #1455 - Morgan Hill CA,840 E. Dunne Ave.,Morgan Hill,CA,95037 +-121.967812,37.351776,Santa Clara - Santa Clara CA (W),2370 El Camino Real,Santa Clara,CA,95050 +-121.965849,37.327829,200 Saratoga Ave. - Santa Clara CA (W),200 Saratoga Ave.,Santa Clara,CA,95050 +-121.944009,37.324723,Valley Fair Mall - SJ - San Jose CA (W),2855 Stevens Creek Boulevard,San Jose,CA,95050 +-121.938703,37.339384,Washington & Linden - Santa Clara - Santa Clara CA (W),71 Washington Ave.,Santa Clara,CA,95050 +-121.936601,37.345988,Safeway-Santa Clara #763 - Santa Clara CA,2605 The Alameda,Santa Clara,CA,95050 +-121.936475,37.351988,El Camino @ Railroad - Santa Clara - Santa Clara CA (W),495 El Camino Real,Santa Clara,CA,95050 +-121.936315,37.356347,Coleman Avenue - Santa Clara - Santa Clara CA (W),1349 Coleman Avenue,Santa Clara,CA,95050 +-121.997201,37.353046,"El Camino & Lawrence - Santa Clara - Santa Clara CA (D, W)",3605 El Camino Real,Santa Clara,CA,95051 +-121.994322,37.337843,Homestead & Lawrence - Santa Clara - Santa Clara CA (W),3551 Homestead Road,Santa Clara,CA,95051 +-121.976036,37.338578,Safeway - Santa Clara #700 - Santa Clara CA,2760 Homestead Road,Santa Clara,CA,95051 +-121.955,37.3894,Safeway-Santa Clara #1990 - Santa Clara CA,3970 Rivermark Plaza,Santa Clara,CA,95053 +-121.9462,37.394882,Safeway - Santa Clara #1990 - Santa Clara CA,3970 Rivermark Plaza,Santa Clara,CA,95053 +-120.882839,37.520995,Safeway - Turlock #1968 - Turlock CA,3051 Countryside Dr,Turlock,CA,95053 +-121.978965,37.391507,Mercado Center - Santa Clara - Santa Clara CA (W),3113 Mission College,Santa Clara,CA,95054 +-121.960961,37.386092,Montague & Thomas - Santa Clara - Santa Clara CA (W),3700 Thomas Road,Santa Clara,CA,95054 +-122.045172,36.96097,Safeway - Santa Cruz #2607 - Santa Cruz CA,2203 Mission St.,Santa Cruz,CA,95060 +-122.030737,37.046374,Safeway - Scotts Valley #300 - Scotts Valley CA,253 Mount Hermon Rd.,Scotts Valley,CA,95060 +-122.02641,36.973927,Santa Cruz - Santa Cruz CA (W),1335 Pacific Avenue,Santa Cruz,CA,95060 +-122.028327,37.045918,Mt Herman & Springs Lake - Scotts Valley CA (W),219 Mt Herman Rd.,Scotts Valley,CA,95066 +-122.007624,37.061297,Hwy. 17 & Scotts Valley Drive - Scotts Valley CA (W),5600 Scotts Valley Drive,Scotts Valley,CA,95066 +-122.032547,37.258783,Saratoga & Big Basin - Saratoga - Saratoga CA (W),14410 Big Basin Way Unit D,Saratoga,CA,95070 +-122.032292,37.281953,Safeway - Saratoga #919 - Saratoga CA,12876 Saratoga-Sunnyvale,Saratoga,CA,95070 +-122.032212,37.280111,Argonaut - Saratoga - Saratoga CA (W),12960N Saratoga-Sunnyvale Rd.,Saratoga,CA,95070 +-121.96457,36.986884,41st Ave. & Soquel - Soquel - Soquel CA (W),2740 41st Street,Soquel,CA,95073 +-121.96451,36.986912,Safeway - Soquel #1929 - Soquel CA,2720 41st Ave.,Soquel,CA,95073 +-121.774306,36.915429,Target Watsonville T-1143 - Watsonville CA,1415 Main St.,Watsonville,CA,95076 +-121.773007,36.916669,Main & Ohlone - Watsonville - Watsonville CA (W),1423 Main Street,Watsonville,CA,95076 +-121.929552,37.371184,SJC San Jose Terminal C-1 - San Jose CA (A),2077Airport Blvd.,San Jose,CA,95110 +-121.921255,37.369392,Technology @ Metro Drive - San Jose - San Jose CA (W),1759 Technology Dr,San Jose,CA,95110 +-121.911453,37.34148,"Coleman & Taylor - San Jose - San Jose CA (D, W)",695 Coleman Ave.,San Jose,CA,95110 +-121.904396,37.339102,Target San Jose College Park T-2088 - San Jose CA,533 Coleman Ave.,San Jose,CA,95110 +-121.847733,37.289846,"Monterey & Lewis - San Jose - San Jose CA (D, W)",2961 Monterey Road,San Jose,CA,95111 +-121.888469,37.337192,E. Santa Clara & 3rd San Jose - San Jose CA (W),101 E. Santa Clara Street,San Jose,CA,95112 +-121.861855,37.304121,Target San Jose T-2281 - San Jose CA,2071 Monterey Rd.,San Jose,CA,95112 +-121.916929,37.370509,N. First & Old Bayshore - San Jose - San Jose CA (W),1751 North First Street,San Jose,CA,95113 +-121.89024,37.332554,101 Center Park Plaza - San Jose CA (W),125 Park Center Plaza,San Jose,CA,95113 +-121.888703,37.333666,Pavilion Downtown - San Jose CA (W),150 S. First Street,San Jose,CA,95113 +-121.892721,37.335363,W.Santa Clara @ San Pedro Sq - San Jose CA (W),145 West Santa Clara Street,San Jose,CA,95113 +-121.907161,37.252048,Safeway-San Jose #997 - San Jose CA,1663 Branham Ln.,San Jose,CA,95118 +-121.893517,37.274505,Foxworthy & Cherry - San Jose - San Jose CA (W),1455 East Foxworthy Avenue,San Jose,CA,95118 +-121.888234,37.245964,Princeton Plaza - San Jose - San Jose CA (W),1362 Kooser Road,San Jose,CA,95118 +-121.878894,37.275746,Safeway - San Jose #1574 - San Jose CA,4950 Almaden Expy,San Jose,CA,95118 +-121.877988,37.254112,Almaden & Blossom Hill - San Jose - San Jose CA (W),5353 Almaden Expressway,San Jose,CA,95118 +-121.775287,37.231769,Bernal & Via Del Oro - San Jose - San Jose CA (W),125 Bernal Road,San Jose,CA,95119 +-121.863914,37.222483,Safeway - San Jose #695 - San Jose CA,6477 Almaden Rd.,San Jose,CA,95120 +-121.861227,37.219662,Almaden Center - San Jose - San Jose CA (W),6477 Almaden Expressway,San Jose,CA,95120 +-121.821916,37.300285,Capitol & McLaughlin - San Jose - San Jose CA (W),1041 East Capitol Expressway,San Jose,CA,95121 +-121.812577,37.307802,Target San Jose East T-2238 - San Jose CA,3155 Silver Creek Rd.,San Jose,CA,95121 +-121.808257,37.31137,Capitol Expy & Aborn - San Jo - San Jose CA (W),1847 E. Capitol Expressway,San Jose,CA,95121 +-121.794028,37.313987,Aborn & White - San Jose CA (W),2721 Aborn Rd.,San Jose,CA,95121 +-121.842792,37.339713,Story & King - San Jose (UCO) - San Jose CA (W),1110 King Road,San Jose,CA,95122 +-121.84047,37.339725,Target San Jose T-1984 - San Jose CA,1750 Story Road,San Jose,CA,95122 +-121.82533,37.322626,"Tully & King - San Jose - San Jose CA (D, W)",1712 Tully Rd.,San Jose,CA,95122 +-121.81,37.3265,Eastridge Mall - San Jose - San Jose CA,1 Eastridge Mall,San Jose,CA,95122 +-121.865963,37.250907,"Blossom Hill & Winfield - San Jose - San Jose CA (D, W)",967 Blossom Hill Road,San Jose,CA,95123 +-121.861167,37.250571,Oakridge Mall - San Jose - San Jose CA (W),925 Blossom Hill Road,San Jose,CA,95123 +-121.860736,37.252297,Target San Jose Oakridge T-1927 - San Jose CA,879 Blossom Hill Rd.,San Jose,CA,95123 +-121.857889,37.249141,Blossom Hill - San Jose CA (W),854 Blossom Hill Road,San Jose,CA,95123 +-121.830712,37.23872,Santa Teresa & Snell - San Jose - San Jose CA (W),6009 Snell Avenue,San Jose,CA,95123 +-121.922537,37.275887,Curtner & Leigh - San Jose - San Jose CA (W),1876 Curtner Avenue,San Jose,CA,95124 +-121.917944,37.26303,Hillsdale & Camden - San Jose - San Jose CA (W),1815 Hillsdale Avenue,San Jose,CA,95124 +-121.931162,37.295564,Bascom Square - San Jose CA (W),1574 South Bascom Ave.,San Jose,CA,95125 +-121.914062,37.304418,Meridian & Willow - San Jose - San Jose CA (W),1087 Meridian Avenue,San Jose,CA,95125 +-121.913435,37.29246,Meridian & Lenn - San Jose - San Jose CA (W),1702 Meridian Avenue,San Jose,CA,95125 +-121.910666,37.293601,Safeway - San Jose #1483 - San Jose CA,1530 Hamilton Ave.,San Jose,CA,95125 +-121.897351,37.30366,Willow Glen - San Jose CA (W),1396 Lincoln Avenue,San Jose,CA,95125 +-121.880189,37.290477,Almaden & Curtner - San Jose - San Jose CA (W),2306 Almaden Rd.,San Jose,CA,95125 +-121.865454,37.302022,Curtner and Monterey - San Jose - San Jose CA,175 Curtner Avenue,San Jose,CA,95125 +-121.924102,37.334403,Park & Naglee - San Jose - San Jose CA (W),1700 Park Avenue,San Jose,CA,95126 +-121.91376,37.323574,San Carlos & Meridian - San Jose - San Jose CA (W),1401 West San Carlos Avenue,San Jose,CA,95126 +-121.912645,37.332535,Alameda & Julian - S.J. - San Jose CA (W),1338 The Alameda,San Jose,CA,95126 +-121.843076,37.370184,Capital Square Mall - San Jose - San Jose CA (W),2707 McKee Road,San Jose,CA,95127 +-121.8208,37.3692,Alum Rock & White - San Jose - San Jose CA (W),3103 & 3107 Alum Rock,San Jose,CA,95127 +-121.819436,37.356495,Story & White - San Jose - San Jose CA (W),1080 South White Rd.,San Jose,CA,95127 +-121.950031,37.297795,Westpark Plaza - San Jose - San Jose CA (W),1335 S. Winchester Blvd.,San Jose,CA,95128 +-121.949693,37.312895,Winchester & Magliocco - San Jose - San Jose CA (W),804 South Winchester Boulevard,San Jose,CA,95128 +-121.949323,37.320891,Winchester & Steven's Creek - San Jose CA (W),3055 Olin Avenue,San Jose,CA,95128 +-122.031544,37.311885,Bollinger & DeAnza - San Jose - San Jose CA (W),7290 Bollinger Rd.,San Jose,CA,95129 +-122.010795,37.310531,Safeway - San Jose #767 - San Jose CA,6150 Bollinger Road,San Jose,CA,95129 +-121.994519,37.322942,Stevens Creek & Lawrence - San Jose - San Jose CA (W),5180 A Stevens Creek Blvd.,San Jose,CA,95129 +-121.989541,37.291254,Westgate Shopping Center - San Jose CA (W),1600 Saratoga Avenue,San Jose,CA,95129 +-121.97769,37.308774,Saratoga & Williams - San Jose - San Jose CA (W),995 Saratoga Avenue,San Jose,CA,95129 +-121.92761,37.385587,1st Street & Trimble - San Jose - San Jose CA (W),2579 North First Street,San Jose,CA,95131 +-121.895688,37.38269,North Park Plaza - San Jose - San Jose CA (W),1704 Oakland Road,San Jose,CA,95131 +-121.873227,37.372906,Berryessa & King St. - San Jose - San Jose CA (W),1712 Berryessa Avenue,San Jose,CA,95133 +-121.944032,37.405392,North First & Rio Robles - San Jose - San Jose CA (W),31 Rio Robles East,San Jose,CA,95134 +-121.922542,37.398695,River Oaks & Montague - San Jose - San Jose CA (W),670 River Oaks Parkway,San Jose,CA,95134 +-121.771469,37.3004,San Felipe & Yerba Buena - San Jose - San Jose CA (W),4848 San Felipe Road,San Jose,CA,95135 +-121.857529,37.27493,"Capitol & Timberloop - San Jose - San Jose CA (D, W)",605 West Capitol Expressway,San Jose,CA,95136 +-121.833302,37.266841,Safeway-San Jose #316 - San Jose CA,179 Branham Ln.,San Jose,CA,95136 +-121.787953,37.257362,Silver Creek @ Beaumont Canyon - SJ - San Jose CA (W),5651 Silver Creek Valley Rd.,San Jose,CA,95138 +-121.812022,37.331084,Capitol & Tully - San Jose - San Jose CA (W),2990 East Capitol Expressway,San Jose,CA,95148 +-121.244919,37.987435,"Hwy. 99 & Waterloo - Stockton - Stockton CA (D, W)",4426 East State Route 88,Stockton,CA,95201 +-121.289787,37.955198,El Dorado & Channel - Stockton - Stockton CA (W),222 North El Dorado Street,Stockton,CA,95202 +-121.337731,37.962467,Safeway - Stockton #1769 - Stockton CA,2808 Country Club Dr,Stockton,CA,95204 +-121.302174,37.973536,2535 Pacific Ave. - Stockton - Stockton CA (W),2535 Pacific Avenue,Stockton,CA,95204 +-121.269797,37.961424,"Fremont & Wilson - Stockton - Stockton CA (D, W)",1705 E. Fremont St.,Stockton,CA,95205 +-121.346661,37.983838,"March & I-5 - Stockton - Stockton CA (D, W)",2866 W. March Lane,Stockton,CA,95207 +-121.321661,38.011143,Lincoln Center - Stockton - Stockton CA (W),121 Lincoln Center,Stockton,CA,95207 +-121.321391,38.008748,Safeway-Stockton #2707 - Stockton CA,6445 N. Pacific Ave.,Stockton,CA,95207 +-121.31542,37.999303,Pacific & Yokuts - Stockton - Stockton CA (W),5350 Pacific Avenue,Stockton,CA,95207 +-121.295446,38.020275,"Hammer & West - Stockton - Stockton CA (D, W)",1440 East Hammer Lane,Stockton,CA,95210 +-121.289676,37.999913,March & West Stockton - Stockton CA (D),5010 West Lane,Stockton,CA,95210 +-121.26264,38.037098,Morada Lane & Hwy. 99 - Stockton - Stockton CA (W),4103 E. Morada Lane,Stockton,CA,95212 +-121.222278,37.906278,"Arch Road & Hwy. 99 - Stockton - Stockton CA (D, W)",4855 S. State Hwy. 99,Stockton,CA,95215 +-121.375273,38.052363,"Eight Mile & I-5 - Stockton - Stockton CA (D, W)",10602 Trinity Parkway,Stockton,CA,95219 +-121.372965,38.051644,Target North Stockton T-1862 - Stockton CA,10424 Trinity Pkwy,Stockton,CA,95219 +-120.560006,38.08213,"Hwy. 4 & Hwy. 49 - Angels Camp - Angels Camp CA (D, W)",27 N. Main Street,Angels Camp,CA,95221 +-121.250288,38.116105,"Kettleman & Beckman - Lodi - Lodi CA (D, W)",1139 E. Kettleman Lane,Lodi,CA,95240 +-121.305802,38.11714,Safeway - Lodi #1648 - Lodi CA,2449 W. Kettleman,Lodi,CA,95242 +-121.305085,38.115423,"Kettleman & Lower Sacramento - Lodi - Lodi CA (D, W)",2431 W. Kettleman Ln.,Lodi,CA,95242 +-121.303589,38.1171,Target Lodi T-853 - Lodi CA,2375 W. Kettleman Ln.,Lodi,CA,95242 +-121.287949,38.137738,"Ham & Lockeford - Lodi - Lodi CA (D, W)",224 N. Ham Lane,Lodi,CA,95242 +-120.826292,38.191859,Hwy. 12 & Hwy. 26 - Valley Springs - Valley Springs CA (D),200 E. Hwy. 12,Valley Springs,CA,95252 +-120.615221,37.344585,"Applegate & Hwy. 99 - Atwater - Atwater CA (D, W)",1640 Bell Lane,Atwater,CA,95301 +-120.608996,37.342124,Super Target Atwater ST-2386 - Atwater CA,1000 Commerce Ave.,Atwater,CA,95301 +-120.593826,37.360487,"Bellevue & Shaffer - Atwater - Atwater CA (D, W)",261 E. Bellevue Road,Atwater,CA,95301 +-121.462574,37.756875,"Hwy. 205 & Grant Line - Tracy - Tracy CA (D, W)",2459 North Naglee Road,Tracy,CA,95304 +-121.459637,37.757531,Target Tracy T-738 - Tracy CA,2800 Naglee Road,Tracy,CA,95304 +-120.939228,37.608798,"Hatch & Mitchell - Ceres - Ceres CA (D, W)",1507 Mitchell Road,Ceres,CA,95307 +-120.997554,37.798863,"Hwy. 120 & Plaza - Escalon - Escalon CA (D, W)",1255 Lillian Ave.,Escalon,CA,95320 +-121.015882,37.096752,"Hwy. 33 & Henry Miller - Santa Nella - Gustine CA (D, W)",13104 SR-33,Gustine,CA,95322 +-121.2908,37.8153,Target Lathrop T-2347 - Lathrop CA,16858 Golden Valley Pkwy,Lathrop,CA,95330 +-121.287223,37.825166,"Lathrop & I-5 - Lathrop - Lathrop CA (D, W)",15010 Harlan Road,Lathrop,CA,95330 +-120.735808,37.388617,"Winton & Hwy. 99 - Livingston - Livingston CA (D, W)",453 Joseph Gallo Ct,Livingston,CA,95334 +-121.236288,37.82554,"Union & Lathrop - Manteca - Manteca CA (D, W)",1220 West Lathrop Rd.,Manteca,CA,95336 +-121.192179,37.796842,"Yosemite & Hwy. 99 - Manteca - Manteca CA (D, W)",1451 Hulsey Way,Manteca,CA,95336 +-121.235281,37.796497,Union & Yosemite - Manteca - Manteca CA (D),129 S. Union Road,Manteca,CA,95337 +-121.23431,37.7808,"Starbucks:Airport & Hwy. 120 - Manteca - Manteca CA (D, W)",2168 Daniels St.,Manteca,CA,95337 +-121.216057,37.786851,Safeway-Manteca #3124 - Manteca CA,1187 S. Main St.,Manteca,CA,95337 +-120.460189,37.332524,Yosemite & Paulson - Merced - Merced CA (W),779 East Yosemite Ave. Ste. 100,Merced,CA,95337 +-120.482527,37.301472,Main Place - Merced - Merced CA (W),425 West Main Street,Merced,CA,95340 +-120.454137,37.288744,Childs & Hwy. 99 - Merced - Merced CA (D),700 Carol Avenue,Merced,CA,95340 +-120.478083,37.319204,580 West Olive - Merced - Merced CA (W),580 West Olive,Merced,CA,95348 +-121.032463,37.669144,"Briggsmore & Prescott - Modesto - Modesto CA (D, W)",2045 West Briggsmore,Modesto,CA,95350 +-121.004049,37.661672,O'Briens Market - Roseburg - Modesto CA,839 W. Roseburg Ave.,Modesto,CA,95350 +-120.99528,37.671564,McHenry & Briggsmore - Modesto - Modesto CA (W),2001 McHenry Avenue,Modesto,CA,95350 +-120.994241,37.672933,Safeway - Modesto #1661 - Modesto CA,2001 McHenry Avenue,Modesto,CA,95350 +-121.018495,37.645546,"Kansas Avenue & Hwy. 99 - Modesto - Modesto CA (D, W)",820 Kansas Avenue,Modesto,CA,95351 +-120.975246,37.610765,"Herndon & Hatch - Modesto - Ceres CA (D, W)",1427 Herndon Avenue,Ceres,CA,95351 +-120.991194,37.645189,"Downey & I Street - Modesto - Modesto CA (D, W)",1801 H Street,Modesto,CA,95354 +-121.001449,37.640703,1021 10th Street - Modesto - Modesto CA (W),1021 10th Street,Modesto,CA,95354 +-120.97625,37.677723,"Coffee & Floyd - Modesto - Modesto CA (D, W)",2519 Coffee Road,Modesto,CA,95355 +-120.95518,37.664482,Century Center - Modesto CA (W),2401 E. Orangeberg Avenue,Modesto,CA,95355 +-121.066568,37.700647,Highway 99 & Pelandale - Modesto - Modesto CA (W),3801 Pelandale Ave.,Modesto,CA,95356 +-121.054058,37.687777,Vintage Faire Mall - Modesto - Modesto CA (W),3401 Dale Road,Modesto,CA,95356 +-121.048543,37.69973,O'Briens Market - Modesto - Modesto CA,4120 Dale Rd.,Modesto,CA,95356 +-120.995147,37.690694,Modesto Promenade - Modesto CA (W),3501 McHenry Avenue,Modesto,CA,95356 +-121.060548,37.690514,Target Modesto NW T-938 - Modesto CA,3600 Sisk Rd.,Modesto,CA,95356 +-120.958058,37.710973,"Oakdale & Claribel - Riverbank - Modesto CA (D, W)",2213 Claribel Road,Modesto,CA,95357 +-120.925502,37.639617,Yosemite & Claus - Modesto - Modesto CA (D),3801 Yosemite Blvd.,Modesto,CA,95357 +-120.992594,37.594868,"Crows Landing & Whitmore - Modesto - Modesto CA (D, W)",166 E. Whitmore Ave.,Modesto,CA,95358 +-121.165422,38.649071,Safeway-Folsom #1794 - Folsom CA,1850 Prairie City Rd.,Folsom,CA,95360 +-120.847005,37.76606,"Yosemite & F Street - Oakdale - Oakdale CA (D, W)",325 East F St.,Oakdale,CA,95361 +-120.835434,37.771639,"F Street & Ventana - Oakdale - Oakdale CA (D, W)",1342 East F Street,Oakdale,CA,95361 +-121.175549,37.465472,"Sperry & Rogers - Patterson - Patterson CA (D, W)",15040 Rogers Road,Patterson,CA,95363 +-121.140982,37.752929,"Colony & Jack Tone - Ripon - Ripon CA (D, W)",1402 Colony Road,Ripon,CA,95366 +-120.957666,37.732652,"Oakdale & Patterson - Riverbank - Riverbank CA (D, W)",2252 Patterson Road,Riverbank,CA,95367 +-120.952661,37.713122,Target Modesto/Riverbank T-2096 - Riverbank CA,2425 Clarabel Rd.,Riverbank,CA,95367 +-120.367038,37.972632,"Sonora Crossroads - Sonora - Sonora CA (D, W)",133 Old Wards Ferry Road,Sonora,CA,95370 +-120.362303,37.973509,Safeway-Sonora #3127 - Sonora CA,1291 Sanguinettie Rd.,Sonora,CA,95370 +-120.345672,37.974625,Mono & Tuolumne - Sonora - Sonora CA (W),13761 Mono Way,Sonora,CA,95370 +-121.449861,37.740073,Safeway-Tracy #2600 - Tracy CA,1801 West 11th St.,Tracy,CA,95376 +-121.447025,37.739529,11th & Corral Hollow - Tracy - Tracy CA (W),1857 W. 11th Street,Tracy,CA,95376 +-121.43444,37.761408,"Tracy & Clover - Tracy - Tracy CA (D, W)",569 Clover Road,Tracy,CA,95376 +-120.880556,37.521776,Monte Vista & Countryside - Turlock - Turlock CA (W),2870 West Monte Vista Ave.,Turlock,CA,95380 +-120.874291,37.493077,"Main & Hwy. 99 - Turlock - Turlock CA (D, W)",2201 West Main Street,Turlock,CA,95380 +-120.849449,37.477105,"Lander & Linwood - Turlock - Turlock CA (D, W)",1611 Lander Avenue,Turlock,CA,95380 +-120.825802,37.500106,Johnson & Canal - Turlock - Turlock CA (W),2012 E. Canal Drive,Turlock,CA,95380 +-120.88125,37.523067,W. Monte Vista Ave. & Hwy. 99 Turlo - Turlock CA (D),3220 Countryside Drive,Turlock,CA,95380 +-120.848506,37.520259,"Geer & Hedstrom - Turlock - Turlock CA (D, W)",3000 Geer Road,Turlock,CA,95382 +-122.773032,38.452583,Fulton & Guerneville - Santa Rosa - Santa Rosa CA (W),2547 Guerneville Rd.,Santa Rosa,CA,95401 +-122.752464,38.451371,Marlow & Guerneville - Santa Rosa - Santa Rosa CA (W),1791 Marlow Rd.,Santa Rosa,CA,95401 +-122.752453,38.452091,Safeway - Santa Rosa #956 - Santa Rosa CA,1799 Marlow Road,Santa Rosa,CA,95401 +-122.711463,38.429602,Santa Rosa Plaza - Santa Rosa - Santa Rosa CA (W),1071 Santa Rosa Plaza,Santa Rosa,CA,95401 +-122.780615,38.510233,"Starbucks:Airport & Aviation - Santa Rosa - Santa Rosa CA (D, W)",269 Aviation Blvd.,Santa Rosa,CA,95403 +-122.75017,38.50005,Old Redwood & Pacific Heights - Lar - Larkfield CA (W),4745 Old Redwood Dr,Larkfield,CA,95403 +-122.73494,38.479332,"Hopper & Cleveland - Santa Rosa - Santa Rosa CA (D, W)",860 Hopper Avenue,Santa Rosa,CA,95403 +-122.717211,38.461256,Safeway-Santa Rosa #1576 - Santa Rosa CA,2210 Mendocino Ave.,Santa Rosa,CA,95403 +-122.717094,38.462006,Mendocino & Steele - Santa Rosa - Santa Rosa CA (W),2240 Mendocino Avenue,Santa Rosa,CA,95403 +-122.710683,38.41875,Santa Rosa Marketplace - Santa Rosa CA (W),2200 Santa Rosa Avenue,Santa Rosa,CA,95404 +-122.690965,38.450679,Safeway-Santa Rosa #1562 - Santa Rosa CA,2751 Fourth St.,Santa Rosa,CA,95404 +-122.667033,38.426196,Yulupa & Bethards - Santa Rosa - Santa Rosa CA (W),2755 Yulupa Avenue,Santa Rosa,CA,95404 +-122.688398,38.433668,"Farmer's Lane & Highway 12 - Santa Rosa CA (D, W)",1511 Farmer's Lane,Santa Rosa,CA,95405 +-122.741395,38.406257,Stony Point & Yuba - Santa Rosa - Santa Rosa CA (W),2780 Stony Point Road,Santa Rosa,CA,95407 +-122.741349,38.42777,"Stony Point & Sebastopol - Santa Ro - Santa Rosa CA (D, W)",760 Stony Point Road,Santa Rosa,CA,95407 +-122.712763,38.412382,"Santa Rosa & Yolanda - Santa Rosa - Santa Rosa CA (D, W)",2688 Santa Rosa Ave.,Santa Rosa,CA,95407 +-122.709483,38.417181,Target Santa Rosa T-937 - Santa Rosa CA,1980 Santa Rosa Ave.,Santa Rosa,CA,95407 +-122.674746,38.458724,Hwy. 12 @ Mission - Santa Rosa CA (W),4575 Sonoma Hwy.,Santa Rosa,CA,95409 +-122.653365,38.4653,Safeway - Santa Rosa #713 - Santa Rosa CA,100 Calistoga Rd.,Santa Rosa,CA,95409 +-122.041769,37.974225,Willow Pass & Market - Concord - Concord CA (W),1701 Willow Pass Road,Concord,CA,95420 +-123.011184,38.783593,"Hwy. 101 & Cloverdale Blvd. - Cloverd - Cloverdale CA (D, W)",1198 A S. Cloverdale Blvd.,Cloverdale,CA,95425 +-123.805514,39.434934,"Main & Walnut Street - Fort Bragg - Fort Bragg CA (D, W)",576 South Main Street,Fort Bragg,CA,95437 +-123.000424,38.501956,Safeway - Guerneville #950 - Guerneville CA,16405 River Rd.,Guerneville,CA,95446 +-122.873638,38.609086,Safeway - Healdsburg #998 - Healdsburg CA,1115 Vine,Healdsburg,CA,95448 +-122.871805,38.609163,Vine & Healdsburg - Healdsburg - Healdsburg CA (W),1075 Vine Street,Healdsburg,CA,95448 +-122.925271,39.048338,Safeway - Lakeport #983 - Lakeport CA,1071 11th Street,Lakeport,CA,95453 +-122.826666,38.404706,Safeway-Sebastopol #933 - Sebastopol CA,406 N. Main St.,Sebastopol,CA,95472 +-122.817394,38.391871,Gravenstein Hwy. & Redwood - Sebasto - Sebastopol CA (W),962 Gravenstein Hwy. S.,Sebastopol,CA,95472 +-122.475246,38.298852,Sonoma & Varano - Sonoma - Sonoma CA (W),19239 Sonoma Highway,Sonoma,CA,95476 +-122.467174,38.291025,Safeway - Sonoma #911 - Sonoma CA,477 W. Napa,Sonoma,CA,95476 +-123.199207,39.132169,"Starbucks:Airport Park & Commerce - Ukiah - Ukiah CA (D, W)",1212Airport Park Blvd.,Ukiah,CA,95482 +-123.350245,39.403424,Safeway - Willits #965 - Willits CA,845 Main Street,Willits,CA,95490 +-122.8128,38.5483,Windsor Town Green - Windsor - Windsor CA (W),1001 McCleland Dr,Windsor,CA,95492 +-122.805852,38.562027,Safeway - Windsor #1434 - Windsor CA,9080 Brooks Rd.,Windsor,CA,95492 +-122.805843,38.549708,Windsor - Windsor CA (W),8786 Lakewood Drive,Windsor,CA,95492 +-124.167448,40.801463,"5th & E. Street - Eureka - Eureka CA (D, W)",326 5th Street,Eureka,CA,95501 +-124.147545,40.799229,Myrtle & West - Eureka - Eureka CA (W),1117 Myrtle Avenue,Eureka,CA,95501 +-124.144039,40.805575,Target Eureka T-1421 - Eureka CA,2525 4th St.,Eureka,CA,95501 +-124.101454,40.940248,"Central & Heartwood - McKinleyville - McKinleyville CA (D, W)",1924 Central Ave.,Mckinleyville,CA,95519 +-124.198193,41.761639,"Cooper & Hwy. 101 - Crescent City - Crescent City CA (D, W)",450 Hwy. 101 N.,Crescent City,CA,95531 +-124.146679,40.578666,"N. Fortuna & Redwood - Fortuna - Fortuna CA (D, W)",1095 S. Fortuna Blvd.,Fortuna,CA,95540 +-121.093845,39.042206,"Hwy. 49 & Combie - Auburn - Auburn CA (D, W)",10005 Combie Rd.,Auburn,CA,95602 +-121.095738,38.940083,"Bell & Highway 49 - Auburn - Auburn CA (D, W)",2815 Bell Road,Auburn,CA,95603 +-121.092621,38.943591,Safeway - Auburn #3122 - Auburn CA,2550 Bell Road,Auburn,CA,95603 +-121.074348,38.903758,Auburn Town Center - Auburn CA (W),392 Elm Avenue,Auburn,CA,95603 +-121.057289,38.921998,Lincoln & Foresthill - Auburn - Auburn CA (W),13345 Lincoln Way,Auburn,CA,95603 +-121.5554,38.5911,"Harbor Pointe & Stillwater - West Sacramento CA (D, W)",715 Harbor Point Place,West Sacramento,CA,95605 +-121.329612,38.637672,Manzanita & Fair Oaks - Carmichael - Carmichael CA (W),4005 Manzanita Avenue,Carmichael,CA,95608 +-121.32782,38.626303,"Landis & Fair Oaks - Carmichael - Carmichael CA (D, W)",6908 Fair Oaks Blvd.,Carmichael,CA,95608 +-121.327575,38.659841,Madison & Manzanita - Carmichael - Carmichael CA (D),5149 Manzanita Ave.,Carmichael,CA,95608 +-121.327572,38.637951,Safeway-Carmichael #1560 - Sacramento CA,4040 Manzanita Ave.,Sacramento,CA,95608 +-121.291924,38.694002,Auburn & Sylvan - Citrus Heights - Citrus Heights CA (D),7088 Auburn Blvd.,Citrus Heights,CA,95610 +-121.276318,38.678727,Greenback & Birdcage Citrus Heights - Citrus Heights CA (W),7801 Greenback Lane,Citrus Heights,CA,95610 +-121.273855,38.672736,Target Birdcage Citrus Heights T-11 - Citrus Heights CA,5837 Sunrise Blvd.,Citrus Heights,CA,95610 +-121.271646,38.67467,Birdcage Walk - Citrus Heights - Citrus Heights CA (W),6121 Sunrise Boulevard,Citrus Heights,CA,95610 +-121.76877,38.562759,"Hwy. 113 & Covell - Davis - Davis CA (D, W)",2038 Lyndell Terrace,Davis,CA,95616 +-121.766013,38.560966,Safeway - Davis #1205 - Davis CA,1435 W. Covell,Davis,CA,95616 +-121.761025,38.546431,Russell & Anderson - Davis - Davis CA (W),825 Russell Boulevard,Davis,CA,95616 +-121.75203,38.54001,UC Davis Activities and Recreation - Davis CA,1 Shields Ave.,Davis,CA,95616 +-121.740054,38.543826,3rd & F Street - Davis - Davis CA (W),208 F. Street,Davis,CA,95616 +-121.724554,38.54112,Safeway-Davis #1561 - Davis CA,2121 Cowell Blvd.,Davis,CA,95616 +-121.697154,38.555621,Target Davis T-2455 - Davis CA,4625 2nd ST,Davis,CA,95618 +-121.843162,38.457124,"I-80 & Pitt School - Dixon - Dixon CA (D, W)",1450 Ary Lane,Dixon,CA,95620 +-121.838663,38.45801,Safeway - Dixon #1258 - Dixon CA,1235 Stratford Ave.,Dixon,CA,95620 +-121.353467,38.409308,Elk Grove & Waterman - Elk Grove - Elk Grove CA (W),9289 Elk Grove Blvd.,Elk Grove,CA,95624 +-121.307711,38.663969,"Madison & Dewey - Fair Oaks - Fair Oaks CA (D, W)",6711 Madison Avenue,Fair Oaks,CA,95628 +-121.307084,38.665157,Safeway - Fair Oaks #1895 - Fair Oaks CA,5450 Dewey Drive,Fair Oaks,CA,95628 +-121.272618,38.663211,Sunrise & Madison - Fair Oaks - Fair Oaks CA (W),5353 Sunrise Boulevard,Fair Oaks,CA,95628 +-121.243809,38.664615,Madison & Kenneth - Fair Oaks - Fair Oaks CA (W),8505 Madison Ave.,Fair Oaks,CA,95628 +-121.223555,38.664018,Safeway - Fair Oaks #1846 - Fair Oaks CA,8925 Madison Avenue,Fair Oaks,CA,95628 +-121.19988,38.674774,"Greenback & Madison - Folsom - Folsom CA (D, W)",9475 Madison Avenue,Folsom,CA,95630 +-121.1938,38.686092,Hwy. 50 & Bidwell - Folsom - Folsom CA (D),195 Placerville Road,Folsom,CA,95630 +-121.190005,38.699272,Oak & American River Canyon - Folso - Folsom CA (W),9580 Oak Avenue,Folsom,CA,95630 +-121.179831,38.654358,Blue Ravine - Folsom - Folsom CA (W),195 Blue Ravine Road,Folsom,CA,95630 +-121.1637,38.650159,Prairie City & Iron Point - Folsom - Folsom CA (W),1860 Prarie City Rd.,Folsom,CA,95630 +-121.157427,38.670628,E. Bidwell & Glen - Folsom - Folsom CA (W),603-A East Bidwell Street,Folsom,CA,95630 +-121.15351,38.669319,Bidwell & Broadstone - Folsom2 - Folsom CA (W),2791 E. BIDWELL,Folsom,CA,95630 +-121.152948,38.671485,Target Folsom T-1098 - Folsom CA,430 Blue Ravine Rd.,Folsom,CA,95630 +-121.122328,38.690163,E. Natoma & Blue Ravine - Folsom - Folsom CA (W),25055 Blue Ravine,Folsom,CA,95630 +-120.799943,38.368518,Safeway - Martell #2778 - Jackson CA,12110 Industry Blvd.,Jackson,CA,95642 +-120.799576,38.37101,"Trade Center Dr. & Hwy. 49 - Martel - Martell CA (D, W)",11248 Old Mill Road,Martell,CA,95642 +-121.3213,38.839,Thunder Valley Casino & Hote - Lincoln CA,1200 Athens Ave.,Lincoln,CA,95648 +-121.302511,38.870343,Target Lincoln T-2214 - Lincoln CA,950 Groveland Ln.,Lincoln,CA,95648 +-121.295259,38.877235,Highway 65 & Del Webb - Lincoln - Lincoln CA (W),445 S. Hwy. 65,Lincoln,CA,95648 +-121.29369,38.9034,Safeway-Lincoln #1761 - Lincoln CA,405 SR-65,Lincoln,CA,95648 +-121.302506,38.87307,"Lincoln Crossing - Lincoln - Lincoln CA (D, W)",129 Ferrari Ranch Road,Lincoln,CA,95648 +-121.189342,38.818573,Horseshoe Bar & I-80 - Loomis - Loomis CA (W),6099 Horseshoe Bar Road,Loomis,CA,95650 +-121.383843,38.656564,"Watt & Roseville - North Highlands - North Highlands CA (D, W)",4981 Watt Ave.,North Highlands,CA,95660 +-121.382771,38.643981,"Watt & I-80 - North Highlands - North Highlands CA (D, W)",4332 Watt Avenue,North Highlands,CA,95660 +-121.270709,38.729178,Sunrise & Cirby - Roseville - Roseville CA (W),1200 Cirby Way,Roseville,CA,95661 +-121.254001,38.745716,Target Roseville T-267 - Roseville CA,1925 Douglas Blvd.,Roseville,CA,95661 +-121.251512,38.743925,Roseville - Roseville CA (W),2030 Douglas Blvd.,Roseville,CA,95661 +-121.25047,38.761307,Roseville & Sunrise - Rosevill - Roseville CA (W),1410 East Roseville Parkway,Roseville,CA,95661 +-121.247034,38.749398,Eureka & Lead Hill - Roseville - Roseville CA (W),1565 Eureka Road,Roseville,CA,95661 +-121.226259,38.741912,Douglas & Sierra College - Rosevill - Roseville CA (W),8690 Sierra College Blvd.,Roseville,CA,95661 +-121.224754,38.678433,Greenback & Hazel - Orangevale - Orangevale CA (W),8904 Greenback Lane,Orangevale,CA,95662 +-120.840207,38.714056,Safeway-Placerville #1724 - Placerville CA,3955 Missouri Flat Road,Placerville,CA,95667 +-120.838983,38.713295,"Missouri Flat & Hwy. 50 -Placerville - Placerville CA (D, W)",3967 Missouri Flat,Placerville,CA,95667 +-120.786892,38.730823,"1228 Broadway - Placerville - Placerville CA (D, W)",1228 Broadway,Placerville,CA,95667 +-121.292539,38.594401,Safeway - Rancho Cordova #1746 - Rancho Cordova CA,10635 Folsom Blvd.,Rancho Cordova,CA,95670 +-121.285878,38.593716,Hwy. 50 @ Zinfandel - Rancho Cordova CA (W),10820 Olson Drive,Rancho Cordova,CA,95670 +-121.2854,38.58441,International & Zinfandel - RC - Rancho Cordova CA,3195 Zinfandel Dr.,Rancho Cordova,CA,95670 +-121.285286,38.596128,Target Rancho Cordova T-2463 - Rancho Cordova CA,10881 Olson Dr,Rancho Cordova,CA,95670 +-121.25864,38.625298,Gold River - Gold River CA (W),2095 Golden Center #10,Gold River,CA,95670 +-121.220315,38.631972,Tributary Point & Hazel - RC - Rancho Cordova CA (W),12195 Tributary Point Drive,Rancho Cordova,CA,95670 +-121.274393,38.80283,Safeway - Rocklin #1866 - Rocklin CA,2220 Sunset Blvd.,Rocklin,CA,95677 +-121.268358,38.79907,"Sunset & West Oaks - Rocklin - Rocklin CA (D, W)",2110 Sunset Blvd.,Rocklin,CA,95677 +-121.256686,38.814583,Stanford Ranch & Park - Rocklin - Rocklin CA (W),3211 Stanford Ranch Road,Rocklin,CA,95677 +-121.225895,38.789023,Highway 80 & Rocklin Road - Rocklin - Rocklin CA (W),4819 Granite Dr,Rocklin,CA,95677 +-121.206621,38.788253,"Rocklin & Sierra College - Rocklin - Rocklin CA (D, W)",5070 Rocklin Road,Rocklin,CA,95677 +-121.291672,38.777196,Safeway-Roseville #1890 - Roseville CA,1080 Pleasant Grove Blvd.,Roseville,CA,95678 +-121.289437,38.72989,"Cirby & Riverside - Roseville - Roseville CA (D, W)",709 Cirby Way,Roseville,CA,95678 +-121.288194,38.789473,"Fairway & Pleasant Grove -Roseville - Roseville CA (D, W)",10441 Fairway Drive,Roseville,CA,95678 +-121.2843,38.7861,"Pleasant Grove & Hwy. 65 - Roseville - Roseville CA (D, W)",943 Pleasant Grove Blvd.,Roseville,CA,95678 +-121.27532,38.721676,Fairway Creek & Five Star - Rosevil - Roseville CA (D),9450 Fairway Drive,Roseville,CA,95678 +-121.274757,38.744735,Douglas & Harding - Roseville - Roseville CA (W),415 Roseville Square,Roseville,CA,95678 +-121.271891,38.730636,Safeway-Roseville #1899 - Roseville CA,989 Sunrise Avenue,Roseville,CA,95678 +-121.266918,38.77217,Galleria at Roseville- Relo - Roseville CA,1151 Galleria Boulevard,Roseville,CA,95678 +-121.228528,38.742126,Safeway-Roseville #1617 - Roseville CA,8640 Sierra College Blvd.,Roseville,CA,95678 +-121.26562,38.77307,Hwy. 65 & Harding - Roseville CA (W),1228 Galleria Blvd.,Roseville,CA,95678 +-121.00652,38.69836,"Green Valley & Cambridge - Cameron - Cameron Park CA (D, W)",3004 Green Valley Road,Cameron Park,CA,95682 +-120.972797,38.658363,Coach & Strolling Hills -Cameron Pk - Cameron Park CA (W),3317 Coach Lane,Cameron Park,CA,95682 +-120.969821,38.658126,Safeway - Cameron Park #1618 - Cameron Park CA,3380 Coach Lane,Cameron Park,CA,95682 +-121.995764,38.342964,"Alamo & Butcher - Vacaville - Vacaville CA (D, W)",970 Alamo Drive,Vacaville,CA,95687 +-121.975956,38.348669,"Peabody & Hume - Vacaville - Vacaville CA (D, W)",210 Peabody Road,Vacaville,CA,95687 +-121.961862,38.360963,Target Vacaville T-827 - Vacaville CA,3000 Harbison Dr,Vacaville,CA,95687 +-121.961465,38.363599,Vacaville Relocation - Vacaville CA (W),1031 Helen Power Drive,Vacaville,CA,95687 +-121.986329,38.353767,Davis & Stevenson - Vacaville - Vacaville CA (W),505 Davis St.,Vacaville,CA,95688 +-121.963648,38.362565,Safeway-Vacaville #1109 - Vacaville CA,2090 Harbison Dr,Vacaville,CA,95688 +-121.740897,38.663194,Gibson & Pioneer - Woodland - Woodland CA (W),1801 E. Gibson Rd.,Woodland,CA,95688 +-121.579314,38.572675,"Lake & Enterprise - West Sacramento - West Sacramento CA (D, W)",4055 Lake Rd.,West Sacramento,CA,95691 +-121.55129,38.5693,Jefferson & Lake Washington - West Sacramento CA (W),2155 Town Center Plaza,West Sacramento,CA,95691 +-121.53449,38.55108,Target Sacramento West T-2268 - West Sacramento CA,2005 Town Center Plus,West Sacramento,CA,95691 +-121.801018,38.677504,West Main & Hwy. 16 - Woodland - Woodland CA (W),361 West Main Street,Woodland,CA,95695 +-120.950347,39.095191,"Auburn & Oak - Colfax - Colfax CA (D, W)",424 South Auburn Road,Colfax,CA,95713 +-120.577056,38.762354,Safeway - Pollock Pines #1825 - Pollock Pines CA,6498 Pony Trail Express,Pollock Pines,CA,95726 +-121.26837,38.606715,Marriott Rancho Cordova Lobby - Rancho Cordova CA,11211 Point East Dr,Rancho Cordova,CA,95742 +-121.265953,38.58899,"Sunrise & White Rock - Rancho Cordova CA (D, W)",3110 Sunrise Blvd.,Rancho Cordova,CA,95742 +-121.1898,38.7437,Auburn-Folsom & Douglas - Granite Bay CA (W),6949 Douglas-Auburn Folsom Rd.,Granite Bay,CA,95746 +-121.330541,38.769155,Woodcreek & Pleasant Grove - Rosevi - Roseville CA (W),4001 Woodcreek Oaks Blvd.,Roseville,CA,95747 +-121.328861,38.794161,Safeway-Roseville #2620 - Roseville CA,9045 Woodcreek Oaks,Roseville,CA,95747 +-121.309238,38.743833,West Roseville - Roseville CA (W),4001 Foothills Boulevard,Roseville,CA,95747 +-121.482324,38.425281,"Longport & Klagge - Elk Grove - Elk Grove CA (D, W)",2300 Longport Court,Elk Grove,CA,95758 +-121.449494,38.407948,Elk Grove & Franklin - Elk Grove - Elk Grove CA (W),4720 Elk Grove Blvd.,Elk Grove,CA,95758 +-121.446346,38.422846,Laguna & Franklin - Elk Grove - Elk Grove CA (W),5060 Laguna Blvd.,Elk Grove,CA,95758 +-121.446151,38.424017,Safeway-Elk Grove #1647 - Elk Grove CA,5021 Laguna Blvd.,Elk Grove,CA,95758 +-121.417496,38.390491,Bruceville & Poppy Ridge -Elk Grove - Elk Grove CA (W),10064 Bruceville Road,Elk Grove,CA,95758 +-121.415577,38.426429,Target Elk Grove T-1025 - Elk Grove CA,7505 Laguna Blvd.,Elk Grove,CA,95758 +-121.413549,38.423861,Laguna & Bruceville - Elk Grove - Elk Grove CA (W),7701 Laguna Blvd.,Elk Grove,CA,95758 +-121.392219,38.408385,"Elk Grove & Auto Center - Elk Grove - Elk Grove CA (D, W)",8450 Elk Grove Boulevard,Elk Grove,CA,95758 +-121.37362,38.422955,"Elk Grove Florin & Bond - Elk Grove - Elk Grove CA (D, W)",8868 Bond Road,Elk Grove,CA,95758 +-121.086079,38.713465,Green Valley & Francisco - El Dorad - El Dorado Hills CA (W),2215 Francisco Dr,El Dorado Hills,CA,95762 +-121.08512,38.709736,Safeway-El Dorado Hills #2683 - El Dorado Hills CA,765 Green Valley Dr,El Dorado Hills,CA,95762 +-121.068563,38.650534,Latrobe & Town Center - El Dorado H - El Dorado Hills CA (W),4311 Town Center Blvd.,El Dorado Hills,CA,95762 +-121.062413,38.650054,Target El Dorado Hills T-2270 - El Dorado Hills CA,4400 South Center Blvd.,El Dorado Hills,CA,95762 +-121.29259,38.798183,"Blue Oaks & Lone Tree - Rocklin - Rocklin CA (D, W)",6612 Lone Tree Blvd.,Rocklin,CA,95765 +-121.263989,38.797564,Stanford Ranch & Sunset - Rocklin - Rocklin CA (W),2351 Sunset Avenue,Rocklin,CA,95765 +-121.728424,38.671547,Target Woodland T-2408 - Woodland CA,18455 County Rd. 102,Woodland,CA,95776 +-121.745827,38.676089,421 Pioneer Avenue - Woodland CA (W),421 Pioneer Avenue,Woodland,CA,95776 +-121.500313,38.579702,Downtown Plaza - Sacramento - Sacramento CA (W),545 L Street,Sacramento,CA,95814 +-121.499691,38.583734,5th & I - Sacramento - Sacramento CA (W),431 I Street,Sacramento,CA,95814 +-121.495743,38.581033,980 9th - Sacramento - Sacramento CA (W),980 9th Street,Sacramento,CA,95814 +-121.487693,38.578158,Sacramento Con Ctr-13th St. Cafe - Sacramento CA,1100 14th Street,Sacramento,CA,95814 +-121.48619,38.580786,15th & H Street - Sacramento - Sacramento CA (W),1430 H Street,Sacramento,CA,95814 +-121.485503,38.568486,Safeway-Sacramento & 19th #2684 - Sacramento CA,1800-19th Street,Sacramento,CA,95814 +-121.480696,38.577256,19th & J Street - Sacramento - Sacramento CA (W),1901 J Street,Sacramento,CA,95814 +-121.471661,38.574487,J Street & 26th Street - Sacramento - Sacramento CA (W),2604 J Street,Sacramento,CA,95814 +-121.467024,38.568092,Alhambra & N. - Sacramento CA (W),1401 Alhambra Blvd.,Sacramento,CA,95815 +-121.440211,38.595887,"Expo & Exposition - Sacramento - Sacramento CA (D, W)",1140 Exposition Blvd.,Sacramento,CA,95815 +-121.427512,38.601099,Arden Fair Mall - Sacramento CA (W),1689 Arden Way,Sacramento,CA,95815 +-121.464888,38.571878,Safeway-Sacramento #2242 - Sacramento CA,1025 Alhambra Blvd.,Sacramento,CA,95816 +-121.456023,38.570354,3815 J Street - Sacramento - Sacramento CA (W),3815 'J' Street,Sacramento,CA,95816 +-121.428166,38.547106,65th & Broadway - Sacramento - Sacramento CA (W),2992 65th Street,Sacramento,CA,95817 +-121.271721,37.932746,Stockton & T Street - Sacramento - Sacramento CA (W),2001 Stockton Street,Sacramento,CA,95817 +-121.49388,38.562366,15th & Broadway - Sacramento - Sacramento CA (W),1429 Broadway,Sacramento,CA,95818 +-121.437197,38.568234,H Street & 56th Street - Sacramento - Sacramento CA (W),5339 H Street,Sacramento,CA,95819 +-121.427944,38.554324,65th St. & Folsom - Sacramento - Sacramento CA (W),1420 65th St.,Sacramento,CA,95819 +-121.400611,38.618068,Town & Country Village - Sacramento CA (W),2651 Marconi Place,Sacramento,CA,95821 +-121.382272,38.613569,Watt & Kings Way - Sacramento - Sacramento CA (W),2648 Watt Ave.,Sacramento,CA,95821 +-121.4427,38.4767,"Mack & Hwy. 99 - Sacramento - Sacramento CA (D, W)",6200 Valley Mack Rd.,Sacramento,CA,95823 +-121.435733,38.49619,Florin & Stockton - Sacramento - Sacramento CA (D),6013 Florin Road,Sacramento,CA,95823 +-121.4131,38.461,"Bruceville & Cosumnes River - Sacra - Sacramento CA (D, W)",8231 Timberlake Way,Sacramento,CA,95823 +-121.409151,38.481401,"Gerber & Power Inn - Sacramento - Sacramento CA (D, W)",8030 Gerber Road,Sacramento,CA,95823 +-121.416607,38.595152,"Howe & Arden - Sacramento - Sacramento CA (D, W)",2100 Arden Way,Sacramento,CA,95825 +-121.414726,38.573123,Howe & Fair Oaks - Sacramento - Sacramento CA (W),458 Howe Avenue,Sacramento,CA,95825 +-121.410383,38.574628,Pavilions - Sacramento CA (W),508 Pavillions Lane,Sacramento,CA,95825 +-121.401546,38.603967,"Fulton & Cottage - Sacramento - Sacramento CA (D, W)",2119 Fulton Avenue,Sacramento,CA,95825 +-121.386656,38.594413,Safeway - Sacramento #1530 - Sacramento CA,3320 Arden Way,Sacramento,CA,95825 +-121.408416,38.541894,"Power Inn & Ramona - Sacramento - Sacramento CA (D, W)",3615 Power Inn Road,Sacramento,CA,95826 +-121.39357,38.54723,"Folsom & Julliard - Sacramento - Sacramento CA (D, W)",8393 Folsom Blvd.,Sacramento,CA,95826 +-121.336064,38.558373,Bradshaw & Old Placerville - Sacram - Sacramento CA (W),3539 Bradshaw Road,Sacramento,CA,95827 +-121.371592,38.453457,Safeway - Elk Grove #1289 - Elk Grove CA,8377 Elk Grove-Florin Rd.,Elk Grove,CA,95829 +-121.370967,38.454746,Calvine & Florin - Elk Grove - Sacramento CA (W),8341 Elk Grove Florin Rd.,Sacramento,CA,95829 +-121.520879,38.495166,Greenhaven @ Florin - Sacramento CA (W),1042 Florin Rd.,Sacramento,CA,95831 +-121.502935,38.482858,Freeport & Meadowview - Sacramento - Sacramento CA (W),1461 Meadowview Road,Sacramento,CA,95832 +-121.516499,38.613523,Gateway Oaks & El Camino - Sacramen - Sacramento CA (W),2620 Gateway Oaks Drive,Sacramento,CA,95833 +-121.496327,38.612787,El Camino & Truxel - Natomas - Sacramento CA (W),1560-B West El Camino Blvd.,Sacramento,CA,95833 +-121.532944,38.642966,Duckhorn & Arena - Sacramento - Sacramento CA (W),3230 Arena Blvd.,Sacramento,CA,95834 +-121.524588,38.657115,Safeway-North Natomas #2697 - Sacramento CA,2851 Del Paso Rd.,Sacramento,CA,95834 +-121.509773,38.640386,Truxel & Natomas - Sacramento - Sacramento CA (W),2121 Natomas Crossing Drive,Sacramento,CA,95834 +-121.504781,38.63651,I-80 & Truxel - Sacramento - Sacramento CA (W),3511 Truxel Road,Sacramento,CA,95834 +-121.4988,38.640904,Target Sacramento T-2115 - Sacramento CA,3601 N. Freeway Blvd.,Sacramento,CA,95834 +-121.5926,38.693016,SMF Sac Term A Lower Level Baggage - Sacramento CA (A),6942Airport Blvd.,Sacramento,CA,95837 +-121.591375,38.678437,SMF Sac Terminal A Food Court - Sacramento CA (A),6942Airport Blvd.,Sacramento,CA,95837 +-121.589554,38.69354,SMF B 23 - Sacramento CA (A),6850Airport Blvd. Ste. 28,Sacramento,CA,95837 +-121.589554,38.69354,SMF B 34 - Sacramento CA (A),6850Airport Blvd. Ste. 28,Sacramento,CA,95837 +-121.589554,38.69354,SMF Sac Terminal B - Sacramento CA (A),6850Airport Blvd.,Sacramento,CA,95837 +-121.456286,38.642852,"Norwood & I-80 - Sacramento - Sacramento CA (D, W)",4110 Norwood Avenue,Sacramento,CA,95838 +-121.48761,38.571958,1601 P Street - Sacramento - Sacramento CA (W),1501 16th Street,Sacramento,CA,95841 +-121.354772,38.661402,"Date & Madison - Sacramento - Sacramento CA (D, W)",4701 Madison Avenue,Sacramento,CA,95841 +-121.333901,38.679859,Greenback & Garfield - Sacramento - Sacramento CA (W),6306 Garfield Ave.,Sacramento,CA,95841 +-121.362758,38.660575,I-80 & Madison Sacramento - Sacramento CA (D),4354 Madison Ave.,Sacramento,CA,95842 +-121.339295,38.685999,Safeway - Sacramento #2263 - Sacramento CA,5345 Elkhorn Blvd.,Sacramento,CA,95842 +-121.327067,38.705746,"Antelope & Daly - Sacramento - Sacramento CA (D, W)",5874 Antelope Rd.,Sacramento,CA,95842 +-121.366448,38.713889,"Elverta & Walerga - Antelope - Antelope CA (D, W)",4241 Elverta Road,Antelope,CA,95843 +-121.404825,38.455508,Calvine & Power Inn - Sacramento - Sacramento CA (W),8240 Calvine Road,Sacramento,CA,95858 +-121.392586,38.596237,Arden & Morse - Sacramento - Sacramento CA (W),3045 Arden Way,Sacramento,CA,95864 +-121.382914,38.5751,Watt & Fair Oaks - Sacramento - Sacramento CA (W),610 Watt Ave.,Sacramento,CA,95864 +-121.364205,38.59588,"Arden Plaza - Sacramento CA (D, W)",4301 Arden Way,Sacramento,CA,95864 +-121.588136,39.144847,9th & C - Marysville - Marysville CA (W),270 9th Street,Marysville,CA,95901 +-121.851457,39.746717,"Esplanade & 9th - Chico - Chico CA (D, W)",1910 Esplanade,Chico,CA,95926 +-121.843477,39.760053,East & Cohasset - Chico - Chico CA (W),2471 Cohasset Road,Chico,CA,95926 +-121.834437,39.735465,Safeway-Chico #1651 - Chico CA,690 Mangrove Ave.,Chico,CA,95926 +-121.823024,39.762307,Safeway - Chico #1125 - Chico CA,1366 East Ave.,Chico,CA,95926 +-121.800458,39.726215,20th & Forest - Chico - Chico CA (W),2009 Forest,Chico,CA,95926 +-121.84093,39.729009,Chico - 246 Broadway Street - Chico CA (W),246 Broadway,Chico,CA,95928 +-121.034142,39.23392,Safeway - Grass Valley #2842 - Grass Valley CA,11867 Sutton Way,Grass Valley,CA,95945 +-121.688264,39.365678,"Hwy. 99 & Hazel - Gridley - Gridley CA (D, W)",1653 State Hwy. 99 E.,Gridley,CA,95948 +-121.063484,39.201971,Freeman & McKnight - Grass Valley CA (W),716 Freeman Lane,Grass Valley,CA,95949 +-122.212112,39.525683,"I-5 & Wood - Willows - Willows CA (D, W)",505 Humboldt Ave.,Willows,CA,95988 +-121.632973,39.146173,Target Yuba City T-318 - Yuba City CA,1153 Butte House Rd.,Yuba City,CA,95991 +-121.629912,39.141828,Colusa & Gray - Yuba City - Yuba City CA (W),887 Colusa Avenue,Yuba City,CA,95991 +-121.616396,39.100344,"Bogue & Garden Highway - Yuba City - Yuba City CA (D, W)",510 Bogue Rd.,Yuba City,CA,95991 +-121.644277,39.148147,"Butte House & Stabler - Yuba City - Yuba City CA (D, W)",1610 Butte House Road,Yuba City,CA,95993 +-121.644236,39.14203,"Hwy. 20 & Tharp - Yuba City - Yuba City CA (D, W)",1615 Colusa Hwy.,Yuba City,CA,95993 +-121.636124,39.126988,Franklin & Hwy. 99 - Yuba City - Yuba City CA (D),1340 Franklin Rd.,Yuba City,CA,95993 +-122.416732,40.574352,"Placer Heights - Redding - Redding CA (D, W)",3425 Placer Street,Redding,CA,96001 +-122.392799,40.587872,1400 Eureka Way - Redding - Redding CA (W),1400 Eureka Way,Redding,CA,96001 +-122.381081,40.529619,"Bonnyview & Eastside - Redding - Redding CA (D, W)",2400 S. Bonnyview Rd.,Redding,CA,96001 +-122.353191,40.571029,Safeway - Redding #1954 - Redding CA,990 Cypress Ave.,Redding,CA,96001 +-122.351145,40.571369,"Cypress & Churn Creek- Redding - Redding CA (D, W)",1030 East Cypress Avenue,Redding,CA,96002 +-122.350535,40.571042,Safeway - Redding #1826 - Redding CA,1070 East Cypress Ave.,Redding,CA,96002 +-122.376048,40.609512,"Lake & Hilltop - Redding - Redding CA (D, W)",155 E. Lake Blvd.,Redding,CA,96003 +-122.35636,40.585693,SEC Hilltop/Dana-Redding - Redding CA (W),913 DANA DR,Redding,CA,96003 +-122.351971,40.589715,"Churn Creek & Lancers - Redding - Redding CA (D, W)",1240 Churn Creek Road,Redding,CA,96003 +-122.3249,40.4563,Safeway - Anderson #273 - Anderson CA,17539 Vierra Canyon,Anderson,CA,96007 +-122.287221,40.431889,Rhonda & Pleasant Hills - Anderson - Anderson CA (D),5046 Rhonda Road,Anderson,CA,96007 +-122.2416,39.9162,"I-5 & Corning - Corning - Corning CA (D, W)",908 SR-99W,Corning,CA,96021 +-122.237919,40.190307,I-5 & Adobe - Red Bluff - Red Bluff CA (D),525 Adobe Rd.,Red Bluff,CA,96080 +-122.224228,40.15833,"Main & Luther - Red Bluff - Red Bluff CA (D, W)",1058 South Main Street,Red Bluff,CA,96080 +-122.933064,40.725608,Tops Super Foods-Weaverville - Weaverville CA,1665 Main St.,Weaverville,CA,96093 +-120.636165,40.410519,Safeway-Susanville #1218 - Susanville CA,2970 Main St.,Susanville,CA,96130 +-120.636084,40.410458,"Main & Riverside - Susanville - Susanville CA (D, W)",2980 Main Street,Susanville,CA,96130 +-120.034001,39.238731,Safeway-Kings Beach #1592 - Kings Beach CA,7815 N. Lake Blvd.,Kings Beach,CA,96143 +-120.234612,39.197054,Intrawest Squaw Valley - Olympic Valley CA,1985 Squaw Valley Road Ste.21,Olympic Valley,CA,96146 +-120.206538,39.327115,Safeway - Truckee #1266 - Truckee CA,11290 Donner Pass Rd.,Truckee,CA,96161 +-120.205537,39.327272,Truckee - Truckee CA (W),11260-4 Donner Pass Road,Truckee,CA,96161 +-120.104611,39.287614,Booth Creek Northstar - Truckee CA (W),100 Northstar Dr,Truckee,CA,96161 +-157.952167,21.389718,Waimalu Shopping Center - Aiea HI (W),98-1277 Kaahumanu Street,Aiea,HI,96701 +-157.947709,21.390634,Pearlridge Mall - Aiea HI (W),98-1005 Moanalua Road,Aiea,HI,96701 +-157.946269,21.3891,Borders Pearlridge - Aiea HI (W),98 Moanalua Road,Aiea,HI,96701 +-157.941572,21.387332,Pearlridge Center - Aiea HI (W),98-125 Kaonohi Street,Aiea,HI,96701 +-157.929876,21.378766,Aiea Shopping Center - Aiea HI (W),99-115 Aiea Heights Drive #125,Aiea,HI,96701 +-158.024426,21.333873,Ewa Beach - Honolulu HI (W),91-1401 Fort Weaver Road,Honolulu,HI,96706 +-158.116013,21.343991,Halekuai Center - Kapolei HI (W),563 Farrington Highway #101,Kapolei,HI,96707 +-158.0557,21.3348,Target Oahu Kapolei T-2411 - Kapolei HI,4450 Kapolei Pkwy,Kapolei,HI,96707 +-158.061706,21.648414,Pupukea - Haleiwa HI (W),59-720 Kamehameha Highway,Haleiwa,HI,96712 +-156.477614,20.891963,Queen Kaahumanu Center - Kahului HI (W),275 West Kaahuman Avenue #1200 F5,Kahului,HI,96732 +-156.454708,20.881571,Maui Marketplace - Kahului HI (W),270 Dairy Road,Kahului,HI,96732 +-156.451747,20.887856,OGG Baggage Claim (Maui) - Kahului HI (A),1 KahuluiAirport Road Unit 9,Kahului,HI,96732 +-156.438779,20.892805,OGG Kahului Main Concourse - KahuluiAirport HI (A),New Terminal Bldg @ Bldg 340,KahuluiAirport,HI,96732 +-157.7456,21.4045,Kaneohe Bay MCCS - Kailua HI,Mokapu Mall Bldg 6477,Kailua,HI,96734 +-157.740714,21.393191,Kailua Village - Kailua HI (W),539 Kailua Road,Kailua,HI,96734 +-157.729241,21.378044,Enchanted Lakes - Kailua HI (W),1020 Keolu Drive,Kailua,HI,96734 +-157.806903,21.42647,"Kaneohe - Kaneohe HI (D, W)",46-023 Kamehameha Highway,Kaneohe,HI,96744 +-157.798412,21.400435,Windward City Shopping Center - Honolulu HI (W),45-480 Kaneohe Bay Drive,Honolulu,HI,96744 +-159.315957,22.078248,Kauai Village Shopping Center - Kapaa HI (W),4-831 Kuhio Highway #208,Kapaa,HI,96746 +-156.452823,20.735205,Kukui Mall - Kihei HI (W),1819 South Kihei Road,Kihei,HI,96753 +-156.451338,20.75066,Piilani Village Shopping Center - Kihei HI (W),247 Piikea Avenue #106,Kihei,HI,96753 +-156.448144,20.752511,Safeway - Kihei #1500 - Kihei HI,277 Pi'ikea Avenue,Kihei,HI,96753 +-159.459214,21.879285,Poipu Shopping Center - Koloa HI (W),2360 Kiahuna Plantation Drive,Koloa,HI,96756 +-156.683003,20.885655,Lahaina Cannery Mall - Lahaina HI (W),1221 Honoapiilani Highway,Lahaina,HI,96761 +-156.680765,20.876391,Lahaina - Lahaina HI (W),878 Front Street,Lahaina,HI,96761 +-159.380923,21.97116,Kukui Grove - Lihue HI (W),3-2600 Kaumualii Highway #A8,Lihue,HI,96766 +-159.375636,21.971295,Borders Kmart Kukui Center - Lihue HI (W),4303 Nawiliwili Road,Lihue,HI,96766 +-159.34927,21.979465,LIH Rotunda (Kauai) - Lihue HI (A),LihueAirport Unit 2 3901 Mokulele Loo,Lihue,HI,96766 +-156.342146,20.837699,Pukalani Foodland - Pukalani HI (W),55 Pukalani Street,Pukalani,HI,96768 +-157.973787,21.399388,Pearl City Shops - Pearl City HI (W),1029 Makolu Street,Pearl City,HI,96782 +-158.016089,21.457692,Mililani Shopping Center - Mililani Town HI (W),95-221 Kipapa Drive,Mililani Town,HI,96789 +-158.006444,21.454077,Mililani Town Center - Mililani Town HI (W),95-1249 Meheula Parkway,Mililani Town,HI,96789 +-158.18458,21.434788,Waianae Mall Shopping Center - Waianae HI,86 Farrington Highway,Waianae,HI,96792 +-158.08179,21.3341,"Kapolei Parkway - Kapolei HI (D, W)",338 Kamokila Boulevard #108,Kapolei,HI,96797 +-158.033009,21.387129,Kunia Shopping Center - Waipahu HI (W),94-673 Kupuohi Street,Waipahu,HI,96797 +-158.01416,21.394206,Waikele - Waipahu HI (W),94-799 Lumiaina Street,Waipahu,HI,96797 +-158.001421,21.426618,"Laniakea DT - Waipahu HI (D, W)",94-1221 Ka Uka Boulevard,Waipahu,HI,96797 +-157.86222,21.308591,Financial Plaza - Honolulu HI (W),130 Merchant Street #111,Honolulu,HI,96813 +-157.861157,21.308877,Bishop - Honolulu HI (W),1000 Bishop Street #104,Honolulu,HI,96813 +-157.860587,21.308009,Central Pacific Bank - Honolulu HI (W),1025 Alakea Street,Honolulu,HI,96813 +-157.85628,21.295419,Ward Gateway - Honolulu HI (W),949 Auahi Street,Honolulu,HI,96814 +-157.852955,21.293718,Ward Entertainment Center - Honolulu HI (W),310 Kamakee Street #6,Honolulu,HI,96814 +-157.842783,21.289453,Sears Ala Moana Center - Honolulu HI (W),1450 Ala Moana Blvd.,Honolulu,HI,96814 +-157.842759,21.289557,Macys Ala Moana - Honolulu HI (W),1450 Ala Moana Blvd.,Honolulu,HI,96814 +-157.841919,21.294452,Keeaumoku - Honolulu HI (W),678 Keeamoku Street #106,Honolulu,HI,96814 +-157.82797,21.277975,Royal Hawaiian Shopping Center - Honolulu HI (W),2201 Kalakaua Ave.,Honolulu,HI,96814 +-157.836199,21.282716,Hilton Hawaiian Vlge Penguin Plza A - Honolulu HI,2005 Kalia Rd.,Honolulu,HI,96815 +-157.83231,21.278678,Outrigger Reef - Honolulu HI (W),2169 Kalia Road #102,Honolulu,HI,96815 +-157.827508,21.281037,Duty Free Shopper - Honolulu HI (W),330 Royal Hawaiian Avenue,Honolulu,HI,96815 +-157.826989,21.279924,Waikiki Trade Center - Honolulu HI (W),2255 Kuhio Avenue,Honolulu,HI,96815 +-157.825031,21.278818,Ohana Waikiki West - Honolulu HI (W),2330 Kuhio Avenue,Honolulu,HI,96815 +-157.820446,21.263388,Park Shore Hotel - Honolulu HI (W),2856 Kalakaua Avenue,Honolulu,HI,96815 +-157.813899,21.2791,Kapahulu Avenue - Honolulu HI (W),625 Kapahulu Avenue,Honolulu,HI,96815 +-157.813736,21.284147,Safeway - Honolulu #2747 - Honolulu HI,900 Kapahulu Ave.,Honolulu,HI,96816 +-157.787564,21.278571,Kahala Mall - Honolulu HI (W),4211 Waialae Avenue,Honolulu,HI,96816 +-157.869095,21.336368,Kamehameha Shopping Center - Honolulu HI (W),1620 North School Street,Honolulu,HI,96817 +-157.930782,21.365403,Stadium Marketplace - Aiea HI (W),4561 Salt Lake Boulevard,Aiea,HI,96818 +-157.929461,21.341317,Moanalua Shopping Center - Honolulu HI (W),930 Valkenburgh Street,Honolulu,HI,96818 +-157.927421,21.365684,Target Oahu Honolulu West T-2410 - Honolulu HI,4510 Salt Lake Blvd. Ste. D5,Honolulu,HI,96818 +-157.920154,21.332757,HNL EWA Concourse 27 - Honolulu HI (A),300 Rogers Boulevard,Honolulu,HI,96819 +-157.920154,21.332757,HNL Inter-Island Terminal - Honolulu HI (A),300 Rogers Boulevard,Honolulu,HI,96819 +-157.920154,21.332757,HNL Pre-Security Lobby #5 - Honolulu HI (A),300 Rogers Boulevard,Honolulu,HI,96819 +-157.915871,21.335372,Starbucks:Airport Trade Center - Honolulu HI (W),550 Paiea Street,Honolulu,HI,96819 +-157.920154,21.332757,HNL Central Concourse Food Court - Honolulu HI (A),300 Rogers Blvd.,Honolulu,HI,96820 +-157.920154,21.332757,HNL Inter Island Term Gate 54 - Honolulu HI (A),300 Rogers Blvd.,Honolulu,HI,96820 +-157.920154,21.332757,HNL Main Term Food Court - Honolulu HI (A),300 Rogers Blvd.,Honolulu,HI,96820 +-157.920154,21.332757,HNL Staircase - Honolulu HI (A),300 Rogers Blvd.,Honolulu,HI,96820 +-157.810348,21.309929,Manoa Valley - Honolulu HI (W),2902 East Manoa Road,Honolulu,HI,96822 +-157.711277,21.282724,Hawaii Kai Town Center - Honolulu HI (W),333 Keahole Street,Honolulu,HI,96825 +-157.70462,21.277398,Koko Marina - Honolulu HI (W),7192 Kalanianaole Highway,Honolulu,HI,96825 +-158.058557,21.483994,Schofield Barracks Main Store Mall - Schofield Barracks HI,Bldg. 693,Schofield Barracks,HI,96857 +-120.543501,46.996085,Safeway-Ellensburg #1630 - Ellensburg WA,400 N. Ruby St.,Ellensburg,WA,96926 +-122.825358,45.475325,Safeway-Beaverton #1073 - Beaverton OR,6194 SW Murray Blvd.,Beaverton,OR,97005 +-122.810398,45.493568,SW Cedar Hills Blvd. - Beaverton OR (D),3590 Cedar Hills Boulevard,Beaverton,OR,97005 +-122.808671,45.496729,Beaverton Mall-Relocation - Beaverton OR,3205 SW Cedar Hills Blvd.,Beaverton,OR,97005 +-122.797756,45.489975,117th & Canyon - Beaverton - Beaverton OR (W),4037 SW 117th Avenue,Beaverton,OR,97005 +-122.793799,45.48655,Beaverton - Beaverton OR (W),11405 SW Beaverton-Hillsdale Hwy.,Beaverton,OR,97005 +-122.787423,45.486547,Target Beaverton T-344 - Beaverton OR,10775 SW Beaverton-Hillsdale Hwy.,Beaverton,OR,97005 +-122.77309,45.486446,"Valley Plaza- Beaverton - Beaverton OR (D, W)",9350 SW Beaverton HIllsdale Hwy.,Beaverton,OR,97005 +-122.874174,45.540434,Tanasbourne - Aloha OR (W),18320 NW Evergreen Pkwy,Aloha,OR,97006 +-122.841557,45.517425,Walker Rd. /Fred Meyer - Beaverton OR (W),16005 SW Walker Road,Beaverton,OR,97006 +-122.866826,45.53921,Tanasbourne Drive Thru - Beaverton OR (D),2711 NW Town Center Dr. #1,Beaverton,OR,97006 +-122.859617,45.478841,Bales Thriftway Farmington - Aloha OR,17675 SW Farmington Rd.,Aloha,OR,97007 +-122.82668,45.43824,Murray & Scholls - Beaverton OR (W),14600 SW Murray Scholls Dr,Beaverton,OR,97007 +-122.789322,45.459629,Hall & Nimbus- Beaverton - Beaverton OR (W),8400 SW Nimbus Ave.,Beaverton,OR,97008 +-122.455885,45.418584,Safeway - Boring #521 - Damascus OR,20151 SE 212th,Damascus,OR,97009 +-122.678541,45.267491,Canby - Canby OR (W),1385 SE 1st Ave.,Canby,OR,97013 +-122.678403,45.267554,Fred Meyer-Canby #651 - Canby OR,1401 SE 1st Street,Canby,OR,97013 +-122.593077,45.415876,Safeway-Milwaukie #2696 - Milwaukie OR,14840 SE Webster Rd.,Milwaukie,OR,97015 +-122.570642,45.431803,Target Clackamas T-346 - Clackamas OR,9000 E. Sunnyside Rd.,Clackamas,OR,97015 +-122.570574,45.432753,Clackamas Promenade - Clackamas OR (W),9078 SE Sunnyside Road,Clackamas,OR,97015 +-122.559799,45.433547,Sunnyside Town Center - Clackamas OR (W),10225 SE Sunnyside Rd.,Clackamas,OR,97015 +-122.539497,45.429485,Sunnyside Marketplace - Clackamas OR (W),12012 SE Sunnyside Road,Clackamas,OR,97015 +-122.539196,45.429339,Safeway-Clackmas #1231 - Clackamas OR,12032 SE Sunnyside Road,Clackamas,OR,97015 +-122.582311,45.381485,Safeway - Gladstone #4387 - Gladstone OR,95 82nd Dr,Gladstone,OR,97027 +-122.476637,45.489878,Safeway-Gresham #1070 - Gresham OR,1001 SW Highland Dr,Gresham,OR,97030 +-122.441084,45.50468,Gresham Station - Gresham OR (W),1018 NW Civic,Gresham,OR,97030 +-122.417544,45.505693,Safeway-Gresham #430 - Gresham OR,1455 NE Division,Gresham,OR,97030 +-122.409722,45.498708,"Oregon Trail - Gresham - Gresham OR (D, W)",2233 E. Burnside RD,Gresham,OR,97030 +-122.41439,45.502642,242nd and Burnside - Gresham OR (D),1755 NE Burnside,Gresham,OR,97030 +-121.534482,45.709821,Safeway-Hood River #1123 - Hood River OR,2249 Cascade Ave.,Hood River,OR,97031 +-121.500074,45.711462,"1040 East Marina Road-Hood River - Hood River OR (D, W)",1040 E. Marina Rd.,Hood River,OR,97031 +-122.668434,45.420534,Safeway-Lake Oswego #508 - Lake Oswego OR,401 A Avenue,Lake Oswego,OR,97034 +-122.663218,45.416134,Lake Oswego - State Street - Lake Oswego OR (W),47 North State Street,Lake Oswego,OR,97034 +-122.741762,45.397256,Safeway-Lake Grove #1047 - Lake Oswego OR,17779 SW Lower Boones Ferry Rd.,Lake Oswego,OR,97035 +-122.738933,45.420596,Centerpoint - Lake Oswego - Lake Oswego OR (W),8 Centerpointe Drive,Lake Oswego,OR,97035 +-122.738485,45.399264,Lake Oswego Crossing - Lake Oswego OR (W),17449 Boones Ferry Rd.,Lake Oswego,OR,97035 +-122.737578,45.417037,Kruse Way - Lake Oswego OR (W),5800 Meadows Rd.,Lake Oswego,OR,97035 +-122.724353,45.407899,Lake Grove - Lake Oswego OR (W),16398 SW Boones Ferry Road,Lake Oswego,OR,97035 +-122.722862,45.409405,Albertsons-Lake Grove #521 - Lake Oswego OR,16199 Boones Ferry Rd.,Lake Oswego,OR,97035 +-122.702157,45.433681,Oswego Town Square - Lake Oswego OR (W),3 Monroe Parkway,Lake Oswego,OR,97035 +-122.676408,45.406633,McVey - Lake Oswego OR (W),1175 McVey Ave.,Lake Oswego,OR,97035 +-122.599471,45.368348,"Oregon City II - Oregon City OR (D, W)",1900 SE McLoughlin Blvd.,Oregon City,OR,97045 +-122.586304,45.331246,Oregon City - Oregon City OR (W),1839 Molalla Avenue,Oregon City,OR,97045 +-122.580381,45.321191,Oregon City Haggens - Oregon City OR (W),19701 S. Hwy. 213,Oregon City,OR,97045 +-122.580101,45.323921,Hwy. 213 - Oregon City - Oregon City OR (W),19574 Mollala Ave.,Oregon City,OR,97045 +-122.831987,45.849495,Safeway - St. Helens #424 - St. Helens OR,795 Columbia River Hwy.,St. Helens,OR,97051 +-122.830425,45.848487,"Hwy. 30 & Gable- St. Helens - St. Helens OR (D, W)",2298 Gable Rd. Suite 130,St Helens,OR,97051 +-122.292339,45.403138,Fred Meyer - Sandy #663 - Sandy OR,16625 362nd Ave.,Sandy,OR,97055 +-122.285651,45.40307,Sandy - Sandy OR (W),36765 E. Hwy. 26,Sandy,OR,97055 +-122.27657,45.400711,Safeway - Sandy #782 - Sandy OR,37601 Hwy. 26,Sandy,OR,97055 +-121.200244,45.606182,Fred Meyer - The Dalles #372 - The Dalles OR,1215 West 6th Street,The Dalles,OR,97058 +-121.19317,45.60437,Safeway-The Dalles #1489 - The Dalles OR,520 Mt. Hood St.,The Dalles,OR,97058 +-122.433629,45.529673,Wood Village Town Center- W. Village - Wood Village OR (D),22352 Park Lane,Wood Village,OR,97060 +-122.428682,45.529691,Fred Meyer-Wood Village #660 - Wood Village OR,22855 NE Park Lane,Wood Village,OR,97060 +-122.412863,45.527711,Safeway-Troutdale #1542 - Troutdale OR,2501 SW Cherry Park Rd.,Troutdale,OR,97060 +-122.398842,45.519242,Albertsons-Troutdale #536 - Troutdale OR,25691 SE Stark,Troutdale,OR,97060 +-122.400888,45.519067,257th & Stark - Troutdale OR (W),25619 SE Stark St.,Troutdale,OR,97060 +-122.766273,45.382944,Tualatin / Haggens - Tualatin OR (W),8515 SW Tualatin Sherwood Rd.,Tualatin,OR,97062 +-122.763686,45.381318,Hedges Green / Tualatin - Tualatin OR (W),8639 SW Tualatin Sherwood Road,Tualatin,OR,97062 +-122.759057,45.379908,"Martinazzi Square - Tualatin - Tualatin OR (D, W)",19321 SW Martinazzi Ave.,Tualatin,OR,97062 +-122.748029,45.382792,Nyberg & I-5- Tualatin - Tualatin OR (W),7131 Nyberg St.,Tualatin,OR,97062 +-122.654512,45.349519,Albertsons-West Linn #506 - West Linn OR,1855 Blankenship Rd.,West Linn,OR,97068 +-122.647027,45.368017,Safeway-West Linn #1713 - West Linn OR,22000 Salamo Rd.,West Linn,OR,97068 +-122.64606,45.359697,Cascade Summit - West Linn OR (W),22750 Salamo Road,West Linn,OR,97068 +-122.644007,45.39036,Cedar Oak - West Linn OR (W),18750 SW Willamette Dr,West Linn,OR,97068 +-122.612796,45.366315,West Linn - West Linn OR (W),22000 Willamette Drive,West Linn,OR,97068 +-122.774263,45.301054,Boones Ferry & Wilsonville - Wilsonville OR (W),30299 SW Boones Ferry Rd.,Wilsonville,OR,97070 +-122.7654,45.3356,SW Elligsen & I-5 - Wilsonville OR (W),25600 SW Argyle,Wilsonville,OR,97070 +-122.762068,45.303013,Wilsonville - Wilsonville OR (W),8269 SW Wilsonville Rd.,Wilsonville,OR,97070 +-122.882845,45.152734,"111 Arney Road - Woodburn OR (D, W)",111 Arney Road NE,Woodburn,OR,97071 +-122.831558,45.150965,Safeway-Woodburn #1976 - Woodburn OR,1550 N. Pacific Hwy.,Woodburn,OR,97071 +-122.8025,45.4872,Tektronix - Beaverton OR,1400 SW Karl Braun Dr,Beaverton,OR,97077 +-122.407384,45.495441,Gresham Village - Gresham OR (W),2442 E. Burnside,Gresham,OR,97080 +-123.80808,46.1919,Safeway-Astoria #2627 - Astoria OR,3250 Lief Erikson Drive,Astoria,OR,97103 +-123.0501,45.520092,"19th & E. Baseline - Cornelias OR (D, W)",1882 East Baseline Street,Cornelias,OR,97113 +-123.095991,45.520197,Safeway-Forest Grove #406 - Forest Grove OR,2836 Pacific Ave.,Forest Grove,OR,97116 +-122.989051,45.522022,First & Main St. - Hillsboro - Hillsboro OR,102 E. Main St.,Hillsboro,OR,97123 +-122.9058,45.4978,Fred Meyer-Hillsboro #143 - Tualatin OR,6495 SE Tualatin Valley Hwy.,Tualatin,OR,97123 +-122.905446,45.498121,Reedville Crossing- Hillsboro - Hillsboro OR (D),2995 SE 75th Ave.,Hillsboro,OR,97123 +-122.974324,45.520809,10th Ave. - Hillsboro OR (D),215 SE 10th Avenue,Hillsboro,OR,97123 +-122.956912,45.512844,Albertsons - Cornell Rd. #591 - Hillsboro OR,888 NE 25th Ave.,Hillsboro,OR,97124 +-122.955334,45.529837,Hillsboro Marketplace - Hillsboro OR (W),880 NE 25th Ave.,Hillsboro,OR,97124 +-122.935354,45.533739,"Cornell Rd. & 48th Ave- Hillsboro - Hillsboro OR (D, W)",1221 NE 48th Ave.,Hillsboro,OR,97124 +-122.920852,45.533869,Orenco Station - Hillsboro OR (W),6221 NE Cornell Rd.,Hillsboro,OR,97124 +-122.904293,45.550216,Tanasbourne West - Hillsboro OR (W),22055 NW Imbrie Drive,Hillsboro,OR,97124 +-122.900247,45.537977,"Cornelius Pass & Butler Hillsboro - Hillsboro OR (D, W)",7399 NE Butler St.,Hillsboro,OR,97124 +-122.876906,45.535052,"Cornell & Stucki - Hillsboro OR (D, W)",2002 NW Stucki Avenue,Hillsboro,OR,97124 +-122.867533,45.535498,Safeway-Hillsboro #1230 - Hillsboro OR,2177 NW 185th,Hillsboro,OR,97124 +-123.22731,45.20308,"McMinnville Market Center - McMinnville OR (D, W)",829 SW Keck Drive,McMinnville,OR,97128 +-122.944244,45.30589,Fred Meyer - Newberg #220 - Newberg OR,3300 Portland Road Suite 100,Newberg,OR,97132 +-123.921507,45.991003,Safeway-Seaside #1260 - Seaside OR,401 S. Roosevelt,Seaside,OR,97138 +-122.8554,45.3531,Target Sherwood T-1868 - Sherwood OR,21365 SW Baler Way,Sherwood,OR,97140 +-122.85529,45.352059,Safeway-Sherwood #1800 - Sherwood OR,20685 Roy Rodgers Rd.,Sherwood,OR,97140 +-122.853294,45.3529,Safeway - Sherwood #1800 - Sherwood OR,20685 Roy Rodgers Rd.,Sherwood,OR,97140 +-122.842906,45.369717,Albertsons-Sherwood #579 - Sherwood OR,16030 SW Tualitin Sherwood Rd.,Sherwood,OR,97140 +-122.8436,45.3611,Sherwood - Sherwood OR (W),20661 SW Roy Rogers Rd.,Sherwood,OR,97140 +-123.845138,45.45659,Safeway - Tillamook #2723 - Tillamook OR,210 Ivy Ave.,Tillamook,OR,97141 +-123.844269,45.473456,Fred Meyer-#377 Tillamook - Tillamook OR,2500 North Main St.,Tillamook,OR,97141 +-123.918886,46.145583,Fred Meyer-Warrenton #218 - Warrenton OR,695 Highway 101,Warrenton,OR,97146 +-123.897866,46.161783,"Young's Bay Plaza- Warrenton - Warrenton OR (D, W)",171 South Hwy. 101,Warrenton,OR,97146 +-122.694593,45.478212,Hillsdale OR - Portland OR (W),6326 SW Capitol Highway,Portland,OR,97201 +-122.692002,45.517577,Goose Hollow - Portland OR (W),1710 SW Jefferson Street,Portland,OR,97201 +-122.689059,45.499287,Doernbecher/Hospital - Portland OR,700 SW Campus Drive,Portland,OR,97201 +-122.685378,45.512843,9th & Park - Portland OR (W),1717 S.W. Park Ave.,Portland,OR,97201 +-122.684896,45.516165,Safeway-Portland #2448 - Portland OR,1030 SW Jefferson,Portland,OR,97201 +-122.683389,45.514404,Park & Clay - Portland OR (W),1440 S.W. Park Avenue,Portland,OR,97201 +-122.677562,45.513841,Essex House - Portland OR (W),1300 SW Third Avenue,Portland,OR,97201 +-122.67288,45.479956,Macadam Avenue - Portland OR (W),6080 SW Macadam,Portland,OR,97201 +-122.684063,45.5091,Portland State - Portland OR,603 SW Jackson Suite 116,Portland,OR,97201 +-122.652735,45.464547,13th & Tacoma - Portland OR (W),1305 SE Tacoma Street,Portland,OR,97202 +-122.64767,45.473705,Sellwood/West Moreland - Portland OR (W),7001 SE Milwaukee Ave.,Portland,OR,97202 +-122.62632,45.49707,"SE 36th and Powell - Portland OR (D, W)",3623 SE Powell,Portland,OR,97202 +-122.623154,45.490515,39th & Holgate- Portland - Portland OR (W),4437 SE 39th Ave.,Portland,OR,97202 +-122.621669,45.496949,Safeway-Portland #1627 - Portland OR,3940 SE Powell,Portland,OR,97202 +-122.754597,45.590164,St. Johns - Portland OR (W),8539 N. Lombard,Portland,OR,97203 +-122.752769,45.588745,Safeway-St. Johns #1951 - Portland OR,8330 N. Ivanhoe St.,Portland,OR,97203 +-122.738136,45.586633,Fred Meyer - Peninsula #255 - Portland OR,6850 North Lombard,Portland,OR,97203 +-122.679949,45.515219,Pac-West - Portland OR (W),1211 S.W. 5th Avenue,Portland,OR,97204 +-122.677249,45.518331,Pioneer Place I - Portland OR (W),700 SW 5th,Portland,OR,97204 +-122.67669,45.521661,5th & Oak/US Bank Tower - Portland OR (W),555 S.W. Oak Street,Portland,OR,97204 +-122.675306,45.516585,One World Trade Center - Portland OR (W),910 SW 2nd Ave.,Portland,OR,97204 +-122.675201,45.52111,4th & Oak - Portland OR (W),305 SW 4th Avenue,Portland,OR,97204 +-122.682,45.518437,9th & Taylor - Portland OR (W),906 SW Taylor Street,Portland,OR,97205 +-122.679749,45.516993,6th and Salmon - Portland OR (W),1009 S.W. 6th Avenue,Portland,OR,97205 +-122.679685,45.519211,Pioneer Courthouse - Portland OR (W),720 SW Broadway,Portland,OR,97205 +-122.677884,45.52045,6th & Washington - Portland OR (W),601 SW Washington St.,Portland,OR,97205 +-122.438111,45.505235,Governor Hotel Lobby - Portland OR,611 SW 11th St.,Portland,OR,97205 +-122.616455,45.479837,Safeway - Portland/Woodstock #1523 - Woodstock OR,4515 SE Woodstock,Woodstock,OR,97206 +-122.693303,45.523724,Fred Meyer-Staduim #360 - Portland OR,100 NW 20th Place,Portland,OR,97209 +-122.691846,45.522865,20th & Burnside- Portland - Portland OR (W),1972 West Burnside St.,Portland,OR,97209 +-122.68443,45.530063,Safeway-Portland #2790 - Portland OR,1303 NW Lovejoy St.,Portland,OR,97209 +-122.682883,45.525904,Pearl District - Portland OR (W),1134 NW Glisan Street,Portland,OR,97209 +-122.682398,45.53007,Kearney Plaza - Portland OR (W),1102 NW Lovejoy Street,Portland,OR,97209 +-122.711377,45.54627,29th & Yeon- Portland - Portland OR (W),3275 NW 29th Ave.,Portland,OR,97210 +-122.698805,45.5232,23rd & Burnside - Portland OR (W),2328 W. Burnside Suite #2,Portland,OR,97210 +-122.698706,45.531937,23rd & Overton - Portland OR (W),1301 NW 23rd Ave.,Portland,OR,97210 +-122.698517,45.527008,NW 23rd Relocation - Portland OR (W),605 NW 23rd,Portland,OR,97210 +-122.694249,45.530094,21st & Lovejoy - Portland OR (W),1012 NW 21st Ave.,Portland,OR,97210 +-122.661341,45.565688,Safeway - Portland #509 - Portland OR,5920 NE Martin Luther King Blvd.,Portland,OR,97211 +-122.661443,45.566465,Piedmont - Portland OR (D),6003 NE MLK Drive,Portland,OR,97211 +-122.650422,45.548307,15th & Fremont - Portland OR (W),3507 N.E. 15th Avenue,Portland,OR,97212 +-122.616152,45.526397,Glisan Avenue - Portland OR (W),4500 NE Glisan,Portland,OR,97213 +-122.615281,45.548511,Beaumont - Portland OR (W),4633 NE Fremont St.,Portland,OR,97213 +-122.594665,45.528519,Fred Meyer-Portland #125 - Portland OR,6615 NE Glisan St.,Portland,OR,97213 +-122.592167,45.547089,Safeway-Portland #1447 - Portland OR,6901 NE Sandy Blvd.,Portland,OR,97213 +-122.637163,45.522887,28th & Burnside - Portland OR (W),2803 East Burnside,Portland,OR,97214 +-122.636431,45.511845,Safeway - Portland / Hawthorne #298 - Portland OR,2800 SE Hawthorne,Portland,OR,97214 +-122.626097,45.512298,Hawthorne - Portland OR (W),3639 SE Hawthorne Avenue,Portland,OR,97214 +-122.606732,45.522453,QFC-Portland #205 (Mt. Tabor) - Portland OR,5544 East Burnside St.,Portland,OR,97215 +-122.562286,45.518313,Target Portland T-1419 - Portland OR,9800 SE Washington St.,Portland,OR,97216 +-122.558015,45.519378,"SE 102nd and Stark - Portland OR (D, W)",10215 SE Stark,Portland,OR,97216 +-122.686914,45.613281,Jantzen Beach (B&N) - Portland OR (W),1718 N. Jantzen Beach Center,Portland,OR,97217 +-122.678582,45.609368,Safeway-Portland #1223 - Portland OR,11919 N. Jantzen Ave.,Portland,OR,97217 +-122.681472,45.576907,Fred Meyer-Portland #150(Interstate - Portland OR,7404 N. Interstate Ave.,Portland,OR,97217 +-122.593056,45.587513,PDX A 2 - Portland OR (A),7000 NEAirport Way MB#3,Portland,OR,97218 +-122.576694,45.582779,PDX Baggage Claim - Portland OR (A),HMSHost 7000 NEAirport Way,Portland,OR,97218 +-122.576694,45.582779,PDX Portland Int'l - Terminal B - Portland OR (A),7000 NEAirport Way,Portland,OR,97218 +-122.722086,45.452901,Barbur & Capitol - Portland OR (W),10010 S.W. Barbur Blvd.,Portland,OR,97219 +-122.711426,45.468641,Multnomah - Portland OR (W),7737 SW Capitol Highway,Portland,OR,97219 +-122.686215,45.471641,Barbur Blvd. & Terwillger - Portland OR (W),7421 SW Barbur Boulevard,Portland,OR,97219 +-122.684561,45.462928,Burlingame - Portland OR (W),8510 SW Terwilliger Blvd.,Portland,OR,97219 +-122.593056,45.587513,PDX D 4 - Portland OR (A),7000 NEAirport Way MB#23,Portland,OR,97219 +-122.566156,45.576028,Target Portland NE T-2523 - Portland OR,9401 NE Cascades Pkwy,Portland,OR,97220 +-122.559239,45.53352,Gateway - Portland OR (W),10112 N.E. HALSEY Street,Portland,OR,97220 +-122.558205,45.573105,Cascade Station- Portland - Portland OR (W),10119 NE Cascade Parkway,Portland,OR,97220 +-122.558128,45.530673,Fred Meyer - Gateway #128 - Portland OR,1111 NE 102nd,Portland,OR,97220 +-122.538708,45.524906,Safeway - Portland #1451 - Portland OR,221 NE 122nd Ave.,Portland,OR,97220 +-122.734927,45.509642,Sylvan Retail- Portland - Portland OR (W),1850 SW Skyline Blvd.,Portland,OR,97221 +-122.726991,45.497759,Albertsons - Shattuck Rd. #505 - Portland OR,5415 S.W. Beav.-Hillsdale Hwy.,Portland,OR,97221 +-122.63044,45.417136,Oak Grove - Milwaukie OR (W),14620 SE McLoughlin Blvd.,Milwaukie,OR,97222 +-122.628537,45.444646,Milwaukie Marketplace - Milwaukie OR (W),10826 SE Oak Street,Milwaukie,OR,97222 +-122.618403,45.448022,Safeway - Milwaukie #2690 - Milwaukie OR,4300 SE King Rd.,Milwaukie,OR,97222 +-122.824051,45.43151,Albertsons-Barrows Rd. #576 - Tigard OR,14300 SW Barrows Rd.,Tigard,OR,97223 +-122.805492,45.443166,Scholls Ferry/Tigard - Tigard OR (W),12700 SW Dakota,Tigard,OR,97223 +-122.784111,45.421906,"Tigard Marketplace - Tigard OR (D, W)",13560 SW Pacific Hwy.,Tigard,OR,97223 +-122.783337,45.451483,Washington Square - Tigard OR (W),9467 SW Washington Square Road,Tigard,OR,97223 +-122.782997,45.452574,Washington Square III - Tigard OR (W),9359 SW Washington Square Road,Tigard,OR,97223 +-122.778215,45.446456,Washington Square Too - Portland OR (W),10218 SW Washington Square Rd.,Portland,OR,97223 +-122.753876,45.438093,North Tigard - Tigard OR (W),11636 SW Pacific Highway,Tigard,OR,97223 +-122.750837,45.440324,Fred Meyer-Tigard #375 - Tigard OR,11565 SW Pacific Hwy.,Tigard,OR,97223 +-122.825901,45.440707,Safeway-Beaverton #2631 - Beaverton OR,14555 SW Teal Blvd.,Beaverton,OR,97224 +-122.79532,45.403249,Albertsons-Tigard #565 - Tigard OR,16200 SW Pacific Hwy.,Tigard,OR,97224 +-122.75048,45.394424,Point at Bridgeport- Tualatin - Tigard OR (W),7118 SW Hazelfern Rd.,Tigard,OR,97224 +-122.745752,45.408698,Sequoia Pkwy. - Portland OR (W),15350 SW Sequoia Pkwy,Portland,OR,97224 +-123.17327,45.22856,Safeway-McMinnville #1601 - McMinnville OR,2490 N. Hwy. 99,McMinnville,OR,97225 +-122.81438,45.527596,Safeway-Cedar Mill #1525 - Portland OR,13485 NW Cornell Rd.,Portland,OR,97225 +-122.756974,45.485742,Raleigh Hills - Portland OR (W),4735 SW 77th Avenue,Portland,OR,97225 +-122.754443,45.51566,Barnes & Miller - Portland OR (W),7515 SW Barnes Rd.,Portland,OR,97225 +-122.753954,45.515061,QFC-Portland #202 - Portland OR,7525 SW Barnes Rd.,Portland,OR,97225 +-122.752041,45.465717,Garden Home Marketplace - Portland OR (W),7315 SW Garden Home Road,Portland,OR,97225 +-122.902186,45.551213,Fred Meyer - Hillsboro #661 - Hillsboro OR,22075 NW Imbrie Dr.,Hillsboro,OR,97229 +-122.866657,45.55877,Albertsons-West Union #596 - Portland OR,18425 NW West Union Rd.,Portland,OR,97229 +-122.836697,45.554963,OFC-Portland #201 - Portland OR,4756 NW Bethany Blvd.,Portland,OR,97229 +-122.835497,45.553667,Bethany Village - Portland OR (W),4708 NW Bethany Blvd.,Portland,OR,97229 +-122.807393,45.525802,Bales Thriftway Cedar Mill - Portland OR,12675 NW Cornell Rd.,Portland,OR,97229 +-122.779434,45.537387,Forest Heights- Portland - Portland OR (W),2021 NW Miller Road,Portland,OR,97229 +-122.537156,45.479889,"NEAirport Way & 122nd- Portland - Portland OR (D, W)",5838 NE 122nd Ave.,Portland,OR,97230 +-122.477903,45.526171,"NE 181st and Glisan - Portland OR (D, W)",499 NE 181st Street,Portland,OR,97230 +-122.661814,45.530348,"MLK Blvd. & Hassalo - Portland - Portland OR (D, W)",1035 NE MLK Blvd.,Portland,OR,97232 +-122.661719,45.528473,OCC - Lobby - Portland OR,777 N.E. Martin Luther King Jr Blvd.,Portland,OR,97232 +-122.661719,45.528473,OCC - Commons - Portland OR,777 NE Martin Luther King Jr Blvd.,Portland,OR,97232 +-122.660945,45.534707,Grand & Broadway - Portland OR (W),1621 NE Grand Avenue,Portland,OR,97232 +-122.65631,45.528529,Lloyd Center - Portland OR (W),925 Lloyd Center,Portland,OR,97232 +-122.654524,45.535037,Safeway - Portland #1612 - Portland OR,1100 NE Broadway,Portland,OR,97232 +-122.650368,45.535022,15th & Broadway - Portland OR (W),1510 NE Broadway,Portland,OR,97232 +-122.634892,45.533105,West Hollywood - Portland OR (W),3030 NE Weidler,Portland,OR,97232 +-122.623284,45.534946,39th & Sandy - Portland OR (W),1633 NE 39th,Portland,OR,97232 +-122.661896,45.533848,"NE MLK and Weidler - Portland OR (D, W)",1503 NE MLK,Portland,OR,97232 +-122.661188,45.527002,NE Grand and Lloyd - Portland OR (D),525 NE Grand Avenue,Portland,OR,97232 +-122.795378,45.406846,Safeway-Tigard (King City) #1478 - Tigard OR,15570 SW Pacific Hwy.,Tigard,OR,97233 +-122.53881,45.496247,Safeway - Portland #382 - Portland OR,3527 SE 122nd,Portland,OR,97236 +-122.533632,45.504476,"SE 126th and Division - Portland OR (D, W)",12613 SE Division,Portland,OR,97236 +-122.790763,45.515917,Albertsons-Barnes Rd. #582 - Portland OR,11070-C SW Barnes Rd.,Portland,OR,97255 +-122.675478,45.513284,1st Street & Columbia - Portland OR (W),1 S.W. Columbia Street,Portland,OR,97258 +-122.580757,45.458532,Fred Meyer-Johnson Creek #153 - Portland OR,8955 SE 82nd Ave.,Portland,OR,97266 +-122.579134,45.453027,"Clackamas Crossing - Portland OR (D, W)",9610 SE 82nd Avenue,Portland,OR,97266 +-122.578669,45.501208,"FuBonn Shopping Center- Portland - Portland OR (D, W)",2834 SE 82nd Ave.,Portland,OR,97266 +-122.577722,45.490717,Eastport Plaza - Portland OR (W),4328 SE 82nd Ave.,Portland,OR,97266 +-122.57651,45.436899,Clackamas Town Center - Portland OR (W),12000 SE 82nd Avenue,Portland,OR,97266 +-122.540519,45.503639,Division Center - Portland OR (W),11906 SE Division,Portland,OR,97266 +-123.040037,44.938664,Liberty Plaza - Salem OR (W),285 Liberty Street SE,Salem,OR,97301 +-123.031988,44.964419,"Salem Parkway- Salem - Salem OR (D, W)",2505 Liberty St. NE,Salem,OR,97301 +-123.024395,44.94068,Safeway-Salem #1629 - Salem OR,1265 Center St.,Salem,OR,97301 +-122.983167,44.941296,Lancaster Mall - Salem OR (W),831 Lancaster Dr. NE,Salem,OR,97301 +-122.982734,44.944548,"1134 Lancaster Dr. - Salem OR (D, W)",1134 Lancaster Drive NE,Salem,OR,97301 +-123.043451,44.906214,South Salem - Salem OR (W),3405 Commercial St. NE,Salem,OR,97302 +-123.038337,44.899834,"Commercial & Oakhill - Salem - Salem OR (D, W)",3904 Commercial Street SE,Salem,OR,97302 +-123.0227,44.873003,Safeway-Salem #1935 - Salem OR,5660 Commercial St. SE,Salem,OR,97302 +-123.041252,44.905834,Fred Meyer - South Salem #355 - Salem OR,3450 Commercial St. SE,Salem,OR,97302 +-123.027981,44.997755,Schoolhouse Square - Keizer OR (W),5001 River Road North,Keizer,OR,97303 +-123.023849,44.996253,Safeway-Keizer #1516 - Keizer OR,4990 River Rd. N.,Keizer,OR,97303 +-122.994551,45.012164,Target Keizer T-2110 - Keizer OR,6450 NE Keizer Station Blvd.,Keizer,OR,97303 +-122.98222,44.968846,Safeway #429 - Salem - Salem OR,3380 Lancaster Dr. NE,Salem,OR,97303 +-123.06276,44.938422,Safeway-Salem #412 - Salem OR,1455 Edgewater St. NW,Salem,OR,97304 +-123.051676,44.950721,"Wallace & Glen Creek- Salem - Salem OR (D, W)",1124 Wallace Rd. NW,Salem,OR,97304 +-122.983465,44.968621,Lancaster & Silverton - Salem - Salem OR (D),3270 Lancaster Dr. NE,Salem,OR,97305 +-123.0242,45.0041,"Keizer Station - Keizer - Keizer OR (D, W)",2555 Jorie Lane NE,Keizer,OR,97307 +-123.038342,44.941415,Salem OR - Salem OR (W),399 Court Street NE,Salem,OR,97308 +-123.11343,44.644066,"N. Albany & Hickory- Albany - Albany OR (D, W)",633 Hickory St. NW,Albany,OR,97321 +-123.081096,44.628749,Safeway-Albany #1659 - Albany OR,1990 14th Ave. SE,Albany,OR,97321 +-123.075109,44.632422,Fred Meyer Santiam - Albany - Albany OR (W),2504 Santian Hwy.,Albany,OR,97322 +-123.276011,44.589999,Timberhill - Corvallis OR (W),2305 NW Kings Blvd.,Corvallis,OR,97330 +-123.257582,44.583944,9th & Garfield - Corvallis - Corvallis OR (W),1705 NW 9th Street,Corvallis,OR,97330 +-123.251047,44.587339,Safeway-Corvallis #1690 - Corvallis OR,590 NE Circle Blvd.,Corvallis,OR,97330 +-123.274215,44.575374,Fred Meyer-Corvallis #70 - Corvallis OR,777 Kings Blvd.,Corvallis,OR,97330 +-123.311508,44.551002,Safeway - Corvallis #1765 - Corvallis OR,5270 SW Philomath Blvd.,Corvallis,OR,97333 +-123.262683,44.563974,Corvallis - Corvallis OR (W),425 Southwest Madison Avenue,Corvallis,OR,97333 +-123.312659,44.929338,Safeway - Dallas -#4404 - Dallas OR,138 W. Ellendale Ave.,Dallas,OR,97338 +-123.30958,44.929762,"244 Ellendale Ave- Dallas OR - Dallas OR (D, W)",244 E. Ellendale Ave.,Dallas,OR,97338 +-122.907033,44.526767,Safeway-Lebanon #1558 - Lebanon OR,1983 S. Santiem Hwy.,Lebanon,OR,97355 +-124.05335,44.635518,"North Coast Hwy. & 2nd St-Newport - Newport OR (D, W)",122 N. Coast Highway,Newport,OR,97365 +-124.051649,44.651984,Fred Meyer-Newport #227 - Newport OR,150 NE 20th St.,Newport,OR,97365 +-124.02109,44.942606,"Highway 101 30th - Lincoln City - Lincoln City OR (D, W)",3350 N. E. HWY 101,Lincoln City,OR,97367 +-124.005464,44.996098,Safeway - Lincoln City #415 - Lincoln City OR,4101 Logan Rd.,Lincoln City,OR,97367 +-122.564879,45.144686,Safeway - Molalla #1751 - Molalla OR,1525 W. Main Street,Molalla,OR,97367 +-122.793409,45.003145,Safeway - Silverton #1580 - Silverton OR,301 Westfield St.,Silverton,OR,97381 +-122.794315,44.806549,Safeway-Stayton #1527 - Stayton OR,1535 N. 1st Ave.,Stayton,OR,97383 +-123.103425,44.069146,Valley River Center - Eugene OR (W),1079A Valley River Way,Eugene,OR,97401 +-123.099843,44.051831,7th & Washington - Eugene - Eugene OR (W),472 West 7th Avenue,Eugene,OR,97401 +-123.090456,44.04059,Safeway-Eugene #4288 - Eugene OR,145 East 18th St.,Eugene,OR,97401 +-123.089661,44.049889,Pearl & E. Broadway - Eugene - Eugene OR (W),901 Pearl Street,Eugene,OR,97401 +-123.089294,44.040259,Eugene - Eugene OR (W),205 E. 18th Street,Eugene,OR,97401 +-123.074967,44.066785,Oakway Mall - Eugene OR (W),65 Oakway Center,Eugene,OR,97401 +-123.070171,44.078015,Safeway-Eugene #420 - Eugene OR,1500 Coburg Rd.,Eugene,OR,97401 +-123.074062,44.064833,Albertsons - Colburg #572 - Eugene OR,311 Coburg Rd.,Eugene,OR,97401 +-123.178593,44.070013,Albertsons-Royal #513 - Eugene OR,4740 Royal Ave.,Eugene,OR,97402 +-123.144041,44.048177,Fred Meyer-Eugene #417 - Eugene OR,3333 W. 11th Ave.,Eugene,OR,97402 +-123.116583,44.040495,Albertsons-18th Chambers #507 - Eugene OR,1675 W. 18th & Chambers,Eugene,OR,97402 +-123.079941,44.045717,13th & Alder - Eugene OR (W),801 E. 13th Avenue,Eugene,OR,97403 +-123.087929,44.011399,Safeway-Eugene #4513 - Eugene OR,350 E. 40th Ave.,Eugene,OR,97405 +-123.096673,44.094913,"Delta & Green Acres - Eugene OR (D, W)",3003 N. Delta Hwy.,Eugene,OR,97408 +-124.28799,42.055267,Fred Meyer-Brookings #30 - Brookings OR,325 5th St.,Brookings,OR,97415 +-124.209983,43.35795,Safeway #1556 - Coos Bay - Coos Bay OR,230 East Johnson,Coos Bay,OR,97420 +-123.052454,43.79729,Safeway - Cottage Grove #1458 - Cottage Grove OR,1500 E. Main Street,Cottage Grove,OR,97424 +-124.10443,43.972821,Safeway - Florence #363 - Florence OR,700 Hwy. 101,Florence,OR,97439 +-123.206722,44.229062,Safeway - Junction City #386 - Junction City OR,1755 Ivy Street,Junction City,OR,97448 +-124.235477,43.406581,Safeway - North Bend #1557 - North Bend OR,1735 Virginia Ave.,North Bend,OR,97459 +-123.467466,43.299737,Fred Meyer-Roseburg #281 - Roseburg OR,929 NW Garden Valley Rd.,Roseburg,OR,97470 +-123.36329,43.239311,Albertsons-Roseburg #515 - Roseburg OR,3013 NW Stewart Pkwy,Roseburg,OR,97470 +-123.349507,43.229219,Safeway-Roseburg #1666 - Roseburg OR,1539 NE Stephens,Roseburg,OR,97470 +-123.370519,43.230817,Garden Valley & Goetz - Roseburg - Roseburg OR (D),1122 NW Garden Valley Blvd.,Roseburg,OR,97471 +-123.042457,44.073978,"Crossroads Center - Springfield - Springfield OR (D, W)",3348 Gateway Street,Springfield,OR,97477 +-123.02406,44.063064,Safeway-Springfield #1094 - Springfield OR,1891 Pioneer Pkwy. E.,Springfield,OR,97477 +-122.998385,44.061048,I-105 & Mohawk - Springfield OR (W),1661 Mohawk Blvd.,Springfield,OR,97477 +-122.934321,44.045674,Safeway - Springfield #311 - Springfield OR,5415 Main Street,Springfield,OR,97477 +-122.877739,42.343334,Rogue Valley Mall - Medford - Medford OR (W),1600 North Riverside Ste. 2072,Medford,OR,97501 +-122.872794,42.34359,Medford (B&N) - Medford OR (W),1408 Biddle Rd.,Medford,OR,97501 +-122.858174,42.362186,Safeway - Medford #1643 - Medford OR,3169 Crater Lake Hwy.,Medford,OR,97501 +-122.856829,42.313096,1303 Cntr Dr./Mdfrd-FMyr) - Medford OR (W),1303 Center Dr,Medford,OR,97501 +-122.872476,42.352662,Fred Meyer-Medford #195 - Medford OR,2424 Crater Lake Highway,Medford,OR,97504 +-122.867485,42.33179,Safeway-Medford #525 - Medford OR,1003 Medford Ctr,Medford,OR,97504 +-122.85743,42.36011,Hwy. 62 & Delta Waters - Medford - Medford OR (D),1730 Delta Waters Rd.,Medford,OR,97504 +-122.713729,42.196284,Ashland - Ashland OR (W),120 East Main Street,Ashland,OR,97520 +-122.689786,42.184086,Siskiyou & Madrona - Ashland OR (W),1474 Siskiyou Blvd.,Ashland,OR,97520 +-122.670721,42.186493,Albertsons-Ashland #573 - Ashland OR,2301 Ashland St.,Ashland,OR,97520 +-121.755795,42.210673,Safeway-Klamath Falls #1766 - Klamath Falls OR,2740 S. 6th,Klamath Falls,OR,97603 +-121.315012,44.05818,Downtown Bend - Bend OR,812 NW Wall Street,Bend,OR,97701 +-121.302602,44.100931,Cascade Village - Bend - Bend OR (W),63455 North Highway 97,Bend,OR,97701 +-121.302503,44.067695,Albertsons - Bend #587 - Bend OR,1800 NE 3rd St.,Bend,OR,97701 +-121.302457,44.043881,Safeway - Bend #514 - Bend OR,642 E. 3rd,Bend,OR,97701 +-121.262989,44.056357,"Highway 20th E. & 27th - Bend OR (D, W)",583 NE Bellevue Drive,Bend,OR,97701 +-121.33146,44.04748,Safeway-Bend #1888 - Bend OR,320 SW Century Dr,Bend,OR,97702 +-121.33145,44.047363,"Century Dr. & Simpson - Bend OR (D, W)",320 SW Century Drive,Bend,OR,97702 +-121.33144,44.047424,Safeway - Bend #1888 - Bend OR,320 SW Century Dr,Bend,OR,97702 +-121.306609,44.034727,Hwy. 97&Reed/Bend-FrdM - Bend OR (W),61535 South Highway 97,Bend,OR,97702 +-121.304059,44.076875,Safeway - Bend #1504 - Bend OR,2650 NE Hwy. 20,Bend,OR,97702 +-121.123823,44.643168,Safeway - Madras #1960 - Madras OR,80 NE Cedar St.,Madras,OR,97741 +-120.828401,44.302901,"Combs Flat Crossing- Prineville - Prineville OR (D, W)",1590 NE 3rd Street,Prineville,OR,97754 +-121.238309,44.188627,Safeway-Redmond #1665 - Redmond OR,1705 S. Hwy. 97,Redmond,OR,97756 +-121.205,44.275,"Nolan Town Center- Redmond - Redmond OR (D, W)",885 SW Rimrock Way,Redmond,OR,97756 +-121.17781,44.26848,Fred Meyer-Redmond #650 - Redmond OR,944 SW 9th St.,Redmond,OR,97756 +-118.808141,45.659981,"709 Southgate- Pendleton - Pendleton OR (D, W)",709 Southgate,Pendleton,OR,97801 +-118.806189,45.666916,Safeway #1642 - Pendleton - Pendleton OR,203 SW 20th St.,Pendleton,OR,97801 +-117.819,44.781,Safeway-Baker City #4381 - Baker City OR,1205 Campbell,Baker City,OR,97814 +-119.2902,45.849112,"Hermiston- Hermiston OR - Hermiston OR (D, W)",1235 N. 1st Street,Hermiston,OR,97838 +-119.272836,45.824663,Safeway - Hermiston #444 - Hermiston OR,990 Hwy. 395 South,Hermiston,OR,97838 +-118.082676,45.321259,Safeway-La Grande #1827 - La Grande OR,2111 Adams Ave.,La Grande,OR,97850 +-118.070961,45.332301,"2712 Island Ave-La Grande - La Grande OR (D, W)",2712 Island Ave.,La Grande,OR,97850 +-122.245667,47.296113,"1102 Supermall Way - Auburn WA (D, W)",1102 Supermall Way SW,Auburn,WA,98001 +-122.228903,47.273091,"Ellingson Rd- Auburn - Auburn WA (D, W)",4025 A Street SE,Auburn,WA,98002 +-122.227337,47.272772,Albertsons - South Auburn #483 - Auburn WA,4010 A St. SE,Auburn,WA,98002 +-122.226947,47.308692,Safeway-Auburn #531 - Auburn WA,101 Auburn Way N.,Auburn,WA,98002 +-122.226101,47.315519,Auburn Fred Meyer - Auburn WA (W),801 Auburn Way North,Auburn,WA,98002 +-122.220842,47.320816,"Auburn Way & 15th- Auburn - Auburn WA (D, W)",1420 Harvey Rd. NE,Auburn,WA,98002 +-122.213804,47.294801,Auburn Way South & M Street- Auburn - Auburn WA (D),1436 Auburn Way South,Auburn,WA,98002 +-122.317908,47.3141,Safeway-Federal Way #1555 - Federal Way WA,1207 S. 320th St.,Federal Way,WA,98003 +-122.316406,47.289249,"Federal Way Crossing - Federal Way WA (D, W)",1401 South 348th Street,Federal Way,WA,98003 +-122.3137,47.3101,Sea Tac Mall - Federal Way WA (W),2002 S. Commons,Federal Way,WA,98003 +-122.313378,47.324071,Albertsons-Federal Way #496 - Federal Way WA,31009 Pacific Hwy. South,Federal Way,WA,98003 +-122.306958,47.31549,"320th Street - Federal Way - Federal Way WA (D, W)",2032 South 320th St.,Federal Way,WA,98003 +-122.304016,47.313465,Target Federal Way T-1947 - Federal Way WA,2201 SeaTac Mall Blvd.,Federal Way,WA,98003 +-122.204597,47.617548,QFC Bellevue #808 - Bellevue WA,10116 NE 8th St.,Bellevue,WA,98004 +-122.203843,47.617505,Bellevue - Bellevue WA (W),10214 NE 8th,Bellevue,WA,98004 +-122.201614,47.604922,The Lodge - Bellevue WA,545 BELLEVUE WAY,Bellevue,WA,98004 +-122.201561,47.612948,Safeway - Bellevue #1600 - Bellevue WA,300 Bellevue Way NE,Bellevue,WA,98004 +-122.201509,47.610822,Main St.&Bellevue Way - Bellevue WA (W),42 Bellevue Way NE,Bellevue,WA,98004 +-122.201411,47.608182,Bellevue Square II - Bellevue WA,226 Bellevue Square,Bellevue,WA,98004 +-122.200892,47.634549,QFC-North Towne #859 - Bellevue WA,2636 Bellevue Way NE,Bellevue,WA,98004 +-122.198758,47.616316,Downtown - Bellevue - Bellevue WA (W),626 NE 106TH,Bellevue,WA,98004 +-122.196443,47.615826,3 Bellevue Cntr - Bellevue WA (W),601 108th Avenue NE,Bellevue,WA,98004 +-122.196161,47.615045,City Center - Bellevue - Bellevue WA (W),500-108th Avenue NE,Bellevue,WA,98004 +-122.193104,47.617665,Bellevue Courtyard - Bellevue WA,11010 NE 8th St.,Bellevue,WA,98004 +-122.196239,47.612428,Civica Office Building - Bellevue WA (W),255 108th Ave. NE,Bellevue,WA,98005 +-122.180334,47.616055,Larrys - Bellevue - Bellevue WA (W),661 120TH Avenue NE,Bellevue,WA,98005 +-122.154769,47.625724,Evergreen Village - Bellevue WA (W),1645 140th Avenue N.E.,Bellevue,WA,98005 +-122.153849,47.625493,Safeway-Bellevue #490 - Bellevue WA,1645 140th Avenue N.E.,Bellevue,WA,98005 +-122.172325,47.576699,Loehmanns Plaza II - Bellevue WA (W),3720 SE 128th Street,Bellevue,WA,98006 +-122.167497,47.578494,Loehmanns Plaza - Bellevue WA (W),3560C 128th Avenue SE,Bellevue,WA,98006 +-122.115221,47.558617,Lakemont / Bellevue - Bellevue WA (W),4851 Lakemont Blvd. SE,Bellevue,WA,98006 +-122.15023,47.59657,QFC-Bellevue #874 (Bel-East) - Bellevue WA,1510 145th Pl SE,Bellevue,WA,98007 +-122.141576,47.60842,Kelsey Creek - Bellevue WA (W),15015 Main Street,Bellevue,WA,98007 +-122.135077,47.581802,"Eastgate-Bellevue - Bellevue WA (D, W)",3181 156th Ave. SE,Bellevue,WA,98007 +-122.143119,47.628022,Fred Meyer - Bellevue #23 - Bellevue WA,2041 148th NE,Bellevue,WA,98007 +-122.131491,47.617504,"Crossroads - Bellevue WA (D, W)",15600 NE 8th Street,Bellevue,WA,98008 +-122.247491,47.759158,Safeway-Kenmore #3500 - Kenmore WA,6850 NE Bothell Way,Kenmore,WA,98011 +-122.243534,47.729122,QFC-Inglemore #838 - Bothell WA,14130 Juanita Dr. NE,Bothell,WA,98011 +-122.209612,47.765531,Bothell QFC - Bothell WA (W),18931 Bothell Way NE,Bothell,WA,98011 +-122.209403,47.765327,QFC - Bothell #819 - Bothell WA,18921 Bothell Way N.E.,Bothell,WA,98011 +-122.176144,47.761189,"North Creek Plaza - Bothell WA (D, W)",18404 120th Avenue NE,Bothell,WA,98011 +-122.22463,47.849293,Olsons - Mill Creek - Millcreek WA (W),926 164th Street SE,Millcreek,WA,98012 +-122.22088,47.856652,Mill Creek Town Center - Mill Creek WA (W),15517 Main Street,Mill Creek,WA,98012 +-122.206129,47.810005,Safeway - 535 Thrasher's Corner - Bothell WA,20711 Bothell Everett Hwy.,Bothell,WA,98012 +-122.186772,47.876978,Albertsons - Thomas Lake #413 - Bothell WA,3322 132nd St. SE,Bothell,WA,98012 +-122.219308,47.850819,Albertsons-Millcreek #458 - Mill Creek WA,16304 Bothell Everett Highway,Mill Creek,WA,98012 +-121.91694,47.646862,Carnation - Carnation WA (W),31722 Eugene Street,Carnation,WA,98014 +-121.987203,47.726061,Safeway-Duvall #1572 - Duvall WA,14020 Main St. NE,Duvall,WA,98019 +-121.986335,47.727808,"Duvall Commons- Duvall - Duvall WA (D, W)",26304 NE Big Rock Rd.,Duvall,WA,98019 +-122.377318,47.81033,Downtown Edmonds - Edmonds WA (W),502 Main Street,Edmonds,WA,98020 +-122.367693,47.791294,QFC-Edmonds #851 - Edmonds WA,22828 100th Ave. W.,Edmonds,WA,98020 +-122.367522,47.79069,Edmonds II - Edmonds WA (W),10016 Edmonds Way,Edmonds,WA,98020 +-122.216156,47.774219,Canyon Park - Bothell WA (W),22833 Bothell Way SE,Bothell,WA,98021 +-122.205756,47.808961,Thrashers Crnr - Bothell WA (W),2020 Maltby Road,Bothell,WA,98021 +-121.987717,47.200021,Enumclaw-Relocation - Enumclaw WA (D),1343 Garrett Street,Enumclaw,WA,98022 +-121.979854,47.198441,Safeway-Enumclaw #494 - Enumclaw WA,152 Roosevelt Ave. E.,Enumclaw,WA,98022 +-122.382117,47.296191,"340th and Hoyt - Federal Way WA (D, W)",34024 Hoyt Road SW,Federal Way,WA,98023 +-122.361479,47.300676,Safeway - Federal Way #3501 - Federal Way WA,2109 SW 336TH ST,Federal Way,WA,98023 +-122.355608,47.322966,"Dash Point - Federal Way WA (D, W)",1656 SW Dash Point Road,Federal Way,WA,98023 +-122.365982,47.784304,Safeway-Edmonds #1297 - Edmonds WA,23632 SR-99,Edmonds,WA,98026 +-122.060373,47.546591,QFC - Issaquah #821 - Issaquah WA,1540 NW Gilman Blvd.,Issaquah,WA,98027 +-122.059508,47.546002,Issaquah Meadows - Issaquah WA (W),1460 NW Gilman Blvd.,Issaquah,WA,98027 +-122.049101,47.542457,Target Issaquah T-996 - Issaquah WA,755 NW Gilman Blvd.,Issaquah,WA,98027 +-122.048443,47.54367,Issaquah Commons - Issaquah WA (W),725 NW Gilman Blvd.,Issaquah,WA,98027 +-122.033393,47.582956,QFC - Issaquah/Pine Lake #824 - Issaquah WA,2902 228th Ave. SE,Issaquah,WA,98027 +-122.003496,47.565616,QFC - Issaquah/Klahanie #840 - Issaquah WA,4570 Klahanie Dr. SE,Issaquah,WA,98027 +-122.236178,47.757619,"7750 NE Bothell Way - Kenmore WA (D, W)",7750 NE Bothell Way,Kenmore,WA,98028 +-122.041254,47.547839,Fred Meyer - Issaquah #658 - Issaquah WA,6100 East Lake Sammamish SE,Issaquah,WA,98029 +-122.039213,47.547359,"East Lake Samm.Cntr - Issaquah WA (D, W)",6170 E. Lake Sammamish Pkwy. SE,Issaquah,WA,98029 +-122.004774,47.564634,Klahanie Village - Issaquah WA (W),4566 Klahanie Dr. S.E.,Issaquah,WA,98029 +-122.166833,47.358121,"Kent Meridian Drive Thru - Kent WA (D, W)",13121 Kent Kangley Road,Kent,WA,98030 +-122.203564,47.366484,Target Kent T-681 - Kent WA,26301 104th Ave. SE,Kent,WA,98030 +-122.300346,47.375014,Fred Meyer - Redondo #215 - Kent WA,25250 Pacific Highway South,Kent,WA,98031 +-122.202532,47.37261,"SE 256th Street-Kent - Kent WA (D, W)",10234 SE 256th Street,Kent,WA,98031 +-122.19782,47.416361,208th & Benson/Panther Lk. - Kent WA (W),10700 SE 208th Street,Kent,WA,98031 +-122.19702,47.417647,Albertsons - Panther Lake #474 - Kent WA,20600 108th Ave. SE,Kent,WA,98031 +-122.196031,47.415185,Safeway - Kent #459 - Kent WA,20830 108th Ave. SE,Kent,WA,98031 +-122.166934,47.358138,Safeway-Kent #1966 - Kent WA,13101 SE Kent Kangley Rd.,Kent,WA,98031 +-122.163487,47.387022,QFC - Meridian #803 - Kent WA,13304 S. E. 240th,Kent,WA,98031 +-122.358946,47.298305,Twin Lakes/Fred Meyer - Federal Way WA (W),33702 21st Ave. SW,Federal Way,WA,98032 +-122.308701,47.35952,Redondo - Des Moines WA (W),27027 Pacific Hwy. South,Des Moines,WA,98032 +-122.296676,47.385133,"Pacific Hwy. & S. 240th- Kent - Kent WA (D, W)",24130 Pacific Highway South,Kent,WA,98032 +-122.295134,47.392342,Midway Crossing - Kent WA (W),23325 Pacific Highway South,Kent,WA,98032 +-122.26289,47.3886,"212th & W. Valley Hwy- Kent - Kent WA (D, W)",6719 S. 211th St.,Kent,WA,98032 +-122.253026,47.380819,"64th & Meeker - Kent WA (D, W)",1428 West Meeker,Kent,WA,98032 +-122.246151,47.379648,Safeway-Kent #1294 - Kent WA,210 Washington Ave. S.,Kent,WA,98032 +-122.244386,47.44106,"180th & W. Valley Hwy. - Kent - Kent WA (D, W)",18016 71st Ave. S.,Kent,WA,98032 +-122.236893,47.381852,4th & Meeker - Kent WA (W),425 West Meeker,Kent,WA,98032 +-122.207624,47.723134,Safeway-Juanita #2734 - Kirkland WA,10020 NE 137th St.,Kirkland,WA,98033 +-122.206605,47.67564,Downtown Kirkland - Kirkland WA (W),116 Lake Street South,Kirkland,WA,98033 +-122.205652,47.656775,Carillon Point - Kirkland WA (W),2255 Carillon Point,Kirkland,WA,98033 +-122.204735,47.676475,Kirkland Park Place - Kirkland WA (W),208 Park Place Center,Kirkland,WA,98033 +-122.196282,47.666259,Houghton II - Kirkland WA (W),6733 108th Ave. NE,Kirkland,WA,98033 +-122.177796,47.678984,"Rose Hill - Kirkland - Kirkland WA (D, W)",12209 NE 85th St.,Kirkland,WA,98033 +-122.173281,47.679024,Safeway-Kirkland #1142 - Kirkland WA,12519 NE 85th St.,Kirkland,WA,98033 +-122.164038,47.665351,Bridle Trails Center- Kirkland - Kirkland WA (W),6617 132nd Ave. NE,Kirkland,WA,98033 +-122.2109,47.7065,Juanita II - Kirkland WA (W),9721 NE 119th Way,Kirkland,WA,98034 +-122.208288,47.720063,"North Juanita - Kirkland WA - Kirkland WA (D, W)",13325 100th Ave. NE,Kirkland,WA,98034 +-122.191177,47.712295,QFC - Totem Lake #828 - Kirkland WA,11224 N.E. 124th St.,Kirkland,WA,98034 +-122.188086,47.711205,Totem Lake West - Kirkland WA (W),11400 NE 124th ST,Kirkland,WA,98034 +-122.174424,47.732473,Safeway-Kirkland #526 - Kirkland WA,14444 124th Ave. NE,Kirkland,WA,98034 +-122.334888,47.820303,QFC-W Lynwood #835 - Lynnwood WA,7500-B 196th SW,Lynnwood,WA,98036 +-122.320496,47.8149,"Highway 99 & 200th - Lynnwood - Lynnwood WA (D, W)",19927 Highway 99,Lynnwood,WA,98036 +-122.315955,47.822612,Albertsons-Lynnwood #485 - Lynnwood WA,19500 Highway 99,Lynnwood,WA,98036 +-122.294096,47.819713,Lynnwood Square - Lynnwood WA (W),19720 44TH Avenue W.,Lynnwood,WA,98036 +-122.288146,47.820517,"196th & 40th - Lynnwood WA (D, W)",4028 196th Street SW,Lynnwood,WA,98036 +-122.283699,47.8636,Safeway-Lynnwood #3523 - Lynnwood WA,14826 Hwy. 99,Lynnwood,WA,98036 +-122.270883,47.823699,Alderwood Mall Parkway - Lynwood WA (W),19220 Alderwood Mall Parkway,Lynwood,WA,98036 +-122.29858,47.840015,QFC - Lynnwood #855 - Lynnwood WA,17525-F Highway 99,Lynnwood,WA,98037 +-122.294255,47.845735,"168th and Highway 99-Lynnwood - Lynnwood WA (D, W)",16809 Highway 99,Lynnwood,WA,98037 +-122.279913,47.882723,Albertsons-Mukilteo #469 - Lynnwood WA,12811 Beverly Park Rd.,Lynnwood,WA,98037 +-122.275567,47.874985,Mukilteo - Lynnwood WA (W),13619 Mukilteo,Lynnwood,WA,98037 +-122.27354,47.831164,Alderwood Mall Terrace - Lynnwood WA (W),3000 184th St. SW,Lynnwood,WA,98037 +-122.27354,47.831164,Alderwood Mall Kiosk - Lynnwood WA (W),3000 184th St. SW,Lynnwood,WA,98037 +-122.27354,47.831164,Alderwood Mall Relocation - Lynnwood WA (W),3000 184th St. SW,Lynnwood,WA,98037 +-122.26996,47.849946,Fred Meyer-Alderwood WA #688 - Lynnwood WA,2612 164th Street,Lynnwood,WA,98037 +-122.045798,47.387726,Wilderness Village - Maple Valley WA (W),22131 S.E. 237th Street,Maple Valley,WA,98038 +-122.02421,47.37608,"Kent Kangley & Black Diamond Rd. - Maple Valley WA (D, W)",26910 Maple Valley Hwy. #J,Maple Valley,WA,98038 +-122.02055,47.360645,Safeway-Maple Valley #1471 - Maple Valley WA,26916 Maple Valley Hwy.,Maple Valley,WA,98038 +-122.236906,47.586769,"Mercer Island Drive Thru - Mercer Island WA (D, W)",7620 SE 27th St.,Mercer Island,WA,98040 +-122.235118,47.586704,Mercer Island III - Mercer Island WA (W),7695 SE 27th Street,Mercer Island,WA,98040 +-122.232886,47.584959,QFC-Mercer Island #839 - Mercer Island WA,7823 SE 28th,Mercer Island,WA,98040 +-122.226663,47.54203,South Mercer Island - Mercer Island WA (W),8415 SE 68th Street,Mercer Island,WA,98040 +-122.226505,47.541742,QFC - South Mercer Island #806 - Mercer Island WA,8421 S.E. 68th St.,Mercer Island,WA,98040 +-122.117041,47.358893,Covington Place - Covington WA (W),27116 168th Place SE,Covington,WA,98042 +-122.11039,47.359264,"Covington Drive Thru - Covington WA (D, W)",17313 SE 270th Pl,Covington,WA,98042 +-122.292112,47.791808,"Cedar Plaza- Mountlake Terrace - Mountlake Terrace WA (D, W)",22803 44th Ave. W.,Mountlake Terrace,WA,98043 +-122.290935,47.80756,Albertsons - Mt Lake Terrace #414 - Mountlake Terrace WA,4301 212th Street SW,Mountlake Terrace,WA,98043 +-121.793621,47.487533,"North Bend & Mt Si- North Bend - North Bend WA (D, W)",721 SW Mt. Si Blvd.,North Bend,WA,98045 +-121.780768,47.493224,QFC-North Bend #829 - North Bend WA,460 E. North Bend Way,North Bend,WA,98045 +-121.791266,47.486721,North Bend - North Bend WA (W),458 SW Mt Si Blvd.,North Bend,WA,98045 +-122.113032,47.357842,Safeway-Kent #792 - Kent WA,17051 SE 272nd St.,Kent,WA,98048 +-122.143072,47.627943,Overlake - Redmond WA (W),2020 - 148th Ave. NE,Redmond,WA,98052 +-122.140095,47.631539,Overlake Village - Redmond WA (W),15000 NE 24th Street,Redmond,WA,98052 +-122.129957,47.674277,"Redmond Center - Relocation - Redmond WA (D, W)",15738 Redmond Way,Redmond,WA,98052 +-122.128773,47.675446,QFC - Redmond #820 - Redmond WA,15800 Redmond Way NE,Redmond,WA,98052 +-122.125536,47.681468,Redmond North - Redmond WA (W),8867 161st Avenue NE,Redmond,WA,98052 +-122.121499,47.669741,Redmond Town Center II - Redmond WA (W),7301 164th Ave. NE,Redmond,WA,98052 +-122.120152,47.670384,Redmond Town Center - Redmond WA (W),16500 N.E. 74th,Redmond,WA,98052 +-122.110971,47.670824,Bear Creek - Redmond WA (W),17196 NE Redmond Wy,Redmond,WA,98052 +-122.110728,47.670754,Safeway - Redmond #464 - Redmond WA,17246 Redmond Way NE,Redmond,WA,98052 +-122.103943,47.670651,Fred Meyer - Redmond #664 - Redmond WA,17667 NE 76th St.,Redmond,WA,98052 +-122.103517,47.672639,Target Redmond T-995 - Redmond WA,17700 NE 76th St.,Redmond,WA,98052 +-122.093494,47.702775,Avondale & 116th - Redmond WA - Redmond WA (W),11523 Avondale Road,Redmond,WA,98052 +-122.024578,47.700224,Redmond Ridge - Redmond WA (W),23515 Novelty Hill Rd.,Redmond,WA,98052 +-122.113928,47.670867,"Redmond Retail - Redmond WA (D, W)",7625 - 170th Ave. NE,Redmond,WA,98052 +-122.02608,47.645174,Albertsons - Redmond #403 - Redmond WA,3925 236th Ave. NE,Redmond,WA,98053 +-122.024537,47.69939,QFC - Redmond Ridge #878 - Redmond WA,23475 NE Novelty Hill Rd.,Redmond,WA,98053 +-122.216318,47.477424,"439 Rainier Avenue South - Renton WA (D, W)",439 Rainier Avenue South,Renton,WA,98055 +-122.213717,47.479748,Safeway-Renton #1563 - Renton WA,200 S. 3rd St.,Renton,WA,98055 +-122.213234,47.441452,East Valley Hwy. & SW 43rd - Renton WA (W),200 SW 43 St.,Renton,WA,98055 +-122.211249,47.471488,Renton Village - Renton WA (W),601 S. Grady Way,Renton,WA,98055 +-122.1974,47.4857,Target Renton T-2290 - Renton WA,1215 Landing Way,Renton,WA,98055 +-122.196948,47.443971,Benson Plaza- Relocation - Renton WA (D),17823 108th Ave. SE,Renton,WA,98055 +-122.193825,47.532004,"I-405 & NE 44th- Renton - Renton WA (D, W)",1785 44th Avenue,Renton,WA,98056 +-122.161428,47.489511,Safeway-Renton (Highlands) #1468 - Renton WA,4300 NE 4th,Renton,WA,98056 +-122.157384,47.505445,"4637 Sunset Blvd. - Renton WA (D, W)",4637 Sunset Boulevard,Renton,WA,98056 +-122.154059,47.448018,Safeway-Renton #519 - Renton WA,17230 140th SE,Renton,WA,98058 +-122.153856,47.445488,Fairwood - Renton WA (W),14022 SE Petrovitsky Rd.,Renton,WA,98058 +-122.167094,47.539616,Safeway-Newcastle #558 - Newcastle WA,6911 Coal Creek Pkwy. SE,Newcastle,WA,98059 +-122.166033,47.538667,Coal Creek Village - Newcastle WA (W),6977 Coal Creek Parkway SE,Newcastle,WA,98059 +-122.157189,47.48853,Highland Marketplace - Renton WA (W),4710 NE 4th St.,Renton,WA,98059 +-121.873,47.5305,Snoqualmie Ridge- Snoqualmie - Snoqualmie WA (W),7730 Center Blvd. SE,Snoqualmie,WA,98065 +-122.15573,47.754864,Woodinville II - Woodinville WA (W),13780 N.E. 175th Street,Woodinville,WA,98072 +-122.152465,47.754458,Woodinville - Woodinville WA (W),14015 NE 175TH Street,Woodinville,WA,98072 +-122.14947,47.76118,Woodinville Haggens - Woodinville WA (W),17641 Garden Way Drive,Woodinville,WA,98072 +-122.080593,47.756175,Safeway-Woodinville #533 - Woodinville WA,19150 NE Woodinville-Duvall Rd.,Woodinville,WA,98072 +-122.035375,47.614862,Sammamish Highlands - Sammamish WA (W),604 228th Ave. NE,Sammamish,WA,98074 +-122.034695,47.612552,"Sammamish II - Sammamish WA (D, W)",340 228 Ave. NE,Sammamish,WA,98074 +-122.033425,47.58178,Pine Lake Relocation - Sammamish WA (W),3016 Issaquah-Pine Lake Road SE,Sammamish,WA,98075 +-122.252251,47.849428,"164th Street Crossing - Lynnwood WA (D, W)",1330 164th St. SW,Lynnwood,WA,98087 +-122.210494,47.243527,Lakeland Town Center - Auburn WA (W),1408 Lake Tapps Parkway East,Auburn,WA,98092 +-122.342307,47.609767,Pike Place - Seattle WA (W),1912 Pike Place,Seattle,WA,98101 +-122.339888,47.609071,1st & Pike-Seattle - Seattle WA (W),102 Pike St.,Seattle,WA,98101 +-122.339114,47.604482,Pier 55 - Seattle WA (W),1101 Alaskan Way,Seattle,WA,98101 +-122.33866,47.609367,3rd and Pike - Seattle WA (W),221 Pike Street,Seattle,WA,98101 +-122.337914,47.607899,Washington Mutual Center- Seattle - Seattle WA (W),1301 2nd Ave.,Seattle,WA,98101 +-122.337613,47.610908,Century Square - Seattle WA (W),1501 Fourth Avenue,Seattle,WA,98101 +-122.337549,47.607827,Benaroya Symphony Hall - Seattle WA (W),200 University Street,Seattle,WA,98101 +-122.337287,47.61155,Westlake Center - Seattle WA (W),400 Pine Street,Seattle,WA,98101 +-122.336991,47.61396,Plaza 600 Building - Seattle WA (W),600 Stewart Street,Seattle,WA,98101 +-122.336432,47.60655,2nd & Seneca - Seattle WA (W),1191 2nd Avenue,Seattle,WA,98101 +-122.335994,47.611887,Pine Street - Seattle WA (W),515 Pine Street,Seattle,WA,98101 +-122.335569,47.608999,Puget Sound Plaza - Seattle WA (W),1325 Fourth Avenue,Seattle,WA,98101 +-122.335451,47.614062,1700 Seventh Ave. - Seattle WA (W),1700 Seventh Ave.,Seattle,WA,98101 +-122.335349,47.612427,Pacific Place - Seattle WA (W),600 Pine Street,Seattle,WA,98101 +-122.335092,47.606716,1111 3rd Avenue - Seattle WA (W),1111 3rd Avenue #2730,Seattle,WA,98101 +-122.334738,47.610575,6th & Union - Seattle WA (W),1420 5th Ave.,Seattle,WA,98101 +-122.334708,47.609952,US Bank Centre - Seattle WA (W),1420 Fifth Avenue,Seattle,WA,98101 +-122.334093,47.607372,4th & Seneca - Seattle WA (W),1125 4th Avenue,Seattle,WA,98101 +-122.333569,47.61186,7th & Pike Elliott Hotel - Seattle WA (W),1524 7th Ave.,Seattle,WA,98101 +-122.333214,47.610272,Two Union Square - Seattle WA,601 Union Street,Seattle,WA,98101 +-122.329856,47.616694,Metropolitan Park - Seattle WA (W),1730 Minor Avenue,Seattle,WA,98101 +-122.328115,47.597453,505 Union Stn - Seattle WA (W),505 5th Ave. South,Seattle,WA,98101 +-122.325531,47.641043,2344 Eastlake - Seattle WA (W),2344 Eastlake Ave. E.,Seattle,WA,98102 +-122.325015,47.619392,E. Olive Way - Seattle WA (W),1600 E. Olive Wy,Seattle,WA,98102 +-122.321236,47.625529,Roy St. Coffee & Tea - Seattle WA,700 Broadway E.,Seattle,WA,98102 +-122.320927,47.622182,QFC-Seattle/Broadway Mkt #887 - Seattle WA,417 Broadway E.,Seattle,WA,98102 +-122.320721,47.605788,Capitol Hill - Seattle WA (W),434 Broadway Ave. E.,Seattle,WA,98102 +-122.355275,47.677825,Phinney Ridge - Seattle WA,316 N. 67th Street,Seattle,WA,98103 +-122.354591,47.692808,Safeway-Seattle #1845 - Seattle WA,8704 Greenwood Ave. N.,Seattle,WA,98103 +-122.34983,47.650115,Fremont - Seattle WA (W),3415 B. Fremont Avenue North,Seattle,WA,98103 +-122.336175,47.661368,QFC - Wallingford #869 - Seattle WA,1801 N. 45th St.,Seattle,WA,98103 +-122.333074,47.661605,Wallingford - Seattle WA (W),2110 North 45th,Seattle,WA,98103 +-122.334944,47.603267,1st & Marion - Seattle WA (W),823 First Ave.,Seattle,WA,98104 +-122.334716,47.605526,Seattle Trust - Seattle WA (W),1000 Second Avenue,Seattle,WA,98104 +-122.333784,47.601535,Pioneer Square - Seattle WA (W),102 First Avenue S.,Seattle,WA,98104 +-122.33377,47.60495,First Interstate/WlsFrgo - Seattle WA (W),999 Third Avenue,Seattle,WA,98104 +-122.331805,47.52763,Washington Shoe Building - Seattle WA (W),400 Occidental Avenue,Seattle,WA,98104 +-122.331723,47.601977,Smith Tower - Seattle WA (W),502 Second Avenue,Seattle,WA,98104 +-122.330779,47.604828,Columbia Tower 40th Floor- Seattle - Seattle WA (W),701 5th Avenue,Seattle,WA,98104 +-122.329974,47.605078,Seattle Municipal Building - Seattle WA (W),700 5th Ave.,Seattle,WA,98104 +-122.329921,47.60445,Columbia Center - Seattle WA (W),701 Fifth Avenue,Seattle,WA,98104 +-122.324524,47.609404,Swedish Medical Center - Seattle WA (W),1101 Madison Avenue,Seattle,WA,98104 +-122.322896,47.610256,First Hill II - Seattle WA (W),1301 Madison St.,Seattle,WA,98104 +-122.39415,47.579879,University Village II - Seattle WA (W),2650 NE 49th ST,Seattle,WA,98105 +-122.365467,47.561696,University Village - Seattle WA (W),4634 26th Avenue NE,Seattle,WA,98105 +-122.313318,47.658234,4147 University Way Avenue - Seattle WA (W),4147 University Way NE,Seattle,WA,98105 +-122.313124,47.662874,University Way - Seattle WA (W),4555 University Wy NE,Seattle,WA,98105 +-122.297101,47.661529,QFC - University Village #807 - Seattle WA,2746 NE 45th Street,Seattle,WA,98105 +-122.36455,47.522646,Westwood Village - Seattle WA (W),9023 25th Ave. SW,Seattle,WA,98106 +-122.386739,47.670551,QFC - Seattle/Ballard #891 - Seattle WA,2237 NW 58th Street,Seattle,WA,98107 +-122.385023,47.668701,Ballard - Seattle WA (W),2204 NW Market Street,Seattle,WA,98107 +-122.374888,47.668254,Safeway-Seattle #1477 - Seattle WA,1423 NW Market St.,Seattle,WA,98107 +-122.370763,47.660651,Ballard/FredMeyer - Seattle WA (W),4400 11th Avenue NW,Seattle,WA,98107 +-122.322357,47.547755,Corson & Michigan - Seattle - Seattle WA (W),5963 Corson Avenue South,Seattle,WA,98108 +-122.357643,47.623924,Safeway-Seattle #1885 - Seattle WA,516 1st Ave. W.,Seattle,WA,98109 +-122.356743,47.622802,Queen Anne Ave. N. - Seattle WA (W),425 Queen Anne Avenue N.,Seattle,WA,98109 +-122.356266,47.637625,Safeway - Upper Queen Anne #368 - Seattle WA,2100 Queen Anne Ave. N.,Seattle,WA,98109 +-122.355627,47.622125,Seattle Center - Seattle WA (W),305 Harrison Street,Seattle,WA,98109 +-122.34732,47.624707,QFC - Seattle/Uptown #881 - Seattle WA,500 Mercer Avenue,Seattle,WA,98109 +-122.342326,47.63007,1211 Dexter Ave. - Seattle WA (W),1211 Dexter Avenue North,Seattle,WA,98109 +-122.340132,47.629969,"1200 Westlake Ave. DT - Seattle - Seattle WA (D, W)",1200 Westlake Ave.,Seattle,WA,98109 +-122.338433,47.621532,Westlake & Thomas - Seattle - Seattle WA (W),330 Westlake Ave. N.,Seattle,WA,98109 +-122.519451,47.635162,Safeway-Bainbridge Island #1252 - Bainbridge Island WA,253 High School Rd. NE,Bainbridge Island,WA,98110 +-122.312545,47.621452,15th Ave. E. - Seattle WA,328 15th Ave. E.,Seattle,WA,98112 +-122.280875,47.634174,Madison Park - Seattle WA (W),4000 East Madison Ave.,Seattle,WA,98112 +-122.313516,47.620545,Safeway-Seattle #1551 - Seattle WA,1410 E. John St.,Seattle,WA,98112 +-122.32435,47.680218,Greenlake - Seattle WA (W),7100 E. Greenlake Drive N.,Seattle,WA,98115 +-122.317402,47.675603,Roosevelt Square - Seattle WA (W),6417 Roosevelt Way NE,Seattle,WA,98115 +-122.290448,47.681366,35th and 73rd-Wedgwood - Seattle WA (W),7303 35th Avenue NE,Seattle,WA,98115 +-122.385485,47.559815,Safeway - Seattle #1062 - Seattle WA,4754 42nd Ave. SW,Seattle,WA,98116 +-122.385163,47.580969,Safeway-Seattle #373 - Seattle WA,2622 California Ave. SW,Seattle,WA,98116 +-122.384531,47.561438,QFC-West Seattle WA #883 - Seattle WA,4100 SW Alaska St.,Seattle,WA,98116 +-122.383912,47.58116,West Seattle - Seattle WA (W),4101 SW Admiral Way,Seattle,WA,98116 +-122.411157,47.578738,Alki Ave. - Seattle WA (W),2742 Alki Ave. SW,Seattle,WA,98116 +-122.376777,47.689633,Safeway-Seattle #1143 - Seattle WA,8340 15th Ave. NW,Seattle,WA,98117 +-122.363819,47.701954,Holman Road - Seattle WA (W),9999 Holman Rd. NW,Seattle,WA,98117 +-122.289231,47.568962,Rainier Plaza - Seattle WA (W),3820 Rainier Avenue South,Seattle,WA,98118 +-122.285645,47.559072,Rainier & Edmunds (UCO) - Seattle WA (W),4824 Rainier Ave. South,Seattle,WA,98118 +-122.285384,47.545983,"MLK Way & Graham - Seattle - Seattle WA (D, W)",6310 Martin Luther King Jr. Way South,Seattle,WA,98118 +-122.268802,47.519866,Safeway-Seattle #1965 - Seattle WA,9262 Rainier Ave. S.,Seattle,WA,98118 +-122.378061,47.648231,1609 West Dravus - Seattle WA (W),1607 West Dravus Street,Seattle,WA,98119 +-122.371915,47.629916,"1144 Elliott Ave. W. - Seattle - Seattle WA (D, W)",1144 Elliott Avenue West,Seattle,WA,98119 +-122.357322,47.638211,Queen Anne - Seattle WA (W),2135 Queen Anne Ave. N.,Seattle,WA,98119 +-122.347559,47.611009,Alaska Way/World Trade Cntr - Seattle WA (W),2200 Alaskan Way,Seattle,WA,98121 +-122.347414,47.61393,Belltown - Seattle WA (W),2326 1st Avenue,Seattle,WA,98121 +-122.342413,47.612481,2nd & Lenora - Seattle WA (W),211 Lenora,Seattle,WA,98121 +-122.342162,47.613989,Fourth & Blanchard - Seattle WA (W),2101 Fourth Avenue,Seattle,WA,98121 +-122.337635,47.618054,2200 Westlake Avenue - Seattle WA (W),2200 Westlake Avenue,Seattle,WA,98121 +-122.321265,47.61391,QFC Harvard Market #847 - Seattle WA,1401 Broadway,Seattle,WA,98122 +-122.316759,47.60924,12th & Columbia - Seattle WA (W),800 12th Ave.,Seattle,WA,98122 +-122.310227,47.606353,James Tower - Seattle WA,550 17th Ave.,Seattle,WA,98122 +-122.285354,47.602301,Leschi - Seattle WA (W),121 Lakeside Ave.,Seattle,WA,98122 +-122.326749,47.704376,Northgate Mall - Seattle WA (W),301 NE Northgate Way,Seattle,WA,98125 +-122.324653,47.709271,Target Northgate T-1284 - Seattle WA,302 NE Northgate Way,Seattle,WA,98125 +-122.32146,47.708932,Northgate - Seattle WA (W),540 NE Northgate Way,Seattle,WA,98125 +-122.316788,47.709386,QFC - Northgate #866 - Seattle WA,11100 Roosevelt Way NE,Seattle,WA,98125 +-122.314224,47.731588,"145th & 15th - Seattle WA (D, W)",14359 15th Avenue NE,Seattle,WA,98125 +-122.297578,47.715974,"Lake City Way & 120th - Seattle WA (D, W)",12001 Lake City Way NE,Seattle,WA,98125 +-122.291949,47.732844,"145th and Lake City Way - Seattle WA (D, W)",14330 Lake City Way NE,Seattle,WA,98125 +-122.377022,47.564309,"35th & Fauntleroy- Seattle - Seattle WA (D, W)",4408 Fauntleroy Way SW,Seattle,WA,98126 +-122.364569,47.521042,QFC - West Wood Village #825 - Seattle WA,2500 SW Barton,Seattle,WA,98126 +-122.36727,47.516701,Safeway - Seattle #1923 - Seattle WA,9620 28th Ave. SW,Seattle,WA,98126 +-122.34652,47.775681,"Shoreline - Shoreline WA (D, W)",20121 Aurora Ave. N.,Shoreline,WA,98133 +-122.345485,47.724365,"130th & Aurora - Seattle WA (D, W)",13025 Aurora Avenue North,Seattle,WA,98133 +-122.344466,47.762077,Hwy. 99 & 185th- Shoreline - Shoreline WA (W),18336 Midvale Ave. N.,Shoreline,WA,98133 +-122.344047,47.702232,Oak Tree - Seattle WA (W),10002 Aurora Avenue North,Seattle,WA,98133 +-122.344039,47.740916,Safeway- Shoreline #442 - Seattle WA,15332 Aurora Ave. N.,Seattle,WA,98133 +-122.332019,47.708271,Northgate Way - Seattle WA (D),2137 North Northgate Way,Seattle,WA,98133 +-122.315575,47.777569,Aurora Village - Seattle WA (W),1295 North 205th,Seattle,WA,98133 +-122.335124,47.580694,SODO Lobby - Seattle WA (W),2401 Utah Ave. South,Seattle,WA,98134 +-122.333987,47.584154,"1st & Walker-Seattle - Seattle WA (D, W)",1962 1st Ave. S.,Seattle,WA,98134 +-122.330094,47.566666,4th & Diagonal-Seattle - Seattle WA (D),4115 4th Avenue S.,Seattle,WA,98134 +-122.387685,47.544436,California & Fauntleroy - Seattle WA (W),6501 California Ave.,Seattle,WA,98136 +-122.302208,47.599297,23rd & Jackson - Seattle WA (W),2300 South Jackson,Seattle,WA,98144 +-122.299676,47.579175,QFC - Seattle/Rainier #849 - Seattle WA,2707 Rainier Avenue South,Seattle,WA,98144 +-122.29672,47.576923,MLK Way (UCO) - Seattle WA (W),2921 Martin Luther King Jr. Wy,Seattle,WA,98144 +-122.335372,47.442025,QFC-Seattle #805 (Manhattan) - Seattle WA,17847 1st Ave. S.,Seattle,WA,98148 +-122.334331,47.442448,Normandy Park - Normandy Park WA (W),17829 1st Ave. South,Normandy Park,WA,98148 +-122.3339,47.461954,Burien DT Relocation - Burien WA (D),15838 1st Avenue South,Burien,WA,98148 +-122.312669,47.75482,Safeway-North City #497 - Seattle WA,17202 15th Ave. NE,Seattle,WA,98155 +-122.311438,47.733936,QFC - North Seattle #858 - Seattlle WA,1531 NE 145th St.,Seattlle,WA,98155 +-122.311004,47.775653,Ballinger Village - Shoreline WA (W),20132 Ballinger Way NE,Shoreline,WA,98155 +-122.268374,47.758065,Lake Forest Park-Relo - Lake Forest WA (D),17039 NE Bothell Way,Lake Forest,WA,98155 +-122.364767,47.463532,SEA SeaTac Concourse C C12 - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac Conc C Gate C-9 - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac Concourse B - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac North Satellite Gt N-12 - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac CT-26 - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac Main Term Space 21 - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac Main Terminal - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac Concourse A Space 2 - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac Concourse B Gate 8 - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.364767,47.463532,SEA SeaTac Relocate of Nr Esplanade - Seattle WA (A),2580 S. 156th St.,Seattle,WA,98158 +-122.335756,47.471526,Safeway - Burien #1664 - Burien WA,138 SW 148th St.,Burien,WA,98166 +-122.334578,47.470566,Burien Plaza - Burien WA (W),116 SW 148th Street,Burien,WA,98166 +-122.272721,47.485648,"Interurban Ave. - Tukwila WA (D, W)",13038 Interurban Ave.,Tukwila,WA,98168 +-122.365241,47.765129,Richmond Beach - Seattle WA (W),606 NW Richmond Beach Road,Seattle,WA,98177 +-122.298946,47.409788,Safeway-Seattle #3540 - Des Moines WA,21401 Pacific Hwy. S.,Des Moines,WA,98188 +-122.26245,47.448899,Parkway Supercenter - Tukwila WA (W),17480 Southcenter Parkway,Tukwila,WA,98188 +-122.25744,47.460651,SouthCenter II - Seattle WA,1047 Southcenter Mall,Seattle,WA,98188 +-122.254331,47.455772,Southcenter (B&N) - Tukwila WA (W),300 Andover Place W.,Tukwila,WA,98188 +-122.253498,47.455797,Southcenter - Tukwila WA (W),333 Strander Blvd.,Tukwila,WA,98188 +-122.2462,47.4644,Southcenter Mall - Tukwila WA (W),506 Southcenter Blvd.,Tukwila,WA,98188 +-122.28204,47.455749,Safeway-Seattle #1493 - Seattle WA,4011 S. 164th,Seattle,WA,98188 +-122.30223,47.65212,Husky Stadium Cart 1 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.30223,47.65212,Husky Stadium Cart 2 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.30223,47.65212,Husky Stadium Cart 3 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.30223,47.65212,Husky Stadium Cart 4 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.30223,47.65212,Husky Stadium Cart 5 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.30223,47.65212,Husky Stadium Cart 6 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.30223,47.65212,Husky Stadium Cart 7 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.30223,47.65212,Husky Stadium Cart 8 - Seattle WA,315 Hec Edmundson Pavilion,Seattle,WA,98195 +-122.308735,47.359451,Safeway - Des Moines #1186 - Des Moines WA,27035 Pacific Hwy. S.,Des Moines,WA,98198 +-122.399911,47.639831,Magnolia Relocation - Seattle WA (W),3300 W. McGraw St.,Seattle,WA,98199 +-122.211854,47.962565,Safeway-Everett #1484 - Everett WA,4128 Rucker Ave.,Everett,WA,98201 +-122.208565,47.979939,Downtown Everett - Everett WA (W),2823 Colby Avenue,Everett,WA,98201 +-122.201441,47.982724,Broadway Relocation - Everett WA,2615 Broadway,Everett,WA,98201 +-122.200693,47.969141,"37th & Broadway - Everett WA (D, W)",3621 Broadway,Everett,WA,98201 +-122.20043,47.994283,Safeway - Everett #474 - Everett WA,1715 Broadway,Everett,WA,98201 +-122.22113,47.930417,"Evergreen Way & 75th - Everett WA (D, W)",7430 Evergreen Way,Everett,WA,98203 +-122.219436,47.927875,Safeway-Everett #517 - Everett WA,7601 Evergreen,Everett,WA,98203 +-122.213438,47.952811,Claremont Village (QFC) - Everett WA (W),4919 Evergreen Way,Everett,WA,98203 +-122.257369,47.890568,"Hwy. 99 &Airport Rd. - Everett - Everett WA (D, W)",11802 Evergreen Way,Everett,WA,98204 +-122.240678,47.881034,Puget Park - Everett WA (W),520 128th St. SW,Everett,WA,98204 +-122.111441,47.998731,Lake Stevens - Everett WA (W),8915 Market Place,Everett,WA,98204 +-122.331959,47.799943,Highway 99 - Edmonds WA (W),21920 Highway 99,Edmonds,WA,98206 +-117.366552,47.694209,Safeway-Spokane #1799 - Spokane WA,3919 N. Market St.,Spokane,WA,98207 +-122.228171,47.921033,"Casino & Evergreen - Everett - Everett WA (D, W)",8413 Evergreen Way,Everett,WA,98208 +-122.224843,47.909192,"Greentree Plaza - Everett WA (D, W)",515 SE Everett Mall Way,Everett,WA,98208 +-122.213371,47.914044,Top Foods - Everett - Everett WA (W),1605 SE Everett Mall Wy,Everett,WA,98208 +-122.208706,47.878419,Murphys Corner/Frd Myr - Everett WA (W),12906 Bothell-Everett Hwy.,Everett,WA,98208 +-122.167007,47.878268,"132nd & Seattle Hill RD.-Snohmish - Everett WA (D, W)",4809 132nd St. SE,Everett,WA,98208 +-122.154204,47.87551,Safeway-Silver Firs #2645 - Everett WA,5802 134th Pl SE,Everett,WA,98208 +-122.612692,48.50797,Commercial & 17th/Anacortes - Anacortes WA (W),1720 Commercial Avenue,Anacortes,WA,98221 +-122.612655,48.510017,Food Pavilion - Anacortes - Anacortes WA,1519 Commercial Ave.,Anacortes,WA,98221 +-122.611798,48.512576,Safeway-Anacortes #593 - Anacortes WA,911 11th St.,Anacortes,WA,98221 +-122.181662,48.151656,Safeway - Arlington #534 - Arlington WA,3532 172nd Street,Arlington,WA,98223 +-122.180402,48.152779,"Smokey Point - Arlington WA (D, W)",3617 172nd Ave. NE,Arlington,WA,98223 +-122.127356,48.183823,Safeway-Arlington #1522 - Arlington WA,20500 Olympic Pl,Arlington,WA,98223 +-122.484934,48.767546,Haggens - Bellingham - Bellingham WA (W),2814 Meridian Street,Bellingham,WA,98225 +-122.471078,48.730972,"Sehome Vlg II - Bellingham WA (D, W)",222 36th Street,Bellingham,WA,98225 +-122.47855,48.749326,132 E. Holly-Bellingham - Bellingham WA (W),132 E. Holly St.,Bellingham,WA,98225 +-122.508913,48.789312,"Bakerview-Bellingham - Bellingham WA (D, W)",1031 W. Bakerview Rd.,Bellingham,WA,98226 +-122.48595,48.797278,Cordata Village - Bellingham WA (W),4285 Guide Meridian,Bellingham,WA,98226 +-122.458736,48.771433,Sunset Square - Bellingham WA (W),1225 East Sunset Drive,Bellingham,WA,98226 +-122.444071,48.768814,Barkley Village - Bellingham WA (W),2900 Woburn,Bellingham,WA,98226 +-122.443439,48.770239,Barkley VillageII - Bellingham WA (W),2915 New Market Street,Bellingham,WA,98226 +-122.464025,48.743486,Fred Meyer - Bellingham #25 - Bellingham WA,800 Lakeway Dr,Bellingham,WA,98226 +-122.621125,48.358112,Oak Harbor - Oak Harbor WA (W),31239 SR 20,Oak Harbor,WA,98227 +-122.338812,48.465474,Target Burlington T-696 - Burlington WA,199 Cascade Mall Dr,Burlington,WA,98233 +-122.33666,48.506124,I-5 & Cook - Burlington - Burlington WA (D),9596 Old Hwy. 99 North Rd.,Burlington,WA,98233 +-122.335422,48.451345,"Burlington Retail Center - Burlington WA (D, W)",1839 S. Burlington Blvd.,Burlington,WA,98233 +-122.333651,48.46463,Fred Meyer-Burlington #24 - Burlington WA,920 S. Burlington Blvd.,Burlington,WA,98233 +-122.580544,48.843542,Ferndale Haggens - Ferndale WA (W),1815 Main Street,Ferndale,WA,98248 +-122.0724,48.0237,Safeway-Lake Stevens #1803 - Lake Stevens WA,717 SR-9 NE,Lake Stevens,WA,98258 +-122.10592,48.000411,Frontier Village - Lake Stevens WA (W),511 State Road 9 N.E.,Lake Stevens,WA,98258 +-122.487299,48.934325,Safeway - Lynden #1930 - LYNDEN WA,8071 GUIDE MERIDIAN RD. #101,LYNDEN,WA,98264 +-122.484536,48.934221,"Lynden Retail - Lynden - Lynden WA (D, W)",8082 Guide Meridian Ave.,Lynden,WA,98264 +-122.176853,48.063482,Safeway-Marysville #1485 - Marysville WA,1258 State Ave.,Marysville,WA,98270 +-122.170014,48.085037,Fred Meyer-Marysville #209 - Marysville WA,9925 State Ave.,Marysville,WA,98270 +-122.180577,48.076234,Plaza 88 - Marysville WA (W),3701 88th St. NE,Marysville,WA,98270 +-122.195642,48.095125,Tulalip - Tulalip WA (W),10600 Quil Ceda Blvd.,Tulalip,WA,98271 +-122.193238,48.151294,"Lakewood Crossing - Marysville - Marysville WA (D, W)",17101 27th Avenue NE,Marysville,WA,98271 +-122.191313,48.149038,Target Arlington T-2192 - Marysville WA,16818 Twin Lakes Ave.,Marysville,WA,98271 +-122.181805,48.100414,"Marysville Gateway Center Marysvil - MARYSVILLE WA (D, W)",3725 116TH ST NE,MARYSVILLE,WA,98271 +-121.97938,47.861805,"Rt. 2 & 522/Monroe - Monroe WA (D, W)",18629 SR 2,Monroe,WA,98272 +-121.96764,47.859433,Safeway-Monroe #537 - Monroe WA,19651 SR-2,Monroe,WA,98272 +-121.964368,47.858183,Monroe Plaza - Monroe WA (W),19813 State Route 2,Monroe,WA,98272 +-121.977623,47.860961,Fred Meyer - Monroe #210 - Monroe WA,18805 State Route 2,Monroe,WA,98272 +-122.337582,48.435477,Skagit Valley - Mount Vernon WA (W),100-300 E. College Way,Mount Vernon,WA,98273 +-122.337415,48.436206,Safeway-Mt Vernon #1472 - Mount Vernon WA,315 E. College,Mount Vernon,WA,98273 +-122.307812,48.422041,Mt.Vernon/Haggens - Mount Vernon WA (W),2601 E. Division,Mount Vernon,WA,98273 +-122.293107,47.906274,"Harbour Pointe Retail Town Center - Mukilteo WA (D, W)",10100 Mukilteo Speedway,Mukilteo,WA,98275 +-122.28744,47.891767,QFC - Mukilteo #832 - Mukilteo WA,11700 Mukilteo Speedway,Mukilteo,WA,98275 +-122.281812,47.884302,"Plaza 525- Mukilteo - Mukilteo WA (D, W)",12502 Mukilteo Speedway,Mukilteo,WA,98275 +-122.645497,48.298463,Safeway - Oak Harbor #3518 - Oak Harbor WA,31565 State Route 20 #1,Oak Harbor,WA,98277 +-122.638034,48.311168,"SR 20 & 7th Ave- Oak Harbor - Oak Harbor WA (D, W)",32650 SR 20,Oak Harbor,WA,98277 +-122.1106,47.9454,Fred Meyer - Snohomish #681 - Snohomish WA,56th & Bickford Road,Snohomish,WA,98290 +-122.097679,47.925348,"Snohomish - Snohomish WA (D, W)",1101 Avenue D,Snohomish,WA,98290 +-122.12522,47.96289,30th St. & Bickford Ave- Snohomish - Snohomish WA (D),2623 Bickford Ave.,Snohomish,WA,98291 +-122.358727,48.240916,"Stanwood Town Center - Stanwood WA (D, W)",27008 92nd Ave. NW,Stanwood,WA,98292 +-122.357606,48.241442,QFC-Stanwood #879 - Stanwood WA,27008 92nd Ave. NW,Stanwood,WA,98292 +-122.328794,48.238073,Stanwood - Haggens - Stanwood WA (W),26603 72nd Ave. NW,Stanwood,WA,98292 +-122.123888,47.838676,"Clearview Plaza - Snohomish WA (D, W)",17408 State Route 9 SE,Snohomish,WA,98296 +-122.63032,47.620787,Safeway-Bremerton #1524 - Bremerton WA,1401 NE McWilliams Rd.,Bremerton,WA,98311 +-122.628361,47.626555,"1616 Bentley Dr. - Bremerton WA (D, W)",7034 St. Hwy. 303 NE,Bremerton,WA,98311 +-122.652732,47.570111,Safeway - Bremerton #1467 - Bremerton WA,900 North Callow,Bremerton,WA,98312 +-122.7143,47.7084,Bangor Submarine Base - Silverdale WA,2600 Ohio Street,Silverdale,WA,98315 +-122.646706,47.0951,"Dupont Station - Dupont WA (D, W)",1125 Center Drive,Dupont,WA,98327 +-122.622891,47.094927,Dupont - DuPont WA (W),1100 Station Drive,DuPont,WA,98327 +-122.607794,47.359604,Gig Harbor North - Gig Harbor WA (W),5151 Borgen Blvd.,Gig Harbor,WA,98332 +-122.605051,47.36094,Albertsons-Gig Harbor #406 - Gig Harbor WA,11330 51st Ave. NW,Gig Harbor,WA,98332 +-122.579748,47.304484,"Gig Harbor Drive Thru - Gig Harbor WA (D, W)",5001 Olympic Drive NW,Gig Harbor,WA,98335 +-122.579335,47.302042,Safeway - Gig Harbor #541 - Gig Harbor WA,4830 Point Fosdick Dr. NW,Gig Harbor,WA,98335 +-122.579331,47.302597,Gig Harbor - Gig Harbor WA (W),4904 Pt Fosdick Drive NW,Gig Harbor,WA,98335 +-122.62523,47.56372,Bremerton Conference Center - Bremerton WA (W),80 Washington Avenue,Bremerton,WA,98337 +-122.296859,47.054048,Safeway-Graham #547 - Graham WA,10105 224th St. E.,Graham,WA,98338 +-122.757947,48.032426,QFC - Port Hadlock #870 - Port Hadlock WA,1890 Irondale Road,Port Hadlock,WA,98339 +-122.521649,47.806782,Albertsons-Kingston #486 - Kingston WA,8196 SR 104 & Hansville Road,Kingston,WA,98346 +-122.295856,47.250951,Albertsons-Milton #472 - Milton WA,2800 Milton Way,Milton,WA,98354 +-122.295192,47.248759,Safeway - Milton #3545 - Milton WA,900 E. Meridian Suite 12,Milton,WA,98354 +-122.209146,47.099366,Safeway-Orting #1844 - Orting WA,215 Whitesell St. NW,Orting,WA,98360 +-123.435,48.1163,Safeway-Port Angeles #1492 - Port Angeles WA,110 E. 3rd St.,Port Angeles,WA,98362 +-123.38,48.1057,Safeway - Port Angeles #1922 - Port Angeles WA,2709 E. HIGHWAY 101,Port Angeles,WA,98362 +-122.629411,47.503686,Fred Meyer-Port Orchard #655 - Port Orchard WA,1900 SE Sedgwick Rd.,Port Orchard,WA,98366 +-122.627513,47.518534,"Lund & Cathie / Pt.Orchard - Port Orchard WA (D, W)",1960 SE Lund St.,Port Orchard,WA,98366 +-122.612378,47.545972,Albertsons-Port Orchard #475 - Port Orchard WA,1434 Olney Ave. S. E.,Port Orchard,WA,98366 +-122.653776,47.497336,Albertsons-Port Orchard #419 - Port Orchard WA,5520 Sidney Road,Port Orchard,WA,98367 +-122.783042,48.107084,Safeway - Port Townsend #538 - Port Townsend WA,442 W. Sims Way,Port Townsend,WA,98368 +-122.64066,47.741409,Poulsbo - Poulsbo WA (W),19673 7th Ave. NE,Poulsbo,WA,98370 +-122.6362,47.7454,College Market Place-Poulsbo - Poulsbo WA (W),21505 Market Place NW,Poulsbo,WA,98370 +-122.297772,47.199747,"303 River Rd. - Puyallup - Puyallup WA (D, W)",303 River Rd.,Puyallup,WA,98371 +-122.296027,47.200961,Fred Meyer - Puyallup #265 - Puyallup WA,1100 North Meridian,Puyallup,WA,98371 +-122.291596,47.136602,"132nd & Meridian- Puyallup - Puyallup WA (D, W)",10219 132nd Street East,Puyallup,WA,98372 +-122.289094,47.177906,Good Samaritan Hospital Lobby - Puyallup WA,407 14th Ave. SE,Puyallup,WA,98372 +-122.358459,47.156606,Albertsons-Summit #468 - Puyallup WA,11012 Canyon Road E.,Puyallup,WA,98373 +-122.356718,47.150438,"116th & Canyon Rd. - Puyallup WA (D, W)",11601 Canyon Rd. East,Puyallup,WA,98373 +-122.294495,47.135301,Safeway-Puyallup #2640 - Puyallup WA,13308 Meridian E.,Puyallup,WA,98373 +-122.294249,47.099615,Fred Meyer-Puyallup #424 - Puyallup WA,17404 Meridian E.,Puyallup,WA,98373 +-122.292457,47.156357,"37th & Meridian/Puyallup - Puyallup WA (D, W)",3705 South Meridian,Puyallup,WA,98373 +-122.291675,47.148855,Puyallup - Puyallup WA (W),4423 S. Meridian Street,Puyallup,WA,98373 +-122.291496,47.113283,Target Puyallup T-2136 - Puyallup WA,10302 156th st E.,Puyallup,WA,98374 +-122.356341,47.09632,Canyon Crossing- Frederickson - Frederickson WA (D),5602 176th St. East,Frederickson,WA,98375 +-122.356102,47.096324,Safeway #3228 - Puyallup - Puyallup WA,5616 176th E.,Puyallup,WA,98375 +-122.296369,47.09746,176 & Meridian - Puyallup WA (W),17520 Meridian East #A,Puyallup,WA,98375 +-123.129279,48.078311,"Sequim Village Market Place - Sequim WA (D, W)",1095 W. Washington Street,Sequim,WA,98382 +-123.117002,48.079732,Safeway-Sequim #1448 - Sequim WA,680F W. Washington,Sequim,WA,98382 +-122.689635,47.650567,Safeway-Silverdale #1680 - Silverdale WA,2890 NW Bucklin Hill Rd.,Silverdale,WA,98383 +-122.687098,47.657499,Silverdale - Silverdale WA (W),10516 Silverdale Way N.W.,Silverdale,WA,98383 +-122.681521,47.651958,Silverdale II - Silverdale WA (W),2238 Bucklin Hill Rd. NW,Silverdale,WA,98383 +-122.285004,47.206218,Fred Meyer-Sumner #665 - Sumner WA,1201 E. Valley Ave.,Sumner,WA,98390 +-122.229017,47.202703,Sumner - Sumner WA (W),15005 Main Street East,Sumner,WA,98390 +-122.172282,47.172083,Target Bonney Lake T-1957 - Bonney Lake WA,9400 192nd Ave. E.,Bonney Lake,WA,98390 +-122.145159,47.166505,Safeway-Bonney Lake #544 - Bonney Lake WA,21301 Hwy. 410,Bonney Lake,WA,98390 +-122.170084,47.170178,"Market at Lake Tapps - Bonney Lake WA (D, W)",19461 Highway 410 East,Bonney Lake,WA,98391 +-122.147277,47.167817,Hwy. 410 & 214th - Bonney Lake - Bonney Lake WA (D),21102 Highway 410,Bonney Lake,WA,98391 +-122.437353,47.24551,Univ. of Wash / Tacoma - Tacoma WA (W),1748 Pacific Ave.,Tacoma,WA,98402 +-122.464045,47.274663,N. 30th & McCarver/Old Town - Tacoma WA (W),2112 N. 30th Street,Tacoma,WA,98403 +-122.463353,47.255867,"6th & Sprague - Tacoma - Tacoma WA (D, W)",2008 6th Avenue,Tacoma,WA,98403 +-122.407005,47.190684,Safeway - Tacoma #1436 - Tacoma WA,1624 72nd St. E.,Tacoma,WA,98404 +-122.406508,47.192101,"72nd & Portland Avenue - Tacoma WA (D, W)",1621 East 72nd Street,Tacoma,WA,98404 +-122.497455,47.243804,Fred Meyer-Tacoma #390 - Tacoma WA,4505 S. 19th St.,Tacoma,WA,98405 +-122.478414,47.235865,Top Foods Tacoma - Tacoma WA (W),3130 South 23rd,Tacoma,WA,98405 +-122.473289,47.254926,Sixth & Pine / Tacoma - Tacoma WA (W),601 Pine St.,Tacoma,WA,98405 +-122.520092,47.25619,Safeway - Tacoma #1246 - Tacoma WA,6201 6th Ave.,Tacoma,WA,98406 +-122.515885,47.269453,Westgate - Tacoma WA (W),2405 N. Pearl St.,Tacoma,WA,98407 +-122.515861,47.272398,Safeway - Tacoma #1978 - Tacoma WA,2637 North Pearl Street,Tacoma,WA,98407 +-122.489317,47.27135,26th and Proctor - Tacoma WA (W),2602 North Proctor,Tacoma,WA,98407 +-122.45933,47.192179,"Tacoma Place - Tacoma WA (D, W)",1723 South 72nd Street,Tacoma,WA,98408 +-122.435444,47.189053,Fred Meyer - Tacoma Pacific #385 - Tacoma WA,7250 Pacific Avenue,Tacoma,WA,98408 +-122.501884,47.234003,"Center St. & Mullen-Tacoma - Tacoma WA (D, W)",4802 Center Street,Tacoma,WA,98409 +-122.483074,47.206205,S. 56th & Tacoma Way - Tacoma - Tacoma WA (W),3514 South 56th Street,Tacoma,WA,98409 +-122.470035,47.223165,Lincoln Plaza - Tacoma WA (W),2505 S. 38th Street,Tacoma,WA,98409 +-122.4678,47.2205,Tacoma Mall - Tacoma WA (W),4502 South Steel Street,Tacoma,WA,98409 +-122.511456,47.16614,100th & Bridgeport Way - Tacoma WA (W),5700 100th Street,Tacoma,WA,98411 +-122.45182,47.222492,Safeway-Tacoma #1437 - Tacoma WA,1302 S. 38th St.,Tacoma,WA,98418 +-122.380337,47.293807,QFC - North Shore #831 - Tacoma WA,4101 49th Ave. N.E.,Tacoma,WA,98422 +-122.438137,47.25318,Key Bank Plaza - Tacoma WA (W),1101 Pacific Avenue South,Tacoma,WA,98424 +-122.36446,47.243064,"Pacific Highway & Willow St-Fife - Fife WA (D, W)",4756 Pacific Highway East,Fife,WA,98424 +-122.5866,47.0952,Welcome Center- Waller Hall - Fort Lewis WA,Building 2140-Waller Hall,Fort Lewis,WA,98433 +-122.49,47.129444,McChord AFB BX - McChord AFB WA,Bldg 504,McChord AFB,WA,98438 +-122.434233,47.113486,Spanaway - Tacoma WA (W),15803 Pacific Ave. S.,Tacoma,WA,98444 +-122.433948,47.140489,"Parkland-Tacoma - Tacoma WA (D, W)",12821 Pacific Ave. S.,Tacoma,WA,98444 +-122.432993,47.11295,Safeway - Spanaway #551 - Spanaway WA,15805 Pacific Ave. South,Spanaway,WA,98444 +-122.432815,47.117723,Albertsons-Spanaway #493 - Tacoma WA,104 Military Rd. S.,Tacoma,WA,98444 +-122.52637,47.243589,19th & Mildred - Tacoma WA (W),1816 S. Mildred,Tacoma,WA,98465 +-122.53924,47.222581,Bridgeport - Tacoma WA (W),3830 Bridgeport Way,Tacoma,WA,98466 +-122.538609,47.221356,Safeway-Tacoma #486 - Tacoma WA,3842 Bridgeport Way W.,Tacoma,WA,98466 +-122.527298,47.235762,"27th & 67th - Tacoma WA (D, W)",6720 Regents Boulevard W.,Tacoma,WA,98466 +-122.529139,47.200471,Fred Meyer-University Place - University Place WA,6305 Bridgeport Way W.,University Place,WA,98467 +-122.518629,47.161696,Lakewood Relocation - Lakewood WA (D),6040 Main Street SW,Lakewood,WA,98498 +-122.508523,47.180247,83rd Ave. & Steilacoom Blvd. Lakewoo - Lakewood WA,8223 Steilacoom Blvd. Lakewood,Lakewood,WA,98498 +-122.52062,47.164293,Safeway-Lakewood #1645 - Lakewood WA,10223 Gravelly Lake Dr. SW,Lakewood,WA,98499 +-122.484356,47.163368,"Highway 512 & South Tacoma Way - Lakewood WA (D, W)",10314 S. Tacoma Way,Lakewood,WA,98499 +-122.915284,46.998251,Fred Meyer -Tumwater #659 - Tumwater WA,555 Trosper Rd. SW,Tumwater,WA,98501 +-122.908064,46.999357,"Capitol Blvd. & Trosper St. Tumwat - Tumwater WA (D, W)",5300 Capitol Blvd. SE,Tumwater,WA,98501 +-122.90128,47.04379,Downtown Olympia - Olympia WA (W),530 Capital Way South,Olympia,WA,98501 +-122.8984,47.018673,Safeway-Tumwater #1503 - Tumwater WA,520 Cleveland,Tumwater,WA,98501 +-122.845214,47.043135,Albertsons-Olympia #415 - Olympia WA,3520 Pacific Ave. SE,Olympia,WA,98501 +-122.94255,47.047906,"Cooper Point Village- Olympia - Olympia WA (D, W)",315 Cooper Point Road NW,Olympia,WA,98502 +-122.94229,47.046053,Safeway-Olympia #1464 - Olympia WA,3215 Harrison Ave.,Olympia,WA,98502 +-122.941218,47.056769,Top Foods - Olympia - Olympia WA (W),1313 Cooper Point Road,Olympia,WA,98502 +-122.934265,47.042493,Capital Mall - Olympia WA (W),625 Black Lake Boulevard,Olympia,WA,98502 +-122.833556,47.041145,Lacey - Lacey WA (W),700 Sleater-Kinney Road SE,Lacey,WA,98503 +-122.831186,47.040402,Fred Meyer - Lacey #186 - Lacey WA,700 Sleater-Kinney Road SE,Lacey,WA,98503 +-122.824336,46.999036,College St. & Yelm Hwy. (Relo)- Lacey - LACEY WA (D),4700 AVERY LANE SE,LACEY,WA,98503 +-122.822163,46.997581,Safeway-Lacey #543 - Lacey WA,4700 Yelm Rd. SE,Lacey,WA,98503 +-122.874974,47.046459,Ralphs Thriftway-Olympia #664 - Olympia WA,1908 East 4th Ave.,Olympia,WA,98506 +-122.91466,46.999905,Tumwater - Tumwater WA (W),5312 Little Rock Road SW,Tumwater,WA,98512 +-122.831345,47.049352,Safeway-Olympia #1952 - Olympia WA,4230 Martin Way E.,Olympia,WA,98516 +-122.830415,47.048495,Martin Way Station - Olympia WA (W),4250 Martin Way,Olympia,WA,98516 +-122.809282,47.051146,Top Foods - Lacey - Lacey WA (W),5600 Martin Way,Lacey,WA,98516 +-122.764703,47.059767,Hawk's Prairie - Lacey WA (W),1401 Marvin Rd. NE,Lacey,WA,98516 +-122.764685,47.059366,Safeway - Olympia #1173 - Olympia WA,1243 Marvin Rd. NE,Olympia,WA,98516 +-123.818643,46.971863,Safeway - Aberdeen #1546 - Aberdeen WA,221 W. Heron St.,Aberdeen,WA,98520 +-123.8021,46.977412,"1202 Wishkah St- Aberdeen - Aberdeen WA (D, W)",1202 E. Wishkah St.,Aberdeen,WA,98520 +-122.980735,46.727935,Safeway - Centralia #1495 - Centralia WA,1129 Harrison,Centralia,WA,98521 +-122.8788,47.4369,"Belfair Valley Plaza-Belfair WA - Belfair WA (D, W)",23965 NE SR3,Belfair,WA,98528 +-122.827236,47.452387,QFC - Belfair #101 - Belfair WA,NE 201 State Route 300,Belfair,WA,98528 +-123.009896,46.789152,Great Wolf Lodge Grand Mound WA - Centralia WA,20500 Old Hwy. 99 SW,Centralia,WA,98531 +-122.981297,46.72859,Centralia Mrkt Sq. - Centralia WA (W),1161 Harrison Ave.,Centralia,WA,98531 +-122.97821,46.674816,"Chehalis - Chehalis WA (D, W)",1531 NW Louisiana Ave.,Chehalis,WA,98532 +-122.953825,46.654895,Safeway - Chehalis #3525 - Chehalis WA,1100 S. Market Blvd.,Chehalis,WA,98532 +-123.106003,47.214201,Safeway - Shelton #585 - Shelton WA,600 Franklin Street,Shelton,WA,98584 +-122.59508,46.935783,"Hwy. 507 & Creek St. SE- Yelm - Yelm WA (D, W)",1406 Yelm Ave. E.,Yelm,WA,98597 +-122.594048,46.934228,Safeway-Yelm #1619 - Yelm WA,1109 Yelm Ave. E.,Yelm,WA,98597 +-122.559671,45.781403,Albertsons-Battle Ground #592 - Battle Ground WA,2108 W. Main St.,Battle Ground,WA,98604 +-122.548808,45.781353,"Battleground - Battle Ground WA (D, W)",11 N.W. 12th Avenue,Battle Ground,WA,98604 +-122.546734,45.781584,Safeway - Battle Ground #4313 - Battle Ground WA,904 West Main Street,Battle Ground,WA,98604 +-122.541091,45.771598,Fred Meyer-Battleground - Battle Ground WA,401 SW 12th Street,Battle Ground,WA,98604 +-122.476735,45.59632,Riverstone Marketplace - Camas WA (W),19215 SE 34th St.,Camas,WA,98607 +-122.902074,46.141529,Safeway-Kelso #2637 - Kelso WA,411 Three Rivers Drive,Kelso,WA,98626 +-122.964327,46.148668,Fred Meyer - Longview #185 - Longview WA,3184 Ocean Beach Hwy.,Longview,WA,98632 +-122.960564,46.148388,Safeway-Longview #1078 - Longview WA,2930 Ocean Beach Hwy.,Longview,WA,98632 +-122.949709,46.116774,Oregon Way & Industrial- Longview - Longview WA (D),94 Oregon Way,Longview,WA,98632 +-122.938506,46.136608,Safeway-Longview #91 - Longview WA,1227 15th Ave.,Longview,WA,98632 +-122.92838,46.146328,Longview/Thriftway - Longview WA (W),1015 Ocean Beach Hwy.,Longview,WA,98632 +-122.926316,46.146382,"820 Ocean Beach Hwy-Longview WA - Longview WA (D, W)",808 Ocean Beach Hwy.,Longview,WA,98632 +-122.603512,45.667922,Safeway - Vancouver #1611 - Vancouver WA,6711 NE 63rd St.,Vancouver,WA,98661 +-122.589907,45.655497,Vancouver Park Place- Vancouver - Vancouver WA (W),8101 NE Parkway Drive,Vancouver,WA,98662 +-122.585678,45.656319,Vancouver Mall - Vancouver WA (W),8700 NE Vancouver Mall Drive,Vancouver,WA,98662 +-122.557448,45.665722,"112th & 4th Plain- Vancouver - Vancouver WA (D, W)",11211 NE 4th Plain Blvd.,Vancouver,WA,98662 +-122.551351,45.677196,Fred Meyer - Orchards #236 - Vancouver WA,7411 NE 117th Ave.,Vancouver,WA,98662 +-122.601255,45.685478," 88th & Andresen Rd. - Vancouver - Vancouver WA (D, W)",8720 NE Centerpointe Drive,Vancouver,WA,98665 +-122.376098,45.581452,"2nd Street & C Street- Washougal - Washougal WA (D, W)",291 C St.,Washougal,WA,98671 +-122.335906,45.578462,Safeway - Washougal #1687 - Washougal WA,3307 Evergreen Way,Washougal,WA,98671 +-122.748336,45.913349,"1999 Pacific Ave- Woodland WA - Woodland WA (D, W)",1999 Pacific Ave.,Woodland,WA,98674 +-122.748319,45.912234,Safeway - Woodland #1762 - Woodland WA,1725 Pacific Ave.,Woodland,WA,98674 +-122.535672,45.684854,Albertsons-Padden Pkwy. #511 - Vancouver WA,8300 NE 137th Ave.,Vancouver,WA,98682 +-122.507272,45.670928,Safeway-Vancouver #1704 - Vancouver WA,6700 NE 162nd Ave. Suite 500,Vancouver,WA,98682 +-122.54806,45.619942,"12101 Mill Plain Blvd- Vancouver - Vancouver WA (D, W)",12101 SE Mill Plain Blvd.,Vancouver,WA,98683 +-122.504855,45.615908,Mill Plain Town Center - Vancouver WA (W),16320 SE Mill Plain Blvd.,Vancouver,WA,98683 +-122.47683,45.617219,Columbia Tech Center II- Vancouver - Vancouver WA (W),530 SE 192nd Avenue Bldg #1,Vancouver,WA,98683 +-122.476644,45.594751,QFC-Vancouver #212 (Riverstone) - Vancouver WA,3505 SE 192nd Ave.,Vancouver,WA,98683 +-122.501325,45.605519,Fred Meyer - Fisher's Landing #93 - Vancouver WA,16600 SE McGillivray Blvd.,Vancouver,WA,98683 +-122.554148,45.621287,"Commerce Center - Vancouver WA (D, W)",11502 SE Mill Plain Blvd.,Vancouver,WA,98684 +-122.531507,45.616915,Safeway-Vancouver #1519 - Vancouver WA,13719 SE Millplain Blvd.,Vancouver,WA,98684 +-122.50622,45.636627,"162nd & 18th - Vancouver WA (D, W)",1900A NE 162nd Ave.,Vancouver,WA,98684 +-122.651814,45.724044,Salmon Creek II - Vancouver WA (W),14300 NE 20th Avenue,Vancouver,WA,98686 +-122.651348,45.714724,Safeway-Salmon Creek #1842 - Salmon Creek WA,12909 NE 99,Salmon Creek,WA,98686 +-122.355787,47.152017,Safeway - Puyallup #1798 - PUYALLUP WA,11501 Canyon Rd. East,PUYALLUP,WA,98737 +-120.332606,47.4506,"North Wenatchee Drive Thru - Wenatchee WA (D, W)",1925 N. Wenatchee Avenue,Wenatchee,WA,98801 +-120.324893,47.437397,North Wenatchee - Wenatchee WA (W),1134 N. Miller Street,Wenatchee,WA,98801 +-120.324616,47.429842,Safeway-Wenatchee #1449 - Wenatchee WA,501 N. Miller St.,Wenatchee,WA,98801 +-120.281672,47.405946,Safeway - E. Wenatchee #3521 - E. Wenatchee WA,510 Grant Road,E Wenatchee,WA,98802 +-120.290279,47.410663,East Wenatchee - East Wenatchee WA (W),500 A Valley Mall Parkway,East Wenatchee,WA,98802 +-120.021255,47.841873,"216 W. Manson Hwy- Chelan WA - Chelan WA (D, W)",216 W. Manson Hwy.,Chelan,WA,98816 +-119.54047,47.3341,Safeway - Ephrata #1544 - Ephrata WA,1150 Basin St. NW,Ephrata,WA,98823 +-120.663738,47.594967,703 Hwy. 2 - Leavenworth WA (W),703 Highway 2,Leavenworth,WA,98826 +-120.6393,47.5999,Safeway - Leavenworth #1589 - Leavenworth WA,116 RIVERBEND DR.,Leavenworth,WA,98826 +-119.278304,47.142086,"Penn Plaza- Moses Lake - Moses Lake WA (D, W)",1025 N. Stratford Rd.,Moses Lake,WA,98837 +-119.268565,47.130301,Safeway-Moses Lake #3252 - Moses Lake WA,601 S. Pioneer Way,Moses Lake,WA,98837 +-119.257698,47.101796,"Moses Lake - Moses Lake WA (D, W)",1790 Kittleson Road NE,Moses Lake,WA,98837 +-119.508395,48.417951,Safeway-Omak #1194 - Omak WA,607 Omache Rd.,Omak,WA,98841 +-120.539235,46.584044,Safeway - Yakima #1235 - Yakima WA,2204-A W. Nob Hill Blvd.,Yakima,WA,98902 +-120.516878,46.602632,Safeway - Yakima #462 - Yakima WA,205 N. 5th Ave.,Yakima,WA,98902 +-120.490228,46.578373,Safeway-Yakima #1660 - Yakima WA,905 E. Mead Ave.,Yakima,WA,98902 +-120.483588,46.566743,"Valley Mall-Yakima - Yakima WA (D, W)",2409 South First,Yakima,WA,98903 +-120.604376,46.593472,"72nd & Tieton - Yakima WA (D, W)",420 South 72nd Ave.,Yakima,WA,98908 +-120.584709,46.600004,Safeway-Yakima #502 - Yakima WA,5702 Summitview Ave.,Yakima,WA,98908 +-120.58389,46.600026,Chalet Mall - Yakima WA (W),5621 Summitview Ave.,Yakima,WA,98908 +-120.561878,46.619763,North 40th & River Rd. - Yakima - Yakima WA (W),1208 North 40th,Yakima,WA,98908 +-120.550163,46.99152,Fred Meyer - Ellensburg #652 - Ellensburg WA,201 South Water,Ellensburg,WA,98926 +-120.539252,46.971601,"1700 Canyon Rd. - Ellensburg WA (D, W)",1614 Canyon Rd.,Ellensburg,WA,98926 +-119.893078,46.255464,Safeway-Grandview #1593 - Grandview WA,610 E. Wine Country Rd.,Grandview,WA,98930 +-120.535295,47.002019,Ellensburg - Ellensburg WA (W),908 E. 10th Street,Ellensburg,WA,98936 +-120.013342,46.333635,Safeway-Sunnyside #563 - Sunnyside WA,613 6th St.,Sunnyside,WA,98944 +-120.320223,46.375075,Safeway - Toppenish #584 - Toppenish WA,711 First Ave.,Toppenish,WA,98948 +-117.566962,47.507306,"Cheney Plaza- Cheney - Cheney WA (D, W)",2816 First Street,Cheney,WA,99004 +-117.566544,47.506234,Safeway - Cheney #1740 - Cheney WA,2710 First St.,Cheney,WA,99004 +-117.6479,47.638752,Fairchild AFB - Fairchild AFB WA,101 W. Spaatz Rd.,Fairchild AFB,WA,99011 +-117.105342,47.669145,"Liberty Lake - Liberty Lake WA (D, W)",1342 North Liberty Lake Road,Liberty Lake,WA,99019 +-117.105086,47.668536,Safeway #1741 - Liberty Lake - Liberty Lake WA,1233 N. LIBERTY LAKE RD.,Liberty Lake,WA,99019 +-117.195719,47.66189,"506 N. Sullivan - Veradale WA (D, W)",506 N. Sullivan,Veradale,WA,99037 +-117.193805,47.65843,Fred Meyer-Veradale #351 - Veradale WA,15609 E. Sprague Ave.,Veradale,WA,99037 +-117.90587,48.547482,Safeway - Colville #385 - Colville WA,391 North Main St.,Colville,WA,99114 +-117.040395,48.18396,Safeway #1159 - Newport - NEWPORT WA,121 W. Walnut,NEWPORT,WA,99156 +-117.17668,46.714653,Safeway-Pullman #2639 - Pullman WA,430 SE Bishop Blvd.,Pullman,WA,99163 +-117.171842,46.739388,Pullman II - Pullman WA (W),421 NE Stadium Way,Pullman,WA,99163 +-118.368185,47.118116,"Galbreath Way & Weber-Ritzville - Ritzville WA (D, W)",103 W. Galbreath Way,Ritzville,WA,99169 +-117.423211,47.658915,Main & Post - Spokane WA (W),721 W. Main,Spokane,WA,99201 +-117.411649,47.654791,"2nd & Division - Spokane WA (D, W)",172 S. Divison Street Suite A,Spokane,WA,99201 +-117.408268,47.743121,"Heritage Village - Spokane WA (D, W)",9335 N. Newport Highway,Spokane,WA,99201 +-117.397023,47.669196,1217 N. Hamilton - Spokane WA (W),1217 N. Hamilton,Spokane,WA,99202 +-117.395379,47.672271,Safeway-Spokane #3255 - Spokane WA,933 E. Mission Ave.,Spokane,WA,99202 +-117.408831,47.643569,13TH and Grand - Spokane WA (W),1307 S. Grand Avenue,Spokane,WA,99203 +-117.401952,47.620426,"37th & Grand - Spokane - Spokane WA (D, W)",3719 S. Grand Blvd.,Spokane,WA,99203 +-117.375183,47.628227,Safeway-Spokane #1242 - Spokane WA,2509 E. 29th Ave.,Spokane,WA,99203 +-117.446325,47.700678,"Shadle Park Center - Spokane WA (D, W)",2401 West Wellesley,Spokane,WA,99205 +-117.436455,47.715507,Five Mile-Spokane Relo - Spokane WA (D),1704 W. Francis,Spokane,WA,99205 +-117.435814,47.67928,Safeway - Spokane #342 - Spokane WA,W 1616 NW Blvd.,Spokane,WA,99205 +-117.41162,47.682933,"Division & Buckeye - Spokane WA (D, W)",2703 N. Division Street,Spokane,WA,99205 +-117.315519,47.656616,"Sprague & Thierman- Spokane Valley - Spokane Valley WA (D, W)",6630 E. Sprague Ave.,Spokane Valley,WA,99205 +-117.282238,47.664574,"Broadway & Argonne - Spokane Valley WA (D, W)",9119 E. Broadway,Spokane Valley,WA,99206 +-117.412874,47.701707,Division & Wellesley - Spokane - Spokane WA (D),4727 N. Division St.,Spokane,WA,99207 +-117.365033,47.69517,"Market & Garland-Spokane WA - Spokane WA (D, W)",3907 North Market Street,Spokane,WA,99207 +-117.485714,47.740567,"Sundance Plaza - Spokane WA (D, W)",9031 N. Indian Trail Rd.,Spokane,WA,99208 +-117.424555,47.715835,Safeway - Spokane #3248 - Spokane WA,902 W. Francis Ave.,Spokane,WA,99208 +-117.284819,47.670443,Safeway - Spokane #1273 - SPOKANE WA,NORTH 1441 ARGONNE RD.,SPOKANE,WA,99212 +-117.28438,47.681558,"Trent & Argonne - Spokane WA (D, W)",8901 E. Trent,Spokane,WA,99212 +-117.23853,47.656721,"Sprague & Pine - Spokane WA (D, W)",12328 E. Sprague Ave.,Spokane,WA,99216 +-117.222862,47.627828,Albertsons-Spokane #258 - Spokane WA,13606 E. 32nd Avenue,Spokane,WA,99216 +-117.216746,47.655437,Safeway - Spokane #1473 - Spokane WA,EAST 14020 SPRAGUE,Spokane,WA,99216 +-117.40486,47.771343,Wandermere-Relocation - Spokane WA (D),12519 N. Division St.,Spokane,WA,99218 +-117.400612,47.746539,Safeway - Spokane #1299 - Spokane WA,10100 N. Newport Hwy.,Spokane,WA,99218 +-117.396058,47.751501,"Hawthorne & Nevada - Spokane WA (D, W)",915 East Hawthorne Road,Spokane,WA,99218 +-117.361696,47.652644,Fred Meyer - Spokane #657 - Spokane WA,400 South Thor St.,Spokane,WA,99218 +-117.374957,47.628227,South Hill - Spokane WA (W),2525 E. 29th Avenue,Spokane,WA,99223 +-117.366369,47.602582,"57th & Regal - Spokane - Spokane WA (D, W)",3007 East 57th,Spokane,WA,99223 +-117.550191,47.621164,GEG C 21 - Spokane WA (A),9000 WestAirport Drive,Spokane,WA,99224 +-117.550191,47.621164,GEG Rotunda A/B - Spokane WA (A),9000 WestAirport Drive,Spokane,WA,99224 +-117.4878,47.6318,"Crosspointe Plaza-Spokane - Spokane WA (D, W)",10510 W. SR2 STE 8,Spokane,WA,99224 +-119.185987,46.274048,"Tuscany Plaza- Pasco - Pasco WA (D, W)",5204 Road 68,Pasco,WA,99301 +-119.224077,46.224652,Columbia Center Mall Relo-Kennewick - Kennewick WA,1321 N. Columbia Center Blvd.,Kennewick,WA,99336 +-119.210964,46.226728,"Canal Dr. - Kennewick - Kennewick WA (D, W)",6607 West Canal Drive,Kennewick,WA,99336 +-119.173995,46.184558,"Canyon Lakes Center-Kennewick - Kennewick WA (D, W)",4008 West 27th Ave.,Kennewick,WA,99336 +-119.159051,46.212231,"Highlands Center/Kennewick - Kennewick WA (D, W)",2801 W. Clearwater,Kennewick,WA,99336 +-119.784874,46.220135,Merlo Dr. & Wine Country- Prosser - Prosser WA (D),10 Merlot Drive,Prosser,WA,99350 +-119.31134,46.25932,Queensgate & Duportail - W.Richland - W. Richland WA (D),2725 Queensgate Dr,W. Richland,WA,99352 +-119.311072,46.25935,Target Richland T-2314 - Richland WA,2941 Queensgate Dr,Richland,WA,99352 +-119.284895,46.262358,Richland Fred Meyer - Richland WA (W),101-B Wellsian Way,Richland,WA,99352 +-119.282445,46.227504,"Gage & Keene Rd. - Richland - Richland WA (D, W)",698 Gage Blvd.,Richland,WA,99352 +-119.274376,46.298668,Safeway-Richland #333 - Richland WA,1803 George Washington Way,Richland,WA,99352 +-119.274367,46.297926,Washington Plaza/Richland - Richland WA (W),1759 George Washington Way,Richland,WA,99352 +-119.266919,46.227157,Albertsons - Richland #252 - Richland WA,140 W. Gage,Richland,WA,99352 +-119.26484,46.263763,"Winco Shopping Center - Richland WA (D, W)",59 Columbia Point Drive,Richland,WA,99352 +-118.346426,46.050917,"1410 Plaza Way - Walla Walla - Walla Walla WA (D, W)",1410 Plaza Way,Walla Walla,WA,99362 +-118.346078,46.048498,Safeway - Walla Walla #1160 - Walla Walla WA,1600 Plaza Way,Walla Walla,WA,99362 +-118.338423,46.067087,28 E. Main/WallaWalla - Walla Walla WA (W),28 E. Main,Walla Walla,WA,99362 +-118.337446,46.069526,Safeway #307 - Walla Walla - WALLA WALLA WA,215 E. ROSE ST,WALLA WALLA,WA,99362 +-118.304577,46.076659,Albertsons-Walla Walla #225 - Walla Walla WA,450 N. Wilbur Ave.,Walla Walla,WA,99362 +-117.041669,46.420013,"Bridge Street Plaza- Clarkston - Clarkston WA (D, W)",303 Bridge Street,Clarkston,WA,99403 +-117.042906,46.419996,Albertsons-Clarkston #241 - Clarkston WA,400 Bridge St.,Clarkston,WA,99403 +-149.894236,61.217853,601 West Street - Anchorage AK (W),601 West 5th Avenue,Anchorage,AK,99501 +-149.97307,61.176563,ANC Anchorage S. Dom Term Conc C - Anchorage AK (A),5000 W. IntlAirport Rd.,Anchorage,AK,99502 +-149.9583,61.1554,ANC Main Terminal Ticketing - Anchorage AK (A),HMSHost 500 West InternationalAirport,Anchorage,AK,99502 +-149.915447,61.195285,Carrs-Anchorage #1805 - Anchorage AK,1650 W. Northern Lights Blvd.,Anchorage,AK,99503 +-149.883887,61.180299,Tudor Rd. and C Street - Anchorage AK (D),110 W. Tudor Rd.,Anchorage,AK,99503 +-149.77647,61.208659,Safeway-Anchorage #1809 - Anchorage AK,5600 Debarr Rd.,Anchorage,AK,99504 +-149.735762,61.196257,Safeway-Anchorage #1817 - Anchorage AK,7731 E. Northern Lights Blvd.,Anchorage,AK,99504 +-149.6772,61.2621,Fort Richardson Frontier Theater - Fort Richardson AK,Frontier Theater Building 2,Fort Richardson,AK,99505 +-149.7534,61.2272,Elmendorf AFB - Anchorage AK,Bldg 5800 Westover Avenue,Anchorage,AK,99506 +-149.741452,61.23118,Target Anchorage NE T-2371 - Anchorage AK,1200 N. Muldoon Rd.,Anchorage,AK,99506 +-149.844686,61.142176,Safeway-Anchorage #2628 - Anchorage AK,1725 Abbott Rd.,Anchorage,AK,99507 +-149.83964,61.137442,Fred Meyer - Anchorage #656 - Anchorage AK,2300 Abbott Road,Anchorage,AK,99507 +-149.83548,61.181359,Tudor & Lake Otis- Anchorage - Anchorage AK (D),2421 East Tudor Road,Anchorage,AK,99507 +-149.822907,61.215507,Safeway - Anchorage #520 - Anchorage AK,3101 Penland Pkwy.,Anchorage,AK,99508 +-149.821917,61.189723,Nana @ University of Alaska - Anchorage AK,3211 Providence Drive,Anchorage,AK,99508 +-149.865019,61.194346,Fred Meyer - Anchorage #11 - Anchorage AK,1000 E. Northern Lights Blvd.,Anchorage,AK,99508 +-149.882215,61.12848,Target Anchorage South T-2372 - Anchorage AK,150 W. 100th Ave. Suite A,Anchorage,AK,99515 +-149.86379,61.14478,"Old Seward & Diamond - Anchorage AK (D, W)",1005 E. Dimond Blvd.,Anchorage,AK,99515 +-149.95582,61.136451,Safeway-Anchorage #1812 - Anchorage AK,4000 W. Dimond Blvd.,Anchorage,AK,99515 +-149.9195,61.136322,Fred Meyer - Anchorage (Dimond) #71 - Anchorage AK,2000 W. Dimond Blvd.,Anchorage,AK,99515 +-149.573017,61.32447,Safeway-Eagle River #1807 - Eagle River AK,11409 Business Blvd.,Eagle River,AK,99577 +-149.57037,61.32549,Coronado Rd- Eagle River - Eagle River AK (D),16707 Coronado Road,Eagle River,AK,99577 +-149.557464,61.342603,Fred Meyer-Eagle River #668 - Eagle River AK,13401 Old Glenn Hwy.,Eagle River,AK,99577 +-151.534,59.6432,Safeway-Homer #1832 - Homer AK,90 Sterling Hwy.,Homer,AK,99603 +-149.118333,61.600404,Fred Meyer - Palmer #671 - Palmer AK,650 N. Cobb St.,Palmer,AK,99645 +-149.497284,61.579432,Target Wasilla T-2339 - Wasilla AK,1801 E. Parks Hwy.,Wasilla,AK,99654 +-149.414183,61.578129,Fred Meyer - Wasilla #653 - Wasilla AK,1501 East Parks Highway,Wasilla,AK,99654 +-149.436,60.1263,Safeway-Seward #2728 - Seward AK,1907 Seward Hwy.,Seward,AK,99664 +-151.066613,60.483737,Safeway-Soldotna #548 - Soldotna AK,44282 Sterling Hwy. S.,Soldotna,AK,99669 +-151.049,60.4895,Fred Meyer-Soldotna #17 - Soldotna AK,43843 Sterling Hwy.,Soldotna,AK,99669 +-147.810808,64.836718,Safeway - Fairbanks #2754 - Fairbanks AK,3627 Airport Way (405R),Fairbanks,AK,99701 +-147.70561,64.851206,Safeway-Fairbanks #3410 - Fairbanks AK,30 College Rd.,Fairbanks,AK,99701 +-147.690964,64.851938,Fred Meyer - Fairbanks #224 - Fairbanks AK,930 Old Steese Hwy.,Fairbanks,AK,99701 +-147.679722,64.827778,Fort Wainwright - Fort Wainwright AK,Bldg # 3703B,Fort Wainwright,AK,99703 +-147.817063,64.836724,Fred Meyer-Fairbanks #485 - Fairbanks AK,3755 Airport Way,Fairbanks,AK,99709 +-134.548276,58.359115,Safeway-Juneau #1820 - Juneau AK,303 Vintage Blvd.,Juneau,AK,99801 +-134.5532,58.3595,Fred Meyer-Juneau #158 - Juneau AK,8181 Old Glacier Hwy.,Juneau,AK,99801 +-131.673818,55.349452,Carrs-Ketchikan #1818 - Ketchikan AK,2417 Tongass Ave.,Ketchikan,AK,99901 diff --git a/Winter-2023/Digital Earth/tissot.dbf b/Winter-2023/Digital Earth/tissot.dbf new file mode 100755 index 0000000..b74ecf0 Binary files /dev/null and b/Winter-2023/Digital Earth/tissot.dbf differ diff --git a/Winter-2023/Digital Earth/tissot.prj b/Winter-2023/Digital Earth/tissot.prj new file mode 100755 index 0000000..f45cbad --- /dev/null +++ b/Winter-2023/Digital Earth/tissot.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137.0,298.257223563]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]] \ No newline at end of file diff --git a/Winter-2023/Digital Earth/tissot.shp b/Winter-2023/Digital Earth/tissot.shp new file mode 100755 index 0000000..8c16c76 Binary files /dev/null and b/Winter-2023/Digital Earth/tissot.shp differ diff --git a/Winter-2023/Digital Earth/tissot.shp.xml b/Winter-2023/Digital Earth/tissot.shp.xml new file mode 100755 index 0000000..e6df3ef --- /dev/null +++ b/Winter-2023/Digital Earth/tissot.shp.xml @@ -0,0 +1,2 @@ + +file://\\compass.rowan.edu\GIS\Courses\IMGIS\Labs\Global\tissotLocal Area Network2013020711373100TRUE diff --git a/Winter-2023/Digital Earth/tissot.shx b/Winter-2023/Digital Earth/tissot.shx new file mode 100755 index 0000000..dfb9ef4 Binary files /dev/null and b/Winter-2023/Digital Earth/tissot.shx differ diff --git a/Winter-2023/england-map-of-counties_2.gif b/Winter-2023/england-map-of-counties_2.gif new file mode 100755 index 0000000..46eb4f3 Binary files /dev/null and b/Winter-2023/england-map-of-counties_2.gif differ