TERRAPIN FLYER – GRATEFUL DEAD Tribute
Domingo 2 de mayo de 2027
21:30
- Dónde
-
Loco Club
Carrer d'Erudit Orellana, 12, 46008 València
Valencia - Entradas
- Anticipada: 20€ / Taquilla: 25€
APERTURA/DOORS 19:30 H. - CONCIERTO/SHOW 20:00 H. https://www.youtube.com/watch?v=v9ujt3tvffQ&list=RDv9ujt3tvffQ&start_radio=1 Durante más de 25 años,TERRAPIN FLYER ha sido una de las grandes fuerzas de la escena musical nacional, reconocida por sus interpretaciones fieles pero a la vez aventureras de los clásicos de Grateful Dead. Formada originalmente en 1999, la banda ha construido una trayectoria llena de historia gracias a sus colaboraciones a largo plazo con leyendas vinculadas a los Dead como Melvin Seals, Vince Welnick y Tom Constanten, lo que les valió una mención en la guía sobre Grateful Dead publicada por Rolling Stone. Combinando una ejecución musical impecable con una improvisación libre y fluida, y una profunda admiración por el jazz, el blues y el bluegrass, la formación actual, integrada por Josh Olken, Wavy Dave, Jon Reed, Michael Cole y Doug Hagman, transmite el auténtico espíritu de un concierto de Grateful Dead, donde cada actuación se convierte en una experiencia única y conmovedora. (function() { var firedTransactions = {}; // Use object as simple Set fallback function applyHeight(value) { var iframe = document.getElementById('ticketFrame'); if (!iframe) return; var height = Math.ceil(Number(value)); if (!height || height < 100) return; if (height > 20000) height = 20000; iframe.style.height = height + 'px'; } // Send embed context (Meta pixel cookies + parent URL) to the iframe once loaded. // Cookies are read from the actual visitor's browser at runtime (not from the admin's session). // This avoids hardcoding _fbp/_fbc in the iframe URL and keeps them out of the address bar. document.getElementById('ticketFrame').addEventListener('load', function() { function getCookie(name) { var match = document.cookie.match(new RegExp('(^| )' + name + '=([^;]+)')); return match ? decodeURIComponent(match[2]) : ''; } this.contentWindow.postMessage({ type: 'soundtix:embed:context', parentUrl: window.location.href, fbp: getCookie('_fbp') || undefined, fbc: getCookie('_fbc') || undefined }, '*'); }); window.addEventListener('message', function(e) { var iframe = document.getElementById('ticketFrame'); if (!iframe || e.source !== iframe.contentWindow) return; if (e.data && (e.data.type === 'soundtix:embed:resize' || e.data.type === 'setHeight') && e.data.height) { applyHeight(e.data.height); } if (e.data && (e.data.type === 'purchase' || e.data.type === 'ga4-meta-event')) { var eventName = e.data.event || 'purchase'; // Fallback to 'purchase' for backwards compatibility var data = e.data.data; if (!data || !data.items || !data.items.length) return; // Deduplication check only for purchases var txId = data.transaction_id ? String(data.transaction_id) : null; if (eventName === 'purchase') { if (!txId || firedTransactions[txId]) return; firedTransactions[txId] = true; } // Data Normalization var normalizedValue = Number(data.value) || 0; var normalizedCurrency = data.currency || 'EUR'; var normalizedItems = data.items.map(function(i) { return { item_id: String(i.item_id), item_name: String(i.item_name), price: Number(i.price) || 0, quantity: Number(i.quantity) || 1 }; }); var numItems = normalizedItems.reduce(function(sum, i) { return sum + i.quantity; }, 0); var ga4Payload = { 'items': normalizedItems, 'value': normalizedValue, 'currency': normalizedCurrency }; // Add transaction_id only if it exists (mostly for purchase) if (txId) ga4Payload.transaction_id = txId; // Google Analytics / GTM window.dataLayer = window.dataLayer || [];