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.

; // console.log(apiResponse); // // initialize moment let successData = ''; // let group = Object.groupBy( // apiResponse, // (item) => item.start_time.split('T')[0] // ); // let sortArray = Object.keys(group).sort(function(a, b) { // return new Date(a) - new Date(b); // }); // for (const key of sortArray) { // const value = group[key]; successData += `
${dateFormat( apiResponse?.data[0]?.start_at)}
`; apiResponse?.data.forEach((item) => { // Check if the fixture name includes "TBC" if (!item.name.includes("TBC")) { successData += `

${timeFormat(item?.start_at)} WIB

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

${item.name}
`; } }); // } $('#result').append(successData); moment.tz.setDefault('Asia/Bangkok'); 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 hoursRemaining = duration.hours(); var minutesRemaining = duration.minutes(); var secondsRemaining = duration.seconds(); // Update the countdown text $(this).text( 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'); } }); } // updateCountdown(); // Update the countdown every second setInterval(updateCountdown, 1000); }); $(document).on('click', '.main_match_wrapper', function() { var dataListValue = $(this).data('list'); // redirect details page window.location.href = 'https://nbrflx.co/live-badminton.php?id=' + dataListValue; }); function dateFormat(date) { return moment.unix(date).local().format("dddd, DD MMMM YYYY"); } function timeFormat(date) { const subtractDate = moment(date).subtract(2, 'hours'); return moment.unix(date).local().format("hh:mm"); } // 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