

var inAni = false;
var protocol = '';
if( document.location.toString().indexOf( 'https://' ) != -1 ) {
protocol = 'https://';
} else {
protocol = 'http://';
}
var viewTest = false;
function view(id) { 
if(viewTest == false){
viewTest = true; 
$("button[name=checkout]").attr('disabled', 'disabled');
window.location = $j("#" + id).attr('link');
}
}
function validateEmail(email) {
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
if(emailReg.test(email) && email.length > 0 && email.length < 51) {
return true; 
} else {
return false; 
}
}
function validatePassword(pw) {
if(pw.length > 0 ) {
return true; 
} else {
return false; 
}
}
function orderCrossSellTile(el) {
orderTile(el, true);
}
function orderTile(el, reloadpage) {
updateFormQuantityField(el);
order(el, reloadpage);
}
function updateFormQuantityField(el) {
var $form = $(el).closest('form');
$form.find("input.quickview__quantity__field").attr("name", "Quantity_" + $form.find("input[name=SKU]:checked").val());
}
function showGiftWrapB2C(){
var wrapSwitch = ($j('#gift-paper').prop('checked'));
var wrapItemID;
if(!wrapSwitch){
wrapItemID = 'null';
}else{ 
var checkGW = 'false';
var giftwrappers = $('.giftwrap_radio-button');
giftwrappers.each(function(){ 
if($(this).attr("checked") == "checked"){
checkGW = 'true'; 
wrapItemID = $(this).val();
$(this).click();
}
});
if(checkGW == "false"){ 
wrapItemID = $j('[name=GiftWrapForm_GiftWrapSelection]:first').val();
var giftwrappers = $('.giftwrap_radio-button');
var id;
giftwrappers.each(function(){
id = $(this).val(); 
if(wrapItemID == id){
$(this).attr('checked','checked');
$(this).click();
}
else{
$(this).removeAttr('checked'); 
}
}); 
}
checkGW = 'false'; 
} 
jQuery.ajax({
crossDomain: true,
type: 'post',
url: 'https://www.bruna.nl/INTERSHOP/web/WFS/Bruna-B2C-Site/nl_NL/-/EUR/ViewCheckoutShipping-AddGiftWrap',
data: $.parseJSON( '{ "GiftWrapForm_GiftWrapSelection": "'+ wrapItemID + '", "GiftWrapForm_Gifting": "'+wrapSwitch+'", "GiftWrap_Switch":"'+wrapSwitch+'"}'),
dataType: 'jsonp',
beforeSend: function () {$j('#loading-fader').fadeIn();},
error: function() {
alert("An error has occured during request processing! Please refresh the page.");
},
complete: function () {$j('#loading-fader').fadeOut();},
success: function (json){
$j(".vat").html(json.vat);
$j(".total").html(json.total);
if (!!json.wrappingCost && json.wrappingCost != 'N/A'){
$j(".wrapping-cost").removeClass('hidden');
$j(".wrapping-preset").html(json.wrappingCost);
}else{
$j(".wrapping-cost").addClass('hidden');
}
$j(".subtotal").html(json.subtotal);
$j(".delivery-preset").html(json.shippingCost);
}
}); 
return true;
}
function addGiftWrapB2C(wrapItemID){ 
var giftwrappers = $('.giftwrap_radio-button');
var id;
giftwrappers.each(function(){
id = $(this).val(); 
if(wrapItemID == id){
$(this).attr('checked','checked'); 
}
else{
$(this).removeAttr('checked'); 
}
}); 
jQuery.ajax({
crossDomain: true,
type: 'post',
url: 'https://www.bruna.nl/INTERSHOP/web/WFS/Bruna-B2C-Site/nl_NL/-/EUR/ViewCheckoutShipping-AddGiftWrap',
data: $j.parseJSON( '{ "GiftWrapForm_GiftWrapSelection": "'+ wrapItemID + '", "GiftWrapForm_Gifting": "true", "GiftWrap_Switch":"true"}'),
dataType: 'jsonp',
beforeSend: function () {$j('#loading-fader').fadeIn();},
error: function() {
alert("An error has occured during request processing! Please refresh the page.");
},
complete: function () {$j('#loading-fader').fadeOut();},
});
}
function order(el, reloadpage) {
var $form = $(el).closest("form");
var $addButton = $form.find("input[name=addProductViaAjax]");
if($addButton.length) {
$addButton.val(el.value);
} else {
$form.append("<input type=\"hidden\" name=\"addProductViaAjax\" value=\"" + el.value + "\">");
}
$('#loading-fader').fadeIn();
jQuery.ajax({
type: "POST",
url: $form.attr('action'),
data: $form.serialize(),
complete: function () {
$('#loading-fader').fadeOut();
},
success: function (data) {
if(data.success = "true") {
ajaxMinicart(data.productSKUs, data.notAvailable);
inAni = true;
$(window).scrollTop(0);
$j(".shopping-cart__number").html(data.miniCartItems);
setTimeout(function (){}, 5000);
$j("#shopping-cart").addClass("highlight");
$j("#minicart").removeClass("hidden");
$j("#minicart").fadeIn(200).delay(4000).fadeOut(200, function() {
$j("#minicart").addClass("hidden");
$j("#minicart").css("display", "");
$j("#minicart .list__entry").removeClass("highlight");
$j("#shopping-cart").removeClass("highlight"); 
});
if(reloadpage) {
window.location.replace(window.location.href);
}
}
}
});
}
function sort(type) {
$j("#sortByForm input:hidden[name='SortingAttribute']").val(type);
$j("#sortByForm").submit();
}
function updateQuantity(formId, qtyId) {
qtyId = qtyId.replace(/\./g, "\\.");
$j("#" + qtyId).val($j("input." + qtyId).val());
$j("#formAction").attr("name", "update");
$j("#" + formId).submit();
}
function submitForm(formId, action)
{
$j("#formAction").attr("name", action);
$j("#" + formId).submit();
}
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = escape(name) + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return unescape(c.substring(nameEQ.length, c.length));
}
return null;
}
function eraseCookie(name) {
createCookie(name, "", -1);
}
function removeFilter(id) {
window.location = $j("#" + id).attr('link');
}
function showStorePopupWithSearch(zipcode) {
$j("#storelocator-postalcode").val(zipcode);
$j(".showStorelocator_link").click();
if(initialized) startSearch();
$(window).scrollTop(0);
}
function toggleHiddenVariants(container) {
container.find(".hidden-variants").each(function() {
$j(this).toggleClass("hidden");
});
container.find(".toggle-more-variants").each(function() {
$j(this).toggleClass("hidden");
});
container.find(".toggle-less-variants").each(function() {
$j(this).toggleClass("hidden");
});
}
(function($j) {
$j.fn.ellipsis = function(options) {
return this.each(function() {
var el = $j(this);
// Default Configuration
var settings = $j.extend({
textLines : 1, 
textWrap : 'letter' // letter / word
}, options );
var multiline = settings.textLines > 1; 
var textEllipsis = '... ';
// First, we set the default css attributes 
el.css('text-overflow', 'clip');
if (settings.textWrap === 'letter') {
el.css('word-wrap', 'break-word');
} else {
el.css('word-wrap', 'normal');
}
if (multiline) {
el.css('white-space', 'normal');
} else {
el.css('white-space', 'nowrap');
}
//console.log("Initial Text = " + el.html());
if (el.data('originalContent')) {
el.html(el.data('originalContent'));
//console.log("Original Text = " + el.html());
} else {
el.data('originalContent', el.html());
}
// The main element is cloned, we change the size...
var clonedEl = $j(this.cloneNode(true)).hide();
clonedEl.css('width', el.width() + 'px');
clonedEl.css('height', (parseInt($(this).css('line-height'), 10) * settings.textLines) + 'px');
el.after(clonedEl); 
function height() {
//console.log("Height = " + t.height() + " > " + clonedEl.height());
return t.height() > clonedEl.height(); 
};
function width() {
//console.log("Width = " + t.width() + " > " + clonedEl.width());
return t.width() > clonedEl.width(); 
};
var func = multiline ? height : width;
var text = '';
var keywds = el.html().split(/ +/);
var t = $j(this.cloneNode(true))
.hide()
.css('position', 'absolute')
.css('overflow', 'visible')
.width('auto')
.height((parseInt($(this).css('line-height'), 10)) + 'px');
el.after(t);
for (var a = 0, l = keywds.length; a < l; a++) {
clonedEl.html(keywds[a]);
t.html(keywds[a]);
//console.log("[" + a + "] = " + keywds[a]);
while (keywds[a].length > 0 && width()) {
keywds[a] = keywds[a].substr(0, keywds[a].length - 1);
t.html(keywds[a] + textEllipsis); 
}
text = text.concat(a > 0? ' ' : '', t.html());
}
clonedEl.html(text);
el.html(text);
t.remove();
t = $j(this.cloneNode(true))
.hide()
.css('position', 'relative')
.css('overflow', 'visible')
.width(multiline ? clonedEl.width() : 'auto')
.height(multiline ? 'auto' : clonedEl.height());
el.after(t);
while (text.length > 0 && func()) {
text = text.substr(0, text.length - 1);
t.html(text + textEllipsis); 
}
el.html(t.html().replace(/\.{3}(\.)*( )?$/, textEllipsis));
el.width(clonedEl.width());
el.height(clonedEl.height());
//console.log("Final Text = " + el.html());
t.remove();
clonedEl.remove();
});
};
})(jQuery);
function calculateRedLabelPosition(){
$j(".product-image-container__promo-label").each(function(){ 
var sticker=$j(this);
sticker.css("right","inherit");
var windowWidth = $(window).width();
var imageLeft = $('.product-image').offset().left;
var imageWidth = $('.product-image').width();
var labelWidth = sticker.width();
var position = imageLeft + imageWidth - (labelWidth/2);
if((position+labelWidth)>windowWidth){
position = windowWidth - labelWidth;
}
sticker.offset({left:position});
}); 
}
function calculateTruncationText(){
if ($j(".toplist").length != 0) { 
$j(".toplist .toplist_description").each(function() {
$j(this).dotdotdot({
ellipsis : '... ',
wrap : 'word',
height : parseInt( $(this).css('line-height'), 10) * 4
});
});
}
if ($j(".searchresult__info").length != 0) { 
$j(".searchresult__info .truncate-multiline-dot").each(function() {
$j(this).dotdotdot({
ellipsis : '... ',
wrap : 'word',
height : parseInt( $(this).css('line-height'), 10) * 3
});
});
}
if ($j(".toplist__title.truncate-multiline-dot").length != 0) {
$j(".toplist__title.truncate-multiline-dot").each(function() {
$j(this).ellipsis({
textLines : 2, 
textWrap : 'word'
});
});
}
if ($j(".product-preview__product-title.truncate-multiline-dot").length != 0) {
$j(".product-preview__product-title.truncate-multiline-dot").each(function() {
$j(this).ellipsis({
textLines : 2,
textWrap : 'word' 
});
});
} 
}
function selectPayment(paymentid, type) {
if(type == 'alias') {
var brand = $j("input#" + paymentid.replace(/\./g,'\\.') + "_Brand").val();
$j("#frm_payment").attr("action", $j("input#" + paymentid.replace(/\./g,'\\.') + "_AliasGatewayURL").val());
$j("#frm_payment input#PaymentServiceSelection").val(paymentid);
$j("#frm_payment input#PSPID").val($j("input#" + paymentid.replace(/\./g,'\\.') + "_PSPID").val());
$j("#frm_payment input#Brand").val(brand);
$j("#frm_payment input#BankSelection").val("");
$j("#frm_payment input#AcceptURL").val($j("input#" + paymentid.replace(/\./g,'\\.') + "_AcceptURL").val());
$j("#frm_payment input#ExceptionURL").val($j("input#" + paymentid.replace(/\./g,'\\.') + "_ExceptionURL").val());
$j("#frm_payment input#SHASign").val($j("input#" + paymentid.replace(/\./g,'\\.') + "_SHASign").val());
if((brand == "MasterCard") || (brand == "Visa"))
{
$j("#frm_payment input#CN").val($j("#CC_cardholder").val());
$j("#frm_payment input#CardNo").val($j("#CC_cardnumber").val());
$j("#frm_payment input#CVC").val($j("#ccvnumber").val());
$j("#frm_payment input#ED_Month").val($j("#card-valid-month").val());
$j("#frm_payment input#ED_Year").val($j("#card-valid-year").val());
}
else {
$j("#frm_payment input#CN").val("");
$j("#frm_payment input#CardNo").val("");
$j("#frm_payment input#CVC").val("");
$j("#frm_payment input#ED_Month").val("");
$j("#frm_payment input#ED_Year").val("");
}
}
else {
$j("#frm_payment").attr("action", $j("#intershop-payment-url").val());
$j("#frm_payment input#PaymentServiceSelection").val($j("input#paymentOption_" + paymentid.replace(/\./g,'\\.')).val());
$j("#frm_payment input#PSPID").val("");
if($j("input#paymentOption_" + paymentid.replace(/\./g,'\\.')).attr("ideal") == "true") {
$j("#frm_payment input#Brand").val($j("input#" + paymentid.replace(/\./g,'\\.') + "_Brand").val());
$j("#frm_payment input#BankSelection").val($j("#bank-selection").val());
}
else {
$j("#frm_payment input#Brand").val("");
$j("#frm_payment input#BankSelection").val("");
}
$j("#frm_payment input#AcceptURL").val("");
$j("#frm_payment input#ExceptionURL").val("");
$j("#frm_payment input#SHASign").val("");
$j("#frm_payment input#CN").val("");
$j("#frm_payment input#CardNo").val("");
$j("#frm_payment input#CVC").val("");
$j("#frm_payment input#ED_Month").val("");
$j("#frm_payment input#ED_Year").val("");
}
}
function validatePaymentForm() {
var selection = $j("input[name='PaymentServiceSelection']:checked");
var error = false;
if(selection.attr("data-subform") == "payment-creditcard__form") {
if($j("#CC_cardholder").val() == "") {
$j("#CC_cardholder").parent().addClass("has-error");
error = true;
}
else {
$j("#CC_cardholder").parent().removeClass("has-error");
}
if($j("#CC_cardnumber").val() == "") {
$j("#CC_cardnumber").parent().addClass("has-error");
error = true;
}
else {
$j("#CC_cardnumber").parent().removeClass("has-error");
}
if(($j("#card-valid-month").val() == "") || ($j("#card-valid-year").val() == "")) {
$j("#card-valid-month").parent().addClass("error");
error = true;
}
else {
$j("#card-valid-month").parent().removeClass("error");
}
if($j("#ccvnumber").val() == "") {
$j("#ccvnumber").parent().addClass("has-error");
error = true;
}
else {
$j("#ccvnumber").parent().removeClass("has-error");
}
}
else if(selection.attr("data-subform") == "payment-ideal__form") {
if($j("#bank-selection").val() == "") {
$j("#bank-selection").parent().addClass("error");
error = true;
}
else {
$j("#bank-selection").parent().removeClass("error");
}
}
return !error;
}
var fired3 = false;
function submitPayment() {
if(fired3 == false){ 
var selection = $j("input[name='PaymentServiceSelection']:checked");
if(selection.val() == "CreditCard") {
selection = $j("[name='PaymentServiceSelectionCreditCard'] option:selected");
}
var typeOgone = selection.attr("alias");
var paymentform = "frm_payment";
if(typeOgone == "true") {
selectPayment(selection.val(), "alias");
}
else {
selectPayment(selection.val(), "intershop");
}
if(validatePaymentForm()) {
fired3 = true;
$j('#loading-fader').fadeIn();
$j("#" + paymentform).submit();
}
}
}
function saveAddressSelection(addressID){
createCookie("selectedDeliveryAddress",""+addressID);
}

$j(document).ready(function() {
$(".author-product__text").readmore({
linkButton: '<a href="#" class="readmore-js-toggle review__read-more">Meer</a>',
expandFrom: 61,
expandOnly: !1
});
$j(".checkout-content__footer .btn").click(function() {
$j('#loading-fader').fadeIn();
});
$j(".login-form__footer .btn").click(function() {
$j('#loading-fader').fadeIn();
}); 
$j(".checkout-progress li a").click(function() {
$j('#loading-fader').fadeIn();
}); 
$j(".update-credentials-form").click(function() {
$j("#frm_updatecredentials").submit();
});
$j(".checkout-address").click(function(event) {
if(event.target.tagName.toUpperCase() != "A"){
$j(".checkout-address").removeClass("selected").children("input").prop('checked', false);
$j(this).addClass("selected").children("input").prop('checked', true);
}
});
$j(".gift-wrapper").on("click", function(e){ 
$j(this).children(".openClose-giftwrap").children(".custom-checkbox").click();
});
$j(".gift-wrapper").on("click", "#gift-message-form", function(event){
if(event.stopPropagation){ 
event.stopPropagation();
}
else if(window.event){ 
window.event.cancelBubble=true;
}
});
$j(".gift-wrapper").on("click", "#gift-paper-id", function(event){
if(event.stopPropagation){ 
event.stopPropagation();
}
else if(window.event){ 
window.event.cancelBubble=true;
}
});
$j(".gift-wrapper").on("click", ".openClose-giftwrap", function(event){
if(event.stopPropagation){ 
event.stopPropagation();
}
else if(window.event){ 
window.event.cancelBubble=true;
}
});
$("#storelocator-br").popout({slShoppingCart:".storelocator_link",slCloseButton:"#storelocator-br .close",eventName:"storelocator"}).on("storelocatorOpen",initializeBrunaStoreLocatorMap)
$j("input.quickview-variant").click(function() {
var frm = $j(this).closest("form");
if($j(this).attr("link") != "") {
$j(".quickview__to-product a").attr("href", $j(this).attr("link"));
}
if($j(this).attr("ebook") == "true") {
frm.find("input.quickview__quantity__field").each(function() {
$j(this).val("1").attr("disabled", "disabled").attr("type", "text").parent()
.find("a.ui-spinner-button").addClass("hidden");
});
}
else {
frm.find("input.quickview__quantity__field").each(function() {
$j(this).removeAttr("disabled").attr("type", "number").parent()
.find("a.ui-spinner-button").removeClass("hidden");
});
}
});
$("div.resterend .delivery-button, div.resterend .pickup-button").click(function(){
order(this);
return false;
});
$j("#searchSuggestions").width($j(".header__search").width() - 8);
$j(".menu__more .menu__list__item").has("div").each(function() {
$j(this).addClass("has-sub-elements");
}).click(function(ev) {
var $eventTarget = $(ev.target);
if(!$eventTarget.hasClass("last-level") && !$eventTarget.closest("li.last-level").length) {
$j(this).children("div").toggleClass("hidden");
$j(this).children("div").children("ul").children("li").children("ul").toggleClass("js-submenu-hidden");
$j(this).toggleClass("has-sub-elements");
$j(this).children("div").children("ul").children("li").toggleClass("has-sub-elements");
return false;
}
});
$j(".menu__more .menu__main__item--with-flyout").has("ul").has("li").each(function() {
$j(this).addClass("has-sub-elements");
}).find("> a").click(function(ev) {
ev.stopPropagation();
return true;
});
$j(".menu__default .menu__list__item").has("div").hover(
function() {
if($(window).width()>992){
if(!$j(this).hasClass("active")){
$j(this).addClass("active");
}
if($j(this).children("div").hasClass("hidden")){
$j(this).children("div").removeClass("hidden");
}
return false;
}
},
function() {
if($(window).width()>992){
if($j(this).hasClass("active")){
$j(this).removeClass("active");
}
if(!$j(this).children("div").hasClass("hidden")){
$j(this).children("div").addClass("hidden");
}
return false;
}
}
);
$j(".menu__default .menu__list__item .nav__top__item").click(function() {
if($(window).width()<=991){
if($(this).parent().has("div")!=undefined){
var parentHasClassActive = $j(this).parent().has("div").hasClass("active");
var childrenHasClassHidden = $j(this).parent().has("div").children("div").hasClass("hidden");
$j(".menu__default .menu__list__item").each(function(){
if($(this).has("div")!=undefined){
if($(this).has("div").hasClass("active")){
$(this).has("div").removeClass("active");
}
if(!$(this).has("div").children("div").hasClass("hidden")){
$(this).has("div").children("div").addClass("hidden");
}
}
});
if(!parentHasClassActive){
$j(this).parent().has("div").toggleClass("active");
}
if(childrenHasClassHidden){
$j(this).parent().has("div").children("div").toggleClass("hidden");
}
return true;
}
}
});
$j(".menu__more .menu__list__item.visible-xs-brn, .menu__more .menu__list__item.visible-sm-brn, .menu__more aside").each(function() {
$j(this).remove();
});
$j(".toggle-variants-container-tile .toggle-more-variants").click(function() {
toggleHiddenVariants($j(this).parent().parent());
return false;
});
$j(".toggle-variants-container-tile .toggle-less-variants").click(function() {
toggleHiddenVariants($j(this).parent().parent());
return false;
});
$j(".toggle-variants-container-pdp .toggle-more-variants").click(function() {
toggleHiddenVariants($j(this).parent().parent());
return false;
});
$j(".toggle-variants-container-pdp .toggle-less-variants").click(function() {
toggleHiddenVariants($j(this).parent().parent());
return false;
});
$j(".toggle-variants-container-list .toggle-more-variants").click(function() {
toggleHiddenVariants($j(this).parent().parent().parent());
return false;
});
$j(".toggle-variants-container-list .toggle-less-variants").click(function() {
toggleHiddenVariants($j(this).parent().parent().parent());
return false;
});
$j("input").keypress(function(e) {
// disable # character in input fields
// # = 35
if(e.which == 35)
{
e.preventDefault();
}
});
if($j("#message").length) {
var giftMessageMax =$j("#message").attr("data-maxlength");
var msgText = $j("#message").val();
var msgCount = msgText.length;
var charsLeft = giftMessageMax - msgCount;
if(charsLeft < 0)
{
charsLeft = 0;
}
$j("#message_charsleft").html(charsLeft);
$j("#message").keyup(function() {
msgText = $j("#message").val();
msgCount = msgText.length;
charsLeft = giftMessageMax - msgCount;
if(charsLeft < 0)
{
charsLeft = 0;
}
$j("#message_charsleft").html(charsLeft);
if (charsLeft === 0)
{
$j("#message").val(msgText.substring(0, giftMessageMax)); 
}
return false;
});
}
$j("#minicart-overlay").click(function() {
inAni = false;
$j("#minicart").stop(true, true); 
});
$j("input[id=email_Email]").blur(function() {
var e = validateEmail($j(this).val());
if (e == true)
{
$j("#error_container").children().hide();
//$(this).parent().next().hide();
//alert($(this).parent().parent().parent().prev().val());
}
else
{
$j("#error_container").children().show();
}
});
$j("input[id=ShopLoginForm_Login]").blur(
function() {
if($j(this).val().length > 0) {
$j(".error-message_email-required").hide(); $j(this).parent(".form-group__field-container").removeClass("g-icons-icn_error");
var b = validateEmail($j(this).val());
if (b == true) {
$j(this).removeClass("kor-field-error"); 
$j(".error-message_email-invalid").hide(); $j(this).parent(".form-group__field-container").removeClass("g-icons-icn_error");
} else {
$j(this).addClass("kor-field-error"); 
$j(".error-message_email-invalid").show(); $j(this).parent(".form-group__field-container").addClass("g-icons-icn_error");
}
}
else {
$j(".error-message_email-invalid").hide(); $j(this).parent(".form-group__field-container").removeClass("g-icons-icn_error");
$j(".error-message_email-required").show(); $j(this).parent(".form-group__field-container").addClass("g-icons-icn_error");
$j(this).addClass("kor-field-error");
}
}
);
$j("input[id=password]").blur(
function() {
var p = validatePassword($j(this).val());
if (p == true) {
$j(this).removeClass("kor-field-error"); 
$j(".error-message_password").hide(); $j(this).parent(".form-group__field-container").removeClass("g-icons-icn_error");
} else {
if($(this).attr("address") != "true") {
$j(this).addClass("kor-field-error"); 
}
$j(".error-message_password").show(); $j(this).parent(".form-group__field-container").addClass("g-icons-icn_error");
}
}
); 
$j("a[id=ShopLoginForm_Forgotten]").on("mousedown",
function(event) {
event.stopPropagation();
$j("input[id=password]").unbind();
$j("input[id=ShopLoginForm_Login]").unbind();
}
);
$j("BUTTON.login-form__login").click(function() {
var x = false; var y = false;
if($j("input[id=ShopLoginForm_Login]").val().length > 0) {
$j(".error-message_email-required").hide(); $j(this).parent(".form-group__field-container").removeClass("g-icons-icn_error");
if(!validateEmail($j("input[id=ShopLoginForm_Login]").val())) { 
$j("input[id=ShopLoginForm_Login]").addClass("kor-field-error"); 
$j(".error-message_email-invalid").show(); $j(this).parent(".form-group__field-container").addClass("g-icons-icn_error");
x = true;
}
}
else {
$j(".error-message_email-invalid").hide(); $j(this).parent(".form-group__field-container").removeClass("g-icons-icn_error");;
$j(".error-message_email-required").show(); $j(this).parent(".form-group__field-container").addClass("g-icons-icn_error");
$j("input[id=ShopLoginForm_Login]").addClass("kor-field-error");
x = true;
}
if(!validatePassword($j("input[id=password]").val())) {
$j("input[id=password]").addClass("kor-field-error"); 
$j(".error-message_password").show(); $j(this).parent(".form-group__field-container").addClass("g-icons-icn_error");
y= true;
}
if (x==true || y==true) return false;
});
$j("#cart__discount__link").click(function() {
$j("#cart__discount__header__container").addClass("hidden");
$j("#cart__discount__input__container").removeClass("hidden");
});
$j(".js-qty-pop-up-field").keypress(function(e) {
if(e.which == 13) {
e.preventDefault();
$j(this.parentElement).find("button").click();
}
});
$j("#storefinder-zipcode").keypress(function(e) {
if(e.which == 13) {
e.preventDefault();
showStorePopupWithSearch(this.value);
}
});
$j(".g-icons-icn-basket-quickview").on('click',function() {
jQuery("body").trigger('click');
});
$j("#openStoreLocator").click(function() {
showStorePopupWithSearch($("#storefinder-zipcode").val());
});
$j("[name^=Quantity_]").click(function() {
this.select();
});
$j(".menu__list__item.js-menu-item").each(function() {
var self = $(this);
// if element has children then add these classes
if (self.find(".list__item__flyout.js-flyout.hidden").length > 0)
{
self.addClass("js-submore");
self.addClass("js-submenu");
}
/*if (self.parent().parent().find(".more__list"))
{
self.removeClass("hidden-sm-brn");
self.removeClass("hidden-xs-brn");
}*/
});
$j("div.list__item__flyout").each(function() {
var self = $(this);
if (self.parent().parent().find(".menu__list"))
{
//do nothing
}
else if (self.parent().parent().parent().find(".more__list").length > 0)
{
self.removeClass("js-flyout");
self.removeClass("hidden");
$(this).children('ul:first').addClass("js-submenu-hidden");
}
});
var BigList = [];
var SmallList = [];
$j(".menu__list__item").each(function() {
var self = $(this);
if (self.parent().hasClass('menu__list'))
{
BigList.push(self);
}
else
{
SmallList.push(self);
}
});
var i = 0;
for(i = 0; i < SmallList.length; i++)
{
var nameSmall = SmallList[i].find("a").html();
if(typeof BigList[i] != "undefined")
{
var nameBig = BigList[i].find("a").html();
}
else
{
var nameBig = "";
}
if(nameSmall == nameBig)
{
// If the BigMenu item is hidden when small then the SmallMenu item must be shown in the menu
if(BigList[i].hasClass("hidden-xs-brn"))
{
SmallList[i].removeClass("hidden-xs-brn");
SmallList[i].addClass("visible-xs-brn");
}
else
{
SmallList[i].addClass("hidden-xs-brn");
}
if(BigList[i].hasClass("hidden-sm-brn"))
{
SmallList[i].removeClass("hidden-sm-brn");
SmallList[i].addClass("visible-sm-brn");
}
else
{
SmallList[i].addClass("hidden-sm-brn");
}
}
/* 
BRUPS-2574
Remove all empty submenus that are being generated in server-side
*/
var sublists = $('.more__list .menu__link__sublist');
sublists.each(function(i) {
var item = $(this);
if (item.children().length == 0)
item.remove();
});
}
/* Change handler for Newsletter subscription checkboxes */
$('input[type=checkbox].newsletter-checkbox').change(function(e){
if ($(this).is(":checked")) {
if ($(this).data("newslettercheck") !== "true") {
sendPageViewNewsletter();
$(this).data("newslettercheck", "true");
}
}
});
$( window ).resize(function() {
calculateRedLabelPosition();
calculateTruncationText();
});
$("img#main-image").one("load", function() {
calculateRedLabelPosition();
});
calculateTruncationText();
$j(".gift-wrap").click(function() {
// find and click the corresponding radio button
var wrap = $j(this);
wrap.parent().find('input').click();
});
if ($j(".payment-component__ideal input[name='PaymentServiceSelection']").length !== 0) {
if ($j(".payment-component__ideal input[name='PaymentServiceSelection']").is(":checked")) {
$j(".payment-component__ideal .payment-component__option-subform").css("display","block"); 
}
}
if ($j(".payment-component__creditcard input[name='PaymentServiceSelection']").length !== 0) {
if ($j(".payment-component__creditcard input[name='PaymentServiceSelection']").is(":checked")) {
$j(".payment-component__creditcard .payment-component__option-subform").css("display","block"); 
} 
}
$j("input[name='PaymentServiceSelection']").click(function(){
$j(".payment-component__option-subform").hide();
$j(this).parents(".payment-component__subform").next(".payment-component__option-subform").show();
});
$j(".carousel div.product-preview__basket-link.js-open-quickview").click(function() {
var carousel = $j(this).parents(".carousel");
var carouselContainer = $j(this).parents(".carousel__scroll-list.js-carousel");
var article = $j(this).parents("article.product-preview");
var formElement = $j(this).parents(".frm"); 
var linkElement = $j(this).find("a.basket-link.g-icons-icn_basket_small_blue");
var quickviewContainer = $j("#" + linkElement.data("quickviewId"));
var quickview = quickviewContainer.find(".quickview");
var triggerMovePopup = carouselContainer.outerWidth(true) < (2 * article.outerWidth(true));
if (linkElement.data("cloned") !== true && triggerMovePopup) {
var formElementCloned = formElement.clone(true, true);
formElementCloned.find("div.product-preview__basket-link").remove();
formElementCloned.find("div.product-preview__quickview").remove();
formElementCloned.prepend(quickviewContainer);
carousel.prepend(formElementCloned);
linkElement.data("cloned", true);
}
if (linkElement.data("cloned") === true && ! triggerMovePopup) {
var formElementCloned = quickviewContainer.parents(".frm");
formElementCloned.remove();
formElement.prepend(quickviewContainer);
linkElement.data("cloned", false);
}
if (linkElement.data("cloned") === true) {
var yPosition = article.offset().left + (article.outerWidth(true) / 2) - ((quickview.outerWidth(true) / 2) + carousel.offset().left);
quickviewContainer.css("left", yPosition + "px");
quickviewContainer.css("right", "");
} else {
var yPosition = 10 - (article.outerWidth(true) / 2);
var limitRight = carouselContainer.offset().left + carouselContainer.width();
var limitLeft = carouselContainer.offset().left;
quickviewContainer.css("left", yPosition + "px");
quickviewContainer.css("right", "");
if (quickviewContainer.offset().left < limitLeft) {
quickviewContainer.css("left", "0px"); 
}
if ((quickviewContainer.offset().left + quickviewContainer.width()) > limitRight) {
quickviewContainer.css("left", (yPosition + (limitRight - quickviewContainer.width() - quickviewContainer.offset().left)) + "px");
}
}
});
var fired2 = false; 
$(document).delegate(".add-save-address", "click", function (ev) {
ev.preventDefault(); 
var target2 = $(ev.currentTarget); 
if(fired2 == false){
fired2 = true;
var form2 = target2.closest("form");
form2.submit();
}
});
var fired4 = false; 
$(document).delegate(".account_create_full_button", "click", function (ev) {
ev.preventDefault(); 
var target4 = $(ev.currentTarget); 
if(fired4 == false){
fired4 = true;
var form4 = target4.closest("form");
form4.submit();
}
});
if ($j(".a_disable_onclick").length != 0) { 
$j(".a_disable_onclick").onclick(function() {
$j(this).removeAttr('href');
}); 
} 
setTimeout(function(){calculateRedLabelPosition();},1000);
});
$j(window).load(function() { 
$("img").each(function() {
if($j(this).attr("data-deferredsrc")) {
var $this = $(this);
$this.attr("src",$this.attr("data-deferredsrc"));
}
});
});
/*
* Store event for Newsletter subscription
*/
function sendPageViewNewsletter() {
if (typeof dataLayer != "undefined") {
dataLayer.push({
'event':'sendVirtualPageview',
'vpv':'/nieuwsbrief/aanmelden/bedankt'
});
}
}


