(function () {
try {
// AQ-r2 (2026-06-09): respect the explicit-denial sentinel
// written by cookie-consent-harden.js writeATR() on any
// marketing-axis denial (payload.marketing === false; cycle-3 F1).
// Without this gate, the next page navigation re-creates
// gmx_first_touch from the current URL+referrer+utm_*+click_ids,
// silently undoing the reject-all deletion (sweep finding #1).
// The sentinel is cleared the moment the visitor grants
// marketing in the banner (analytics-only grant does NOT
// clear), restoring the writer path on the very next
// page load. Page-cache-safe: the sentinel is a
// browser-resident cookie checked in the inline script, so
// varnish/breeze-served HTML still hits this gate.
if (/(?:^|;\s*)gmx_consent_denied=1(?:;|$)/.test(document.cookie || '')) return;
var CLICK_IDS = ['gclid','fbclid','msclkid','ttclid','wbraid','gbraid','li_fat_id'];
var qs = new URLSearchParams(window.location.search);
var urlClickIdKey = null;
for (var i = 0; i < CLICK_IDS.length; i++) {
if (qs.get(CLICK_IDS[i])) { urlClickIdKey = CLICK_IDS[i]; break; }
}// Parse existing cookie.
var existing = null;
var match = document.cookie.match(/(?:^|;\s*)gmx_first_touch=([^;]+)/);
if (match) {
try { existing = JSON.parse(decodeURIComponent(match[1])); } catch (e) { existing = null; }
}// GWP-273 — referrer-enrichment branch.
// Keep existing unless either (a) URL carries a new click id
// the stored payload lacks (paid click is a higher-value
// signal and upgrades direct/organic), OR (b) the stored
// payload has empty referrer AND the current document.referrer
// is non-empty + external (Safari/ITP/policy-quirk catch:
// first-hit may have missed the referrer; later same-session
// page-loads can recover it).
var existingHasRef = !!(existing && existing.referrer && existing.referrer !== '');
var docRef = document.referrer || '';
var refHost = '';
if (docRef) {
try {
refHost = new URL(docRef).hostname.replace(/^www\./, '').toLowerCase();
} catch (e) { refHost = ''; }
}
var ownHost = (location.host || '').replace(/^www\./, '').toLowerCase();
var currentExternalRef = !!(refHost && refHost !== ownHost);
var canEnrichRef = !!existing && !existingHasRef && currentExternalRef;if (existing) {
if (!urlClickIdKey && !canEnrichRef) return;
if (urlClickIdKey && existing[urlClickIdKey] && !canEnrichRef) return;
}var utm_keys = [
'utm_source','utm_medium','utm_campaign','utm_content','utm_term',
'utm_adgroup','utm_matchtype','utm_network','utm_device','utm_placement'
];
// GWP-273 — merge-preserving base. When enriching an existing
// payload, retain its landing_url + ts + prior click ids /
// utms; only overlay referrer (and any click id appended below
// via the forEach). Branches with/without urlClickIdKey were
// collapsed — both produced the identical Object.assign — the
// click id is added uniformly later.
//
// GWP-273 design choice: "latest external referrer wins" —
// accepted edge case where a user opens a new external tab
// post-empty-first-touch and returns; low-volume, simple, no
// sentinel flag needed.
var data;
if (existing && canEnrichRef) {
data = Object.assign({}, existing, { referrer: docRef });
} else {
data = { landing_url: window.location.href, referrer: docRef, ts: Date.now() };
}
utm_keys.concat(CLICK_IDS).forEach(function (k) {
var v = qs.get(k);
if (v) data[k] = v;
});
// GWP-208 — carry Meta's first-party click-linker cookies (_fbc
// = fb.1.<ts>.<fbclid>, _fbp) into the captured payload so they
// ride the persistent gmx_first_touch cookie cross-page (LP X →
// LP Y) the same way the URL click-ids do. The CF7 hidden-field
// populator copies the whole payload verbatim, so fbc/fbp reach
// the lead even when the form lives on a page without ?fbclid.
var fbcMatch = document.cookie.match(/(?:^|;\s*)_fbc=([^;]+)/);
if (fbcMatch && fbcMatch[1]) data.fbc = decodeURIComponent(fbcMatch[1]);
var fbpMatch = document.cookie.match(/(?:^|;\s*)_fbp=([^;]+)/);
if (fbpMatch && fbpMatch[1]) data.fbp = decodeURIComponent(fbpMatch[1]);
var encoded = encodeURIComponent(JSON.stringify(data));
if (encoded.length > 3800) return;
var expires = new Date(Date.now() + 90 * 864e5).toUTCString(); // GWP-143 C1: match Google Ads 90-day attribution window
var secure = window.location.protocol === 'https:' ? '; Secure' : '';
document.cookie = 'gmx_first_touch=' + encoded + '; Path=/; Expires=' + expires + '; SameSite=Lax' + secure;
} catch (e) {}
})();
/* Meta Pixel base — inline in wp_head so Breeze Delay-All-JS does not defer it; fbevents.js is async-injected (optimizer-invisible). */
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');/* Symmetric with server GMX_Consent: revoke BEFORE init; cookies/sends held until grant. */
fbq('consent', 'revoke');
fbq('init', '1857131551802431');
fbq('track', 'PageView'); /* queued; flushed to Meta only after consent grant *//* Grant bridge — reads the SAME ATR marketing signal as GMX_Consent.applyConsent(). */
(function () {
function read(name){var m=document.cookie.match('(?:^|; )'+name.replace(/([.*+?^${}()|[\]\\])/g,'\\$1')+'=([^;]*)');return m?decodeURIComponent(m[1]):'';}
function marketingGranted(){
try {
var given = read('atr_cookie_notice_consent_given');
if (!given) return false; // undecided -> stay revoked
var c = JSON.parse(read('atr_cookie_notice_consent') || '{}');
return !!(c.marketing || c.ad_storage === 'granted');
} catch (e) { return false; } // NO-SILENT-OK: parse/read failure degrades gracefully to revoked (consent stays held; no marketing send) — not an error to report.
}
function apply(){ if (marketingGranted()) fbq('consent', 'grant'); }
apply();
document.addEventListener('click', function(ev){
if (ev.target && ev.target.closest && ev.target.closest('[class*="atr-cookie"], #atr-cookie-notice')) setTimeout(apply, 50);
}, true);
window.addEventListener('storage', apply);
})();
var wc_single_product_params = {"i18n_required_rating_text":"Please select a rating","i18n_rating_options":["1 of 5 stars","2 of 5 stars","3 of 5 stars","4 of 5 stars","5 of 5 stars"],"i18n_product_gallery_trigger_text":"View full-screen image gallery","review_rating_required":"yes","flexslider":{"rtl":false,"animation":"slide","smoothHeight":true,"directionNav":false,"controlNav":"thumbnails","slideshow":false,"animationSpeed":500,"animationLoop":false,"allowOneSlide":false},"zoom_enabled":"1","zoom_options":[],"photoswipe_enabled":"1","photoswipe_options":{"shareEl":false,"closeOnScroll":false,"history":false,"hideAnimationDuration":0,"showAnimationDuration":0},"flexslider_enabled":"1"};
//# sourceURL=wc-single-product-js-extra
Music System for Businesses: Streamer + AI Subscription
From: 70.00 ₪ – 350.00 ₪
AI music system for business: one-time streamer ₪350 + monthly subscription ₪70. No ACUM royalties. Customized genres, monthly refresh, your own MP3s, cancel anytime. 10% annual discount. This system is part of Music for Businesses, GoMixApp’s complete guide to music solutions for businesses. Note: Price does not include a one-time installation cost of ₪150 + VAT.
Complete music system for businesses: dedicated one-time streamer for ₪350 + VAT and monthly AI subscription for ₪70 + VAT
AI music library updated monthly, genres customized for business type and audience
Zero ACUM royalties, commercial license built into the subscription, official document available for review
Cancel anytime without exit penalty, pro-rata refund, free shipping and Hebrew support
The GoMixApp music system for businesses is a complete solution with two components: first, a dedicated one-time streamer. Second, a monthly subscription to a commercial AI music library that is updated monthly. As a result, you get background music for your business without ACUM royalties, without external licensing, and without commitment. In addition, the package pays for itself thanks to a 10% discount on annual payment, and allows the business to broadcast music that precisely suits the customer audience throughout all operating hours.
Three audio outputs: digital HDMI 2.0, analog 3.5mm jack (Earphone jack), wireless Bluetooth 4.x
Direct connection to a portable speaker, existing PA system with AUX input, or TV with speakers
Dual-band Wi-Fi 2.4GHz + 5GHz, Ethernet 100M, two USB sockets (3.0 + 2.0)
Supported audio codecs: MP3, AAC, WMA, FLAC, Ogg
Phone support in Hebrew for first installation
Monthly AI Subscription for the Music Library
₪70 per month + VAT · 10% discount on annual payment
AI music library updated monthly with hundreds of new songs in every genre
Genres customized for your specific business type and audience, at no extra charge
Upload your own MP3 files for brand audio, advertising messages, greetings and seasonal greetings
Full control over playback order, transitions, and different daily schedules by hour
Management panel in Hebrew, accessible from any browser, seven days of personal guidance upon joining
Cancel anytime without exit fee, pro-rata refund for unused period
Why Choose a Music System for Businesses?
First, a music system for businesses that suits your business type, not a generic template. In addition, the commercial license is built into the price and there are no surprises at the end of the year. Stores, restaurants, cafes, clinics and offices are already broadcasting with us throughout Israel.
Zero ACUM royalties. The music is created by AI with a built-in commercial license. As a result, there are no more concerns about legal surprises at the end of the year.
Savings of thousands of shekels compared to ACUM. In fact, ACUM royalties for a small business cost ₪1,200 to ₪2,400 per year. In contrast, our annual subscription: ₪756 includes everything.
Genres that truly suit your business. We train the AI model around your business music system’s audience, instead of a general background music template.
Live library. Hundreds of new songs are added every month. As a result, returning customers don’t hear the same songs over and over again.
Your private recordings. Furthermore, you can mix your own MP3s (brand audio, seasonal greetings, special offers) into the automatic playlist.
Local control of the streamer. Even without internet, the music continues to play from local memory. In addition, it transitions seamlessly once connectivity returns.
10% savings on annual payment. Ultimately, ₪756 for a full year instead of ₪840 (a saving of ₪84, like getting a month and a half for free).
Music System for Businesses in Action: Restaurants, Cafes and Pubs
For example, our music system currently operates in hundreds of businesses in Israel. First, it is installed in cafes and restaurants looking for a unique atmosphere without ACUM concerns. In addition, it is used by pubs and bars that need dynamic music for peak hours:
Cafes and Restaurants: Atmosphere-adapted playlist, genres that change according to the time of day
Pubs and Bars: Dynamic music, monthly refresh, full control from opening hours to closing
What is the actual difference between our system and direct ACUM, Spotify for Businesses, and other Israeli music services? In fact, there are three main differences: annual cost, flexible cancellation, and of course, licensing responsibility. Therefore, we have prepared a full comparison table according to the criteria important for a small business in Israel:
Comparison Between Business Music System vs. ACUM and Spotify
Feature
GoMixApp System
Spotify for Businesses
Direct Payment to ACUM
ACUM Royalties Included
✓Commercial license built into the subscription, document available for review
✗Requires declaration and separate payment to ACUM
✗This is the payment itself: ₪1,200-2,400 per year
Annual Cost for Small Business
✓₪350 one-time + ₪756 per year (₪1,106 + VAT first year)
✗~₪140 per month + separate ACUM cost, no equipment
✗₪1,200-2,400 per year for license only, no music and no equipment
Cancel Anytime
✓No exit penalty, pro-rata refund for unused days
✓Yes, but ACUM remains a separate commitment
✗Annual renewal, bureaucracy through ACUM portal
Business-Adapted Genres
✓AI model trained according to business type and audience, at no extra charge
✗Generic playlists only, no business adaptation
✗Not relevant: this is only a license, not a music service
Integrate Your Own MP3s
✓Upload personal files: greetings, promotions, brand audio
✗Not supported
✗Not relevant
Works Without Internet
✓Local playback from memory, automatic synchronization when connection returns
✗Requires constant internet connection (limited offline download)
✗Not relevant
Phone Support in Hebrew
✓Included in subscription, 30 min response time during business hours
var wc_add_to_cart_variation_params = {"wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_no_matching_variations_text":"Sorry, no products matched your selection. Please choose a different combination.","i18n_make_a_selection_text":"Please select some product options before adding this product to your cart.","i18n_unavailable_text":"Sorry, this product is unavailable. Please choose a different combination.","i18n_reset_alert_text":"Your selection has been reset. Please select some product options before adding this product to your cart."};
//# sourceURL=wc-add-to-cart-variation-js-extra
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
//# sourceURL=woocommerce-addons-validation-js-extra
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
var woocommerce_addons_params = {"price_display_suffix":"ex. VAT","tax_enabled":"1","price_include_tax":"","display_include_tax":"","ajax_url":"/wp-admin/admin-ajax.php","i18n_validation_required_select":"Please choose an option.","i18n_validation_required_input":"Please enter some text in this field.","i18n_validation_required_number":"Please enter a number in this field.","i18n_validation_required_file":"Please upload a file.","i18n_validation_letters_only":"Please enter letters only.","i18n_validation_numbers_only":"Please enter numbers only.","i18n_validation_letters_and_numbers_only":"Please enter letters and numbers only.","i18n_validation_email_only":"Please enter a valid email address.","i18n_validation_min_characters":"Please enter at least %c characters.","i18n_validation_max_characters":"Please enter up to %c characters.","i18n_validation_min_number":"Please enter %c or more.","i18n_validation_max_number":"Please enter %c or less.","i18n_validation_decimal_separator":"Please enter a price with one monetary decimal point (%c) without thousand separators.","i18n_sub_total":"Subtotal","i18n_remaining":"\u003Cspan\u003E\u003C/span\u003E characters remaining","currency_format_num_decimals":"2","currency_format_symbol":"\u20aa","currency_format_decimal_sep":".","currency_format_thousand_sep":",","trim_trailing_zeros":"","is_bookings":"","trim_user_input_characters":"1000","quantity_symbol":"x ","datepicker_class":"wc_pao_datepicker","datepicker_date_format":"MM d, yy","gmt_offset":"-3","date_input_timezone_reference":"default","currency_format":"%v\u00a0%s"};
//# sourceURL=woocommerce-addons-js-extra
var atrCookieNoticeSettings = {"cookieName":"atr_cookie_notice_consent","decisionCookieName":"atr_cookie_notice_consent_given","expiryDays":"365","autoHideDelay":"0","enableDebug":"","siteName":"GoMixApp","isPrivacyPage":"","privacyPolicyUrl":"https://gomixapp.com/privacy-policy/","privacyNoteText":"\ud83d\udca1 You can read this page while deciding about cookies","mode":"simple"};
//# sourceURL=atr-cookie-notice-simple-js-extra
dataLayer.push({"ecommerce":{"currency":"ILS","value":70,"items":[{"item_id":71274,"item_name":"Music System for Businesses: Streamer + AI Subscription","sku":"GMX-MUSIC-BUNDLE-EN","price":70,"stocklevel":null,"stockstatus":"instock","google_business_vertical":"retail","item_category":"Business Music Systems","id":71274}]},"event":"view_item"});
//# sourceURL=gtm4wp-additional-datalayer-pushes-js-after
var wc_pb_min_max_items_params = {"i18n_min_zero_max_qty_error_singular":"Please choose an item.","i18n_min_max_qty_error_singular":"Please choose 1 item.","i18n_min_qty_error_singular":"Please choose at least 1 item.","i18n_max_qty_error_singular":"Please choose up to 1 item.","i18n_min_qty_error_plural":"Please choose at least %q items.","i18n_max_qty_error_plural":"Please choose up to %q items.","i18n_min_max_qty_error_plural":"Please choose %q items.","i18n_qty_error_plural":"%s items selected","i18n_qty_error_singular":"1 item selected","i18n_qty_error_status_format":"\u003Cspan class=\"bundled_items_selection_status\"\u003E%s\u003C/span\u003E"};
//# sourceURL=wc-pb-min-max-items-add-to-cart-js-extra
var wc_bundle_params = {"i18n_free":"Free!","i18n_total":"Total: ","i18n_subtotal":"Subtotal: ","i18n_price_format":"%t%p%s","i18n_strikeout_price_string":"\u003Cdel\u003E%f\u003C/del\u003E \u003Cins\u003E%t\u003C/ins\u003E","i18n_insufficient_stock_list":"\u003Cp class=\"stock out-of-stock insufficient-stock\"\u003EInsufficient stock \u2192 %s\u003C/p\u003E","i18n_on_backorder_list":"\u003Cp class=\"stock available-on-backorder\"\u003EAvailable on backorder \u2192 %s\u003C/p\u003E","i18n_insufficient_stock_status":"\u003Cp class=\"stock out-of-stock insufficient-stock\"\u003EInsufficient stock\u003C/p\u003E","i18n_on_backorder_status":"\u003Cp class=\"stock available-on-backorder\"\u003EAvailable on backorder\u003C/p\u003E","i18n_select_options":"Please choose product options.","i18n_select_options_for":"Please choose %s options.","i18n_review_product_addons":"Please review product options.","i18n_enter_valid_price":"Please enter valid amounts.","i18n_enter_valid_price_for":"Please enter a valid amount.","i18n_string_list_item":"\"%s\"","i18n_string_list_sep":"%s, %v","i18n_string_list_last_sep":"%s and %v","i18n_qty_string":" \u00d7 %s","i18n_optional_string":" \u2014 %s","i18n_optional":"optional","i18n_contents":"Includes","i18n_title_meta_string":"%t \u2013 %m","i18n_title_string":"\u003Cspan class=\"item_title\"\u003E%t\u003C/span\u003E\u003Cspan class=\"item_qty\"\u003E%q\u003C/span\u003E\u003Cspan class=\"item_suffix\"\u003E%o\u003C/span\u003E","i18n_unavailable_text":"This product is currently unavailable.","i18n_validation_issues_for":"\u003Cspan class=\"msg-source\"\u003E%c\u003C/span\u003E \u2192 \u003Cspan class=\"msg-content\"\u003E%e\u003C/span\u003E","i18n_validation_alert":"Please resolve all pending issues before adding this product to your cart.","i18n_zero_qty_error":"Please choose at least 1 item.","i18n_recurring_price_join":"%r,\u003Cbr\u003E%c","i18n_recurring_price_join_last":"%r, and\u003Cbr\u003E%c","discounted_price_decimals":"6","currency_symbol":"\u20aa","currency_position":"right_space","currency_format_num_decimals":"2","currency_format_decimal_sep":".","currency_format_thousand_sep":",","currency_format_trim_zeros":"no","is_pao_installed":"yes","price_display_suffix":"ex. VAT","prices_include_tax":"no","tax_display_shop":"excl","calc_taxes":"yes","photoswipe_enabled":"yes","responsive_breakpoint":"380","zoom_enabled":"no","force_min_max_qty_input":"yes","i18n_available_on_backorder":"Available on backorder"};
//# sourceURL=wc-add-to-cart-bundle-js-extra