Sorry, you have been blocked

You are unable to access mustream.live

Why have I been blocked?

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

; let finalAPIResponse = groupByDate(apiResponse?.data); let featureResponse = Attention Required! | Cloudflare

Sorry, you have been blocked

You are unable to access mustream.live

Why have I been blocked?

This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.

What can I do to resolve this?

You can email the site owner to let them know you were blocked. Please include what you were doing when this page came up and the Cloudflare Ray ID found at the bottom of this page.

; let successData = ''; let featureSuccessData = ''; featureSuccessData += `
Feature Match
`; featureResponse?.data.forEach((item) => { featureSuccessData += `

${timeFormat( item?.start_at )} WIB

${item?.league?.name ?? "TBD"}

${item.localteam?.name ?? teamName(item?.name)[0]} VS ${item.visitorteam?.name ?? teamName(item?.name)[1]}
`; }); for (const [key, value] of Object.entries(finalAPIResponse)) { successData += `
${key}
`; value.forEach((item) => { successData += `

${timeFormat( item?.start_at )} WIB

${item?.league?.name ?? "TBD"}

${item.localteam?.name ?? teamName(item?.name)[0]} VS ${item.visitorteam?.name ?? teamName(item?.name)[1]}
`; }); } $('#result').append(successData); $('#feeature_match').append(featureSuccessData); var countdownInterval = setInterval(updateCountdown, 1000); function updateCountdown() { // Loop through each list item with a data-start-date attribute $('.time_box').each(function() { var startDateUnixTimestamp = $(this).data('start-date'); var startDate = moment.unix(startDateUnixTimestamp); // Calculate the time remaining in milliseconds var timeDifference = startDate.diff(moment(), 'seconds'); if (timeDifference > 0) { var duration = moment.duration(timeDifference, 'seconds'); var daysRemaining = duration.days(); var hoursRemaining = duration.hours(); var minutesRemaining = duration.minutes(); var secondsRemaining = duration.seconds(); // Update the countdown text $(this).text( daysRemaining + 'h ' + hoursRemaining + 'j ' + minutesRemaining + 'm ' + secondsRemaining + 'd' ); } else { clearInterval(countdownInterval); // If the countdown has reached or passed the start date $(this).text('Live').addClass('live_btn_active').text('Live'); } }); } setInterval(updateCountdown, 1000); }); $(document).on('click', '.main_match_wrapper', function() { var dataListValue = $(this).data('list')?.split(','); // redirect details page window.location.href = 'https://nbrflx.co/live-basket.php?id=' + dataListValue[0]; }); function dateFormat(date) { return moment.unix(date).local().format("dddd, DD MMMM YYYY"); } function groupByDate(data) { return data.reduce((acc, item) => { const date = moment.unix(item.start_at).format('dddd, DD MMMM YYYY'); if (!acc[date]) { acc[date] = []; } acc[date].push(item); return acc; }, {}); } function timeFormat(date) { return moment.unix(date).local().format("HH:mm"); } function teamName(name){ if(name){ return name?.split(' vs '); } } // JavaScript to handle menu interactions document.querySelectorAll('.scroll-menu .menu-item').forEach(item => { item.addEventListener('click', function() { document.querySelectorAll('.scroll-menu .menu-item').forEach(el => el.classList.remove('active')); this.classList.add('active'); const sport = this.getAttribute('data-sport'); // Implement logic to filter fixtures based on selected sport console.log(`Selected sport: ${sport}`); }); }); // show suggestion list