var storeLocationsMap,
requestedZipcode = "",
requestedPlace = "",
STORES_PER_PAGE = 3,
initialized = false,
savePreferredStoreUrl = "https://www.bruna.nl/INTERSHOP/web/WFS/Bruna-B2C-Site/nl_NL/-/EUR/ViewStoreFinder-SetPreferredStoreViaAjax",
markerClusterer,
storesSearchResult = [];
var storeSelectors = {
sundayOnly: false,
time: undefined,
day: undefined
};
function initializeBrunaStoreLocatorMap() {
if(!initialized) {
var a = {
mapCanvas: document.getElementById("map-canvas"),
storesListCanvas: $j("#storelocator_list").get(0),
storeIcon: "/INTERSHOP/static/WFS/Bruna-B2C-Site/-/-/nl_NL/branding/Bruna-B2C-Anonymous/images/assets/icons/google-marker-Bruna.png?brandid=AGvAqPywGNMAAAFJ_AutI4ns",
storesGroupIcon: "/INTERSHOP/static/WFS/Bruna-B2C-Site/-/-/nl_NL/branding/Bruna-B2C-Anonymous//images/assets/icons/google-marker-Bruna-num.png?brandid=AGvAqPywGNMAAAFJ_AutI4ns",
storeVisibilityFunction: storeLocatorVisibilityFunction,
requestedStoreNumber: 0,
requestedZipcode: requestedZipcode,
requestedPlace: requestedPlace,
checkout: 0,
loggedIn: 0
};
initialized = true;
console.log("Initializing Google Maps"), storeLocationsMap = new StoreLocationsMap(a);
}
}
function storeLocatorMessageXSS(a, b) {
if ( "undefined" == typeof b || 1 == b) {
//$j("#storelocator_error").show().find(".storelocator__errormessage").html(a);
jQuery.ajax({
crossDomain: true,
type: 'post',
url: 'https://www.bruna.nl/INTERSHOP/web/WFS/Bruna-B2C-Site/nl_NL/-/EUR/Sanitization-SanitizeValue',
data: $.parseJSON( '{ "InputToSanitize" : "' + $j("#storelocator-postalcode").val() + '", "ValueToSanitize" : "' + a + '" }'),
dataType: 'jsonp',
error: function() {$j("#storelocator_error").hide().find(".storelocator__errormessage").html("");},
success: function (json) {
$j("#storelocator-postalcode").val(json.sanitizedInput);
$j("#storelocator_error").show().find(".storelocator__errormessage").html(json.sanitizedValue);
}
});
} else {
$j("#storelocator_error").hide().find(".storelocator__errormessage").html("");
}
}
function storeLocatorListNextPage() {
scrollStoreLocationsList("next"), $j(".storelocator_prevLink").removeClass("disabled")
}
function storeLocatorListPrevPage() {
scrollStoreLocationsList("prev"), $j(".storelocator_nextLink").removeClass("disabled")
}
function scrollStoreLocationsList(a) {
var b = "prev" == a ? -1 : 1,
c = $j("#storelocator_list");
"undefined" == typeof c.attr("data-page") && c.attr("data-page", 1);
var d = parseInt(c.attr("data-page")),
e = parseInt(d) + 1 * b;
c.attr("data-page", e), setupStoreLocationsPaginationButtons(e);
for (var f = 0, g = c.find(".storelocator_listitem"), h = (e - 1) * STORES_PER_PAGE, i = 0; h > i; i++) {
var j = g.eq(i);
f += j.outerHeight(!0)
}
c.animate({
scrollTop: f
}, "slow")
}
function setupStoreLocationsPaginationButtons(a) {
var b = $("#storelocator_list"),
c = parseInt(b.find(".storelocator_listitem").length);
parseInt(a * STORES_PER_PAGE) >= c ? ($j(".storelocator_nextLink").addClass("disabled"), $j(".storelocator_prevLink").removeClass("disabled")) : $j(".storelocator_nextLink").removeClass("disabled"), parseInt(a) > 1 ? $j(".storelocator_prevLink").removeClass("disabled") : $j(".storelocator_prevLink").addClass("disabled")
}
function initializeStoreLocationsPaginationBlock(a) {
var b = $j(".storelocator_pagination"),
c = $j("#storelocator_list");
c.attr("data-page", "1"), c.animate({
scrollTop: 0
}, 100), a > STORES_PER_PAGE ? (b.css("visibility", "visible").find(".storelocator_prevLink").addClass("disabled"), b.find(".storelocator_nextLink").removeClass("disabled")) : b.css("visibility", "hidden")
}
function StoreLocationsMap(a) {
function b() {
return this.ONE_KILOMETER = .008993, this.ZIPCODE_ZOOMLEVEL = 16, this.LIST_ZOOMLEVEL = 3, this.boundsHolland = new google.maps.LatLngBounds(new google.maps.LatLng(50.93073802371819, 2.164306640625), new google.maps.LatLng(53.225768435790194, 8.360595703125)), this.maxStoresToList = 20, this.mapCanvas = a.mapCanvas, this.storesListCanvas = a.storesListCanvas, this.storeInfoCanvas = K(mapCanvas.parentNode, "storeInfoCanvas", 105), this.storeInfoFader = new Fader(this.storeInfoCanvas, 1, 20, .3), this.storeInfoCanvas.onmouseover = this.storeInfoFader.restore, this.storesCollection = {}, this.requestedStoreNumber = a.requestedStoreNumber, this.requestedZipcode = a.requestedZipcode, this.requestedPlace = a.requestedPlace, this.storeVisibilityFunction = a.storeVisibilityFunction, this.isBusy = 0, this.lastEnteredAddress = void 0, this.computeMarkersAfterInit = a.computeMarkersAfterInit, this.storeIcon = a.storeIcon, this.storesGroupIcon = a.storesGroupIcon, this.checkout = a.checkout, this.loggedIn = a.loggedIn, this.loginPageURL = a.loginPageURL, this.searchByZipcode = searchByZipcode, this.searchByCity = searchByCity, this.useCurrentLocation = useCurrentLocation, this.geocoder = new google.maps.Geocoder, this.explicitSearch = !1, G(), this.brunaStoresMap = new google.maps.Map(mapCanvas, {
center: new google.maps.LatLng(52.088932, 5.115405),
zoom: 7,
mapTypeId: "roadmap",
mapTypeControlOptions: {
style: google.maps.MapTypeControlStyle.DROPDOWN_MENU
}
}), this.reloadAllStores = function () {
console.log("Store locator map: reloading all stores"), loadMarkers()
}, this.computeMarkersVisibility = function () {
computeMarkersVisibility()
}, this.helper = new google.maps.OverlayView, this.helper.setMap(brunaStoresMap), this.helper.draw = function () {
this.ready || (this.ready = !0, google.maps.event.trigger(this, "ready"))
}, google.maps.event.addListener(brunaStoresMap, "idle", computeMarkersVisibility)
, google.maps.event.addListenerOnce(brunaStoresMap, "tilesloaded", function () {
loadMarkers(); startSearch(); computeMarkersVisibility();
}), google.maps.event.addListener(brunaStoresMap, 'click', function() {
storesSearchResult = [];
}), google.maps.event.addListener(brunaStoresMap, 'drag', function() {
storesSearchResult = [];
}), this
}
function loadMarkers() {
$.each(stores, function () {
storesCollection[this.no] = d(this);
});
this.isBusy = false;
}
function d(a) {
a.name = sprintf("Bruna %s, %s", a.street, a.city), a.phone || (a.phone = "");
var b = sprintf("Bruna %s %s, %s", a.street, a.housenr, a.city).replace(/&amp;/g, "&"),
c = new google.maps.Marker({
map: brunaStoresMap,
position: new google.maps.LatLng(a.latitude, a.longitude),
icon: this.storeIcon,
title: b
});
return a.visible = !0, a.marker = c, a.position = c.getPosition(), c.store = a, google.maps.event.addListener(c, "click", e), google.maps.event.addListener(c, "dblclick", f), a
}
function e() {
g(this.store)
}
function f() {
t(this.store)
}
function g(a) {
if (helper.getProjection()) {
var c = helper.getProjection().fromLatLngToContainerPixel(a.marker.getPosition());
storeInfoCanvas.innerHTML = k(a), storeInfoCanvas.appendChild(createElement("div", {}, p(a))), storeInfoCanvas.appendChild(m(a)), storeInfoCanvas.appendChild(j());
var d = o(c.x, mapCanvas.offsetWidth, storeInfoCanvas.offsetWidth);
storeInfoCanvas.style.left = mapCanvas.offsetLeft + d + "px", storeInfoCanvas.style.top = mapCanvas.offsetTop + "px", storeInfoFader.restore();
}
}
function h(a) {
var b = '<strong class="title">Geselecteerde vestiging:</strong>';
for (b += sprintf('<h2 class="name">%s</h2>', a.name), b += "<address>", b += sprintf("<span>%s %s</span>", a.street, a.housenr), b += sprintf("<span>%s %s</span>", a.zip, a.city), b += sprintf('<span>Tel: <a href="tel:%s">%s</a></span>', a.phone.replace(/[^0-9]/g, ""), a.phone), b += "</address>", b += '<div class="schedule">', b += '<strong class="title">Openingstijden</strong>', b += "<dl>", dayNr = 0; 6 >= dayNr; dayNr++) {
var c = a.hours[dayNr];
b += "<dt>" + c.D + "</dt>", b += "" == c.F ? sprintf("<dd><span>%s</span><span>%s</span></dd>", i(dayNr), c.C) : sprintf("<dd><span>%s</span><span>%s - %s uur</span></dd>", i(dayNr), s(c.F), s(c.U))
}
b += "</dl>", b += "</div>", storesListCanvas.innerHTML = b, this.checkout && (document.getElementById("StoreAddressID").value = a.uuid, document.getElementById("gadoor2").style.display = "block"), window.scrollTo(0, storesListCanvas.offsetTop)
}
function i(a) {
var b = new Date;
a += 1, b.setDate(0 == b.getDay() ? b.getDate() + a - 7 : b.getDate() - b.getDay() + a);
var c = b.getMonth() + 1,
a = b.getDate(),
d = b.getFullYear();
return 10 > a && (a = "0" + a), 10 > c && (c = "0" + c), a + "-" + c + "-" + d
}
function j() {
var a = createElement("div", {
id: "storeInfoCloseButton",
onclick: storeInfoFader.hide
}, "");
return a
}
function k(a) {
var b = "";
return b += sprintf("<h3>%s</h3>", a.name), b += sprintf("<p>%s %s, %s, %s<br/>Telefoon: %s</p>", a.street, a.housenr, a.zip, a.city, a.phone ? a.phone.replace("-", " - ") : "-"), b += '<div class="popup-links">', b += '<a href="javascript: void(0)" onclick="saveStore(\'' + a.no + "')\">stel in als mijn bruna</a>", loggedIn || (b += '<br/><a href="' + loginPageURL + "?SelectedStoreNr=" + a.no + '">Leg vast in mijn account</a>'), b
}
function m(a) {
storePopup(a.no);
}
function n(a, b) {
var c = sprintf("http://maps.google.nl/maps?saddr=%s&daddr=%s", encodeURI(a), encodeURI(b));
window.open(c)
}
function o(a, b, c) {
var d = 20;
return c / 2 >= a + d + c - b ? a + d : a - d - c
}
function p(a) {
var b = sprintf('<table><thead><tr><th colspan="2">%s</th></tr></thead>', "Openingstijden");
for (dayNr = 0; 6 >= dayNr; dayNr++) b += sprintf('<tr><td width="100">%s</td>%s</tr>\n', a.hours[dayNr].D, q(a.hours[dayNr]));
return b += "</table>"
}
function q(a) {
var b = "";
return b += "" == a.F ? sprintf('<td class="popup-nohours">%s</td>', a.C) : sprintf('<td class="popup-hours">%s - %s</td>', r(a.F), r(a.U))
}
function r(a) {
return a.slice(0, 2) + ":" + a.slice(2)
}
function s(a) {
return a.slice(0, 2) + "." + a.slice(2)
}
function t(a) {
return a ? (I(a, !0), brunaStoresMap.setCenter(a.marker.getPosition()), brunaStoresMap.setZoom(ZIPCODE_ZOOMLEVEL), void g(a)) : !1
}
function u(a, b) {
return this.isBusy ? void(requestedZipcode = a) : (this.isBusy = !0, requestedZipcode = "", /^\s?\d{4}\s?([a-zA-Z]{2})?\s?$j/.test(a) ? (a = a.replace(/ /g, ""), lastEnteredAddress = a, explicitSearch = !0, x(a, b, "Postcode")) : (lastEnteredAddress = "", alert(sprintf("'%s' %s", a, "is geen geldige postcode !"))), void(this.isBusy = !1))
}
function searchByZipcode(zipcode, radius) {
if (this.isBusy) {
requestedZipcode = zipcode;
return; // is re-done after busy is cleared
}
this.isBusy = true;
requestedZipcode = '';
// Only accept zipcodes of the form 1234 or 1234AB or 12345 (with maybe whitespace inbetween digits and letters)
if (/^\s?\d{4}\s?([a-zA-Z]{2})?\s?$/.test(zipcode)) { 
zipcode = zipcode.replace(/ /g, ''); // remove all whitespace
lastEnteredAddress = zipcode;
explicitSearch = true;
zipcode=zipcode + ', Nederland';
searchByAddress(zipcode, radius, "Postcode");
}
else if(/^\s?\d{4}\s?$/.test(zipcode)){ 
zipcode = zipcode.replace(/ /g, ''); 
lastEnteredAddress = zipcode;
explicitSearch = true;
zipcode=zipcode + ', Belië';
searchByAddress(zipcode, radius, "Postcode"); 
}
else if(/^\s?\d{5}\s?$/.test(zipcode)){ 
zipcode = zipcode.replace(/ /g, ''); 
lastEnteredAddress = zipcode;
explicitSearch = true;
zipcode=zipcode + ', Germany';
searchByAddress(zipcode, radius, "Postcode");
} 
else {
lastEnteredAddress = '';
storeLocatorMessageXSS(sprintf("'%s' %s", zipcode, "is geen geldige postcode !"));
}
this.isBusy = false;
}
function searchByCity(city) {
if (this.isBusy) {
requestedPlace = city;
return; // is re-done after busy is cleared
}
requestedPlace = '';
this.isBusy = true;
explicitSearch = true;
var matchingStores = new Array();
var bounds = new google.maps.LatLngBounds();
var cityLowerCase = city.toLowerCase();
for (var index in storesCollection) {
var store = storesCollection[index];
if(storeVisibilityFunction(store) && (store.city.toLowerCase().indexOf(cityLowerCase) >=0)) {
matchingStores.push(store);
bounds.extend(store.marker.getPosition());
}
}
if (matchingStores.length == 0) {
setMapAreaToClosestByAddress(city, "Plaats");
} else {
storesSearchResult = matchingStores.slice(0);
storesSearchResult.sort(D);
if($("#map-canvas").is(":visible")) {
setMapArea(bounds);
if (brunaStoresMap.getZoom() > ZIPCODE_ZOOMLEVEL) {
brunaStoresMap.setZoom(ZIPCODE_ZOOMLEVEL);
}
} else {
listVisibleStores(matchingStores);
}
}
this.isBusy = false;
return false;
}
function setMapAreaToClosestByAddress(address, locationName) {
geocoder.geocode({ 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) { 
for (i = 0 ; i < results.length ; ++i){
var super_var1 = results[i].address_components;
for (j = 0 ; j < super_var1.length ; ++j){
var super_var2 = super_var1[j].types;
for (k = 0 ; k < super_var2.length ; ++k){
//find city
if (super_var2[k] == "locality"){ 
if(super_var1[j].long_name.toLowerCase() == address.toLowerCase()){ 
var point = results[0].geometry.location;
// calculate the smallest distance to a store
var minDist = 100;
var closestCity;
for (var index in storesCollection) {
var store = storesCollection[index];
if(storeVisibilityFunction(store)) {
var dist = google.maps.geometry.spherical.computeDistanceBetween(storesCollection[index].position, point) / 1000;
if (dist < minDist) {
minDist = dist;
closestCity = storesCollection[index].city;
}
}
}
// set the map area so that the closest store is visible
var latLngRadius = (minDist + 0.5) * ONE_KILOMETER;
var sw = new google.maps.LatLng(point.lat() - latLngRadius, point.lng() - latLngRadius);
var ne = new google.maps.LatLng(point.lat() + latLngRadius, point.lng() + latLngRadius);
var bounds = new google.maps.LatLngBounds(sw, ne);
var matchingStores = new Array();
if (minDist < 100) {
for (var index in storesCollection) {
var store = storesCollection[index];
if(storeVisibilityFunction(store) && store.city.toLowerCase() == closestCity.toLowerCase()) {
bounds.extend(store.position);
matchingStores.push(store);
}
}
}
if((results[0] != null) && (results[0].address_components != null)) {
address_components_loop:for(var address_component_index in results[0].address_components) {
var address_component = results[0].address_components[address_component_index];
if((address_component != null) && (address_component.types != null)) {
for(var type_index in address_component.types) {
var type = address_component.types[type_index];
if((type == "country") && (address_component.short_name != "NL")) {
storeLocatorMessageXSS("Er is geen Bruna winkel in deze buurt gevonden." + ("De dichtstbijzijnde winkel is in " + closestCity + "."));
break address_components_loop;
}
}
}
}
}
storesSearchResult = matchingStores.slice(0);
storesSearchResult.sort(D);
if($("#map-canvas").is(":visible")) {
setMapArea(bounds, point);
} else {
listVisibleStores(matchingStores);
} 
}
else{ 
storeLocatorMessageXSS(sprintf("%s '%s' %s", locationName, address, "is niet gevonden !")); 
}
} 
}
}
} 
}
else { 
storeLocatorMessageXSS(sprintf("%s '%s' %s", locationName, address, "is niet gevonden !"));
} 
});
}
function searchByAddress(address, radius, locationName) { 
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) { 
var initialPostalCode = "";
var initialCity = "";
var arrAddress = results[0].address_components;
$.each(arrAddress, function (i, address_component) {
if (address_component.types[0] == "postal_code") {
initialPostalCode = address_component.long_name;
}
if (address_component.types[0] == "locality") {
initialCity = address_component.long_name;
}
});
var matchingStores = new Array();
var point = results[0].geometry.location;
// calculate the smallest distance to a store
var minDist = 100;
var closestCity;
var initialPostalCodeFound = false;
var initialCityFound = false;
for (var index in storesCollection) {
var store = storesCollection[index];
if(storeVisibilityFunction(store)) {
store.dist = google.maps.geometry.spherical.computeDistanceBetween(store.position, point) / 1000;
if(store.dist < minDist) {
minDist = store.dist;
closestCity = store.city;
if(store.zip.replace(/ /g, "").toLowerCase() == initialPostalCode.replace(/ /g, "").toLowerCase()) {
initialPostalCodeFound = true;
if($.inArray(store, matchingStores) < 0) matchingStores.push(store);
}
if(store.city.toLowerCase() == initialCity.toLowerCase()) {
initialCityFound = true;
if($.inArray(store, matchingStores) < 0) matchingStores.push(store);
}
}
}
}
if (minDist < 100) {
// set the map area so that the closest store is visible
var latLngRadius = (minDist + 0.5) * ONE_KILOMETER;
var sw = new google.maps.LatLng(point.lat() - latLngRadius, point.lng() - latLngRadius);
var ne = new google.maps.LatLng(point.lat() + latLngRadius, point.lng() + latLngRadius);
var bounds = new google.maps.LatLngBounds(sw, ne);
if(initialPostalCodeFound || initialCityFound) {
storesSearchResult = matchingStores.slice(0);
storesSearchResult.sort(sortByDistance);
if($("#map-canvas").is(":visible")) {
setMapArea(bounds, results[0].geometry.location);
} else {
listVisibleStores(matchingStores);
}
} else {
matchingStores = new Array();
for (var index in storesCollection) {
var store = storesCollection[index];
if(storeVisibilityFunction(store) && store.city.toLowerCase() == closestCity.toLowerCase()) {
bounds.extend(store.position);
store.dist = google.maps.geometry.spherical.computeDistanceBetween(store.position, point) / 1000;
matchingStores.push(store);
}
}
storesSearchResult = matchingStores.slice(0);
storesSearchResult.sort(sortByDistance);
if((results[0] != null) && (results[0].address_components != null)) {
address_components_loop:for(var address_component_index in results[0].address_components) {
var address_component = results[0].address_components[address_component_index];
if((address_component != null) && (address_component.types != null)) {
for(var type_index in address_component.types) {
var type = address_component.types[type_index];
if((type == "country") && (address_component.short_name != "NL")) { 
storeLocatorMessageXSS("Er is geen Bruna winkel in deze buurt gevonden." + ("De dichtstbijzijnde winkel is in " + closestCity + "."));
break address_components_loop;
}
}
}
}
}
if($("#map-canvas").is(":visible")) {
setMapArea(bounds, point);
} else {
listVisibleStores(matchingStores);
}
}
}
else{ 
storeLocatorMessageXSS("Er is geen Bruna winkel in deze buurt gevonden."); 
}
} 
else { 
storeLocatorMessageXSS(sprintf("%s '%s' %s", locationName, address, "is niet gevonden !"));
}
});
}
function setMapArea(bounds, center) {
brunaStoresMap.setCenter(center ? center : bounds.getCenter());
brunaStoresMap.fitBounds(bounds);
storeInfoFader.hide();
}
/**
* Called implicitly by the "moveend" listener on the GMap2 object, and explicitly by recomputeStoresVisibility(),
* this method determines (with the help of another function) which stores should currently be
* visible.
*/
function computeMarkersVisibility() {
if($("#map-canvas").is(":visible")) {
var visibleStores = new Array();
var currentBounds = brunaStoresMap.getBounds();
var filteredOut = 0;
var minDist = 100;
var nearestStore = null;
var mapCenterPoint = brunaStoresMap.getCenter();
for (var index in storesCollection) {
var store = storesCollection[index];
var newVisibility = shouldStoreBeVisible(store, currentBounds);
if (newVisibility.visible) {
visibleStores.push(store);
} else if (newVisibility.filtered) {
filteredOut++;
}
setStoreVisibility(store, newVisibility.visible);
// Find nearest store, also look outside currentBounds (but honor visibility filter for hours/type/day)
if (storeVisibilityFunction(store)) {
var dist = google.maps.geometry.spherical.computeDistanceBetween(storesCollection[index].position, mapCenterPoint) / 1000;
if (dist < minDist) {
minDist = dist;
nearestStore = store;
}
}
}
if(storesSearchResult.length > 0) {
var storesToShowOnTheLeft = visibleStores.slice(0);
for(var i = 0; i < storesSearchResult.length; i++) {
storesToShowOnTheLeft.splice($.inArray(storesSearchResult[i], storesToShowOnTheLeft), 1);
}
storesToShowOnTheLeft.sort(D);
storesToShowOnTheLeft = storesSearchResult.concat(storesToShowOnTheLeft);
if(storesToShowOnTheLeft.length > maxStoresToList) {
storesToShowOnTheLeft = storesToShowOnTheLeft.splice(0, maxStoresToList);
}
listVisibleStores(storesToShowOnTheLeft);
} else {
listVisibleStores(brunaStoresMap.getZoom() > LIST_ZOOMLEVEL ? visibleStores : []);
}
if(visibleStores.length > 0) {
var markers = [];
$.each(visibleStores, function () {
markers.push(this.marker)
});
if(typeof markerClusterer != "undefined") {
markerClusterer.clearMarkers();
markerClusterer.addMarkers (markers);
} else {
markerClusterer = new MarkerClusterer(this.brunaStoresMap, markers, {
styles: [{
textColor: "white",
textSize: 18,
url: storesGroupIcon,
height: 36,
width: 34,
anchorText: [-2, 0]
}]
});
}
}
if (explicitSearch && visibleStores.length == 0) {
var suggestedCity = "";
if (nearestStore != null) {
suggestedCity = " De dichtstbijzijnde winkel is in " + nearestStore.city + ".";
// Jump to alternative (suggested) location...
(nearestStore.city);
}
storeLocatorMessageXSS((filteredOut > 0 ? "Er is geen Bruna winkel in deze buurt gevonden met de gekozen criteria." : "Er is geen Bruna winkel in deze buurt gevonden.") + suggestedCity );
}
explicitSearch = false; // reset this flag which might have been set earlier
}
}
function C(a) {
var b = Array.prototype.slice.call(arguments);
return b.shift(),
function () {
a.apply(void 0, b)
}
}
function D(a, b) {
return a.zip < b.zip ? -1 : a.zip > b.zip ? 1 : a.street < b.street ? -1 : a.street > b.street ? 1 : a.housenr - b.housenr
}
function sortByDistance(a, b) {
if (typeof a.dist !== 'undefined' && typeof b.dist !== 'undefined') {
return a.dist == b.dist ? 0 : a.dist > b.dist ? 1 : -1;
} else {
return D(a, b);
} 
}
function E(a) {
$j(".storelocator_listitem").removeClass("selected"), $j('.storelocator_listitem input[value="' + a + '"]').closest(".storelocator_listitem").addClass("selected")
}
function storePopup(a) {
//close all previous popups
$j("#storelocator_infopopup .storeinfo_content .close").click();
var b = storesCollection[a],
popup = $j("#storelocator_infopopup .storeinfo_content"),
closeButton = $j('<button type="button" class="close" aria-hidden="true">&times;</button>');
closeButton.click(function () {
G()
});
popup.append(closeButton);
popup.append($j('<div class="store__title">').html(b.title));
popup.append($j('<div class="store__address1">').html(b.street + " " + b.housenr + " " + b.housenraddition));
popup.append($j('<div class="store__address2">').html(b.zip + ", " + b.city));
$j('#StoreLocatorRouteFrom').attr('address', b.street + ' ' + b.housenr + ', ' + b.city);
var e = $j('<div class="store__owner">');
e.append($j('<div class="storeowner_title">')), e.append($j('<div class="storeowner_name">')), e.append($j('<div class="storeowner_phone">').html("Telefoon: " + b.phone)), popup.append(e);
var f = $j('<div class="store__mybruna form-group">'),
g = "mybruna" + b.no;
if(typeof isBOW !== 'undefined'){
f.append($j("<input id='preferredStoreID' storeNumber='"+b.storeid+"' storeZip='"+b.zip+"' type='checkbox' onclick='setPreferredStore(this.value, this.getAttribute(\"storeNumber\"), this.getAttribute(\"storeZip\"));' class='custom-checkbox'>").attr("name", g).attr("value", b.id)), f.append($j("<label onclick='document.getElementById(\"preferredStoreID\").click();'></label>").attr("for", g).html("Bruna-winkel")), popup.append(f);
} else {
f.append($j('<input id="preferredStoreID" storeNumber="'+b.storeid+'" type="checkbox" onclick="setPreferredStore(this.value);" class="custom-checkbox">').attr("name", g).attr("value", b.id)), f.append($j("<label id='setPreferredStore' onclick='setPreferredStore(document.getElementById(\"preferredStoreID\").value, document.getElementById(\"preferredStoreID\").getAttribute(\"storeNumber\"));'></label>").attr("for", g).html("Mijn Bruna")), popup.append(f);
if(b.id == $j('#StoreLocatorRouteFrom').attr('prefferedstore')) {
$j('#preferredStoreID').prop("checked", true);
}
else {
$j('#preferredStoreID').prop("checked", false);
}
}
var h = $j('<div class="store__openings">');
h.append($j('<div class="storeopenings_title">').html("Openingstijden")), h.append($j('<div class="store_opening monday">').append("<label>ma</label>").append(b.opening.monday)), h.append($j('<div class="store_opening tuesday">').append("<label>di</label>").append(b.opening.tuesday)), h.append($j('<div class="store_opening wednesday">').append("<label>wo</label>").append(b.opening.wednesday)), h.append($j('<div class="store_opening thursday">').append("<label>do</label>").append(b.opening.thursday)), h.append($j('<div class="store_opening friday">').append("<label>vr</label>").append(b.opening.friday)), h.append($j('<div class="store_opening saturday">').append("<label>za</label>").append(b.opening.saturday)), h.append($j('<div class="store_opening sunday">').append("<label>zo</label>").append(b.opening.sunday)), popup.append(h), popup.parent().show()
}
function G() {
$j("#storelocator_infopopup").hide(), $j("#storelocator_infopopup .storeinfo_content").html("")
}
function listVisibleStores(a) {
if (storesListCanvas.innerHTML = "", 0 == a.length || a.length > this.maxStoresToList) {
$j(".storelocator_pagination").css("visibility", "hidden");
$j(storesListCanvas).animate({
scrollTop: 0
}, 100);
for (var b = 0; STORES_PER_PAGE > b; b++) $j(storesListCanvas).append($j("<div>").addClass("storelocator_listitem default"))
} else {
initializeStoreLocationsPaginationBlock(a.length);
if(storesSearchResult.length == 0) { a.sort(D) } ;
for (var c = 0; c < a.length && c < this.maxStoresToList; c++) {
var d = a[c],
e = $j("<div>").addClass("storelocator_listitem");
e.attr("data-id", d.no).attr("id", "store" + c).attr("store-id", d.id).attr("store-name", d.storeid).attr("store-zip", d.zip), e.click(function () {
if(typeof isBOW !== 'undefined'){
setPreferredStore($(this).attr("store-id") ,$(this).attr("store-name"), $(this).attr("store-zip"));
} else {
$(this).find('input[type=radio]').trigger("click");
}
C(d.no, d.title)
});
var setStoreMessage = "Mijn Bruna";
if(typeof isBOW !== 'undefined'){
var f = $j('<div class="storelocator_mybruna radio-inline" ><input type="radio" class="custom-radio" name="mybruna" value="' + d.no + '"/><label for="mybruna">Bruna-winkel</label></div>').appendTo(e);
} else {
var f = $j('<div class="storelocator_mybruna radio-inline"><input type="radio" name="mybruna" value="' + d.no + '" onclick="setPreferredStore(\'' + d.id + '\',\''+d.storeid+'\');"/><label for="mybruna">Mijn Bruna</label></div>').appendTo(e);
}
f.click(function () {
var a = $j(this).closest(".storelocator_listitem").attr("data-id");
E(a)
}); {
var g = $j("<div>").addClass("storelocator_storeaddress");
$j("<div>").addClass("storelocator_street").html(d.street + " " + d.housenr + " " + d.housenraddition).appendTo(g), $j("<div>").addClass("storelocator_zip").html(d.zip).appendTo(g), $j("<div>").addClass("storelocator_city").html(d.city).appendTo(g)
}
g.appendTo(e);
if(typeof isBOW === 'undefined'){
var h = $j("<a>").addClass("storelocator_openlink").html("Openingstijden").appendTo(e);
h.click(function (event) {
event.stopPropagation();
var a = $j(this).closest(".storelocator_listitem").attr("data-id");
storePopup(a);
})
}
storesListCanvas.appendChild(e.get(0));
if(typeof isBOW !== 'undefined'){
if($("#SelectedStoreID").val() == d.id){
$j('div[store-name="' + d.storeid + '"]').addClass("selected");
$j('input[name=mybruna][value="' + d.no + '"]').prop("checked", true);
}
}else{
if(d.id == $j('#StoreLocatorRouteFrom').attr('prefferedstore')) {
$j('input[name=mybruna]').prop("checked", true);
}
else {
$j('input[name=mybruna]').prop("checked", false);
}
}
}
}
}
function setStoreVisibility(store, visible) {
if (visible) {
store.marker.setMap(brunaStoresMap);
} else {
store.marker.setMap(null);
}
store.visible = visible;
return visible;
}
/**
* Returns whether the given store should be considered visible.
* Both the given bounds, as well as the storeVisibilityFunction (provided by map.jsp) are
* used to determine the visibility.
* @param {Object} store the store
* @param {Object} bounds the bounds of the current map viewport
* @return {visible, filtered} : visible=true -> the store is visible;
* filtered=true -> the store is not visible
* because of the storeVisibilityFunction
*/
function shouldStoreBeVisible(store, bounds) {
if (! storeVisibilityFunction(store)) {
return {visible: false, filtered: true};
};
if (! bounds.contains(store.position)) {
return {visible: false, filtered: false};
}
return {visible: true, filtered: false};
}
function K(a, b, c) {
var d = document.createElement("div");
return d.id = b, d.style.position = "absolute", d.style.visibility = "hidden", d.style.zIndex = c + "", a.appendChild(d), d
}
function useCurrentLocation() {
navigator.geolocation && navigator.geolocation.getCurrentPosition(function (a) {
var b = 5,
c = b * ONE_KILOMETER / 2,
d = new google.maps.LatLng(a.coords.latitude - c, a.coords.longitude - c),
e = new google.maps.LatLng(a.coords.latitude + c, a.coords.longitude + c),
f = new google.maps.LatLngBounds(d, e),
g = new google.maps.LatLng(a.coords.latitude, a.coords.longitude);
setMapArea(f, g), brunaStoresMap.getZoom() > ZIPCODE_ZOOMLEVEL && brunaStoresMap.setZoom(ZIPCODE_ZOOMLEVEL)
}, function (a) {
switch (a.code) {
case a.TIMEOUT:
alert("Timeout bij het bepalen van uw huidige positie.");
break;
case a.POSITION_UNAVAILABLE:
alert("Uw huidige positie kan niet bepaald worden.");
break;
case a.PERMISSION_DENIED:
alert("Locatievoorzieningen zijn momenteel niet beschikbaar. Controleer bij uw instellingen of u deze aan heeft staan.");
break;
case a.UNKNOWN_ERROR:
alert("Onbekende fout bij het bepalen van uw positie.")
}
})
}
return b()
}
function findStoresByPostalCodeOrCity(searchValue) {
if(searchValue != '') {
// Only accept zipcodes of the form 1234 or 1234AB or 12345(with maybe whitespace inbetween digits and letters)
if (/^\s?\d{4}\s?([a-zA-Z]{2})?\s?$/.test(searchValue) || /^\s?\d{5}\s?$/.test(searchValue)) {
storeLocationsMap.searchByZipcode(searchValue, 5);
} else{
storeLocationsMap.searchByCity(searchValue);
} 
}
}
function setPreferredStore(storeId, StoreNo, StoreZip) {
if(typeof isBOW !== 'undefined'){
$('#SelectedStoreID').val(storeId);
$('#SelectedStoreName').val(StoreNo);
$('#SelectedStoreZip').val(StoreZip);
if($('#ShippingMethodUUID').val() == 'PickupInStore'){
$('.delivery-details__selectedstore').html('Bruna '+StoreNo);
}
$j(".storelocator_listitem").removeClass("selected");
$j('div[store-name="' + StoreNo + '"]').addClass("selected").find("input").prop("checked", true);
$j("#anotherstore_error_message").addClass("hidden");
$j(".bow__pdelivery-other").removeClass("anotherstore_error");
}else{
jQuery.ajax({
type: "POST",
url: savePreferredStoreUrl,
data: {
StoreID: storeId
},
success: function (data) {
if(data.success = "true") {
window.location.replace(window.location.href);
}
}
});
}
}
function recomputeStoresVisibility() {
storesSearchResult = [];
setStoreSelectors();
if($j("#storelocator-postalcode").val() != '') {
startSearch();
} else {
explicitSearch = true;
computeMarkersVisibility();
}
}
function setStoreSelectors() {
if (document.getElementById("opentoday").checked) {
var filterTimeSelectBox = document.getElementById("opentoday");
storeSelectors.time = $j("#storelocator_openlimit").val();
storeSelectors.day = new Date().getDay() -1; // our weeks start on monday !
if (storeSelectors.day == -1) {
storeSelectors.day = 6;
}
} else {
storeSelectors.time = undefined;
}
storeSelectors.sundayOnly = document.getElementById("opensunday").checked;
}
function storeLocatorVisibilityFunction(store) {
if (storeSelectors.sundayOnly && (! store.opensunday)) {
return false;
}
if (storeSelectors.time != undefined) {
var time = storeSelectors.time.replace(/:/g,"")
if (store.hours[storeSelectors.day].U == '') // store is closed or unknown
{
return false;
}
if (store.hours[storeSelectors.day].U <= time) {
return false;
}
}
return true;
}
function openRouteDescription() {
var routeFrom = $j("#StoreLocatorRouteFrom").val();
if(routeFrom != "") {
$j("#StoreLocatorRouteFrom").closest("form").removeClass("has-error");
var url = sprintf("http://maps.google.nl/maps?saddr=%s&daddr=%s", encodeURI($j("#StoreLocatorRouteFrom").val()), encodeURI($j("#StoreLocatorRouteFrom").attr('address')));
window.open(url, '_blank');
}
else {
$j("#StoreLocatorRouteFrom").closest("form").addClass("has-error");
}
}
function startSearch() {
$j("#storelocator_error").hide().find(".storelocator__errormessage").html("");
findStoresByPostalCodeOrCity($j("#storelocator-postalcode").val());
}
$j(document).ready(function () {
$j(".showStorelocator_link").click(function() {
initializeBrunaStoreLocatorMap();
setupStoreLocationsPaginationButtons();
$j("#storelocator-br").removeClass("hidden");
});
$j("#storelocator_button").click(function() {
storesSearchResult = [];
if($j("#storelocator-postalcode").val() != '') {
startSearch();
} else {
storeLocatorMessageXSS("Vul eerst een postcode of plaatsnaam in.");
}
});
$(".storelocator_pagination").on("click touchstart", ".storelocator_nextLink:not(.disabled)", storeLocatorListNextPage);
$(".storelocator_pagination").on("click touchstart", ".storelocator_prevLink:not(.disabled)", storeLocatorListPrevPage);
$j("#storelocator-postalcode").keypress(function(e) {
if(e.which == 13) {
e.preventDefault(); 
$j("#storelocator_button").click();
}
}); 
$j("#StoreLocatorRouteFrom").keypress(function(e) {
if(e.keyCode == 13) { 
e.preventDefault(); 
$j("#StoreLocatorRouteButton").click();
}
});
$j("#opensunday, #opentoday").click(function() {
recomputeStoresVisibility();
});
$j("#storelocator_openlimit ~ ul li").click(function() {
if($j("#opentoday").get(0).checked) {
$j("#storelocator_openlimit").val($(this).text());
recomputeStoresVisibility();
}
});
});


stores=
{

store4:
{
no:4,
storeid:"0110",
id:"ntjAqPywXoEAAAFK1TEM0ibF",
title:"Bruna Genderenplein, HOOFDDORP",
street:"Genderenplein",
housenr:20,
housenraddition:"",
city:"HOOFDDORP",
zip:"2134 DP",
owner:"Mevrouw B. Bronkhorst",
phone:"023-5619043",
latitude:52.3063861,
longitude:4.6390352,
opening:
{
monday:"08:00 - 18:00",
tuesday:"08:00 - 18:00",
wednesday:"08:00 - 18:00",
thursday:"08:00 - 18:00",
friday:"08:00 - 20:00",
saturday:"08:30 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00"},
{"D":"vrijdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store5:
{
no:5,
storeid:"0111",
id:"ghrAqPywA24AAAFKzzEM0ibF",
title:"Bruna Stationsstraat, OOSTERWOLDE",
street:"Stationsstraat",
housenr:19,
housenraddition:"",
city:"OOSTERWOLDE",
zip:"8431 ET",
owner:"De heer C. Adams",
phone:"0516-512145",
latitude:52.9896499,
longitude:6.2912631,
opening:
{
monday:"09:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 21:00",
friday:"09:00 - 18:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store6:
{
no:6,
storeid:"0151",
id:"c73AqPywYJoAAAFK0TEM0ibF",
title:"Bruna Rivieradreef, HAARLEM",
street:"Rivieradreef",
housenr:28,
housenraddition:"",
city:"HAARLEM",
zip:"2037 AH",
owner:"Mevrouw B. Bronkhorst",
phone:"023-5339719",
latitude:52.3587558,
longitude:4.6537149,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12-17 (laatste vd mnd) "
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"12", "U":"17", "C": "12-17 (laatste vd mnd) "}
],
opensunday: true
},
store7:
{
no:7,
storeid:"0154",
id:"ujfAqPywXoAAAAFK1TEM0ibF",
title:"Bruna Hoofdstraat, RAAMSDONKSVEER",
street:"Hoofdstraat",
housenr:29,
housenraddition:"",
city:"RAAMSDONKSVEER",
zip:"4941 DC",
owner:"Mevrouw Y. van der Wal",
phone:"0162-512705",
latitude:51.6960088,
longitude:4.8741175,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store8:
{
no:8,
storeid:"0155",
id:"9tHAqPywZLoAAAFK2TEM0ibF",
title:"Bruna Voorstraat, VIANEN",
street:"Voorstraat",
housenr:49,
housenraddition:"",
city:"VIANEN",
zip:"4132 AN",
owner:"De heer B. van Mourik",
phone:"0347-767022",
latitude:51.9943500,
longitude:5.0923057,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store9:
{
no:9,
storeid:"0159",
id:"DBfAqPywNhsAAAFK4DEM0ibF",
title:"Bruna van Hogendorpstraat, WASSENAAR",
street:"van Hogendorpstraat",
housenr:135,
housenraddition:"",
city:"WASSENAAR",
zip:"2242 PE",
owner:"Mevrouw C. Verhoeven",
phone:"070-5110365",
latitude:52.1453845,
longitude:4.3948441,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store10:
{
no:10,
storeid:"0160",
id:"IInAqPyw5VkAAAFK3jEM0ibF",
title:"Bruna Heerenweg, HEILOO",
street:"Heerenweg",
housenr:67,
housenraddition:"",
city:"HEILOO",
zip:"1851 KL",
owner:"Mevrouw I. Griemink",
phone:"072-5321351",
latitude:52.6040240,
longitude:4.7093157,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store11:
{
no:11,
storeid:"0161",
id:"kXHAqPyw3ZwAAAFK4TEM0ibF",
title:"Bruna Diemerplein, DIEMEN",
street:"Diemerplein",
housenr:34,
housenraddition:"",
city:"DIEMEN",
zip:"1111 JD",
owner:"De heer F. Keijzer",
phone:"020-7670468",
latitude:52.342376,
longitude:4.963766,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store12:
{
no:12,
storeid:"0162",
id:"ljnAqPywa.sAAAFK3zEM0ibF",
title:"Bruna Kloosterstraat, VENLO",
street:"Kloosterstraat",
housenr:54,
housenraddition:"",
city:"VENLO",
zip:"5921 HD",
owner:"Mevrouw V. Cox",
phone:"077-7676029",
latitude:51.3670249,
longitude:6.1516043,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store13:
{
no:13,
storeid:"0163",
id:"FLPAqPyw240AAAFK4jEM0ibF",
title:"Bruna Drossestraat, HAARLEM",
street:"Drossestraat",
housenr:22,
housenraddition:"B",
city:"HAARLEM",
zip:"2011 XW",
owner:"Mevrouw B. Bronkhorst",
phone:"023-7676274",
latitude:52.3815806,
longitude:4.6306976,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store14:
{
no:14,
storeid:"0165",
id:"qNzAqPyw3Z0AAAFK4TEM0ibF",
title:"Bruna Ursulinenstraat, ECHT",
street:"Ursulinenstraat",
housenr:9,
housenraddition:"",
city:"ECHT",
zip:"6101 DP",
owner:"Mevrouw T. Goris",
phone:"0475-484114",
latitude:51.1050650,
longitude:5.8663376,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 20:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store15:
{
no:15,
storeid:"0166",
id:"FbHAqPywkgIAAAFK5TEM0ibF",
title:"Bruna Torenzichtlaan, LEERSUM",
street:"Torenzichtlaan",
housenr:5,
housenraddition:"",
city:"LEERSUM",
zip:"3956 HE",
owner:"Mevrouw T. Goris",
phone:"0343-456682",
latitude:52.0108522,
longitude:5.4308704,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store16:
{
no:16,
storeid:"0167",
id:"4T_AqPyw24wAAAFK4jEM0ibF",
title:"Bruna Europaplein, ALKMAAR",
street:"Europaplein",
housenr:63,
housenraddition:"",
city:"ALKMAAR",
zip:"1825 TL",
owner:"Mevrouw B. Bronkhorst",
phone:"072-7676054",
latitude:52.6554886,
longitude:4.7588921,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store17:
{
no:17,
storeid:"0168",
id:"b63AqPyw24sAAAFK4jEM0ibF",
title:"Bruna Waldenlaan, AMSTERDAM",
street:"Waldenlaan",
housenr:3,
housenraddition:"",
city:"AMSTERDAM",
zip:"1093 NH",
owner:"Mevrouw D.J.F. Buijs",
phone:"020- 7670062",
latitude:52.3572390,
longitude:4.9305103,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store18:
{
no:18,
storeid:"0169",
id:"7vjAqPywzHgAAAFK4zEM0ibF",
title:"Bruna Hoogstraat, PURMEREND",
street:"Hoogstraat",
housenr:4,
housenraddition:"",
city:"PURMEREND",
zip:"1441 BC",
owner:"Mevrouw T. Goris",
phone:"0299-434455",
latitude:52.5094968,
longitude:4.9455337,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store19:
{
no:19,
storeid:"0170",
id:"taXAqPywzHcAAAFK4zEM0ibF",
title:"Bruna Watermanweg, ROTTERDAM",
street:"Watermanweg",
housenr:339,
housenraddition:"",
city:"ROTTERDAM",
zip:"3067 GA",
owner:"Mevrouw C. Casteleins",
phone:"010-4559398",
latitude:51.9512357,
longitude:4.5611725,
opening:
{
monday:"11:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:30 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1730", "C":"11:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store20:
{
no:20,
storeid:"0171",
id:"6hbAqPyw158AAAFK5DEM0ibF",
title:"Bruna Dorpsstraat, MIERLO",
street:"Dorpsstraat",
housenr:160,
housenraddition:"",
city:"MIERLO",
zip:"5731 JL",
owner:"Lotte Wijnheimer",
phone:"0492-665588",
latitude:51.4433059,
longitude:5.6192535,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store21:
{
no:21,
storeid:"0172",
id:"yg3AqPyw16AAAAFK5DEM0ibF",
title:"Bruna Deutzstraat, HEEMSKERK",
street:"Deutzstraat",
housenr:23,
housenraddition:"A",
city:"HEEMSKERK",
zip:"1961 NS",
owner:"Mevrouw B. Bronkhorst",
phone:"0251-253208",
latitude:52.5111195,
longitude:4.6703802,
opening:
{
monday:"11:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 21:00",
friday:"09:00 - 18:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store22:
{
no:22,
storeid:"0173",
id:"JUbAqPyw16EAAAFK5DEM0ibF",
title:"Bruna Voorstraat, WOERDEN",
street:"Voorstraat",
housenr:66,
housenraddition:"",
city:"WOERDEN",
zip:"3441 CN",
owner:"Mevrouw E. Riemsdijk",
phone:"0348-434920",
latitude:52.0858453,
longitude:4.8864744,
opening:
{
monday:"13:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 18:00",
friday:"09:00 - 21:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store23:
{
no:23,
storeid:"0202",
id:"uPvAqPywkgMAAAFK5TEM0ibF",
title:"Bruna Raadhuisplein, OOSTBURG",
street:"Raadhuisplein",
housenr:9,
housenraddition:"A",
city:"OOSTBURG",
zip:"4501 BG",
owner:"Mevrouw Y. van der Wal",
phone:"0117-453158",
latitude:51.3270290,
longitude:3.4879554,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store24:
{
no:24,
storeid:"0205",
id:"SSvAqPywkgQAAAFK5TEM0ibF",
title:"Bruna Kronenburgpassage, ARNHEM",
street:"Kronenburgpassage",
housenr:94,
housenraddition:"",
city:"ARNHEM",
zip:"6831 ER",
owner:"De heer B. van Mourik",
phone:"026-4820055",
latitude:51.9589758,
longitude:5.8960161,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store25:
{
no:25,
storeid:"0217",
id:"c9XAqPywFWwAAAFK7DEM0ibF",
title:"Bruna de Loper, VLAARDINGEN",
street:"de Loper",
housenr:11,
housenraddition:"",
city:"VLAARDINGEN",
zip:"3136 CM",
owner:"Mevrouw Y. van der Wal",
phone:"010-2490632",
latitude:51.9310944,
longitude:4.3463584,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store26:
{
no:26,
storeid:"0228",
id:"ttfAqPyw30cAAAFK5zEM0ibF",
title:"Bruna Kerkstraat, HORST",
street:"Kerkstraat",
housenr:3,
housenraddition:"A",
city:"HORST",
zip:"5961 GC",
owner:"Mevrouw V. Cox",
phone:"077-3983672",
latitude:51.4517539,
longitude:6.0536705,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store27:
{
no:27,
storeid:"0252",
id:"sUPAqPywpVAAAAFK5jEM0ibF",
title:"Bruna Nachtegaalstraat, UTRECHT",
street:"Nachtegaalstraat",
housenr:83,
housenraddition:"",
city:"UTRECHT",
zip:"3581 AE",
owner:"De heer F. Keijzer",
phone:"030-2310910",
latitude:52.0911814,
longitude:5.1325194,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store28:
{
no:28,
storeid:"0257",
id:"f.zAqPywpVEAAAFK5jEM0ibF",
title:"Bruna Zuidhaven, ZEVENBERGEN",
street:"Zuidhaven",
housenr:173,
housenraddition:"",
city:"ZEVENBERGEN",
zip:"4761 CX",
owner:"mevrouw W. Blokzijl",
phone:"0168-324874",
latitude:51.6436511,
longitude:4.6023412,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store29:
{
no:29,
storeid:"0284",
id:"agPAqPyw30UAAAFK5zEM0ibF",
title:"Bruna Nieuwe Gouw, LANDSMEER",
street:"Nieuwe Gouw",
housenr:24,
housenraddition:"",
city:"LANDSMEER",
zip:"1121 GX",
owner:"Mevrouw T. Goris",
phone:"020-4823773",
latitude:52.4286436,
longitude:4.9148024,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store30:
{
no:30,
storeid:"0288",
id:"0GDAqPyw30YAAAFK5zEM0ibF",
title:"Bruna Stationsweg, ZUIDLAREN",
street:"Stationsweg",
housenr:15,
housenraddition:"D",
city:"ZUIDLAREN",
zip:"9471 GJ",
owner:"Mevrouw T. Goris",
phone:"050-4094883",
latitude:53.0935793,
longitude:6.6851282,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store31:
{
no:31,
storeid:"0305",
id:"UNLAqPywIVMAAAFK6DEM0ibF",
title:"Bruna Kon. Julianaplein, VOORBURG",
street:"Kon. Julianaplein",
housenr:24,
housenraddition:"",
city:"VOORBURG",
zip:"2273 BR",
owner:"Mevrouw C.E. Verhoeve",
phone:"070-3860129",
latitude:52.0762961,
longitude:4.3582843,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store32:
{
no:32,
storeid:"0314",
id:"E1LAqPywIVQAAAFK6DEM0ibF",
title:"Bruna Plein, NIEUWEGEIN",
street:"Plein",
housenr:1,
housenraddition:"",
city:"NIEUWEGEIN",
zip:"3431 LV",
owner:"Mevrouw A.V. Voulon",
phone:"030-6044168",
latitude:52.0288738,
longitude:5.0823696,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store33:
{
no:33,
storeid:"0329",
id:"R_fAqPywNn4AAAFK6TEM0ibF",
title:"Bruna Kerkstraat, HUIZEN",
street:"Kerkstraat",
housenr:36,
housenraddition:"",
city:"HUIZEN",
zip:"1271 RM",
owner:"Mevrouw A.R.J. Westerhuis",
phone:"035-5254050",
latitude:52.2974316,
longitude:5.2342925,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store34:
{
no:34,
storeid:"0333",
id:"YyHAqPywNn8AAAFK6TEM0ibF",
title:"Bruna Oost. Handelskade, AMSTERDAM",
street:"Oost. Handelskade",
housenr:1061,
housenraddition:"",
city:"AMSTERDAM",
zip:"1019 BW",
owner:"Mevrouw D.J.F. Buijs",
phone:"020-4197264",
latitude:52.3739725,
longitude:4.9380876,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store35:
{
no:35,
storeid:"0354",
id:"kITAqPywNoAAAAFK6TEM0ibF",
title:"Bruna Noordeinde, ALMERE",
street:"Noordeinde",
housenr:26,
housenraddition:"",
city:"ALMERE",
zip:"1334 AV",
owner:"Mevrouw A.R.J. Westerhuis",
phone:"036-5321661",
latitude:52.3949136,
longitude:5.2767532,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store36:
{
no:36,
storeid:"0366",
id:"LL3AqPywUAYAAAFK6jEM0ibF",
title:"Bruna Damstraat, ZAANDAM",
street:"Damstraat",
housenr:11,
housenraddition:"",
city:"ZAANDAM",
zip:"1506 BH",
owner:"De heer K. van Poelgeest",
phone:"075-6164983",
latitude:52.4395925,
longitude:4.8236546,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store37:
{
no:37,
storeid:"0386",
id:"1rrAqPywUAcAAAFK6jEM0ibF",
title:"Bruna Gijsbr. van Amstelstraat, HILVERSUM",
street:"Gijsbr. van Amstelstraat",
housenr:123,
housenraddition:"",
city:"HILVERSUM",
zip:"1214 AW",
owner:"De heer N.A.H.A. Voorbach",
phone:"035-6247571",
latitude:52.2158225,
longitude:5.1705774,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store38:
{
no:38,
storeid:"0397",
id:"cCPAqPywUAgAAAFK6jEM0ibF",
title:"Bruna Onderdoor, HOUTEN",
street:"Onderdoor",
housenr:62,
housenraddition:"",
city:"HOUTEN",
zip:"3995 DX",
owner:"Mevrouw E. Gielen",
phone:"030-6342239",
latitude:52.0342604,
longitude:5.1685041,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store39:
{
no:39,
storeid:"0601",
id:"qL3AqPywacsAAAFK6zEM0ibF",
title:"Bruna Rompertpassage, DEN BOSCH",
street:"Rompertpassage",
housenr:18,
housenraddition:"",
city:"DEN BOSCH",
zip:"5233 AN",
owner:"De heer F.J.F. Mees",
phone:"073-6450240",
latitude:51.7123113,
longitude:5.3129360,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store40:
{
no:40,
storeid:"0603",
id:"iFvAqPywacoAAAFK6zEM0ibF",
title:"Bruna Winkelcentrum de Aarhof, ALPHEN A&#47;D RIJN",
street:"Winkelcentrum de Aarhof",
housenr:70,
housenraddition:"",
city:"ALPHEN A&#47;D RIJN",
zip:"2406 BT",
owner:"De heer M.H.J. Jacobs",
phone:"0172-475669",
latitude:52.1294003,
longitude:4.6658379,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store41:
{
no:41,
storeid:"0604",
id:"HgHAqPywacwAAAFK6zEM0ibF",
title:"Bruna J. van  Schaffelaarstraat, BARNEVELD",
street:"J. van  Schaffelaarstraat",
housenr:20,
housenraddition:"A",
city:"BARNEVELD",
zip:"3771 BT",
owner:"Mevrouw A.C. Landsaat",
phone:"0342-413176",
latitude:52.1403453,
longitude:5.5858833,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store42:
{
no:42,
storeid:"0605",
id:"UTrAqPywFWsAAAFK7DEM0ibF",
title:"Bruna Callunaplein, DIEREN",
street:"Callunaplein",
housenr:108,
housenraddition:"",
city:"DIEREN",
zip:"6951 CR",
owner:"Dhr J.P. den Boef, mw H. den Boef-Adels en mw D. Horsten-den Boef",
phone:"0313-415793",
latitude:52.0508213,
longitude:6.1013538,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store43:
{
no:43,
storeid:"0608",
id:"_jXAqPywNb4AAAFK7TEM0ibF",
title:"Bruna Arkendonk, OOSTERHOUT",
street:"Arkendonk",
housenr:31,
housenraddition:"",
city:"OOSTERHOUT",
zip:"4907 XT",
owner:"Mevrouw D.O. Ribeiro",
phone:"0162-469255",
latitude:51.6581003,
longitude:4.8632020,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store44:
{
no:44,
storeid:"0611",
id:"8yvAqPywNb0AAAFK7TEM0ibF",
title:"Bruna Steenstraat, BOXMEER",
street:"Steenstraat",
housenr:55,
housenraddition:"",
city:"BOXMEER",
zip:"5831 JB",
owner:"De heer F.D.M. Prudon",
phone:"0485-571141",
latitude:51.6472594,
longitude:5.9515757,
opening:
{
monday:"13:00 - 18:00",
tuesday:"09:30 - 18:00",
wednesday:"09:30 - 18:00",
thursday:"09:30 - 18:00",
friday:"09:30 - 20:00",
saturday:"09:30 - 17:00",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00"},
{"D":"donderdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00"},
{"D":"vrijdag", "F":"0930", "U":"2000", "C":"09:30 - 20:00"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store45:
{
no:45,
storeid:"0615",
id:"9azAqPywNb8AAAFK7TEM0ibF",
title:"Bruna Nieuwstraat, BAARLE-NASSAU",
street:"Nieuwstraat",
housenr:15,
housenraddition:"",
city:"BAARLE-NASSAU",
zip:"5111 CV",
owner:"Mevrouw J.G.C.M. Laurijssen-Aerts",
phone:"013-5077771",
latitude:51.4432750,
longitude:4.9290101,
opening:
{
monday:"13:00 - 17:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"10:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1700", "C":"13:00 - 17:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1000", "U":"1700", "C": "10:00 - 17:00 uur"}
],
opensunday: true
},
store46:
{
no:46,
storeid:"0616",
id:"TRnAqPywykcAAAFK8TEM0ibF",
title:"Bruna Julianaplein, BEUNINGEN",
street:"Julianaplein",
housenr:28,
housenraddition:"",
city:"BEUNINGEN",
zip:"6641 CT",
owner:"De heer A.W.M. Rosijn en de heer W.A.M. Rosijn",
phone:"024-6773148",
latitude:51.8614179,
longitude:5.7710559,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store47:
{
no:47,
storeid:"0617",
id:"9nvAqPywjSEAAAFK7jEM0ibF",
title:"Bruna Hugo de Grootstraat, DRUNEN",
street:"Hugo de Grootstraat",
housenr:20,
housenraddition:"",
city:"DRUNEN",
zip:"5151 EH",
owner:"De heer H. Ponne en mw N.C. Ponne-Burk",
phone:"0416-378777",
latitude:51.6858891,
longitude:5.1329646,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store48:
{
no:48,
storeid:"0619",
id:"5w7AqPywkIwAAAFK8DEM0ibF",
title:"Bruna Grotestraat, GOOR",
street:"Grotestraat",
housenr:101,
housenraddition:"",
city:"GOOR",
zip:"7471 BM",
owner:"De heer H. Tieman en mevrouw J. Tieman-Schippers",
phone:"0547-273176",
latitude:52.2326616,
longitude:6.5862995,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 19:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:00 - 16:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1900", "C":"08:30 - 19:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1600", "C":"08:00 - 16:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store49:
{
no:49,
storeid:"0620",
id:"saDAqPywjSIAAAFK7jEM0ibF",
title:"Bruna Wagnerplein, TILBURG",
street:"Wagnerplein",
housenr:51,
housenraddition:"",
city:"TILBURG",
zip:"5011 LR",
owner:"De heer B.G.H. van Roemburg",
phone:"013-5470623",
latitude:51.5838659,
longitude:5.0857949,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store50:
{
no:50,
storeid:"0621",
id:"AMrAqPyw96AAAAFK7zEM0ibF",
title:"Bruna De Eglantier, APELDOORN",
street:"De Eglantier",
housenr:422,
housenraddition:"",
city:"APELDOORN",
zip:"7329 DL",
owner:"De heer J. Diependaal",
phone:"055-5425588",
latitude:52.1958950,
longitude:6.0053006,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store51:
{
no:51,
storeid:"0622",
id:"39HAqPyw96EAAAFK7zEM0ibF",
title:"Bruna Korte Bisschopstraat, DEVENTER",
street:"Korte Bisschopstraat",
housenr:33,
housenraddition:"",
city:"DEVENTER",
zip:"7411 HJ",
owner:"De heer E.A.A. Rouwendal en mevrouw I. Rouwendal-Evers",
phone:"0570-612354",
latitude:52.2536380,
longitude:6.1593841,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"09:00 - 17:30 uur",
sunday:"1e zondag v&#47;d maand"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zondag", "F":"", "U":"", "C": "1e zondag v&#47;d maand"}
],
opensunday: true
},
store52:
{
no:52,
storeid:"0623",
id:"jrbAqPywkIsAAAFK8DEM0ibF",
title:"Bruna Wolfsberg, DEURNE",
street:"Wolfsberg",
housenr:34,
housenraddition:"",
city:"DEURNE",
zip:"5751 GX",
owner:"De heer R. Kuijper en mw M.H.W. Kuijper-Meeuwis",
phone:"0493-351135",
latitude:51.4619772,
longitude:5.7962126,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store53:
{
no:53,
storeid:"0626",
id:"_7_AqPywkI0AAAFK8DEM0ibF",
title:"Bruna Nieuwe Marktpassage, GOUDA",
street:"Nieuwe Marktpassage",
housenr:28,
housenraddition:"",
city:"GOUDA",
zip:"2801 HV",
owner:"De heer B. Adamse",
phone:"0182-550032",
latitude:52.0141248,
longitude:4.7113222,
opening:
{
monday:"12:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1730", "C":"12:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store54:
{
no:54,
storeid:"0627",
id:"5s7AqPywykYAAAFK8TEM0ibF",
title:"Bruna Hoofdstraat, HILLEGOM",
street:"Hoofdstraat",
housenr:130,
housenraddition:"",
city:"HILLEGOM",
zip:"2181 EH",
owner:"De heer P. Wilschut",
phone:"0252-525973",
latitude:52.2922385,
longitude:4.5783262,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18::00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18::00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store56:
{
no:56,
storeid:"0633",
id:"l0HAqPywykgAAAFK8TEM0ibF",
title:"Bruna Middenwaard, HEERHUGOWAARD",
street:"Middenwaard",
housenr:78,
housenraddition:"",
city:"HEERHUGOWAARD",
zip:"1703 SH",
owner:"De heer J.R. Biesma en mw A. Biesma-Palm",
phone:"072-5712531",
latitude:52.6638426,
longitude:4.8273495,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store57:
{
no:57,
storeid:"0635",
id:"YlnAqPywDRgAAAFK8jEM0ibF",
title:"Bruna Lange Vorststraat, GOES",
street:"Lange Vorststraat",
housenr:14,
housenraddition:"",
city:"GOES",
zip:"4461 JP",
owner:"Mevrouw L.D. van Dongen-Verdoes",
phone:"0113-227424",
latitude:51.5044378,
longitude:3.8920073,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 21:00 uur",
friday:"08:00 - 18:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store58:
{
no:58,
storeid:"0637",
id:"bcbAqPywaVcAAAFK8zEM0ibF",
title:"Bruna Handelplein, NIEUW VENNEP",
street:"Handelplein",
housenr:21,
housenraddition:"",
city:"NIEUW VENNEP",
zip:"2151 NL",
owner:"Mevrouw R. Severing",
phone:"0252-234389",
latitude:52.2712943,
longitude:4.6198333,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store59:
{
no:59,
storeid:"0641",
id:".QPAqPywUdIAAAFK9DEM0ibF",
title:"Bruna Dorpsstraat, GROESBEEK",
street:"Dorpsstraat",
housenr:31,
housenraddition:"",
city:"GROESBEEK",
zip:"6561 CA",
owner:"P.J. Janssen, mw M.M.E. Janssen-Verploegen en N.J.  Janssen",
phone:"024-3971261",
latitude:51.7781780,
longitude:5.9328536,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store60:
{
no:60,
storeid:"0643",
id:"nYzAqPywaVYAAAFK8zEM0ibF",
title:"Bruna Grote Krocht, ZANDVOORT",
street:"Grote Krocht",
housenr:18,
housenraddition:"",
city:"ZANDVOORT",
zip:"2042 LW",
owner:"De heer I. Balkenende en mevrouw J. Balkenende-Bauer",
phone:"023-5716033",
latitude:52.3716828,
longitude:4.5306209,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 18:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"13:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"1300", "U":"1700", "C": "13:00 - 17:00 uur"}
],
opensunday: true
},
store61:
{
no:61,
storeid:"0647",
id:"thzAqPywaVgAAAFK8zEM0ibF",
title:"Bruna Lopikerstraat, SCHOONHOVEN",
street:"Lopikerstraat",
housenr:34,
housenraddition:"",
city:"SCHOONHOVEN",
zip:"2871 BX",
owner:"Mevrouw L. Niestadt",
phone:"0182-382262",
latitude:51.9465522,
longitude:4.8533676,
opening:
{
monday:"13:30 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1330", "U":"1800", "C":"13:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store62:
{
no:62,
storeid:"0648",
id:"wBzAqPywUdEAAAFK9DEM0ibF",
title:"Bruna Dorpstraat, PUTTEN",
street:"Dorpstraat",
housenr:34,
housenraddition:"",
city:"PUTTEN",
zip:"3881 BD",
owner:"De heer E.J. Kip en mevrouw P.J.G. Bongers",
phone:"0341-363067",
latitude:52.2604772,
longitude:5.6050238,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store63:
{
no:63,
storeid:"0651",
id:"8FHAqPyw9XAAAAFK9TEM0ibF",
title:"Bruna Petuniatuin, ZOETERMEER",
street:"Petuniatuin",
housenr:43,
housenraddition:"",
city:"ZOETERMEER",
zip:"2724 NB",
owner:"Mevrouw J.C.M. Berkhout-Nozeman",
phone:"079-3415823",
latitude:52.0639260,
longitude:4.5151533,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store64:
{
no:64,
storeid:"0652",
id:"K3bAqPywUdMAAAFK9DEM0ibF",
title:"Bruna Walstraat, VLISSINGEN",
street:"Walstraat",
housenr:101,
housenraddition:"",
city:"VLISSINGEN",
zip:"4381 GG",
owner:"Mevrouw J.W.A. Geijsen-van Hoorn en mevrouw A. Geijsen",
phone:"0118-440088",
latitude:51.4446324,
longitude:3.5734928,
opening:
{
monday:"10:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1730", "C":"10:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store65:
{
no:65,
storeid:"0654",
id:"3y3AqPyw9XMAAAFK9TEM0ibF",
title:"Bruna Nieuwe Passage, SCHIEDAM",
street:"Nieuwe Passage",
housenr:35,
housenraddition:"",
city:"SCHIEDAM",
zip:"3111 EG",
owner:"De heer E. Vriethoff en mevrouw M. Vriethoff-van Efferen",
phone:"010-4734607",
latitude:51.9152895,
longitude:4.4002587,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten muv 1e zond"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten muv 1e zond"}
],
opensunday: true
},
store66:
{
no:66,
storeid:"0655",
id:"IyPAqPyw9XEAAAFK9TEM0ibF",
title:"Bruna De Ziel, BUNSCHOTEN",
street:"De Ziel",
housenr:53,
housenraddition:"",
city:"BUNSCHOTEN",
zip:"3751 BT",
owner:"De heer W. van de Geest en mevrouw W.A. van de Geest - Bos",
phone:"033-2990456",
latitude:52.2522432,
longitude:5.3786777,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store67:
{
no:67,
storeid:"0658",
id:"NBvAqPywsjkAAAFK9jEM0ibF",
title:"Bruna Meent, VELDHOVEN",
street:"Meent",
housenr:26,
housenraddition:"",
city:"VELDHOVEN",
zip:"5501 JK",
owner:"Dhr J.P.L. van den Tillaar",
phone:"040-2543079",
latitude:51.4200392,
longitude:5.4052001,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store68:
{
no:68,
storeid:"0660",
id:"vT3AqPywsjoAAAFK9jEM0ibF",
title:"Bruna Markt, GELEEN",
street:"Markt",
housenr:108,
housenraddition:"",
city:"GELEEN",
zip:"6161 GN",
owner:"De heer C.A. Schoenmaeckers",
phone:"046-4107084",
latitude:50.9701523,
longitude:5.8283232,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store69:
{
no:69,
storeid:"0662",
id:"M_jAqPywmjUAAAFK.DEM0ibF",
title:"Bruna W.C. Gorecht Oost, HOOGEZAND",
street:"W.C. Gorecht Oost",
housenr:153,
housenraddition:"P",
city:"HOOGEZAND",
zip:"9603 AE",
owner:"Mevrouw D. Slijm",
phone:"0598-326878",
latitude:53.1549212,
longitude:6.7572034,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store70:
{
no:70,
storeid:"0663",
id:"lnvAqPywntQAAAFK9zEM0ibF",
title:"Bruna Kerkstraat, GEMERT",
street:"Kerkstraat",
housenr:27,
housenraddition:"",
city:"GEMERT",
zip:"5421 KX",
owner:"Dhr H.H.J. Wijn en mw G.W. Wijn-Peters",
phone:"0492-362245",
latitude:51.5562199,
longitude:5.6817826,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store71:
{
no:71,
storeid:"0664",
id:"g5jAqPywmjQAAAFK.DEM0ibF",
title:"Bruna Vijf Meiplein, LEIDEN",
street:"Vijf Meiplein",
housenr:39,
housenraddition:"",
city:"LEIDEN",
zip:"2321 BN",
owner:"De heer E.H.T. Beunk",
phone:"071-5762228",
latitude:52.1474087,
longitude:4.4794040,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store72:
{
no:72,
storeid:"0665",
id:"XTfAqPywmjIAAAFK.DEM0ibF",
title:"Bruna Bijlmerplein, AMSTERDAM ZUIDOOST",
street:"Bijlmerplein",
housenr:365,
housenraddition:"",
city:"AMSTERDAM ZUIDOOST",
zip:"1102 DK",
owner:"De heer M.A. Hussain en mevrouw N. Hussain - Andulib",
phone:"020-6976954",
latitude:52.3146925,
longitude:4.9533814,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"10:00 - 18:00 uur",
wednesday:"10:00 - 18:00 uur",
thursday:"12:00 - 21:00 uur",
friday:"10:00 - 18:00 uur",
saturday:"10:00 - 17:00 uur",
sunday:"Geloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"woensdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"donderdag", "F":"1200", "U":"2100", "C":"12:00 - 21:00 uur"},
{"D":"vrijdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"zaterdag", "F":"1000", "U":"1700", "C":"10:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Geloten"}
],
opensunday: true
},
store73:
{
no:73,
storeid:"0667",
id:"l1vAqPywyWsAAAFK.TEM0ibF",
title:"Bruna Hoofdstraat, VEENENDAAL",
street:"Hoofdstraat",
housenr:29,
housenraddition:"",
city:"VEENENDAAL",
zip:"3901 AB",
owner:"De heer A.W.A. Lucas",
phone:"0318-511088",
latitude:52.0265953,
longitude:5.5552315,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store74:
{
no:74,
storeid:"0668",
id:"7RPAqPywlOoAAAFK.zEM0ibF",
title:"Bruna De Driehoek, OLDENZAAL",
street:"De Driehoek",
housenr:36,
housenraddition:"",
city:"OLDENZAAL",
zip:"7571 ET",
owner:"De heer G. Teunis en mevrouw H.H. Teunis - Bergman",
phone:"0541-552625",
latitude:52.3140077,
longitude:6.9277202,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store75:
{
no:75,
storeid:"0669",
id:"fJzAqPywlOkAAAFK.zEM0ibF",
title:"Bruna Markenburg, HOOFDDORP",
street:"Markenburg",
housenr:73,
housenraddition:"",
city:"HOOFDDORP",
zip:"2135 DS",
owner:"De heer M.P.A. Hoogeveen",
phone:"023-5628403",
latitude:52.3015991,
longitude:4.6635578,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"08:30 - 17:30 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store76:
{
no:76,
storeid:"0670",
id:"sR_AqPywlOwAAAFK.zEM0ibF",
title:"Bruna Molendijk, OUD-BEIJERLAND",
street:"Molendijk",
housenr:4,
housenraddition:"",
city:"OUD-BEIJERLAND",
zip:"3262 AK",
owner:"De heer A.J. Edel",
phone:"0186-613633",
latitude:51.8268297,
longitude:4.4109734,
opening:
{
monday:"13:00 - 17:30 uur",
tuesday:"09:30 - 17:30 uur",
wednesday:"09:30 - 17:30 uur",
thursday:"09:30 - 17:30 uur",
friday:"09:30 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1730", "C":"13:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"woensdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"donderdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store77:
{
no:77,
storeid:"0676",
id:"xXfAqPywz3MAAAFK.jEM0ibF",
title:"Bruna Promenade, VEENDAM",
street:"Promenade",
housenr:26,
housenraddition:"",
city:"VEENDAM",
zip:"9641 AK",
owner:"Mevrouw D. Ipema-de Groot",
phone:"0598-622554",
latitude:53.1057276,
longitude:6.8782555,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 21:00 uur",
friday:"09:30 - 18:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store78:
{
no:78,
storeid:"0677",
id:"KSjAqPywlnMAAAFK_DEM0ibF",
title:"Bruna van Beuningenhaven, BARENDRECHT",
street:"van Beuningenhaven",
housenr:35,
housenraddition:"",
city:"BARENDRECHT",
zip:"2993 EH",
owner:"De heer D.G.E. Jonkers en mevrouw W.A.A. Lelieveldt",
phone:"0180-767278",
latitude:51.8472879,
longitude:4.4992213,
opening:
{
monday:"11:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1730", "C":"11:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store79:
{
no:79,
storeid:"0679",
id:"d5zAqPywSywAAAFK_jEM0ibF",
title:"Bruna Noordzeepassage, KATWIJK",
street:"Noordzeepassage",
housenr:103,
housenraddition:"",
city:"KATWIJK",
zip:"2225 CD",
owner:"Mevrouw J.W.G.M. Bosman-Scheurwater",
phone:"071-4016438",
latitude:52.2046702,
longitude:4.3960073,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store80:
{
no:80,
storeid:"0680",
id:"eyrAqPywTX4AAAFK_TEM0ibF",
title:"Bruna Heereweg, SCHOORL",
street:"Heereweg",
housenr:6,
housenraddition:"",
city:"SCHOORL",
zip:"1871 EH",
owner:"De heer J.H.A. Leijsen en mevrouw Y. Leijsen - Stam",
phone:"072-5091206",
latitude:52.7014768,
longitude:4.6938169,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"13:30 - 16:30 uur"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"1330", "U":"1630", "C": "13:30 - 16:30 uur"}
],
opensunday: true
},
store81:
{
no:81,
storeid:"0681",
id:"e8jAqPywTX8AAAFK_TEM0ibF",
title:"Bruna &apos;t Hooghuis, GELDERMALSEN",
street:"&apos;t Hooghuis",
housenr:3,
housenraddition:"",
city:"GELDERMALSEN",
zip:"4191 AE",
owner:"De heer W.F.M. Sparla en mevrouw G.J. Sparla-de Bruin",
phone:"0345-571209",
latitude:51.8829439,
longitude:5.2887439,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store82:
{
no:82,
storeid:"0685",
id:"jV3AqPywSysAAAFK_jEM0ibF",
title:"Bruna Groenhof, AMSTELVEEN",
street:"Groenhof",
housenr:118,
housenraddition:"",
city:"AMSTELVEEN",
zip:"1186 EX",
owner:"De heer T.M. Letschert en mevrouw C. Miedema",
phone:"020-6459797",
latitude:52.2892933,
longitude:4.8698522,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store83:
{
no:83,
storeid:"0687",
id:"n_bAqPyw5nwAAAFKADIM0ibF",
title:"Bruna Waterstraat, ZALTBOMMEL",
street:"Waterstraat",
housenr:14,
housenraddition:"",
city:"ZALTBOMMEL",
zip:"5301 AJ",
owner:"De heer L. van Dalen",
phone:"0418-514353",
latitude:51.8138900,
longitude:5.2477818,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store84:
{
no:84,
storeid:"0691",
id:"x47AqPyw5n0AAAFKADIM0ibF",
title:"Bruna Lange Nering, EMMELOORD",
street:"Lange Nering",
housenr:48,
housenraddition:"",
city:"EMMELOORD",
zip:"8302 ED",
owner:"De heer J.C. Steenstra en mevrouw T.K.M. Steenstra-Latour",
phone:"0527-613264",
latitude:52.7112521,
longitude:5.7569178,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store85:
{
no:85,
storeid:"0694",
id:"OB7AqPyw3bAAAAFK_zEM0ibF",
title:"Bruna Bierstraat, LOCHEM",
street:"Bierstraat",
housenr:11,
housenraddition:"",
city:"LOCHEM",
zip:"7241 AG",
owner:"Mevrouw L.R.W. Wuestman",
phone:"0573-250267",
latitude:52.1610534,
longitude:6.4164104,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store86:
{
no:86,
storeid:"0696",
id:"CIXAqPywKO4AAAFKATIM0ibF",
title:"Bruna Stadspoort, EDE",
street:"Stadspoort",
housenr:15,
housenraddition:"",
city:"EDE",
zip:"6716 RH",
owner:"Mevrouw M. Meevis-Huiskes en de heer P.J.J.J. Meevis",
phone:"0318-647699",
latitude:52.0177918,
longitude:5.6505739,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store87:
{
no:87,
storeid:"0698",
id:"eJHAqPywKPAAAAFKATIM0ibF",
title:"Bruna Hoofdstraat, KAATSHEUVEL",
street:"Hoofdstraat",
housenr:65,
housenraddition:"",
city:"KAATSHEUVEL",
zip:"5171 DK",
owner:"Dhr F.H.J.J. van Gorkom en mw M.P. van der Bend",
phone:"0416-543749",
latitude:51.6614869,
longitude:5.0338554,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store88:
{
no:88,
storeid:"0706",
id:"DbXAqPywFF8AAAFKAjIM0ibF",
title:"Bruna Europaplein, STADSKANAAL",
street:"Europaplein",
housenr:4,
housenraddition:"",
city:"STADSKANAAL",
zip:"9501 VM",
owner:"De heer R. Visschedijk",
phone:"0599-616745",
latitude:52.9887396,
longitude:6.9527072,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:""
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: true
},
store89:
{
no:89,
storeid:"0708",
id:"WXHAqPywFGAAAAFKAjIM0ibF",
title:"Bruna De Weide, HOOGEVEEN",
street:"De Weide",
housenr:19,
housenraddition:"",
city:"HOOGEVEEN",
zip:"7908 AB",
owner:"De heer R.E.W. Pijpers",
phone:"0528-240168",
latitude:52.7187672,
longitude:6.4526817,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store90:
{
no:90,
storeid:"0710",
id:"Qf7AqPywFGEAAAFKAjIM0ibF",
title:"Bruna Zwarteweg, BENNEBROEK",
street:"Zwarteweg",
housenr:24,
housenraddition:"",
city:"BENNEBROEK",
zip:"2121 BC",
owner:"De heer P. Wilschut",
phone:"023-5845830",
latitude:52.3251004,
longitude:4.5931242,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store91:
{
no:91,
storeid:"0712",
id:"kqDAqPyw6ZIAAAFKAzIM0ibF",
title:"Bruna Dorpsstraat, ZOETERMEER",
street:"Dorpsstraat",
housenr:85,
housenraddition:"",
city:"ZOETERMEER",
zip:"2712 AE",
owner:"De heer J.H. van Schooten en mevrouw M. van Schooten - Koning",
phone:"079-3604203",
latitude:52.0560187,
longitude:4.4974749,
opening:
{
monday:"11:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1730", "C":"11:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store92:
{
no:92,
storeid:"0713",
id:"elLAqPywPtQAAAFKBjIM0ibF",
title:"Bruna Voorstraat, HARDENBERG",
street:"Voorstraat",
housenr:12,
housenraddition:"",
city:"HARDENBERG",
zip:"7772 AC",
owner:"De heren J.B.L. Peters en H.J. Peters",
phone:"0523-261631",
latitude:52.5755444,
longitude:6.6184568,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store93:
{
no:93,
storeid:"0714",
id:"iP_AqPywPvYAAAFKBDIM0ibF",
title:"Bruna Gruizenstraat, SITTARD",
street:"Gruizenstraat",
housenr:14,
housenraddition:"",
city:"SITTARD",
zip:"6131 EH",
owner:"Mevrouw C.H. van Eck",
phone:"046-4007916",
latitude:50.9973933,
longitude:5.8690791,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 21:00 uur",
friday:"09:30 - 18:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"laatste zondag vd maand 12-17"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "laatste zondag vd maand 12-17"}
],
opensunday: true
},
store94:
{
no:94,
storeid:"0715",
id:"eAjAqPywPtMAAAFKBjIM0ibF",
title:"Bruna Dorpstraat, ELST",
street:"Dorpstraat",
housenr:33,
housenraddition:"",
city:"ELST",
zip:"6661 EG",
owner:"De heer J. Herberts en mevrouw G. Herberts",
phone:"0481-367266",
latitude:51.9188173,
longitude:5.8476945,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store95:
{
no:95,
storeid:"0717",
id:"EF3AqPywrnkAAAFKBTIM0ibF",
title:"Bruna Nootweg, LOOSDRECHT",
street:"Nootweg",
housenr:49,
housenraddition:"",
city:"LOOSDRECHT",
zip:"1231 CR",
owner:"De heer C.M.J.A. Egberts en mevrouw M.M. Egberts-Vork",
phone:"035-5825617",
latitude:52.1998333,
longitude:5.1390964,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store96:
{
no:96,
storeid:"0721",
id:"wD_AqPywDUAAAAFKBzIM0ibF",
title:"Bruna Hanzestraat, ARNHEM",
street:"Hanzestraat",
housenr:58,
housenraddition:"",
city:"ARNHEM",
zip:"6826 MN",
owner:"De heer A.W.A. Lucas en mevrouw A.F. Lucas - Schoondermark",
phone:"026-7676009",
latitude:51.9829863,
longitude:5.9511215,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store97:
{
no:97,
storeid:"0724",
id:"8qnAqPywDT4AAAFKBzIM0ibF",
title:"Bruna Hoofdstraat, EPE",
street:"Hoofdstraat",
housenr:77,
housenraddition:"",
city:"EPE",
zip:"8162 AC",
owner:"De heer J.G. Nijman en mevrouw H. Nijman - Hup",
phone:"0578-612265",
latitude:52.3477995,
longitude:5.9837872,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store98:
{
no:98,
storeid:"0725",
id:"z6bAqPyw6B4AAAFKCDIM0ibF",
title:"Bruna Oude Kustlijn, DEN HAAG",
street:"Oude Kustlijn",
housenr:107,
housenraddition:"",
city:"DEN HAAG",
zip:"2496 SK",
owner:"De heer L. Hofstede en mw S.L. Hofstede-Gemaledin",
phone:"070-4157577",
latitude:52.0417485,
longitude:4.3703264,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store99:
{
no:99,
storeid:"0726",
id:"ROfAqPyw6B8AAAFKCDIM0ibF",
title:"Bruna Kerkstraat, TEGELEN",
street:"Kerkstraat",
housenr:91,
housenraddition:"",
city:"TEGELEN",
zip:"5931 NM",
owner:"Mevrouw C.S. Timmermans en de heer J.T.G.M. Timmermans",
phone:"077-3260297",
latitude:51.3410815,
longitude:6.1407219,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store100:
{
no:100,
storeid:"0728",
id:"_.bAqPywwKUAAAFKCTIM0ibF",
title:"Bruna Heerestraat, RODEN",
street:"Heerestraat",
housenr:53,
housenraddition:"",
city:"RODEN",
zip:"9301 AE",
owner:"De heer G. Poster",
phone:"050-5018526",
latitude:53.1373709,
longitude:6.4300474,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store101:
{
no:101,
storeid:"0730",
id:"tX7AqPyw6CAAAAFKCDIM0ibF",
title:"Bruna Fahrenheitstraat, DEN HAAG",
street:"Fahrenheitstraat",
housenr:536,
housenraddition:"",
city:"DEN HAAG",
zip:"2561 DJ",
owner:"De heer H.L. Driessen en mw N.E. Driessen-van der Zon",
phone:"070-3615615",
latitude:52.0789687,
longitude:4.2688942,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store102:
{
no:102,
storeid:"0733",
id:"n7LAqPywMZwAAAFKCjIM0ibF",
title:"Bruna Slotlaan, ZEIST",
street:"Slotlaan",
housenr:197,
housenraddition:"",
city:"ZEIST",
zip:"3701 GD",
owner:"De heer W. Olijve en mevrouw D.M. Olijve-Wetters",
phone:"030-6915944",
latitude:52.0864364,
longitude:5.2451084,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store103:
{
no:103,
storeid:"0735",
id:"HIfAqPywMZ0AAAFKCjIM0ibF",
title:"Bruna Laanstraat, BAARN",
street:"Laanstraat",
housenr:41,
housenraddition:"C",
city:"BAARN",
zip:"3743 BA",
owner:"De heer R.A. Batenburg",
phone:"035-5412685",
latitude:52.2114046,
longitude:5.2889272,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store104:
{
no:104,
storeid:"0737",
id:"t9fAqPyw2LwAAAFKCzIM0ibF",
title:"Bruna Verlengde Houtrakgracht, UTRECHT",
street:"Verlengde Houtrakgracht",
housenr:389,
housenraddition:"",
city:"UTRECHT",
zip:"3544 EC",
owner:"De heer A.A. Schaap en mevrouw T.C.J. Schaap-Ent",
phone:"030-2341714",
latitude:52.0878419,
longitude:5.0546396,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store105:
{
no:105,
storeid:"0738",
id:"8snAqPywyCsAAAFKDDIM0ibF",
title:"Bruna Wilhelminaplein, RIJEN",
street:"Wilhelminaplein",
housenr:11,
housenraddition:"",
city:"RIJEN",
zip:"5121 ES",
owner:"T.W.L. van der Mark en mw I.M.J. van der Mark-Vermeeren",
phone:"0161-223964",
latitude:51.5882520,
longitude:4.9190153,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"13:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1300", "U":"1700", "C": "13:00 - 17:00 uur"}
],
opensunday: true
},
store106:
{
no:106,
storeid:"0740",
id:"szLAqPywMr0AAAFKDjIM0ibF",
title:"Bruna Stationstraat, ERMELO",
street:"Stationstraat",
housenr:103,
housenraddition:"",
city:"ERMELO",
zip:"3851 NC",
owner:"De heer E. Verbaas en mevrouw G. Verbaas-de Jong",
phone:"0341-552486",
latitude:52.2996121,
longitude:5.6192437,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store107:
{
no:107,
storeid:"0742",
id:"dkzAqPywyC0AAAFKDDIM0ibF",
title:"Bruna Gentsestraat, HULST",
street:"Gentsestraat",
housenr:15,
housenraddition:"",
city:"HULST",
zip:"4561 EH",
owner:"De heer J.G. den Herder",
phone:"0114-370374",
latitude:51.2793685,
longitude:4.0520507,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"14:00 - 18:00 uur"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1400", "U":"1800", "C": "14:00 - 18:00 uur"}
],
opensunday: true
},
store108:
{
no:108,
storeid:"0744",
id:"w7PAqPywMr8AAAFKDjIM0ibF",
title:"Bruna Julianalaan, BILTHOVEN",
street:"Julianalaan",
housenr:53,
housenraddition:"",
city:"BILTHOVEN",
zip:"3722 GE",
owner:"De heer A.F. Kok en mevrouw C. Kok-Stigter",
phone:"030-2282830",
latitude:52.1296631,
longitude:5.2087267,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store109:
{
no:109,
storeid:"0745",
id:"Hr7AqPyw2WwAAAFKDTIM0ibF",
title:"Bruna IJburglaan, AMSTERDAM",
street:"IJburglaan",
housenr:561,
housenraddition:"",
city:"AMSTERDAM",
zip:"1087 BS",
owner:"Mevrouw P. Hoogenboom",
phone:"020-4160918",
latitude:52.3585457,
longitude:4.9894448,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store110:
{
no:110,
storeid:"0746",
id:"fY3AqPywGNsAAAFKDzIM0ibF",
title:"Bruna Oosterdijk, SNEEK",
street:"Oosterdijk",
housenr:11,
housenraddition:"",
city:"SNEEK",
zip:"8601 BP",
owner:"De heer J.A. Brouwer en mevrouw Y.H. Brouwer-Vlietstra",
phone:"0515-412997",
latitude:53.0331319,
longitude:5.6627207,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store111:
{
no:111,
storeid:"0747",
id:"JKDAqPywGNwAAAFKDzIM0ibF",
title:"Bruna Weedestraat, SOEST",
street:"Weedestraat",
housenr:9,
housenraddition:"",
city:"SOEST",
zip:"3761 CA",
owner:"De heer A.W.R. Hilhorst",
phone:"035-6010130",
latitude:52.1846194,
longitude:5.2985344,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store112:
{
no:112,
storeid:"0748",
id:"oAXAqPywGN4AAAFKDzIM0ibF",
title:"Bruna Havenstraat, NOORDWIJKERHOUT",
street:"Havenstraat",
housenr:34,
housenraddition:"",
city:"NOORDWIJKERHOUT",
zip:"2211 EH",
owner:"Mevrouw A.J.M. Langelaan-Heus",
phone:"0252-344349",
latitude:52.2619536,
longitude:4.4941508,
opening:
{
monday:"09:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 18:00",
friday:"09:00 - 21:00",
saturday:"09:00- 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00- 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store113:
{
no:113,
storeid:"0752",
id:"JKPAqPywz8QAAAFKEDIM0ibF",
title:"Bruna Oostermeent Z, HUIZEN",
street:"Oostermeent Z",
housenr:130,
housenraddition:"",
city:"HUIZEN",
zip:"1274 SW",
owner:"De heer J.H. van der Vegt",
phone:"035-5265090",
latitude:52.2942749,
longitude:5.2633854,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:30 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store114:
{
no:114,
storeid:"0755",
id:"WSvAqPywz8cAAAFKEDIM0ibF",
title:"Bruna Diependaalsedijk, MAARSSEN",
street:"Diependaalsedijk",
housenr:2,
housenraddition:"",
city:"MAARSSEN",
zip:"3601 GK",
owner:"De heer W.F. Stolk en mevrouw C.S.P Stolk-Ojemann",
phone:"0346-560513",
latitude:52.1421052,
longitude:5.0398335,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store115:
{
no:115,
storeid:"0756",
id:"jGTAqPywz8YAAAFKEDIM0ibF",
title:"Bruna Roelantdreef, UTRECHT",
street:"Roelantdreef",
housenr:254,
housenraddition:"",
city:"UTRECHT",
zip:"3562 KJ",
owner:"De heer R.H. Stolk en de heer K. Jappes",
phone:"030-2611170",
latitude:52.1146689,
longitude:5.1115097,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store116:
{
no:116,
storeid:"0759",
id:"TJ3AqPywzswAAAFKETIM0ibF",
title:"Bruna Brouwerij, LEUSDEN",
street:"Brouwerij",
housenr:3,
housenraddition:"",
city:"LEUSDEN",
zip:"3831 ND",
owner:"De heer J.J.R.W. Bennewitz",
phone:"033-4950815",
latitude:52.1297206,
longitude:5.4269270,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store117:
{
no:117,
storeid:"0760",
id:"jpPAqPywj5wAAAFKEjIM0ibF",
title:"Bruna Koninginneweg, BOSKOOP",
street:"Koninginneweg",
housenr:6,
housenraddition:"",
city:"BOSKOOP",
zip:"2771 DN",
owner:"De heer S. Jongejan en mevrouw C. Jongejan-Riebeek",
phone:"0172-230480",
latitude:52.0739431,
longitude:4.6586513,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store118:
{
no:118,
storeid:"0761",
id:"ogfAqPywj54AAAFKEjIM0ibF",
title:"Bruna van Woustraat, AMSTERDAM",
street:"van Woustraat",
housenr:90,
housenraddition:"",
city:"AMSTERDAM",
zip:"1073 LP",
owner:"De heer J.F.G. de Kuijer en mevrouw H.C. de Kuijer-Hoogsteen",
phone:"020-6626331",
latitude:52.3549288,
longitude:4.9010580,
opening:
{
monday:"09:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:30uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:30 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1830", "C":"08:30 - 18:30uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store119:
{
no:119,
storeid:"0764",
id:"5O7AqPywj50AAAFKEjIM0ibF",
title:"Bruna Markt, WIJCHEN",
street:"Markt",
housenr:26,
housenraddition:"",
city:"WIJCHEN",
zip:"6602 AN",
owner:"De heer P.J.J.J. Meevis en mw M. Meevis-Huiskes",
phone:"024-6413707",
latitude:51.8071714,
longitude:5.7265964,
opening:
{
monday:"11:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1730", "C":"11:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store120:
{
no:120,
storeid:"0769",
id:"TKXAqPyw60oAAAFKEzIM0ibF",
title:"Bruna Frederik van de Paltshof, RHENEN",
street:"Frederik van de Paltshof",
housenr:32,
housenraddition:"",
city:"RHENEN",
zip:"3911 LB",
owner:"De heer W.F.M. Sparla en mevrouw G.J. Sparla - de Bruin",
phone:"0317-612164",
latitude:51.9576865,
longitude:5.5654018,
opening:
{
monday:"09:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 18:00",
friday:"09:00 - 21:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store121:
{
no:121,
storeid:"0771",
id:"56fAqPywkEEAAAFKFDIM0ibF",
title:"Bruna Zwanenveld, NIJMEGEN",
street:"Zwanenveld",
housenr:90120,
housenraddition:"",
city:"NIJMEGEN",
zip:"6538 SP",
owner:"De heer R.W.F.M. van Beek en mevrouw M.J.M.A. van Beek - Camps",
phone:"024-3430269",
latitude:51.8235242,
longitude:5.7961408,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 21:00 uur",
friday:"09:30 - 18:00 uur",
saturday:"09:00 - 17:30 uur",
sunday:"12-17 1e zondag vd maand"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zondag", "F":"12", "U":"171", "C": "12-17 1e zondag vd maand"}
],
opensunday: true
},
store122:
{
no:122,
storeid:"0778",
id:"k.nAqPywkEIAAAFKFDIM0ibF",
title:"Bruna De Struytse Hoeck, HELLEVOETSLUIS",
street:"De Struytse Hoeck",
housenr:310,
housenraddition:"",
city:"HELLEVOETSLUIS",
zip:"3223 DE",
owner:"De heer H. Beekman",
phone:"0181-324955",
latitude:51.8297519,
longitude:4.1447736,
opening:
{
monday:"12:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1730", "C":"12:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store123:
{
no:123,
storeid:"0780",
id:"bh_AqPyw0XEAAAFKFTIM0ibF",
title:"Bruna Hoogstraat, WAGENINGEN",
street:"Hoogstraat",
housenr:73,
housenraddition:"",
city:"WAGENINGEN",
zip:"6701 BP",
owner:"De heer E.B.M. Scholtens",
phone:"0317-412501",
latitude:51.9666905,
longitude:5.6637918,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 18:00 uur",
friday:"09:30 - 21:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store124:
{
no:124,
storeid:"0782",
id:"hFDAqPywotQAAAFKFjIM0ibF",
title:"Bruna Dorpsstraat, NUNSPEET",
street:"Dorpsstraat",
housenr:15,
housenraddition:"",
city:"NUNSPEET",
zip:"8071 BW",
owner:"De heer R. Stel",
phone:"0341-252015",
latitude:52.3759773,
longitude:5.7856031,
opening:
{
monday:"10:00 - 18:00",
tuesday:"08:30 - 18:00",
wednesday:"08:30 - 18:00",
thursday:"08:30 - 18:00",
friday:"08:30 - 21:00",
saturday:"08:30 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store125:
{
no:125,
storeid:"0783",
id:"gajAqPywQmQAAAFKFzIM0ibF",
title:"Bruna Kleepassage, EMMEN",
street:"Kleepassage",
housenr:14,
housenraddition:"",
city:"EMMEN",
zip:"7811 DJ",
owner:"De heer J.H.R. Keizer en mevrouw M. Brokmann",
phone:"0591-612255",
latitude:52.7834288,
longitude:6.8941157,
opening:
{
monday:"13:00 - 18:00",
tuesday:"09:30 - 18:00",
wednesday:"09:30 - 18:00",
thursday:"09:30 - 21:00",
friday:"09:30 - 18:00",
saturday:"09:30 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00"},
{"D":"donderdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00"},
{"D":"vrijdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store126:
{
no:126,
storeid:"0784",
id:"tv_AqPywotUAAAFKFjIM0ibF",
title:"Bruna Traay, DRIEBERGEN",
street:"Traay",
housenr:35,
housenraddition:"",
city:"DRIEBERGEN",
zip:"3971 GB",
owner:"De heer E.A. Nieskens en mevrouw B.C. Nieskens - Boere",
phone:"0343-517362",
latitude:52.0526825,
longitude:5.2846245,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store127:
{
no:127,
storeid:"0785",
id:"LTXAqPywEOIAAAFKGDIM0ibF",
title:"Bruna Steenstraat, WIJK BIJ DUURSTEDE",
street:"Steenstraat",
housenr:1,
housenraddition:"",
city:"WIJK BIJ DUURSTEDE",
zip:"3961 VM",
owner:"De heer E.A. Nieskens en mevrouw B.C. Nieskens - Boere",
phone:"0343-577285",
latitude:51.9745583,
longitude:5.3440220,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store128:
{
no:128,
storeid:"0787",
id:"QybAqPywEOMAAAFKGDIM0ibF",
title:"Bruna Den Hof, WAALRE",
street:"Den Hof",
housenr:8,
housenraddition:"",
city:"WAALRE",
zip:"5582 JZ",
owner:"De heer J.A.C. van Doormalen",
phone:"040-2230270",
latitude:51.3952976,
longitude:5.4747772,
opening:
{
monday:"08:30 - 18:00",
tuesday:"08:30 - 18:00",
wednesday:"08:30 - 18:00",
thursday:"08:30 - 18:00",
friday:"08:30 - 18:00",
saturday:"08:30 - 18:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"zaterdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store129:
{
no:129,
storeid:"0788",
id:"2G_AqPywEOEAAAFKGDIM0ibF",
title:"Bruna Pijmanstraat, ZWOLLE",
street:"Pijmanstraat",
housenr:6,
housenraddition:"",
city:"ZWOLLE",
zip:"8014 VB",
owner:"Mevrouw N. Flikkema",
phone:"038-4658688",
latitude:52.4838735,
longitude:6.1127722,
opening:
{
monday:"12:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 18:00",
friday:"09:00 - 21:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store130:
{
no:130,
storeid:"0791",
id:"Sh3AqPyw_xIAAAFKGTIM0ibF",
title:"Bruna Veerplein, BUSSUM",
street:"Veerplein",
housenr:104,
housenraddition:"",
city:"BUSSUM",
zip:"1404 DC",
owner:"De heer H. Liebe en mevrouw G.W.M. Liebe-Poort",
phone:"035-6917485",
latitude:52.2759336,
longitude:5.1616910,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store131:
{
no:131,
storeid:"0792",
id:"AEHAqPywDmkAAAFKGjIM0ibF",
title:"Bruna P.A. de Kokplein, DORDRECHT",
street:"P.A. de Kokplein",
housenr:110,
housenraddition:"",
city:"DORDRECHT",
zip:"3318 JW",
owner:"De heer J.B.C. Barella en mevrouw V.F.A.C. de Bruin",
phone:"078-6549721",
latitude:51.7855842,
longitude:4.6766747,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store132:
{
no:132,
storeid:"0800",
id:"2tXAqPywDmgAAAFKGjIM0ibF",
title:"Bruna Binnenweg, HEEMSTEDE",
street:"Binnenweg",
housenr:125,
housenraddition:"",
city:"HEEMSTEDE",
zip:"2101 JE",
owner:"De heer J. Poortier en mevrouw M.F. Groeneveld",
phone:"023-5297601",
latitude:52.3557748,
longitude:4.6211330,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store133:
{
no:133,
storeid:"0801",
id:"TDLAqPywei0AAAFKHDIM0ibF",
title:"Bruna Hoge Ham, DONGEN",
street:"Hoge Ham",
housenr:154,
housenraddition:"",
city:"DONGEN",
zip:"5104 JL",
owner:"De heer P.B.J. Evers en mw. S. Evers-van Nelfen",
phone:"0162-371526",
latitude:51.6258494,
longitude:4.9437992,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store135:
{
no:135,
storeid:"0811",
id:"1IHAqPyweiwAAAFKHDIM0ibF",
title:"Bruna Markt, DRUTEN",
street:"Markt",
housenr:9,
housenraddition:"",
city:"DRUTEN",
zip:"6651 BC",
owner:"Mevrouw A.J. Arends",
phone:"0487-513965",
latitude:51.8910226,
longitude:5.6110879,
opening:
{
monday:"13:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 18:00",
friday:"09:00 - 20:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store136:
{
no:136,
storeid:"0813",
id:"kY_AqPyw.qcAAAFKGzIM0ibF",
title:"Bruna Heuvel, GELDROP",
street:"Heuvel",
housenr:50,
housenraddition:"",
city:"GELDROP",
zip:"5664 HM",
owner:"Mw H.J.Q. van der Heijden-van de Wiel en mw J.H.L.M. van der Lee-van de Wiel",
phone:"040-2802611",
latitude:51.4219283,
longitude:5.5583012,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store137:
{
no:137,
storeid:"0814",
id:"E7TAqPywhz4AAAFKHTIM0ibF",
title:"Bruna Daalseweg, NIJMEGEN",
street:"Daalseweg",
housenr:263,
housenraddition:"",
city:"NIJMEGEN",
zip:"6521 GL",
owner:"De heer H.P.J.  Auwens",
phone:"024-3222453",
latitude:51.8380492,
longitude:5.8761200,
opening:
{
monday:"10:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 20:00",
friday:"09:00 - 18:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store138:
{
no:138,
storeid:"0815",
id:"zwrAqPywLAEAAAFKITIM0ibF",
title:"Bruna Generaal Cronjestraat, HAARLEM",
street:"Generaal Cronjestraat",
housenr:67,
housenraddition:"",
city:"HAARLEM",
zip:"2021 JC",
owner:"De heer J.P.M. Baars",
phone:"023-5263180",
latitude:52.3944388,
longitude:4.6418717,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store139:
{
no:139,
storeid:"0816",
id:"ourAqPywdlAAAAFKHjIM0ibF",
title:"Bruna Herenstraat, RAALTE",
street:"Herenstraat",
housenr:19,
housenraddition:"",
city:"RAALTE",
zip:"8102 CN",
owner:"Mevrouw J.T.M. Ellenbroek - Schrijver",
phone:"0572-351300",
latitude:52.3863301,
longitude:6.2753150,
opening:
{
monday:"13:00 - 18:00",
tuesday:"09:00 - 18:00",
wednesday:"09:00 - 18:00",
thursday:"09:00 - 18:00",
friday:"09:00 - 21:00",
saturday:"09:00 - 17:00",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store140:
{
no:140,
storeid:"0817",
id:"3f_AqPywdlEAAAFKHjIM0ibF",
title:"Bruna Lange Baan, NOOTDORP",
street:"Lange Baan",
housenr:22,
housenraddition:"",
city:"NOOTDORP",
zip:"2632 GC",
owner:"De heer G.P. Beitsma",
phone:"015-2851401",
latitude:52.0450432,
longitude:4.3911722,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store141:
{
no:141,
storeid:"0818",
id:"uRHAqPywjfAAAAFKHzIM0ibF",
title:"Bruna Hesseplaats, ROTTERDAM",
street:"Hesseplaats",
housenr:35,
housenraddition:"",
city:"ROTTERDAM",
zip:"3069 EA",
owner:"De heer E.L. Rijsdijk en mevrouw M.J. Rijsdijk - Eliasberg",
phone:"010-4212902",
latitude:51.9628301,
longitude:4.5533928,
opening:
{
monday:"10:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:30 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1730", "C":"10:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store142:
{
no:142,
storeid:"0830",
id:"MDzAqPywLAAAAAFKITIM0ibF",
title:"Bruna Dillenburgstraat, BREDA",
street:"Dillenburgstraat",
housenr:84,
housenraddition:"",
city:"BREDA",
zip:"4835 ED",
owner:"Mevrouw M.C.M. Ardon-van Benten",
phone:"076-5657419",
latitude:51.5699967,
longitude:4.7910037,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store143:
{
no:143,
storeid:"0832",
id:"iaLAqPywXB0AAAFKIDIM0ibF",
title:"Bruna WC De Schoof, HENDRIK IDO AMBACHT",
street:"WC De Schoof",
housenr:43,
housenraddition:"",
city:"HENDRIK IDO AMBACHT",
zip:"3341 EA",
owner:"Mevrouw M. van Waas-Koopman",
phone:"078-6818938",
latitude:51.8489431,
longitude:4.6443695,
opening:
{
monday:"11:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1730", "C":"11:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store144:
{
no:144,
storeid:"0835",
id:"JZzAqPywLAIAAAFKITIM0ibF",
title:"Bruna Markt, WEERT",
street:"Markt",
housenr:11,
housenraddition:"",
city:"WEERT",
zip:"6001 EJ",
owner:"Dhr P.P.E.J.M. Vugts, mw S.C.A.P. Vugts-Broers en dhr A.N. Gaakeer",
phone:"0495-534211",
latitude:51.2537839,
longitude:5.7064375,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 21:00 uur",
friday:"08:00 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store145:
{
no:145,
storeid:"0837",
id:"xcfAqPywvSoAAAFKIjIM0ibF",
title:"Bruna Noorderbuurt, DRACHTEN",
street:"Noorderbuurt",
housenr:29,
housenraddition:"",
city:"DRACHTEN",
zip:"9203 AL",
owner:"De heer M.R. Bos",
phone:"0512-512191",
latitude:53.1079249,
longitude:6.0974169,
opening:
{
monday:"12:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1730", "C":"12:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store146:
{
no:146,
storeid:"0838",
id:"LejAqPywvSsAAAFKIjIM0ibF",
title:"Bruna Stadhuispassage, SPIJKENISSE",
street:"Stadhuispassage",
housenr:15,
housenraddition:"",
city:"SPIJKENISSE",
zip:"3201 ES",
owner:"De heer R. &Ccedil;&ouml;lkusu en de heer G. &Ccedil;&ouml;lkusu",
phone:"0181-767595",
latitude:51.8489717,
longitude:4.3272841,
opening:
{
monday:"12:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1730", "C":"12:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store147:
{
no:147,
storeid:"0839",
id:"UKnAqPywtBUAAAFKMDIM0ibF",
title:"Bruna Winterakker, SPIJKENISSE",
street:"Winterakker",
housenr:18,
housenraddition:"",
city:"SPIJKENISSE",
zip:"3206 TG",
owner:"De heer R. &Ccedil;&ouml;lkusu en de heer G. &Ccedil;&ouml;lkusu",
phone:"0181-767598",
latitude:51.8330975,
longitude:4.3203740,
opening:
{
monday:"13:00 - 17:30 uur",
tuesday:"09:30 - 17:30 uur",
wednesday:"09:30 - 17:30 uur",
thursday:"09:30 - 20:0 uur",
friday:"09:30 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1730", "C":"13:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"woensdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"donderdag", "F":"0930", "U":"200", "C":"09:30 - 20:0 uur"},
{"D":"vrijdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store149:
{
no:149,
storeid:"0842",
id:"N_bAqPyweBQAAAFKJDIM0ibF",
title:"Bruna Sterrebos, OSS",
street:"Sterrebos",
housenr:13,
housenraddition:"",
city:"OSS",
zip:"5344 AL",
owner:"De heer F.J.F. Mees",
phone:"0412-690465",
latitude:51.7534677,
longitude:5.5123011,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store150:
{
no:150,
storeid:"0868",
id:"kgnAqPywt4UAAAFKJTIM0ibF",
title:"Bruna Rosa Luxemburgstraat, ALMELO",
street:"Rosa Luxemburgstraat",
housenr:13,
housenraddition:"",
city:"ALMELO",
zip:"7607 SM",
owner:"Mevrouw J.T.M. Ellenbroek-Schrijver",
phone:"0546-811635",
latitude:52.3566543,
longitude:6.6623284,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store151:
{
no:151,
storeid:"0870",
id:"QJjAqPyweBUAAAFKJDIM0ibF",
title:"Bruna Vreeburg, ROSMALEN",
street:"Vreeburg",
housenr:7,
housenraddition:"",
city:"ROSMALEN",
zip:"5241 EJ",
owner:"De heer Ph.Ch.M. van Seggelen",
phone:"073-5220080",
latitude:51.7180098,
longitude:5.3628761,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store152:
{
no:152,
storeid:"0903",
id:"nnPAqPywt4cAAAFKJTIM0ibF",
title:"Bruna Wethouder Sangersstraat, BEEK",
street:"Wethouder Sangersstraat",
housenr:145,
housenraddition:"",
city:"BEEK",
zip:"6191 NA",
owner:"De heer J.P. Maas en mevrouw C.P.M. Maas-Cox",
phone:"046-4377095",
latitude:50.9494880,
longitude:5.7929822,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store153:
{
no:153,
storeid:"0905",
id:"qQTAqPywwYAAAAFKJzIM0ibF",
title:"Bruna Hoenderdijk, OUDDORP",
street:"Hoenderdijk",
housenr:19,
housenraddition:"",
city:"OUDDORP",
zip:"3253 AK",
owner:"Dhr P. van de Langkruis en mw J.C.D. van de Langkruis-Schippers",
phone:"0187-681276",
latitude:51.8094873,
longitude:3.9347613,
opening:
{
monday:"08:30 - 17:30 uur",
tuesday:"08:30 - 17:30 uur",
wednesday:"08:30 - 17:30 uur",
thursday:"08:30 - 17:30 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"dinsdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"woensdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"donderdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store154:
{
no:154,
storeid:"0906",
id:"r.LAqPywO18AAAFKKDIM0ibF",
title:"Bruna Keizerstraat, DEN HELDER",
street:"Keizerstraat",
housenr:47,
housenraddition:"",
city:"DEN HELDER",
zip:"1781 GE",
owner:"Mevrouw A.L. Keijzer en mevrouw J. Keijzer-Nieuwbuurt",
phone:"0223-628788",
latitude:52.9596201,
longitude:4.7634832,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 21:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store155:
{
no:155,
storeid:"0908",
id:"EmzAqPywO2EAAAFKKDIM0ibF",
title:"Bruna Westermarkt, TILBURG",
street:"Westermarkt",
housenr:126,
housenraddition:"",
city:"TILBURG",
zip:"5042 SZ",
owner:"Mevrouw A.A.T. van de Garde-Bink",
phone:"013-4600570",
latitude:51.5693860,
longitude:5.0530193,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00  - 18:00 uur",
wednesday:"09:00  - 18:00 uur",
thursday:"09:00  - 18:00 uur",
friday:"09:00  - 20:00 uur",
saturday:"09:00  - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00  - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00  - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00  - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00  - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00  - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store156:
{
no:156,
storeid:"0909",
id:"AQ7AqPywRpgAAAFKKTIM0ibF",
title:"Bruna Waterstraat, TIEL",
street:"Waterstraat",
housenr:10,
housenraddition:"",
city:"TIEL",
zip:"4001 AP",
owner:"De heer C.F.M. Witteman en mw K.L.M. Witteman-Van Leur",
phone:"0344-616063",
latitude:51.8877922,
longitude:5.4368657,
opening:
{
monday:"12:00 - 17:30 uur",
tuesday:"09:30 - 17:30 uur",
wednesday:"09:30 - 17:30 uur",
thursday:"09:30 - 21:00 uur",
friday:"09:30 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1730", "C":"12:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"woensdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"donderdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store157:
{
no:157,
storeid:"0910",
id:"pp7AqPywRpkAAAFKKTIM0ibF",
title:"Bruna Donkerstraat, HARDERWIJK",
street:"Donkerstraat",
housenr:43,
housenraddition:"",
city:"HARDERWIJK",
zip:"3841 CB",
owner:"De heer W. Olijve en mevrouw D.M. Olijve-Wetters",
phone:"0341-417000",
latitude:52.3492898,
longitude:5.6177864,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store158:
{
no:158,
storeid:"0912",
id:"uEvAqPywuwEAAAFKKjIM0ibF",
title:"Bruna Dorpsstraat, OISTERWIJK",
street:"Dorpsstraat",
housenr:35,
housenraddition:"",
city:"OISTERWIJK",
zip:"5061 HJ",
owner:"De heer T.W.L. van der Mark en mw I.M.J. van der Mark-Vermeeren",
phone:"013-5211804",
latitude:51.5806249,
longitude:5.1938575,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"1e vd maand 12-17 uur"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"112", "U":"17", "C": "1e vd maand 12-17 uur"}
],
opensunday: true
},
store159:
{
no:159,
storeid:"0914",
id:"TInAqPyw3H4AAAFKKzIM0ibF",
title:"Bruna Heyhoefpromenade, TILBURG",
street:"Heyhoefpromenade",
housenr:24,
housenraddition:"",
city:"TILBURG",
zip:"5043 RM",
owner:"Mevrouw J.H.W.M. Vugts",
phone:"013-5711965",
latitude:51.5775179,
longitude:5.0051073,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store160:
{
no:160,
storeid:"0915",
id:"oGfAqPyw3H8AAAFKKzIM0ibF",
title:"Bruna Moleneindplein, VUGHT",
street:"Moleneindplein",
housenr:35,
housenraddition:"",
city:"VUGHT",
zip:"5262 CX",
owner:"De heer R. &Ccedil;&ouml;lkusu en de heer G. &Ccedil;&ouml;lkusu",
phone:"073-6570309",
latitude:51.6460988,
longitude:5.2824325,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 19:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store161:
{
no:161,
storeid:"0916",
id:"ZKzAqPywZWQAAAFKLDIM0ibF",
title:"Bruna Veenslag, VEENENDAAL",
street:"Veenslag",
housenr:86,
housenraddition:"",
city:"VEENENDAAL",
zip:"3905 SL",
owner:"De heer G.C. Landsaat en mevrouw C.E. Landsaat - de Boer",
phone:"0318-527772",
latitude:52.0282971,
longitude:5.5331976,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store162:
{
no:162,
storeid:"0917",
id:"GebAqPywZWYAAAFKLDIM0ibF",
title:"Bruna Misterstraat, WINTERSWIJK",
street:"Misterstraat",
housenr:21,
housenraddition:"",
city:"WINTERSWIJK",
zip:"7101 EP",
owner:"Mevrouw E. Nijman-Beerthuizen",
phone:"0543-522087",
latitude:51.9708745,
longitude:6.7179226,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store163:
{
no:163,
storeid:"0918",
id:"wLLAqPywwZEAAAFKLTIM0ibF",
title:"Bruna Dierenriemstraat, GRONINGEN",
street:"Dierenriemstraat",
housenr:220,
housenraddition:"",
city:"GRONINGEN",
zip:"9742 AM",
owner:"De heer P. Brons",
phone:"050-5774140",
latitude:53.2301007,
longitude:6.5441677,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 21:00 uur",
friday:"09:30 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store164:
{
no:164,
storeid:"0921",
id:"fPXAqPywwZIAAAFKLTIM0ibF",
title:"Bruna Marktplein, WORMERVEER",
street:"Marktplein",
housenr:17,
housenraddition:"",
city:"WORMERVEER",
zip:"1521 HS",
owner:"De heer J.W.M. Tuijp en mevrouw C.A.M. Tuijp-Bregman",
phone:"075-6406699",
latitude:52.4948546,
longitude:4.7857070,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store165:
{
no:165,
storeid:"0923",
id:"QXHAqPywtBYAAAFKMDIM0ibF",
title:"Bruna Markt, HENGELO",
street:"Markt",
housenr:2,
housenraddition:"",
city:"HENGELO",
zip:"7551 CG",
owner:"De heer R.G. Einhaus en mevrouw J.E.M. Einhaus-Tromp",
phone:"074-2594334",
latitude:52.2645268,
longitude:6.7933154,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"10:00 - 18:00 uur",
wednesday:"10:00 - 18:00 uur",
thursday:"10:00 - 21:00 uur",
friday:"10:00 - 18:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"woensdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"donderdag", "F":"1000", "U":"2100", "C":"10:00 - 21:00 uur"},
{"D":"vrijdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store166:
{
no:166,
storeid:"0924",
id:"nX_AqPywu9UAAAFKLzIM0ibF",
title:"Bruna Kruisstraat, ASSEN",
street:"Kruisstraat",
housenr:7,
housenraddition:"",
city:"ASSEN",
zip:"9401 JJ",
owner:"De heer J.G. Hartog",
phone:"0592-331903",
latitude:52.9945101,
longitude:6.5612991,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store167:
{
no:167,
storeid:"0926",
id:"QDfAqPywu9MAAAFKLzIM0ibF",
title:"Bruna Choorstraat, UTRECHT",
street:"Choorstraat",
housenr:13,
housenraddition:"",
city:"UTRECHT",
zip:"3511 KK",
owner:"De heer G.W. Monden",
phone:"030-2400591",
latitude:52.0909916,
longitude:5.1197388,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:30 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store168:
{
no:168,
storeid:"0927",
id:"aZfAqPywsrUAAAFKMTIM0ibF",
title:"Bruna Hoofdstraat, VELP",
street:"Hoofdstraat",
housenr:83,
housenraddition:"A",
city:"VELP",
zip:"6881 TD",
owner:"Mevrouw R. Oosterhoff",
phone:"026-3620192",
latitude:51.9959914,
longitude:5.9719929,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store169:
{
no:169,
storeid:"0928",
id:"6uTAqPywsrQAAAFKMTIM0ibF",
title:"Bruna &apos;t Weike, DUIVEN",
street:"&apos;t Weike",
housenr:19,
housenraddition:"",
city:"DUIVEN",
zip:"6921 BT",
owner:"Mevrouw A. Broersma-Egging en de heer M. Broersma-Egging",
phone:"0316-261477",
latitude:51.9494643,
longitude:6.0220212,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store170:
{
no:170,
storeid:"0929",
id:"18TAqPyw69QAAAFKMzIM0ibF",
title:"Bruna Olympiaplein, AMSTERDAM",
street:"Olympiaplein",
housenr:127,
housenraddition:"",
city:"AMSTERDAM",
zip:"1077 CX",
owner:"De heer J. Poortier en mevrouw M.F. Groeneveld",
phone:"020-6712328",
latitude:52.3462969,
longitude:4.8676441,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 18:00 uur",
saturday:"07:30 - 18:00 uur",
sunday:"11:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0730", "U":"1800", "C":"07:30 - 18:00 uur"},
{"D":"zondag", "F":"1100", "U":"1700", "C": "11:00 - 17:00 uur"}
],
opensunday: true
},
store171:
{
no:171,
storeid:"0931",
id:"rHbAqPywcqoAAAFKNTIM0ibF",
title:"Bruna Torenstraat, WINSCHOTEN",
street:"Torenstraat",
housenr:4,
housenraddition:"",
city:"WINSCHOTEN",
zip:"9671 EE",
owner:"De heer J.H. Timmermans en de heer A.L. Timmermans",
phone:"0597-412441",
latitude:53.1428511,
longitude:7.0394807,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store172:
{
no:172,
storeid:"0932",
id:"z33AqPywsdAAAAFKMjIM0ibF",
title:"Bruna Joop van Weezelhof, AMSTERDAM",
street:"Joop van Weezelhof",
housenr:31,
housenraddition:"",
city:"AMSTERDAM",
zip:"1063 MK",
owner:"De heer C.S. Panoet",
phone:"020-4473064",
latitude:52.3804885,
longitude:4.8225961,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store173:
{
no:173,
storeid:"0935",
id:"2xLAqPywlSYAAAFKNDIM0ibF",
title:"Bruna Grotestraat, EDE",
street:"Grotestraat",
housenr:71,
housenraddition:"",
city:"EDE",
zip:"6711 AJ",
owner:"De heer R.M.P. Bakker en de heer P.P.J. Bakker",
phone:"0318-614332",
latitude:52.0473215,
longitude:5.6709140,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store174:
{
no:174,
storeid:"0936",
id:"YFjAqPyw69UAAAFKMzIM0ibF",
title:"Bruna De Trog, GIETEN",
street:"De Trog",
housenr:40,
housenraddition:"",
city:"GIETEN",
zip:"9461 DC",
owner:"De heer B. Gabri&euml;lse en mevrouw M.A.J. Franken",
phone:"0592-260503",
latitude:53.0007273,
longitude:6.7644574,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store175:
{
no:175,
storeid:"0938",
id:"Q_vAqPywlScAAAFKNDIM0ibF",
title:"Bruna Hoofdstraat, GROU",
street:"Hoofdstraat",
housenr:5,
housenraddition:"",
city:"GROU",
zip:"9001 AM",
owner:"De heer R. Brolsma en mw A. Brolsma-ter Braake",
phone:"0566-621316",
latitude:53.0957967,
longitude:5.8394460,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store176:
{
no:176,
storeid:"0939",
id:".uzAqPywcqsAAAFKNTIM0ibF",
title:"Bruna Winkelcentrum Woensel, EINDHOVEN",
street:"Winkelcentrum Woensel",
housenr:111,
housenraddition:"",
city:"EINDHOVEN",
zip:"5625 AG",
owner:"De heer J.W.G.M. van der Sterren en mw J.P.H. Lucas",
phone:"040-2421950",
latitude:51.4683762,
longitude:5.4751683,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 18:00 uur",
friday:"09:30 - 21:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store177:
{
no:177,
storeid:"0940",
id:"jFHAqPywPAAAAAFKNzIM0ibF",
title:"Bruna Dorpstraat, ENTER",
street:"Dorpstraat",
housenr:110,
housenraddition:"",
city:"ENTER",
zip:"7468 CN",
owner:"Mevrouw H.G. Broeze-Tukkers",
phone:"0547-381271",
latitude:52.2934042,
longitude:6.5767447,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00- 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00- 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store178:
{
no:178,
storeid:"0941",
id:"rCPAqPywJEMAAAFKNjIM0ibF",
title:"Bruna Alvarezlaan, TERNEUZEN",
street:"Alvarezlaan",
housenr:64,
housenraddition:"",
city:"TERNEUZEN",
zip:"4536 BD",
owner:"De heer T.J. van Haaster en mw G. van Haaster-van den Berg",
phone:"0115-611696",
latitude:51.3201585,
longitude:3.8456277,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store179:
{
no:179,
storeid:"0942",
id:"hZbAqPywO_8AAAFKNzIM0ibF",
title:"Bruna Helftheuvelpassage, DEN BOSCH",
street:"Helftheuvelpassage",
housenr:58,
housenraddition:"",
city:"DEN BOSCH",
zip:"5224 AP",
owner:"Dhr M.J.C.M. Leermakers en mw W.C. Leermakers-van de Griendt",
phone:"073-6241835",
latitude:51.6954987,
longitude:5.2681934,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store180:
{
no:180,
storeid:"0944",
id:"77bAqPywPAIAAAFKNzIM0ibF",
title:"Bruna Scheldestraat, AMSTERDAM",
street:"Scheldestraat",
housenr:90,
housenraddition:"",
city:"AMSTERDAM",
zip:"1078 GN",
owner:"Dhr T. Katerberg en mw A.M.W. Katerberg-Burgemeester",
phone:"020-4711852",
latitude:52.3460488,
longitude:4.8912381,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 19:30 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1930", "C":"08:30 - 19:30 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store181:
{
no:181,
storeid:"0945",
id:"Zz3AqPywPAEAAAFKNzIM0ibF",
title:"Bruna Pr. Johan Friso Promenade, RIJSWIJK",
street:"Pr. Johan Friso Promenade",
housenr:154,
housenraddition:"",
city:"RIJSWIJK",
zip:"2284 DC",
owner:"De heer D.G.E. Jonkers en mevrouw W.A.A. Lelieveldt",
phone:"070-3943728",
latitude:52.0372433,
longitude:4.3152959,
opening:
{
monday:"11:30 - 17:30 uur",
tuesday:"09:30 - 17:30 uur",
wednesday:"09:30 - 17:30 uur",
thursday:"09:30 - 21:00 uur",
friday:"09:30 - 17:30 uur",
saturday:"09:30 - 17:00 uur",
sunday:"laatste vd mnd 12-17"
},
hours:[
{"D":"maandag", "F":"1130", "U":"1730", "C":"11:30 - 17:30 uur"},
{"D":"dinsdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"woensdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"donderdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "laatste vd mnd 12-17"}
],
opensunday: true
},
store182:
{
no:182,
storeid:"0947",
id:"ZcXAqPywQTUAAAFKOTIM0ibF",
title:"Bruna Nieuwe Emmasingel, EINDHOVEN",
street:"Nieuwe Emmasingel",
housenr:24,
housenraddition:"",
city:"EINDHOVEN",
zip:"5611 AM",
owner:"Mevrouw E.A. Schouls-Tuitman",
phone:"040-2370119",
latitude:51.4399977,
longitude:5.4760865,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 18:00 uur",
friday:"09:30 - 21:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store183:
{
no:183,
storeid:"0948",
id:"Y_DAqPywQTYAAAFKOTIM0ibF",
title:"Bruna Markthof, ETTEN-LEUR",
street:"Markthof",
housenr:19,
housenraddition:"",
city:"ETTEN-LEUR",
zip:"4873 JA",
owner:"mevrouw J.C.C. van Gils",
phone:"076-5041957",
latitude:51.5689837,
longitude:4.6367947,
opening:
{
monday:"13:00 - 17:30 uur",
tuesday:"09:30 - 17:30 uur",
wednesday:"09:30 - 17:30 uur",
thursday:"09:30 - 17:30 uur",
friday:"09:30 - 21:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1730", "C":"13:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"woensdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"donderdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store184:
{
no:184,
storeid:"0950",
id:"ET3AqPyw3yoAAAFKODIM0ibF",
title:"Bruna Hof, BERGEIJK",
street:"Hof",
housenr:19,
housenraddition:"",
city:"BERGEIJK",
zip:"5571 CA",
owner:"de heer P.H.C.J.M. van den Dungen en de heer J.L.R. Stessens",
phone:"0497-574632",
latitude:51.3219415,
longitude:5.3579394,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 20:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store185:
{
no:185,
storeid:"0951",
id:"tHjAqPywQTcAAAFKOTIM0ibF",
title:"Bruna Boterhoek, BEST",
street:"Boterhoek",
housenr:94,
housenraddition:"",
city:"BEST",
zip:"5683 AW",
owner:"Dhr A.L.G.J. van Rossum en mw E.P.A.M. van Rossum-Scheffers",
phone:"0499-376042",
latitude:51.5116366,
longitude:5.3930620,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store186:
{
no:186,
storeid:"0952",
id:"FJ_AqPywW.4AAAFKOjIM0ibF",
title:"Bruna Lange Delft, MIDDELBURG",
street:"Lange Delft",
housenr:39,
housenraddition:"",
city:"MIDDELBURG",
zip:"4331 AL",
owner:"dhr H.J. Schenkel en mw H.C.J. Schenkel-van Maastricht",
phone:"0118-650211",
latitude:51.4984968,
longitude:3.6145865,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store187:
{
no:187,
storeid:"0953",
id:"Cf7AqPywVt8AAAFKOzIM0ibF",
title:"Bruna De Burcht, BREDA",
street:"De Burcht",
housenr:14,
housenraddition:"",
city:"BREDA",
zip:"4834 HE",
owner:"De heer G. Le Comte en mevrouw M.F.T. Le Comte-Riemslag",
phone:"076-5654118",
latitude:51.5723412,
longitude:4.8065935,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store188:
{
no:188,
storeid:"0955",
id:"tGTAqPywVuIAAAFKOzIM0ibF",
title:"Bruna De Middend, BOVENKARSPEL",
street:"De Middend",
housenr:26,
housenraddition:"",
city:"BOVENKARSPEL",
zip:"1611 KW",
owner:"De heer R.P.M. Buijsman en mevrouw A. Buijsman-Heimsberg",
phone:"0228-512502",
latitude:52.6963795,
longitude:5.2345784,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store189:
{
no:189,
storeid:"0956",
id:"WhXAqPywVuAAAAFKOzIM0ibF",
title:"Bruna Buikslotermeerplein, AMSTERDAM",
street:"Buikslotermeerplein",
housenr:236,
housenraddition:"",
city:"AMSTERDAM",
zip:"1025 GB",
owner:"De heer T. Sevin&ccedil;er",
phone:"020-6363471",
latitude:52.39746,
longitude:4.938073,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store190:
{
no:190,
storeid:"0957",
id:"_lXAqPywVuEAAAFKOzIM0ibF",
title:"Bruna Hoofdstraat, MEPPEL",
street:"Hoofdstraat",
housenr:83,
housenraddition:"",
city:"MEPPEL",
zip:"7941 AD",
owner:"De heer J.B.L. Peters",
phone:"0522-241600",
latitude:52.6963866,
longitude:6.1908095,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store191:
{
no:191,
storeid:"0958",
id:"7WHAqPywxSgAAAFKPTIM0ibF",
title:"Bruna Emiclaerhof, AMERSFOORT",
street:"Emiclaerhof",
housenr:2,
housenraddition:"",
city:"AMERSFOORT",
zip:"3823 EM",
owner:"De heer M. van Baaren en mevrouw E.G.W. van Oostrum",
phone:"033-4530731",
latitude:52.1851554,
longitude:5.3978049,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store192:
{
no:192,
storeid:"0960",
id:"XILAqPywxSkAAAFKPTIM0ibF",
title:"Bruna Kleuvenstee, ASSEN",
street:"Kleuvenstee",
housenr:35,
housenraddition:"",
city:"ASSEN",
zip:"9403 LT",
owner:"De heer P.B. Albronda",
phone:"0592-372117",
latitude:53.0176254,
longitude:6.5856783,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store193:
{
no:193,
storeid:"0961",
id:"eYXAqPywDccAAAFKPDIM0ibF",
title:"Bruna Marktlaan, HOOFDDORP",
street:"Marktlaan",
housenr:158,
housenraddition:"",
city:"HOOFDDORP",
zip:"2132 DM",
owner:"Mevrouw A. Veltman-Rops",
phone:"023-5570428",
latitude:52.3027696,
longitude:4.6923634,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"10:00 - 18:00 uur",
wednesday:"10:00 - 18:00 uur",
thursday:"10:00 - 18:00uur",
friday:"10:00 - 21:00 uur",
saturday:"09:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"woensdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"donderdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00uur"},
{"D":"vrijdag", "F":"1000", "U":"2100", "C":"10:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store194:
{
no:194,
storeid:"0962",
id:"znfAqPywb.wAAAFKPjIM0ibF",
title:"Bruna Kruisstraat, OMMEN",
street:"Kruisstraat",
housenr:3,
housenraddition:"",
city:"OMMEN",
zip:"7731 CR",
owner:"De heer A. Boers",
phone:"0529-451737",
latitude:52.5190697,
longitude:6.4239848,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store195:
{
no:195,
storeid:"0964",
id:"mFjAqPyww4YAAAFKPzIM0ibF",
title:"Bruna Kaaikhof, ASSENDELFT",
street:"Kaaikhof",
housenr:9,
housenraddition:"",
city:"ASSENDELFT",
zip:"1567 JP",
owner:"De heer H.G. Meijer en mevrouw P.M. Meijer-van de Eng",
phone:"075-7710629",
latitude:52.4886601,
longitude:4.7525318,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store196:
{
no:196,
storeid:"0965",
id:"9V7AqPywb.sAAAFKPjIM0ibF",
title:"Bruna L.G. Smith Boulevard, ORANJESTAD ARUBA",
street:"L.G. Smith Boulevard",
housenr:1,
housenraddition:"",
city:"ORANJESTAD ARUBA",
zip:"",
owner:"De bedrijfsleider",
phone:"+297 5824068",
latitude:12.5207385,
longitude:-70.0408737,
opening:
{
monday:"09:00 - 19:00 uur",
tuesday:"09:00 - 19:00 uur",
wednesday:"09:00 - 19:00 uur",
thursday:"09:00 - 19:00 uur",
friday:"09:00 - 19:00 uur",
saturday:"09:00 - 19:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store197:
{
no:197,
storeid:"0966",
id:"7a3AqPyww4UAAAFKPzIM0ibF",
title:"Bruna van Bergenplein, ETTEN-LEUR",
street:"van Bergenplein",
housenr:62,
housenraddition:"",
city:"ETTEN-LEUR",
zip:"4871 CG",
owner:"Mevrouw C.H.K.M. Milani",
phone:"076-5019419",
latitude:51.5852896,
longitude:4.6552398,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store198:
{
no:198,
storeid:"0967",
id:"F4jAqPyww4cAAAFKPzIM0ibF",
title:"Bruna Peppelweg, ROTTERDAM",
street:"Peppelweg",
housenr:86,
housenraddition:"",
city:"ROTTERDAM",
zip:"3053 GP",
owner:"Mevrouw C.H. de Niet en mevrouw J.J. de Niet",
phone:"010-4189517",
latitude:51.9595740,
longitude:4.4728495,
opening:
{
monday:"13:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1730", "C":"13:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store199:
{
no:199,
storeid:"0968",
id:"W_7AqPyww4gAAAFKPzIM0ibF",
title:"Bruna Nobellaan, ASSEN",
street:"Nobellaan",
housenr:241,
housenraddition:"",
city:"ASSEN",
zip:"9406 AH",
owner:"De heer J.B.L. Peters en de heer H.J. Peters",
phone:"0592-356594",
latitude:53.0006099,
longitude:6.5494742,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store200:
{
no:200,
storeid:"0969",
id:"INDAqPywpW8AAAFKQTIM0ibF",
title:"Bruna Schouwburgring, TILBURG",
street:"Schouwburgring",
housenr:135,
housenraddition:"",
city:"TILBURG",
zip:"5038 TW",
owner:"De heer D.F.H. van Roemburg",
phone:"013-5433947",
latitude:51.5549225,
longitude:5.0823245,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store201:
{
no:201,
storeid:"0970",
id:"ZOTAqPyw6wcAAAFKQDIM0ibF",
title:"Bruna Wesseler Nering, ENSCHEDE",
street:"Wesseler Nering",
housenr:2,
housenraddition:"D",
city:"ENSCHEDE",
zip:"7544 JA",
owner:"De heer A. Postma en mevrouw J. Postma-Groot",
phone:"053-4776627",
latitude:52.1919499,
longitude:6.8810814,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store202:
{
no:202,
storeid:"0971",
id:"h3fAqPyw6wgAAAFKQDIM0ibF",
title:"Bruna Meentpassage, PAPENDRECHT",
street:"Meentpassage",
housenr:7,
housenraddition:"",
city:"PAPENDRECHT",
zip:"3353 HH",
owner:"De heer R.M. Witte en mevrouw C.H.M. Witte-van Hijkoop",
phone:"078-6426402",
latitude:51.8262594,
longitude:4.6840669,
opening:
{
monday:"11:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:30uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1730", "C":"11:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store203:
{
no:203,
storeid:"0973",
id:"YDHAqPywpXAAAAFKQTIM0ibF",
title:"Bruna Grietsestraat, ZEVENAAR",
street:"Grietsestraat",
housenr:33,
housenraddition:"",
city:"ZEVENAAR",
zip:"6901 GR",
owner:"De heer H.T.W. Janssen en mw S.M. Janssen-Heijneman",
phone:"0316-249857",
latitude:51.9300081,
longitude:6.0771570,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store204:
{
no:204,
storeid:"0976",
id:"I3fAqPywpW4AAAFKQTIM0ibF",
title:"Bruna Westdijk, MIDDELHARNIS",
street:"Westdijk",
housenr:43,
housenraddition:"",
city:"MIDDELHARNIS",
zip:"3241 GT",
owner:"De heer J. Dekker en mevrouw H.E.A. van Esbroek",
phone:"0187-482048",
latitude:51.7599576,
longitude:4.1634405,
opening:
{
monday:"13:00 - 17:30 uur",
tuesday:"08:30 - 17:30 uur",
wednesday:"08:30 - 17:30 uur",
thursday:"08:30 - 17:30 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1730", "C":"13:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"woensdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"donderdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store205:
{
no:205,
storeid:"0977",
id:"ABnAqPywpMEAAAFKRDIM0ibF",
title:"Bruna Rechterstraat, BOXTEL",
street:"Rechterstraat",
housenr:19,
housenraddition:"",
city:"BOXTEL",
zip:"5281 BS",
owner:"De heer F.A.M. Aldenhuijsen en mevrouw H. Aldenhuijsen-Kehlert",
phone:"0411-673577",
latitude:51.5881284,
longitude:5.3262428,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store206:
{
no:206,
storeid:"0978",
id:"Y1vAqPywU1gAAAFKQjIM0ibF",
title:"Bruna Liguster, LEIDSCHENDAM",
street:"Liguster",
housenr:38,
housenraddition:"",
city:"LEIDSCHENDAM",
zip:"2262 AC",
owner:"D heer R.P. Wesseling",
phone:"070-3205971",
latitude:52.0883266,
longitude:4.3847833,
opening:
{
monday:"10:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"laatste v&#47;d maand 12:00-17:00 u"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1730", "C":"10:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "laatste v&#47;d maand 12:00-17:00 u"}
],
opensunday: true
},
store207:
{
no:207,
storeid:"0980",
id:"Sz_AqPywB8IAAAFKQzIM0ibF",
title:"Bruna Zonnewijzer, AMERSFOORT",
street:"Zonnewijzer",
housenr:12,
housenraddition:"",
city:"AMERSFOORT",
zip:"3824 EE",
owner:"De heer M. van Baaren en mevrouw E.G.W. van Oostrum",
phone:"033-4532667",
latitude:52.1989164,
longitude:5.3758591,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store208:
{
no:208,
storeid:"0982",
id:"R6rAqPywpL8AAAFKRDIM0ibF",
title:"Bruna Zijdstraat, AALSMEER",
street:"Zijdstraat",
housenr:45,
housenraddition:"",
city:"AALSMEER",
zip:"1431 EA",
owner:"De heer G. Post en mevrouw M.A. Post-de Graaf",
phone:"0297-328285",
latitude:52.2684148,
longitude:4.7474335,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store209:
{
no:209,
storeid:"0983",
id:"i9fAqPywB8EAAAFKQzIM0ibF",
title:"Bruna Zevenend, LAREN",
street:"Zevenend",
housenr:27,
housenraddition:"",
city:"LAREN",
zip:"1251 RK",
owner:"De heer R.M. van Dijk en mevrouw M.M.J. van Dijk-Hageman",
phone:"035-5382028",
latitude:52.2536235,
longitude:5.2279617,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store210:
{
no:210,
storeid:"0985",
id:"cPzAqPywpMAAAAFKRDIM0ibF",
title:"Bruna Muntplein, NIEUWEGEIN",
street:"Muntplein",
housenr:14,
housenraddition:"",
city:"NIEUWEGEIN",
zip:"3437 AN",
owner:"Mevrouw J.Y. de Winter",
phone:"030-6056077",
latitude:52.0415795,
longitude:5.0775461,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store211:
{
no:211,
storeid:"0986",
id:"0fzAqPywazkAAAFKRTIM0ibF",
title:"Bruna Marktveldpassage, VUGHT",
street:"Marktveldpassage",
housenr:7,
housenraddition:"",
city:"VUGHT",
zip:"5261 EC",
owner:"De heer R. &Ccedil;&ouml;lkusu en de heer G. &Ccedil;&ouml;lkusu",
phone:"073-6568107",
latitude:51.6580176,
longitude:5.2999269,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store212:
{
no:212,
storeid:"0987",
id:"YZXAqPywDOsAAAFKRjIM0ibF",
title:"Bruna Gasthuislaan, DELFT",
street:"Gasthuislaan",
housenr:66,
housenraddition:"",
city:"DELFT",
zip:"2611 RB",
owner:"De heer D.G.E. Jonkers en mevrouw W.A.A. Lelieveldt",
phone:"015-2137048",
latitude:52.0099981,
longitude:4.3638608,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:30 - 18:00 uur",
wednesday:"09:30 - 18:00 uur",
thursday:"09:30 - 18:00 uur",
friday:"09:30 - 21:00 uur",
saturday:"09:30 - 17:30 uur",
sunday:"12:00 - 17:00 uur iedere zondag"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"woensdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"donderdag", "F":"0930", "U":"1800", "C":"09:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0930", "U":"2100", "C":"09:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur iedere zondag"}
],
opensunday: true
},
store213:
{
no:213,
storeid:"0988",
id:"9ibAqPywazoAAAFKRTIM0ibF",
title:"Bruna De Wissel, LELYSTAD",
street:"De Wissel",
housenr:14,
housenraddition:"",
city:"LELYSTAD",
zip:"8232 DP",
owner:"De heer H. Wooninck",
phone:"0320-243004",
latitude:52.5091058,
longitude:5.4764187,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store214:
{
no:214,
storeid:"0990",
id:"isPAqPywDOwAAAFKRjIM0ibF",
title:"Bruna Forum, ALMERE",
street:"Forum",
housenr:7,
housenraddition:"",
city:"ALMERE",
zip:"1315 TD",
owner:"De heer M. Ort en mevrouw M. Ort-Leeninga",
phone:"036-5304735",
latitude:52.3687741,
longitude:5.2199365,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"10:00 - 18:00 uur",
wednesday:"10:00 - 18:00 uur",
thursday:"10:00 - 21:00 uur",
friday:"10:00 - 18:00 uur",
saturday:"10:00 - 18:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"woensdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"donderdag", "F":"1000", "U":"2100", "C":"10:00 - 21:00 uur"},
{"D":"vrijdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"zaterdag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store215:
{
no:215,
storeid:"0991",
id:"7fTAqPywDO4AAAFKRjIM0ibF",
title:"Bruna Gedempte Gracht, ZAANDAM",
street:"Gedempte Gracht",
housenr:47,
housenraddition:"",
city:"ZAANDAM",
zip:"1506 CB",
owner:"De heer J.W.M. Tuijp en mevrouw C.A.M. Tuijp-Bregman",
phone:"075-6123247",
latitude:52.4394259,
longitude:4.8217857,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store216:
{
no:216,
storeid:"0992",
id:"DKXAqPywDO0AAAFKRjIM0ibF",
title:"Bruna De Kajuit, DRONTEN",
street:"De Kajuit",
housenr:2,
housenraddition:"",
city:"DRONTEN",
zip:"8254 KX",
owner:"De heer R. Derks",
phone:"0321-311062",
latitude:52.5244108,
longitude:5.7161554,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00  - 18:00 uur",
thursday:"08:00  - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00  - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00  - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00  - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00  - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store217:
{
no:217,
storeid:"0993",
id:"Yi_AqPyweJ4AAAFKSDIM0ibF",
title:"Bruna Markt, PANNINGEN",
street:"Markt",
housenr:29,
housenraddition:"",
city:"PANNINGEN",
zip:"5981 AP",
owner:"De heer J.C. van &apos;t Hof en mevrouw M.J.Th. van &apos;t Hof-de Jong",
phone:"077-3060111",
latitude:51.3292565,
longitude:5.9815055,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store218:
{
no:218,
storeid:"0995",
id:"VaLAqPywgDMAAAFKSTIM0ibF",
title:"Bruna Kaya C Winkel GAZ, WILLEMSTAD CURA&Ccedil;AO",
street:"Kaya C Winkel GAZ",
housenr:7,
housenraddition:"",
city:"WILLEMSTAD CURA&Ccedil;AO",
zip:"",
owner:"De bedrijfsleider",
phone:"+599 7388394",
latitude:12.1081290,
longitude:-68.9302060,
opening:
{
monday:"09:00 - 20:00 uur",
tuesday:"09:00 - 20:00 uur",
wednesday:"09:00 - 20:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 20:00 uur",
sunday:"1e zondag v&#47;d maand"
},
hours:[
{"D":"maandag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"woensdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "1e zondag v&#47;d maand"}
],
opensunday: true
},
store219:
{
no:219,
storeid:"0998",
id:"cN3AqPywHeUAAAFKRzIM0ibF",
title:"Bruna Dijkstraat, FRANEKER",
street:"Dijkstraat",
housenr:26,
housenraddition:"",
city:"FRANEKER",
zip:"8801 LV",
owner:"Mevrouw T. Blaauw en de heer K.S. Koelhuis",
phone:"0517-394394",
latitude:53.1856581,
longitude:5.5456259,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store220:
{
no:220,
storeid:"1001",
id:"Dp3AqPyweJ8AAAFKSDIM0ibF",
title:"Bruna Stationshal, UTRECHT",
street:"Stationshal",
housenr:1005,
housenraddition:"A",
city:"UTRECHT",
zip:"3521 AX",
owner:"De Leidinggevende",
phone:"088-1338085",
latitude:52.0893346,
longitude:5.1105855,
opening:
{
monday:"07:00 - 19:00 uur",
tuesday:"07:00 - 19:00 uur",
wednesday:"07:00 - 19:00 uur",
thursday:"07:00 - 19:00 uur",
friday:"07:00 - 19:00 uur",
saturday:"08:00 - 19:00 uur",
sunday:"11:00 - 18:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"woensdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"donderdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1900", "C":"08:00 - 19:00 uur"},
{"D":"zondag", "F":"1100", "U":"1800", "C": "11:00 - 18:00 uur"}
],
opensunday: true
},
store221:
{
no:221,
storeid:"1003",
id:"HaXAqPyweKAAAAFKSDIM0ibF",
title:"Bruna Julianaplein, AMSTERDAM",
street:"Julianaplein",
housenr:1,
housenraddition:"",
city:"AMSTERDAM",
zip:"1097 DN",
owner:"De leidinggevende",
phone:"088-1338071",
latitude:52.3464444,
longitude:4.9184220,
opening:
{
monday:"07:00 - 20:00 uur",
tuesday:"07:00 - 20:00 uur",
wednesday:"07:00 - 20:00 uur",
thursday:"07:00 - 20:00 uur",
friday:"07:00 - 20:00 uur",
saturday:"09:00 - 19:00 uur",
sunday:"12:00 - 18:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"woensdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"donderdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"zondag", "F":"1200", "U":"1800", "C": "12:00 - 18:00 uur"}
],
opensunday: true
},
store222:
{
no:222,
storeid:"1004",
id:"nPfAqPyw6OEAAAFKSjIM0ibF",
title:"Bruna Stationsplein, ARNHEM",
street:"Stationsplein",
housenr:155,
housenraddition:"",
city:"ARNHEM",
zip:"6811 KL",
owner:"De Leidinggevende",
phone:"088-1338072",
latitude:51.9834957,
longitude:5.9012616,
opening:
{
monday:"07:00 - 20:00 uur",
tuesday:"07:00 - 20:00 uur",
wednesday:"07:00 - 20:00 uur",
thursday:"07:00 - 20:00 uur",
friday:"07:00 - 20:00 uur",
saturday:"08:00 - 18:00 uur",
sunday:"10:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"woensdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"donderdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zondag", "F":"1000", "U":"1700", "C": "10:00 - 17:00 uur"}
],
opensunday: true
},
store223:
{
no:223,
storeid:"1005",
id:"KWXAqPywgDUAAAFKSTIM0ibF",
title:"Bruna Stationshal, UTRECHT",
street:"Stationshal",
housenr:1017,
housenraddition:"",
city:"UTRECHT",
zip:"3521 AX",
owner:"De Leidinggevende",
phone:"088-1338084",
latitude:52.0895939,
longitude:5.1097718,
opening:
{
monday:"06:30 - 21:00 uur",
tuesday:"06:30 - 21:00 uur",
wednesday:"06:30 - 21:00 uur",
thursday:"06:30 - 22:00 uur",
friday:"06:30 - 22:00 uur",
saturday:"08:00 - 21:00 uur",
sunday:"09:00 - 20:00 uur"
},
hours:[
{"D":"maandag", "F":"0630", "U":"2100", "C":"06:30 - 21:00 uur"},
{"D":"dinsdag", "F":"0630", "U":"2100", "C":"06:30 - 21:00 uur"},
{"D":"woensdag", "F":"0630", "U":"2100", "C":"06:30 - 21:00 uur"},
{"D":"donderdag", "F":"0630", "U":"2200", "C":"06:30 - 22:00 uur"},
{"D":"vrijdag", "F":"0630", "U":"2200", "C":"06:30 - 22:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zondag", "F":"0900", "U":"2000", "C": "09:00 - 20:00 uur"}
],
opensunday: true
},
store224:
{
no:224,
storeid:"1009",
id:"uFLAqPywgDQAAAFKSTIM0ibF",
title:"Bruna Stationsplein, DEN BOSCH",
street:"Stationsplein",
housenr:157,
housenraddition:"",
city:"DEN BOSCH",
zip:"5211 BP",
owner:"De leidinggevende",
phone:"088-1338074",
latitude:51.6906958,
longitude:5.2947009,
opening:
{
monday:"07:00 - 20:00 uur",
tuesday:"07:00 - 20:00 uur",
wednesday:"07:00 - 20:00 uur",
thursday:"07:00 - 20:00 uur",
friday:"07:00 - 20:00 uur",
saturday:"08:30 - 18:00 uur",
sunday:"11:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"woensdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"donderdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zondag", "F":"1100", "U":"1700", "C": "11:00 - 17:00 uur"}
],
opensunday: true
},
store225:
{
no:225,
storeid:"1010",
id:"i8TAqPyw6OIAAAFKSjIM0ibF",
title:"Bruna Gravinnen van Nassauboulevard, BREDA",
street:"Gravinnen van Nassauboulevard",
housenr:24,
housenraddition:"",
city:"BREDA",
zip:"4811 BN",
owner:"De leidinggevende",
phone:"088-1338073",
latitude:51.5947745,
longitude:4.7798085,
opening:
{
monday:"07:00 - 19:00 uur",
tuesday:"07:00 - 19:00 uur",
wednesday:"07:00 - 19:00 uur",
thursday:"07:00 - 19:00 uur",
friday:"07:00 - 19:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"11:00 - 16:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"woensdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"donderdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1100", "U":"1600", "C": "11:00 - 16:00 uur"}
],
opensunday: true
},
store226:
{
no:226,
storeid:"1016",
id:"5yrAqPyw4wgAAAFKSzIM0ibF",
title:"Bruna Stationsplein, EINDHOVEN",
street:"Stationsplein",
housenr:1,
housenraddition:"B",
city:"EINDHOVEN",
zip:"5611 AC",
owner:"De leidinggevende",
phone:"088-1338076",
latitude:51.4420130,
longitude:5.4797708,
opening:
{
monday:"08:00 - 19:00 uur",
tuesday:"08:00 - 19:00 uur",
wednesday:"08:00 - 19:00 uur",
thursday:"08:00 - 19:00 uur",
friday:"08:00 - 19:00 uur",
saturday:"08:00 - 18:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1900", "C":"08:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1900", "C":"08:00 - 19:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1900", "C":"08:00 - 19:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1900", "C":"08:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1900", "C":"08:00 - 19:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store227:
{
no:227,
storeid:"1021",
id:"mB7AqPyw4woAAAFKSzIM0ibF",
title:"Bruna Stationsplein, GRONINGEN",
street:"Stationsplein",
housenr:23,
housenraddition:"",
city:"GRONINGEN",
zip:"9726 AE",
owner:"De leidinggevende",
phone:"088-1338078",
latitude:53.2115468,
longitude:6.5658846,
opening:
{
monday:"07:00 - 20:00 uur",
tuesday:"07:00 - 20:00 uur",
wednesday:"07:00 - 20:00 uur",
thursday:"07:00 - 20:00 uur",
friday:"07:00 - 20:00 uur",
saturday:"07:00 - 19:00 uur",
sunday:"10:00 - 19:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"woensdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"donderdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"zondag", "F":"1000", "U":"1900", "C": "10:00 - 19:00 uur"}
],
opensunday: true
},
store228:
{
no:228,
storeid:"1022",
id:"VkvAqPyw4wkAAAFKSzIM0ibF",
title:"Bruna Kon. Julianaplein, DEN HAAG",
street:"Kon. Julianaplein",
housenr:10,
housenraddition:"",
city:"DEN HAAG",
zip:"2595 AA",
owner:"De heer M. Feenstra",
phone:"088-1338075",
latitude:52.0815611,
longitude:4.3236005,
opening:
{
monday:"06:30 - 20:30 uur",
tuesday:"06:30 - 20:30 uur",
wednesday:"06:30 - 20:30 uur",
thursday:"06:30 - 20:30 uur",
friday:"06:30 - 20:30 uur",
saturday:"07:30 - 20:00 uur",
sunday:"09:00 - 18:00 uur"
},
hours:[
{"D":"maandag", "F":"0630", "U":"2030", "C":"06:30 - 20:30 uur"},
{"D":"dinsdag", "F":"0630", "U":"2030", "C":"06:30 - 20:30 uur"},
{"D":"woensdag", "F":"0630", "U":"2030", "C":"06:30 - 20:30 uur"},
{"D":"donderdag", "F":"0630", "U":"2030", "C":"06:30 - 20:30 uur"},
{"D":"vrijdag", "F":"0630", "U":"2030", "C":"06:30 - 20:30 uur"},
{"D":"zaterdag", "F":"0730", "U":"2000", "C":"07:30 - 20:00 uur"},
{"D":"zondag", "F":"0900", "U":"1800", "C": "09:00 - 18:00 uur"}
],
opensunday: true
},
store229:
{
no:229,
storeid:"1031",
id:"5HPAqPywTxMAAAFKTDIM0ibF",
title:"Bruna Stationsplein, LEEUWARDEN",
street:"Stationsplein",
housenr:2,
housenraddition:"D",
city:"LEEUWARDEN",
zip:"8911 AC",
owner:"De leidinggevende",
phone:"088-1338079",
latitude:53.1964083,
longitude:5.7926156,
opening:
{
monday:"07:00 - 20:00 uur",
tuesday:"07:00 - 20:00 uur",
wednesday:"07:00 - 20:00 uur",
thursday:"07:00 - 20:00 uur",
friday:"07:00 - 20:00 uur",
saturday:"07:00 - 19:00 uur",
sunday:"10:00 - 19:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"woensdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"donderdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"zondag", "F":"1000", "U":"1900", "C": "10:00 - 19:00 uur"}
],
opensunday: true
},
store230:
{
no:230,
storeid:"1032",
id:"nXvAqPywTxUAAAFKTDIM0ibF",
title:"Bruna Stationsplein, MAASTRICHT",
street:"Stationsplein",
housenr:29,
housenraddition:"",
city:"MAASTRICHT",
zip:"6221 BT",
owner:"De leidinggevende",
phone:"088-1338080",
latitude:50.8515958,
longitude:5.7040800,
opening:
{
monday:"06:30 - 19:00 uur",
tuesday:"06:30 - 19:00 uur",
wednesday:"06:30 - 19:00 uur",
thursday:"06:30 - 19:00 uur",
friday:"06:30 - 19:00 uur",
saturday:"07:30 - 18:00 uur",
sunday:"11:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0630", "U":"1900", "C":"06:30 - 19:00 uur"},
{"D":"dinsdag", "F":"0630", "U":"1900", "C":"06:30 - 19:00 uur"},
{"D":"woensdag", "F":"0630", "U":"1900", "C":"06:30 - 19:00 uur"},
{"D":"donderdag", "F":"0630", "U":"1900", "C":"06:30 - 19:00 uur"},
{"D":"vrijdag", "F":"0630", "U":"1900", "C":"06:30 - 19:00 uur"},
{"D":"zaterdag", "F":"0730", "U":"1800", "C":"07:30 - 18:00 uur"},
{"D":"zondag", "F":"1100", "U":"1700", "C": "11:00 - 17:00 uur"}
],
opensunday: true
},
store231:
{
no:231,
storeid:"1036",
id:"odbAqPywTxYAAAFKTDIM0ibF",
title:"Bruna Stationsplein, NIJMEGEN",
street:"Stationsplein",
housenr:6,
housenraddition:"K",
city:"NIJMEGEN",
zip:"6512 AB",
owner:"De leidinggevende",
phone:"088-1338081",
latitude:51.8435002,
longitude:5.8530478,
opening:
{
monday:"07:00 - 20:00 uur",
tuesday:"07:00 - 20:00 uur",
wednesday:"07:00 - 20:00 uur",
thursday:"07:00 - 20:00 uur",
friday:"07:00 - 20:00 uur",
saturday:"08:00 - 20:00 uur",
sunday:"09:30 - 18:30 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"woensdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"donderdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zondag", "F":"0930", "U":"1830", "C": "09:30 - 18:30 uur"}
],
opensunday: true
},
store232:
{
no:232,
storeid:"1041",
id:"aTvAqPywqN4AAAFKTjIM0ibF",
title:"Bruna Stationsplein, ROTTERDAM",
street:"Stationsplein",
housenr:12,
housenraddition:"A",
city:"ROTTERDAM",
zip:"3013 AJ",
owner:"De leidinggevende",
phone:"088-1338082",
latitude:51.925656,
longitude:4.469177,
opening:
{
monday:"07:00 - 19:00 uur",
tuesday:"07:00 - 19:00 uur",
wednesday:"07:00 - 19:00 uur",
thursday:"07:00 - 19:00 uur",
friday:"07:00 - 19:00 uur",
saturday:"08:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"woensdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"donderdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store233:
{
no:233,
storeid:"1043",
id:"sGrAqPywPy4AAAFKTTIM0ibF",
title:"Bruna Spoorlaan, TILBURG",
street:"Spoorlaan",
housenr:37,
housenraddition:"",
city:"TILBURG",
zip:"5038 CB",
owner:"De Leidinggevende",
phone:"088-1338083",
latitude:51.5604148,
longitude:5.0837415,
opening:
{
monday:"07:00 - 19:00 uur",
tuesday:"07:00 - 18:30 uur",
wednesday:"07:00 - 18:30 uur",
thursday:"07:00 - 18:30 uur",
friday:"07:00 - 18:30 uur",
saturday:"09:00 - 17:00uur",
sunday:"11:00 - 16:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"1830", "C":"07:00 - 18:30 uur"},
{"D":"woensdag", "F":"0700", "U":"1830", "C":"07:00 - 18:30 uur"},
{"D":"donderdag", "F":"0700", "U":"1830", "C":"07:00 - 18:30 uur"},
{"D":"vrijdag", "F":"0700", "U":"1830", "C":"07:00 - 18:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00uur"},
{"D":"zondag", "F":"1100", "U":"1600", "C": "11:00 - 16:00 uur"}
],
opensunday: true
},
store234:
{
no:234,
storeid:"1050",
id:"Q6zAqPywPy8AAAFKTTIM0ibF",
title:"Bruna Stationsplein, ROTTERDAM",
street:"Stationsplein",
housenr:2,
housenraddition:"",
city:"ROTTERDAM",
zip:"3013 AJ",
owner:"De Leidinggevende",
phone:"088-1338087",
latitude:51.9244175,
longitude:4.4707291,
opening:
{
monday:"06:00 - 21:00 uur",
tuesday:"06:00 - 21:00 uur",
wednesday:"06:00 - 21:00 uur",
thursday:"06:00 - 21:00 uur",
friday:"06:00 - 22:00 uur",
saturday:"08:00 - 20:00 uur",
sunday:"09:00 - 19:00 uur"
},
hours:[
{"D":"maandag", "F":"0600", "U":"2100", "C":"06:00 - 21:00 uur"},
{"D":"dinsdag", "F":"0600", "U":"2100", "C":"06:00 - 21:00 uur"},
{"D":"woensdag", "F":"0600", "U":"2100", "C":"06:00 - 21:00 uur"},
{"D":"donderdag", "F":"0600", "U":"2100", "C":"06:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0600", "U":"2200", "C":"06:00 - 22:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zondag", "F":"0900", "U":"1900", "C": "09:00 - 19:00 uur"}
],
opensunday: true
},
store235:
{
no:235,
storeid:"1051",
id:"163AqPywvbEAAAFKTzIM0ibF",
title:"Bruna Stationsplein, ZWOLLE",
street:"Stationsplein",
housenr:1,
housenraddition:"A",
city:"ZWOLLE",
zip:"8011 CW",
owner:"De leidinggevende",
phone:"088-1338086",
latitude:52.5067180,
longitude:6.0897738,
opening:
{
monday:"07:00 - 19:00 uur",
tuesday:"07:00 - 19:00 uur",
wednesday:"07:00 - 19:00 uur",
thursday:"07:00 - 19:00 uur",
friday:"07:00 - 19:30 uur",
saturday:"08:00 - 18:00 uur",
sunday:"10:00 - 15:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"woensdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"donderdag", "F":"0700", "U":"1900", "C":"07:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"1930", "C":"07:00 - 19:30 uur"},
{"D":"zaterdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zondag", "F":"1000", "U":"1500", "C": "10:00 - 15:00 uur"}
],
opensunday: true
},
store236:
{
no:236,
storeid:"1065",
id:"CIvAqPywvbIAAAFKTzIM0ibF",
title:"Bruna Neckerspoel, EINDHOVEN",
street:"Neckerspoel",
housenr:18,
housenraddition:"",
city:"EINDHOVEN",
zip:"5611 AD",
owner:"De Leidinggevende",
phone:"088-1338077",
latitude:51.4434557,
longitude:5.4791851,
opening:
{
monday:"07:00 - 20:00 uur",
tuesday:"07:00 - 20:00 uur",
wednesday:"07:00 - 20:00 uur",
thursday:"07:00 - 20:00 uur",
friday:"07:00 - 20:00 uur",
saturday:"08:00 - 18:00 uur",
sunday:"10:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"woensdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"donderdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0700", "U":"2000", "C":"07:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zondag", "F":"1000", "U":"1700", "C": "10:00 - 17:00 uur"}
],
opensunday: true
},
store237:
{
no:237,
storeid:"8002",
id:"eTjAqPywvbAAAAFKTzIM0ibF",
title:"Bruna Kostverlorenhof, AMSTELVEEN",
street:"Kostverlorenhof",
housenr:20,
housenraddition:"",
city:"AMSTELVEEN",
zip:"1183 HE",
owner:"De heer G.J. van Doorn en mw J.W. van Diest-van Doorn",
phone:"020-6432576",
latitude:52.3129426,
longitude:4.8753531,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store238:
{
no:238,
storeid:"8008",
id:"PqPAqPywHFAAAAFKUDIM0ibF",
title:"Bruna Grote Brink, BORGER",
street:"Grote Brink",
housenr:5,
housenraddition:"",
city:"BORGER",
zip:"9531 AK",
owner:"De heer J.C.A. Wichertjes",
phone:"0599-234340",
latitude:52.9235500,
longitude:6.7908993,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store239:
{
no:239,
storeid:"8011",
id:"8KDAqPywdq8AAAFKUzIM0ibF",
title:"Bruna Provincie Passage, ALPHEN A&#47;D RIJN",
street:"Provincie Passage",
housenr:110,
housenraddition:"",
city:"ALPHEN A&#47;D RIJN",
zip:"2408 EV",
owner:"De heer M.A. Jacobs",
phone:"0172-478688",
latitude:52.1243685,
longitude:4.6515498,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store240:
{
no:240,
storeid:"8015",
id:"66zAqPywHFEAAAFKUDIM0ibF",
title:"Bruna Molenwerf, KOOG AAN DE ZAAN",
street:"Molenwerf",
housenr:16,
housenraddition:"",
city:"KOOG AAN DE ZAAN",
zip:"1541 WR",
owner:"Mevrouw H. Bergen",
phone:"075-6313411",
latitude:52.4581030,
longitude:4.7997867,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store241:
{
no:241,
storeid:"8016",
id:"FeDAqPyw_gYAAAFKUTIM0ibF",
title:"Bruna Roserije, MAASTRICHT",
street:"Roserije",
housenr:329,
housenraddition:"",
city:"MAASTRICHT",
zip:"6228 DR",
owner:"Mevrouw D.G.H.M. Westerkamp",
phone:"043-3610800",
latitude:50.8268700,
longitude:5.7257378,
opening:
{
monday:"12:30 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1230", "U":"1800", "C":"12:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store242:
{
no:242,
storeid:"8017",
id:"W2DAqPywYfMAAAFKUjIM0ibF",
title:"Bruna Hoofdstraat, SCHIJNDEL",
street:"Hoofdstraat",
housenr:142,
housenraddition:"",
city:"SCHIJNDEL",
zip:"5481 AJ",
owner:"Dhr P.M.T.A. Sluijpers en mw F.G.H. Sluijpers-Boonstra",
phone:"073-5432742",
latitude:51.6181038,
longitude:5.4356304,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store243:
{
no:243,
storeid:"8022",
id:"z3bAqPywVKkAAAFKVTIM0ibF",
title:"Bruna Voorstraat, BRIELLE",
street:"Voorstraat",
housenr:28,
housenraddition:"",
city:"BRIELLE",
zip:"3231 BJ",
owner:"De heer P. Kok",
phone:"0181-412075",
latitude:51.9029846,
longitude:4.1651841,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten muv 1e zond"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten muv 1e zond"}
],
opensunday: true
},
store244:
{
no:244,
storeid:"8026",
id:"7m_AqPywdrAAAAFKUzIM0ibF",
title:"Bruna Marsdiepstraat, DEN HELDER",
street:"Marsdiepstraat",
housenr:264,
housenraddition:"",
city:"DEN HELDER",
zip:"1784 AV",
owner:"Mevrouw Th.M. Braaf",
phone:"0223-630262",
latitude:52.9421105,
longitude:4.7409309,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store245:
{
no:245,
storeid:"8037",
id:"BNzAqPywdrEAAAFKUzIM0ibF",
title:"Bruna Amstelplein, UITHOORN",
street:"Amstelplein",
housenr:43,
housenraddition:"",
city:"UITHOORN",
zip:"1421 SB",
owner:"De heer W.G. Mijnders en mevrouw M.J. Mijnders-Slemmer",
phone:"0297-560044",
latitude:52.2324604,
longitude:4.8287041,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store246:
{
no:246,
storeid:"8039",
id:"GNHAqPywMKoAAAFKVjIM0ibF",
title:"Bruna Vuurplaat, ROTTERDAM",
street:"Vuurplaat",
housenr:426,
housenraddition:"",
city:"ROTTERDAM",
zip:"3071 AR",
owner:"De heer C. Peters en mw. H.M. Peters-van der Lee",
phone:"010-2900033",
latitude:51.9042350,
longitude:4.5033740,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store247:
{
no:247,
storeid:"8044",
id:"BRPAqPywawQAAAFKVDIM0ibF",
title:"Bruna Operaplein, APELDOORN",
street:"Operaplein",
housenr:2,
housenraddition:"",
city:"APELDOORN",
zip:"7323 EJ",
owner:"De heer J.J. de Boer en mevrouw M.M.J. de Boer-Harmsen",
phone:"055-3604363",
latitude:52.2284340,
longitude:5.9856997,
opening:
{
monday:"08:00 - 20:00 uur",
tuesday:"08:00 - 20:00 uur",
wednesday:"08:00 - 20:00 uur",
thursday:"08:00 - 20:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 18:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"woensdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"donderdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store248:
{
no:248,
storeid:"8048",
id:"jr_AqPywMKsAAAFKVjIM0ibF",
title:"Bruna Runstraat, SCHAIJK",
street:"Runstraat",
housenr:4,
housenraddition:"",
city:"SCHAIJK",
zip:"5374 AC",
owner:"Mevrouw A.A.M.M. Maathuis-Spijkers en de heer B.A. Maathuis",
phone:"0486-461560",
latitude:51.7470071,
longitude:5.6308484,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store249:
{
no:249,
storeid:"8049",
id:"EpvAqPywNL4AAAFKVzIM0ibF",
title:"Bruna Szydlowskiplein, AXEL",
street:"Szydlowskiplein",
housenr:14,
housenraddition:"",
city:"AXEL",
zip:"4571 EW",
owner:"Mw E.M. Luitjens-Kleywegt en dhr D. Luitjens",
phone:"0115-533332",
latitude:51.2663635,
longitude:3.9088154,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store250:
{
no:250,
storeid:"8050",
id:"AknAqPywNL0AAAFKVzIM0ibF",
title:"Bruna Dabbehof, OUDE TONGE",
street:"Dabbehof",
housenr:42,
housenraddition:"",
city:"OUDE TONGE",
zip:"3255 XN",
owner:"De heer A.H. Kauffman en mw G.G. Kauffman-Roelofsen",
phone:"0187-643598",
latitude:51.6897443,
longitude:4.2139479,
opening:
{
monday:"08:30 - 17:30 uur",
tuesday:"08:30 - 17:30 uur",
wednesday:"08:30 - 17:30 uur",
thursday:"08:30 - 17:30 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"dinsdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"woensdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"donderdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store251:
{
no:251,
storeid:"8058",
id:"obXAqPywxN4AAAFKWDIM0ibF",
title:"Bruna Dorpsstraat, HEINKENSZAND",
street:"Dorpsstraat",
housenr:10,
housenraddition:"",
city:"HEINKENSZAND",
zip:"4451 BC",
owner:"Mevrouw M.  de Smit - van Biezen",
phone:"0113-563839",
latitude:51.4740929,
longitude:3.8125750,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 20:30 uur",
saturday:"09:00 - 16:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2030", "C":"09:00 - 20:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1600", "C":"09:00 - 16:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store252:
{
no:252,
storeid:"8059",
id:"5KrAqPywxN0AAAFKWDIM0ibF",
title:"Bruna Dorpsstraat, BEMMEL",
street:"Dorpsstraat",
housenr:45,
housenraddition:"",
city:"BEMMEL",
zip:"6681 BL",
owner:"Dhr A.B.J.H. van Appeldoorn en dhr A.J. Rietberg",
phone:"0481-450267",
latitude:51.8911331,
longitude:5.8980878,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store253:
{
no:253,
storeid:"8067",
id:"NgXAqPywxOAAAAFKWDIM0ibF",
title:"Bruna Nieuwe Tielseweg, TIEL",
street:"Nieuwe Tielseweg",
housenr:163,
housenraddition:"",
city:"TIEL",
zip:"4006 BG",
owner:"De heer H.M. Wennekes",
phone:"0344-635533",
latitude:51.8788108,
longitude:5.4165675,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store254:
{
no:254,
storeid:"8068",
id:"W7DAqPywxN8AAAFKWDIM0ibF",
title:"Bruna Leenderweg, EINDHOVEN",
street:"Leenderweg",
housenr:64,
housenraddition:"",
city:"EINDHOVEN",
zip:"5615 AB",
owner:"De heer D.J.A. Meijer en mevrouw H.M.C.F. Meijer - Verbeek",
phone:"040-2122009",
latitude:51.4263245,
longitude:5.4890711,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store255:
{
no:255,
storeid:"8075",
id:"gl7AqPyw.RUAAAFKWTIM0ibF",
title:"Bruna Markt, BUDEL",
street:"Markt",
housenr:9,
housenraddition:"",
city:"BUDEL",
zip:"6021 CD",
owner:"Mevrouw D. Roozenbeek",
phone:"0495-494978",
latitude:51.2739458,
longitude:5.5740326,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store256:
{
no:256,
storeid:"8076",
id:"eE3AqPyw.RQAAAFKWTIM0ibF",
title:"Bruna Raadhuisstraat, VORDEN",
street:"Raadhuisstraat",
housenr:20,
housenraddition:"",
city:"VORDEN",
zip:"7251 AB",
owner:"Mevrouw C.J. Rondeel-Rood",
phone:"0575-553100",
latitude:52.1026676,
longitude:6.3118255,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store257:
{
no:257,
storeid:"8079",
id:"6fnAqPyw2akAAAFKXzIM0ibF",
title:"Bruna Mia van IJperenplein, ROTTERDAM",
street:"Mia van IJperenplein",
housenr:99,
housenraddition:"",
city:"ROTTERDAM",
zip:"3065 JK",
owner:"De heer H.T. Zinhagel",
phone:"010-2021671",
latitude:51.9287690,
longitude:4.5466389,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store258:
{
no:258,
storeid:"8084",
id:"bGnAqPywaRIAAAFKWjIM0ibF",
title:"Bruna Molenvlietbrink, WOERDEN",
street:"Molenvlietbrink",
housenr:4,
housenraddition:"",
city:"WOERDEN",
zip:"3448 HM",
owner:"De heer H.L.A. van Well",
phone:"0348-435527",
latitude:52.0773516,
longitude:4.8637548,
opening:
{
monday:"08:00 - 20:00 uur (p",
tuesday:"08:00 - 20:00 uur (p",
wednesday:"08:00 - 20:00 uur (p",
thursday:"08:00 - 21:00 uur (p",
friday:"08:00 - 21:00 uur (p",
saturday:"08:00 - 20:00 uur (p",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur (p"},
{"D":"dinsdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur (p"},
{"D":"woensdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur (p"},
{"D":"donderdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur (p"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur (p"},
{"D":"zaterdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur (p"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store259:
{
no:259,
storeid:"8090",
id:"_YHAqPywF1MAAAFKYTIM0ibF",
title:"Bruna van den Berglaan, VOORTHUIZEN",
street:"van den Berglaan",
housenr:2,
housenraddition:"AB",
city:"VOORTHUIZEN",
zip:"3781 GG",
owner:"De heer R.A. Batenburg",
phone:"0342-471770",
latitude:52.1868382,
longitude:5.6071185,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store260:
{
no:260,
storeid:"8091",
id:"TG3AqPywx5oAAAFKYDIM0ibF",
title:"Bruna Stationsweg, OOSTVOORNE",
street:"Stationsweg",
housenr:8,
housenraddition:"A",
city:"OOSTVOORNE",
zip:"3233 CT",
owner:"De heer R. Ladan en mw A.M.F.P. Ladan-Kaldenhoven",
phone:"0181-484751",
latitude:51.9143687,
longitude:4.1022583,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 18:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store261:
{
no:261,
storeid:"8092",
id:"8dvAqPyw2agAAAFKXzIM0ibF",
title:"Bruna Schubertlaan, APELDOORN",
street:"Schubertlaan",
housenr:14,
housenraddition:"",
city:"APELDOORN",
zip:"7333 CV",
owner:"Mevrouw W. Bulder en mevrouw L. Bulder",
phone:"055-5332071",
latitude:52.1899390,
longitude:5.9651274,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00- 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 16:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00- 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1600", "C":"09:00 - 16:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store262:
{
no:262,
storeid:"8094",
id:"O1fAqPywF1IAAAFKYTIM0ibF",
title:"Bruna Hoofdweg, EELDE",
street:"Hoofdweg",
housenr:71,
housenraddition:"A",
city:"EELDE",
zip:"9761 EB",
owner:"De heer W. Buikema en mevrouw B.G. Buikema-de Jager",
phone:"050-3095774",
latitude:53.1336342,
longitude:6.5641400,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 20:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store263:
{
no:263,
storeid:"8095",
id:"01XAqPywx5sAAAFKYDIM0ibF",
title:"Bruna Sluisplein, ANNA PAULOWNA",
street:"Sluisplein",
housenr:16,
housenraddition:"",
city:"ANNA PAULOWNA",
zip:"1761 BT",
owner:"De heer F.M. Westra en de heer A.S.F. Westra",
phone:"0223-534573",
latitude:52.8617089,
longitude:4.8319016,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store264:
{
no:264,
storeid:"8103",
id:"xBbAqPywbEYAAAFKYjIM0ibF",
title:"Bruna Nieuwe Es, SLEEUWIJK",
street:"Nieuwe Es",
housenr:67,
housenraddition:"",
city:"SLEEUWIJK",
zip:"4254 AW",
owner:"De heer P. van Ballegooijen",
phone:"0183-302026",
latitude:51.8133480,
longitude:4.9460760,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 18:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store265:
{
no:265,
storeid:"8104",
id:"ZeLAqPywJh0AAAFKZTIM0ibF",
title:"Bruna van Swinderenstraat, BALK",
street:"van Swinderenstraat",
housenr:13,
housenraddition:"A",
city:"BALK",
zip:"8561 AP",
owner:"De heer M. Krottje en mevrouw A.E. Krottje-de Jong",
phone:"0514-605211",
latitude:52.8986105,
longitude:5.5816080,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store266:
{
no:266,
storeid:"8106",
id:"R.TAqPyw28oAAAFKZDIM0ibF",
title:"Bruna Dorpsstraat, RENKUM",
street:"Dorpsstraat",
housenr:35,
housenraddition:"",
city:"RENKUM",
zip:"6871 AB",
owner:"De heer A. van Drie en de heer M.A. van der Greft",
phone:"0317-312577",
latitude:51.9724080,
longitude:5.7315136,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store267:
{
no:267,
storeid:"8109",
id:"QNrAqPywJhwAAAFKZTIM0ibF",
title:"Bruna Sniederslaan, BLADEL",
street:"Sniederslaan",
housenr:51,
housenraddition:"",
city:"BLADEL",
zip:"5531 EH",
owner:"De heer G.A.H.S. van Herk",
phone:"0497-369349",
latitude:51.3677330,
longitude:5.2203817,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store268:
{
no:268,
storeid:"8113",
id:"6rrAqPyw28sAAAFKZDIM0ibF",
title:"Bruna Ina Boudier Bakkerstraat, LEIDEN",
street:"Ina Boudier Bakkerstraat",
housenr:9,
housenraddition:"",
city:"LEIDEN",
zip:"2331 AX",
owner:"Dhr P.J. Monnichmann en mw T.M. Monnichmann-Stoop",
phone:"071-5763848",
latitude:52.1520769,
longitude:4.4521787,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store269:
{
no:269,
storeid:"8119",
id:"YynAqPywJh4AAAFKZTIM0ibF",
title:"Bruna A. Diepenbrockhof, DEN HAAG",
street:"A. Diepenbrockhof",
housenr:90,
housenraddition:"",
city:"DEN HAAG",
zip:"2551 LD",
owner:"De heer J. Koekendorp",
phone:"070-4042503",
latitude:52.0592257,
longitude:4.2312267,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store270:
{
no:270,
storeid:"8126",
id:"nUjAqPywolIAAAFKaDIM0ibF",
title:"Bruna Molenweg, MAASBRACHT",
street:"Molenweg",
housenr:23,
housenraddition:"",
city:"MAASBRACHT",
zip:"6051 HG",
owner:"De heer A.P.M. Golsteijn en mevrouw C.B. Golsteijn-Moonen",
phone:"0475-461404",
latitude:51.1466354,
longitude:5.8917171,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store271:
{
no:271,
storeid:"8127",
id:"EE3AqPywIqsAAAFKZzIM0ibF",
title:"Bruna De Kolk, SURHUISTERVEEN",
street:"De Kolk",
housenr:33,
housenraddition:"B",
city:"SURHUISTERVEEN",
zip:"9231 CV",
owner:"De heer K. Alma en mevrouw W. Alma-Bekkema",
phone:"0512-360815",
latitude:53.1828077,
longitude:6.1665437,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00- 18:00 uur",
wednesday:"09:00- 18:00 uur",
thursday:"09:00- 18:00 uur",
friday:"09:00- 21:00 uur",
saturday:"09:00- 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00- 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00- 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00- 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00- 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00- 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store272:
{
no:272,
storeid:"8133",
id:"mZbAqPywIqwAAAFKZzIM0ibF",
title:"Bruna Haterseweg, NIJMEGEN",
street:"Haterseweg",
housenr:829,
housenraddition:"",
city:"NIJMEGEN",
zip:"6535 ZT",
owner:"De heer H.J.M. Teunissen en mevrouw J.W.E.M. Teunissen-Buiks",
phone:"024-3557370",
latitude:51.8075019,
longitude:5.8248937,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store273:
{
no:273,
storeid:"8136",
id:"_ozAqPywolEAAAFKaDIM0ibF",
title:"Bruna Willem de Merodestraat, HENGELO",
street:"Willem de Merodestraat",
housenr:92,
housenraddition:"",
city:"HENGELO",
zip:"7552 WZ",
owner:"Mevrouw W. Bulder-Goossens en mevrouw L. Bulder",
phone:"074-2506442",
latitude:52.2624141,
longitude:6.8210099,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store274:
{
no:274,
storeid:"8138",
id:"aevAqPywLOUAAAFKaTIM0ibF",
title:"Bruna Spuiplein, BRESKENS",
street:"Spuiplein",
housenr:53,
housenraddition:"",
city:"BRESKENS",
zip:"4511 AP",
owner:"De heer P.M. Boogaard en mevrouw M.E.C. Lohman",
phone:"0117-383571",
latitude:51.3960655,
longitude:3.5605283,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 18:00 uur",
sunday:"09:00 - 18:00 uur"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zondag", "F":"0900", "U":"1800", "C": "09:00 - 18:00 uur"}
],
opensunday: true
},
store275:
{
no:275,
storeid:"8140",
id:"md3AqPywLOQAAAFKaTIM0ibF",
title:"Bruna Galle Promenade, VELSERBROEK",
street:"Galle Promenade",
housenr:5,
housenraddition:"",
city:"VELSERBROEK",
zip:"1991 PP",
owner:"De heer H.G. Meijer en mevrouw P.M. Meijer-v&#47;d Eng",
phone:"023-5378140",
latitude:52.4348072,
longitude:4.6589402,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store276:
{
no:276,
storeid:"8146",
id:"s_zAqPywLOgAAAFKaTIM0ibF",
title:"Bruna van Hoogendorplaan, VLAARDINGEN",
street:"van Hoogendorplaan",
housenr:913,
housenraddition:"",
city:"VLAARDINGEN",
zip:"3135 BK",
owner:"Mevrouw L. van Vliet",
phone:"010-2470293",
latitude:51.9161716,
longitude:4.3594955,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 17:30 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store277:
{
no:277,
storeid:"8152",
id:"mgHAqPywLOcAAAFKaTIM0ibF",
title:"Bruna Nieuwstraat, EERSEL",
street:"Nieuwstraat",
housenr:10,
housenraddition:"",
city:"EERSEL",
zip:"5521 CC",
owner:"De heer M.M.W.J. Schellens",
phone:"0497-518800",
latitude:51.3608802,
longitude:5.3100284,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store278:
{
no:278,
storeid:"8156",
id:"znXAqPywFloAAAFKazIM0ibF",
title:"Bruna Herenstraat, RIJSWIJK",
street:"Herenstraat",
housenr:5,
housenraddition:"",
city:"RIJSWIJK",
zip:"2282 BN",
owner:"De heer C. Luiten en mw Y.A.M. Luiten-Olijhoek",
phone:"070-3994007",
latitude:52.0564653,
longitude:4.3371311,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store279:
{
no:279,
storeid:"8159",
id:"jE_AqPywHS8AAAFKajIM0ibF",
title:"Bruna Brinkstraat, BEILEN",
street:"Brinkstraat",
housenr:27,
housenraddition:"",
city:"BEILEN",
zip:"9411 KK",
owner:"De heer J.J. Jonker en mevrouw J.G. Terpstra",
phone:"0593-542276",
latitude:52.8592505,
longitude:6.5140374,
opening:
{
monday:"13:00 - 17:30 uur",
tuesday:"09:30 - 17:30 uur",
wednesday:"09:30 - 17:30 uur",
thursday:"09:30 - 17:30 uur",
friday:"09:30 - 17:30 uur",
saturday:"09:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1730", "C":"13:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"woensdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"donderdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0930", "U":"1730", "C":"09:30 - 17:30 uur"},
{"D":"zaterdag", "F":"0930", "U":"1700", "C":"09:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store280:
{
no:280,
storeid:"8161",
id:"uILAqPywFlsAAAFKazIM0ibF",
title:"Bruna Hoofdstraat, DE LIER",
street:"Hoofdstraat",
housenr:56,
housenraddition:"A",
city:"DE LIER",
zip:"2678 CL",
owner:"De heer El.H. Laglagh en mevrouw M.G. Hoogerwerf",
phone:"0174-613980",
latitude:51.9744497,
longitude:4.2495093,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:30 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2030", "C":"08:30 - 20:30 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store281:
{
no:281,
storeid:"8166",
id:"l5DAqPywF7QAAAFKbDIM0ibF",
title:"Bruna Prins Hendrikstraat, HOEK VAN HOLLAND",
street:"Prins Hendrikstraat",
housenr:291,
housenraddition:"",
city:"HOEK VAN HOLLAND",
zip:"3151 AK",
owner:"De heer M.A. van der Poel en mw N. van der Poel-de Jong",
phone:"0174-382916",
latitude:51.9783127,
longitude:4.1283902,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store282:
{
no:282,
storeid:"8170",
id:"Uv3AqPywF7MAAAFKbDIM0ibF",
title:"Bruna Kerkstraat, HATTEM",
street:"Kerkstraat",
housenr:35,
housenraddition:"",
city:"HATTEM",
zip:"8051 GK",
owner:"De heer W.K.J. Schuring",
phone:"038-4441292",
latitude:52.4747766,
longitude:6.0677663,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store283:
{
no:283,
storeid:"8173",
id:"Z7TAqPywF7IAAAFKbDIM0ibF",
title:"Bruna Dorpsstraat, HEERDE",
street:"Dorpsstraat",
housenr:19,
housenraddition:"",
city:"HEERDE",
zip:"8181 HL",
owner:"De heer M. Schuurhuis en mw J. Schuurhuis-van Kolfschoten",
phone:"0578-691614",
latitude:52.3871343,
longitude:6.0415318,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store284:
{
no:284,
storeid:"8175",
id:"Z5TAqPywuO0AAAFKbTIM0ibF",
title:"Bruna Kruisstraat, EINDHOVEN",
street:"Kruisstraat",
housenr:165,
housenraddition:"",
city:"EINDHOVEN",
zip:"5612 CH",
owner:"De heer D.J.A. Meijer en mevrouw H.M.C.F. Meijer - Verbeek",
phone:"040-2436774",
latitude:51.4494553,
longitude:5.4737594,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store285:
{
no:285,
storeid:"8177",
id:"nY7AqPywuO8AAAFKbTIM0ibF",
title:"Bruna Oosterstraat, STEENWIJK",
street:"Oosterstraat",
housenr:22,
housenraddition:"",
city:"STEENWIJK",
zip:"8331 HE",
owner:"De heer R. Westerveen en mevrouw A. Westerveen-van der Zee",
phone:"0521-523060",
latitude:52.7874006,
longitude:6.1176248,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store286:
{
no:286,
storeid:"8180",
id:"AMzAqPywuO4AAAFKbTIM0ibF",
title:"Bruna Kerkstraat, ZEEWOLDE",
street:"Kerkstraat",
housenr:10,
housenraddition:"",
city:"ZEEWOLDE",
zip:"3891 ET",
owner:"De heer W.J. Hartman en mevrouw J.M. Hartman-Elsendoorn",
phone:"036-5221844",
latitude:52.3311150,
longitude:5.5415961,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store287:
{
no:287,
storeid:"8184",
id:"2ODAqPywfywAAAFKbjIM0ibF",
title:"Bruna R. Praediniusstraat, WINSUM",
street:"R. Praediniusstraat",
housenr:5,
housenraddition:"",
city:"WINSUM",
zip:"9951 CA",
owner:"De heer J. Weidgraaf en mevrouw B.J. Weidgraaf-Wertien",
phone:"0595-442653",
latitude:53.3316007,
longitude:6.5147236,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store288:
{
no:288,
storeid:"8186",
id:"O23AqPywfy0AAAFKbjIM0ibF",
title:"Bruna Lambertushof, NEDERWEERT",
street:"Lambertushof",
housenr:30,
housenraddition:"",
city:"NEDERWEERT",
zip:"6031 EP",
owner:"De heer F.G.P.J.M. Gommans en mevrouw B.M.C.F. Gommans-Feijen",
phone:"0495-631748",
latitude:51.2854023,
longitude:5.7488926,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 20:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store289:
{
no:289,
storeid:"8187",
id:"PX3AqPywfy4AAAFKbjIM0ibF",
title:"Bruna Fuchsiastraat, NIJMEGEN",
street:"Fuchsiastraat",
housenr:22,
housenraddition:"",
city:"NIJMEGEN",
zip:"6542 NX",
owner:"De heer P.J. Janssen en mevrouw M.M.E. Janssen-Verploegen",
phone:"024-3886976",
latitude:51.8412821,
longitude:5.8399103,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 20:00 uur",
friday:"08:00 - 18:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store290:
{
no:290,
storeid:"8189",
id:"c8XAqPywNREAAAFKbzIM0ibF",
title:"Bruna De Symfonie, NIEUW VENNEP",
street:"De Symfonie",
housenr:37,
housenraddition:"",
city:"NIEUW VENNEP",
zip:"2151 MD",
owner:"De heer J. Neuteboom",
phone:"0252-624747",
latitude:52.2646164,
longitude:4.6324295,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store291:
{
no:291,
storeid:"8190",
id:"eLfAqPywWOoAAAFKcTIM0ibF",
title:"Bruna Voorstraat, HARLINGEN",
street:"Voorstraat",
housenr:49,
housenraddition:"",
city:"HARLINGEN",
zip:"8861 BE",
owner:"De heer H. Beimers",
phone:"0517-430285",
latitude:53.1749400,
longitude:5.4188683,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 21:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store292:
{
no:292,
storeid:"8194",
id:"HYrAqPywWOsAAAFKcTIM0ibF",
title:"Bruna Paganinipassage, LANDGRAAF",
street:"Paganinipassage",
housenr:92,
housenraddition:"",
city:"LANDGRAAF",
zip:"6371 LJ",
owner:"De heer R. de Jager en mevrouw J.E. Schot",
phone:"045-5326518",
latitude:50.9056391,
longitude:6.0252443,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 19:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12-17 1e zondag vd maand"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"12", "U":"171", "C": "12-17 1e zondag vd maand"}
],
opensunday: true
},
store293:
{
no:293,
storeid:"8195",
id:"S9vAqPywWOkAAAFKcTIM0ibF",
title:"Bruna Langestraat, KLAZIENAVEEN",
street:"Langestraat",
housenr:111,
housenraddition:"",
city:"KLAZIENAVEEN",
zip:"7891 GG",
owner:"De heer H. Omlo en mevrouw M. Omlo-Bos",
phone:"0591-318851",
latitude:52.7245150,
longitude:6.9888223,
opening:
{
monday:"13:00 - 17:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 21:00 uur",
friday:"08:00 - 18:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1700", "C":"13:00 - 17:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store294:
{
no:294,
storeid:"8196",
id:"Qq_AqPyw8tUAAAFKcDIM0ibF",
title:"Bruna Oranjestraat, DIDAM",
street:"Oranjestraat",
housenr:4,
housenraddition:"",
city:"DIDAM",
zip:"6942 BD",
owner:"De heer G.J. Kuiper",
phone:"0316-221205",
latitude:51.9374739,
longitude:6.1283948,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store295:
{
no:295,
storeid:"8204",
id:"9IfAqPyw5CAAAAFKcjIM0ibF",
title:"Bruna Singel, NIJKERK",
street:"Singel",
housenr:32,
housenraddition:"",
city:"NIJKERK",
zip:"3861 AE",
owner:"De heer W.B. Pater en mevrouw E. Andeweg",
phone:"033-2459619",
latitude:52.2235995,
longitude:5.4870293,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store296:
{
no:296,
storeid:"8205",
id:"1xbAqPyw5CEAAAFKcjIM0ibF",
title:"Bruna Brinkhorst, HAREN (GR)",
street:"Brinkhorst",
housenr:22,
housenraddition:"",
city:"HAREN (GR)",
zip:"9751 AT",
owner:"De heren P.B. Albronda en P.J. Albronda",
phone:"050-5344139",
latitude:53.1731133,
longitude:6.6045336,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store297:
{
no:297,
storeid:"8206",
id:"B6HAqPywuIwAAAFKczIM0ibF",
title:"Bruna De Brink, LOSSER",
street:"De Brink",
housenr:48,
housenraddition:"A",
city:"LOSSER",
zip:"7581 JB",
owner:"Mevrouw S.J.A. Teunissen",
phone:"053-5360460",
latitude:52.2614067,
longitude:7.0069099,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 16:30 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1630", "C":"09:00 - 16:30 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store298:
{
no:298,
storeid:"8208",
id:"tXPAqPywGY0AAAFKdDIM0ibF",
title:"Bruna Parkstraat, NUENEN",
street:"Parkstraat",
housenr:13,
housenraddition:"",
city:"NUENEN",
zip:"5671 GD",
owner:"Dhr D.M. Vredenbregt en mw M.A.H. Vredenbregt-van den Heuvel",
phone:"040-2831290",
latitude:51.4731195,
longitude:5.5468118,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store299:
{
no:299,
storeid:"8210",
id:"lfbAqPywuIsAAAFKczIM0ibF",
title:"Bruna Argonautenweg, ROTTERDAM",
street:"Argonautenweg",
housenr:5,
housenraddition:"E",
city:"ROTTERDAM",
zip:"3054 RP",
owner:"De heer A.V. Barten en mevrouw G. Barten-Nieuwendijk",
phone:"010-4227035",
latitude:51.9593429,
longitude:4.4937552,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store300:
{
no:300,
storeid:"8216",
id:"fBvAqPywuI0AAAFKczIM0ibF",
title:"Bruna H. Dunantplein, NIJVERDAL",
street:"H. Dunantplein",
housenr:4,
housenraddition:"",
city:"NIJVERDAL",
zip:"7442 NJ",
owner:"De heer J.H. Prinsen en mw H.J. Prinsen-van Wijk",
phone:"0548-615000",
latitude:52.3646147,
longitude:6.4607602,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store301:
{
no:301,
storeid:"8220",
id:"8lbAqPywGY4AAAFKdDIM0ibF",
title:"Bruna Ackershof, PIJNACKER",
street:"Ackershof",
housenr:30,
housenraddition:"",
city:"PIJNACKER",
zip:"2641 DX",
owner:"De heer J.H. van Schooten en mevrouw M. van Schooten-Koning",
phone:"015-3614202",
latitude:52.0193435,
longitude:4.4319776,
opening:
{
monday:"11:00 - 17:30 uur",
tuesday:"08:30 - 17:30 uur",
wednesday:"08:30 - 17:30 uur",
thursday:"08:30 - 17:30 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1730", "C":"11:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"woensdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"donderdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store302:
{
no:302,
storeid:"8221",
id:"TyjAqPywGY8AAAFKdDIM0ibF",
title:"Bruna Pieter Jellessingel, STIENS",
street:"Pieter Jellessingel",
housenr:11,
housenraddition:"",
city:"STIENS",
zip:"9051 BV",
owner:"Dhr T. Kamminga en mw A. Kamminga-Nijkamp",
phone:"058-2575283",
latitude:53.2623695,
longitude:5.7581970,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store303:
{
no:303,
storeid:"8222",
id:"fpjAqPywU0sAAAFKdTIM0ibF",
title:"Bruna Kerkstraat, NOORDWIJK",
street:"Kerkstraat",
housenr:23,
housenraddition:"",
city:"NOORDWIJK",
zip:"2201 KK",
owner:"De heer L.J. Baars en mevrouw G.C.M. van Tongeren",
phone:"071-3614934",
latitude:52.2345447,
longitude:4.4462001,
opening:
{
monday:"08:00 - 18:30 uur",
tuesday:"08:00 - 18:30 uur",
wednesday:"08:00 - 18:30 uur",
thursday:"08:00 - 18:30 uur",
friday:"08:00 - 18:30 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"dinsdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"woensdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"donderdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"vrijdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store304:
{
no:304,
storeid:"8223",
id:"LE7AqPywU0wAAAFKdTIM0ibF",
title:"Bruna Julianastraat, GENDT",
street:"Julianastraat",
housenr:2,
housenraddition:"",
city:"GENDT",
zip:"6691 AV",
owner:"De heer E.J.F.M. Viergever",
phone:"0481-422945",
latitude:51.8782114,
longitude:5.9702432,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store305:
{
no:305,
storeid:"8225",
id:"rtbAqPywgy0AAAFKdjIM0ibF",
title:"Bruna Zandstraat, GENNEP",
street:"Zandstraat",
housenr:56,
housenraddition:"B",
city:"GENNEP",
zip:"6591 DD",
owner:"Mw T.M. de Leeuw-Hendriks en mw I. de Leeuw",
phone:"0485-515386",
latitude:51.6977055,
longitude:5.9714146,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store306:
{
no:306,
storeid:"8227",
id:"iyPAqPywgywAAAFKdjIM0ibF",
title:"Bruna Overwinningsplein, GRONINGEN",
street:"Overwinningsplein",
housenr:71,
housenraddition:"",
city:"GRONINGEN",
zip:"9728 GR",
owner:"Mevrouw M.J. Noorda-Jansma",
phone:"050-5259156",
latitude:53.1985483,
longitude:6.5594031,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store307:
{
no:307,
storeid:"8228",
id:"PRDAqPywgy4AAAFKdjIM0ibF",
title:"Bruna Simon Carmiggelthof, DEN HAAG",
street:"Simon Carmiggelthof",
housenr:33,
housenraddition:"",
city:"DEN HAAG",
zip:"2492 JR",
owner:"Mevrouw V.G. van der Wens",
phone:"070-4445523",
latitude:52.0648882,
longitude:4.4030380,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 20:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store308:
{
no:308,
storeid:"8229",
id:"FxzAqPywujkAAAFKdzIM0ibF",
title:"Bruna Rijksweg, REUVER",
street:"Rijksweg",
housenr:36,
housenraddition:"B",
city:"REUVER",
zip:"5953 AG",
owner:"De heer A.C.H. Ottenheim en mevrouw C.P. Ottenheim-Snijders",
phone:"077-4778624",
latitude:51.2848869,
longitude:6.0791189,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store309:
{
no:309,
storeid:"8231",
id:"5MTAqPywujoAAAFKdzIM0ibF",
title:"Bruna Dorpsstraat, BENNEKOM",
street:"Dorpsstraat",
housenr:22,
housenraddition:"",
city:"BENNEKOM",
zip:"6721 JK",
owner:"De heer J. van Schaik en mevrouw I. van Schaik-van Gaalen",
phone:"0318-414394",
latitude:51.9987938,
longitude:5.6756627,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store310:
{
no:310,
storeid:"8233",
id:"TlPAqPywM6UAAAFKeDIM0ibF",
title:"Bruna Beltrumsestraat, GROENLO",
street:"Beltrumsestraat",
housenr:52,
housenraddition:"",
city:"GROENLO",
zip:"7141 AM",
owner:"De heer S. Wallerbosch",
phone:"0544-462554",
latitude:52.0425743,
longitude:6.6134397,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store311:
{
no:311,
storeid:"8234",
id:"xwvAqPyw.CoAAAFKeTIM0ibF",
title:"Bruna Postelstraat, SOMEREN",
street:"Postelstraat",
housenr:29,
housenraddition:"",
city:"SOMEREN",
zip:"5711 EM",
owner:"Mevrouw P.L.J. Brouwers",
phone:"0493-440416",
latitude:51.3834773,
longitude:5.7112585,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store312:
{
no:312,
storeid:"8235",
id:"04nAqPyw.CwAAAFKeTIM0ibF",
title:"Bruna Cruquius, AMERSFOORT",
street:"Cruquius",
housenr:57,
housenraddition:"",
city:"AMERSFOORT",
zip:"3825 MJ",
owner:"De heer A.M. Brussaard en mevrouw M.G. Brussaard-van Aalsburg",
phone:"033-4779279",
latitude:52.1955255,
longitude:5.4304656,
opening:
{
monday:"09:00 - 19:00 uur",
tuesday:"09:00 - 19:00 uur",
wednesday:"09:00 - 19:00 uur",
thursday:"09:00 - 19:00 uur",
friday:"09:00 - 19:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1900", "C":"09:00 - 19:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store313:
{
no:313,
storeid:"8236",
id:"dHvAqPyw.CsAAAFKeTIM0ibF",
title:"Bruna Hoofdstraat, NOORDWIJK",
street:"Hoofdstraat",
housenr:99,
housenraddition:"",
city:"NOORDWIJK",
zip:"2202 EW",
owner:"De heer R.H. Stolk en de heer K. Jappes",
phone:"071-3617505",
latitude:52.2433482,
longitude:4.4312200,
opening:
{
monday:"09:00 - 17:30 uur",
tuesday:"09:00 - 17:30 uur",
wednesday:"09:00 - 17:30 uur",
thursday:"09:00 - 17:30 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"12:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"woensdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"donderdag", "F":"0900", "U":"1730", "C":"09:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"1200", "U":"1700", "C": "12:00 - 17:00 uur"}
],
opensunday: true
},
store314:
{
no:314,
storeid:"8238",
id:"NLDAqPyw.C0AAAFKeTIM0ibF",
title:"Bruna Dorpsplein, ROCKANJE",
street:"Dorpsplein",
housenr:20,
housenraddition:"",
city:"ROCKANJE",
zip:"3235 AD",
owner:"De heer M.J. Roest en mevrouw E.B.M. Roest-Bosch",
phone:"0181-407222",
latitude:51.8741462,
longitude:4.0693946,
opening:
{
monday:"08:30 - 17:30 uur",
tuesday:"08:30 - 17:30 uur",
wednesday:"08:30 - 17:30 uur",
thursday:"08:30 - 17:30 uur",
friday:"08:30 - 17:30 uur",
saturday:"08:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"dinsdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"woensdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"donderdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store315:
{
no:315,
storeid:"8239",
id:"AYzAqPywJqQAAAFKejIM0ibF",
title:"Bruna Dobbe, ZWOLLE",
street:"Dobbe",
housenr:24,
housenraddition:"",
city:"ZWOLLE",
zip:"8032 JW",
owner:"De heer A. Hagenbeek",
phone:"038-4530735",
latitude:52.5295389,
longitude:6.1014272,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store316:
{
no:316,
storeid:"8240",
id:"oL_AqPywJ0sAAAFKezIM0ibF",
title:"Bruna Hoofdstraat, WESTERBORK",
street:"Hoofdstraat",
housenr:39,
housenraddition:"A",
city:"WESTERBORK",
zip:"9431 AC",
owner:"De heer M. Vroon",
phone:"0593-333673",
latitude:52.8495288,
longitude:6.6130882,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store317:
{
no:317,
storeid:"8241",
id:"oPDAqPywJ0wAAAFKezIM0ibF",
title:"Bruna Marsmanplein, HAARLEM",
street:"Marsmanplein",
housenr:14,
housenraddition:"",
city:"HAARLEM",
zip:"2025 DT",
owner:"De heer R.A. de Groot en mevrouw J.E.H.M. de Groot-Veltman",
phone:"023-5371081",
latitude:52.4158718,
longitude:4.6519759,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store318:
{
no:318,
storeid:"8242",
id:"hI7AqPywlbsAAAFKfDIM0ibF",
title:"Bruna Tijnjedijk, LEEUWARDEN",
street:"Tijnjedijk",
housenr:76,
housenraddition:"B",
city:"LEEUWARDEN",
zip:"8936 AD",
owner:"De heer P.L.J. Brants en mevrouw P.C.C. Brants - de Jongh",
phone:"058-2802658",
latitude:53.1925513,
longitude:5.8189571,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store319:
{
no:319,
storeid:"8243",
id:"ARjAqPywlboAAAFKfDIM0ibF",
title:"Bruna Valkenveld, EMMEN",
street:"Valkenveld",
housenr:115,
housenraddition:"A",
city:"EMMEN",
zip:"7827 HD",
owner:"De heer R. van den Berkt en mevrouw M.P. Dekker",
phone:"0591-632089",
latitude:52.7501235,
longitude:6.8901859,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store320:
{
no:320,
storeid:"8244",
id:"eXbAqPywWukAAAFKfjIM0ibF",
title:"Bruna Grotestraat, BEDUM",
street:"Grotestraat",
housenr:15,
housenraddition:"B",
city:"BEDUM",
zip:"9781 HA",
owner:"De heer G. Enting en mevrouw Z.M. Tichem",
phone:"050-3010635",
latitude:53.3008251,
longitude:6.6030373,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store321:
{
no:321,
storeid:"8245",
id:"ZFzAqPywN6EAAAFKfTIM0ibF",
title:"Bruna Helperplein, GRONINGEN",
street:"Helperplein",
housenr:11,
housenraddition:"",
city:"GRONINGEN",
zip:"9721 CX",
owner:"De heer J. Weidgraaf en mevrouw B.J. Weidgraaf-Wertien",
phone:"050-5291901",
latitude:53.1979325,
longitude:6.5790956,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 21:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store322:
{
no:322,
storeid:"8246",
id:"sVfAqPywWugAAAFKfjIM0ibF",
title:"Bruna Westeinde, VRIEZENVEEN",
street:"Westeinde",
housenr:25,
housenraddition:"",
city:"VRIEZENVEEN",
zip:"7671 EK",
owner:"De heer J.F. Hekkema",
phone:"0546-564842",
latitude:52.4121656,
longitude:6.6269929,
opening:
{
monday:"08:00 - 18:30 uur",
tuesday:"08:00 - 18:30 uur",
wednesday:"08:00 - 18:30 uur",
thursday:"08:00 - 18:30 uur",
friday:"08:00 - 18:30 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"dinsdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"woensdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"donderdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"vrijdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store323:
{
no:323,
storeid:"8247",
id:"sq7AqPywN6IAAAFKfTIM0ibF",
title:"Bruna Flora, DEVENTER",
street:"Flora",
housenr:201,
housenraddition:"",
city:"DEVENTER",
zip:"7422 LP",
owner:"Mevrouw W. Bulder-Goossens en mevrouw L. Bulder",
phone:"0570-767588",
latitude:52.2479196,
longitude:6.2136978,
opening:
{
monday:"12:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"koopzondag ltste zond:&#47;maand"
},
hours:[
{"D":"maandag", "F":"1200", "U":"1800", "C":"12:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "koopzondag ltste zond:&#47;maand"}
],
opensunday: true
},
store324:
{
no:324,
storeid:"8606",
id:"MjLAqPywWuoAAAFKfjIM0ibF",
title:"Bruna Langestraat, HUISSEN",
street:"Langestraat",
housenr:8,
housenraddition:"A",
city:"HUISSEN",
zip:"6851 AP",
owner:"Mw M.J. Guijt-Lusing en mw M.J. Broekman-Guijt",
phone:"026-3252128",
latitude:51.9374670,
longitude:5.9435282,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store325:
{
no:325,
storeid:"8648",
id:"LzzAqPyw5lgAAAFKfzIM0ibF",
title:"Bruna Haagbeukweg, ALMERE",
street:"Haagbeukweg",
housenr:50,
housenraddition:"",
city:"ALMERE",
zip:"1326 CP",
owner:"De heer M.J. Verdouw",
phone:"036-5354182",
latitude:52.3756533,
longitude:5.2432748,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store326:
{
no:326,
storeid:"8657",
id:"hRnAqPyw5lkAAAFKfzIM0ibF",
title:"Bruna Kerkstraat, GRAVENDEEL &apos;s",
street:"Kerkstraat",
housenr:41,
housenraddition:"",
city:"GRAVENDEEL &apos;s",
zip:"3295 BD",
owner:"De heer A. van der Hoek",
phone:"078-6734200",
latitude:51.7783951,
longitude:4.6157811,
opening:
{
monday:"08:30 - 17:30 uur",
tuesday:"08:30 - 17:30 uur",
wednesday:"08:30 - 17:30 uur",
thursday:"08:30 - 17:30 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 16:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"dinsdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"woensdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"donderdag", "F":"0830", "U":"1730", "C":"08:30 - 17:30 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1600", "C":"08:30 - 16:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store327:
{
no:327,
storeid:"8666",
id:"NuHAqPyw5loAAAFKfzIM0ibF",
title:"Bruna Belgieplein, AMSTERDAM",
street:"Belgieplein",
housenr:109,
housenraddition:"",
city:"AMSTERDAM",
zip:"1066 RC",
owner:"De heer L.W.M. van der Haagen",
phone:"020-6695549",
latitude:52.3457268,
longitude:4.8120169,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store328:
{
no:328,
storeid:"8667",
id:"qzrAqPywhWUAAAFKgDIM0ibF",
title:"Bruna Hoog Zandveld, NIEUWEGEIN",
street:"Hoog Zandveld",
housenr:38,
housenraddition:"",
city:"NIEUWEGEIN",
zip:"3434 EE",
owner:"De heer M.J. Verdouw",
phone:"030-6066016",
latitude:52.0056746,
longitude:5.0855566,
opening:
{
monday:"08:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"08:00 - 18:00 uur",
thursday:"08:00 - 18:00 uur",
friday:"08:00 - 21:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"donderdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0800", "U":"2100", "C":"08:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store329:
{
no:329,
storeid:"8671",
id:"TDzAqPyw67kAAAFKgTIM0ibF",
title:"Bruna Puccinipassage, CAPELLE A&#47;D IJSSEL",
street:"Puccinipassage",
housenr:28,
housenraddition:"",
city:"CAPELLE A&#47;D IJSSEL",
zip:"2901 GK",
owner:"Mevrouw E. Bernaert-Prins",
phone:"010-2889939",
latitude:51.9176941,
longitude:4.5655829,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store330:
{
no:330,
storeid:"8682",
id:"IR7AqPywhWYAAAFKgDIM0ibF",
title:"Bruna Molenstraat, MONSTER",
street:"Molenstraat",
housenr:41,
housenraddition:"",
city:"MONSTER",
zip:"2681 BM",
owner:"De heer El.H. Laglagh en mevrouw M.G. Hoogerwerf",
phone:"0174-280235",
latitude:52.0238587,
longitude:4.1726598,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:30 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2030", "C":"08:30 - 20:30 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store331:
{
no:331,
storeid:"8698",
id:"OtLAqPyw67oAAAFKgTIM0ibF",
title:"Bruna Oliemaat, VLIJMEN",
street:"Oliemaat",
housenr:10,
housenraddition:"",
city:"VLIJMEN",
zip:"5251 AG",
owner:"Dhr M.J.C.M. Leermakers en mw W.C. Leermakers-van de Griendt",
phone:"073-5130035",
latitude:51.6942729,
longitude:5.2210602,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store332:
{
no:332,
storeid:"8707",
id:"oHDAqPywvWsAAAFKgjIM0ibF",
title:"Bruna Grotestraat, BORNE",
street:"Grotestraat",
housenr:195,
housenraddition:"",
city:"BORNE",
zip:"7622 GG",
owner:"De heer H. Tieman en mevrouw J. Tieman-Schippers",
phone:"074-2669023",
latitude:52.3011286,
longitude:6.7558822,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store333:
{
no:333,
storeid:"8716",
id:"SnDAqPywjHgAAAFKgzIM0ibF",
title:"Bruna Molenstraat, ZUNDERT",
street:"Molenstraat",
housenr:80,
housenraddition:"",
city:"ZUNDERT",
zip:"4881 CT",
owner:"De heer A. Stevense en de heer H.J.M. van Beurden",
phone:"076-5970512",
latitude:51.4704184,
longitude:4.6608011,
opening:
{
monday:"08:00 - 17:30 uur",
tuesday:"08:00 -17:30 uur",
wednesday:"08:00 - 17:30 uur",
thursday:"08:00 - 17:30 uur",
friday:"08:00 - 20:00 uur",
saturday:"08:00 - 16:30 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1730", "C":"08:00 - 17:30 uur"},
{"D":"dinsdag", "F":"0800", "U":"1730", "C":"08:00 -17:30 uur"},
{"D":"woensdag", "F":"0800", "U":"1730", "C":"08:00 - 17:30 uur"},
{"D":"donderdag", "F":"0800", "U":"1730", "C":"08:00 - 17:30 uur"},
{"D":"vrijdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1630", "C":"08:00 - 16:30 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store334:
{
no:334,
storeid:"8743",
id:"lIzAqPywvWwAAAFKgjIM0ibF",
title:"Bruna Dorpsstraat, VAASSEN",
street:"Dorpsstraat",
housenr:59,
housenraddition:"",
city:"VAASSEN",
zip:"8171 BL",
owner:"De heer A. van de Kamp en mw W.A. van de Kamp-Stevens",
phone:"0578-571370",
latitude:52.2884953,
longitude:5.9687591,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store335:
{
no:335,
storeid:"8764",
id:"Ky3AqPywvW0AAAFKgjIM0ibF",
title:"Bruna Euterpeplein, AMERSFOORT",
street:"Euterpeplein",
housenr:9,
housenraddition:"",
city:"AMERSFOORT",
zip:"3816 NM",
owner:"Mevrouw P. de Bruin",
phone:"033-4721416",
latitude:52.1522137,
longitude:5.4062424,
opening:
{
monday:"10:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1000", "U":"1800", "C":"10:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store336:
{
no:336,
storeid:"8782",
id:"FafAqPywjHYAAAFKgzIM0ibF",
title:"Bruna Kraailandhof, HOOGLAND",
street:"Kraailandhof",
housenr:15,
housenraddition:"",
city:"HOOGLAND",
zip:"3828 JN",
owner:"De heer A.J. Herl&eacute;",
phone:"033-4331576",
latitude:52.1871711,
longitude:5.3747240,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 21:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2100", "C":"08:30 - 21:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store337:
{
no:337,
storeid:"8802",
id:"8lTAqPyw2GAAAAFKhDIM0ibF",
title:"Bruna van Ostadelaan, ALKMAAR",
street:"van Ostadelaan",
housenr:266,
housenraddition:"",
city:"ALKMAAR",
zip:"1816 JG",
owner:"De heer R.E. Smit en mw J. Smit-Laarman",
phone:"072-5121824",
latitude:52.6326551,
longitude:4.7242373,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"08:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"Gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0800", "U":"1800", "C":"08:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "Gesloten"}
],
opensunday: false
},
store338:
{
no:338,
storeid:"8818",
id:"NAfAqPywjHkAAAFKgzIM0ibF",
title:"Bruna Dorpsplein, WESTERVOORT",
street:"Dorpsplein",
housenr:16,
housenraddition:"",
city:"WESTERVOORT",
zip:"6931 CZ",
owner:"De heer P.G.M. van Remmen",
phone:"026-3112651",
latitude:51.9620894,
longitude:5.9670552,
opening:
{
monday:"10:30 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 20:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1030", "U":"1800", "C":"10:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2000", "C":"09:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store339:
{
no:339,
storeid:"8840",
id:"ZxTAqPyw2F8AAAFKhDIM0ibF",
title:"Bruna Vrede en Vrijheid, DEN HELDER",
street:"Vrede en Vrijheid",
housenr:8,
housenraddition:"",
city:"DEN HELDER",
zip:"1785 RM",
owner:"De heer C.M. Bonte, de heer S. Bonte en de heer M.J. Bonte",
phone:"0223-668324",
latitude:52.9357108,
longitude:4.7707571,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 18:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store340:
{
no:340,
storeid:"8844",
id:"FtDAqPywRkIAAAFKhTIM0ibF",
title:"Bruna Julianaplein, VROOMSHOOP",
street:"Julianaplein",
housenr:70,
housenraddition:"",
city:"VROOMSHOOP",
zip:"7681 AW",
owner:"De heer G. Brinkman",
phone:"0546-646285",
latitude:52.4602971,
longitude:6.5708518,
opening:
{
monday:"13:30 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1330", "U":"1800", "C":"13:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store341:
{
no:341,
storeid:"8877",
id:"YKvAqPywRkEAAAFKhTIM0ibF",
title:"Bruna Drooghe Bol, JULIANADORP",
street:"Drooghe Bol",
housenr:1034,
housenraddition:"",
city:"JULIANADORP",
zip:"1788 VB",
owner:"De heer C.M. Bonte, de heer S. Bonte en de heer M.J. Bonte",
phone:"0223-644113",
latitude:52.8848746,
longitude:4.7395300,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store342:
{
no:342,
storeid:"8878",
id:"p_TAqPywRkMAAAFKhTIM0ibF",
title:"Bruna de Schans, LEEK",
street:"de Schans",
housenr:4,
housenraddition:"",
city:"LEEK",
zip:"9351 AZ",
owner:"Mevrouw Y. Poster-Naujoks",
phone:"0594-518006",
latitude:53.1611519,
longitude:6.3911755,
opening:
{
monday:"13:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 21:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"1300", "U":"1800", "C":"13:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store343:
{
no:343,
storeid:"8888",
id:"56fAqPywxuIAAAFKhjIM0ibF",
title:"Bruna Piazza Center, GORINCHEM",
street:"Piazza Center",
housenr:10,
housenraddition:"",
city:"GORINCHEM",
zip:"4204 BN",
owner:"De heer H.W. Kramer en mevrouw M.C. Kramer-Borsboom",
phone:"0183-638029",
latitude:51.8374002,
longitude:4.9621484,
opening:
{
monday:"09:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 21:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"2100", "C":"09:00 - 21:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1700", "C":"09:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store344:
{
no:344,
storeid:"8900",
id:"KKjAqPywZOoAAAFKhzIM0ibF",
title:"Bruna Zevenwouden, UTRECHT",
street:"Zevenwouden",
housenr:220,
housenraddition:"",
city:"UTRECHT",
zip:"3524 CX",
owner:"De heer E. Verboom en mevrouw H.M. Verboom-de Vries",
phone:"030-2898340",
latitude:52.0648927,
longitude:5.1372633,
opening:
{
monday:"11:00 - 18:00 uur",
tuesday:"09:00 - 18:00 uur",
wednesday:"09:00 - 18:00 uur",
thursday:"09:00 - 18:00 uur",
friday:"09:00 - 18:00 uur",
saturday:"09:00 - 18:00 uur",
sunday:"13:00 - 17:00 uur"
},
hours:[
{"D":"maandag", "F":"1100", "U":"1800", "C":"11:00 - 18:00 uur"},
{"D":"dinsdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"woensdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"donderdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"vrijdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zaterdag", "F":"0900", "U":"1800", "C":"09:00 - 18:00 uur"},
{"D":"zondag", "F":"1300", "U":"1700", "C": "13:00 - 17:00 uur"}
],
opensunday: true
},
store345:
{
no:345,
storeid:"8913",
id:"rpnAqPywxuMAAAFKhjIM0ibF",
title:"Bruna Rimsky-Korsakovweg, ALMERE",
street:"Rimsky-Korsakovweg",
housenr:33,
housenraddition:"",
city:"ALMERE",
zip:"1323 LP",
owner:"De heer M.J. Verdouw",
phone:"036-5364629",
latitude:52.3667971,
longitude:5.1908583,
opening:
{
monday:"08:00 - 18:30 uur",
tuesday:"08:00 - 18:30 uur",
wednesday:"08:00 - 18:30 uur",
thursday:"08:00 - 18:30 uur",
friday:"08:00 - 20:00 uur",
saturday:"08:00 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"dinsdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"woensdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"donderdag", "F":"0800", "U":"1830", "C":"08:00 - 18:30 uur"},
{"D":"vrijdag", "F":"0800", "U":"2000", "C":"08:00 - 20:00 uur"},
{"D":"zaterdag", "F":"0800", "U":"1700", "C":"08:00 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
},
store346:
{
no:346,
storeid:"8987",
id:"QMnAqPywZOkAAAFKhzIM0ibF",
title:"Bruna Voorstraat, KOLLUM",
street:"Voorstraat",
housenr:82,
housenraddition:"",
city:"KOLLUM",
zip:"9291 CM",
owner:"De heer S.H. de Bruin en mevrouw R. de Bruin-Bos",
phone:"0511-452259",
latitude:53.2801529,
longitude:6.1508389,
opening:
{
monday:"08:30 - 18:00 uur",
tuesday:"08:30 - 18:00 uur",
wednesday:"08:30 - 18:00 uur",
thursday:"08:30 - 18:00 uur",
friday:"08:30 - 20:00 uur",
saturday:"08:30 - 17:00 uur",
sunday:"gesloten"
},
hours:[
{"D":"maandag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"dinsdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"woensdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"donderdag", "F":"0830", "U":"1800", "C":"08:30 - 18:00 uur"},
{"D":"vrijdag", "F":"0830", "U":"2000", "C":"08:30 - 20:00 uur"},
{"D":"zaterdag", "F":"0830", "U":"1700", "C":"08:30 - 17:00 uur"},
{"D":"zondag", "F":"", "U":"", "C": "gesloten"}
],
opensunday: false
}
};