    <style>
    .oufunnyequations_window
    {
        margin: 0px auto 0px auto;
        width: 500px;
        min-height: 400px;
        overflow: hidden;
        font-family: 'Concert One', cursive;
        overflow: hidden;
        color: #e0ebeb;
        border-radius: 15px;
        background-image: url("https://smurcteez.com/wp-content/plugins/funny-equations/images/a1.png");
    }
    </style>
    <input type="hidden" autocomplete="off" class="oufunnyequations_level1_in_timer" value="90"> <!-- set timer -->

    <!-- LEVEL: Beginner -->
    <input type="hidden" autocomplete="off" class="oufunnyequations_level1_in_detect_right_answer" value="0">
    <input type="hidden" autocomplete="off" class="oufunnyequations_level1_in_right_answer" value="">
    <input type="hidden" autocomplete="off" class="oufunnyequations_level1_in_wrong_answer1" value="">
    <input type="hidden" autocomplete="off" class="oufunnyequations_level1_in_wrong_answer2" value="">

    <div class="oufunnyequations_window">
        
        <!-- Screen -->
        <div id="oufunnyequations_screen">
            
            <div class="oufunnyequations_screen_title">
                <b>FUNNY EQUATIONS</b>
            </div>
            
            <div class="oufunnyequations_menu_window">
                <div>
                    <span onclick="oufunnyequations_button_level1(); return false;" class="oufunnyequations_link_menu">Game</span>
                </div>
                <div>
                    <span onclick="oufunnyequations_button_game_help(); return false;" class="oufunnyequations_link_menu">Help</span>
                </div>
            </div>
            
        </div>
        
        <!-- Help -->
        <div id="oufunnyequations_help">
            <div style="padding: 15px; font-size: 18px; color: #e0ebeb; text-align: justify;">
                <b>FUNNY EQUATIONS</b> - This is a simple mathematical equation game. A certain amount of time is given to solve one equation. With each new equation, time will decrease by 1 second.
            </div>
            
            <div style="text-align: center;">
                    <span onclick="oufunnyequations_button_game_help_close(); return false;" class="oufunnyequations_link_menu2">Close</span>
            </div>
        </div>
        
        <div id="oufunnyequations_game_l1">
            
            <!-- equation -->
            <div class="oufunnyequations_level1w_display_formlula">
                <b><span class="oufunnyequations_level1_numbers1 oufunnyequations_level1w_display_formlula_a">0</span></b>
                <b><span class="oufunnyequations_level1_math_symbol oufunnyequations_level1w_display_formlula_b">?</span></b>
                <b><span class="oufunnyequations_level1_numbers2 oufunnyequations_level1w_display_formlula_a">0</span></b>
            </div>
            
            <div class="oufunnyequations_level1w_display_title">
                <b>Answer</b>
            </div>
                
            <!-- choose answer -->
            <div class="oufunnyequations_level1_choose oufunnyequations_level1w_display_answer_window">
                <span onclick="oufunnyequations_lev1_a(); return false;" class="oufunnyequations_level1_answer1 oufunnyequations_level1w_display_answer_padding">?</span> 
                <span onclick="oufunnyequations_lev1_b(); return false;" class="oufunnyequations_level1_answer2 oufunnyequations_level1w_display_answer_padding">?</span> 
                <span onclick="oufunnyequations_lev1_c(); return false;" class="oufunnyequations_level1_answer3 oufunnyequations_level1w_display_answer_padding">?</span>
            </div>
            
            <!-- time out -->
            <div class="oufunnyequations_level1_time_out oufunnyequations_level1w_display_timeout">
                <b>TIME OUT</b>
            </div>
                
            <!-- wrong -->
            <div class="oufunnyequations_level1_wrong oufunnyequations_level1w_display_wrong">
                <b>WRONG</b>
            </div>
                
            <!-- right -->
            <div class="oufunnyequations_level1_right oufunnyequations_level1w_display_right">
                <b>RIGHT</b>
            </div>
                
            <div class="oufunnyequations_level1w_display_footer">
                <div class="oufunnyequations_level1w_display_footer_left">
                    <span class="oufunnyequations_level1w_display_footer_leftspan"><b>Points: </b><span class="oufunnyequations_level_points">0</span></span>
                </div>
                    
                <div class="oufunnyequations_level1w_display_footer_center">
                    <span onclick="oufunnyequations_level1_exit(); return false;" class="oufunnyequations_level1w_display_footer_center_exit"><b>EXIT</b></span>
                </div>
                    
                <div class="oufunnyequations_level1w_display_footer_right">
                    <span class="oufunnyequations_level1w_display_footer_rightspan"><b>Timer: </b><span class="oufunnyequations_level_timer">90</span></span>
                </div>
            </div>
            
        </div>
        
    </div>
    
    <script>
    //Global variable    
    var oufunnyequations_timer_level; // Variable for timer (Level: Beginner). When the level starts the first time, this timer fires.
    var oufunnyequations_timer_level_next; // Variable for timer (Level: Beginner). This timer 
    var oufunnyequations_set_timer = 90; // default timer time (seconds).
    var oufunnyequations_total_answer = 0; // total correct answers.
    var oufunnyequations_dec_choose_1 = 0; // correct answer variable #1.
    var oufunnyequations_dec_choose_2 = 0; // correct answer variable #2.
    var oufunnyequations_dec_choose_3 = 0; // correct answer variable #3.
      
    //function oufunnyequations_u_Float(x) { return !!(x % 1); }    
        
    /*
    
        LEVEL #1
    
    */
    var oufunnyequationslevel1_plus = 0; // Level: Beginner = > variable: plus.
    var oufunnyequationslevel1_minus = 0; // Level: Beginner = > variable: minus.
    var oufunnyequationslevel1_mnoz = 0; // Level: Beginner = > variable: multiplication.
    var oufunnyequationslevel1_del = 0; // Level: Beginner = > variable: division.  
    var oufunnyequationslevel1_right_answer = 0; // Level: Beginner = > correct answer (There are three possible answers in the game. This variable indicates the correct answer).
    var oufunnyequationslevel1_number1 = 0; // Level: Beginner = > variable: first digit.
    var oufunnyequationslevel1_number2 = 0; // Level: Beginner = > variable: second digit.
    //var oufunnyequationslevel1_number2det = 0;
    var oufunnyequationslevel1_number3 = 0; // Level: Beginner = > variable: third digit.
    var oufunnyequationslevel1_number4 = 0; // Level: Beginner = > variable: fourth digit.
    // Level: Beginner = > variables: oufunnyequationslevel1_check_sum, oufunnyequationslevel1_check_sum2, oufunnyequationslevel1_check_sum3
    // These variables perform mathematical functions. such as subtraction, multiplication, division or addition.
    var oufunnyequationslevel1_check_sum = 0;
    var oufunnyequationslevel1_check_sum2 = 0;
    var oufunnyequationslevel1_check_sum3 = 0;   
       
    jQuery(document).ready(function(){
        clearInterval(oufunnyequations_timer_level); // Level: Beginner = > stop the timer
        clearInterval(oufunnyequations_timer_level_next); // Level: Beginner = > stop the timer
    });
        
    function oufunnyequations_ux_Float(x) { return !!(x % 1); } 
        
    function oufunnyequations_button_level1()
    {
    	jQuery(".oufunnyequations_level1w_display_timeout").hide();
        jQuery(".oufunnyequations_level1w_display_wrong").hide();
        jQuery(".ufunnyequations_level1w_display_right").hide();
        jQuery(".oufunnyequations_level1_time_out").hide(); 
        jQuery(".oufunnyequations_level1_choose").show(); 
        jQuery("#oufunnyequations_screen").hide();
        jQuery("#oufunnyequations_game_l1").show();
        
        clearInterval(oufunnyequations_timer_level); // Level: Beginner = > stop the timer
        clearInterval(oufunnyequations_timer_level_next); // Level: Beginner = > stop the timer
        oufunnyequations_set_timer = 90; // timer reset (default: 90 seconds)
        
        // Math symbol generator
        var array_math_symbol = ["+", "-", "*", "/"];
        var math_symbol = array_math_symbol[Math.floor(Math.random()*array_math_symbol.length)];
        
        // definition of a mathematical sign
        if(1 == 1)
        {
            if(math_symbol == '+')
            {
                oufunnyequationslevel1_plus = 1; // math sign: +
            }
            else
            if(math_symbol == '-')
            {
                oufunnyequationslevel1_minus = 1; // math sign: -
            }
            else
            if(math_symbol == '*')
            {
                oufunnyequationslevel1_mnoz = 1; // math sign: *
            }
            else
            if(math_symbol == '/')
            {
                oufunnyequationslevel1_del = 1; // math sign: /
            }
        }
        
        if(2 == 2)
        {
            oufunnyequationslevel1_check_sum = 0;
            if(oufunnyequationslevel1_plus ==1)
            {
                
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); 
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); 
                
                oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2;
                
                oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; 
                
                if(oufunnyequationslevel1_check_sum >= 100)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (second digit)
                        oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2; // get the amount
                        
                        if(oufunnyequationslevel1_check_sum <= 99)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; // get right answer
                            break;
                        }
                    }
                }
            }
            else
            if(oufunnyequationslevel1_minus == 1)
            {
                // math sign: -
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (the first digit)
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (second digit)
                
                oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2; // get the amount
                oufunnyequationslevel1_check_sum2 = oufunnyequationslevel1_number1 - oufunnyequationslevel1_number2; // subtract
                oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                
                //if the sum is more than 100 or less than 0, re-run the random number generator
                if(oufunnyequationslevel1_check_sum >= 100 || oufunnyequationslevel1_check_sum2 <=0)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (second digit)
                        oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2; // get the amount
                        oufunnyequationslevel1_check_sum2 = oufunnyequationslevel1_number1 - oufunnyequationslevel1_number2; // subtract
                        
                        if(oufunnyequationslevel1_check_sum <= 99 && oufunnyequationslevel1_check_sum2 >=1)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                            break;
                        }
                        
                    }
                }
            }
            else
            if(oufunnyequationslevel1_mnoz == 1)
            {
                // math sign: *
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 10) + 1); // random number generator from 0 to 10 (the first digit)
                
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 9 (second digit)
                
                oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 * oufunnyequationslevel1_number2; // get the amount
                oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; // get right answer
                
                //if the sum is more than 100, re-run the random number generator
                if(oufunnyequationslevel1_check_sum >= 100)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 9 (second digit)
                        oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 * oufunnyequationslevel1_number2; // get the amount
                        
                        if(oufunnyequationslevel1_check_sum <= 99)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; // get right answer
                            break;
                        }
                        
                    }
                }
            }
            else
            if(oufunnyequationslevel1_del == 1)
            {
                // math sign: /
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (the first digit)
                
                if(oufunnyequationslevel1_number1 % 2 != 0)
                {
                    for(var i6 = 0; i6<1500; i6++)
                    {
                        oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 10 (the first digit)
                        
                        if(oufunnyequationslevel1_number1 % 2 == 0)
                        {
                            break;
                        }
                        
                    }
                }
                
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 9 (second digit)
                oufunnyequationslevel1_check_sum2 =  oufunnyequationslevel1_number1 / oufunnyequationslevel1_number2; // get the amount
                oufunnyequationslevel1_check_sum3 = oufunnyequations_ux_Float(oufunnyequationslevel1_check_sum2); // number is integer
                
                if(oufunnyequationslevel1_check_sum3 == false)
                {
                    oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                }
                if(oufunnyequationslevel1_check_sum3 == true)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 99 (the first digit)
                        oufunnyequationslevel1_check_sum2 =  oufunnyequationslevel1_number1 / oufunnyequationslevel1_number2; // get the amount
                        oufunnyequationslevel1_check_sum3 = oufunnyequations_ux_Float(oufunnyequationslevel1_check_sum2); // number is integer
                        
                        if(oufunnyequationslevel1_check_sum3 == false)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                            break;
                        }
                        
                    }
                }
            }
            
            
        }
        
        oufunnyequationslevel1_number3 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (third digit)
        oufunnyequationslevel1_number4 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (fourth digit)
        
        if(5 == 5)
        {
            if(oufunnyequationslevel1_number3 == oufunnyequationslevel1_right_answer)
            {
                oufunnyequationslevel1_number3 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (third digit)
            }
            
            if(oufunnyequationslevel1_number4 == oufunnyequationslevel1_right_answer)
            {
                oufunnyequationslevel1_number4 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (fourth digit)
            }
        }
        
        // display the correct answer on one of 3 options
        var array_math_answer = ["1", "2", "3"];
        var math_answer = array_math_answer[Math.floor(Math.random()*array_math_answer.length)];
        
        // correct answer position distribution block
        if(3 == 3)
        {
            if(math_answer == 1)
            {
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_right_answer); // position #1
                jQuery(".oufunnyequations_level1_in_detect_right_answer").val("1"); // add position #1 to input
            }
            else
            if(math_answer == 2)
            {
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_right_answer); // position #2
                jQuery(".oufunnyequations_level1_in_detect_right_answer").val("2"); // add position #2 to input
            }
            else
            if(math_answer == 3)
            {
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_right_answer); // position #3
                jQuery(".oufunnyequations_level1_in_detect_right_answer").val("3"); // add position #3 to input
            }
        }
        
        // position selection for two incorrect answers
        var array_math_answer_2 = ["1", "2"];
        var math_answer_2 = array_math_answer_2[Math.floor(Math.random()*array_math_answer_2.length)];
        
        // positioning for two incorrect answers
        if(7==7)
        {
            if(math_answer == 1 && math_answer_2 == 1)
            {
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number3); // positiom #2
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number4); // positiom #3
            }
            else
            if(math_answer == 1 && math_answer_2 == 2)
            {
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number3); // positiom #3
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number4); // positiom #2
            }
            else
            if(math_answer == 2 && math_answer_2 == 1)
            {
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number3); // positiom #1
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number4); // positiom #3
            }
            else
            if(math_answer == 2 && math_answer_2 == 2)
            {
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number3); // positiom #3
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number4); // positiom #1
            }
            else
            if(math_answer == 3 && math_answer_2 == 1)
            {
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number3); // positiom #1
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number4); // positiom #2
            }
            else
            if(math_answer == 3 && math_answer_2 == 2)
            {
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number3); // positiom #2
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number4); // positiom #1
            }
        }
        
        /*
        
                SHOW
        
        */
        jQuery(".oufunnyequations_level1_numbers1").html(oufunnyequationslevel1_number1);
        
        if(math_symbol == '*')
        {
            math_symbol = '&#8226;';
        }
        
        jQuery(".oufunnyequations_level1w_display_formlula_b").html(math_symbol);
        jQuery(".oufunnyequations_level1_numbers2").html(oufunnyequationslevel1_number2);
        
        /*
         
                TIMER
         
        */
        oufunnyequations_timer_level = setInterval(oufunnyequations_level1_timer, 1000); // run timer
    }
    
    // function: timer (LEVEL: Beginner)
    function oufunnyequations_level1_timer()
    {
        if(oufunnyequations_set_timer >=1)
        {
            oufunnyequations_set_timer--;
            jQuery(".oufunnyequations_level_timer").html(oufunnyequations_set_timer);
        }
        else
        {
            clearInterval(oufunnyequations_timer_level);
            jQuery(".oufunnyequations_level_timer").html("0");
            
            jQuery(".oufunnyequations_level1_choose").hide(); 
            jQuery(".oufunnyequations_level1_time_out").show(); 
        }
        
    }  
       
    // ----------------------------------------------------------
        
    function oufunnyequations_level1_exit()
    {
        jQuery("#oufunnyequations_game_l1").hide();
        jQuery("#oufunnyequations_screen").show();
        clearInterval(oufunnyequations_timer_level);
        oufunnyequations_set_timer = 90;
        jQuery(".oufunnyequations_level_timer").html(oufunnyequations_set_timer);
        jQuery(".oufunnyequations_level_points").html("0");
        oufunnyequations_total_answer = 0;
        
    }
         
    function oufunnyequations_button_game_help()
    {
        jQuery("#oufunnyequations_screen").hide();
        jQuery("#oufunnyequations_help").show();
    }
        
    function oufunnyequations_button_game_help_close()
    {
        jQuery("#oufunnyequations_help").hide();
        jQuery("#oufunnyequations_screen").show();
    }
        
    function oufunnyequations_button_game_close()
    {
        jQuery("#oufunnyequations_game").hide();
        jQuery("#oufunnyequations_screen").show();
    }
        
    // function: first option answer (position: left)
    function oufunnyequations_lev1_a()
    {
        oufunnyequations_dec_choose_1 = jQuery(".oufunnyequations_level1_in_detect_right_answer").val();
        
        if(oufunnyequations_dec_choose_1 == 1)
        {
            oufunnyequations_total_answer++; 
            jQuery(".oufunnyequations_level_points").html(oufunnyequations_total_answer);
            jQuery(".oufunnyequations_level1_choose").hide();
            jQuery(".oufunnyequations_level1_right").show();
            clearInterval(oufunnyequations_timer_level);
            oufunnyequations_timer_level_next = setInterval(oufunnyequations_lev1_run_next, 1600);
        }
        else
        {
            jQuery(".oufunnyequations_level1_choose").hide();
            jQuery(".oufunnyequations_level1_wrong").show();
            clearInterval(oufunnyequations_timer_level); 
            oufunnyequations_timer_level_next = setInterval(oufunnyequations_lev1_run_next, 1600);
        }
    }
    
    // function: second option answer (position: center)
    function oufunnyequations_lev1_b()
    {
        oufunnyequations_dec_choose_2 = jQuery(".oufunnyequations_level1_in_detect_right_answer").val();
        
        if(oufunnyequations_dec_choose_2 == 2)
        {
            oufunnyequations_total_answer++; 
            jQuery(".oufunnyequations_level_points").html(oufunnyequations_total_answer);
            jQuery(".oufunnyequations_level1_choose").hide();
            jQuery(".oufunnyequations_level1_right").show();
            clearInterval(oufunnyequations_timer_level);
            oufunnyequations_timer_level_next = setInterval(oufunnyequations_lev1_run_next, 1600);
        }
        else
        {
            jQuery(".oufunnyequations_level1_choose").hide();
            jQuery(".oufunnyequations_level1_wrong").show();
            clearInterval(oufunnyequations_timer_level);
            oufunnyequations_timer_level_next = setInterval(oufunnyequations_lev1_run_next, 1600);
        }
    }
    
    // function: third option answer (position: right)
    function oufunnyequations_lev1_c()
    {
        oufunnyequations_dec_choose_3 = jQuery(".oufunnyequations_level1_in_detect_right_answer").val();
        
        if(oufunnyequations_dec_choose_3 == 3)
        {
            oufunnyequations_total_answer++; 
            jQuery(".oufunnyequations_level_points").html(oufunnyequations_total_answer);
            jQuery(".oufunnyequations_level1_choose").hide();
            jQuery(".oufunnyequations_level1_right").show();
            clearInterval(oufunnyequations_timer_level);
            oufunnyequations_timer_level_next = setInterval(oufunnyequations_lev1_run_next, 1600);
        }
        else
        {
            jQuery(".oufunnyequations_level1_choose").hide();
            jQuery(".oufunnyequations_level1_wrong").show();
            clearInterval(oufunnyequations_timer_level);
            oufunnyequations_timer_level_next = setInterval(oufunnyequations_lev1_run_next, 1600);
        }
    }
        
        
    function oufunnyequations_lev1_run_next()
    {
        var s_det_timer_next = parseInt(jQuery(".oufunnyequations_level1_in_timer").val());
        var s_det_timer_next_new = s_det_timer_next - 1;
        jQuery(".oufunnyequations_level1_in_timer").val(s_det_timer_next_new);
        
        clearInterval(oufunnyequations_timer_level_next); // Level: Beginner = > stop the timer
        jQuery(".oufunnyequations_level1_right").hide();
        jQuery(".oufunnyequations_level1_wrong").hide();
        
        if(s_det_timer_next_new >=15)
        {
            oufunnyequations_set_timer = s_det_timer_next_new; 
            jQuery(".oufunnyequations_level_timer").html(oufunnyequations_set_timer);
        }
        else
        {
            oufunnyequations_set_timer = 15;
            jQuery(".oufunnyequations_level_timer").html(oufunnyequations_set_timer);
        }
        
        jQuery(".oufunnyequations_level1_choose").show();
        clearInterval(oufunnyequations_timer_level); // Level: Beginner = > stop the timer
        clearInterval(oufunnyequations_timer_level_next); // Level: Beginner = > stop the timer
        
        jQuery(".oufunnyequations_level1_in_timer").val(oufunnyequations_set_timer); // add timer to input
        oufunnyequationslevel1_plus = 0; // rest (+)
        oufunnyequationslevel1_minus = 0; // reset (-)
        oufunnyequationslevel1_mnoz = 0; // reset (+)
        oufunnyequationslevel1_del = 0; // reset (/)
        oufunnyequationslevel1_number1 = 0; // reset the first digit
        oufunnyequationslevel1_number2 = 0; // reset second digit
        oufunnyequationslevel1_number3 = 0; // reset third digit
        oufunnyequationslevel1_number4 = 0; // reset fourth digit
        oufunnyequationslevel1_check_sum = 0; // reset equation
        oufunnyequationslevel1_check_sum2 = 0; // reset equation
        oufunnyequationslevel1_check_sum3 = 0; // reset equation
        oufunnyequationslevel1_right_answer = 0; //reset correct answer
        
        // Math symbol generator
        var array_math_symbol = ["+", "-", "*", "/"];
        var math_symbol = array_math_symbol[Math.floor(Math.random()*array_math_symbol.length)];
        
        // definition of a mathematical sign
        if(1 == 1)
        {
            if(math_symbol == '+')
            {
                oufunnyequationslevel1_plus = 1; // math sign: +
            }
            else
            if(math_symbol == '-')
            {
                oufunnyequationslevel1_minus = 1; // math sign: -
            }
            else
            if(math_symbol == '*')
            {
                oufunnyequationslevel1_mnoz = 1; // math sign: *
            }
            else
            if(math_symbol == '/')
            {
                oufunnyequationslevel1_del = 1; // math sign: /
            }
        }
        
        // In this block the equation will be created.
        if(2 == 2)
        {
            if(oufunnyequationslevel1_plus ==1)
            {
                // math sign: +
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (the first digit)
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (second digit)
                oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2; // get the amount
                oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; // get right answer
                
                //if the sum is more than 100, re-run the random number generator
                if(oufunnyequationslevel1_check_sum >= 100)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (second digit)
                        oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2; // get the amount
                        
                        if(oufunnyequationslevel1_check_sum <= 99)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; // get right answer
                            break;
                        }
                        
                    }
                }
                
            }
            else
            if(oufunnyequationslevel1_minus == 1)
            {
                // math sign: -
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (the first digit)
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (second digit)
                
                oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2; // get the amount
                oufunnyequationslevel1_check_sum2 = oufunnyequationslevel1_number1 - oufunnyequationslevel1_number2; // subtract
                oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                
                //if the sum is more than 100 or less than 0, re-run the random number generator
                if(oufunnyequationslevel1_check_sum >= 100 || oufunnyequationslevel1_check_sum2 <=0)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (second digit)
                        oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 + oufunnyequationslevel1_number2; // get the amount
                        oufunnyequationslevel1_check_sum2 = oufunnyequationslevel1_number1 - oufunnyequationslevel1_number2; // subtract
                        
                        if(oufunnyequationslevel1_check_sum <= 99 && oufunnyequationslevel1_check_sum2 >=1)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                            break;
                        }
                        
                    }
                }
            }
            else
            if(oufunnyequationslevel1_mnoz == 1)
            {
                // math sign: *
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 10) + 1); // random number generator from 0 to 10 (the first digit)
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 9 (second digit)
                
                oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 * oufunnyequationslevel1_number2; // get the amount
                oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; // get right answer
                
                //if the sum is more than 100, re-run the random number generator
                if(oufunnyequationslevel1_check_sum >= 100)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 9 (second digit)
                        oufunnyequationslevel1_check_sum = oufunnyequationslevel1_number1 * oufunnyequationslevel1_number2; // get the amount
                        
                        if(oufunnyequationslevel1_check_sum <= 99)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum; // get right answer
                            break;
                        }
                        
                    }
                }
            }
            else
            if(oufunnyequationslevel1_del == 1)
            {
                // math sign: /
                oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (the first digit)
                
                if(oufunnyequationslevel1_number1 % 2 != 0)
                {
                    for(var i6 = 0; i6<1500; i6++)
                    {
                        oufunnyequationslevel1_number1 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 10 (the first digit)
                        
                        if(oufunnyequationslevel1_number1 % 2 == 0)
                        {
                            break;
                        }
                        
                    }
                }
                
                oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 9 (second digit)
                oufunnyequationslevel1_check_sum2 =  oufunnyequationslevel1_number1 / oufunnyequationslevel1_number2; // get the amount
                oufunnyequationslevel1_check_sum3 = oufunnyequations_ux_Float(oufunnyequationslevel1_check_sum2); // number is integer
                
                if(oufunnyequationslevel1_check_sum3 == false)
                {
                    oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                }
                if(oufunnyequationslevel1_check_sum3 == true)
                {
                    for(i1 = 0; i1<15500; i1++)
                    {
                        oufunnyequationslevel1_number2 = Math.floor((Math.random() * 9) + 1); // random number generator from 0 to 99 (the first digit)
                        oufunnyequationslevel1_check_sum2 =  oufunnyequationslevel1_number1 / oufunnyequationslevel1_number2; // get the amount
                        oufunnyequationslevel1_check_sum3 = oufunnyequations_ux_Float(oufunnyequationslevel1_check_sum2); // number is integer
                        
                        if(oufunnyequationslevel1_check_sum3 == false)
                        {
                            oufunnyequationslevel1_right_answer = oufunnyequationslevel1_check_sum2; // get right answer
                            break;
                        }
                        
                    }
                }
            }    
        }
        
        oufunnyequationslevel1_number3 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (third digit)
        oufunnyequationslevel1_number4 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (fourth digit)
        
        if(5 == 5)
        {
            // check the number with the correct answer
            if(oufunnyequationslevel1_number3 == oufunnyequationslevel1_right_answer)
            {
                oufunnyequationslevel1_number3 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (third digit)
            }
            
            if(oufunnyequationslevel1_number4 == oufunnyequationslevel1_right_answer)
            {
                oufunnyequationslevel1_number4 = Math.floor((Math.random() * 99) + 1); // random number generator from 0 to 99 (fourth digit)
            }
        }
        
        // display the correct answer on one of 3 options
        var array_math_answer = ["1", "2", "3"];
        var math_answer = array_math_answer[Math.floor(Math.random()*array_math_answer.length)];
        
        // correct answer position distribution block
        if(3 == 3)
        {
            if(math_answer == 1)
            {
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_right_answer); // position #1
                jQuery(".oufunnyequations_level1_in_detect_right_answer").val("1"); // add position #1 to input
            }
            else
            if(math_answer == 2)
            {
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_right_answer); // position #2
                jQuery(".oufunnyequations_level1_in_detect_right_answer").val("2"); // add position #2 to input
            }
            else
            if(math_answer == 3)
            {
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_right_answer); // position #3
                jQuery(".oufunnyequations_level1_in_detect_right_answer").val("3"); // add position #3 to input
            }
        }
        
        // position selection for two incorrect answers
        var array_math_answer_2 = ["1", "2"];
        var math_answer_2 = array_math_answer_2[Math.floor(Math.random()*array_math_answer_2.length)];
        
        // positioning for two incorrect answers
        if(7==7)
        {
            if(math_answer == 1 && math_answer_2 == 1)
            {
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number3); // positiom #2
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number4); // positiom #3
            }
            else
            if(math_answer == 1 && math_answer_2 == 2)
            {
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number3); // positiom #3
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number4); // positiom #2
            }
            else
            if(math_answer == 2 && math_answer_2 == 1)
            {
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number3); // positiom #1
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number4); // positiom #3
            }
            else
            if(math_answer == 2 && math_answer_2 == 2)
            {
                jQuery(".oufunnyequations_level1_answer3").html(oufunnyequationslevel1_number3); // positiom #3
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number4); // positiom #1
            }
            else
            if(math_answer == 3 && math_answer_2 == 1)
            {
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number3); // positiom #1
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number4); // positiom #2
            }
            else
            if(math_answer == 3 && math_answer_2 == 2)
            {
                jQuery(".oufunnyequations_level1_answer2").html(oufunnyequationslevel1_number3); // positiom #2
                jQuery(".oufunnyequations_level1_answer1").html(oufunnyequationslevel1_number4); // positiom #1
            }
        }
        
        jQuery(".oufunnyequations_level1_numbers1").html(oufunnyequationslevel1_number1); // display first number
        
        // convert math multiplication sign and display this sign
        if(8 == 8)
        {
            if(math_symbol == '*')
            {
                jQuery(".oufunnyequations_level1_math_symbol").html("&#8226;");
            }
            else
            {
                jQuery(".oufunnyequations_level1_math_symbol").html(math_symbol);
            }
        }
        jQuery(".oufunnyequations_level1_numbers2").html(oufunnyequationslevel1_number2);
        
        
        // add answer options to input
        jQuery(".oufunnyequations_level1_in_right_answer").val(oufunnyequationslevel1_right_answer);
        jQuery(".oufunnyequations_level1_in_wrong_answer1").val(oufunnyequationslevel1_number3);
        jQuery(".oufunnyequations_level1_in_wrong_answer2").val(oufunnyequationslevel1_number4);
        
        oufunnyequations_timer_level = setInterval(oufunnyequations_level1_timer, 1000); // run timer
    }
    </script>
    <div id="hangman-div">
    <form action="" method="POST">
       <input type="hidden" name="action" value="1" />
       <img src="https://smurcteez.com/wp-content/plugins/hangman/images/logo.png" id="logo" />
        <div class="center">
            <div id="levels-div">
                <span id="level">
                    <input type="radio" name="level" checked="checked" id="level_0" value="0">
                        <label for="level_0">Easy game: you are allowed 10 misses.</label><br>
                    <input type="radio" name="level" id="level_1" value="1">
                        <label for="level_1">Medium game: you are allowed 5 misses.</label><br>
                    <input type="radio" name="level" id="level_2" value="2">
                        <label for="level_2">Hard game: you are allowed 3 misses.</label>
                 </span>
            </div>
            <div>
                <input type="submit" value="Play!!!" id="submit-button" />
            </div>
        </div>
    </form>
</div>      
{"id":72,"date":"2025-11-04T00:08:30","date_gmt":"2025-11-04T00:08:30","guid":{"rendered":"https:\/\/smurcteez.com\/?page_id=72"},"modified":"2026-04-20T00:07:42","modified_gmt":"2026-04-20T00:07:42","slug":"games","status":"publish","type":"page","link":"https:\/\/smurcteez.com\/index.php\/games\/","title":{"rendered":"Games(more games pass the smurc search)"},"content":{"rendered":"<p><br \/>\n<br \/>\n\n    <div id=\"dino-outer\" class=\"dino-outer\">\n        <div class=\"dino-inner\">\n            <div class=\"dino-icon dino-initial-icon\" alt=\"\"><\/div>\n            <div id=\"dino-game\">\n                <img decoding=\"async\" id=\"dinogame-sprites-1x\" style=\"display:none;\" class=\"a3-notlazy disable-lazyload no-lazy no-lazyload skip-lazy\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/dinosaur-game\/game-sprites-1x.png\" data-lazy-src data-crazy-lazy=\"exclude\" data-no-lazy data-no-lazy=\"1\">\n                <img decoding=\"async\" id=\"dinogame-sprites-2x\" style=\"display:none;\" class=\"a3-notlazy disable-lazyload no-lazy no-lazyload skip-lazy\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/dinosaur-game\/game-sprites-2x.png\" data-lazy-src data-crazy-lazy=\"exclude\" data-no-lazy data-no-lazy=\"1\">\n<template id=\"audio-resources\">\n<audio id=\"offline-sound-press\" src=\"data:audio\/mpeg;base64,T2dnUwACAAAAAAAAAABVDxppAAAAABYzHfUBHgF2b3JiaXMAAAAAAkSsAAD\/\/\/\/\/AHcBAP\/\/\/\/+4AU9nZ1MAAAAAAAAAAAAAVQ8aaQEAAAC9PVXbEEf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+IDdm9yYmlzNwAAAEFPOyBhb1R1ViBiNSBbMjAwNjEwMjRdIChiYXNlZCBvbiBYaXBoLk9yZydzIGxpYlZvcmJpcykAAAAAAQV2b3JiaXMlQkNWAQBAAAAkcxgqRqVzFoQQGkJQGeMcQs5r7BlCTBGCHDJMW8slc5AhpKBCiFsogdCQVQAAQAAAh0F4FISKQQghhCU9WJKDJz0IIYSIOXgUhGlBCCGEEEIIIYQQQgghhEU5aJKDJ0EIHYTjMDgMg+U4+ByERTlYEIMnQegghA9CuJqDrDkIIYQkNUhQgwY56ByEwiwoioLEMLgWhAQ1KIyC5DDI1IMLQoiag0k1+BqEZ0F4FoRpQQghhCRBSJCDBkHIGIRGQViSgwY5uBSEy0GoGoQqOQgfhCA0ZBUAkAAAoKIoiqIoChAasgoAyAAAEEBRFMdxHMmRHMmxHAsIDVkFAAABAAgAAKBIiqRIjuRIkiRZkiVZkiVZkuaJqizLsizLsizLMhAasgoASAAAUFEMRXEUBwgNWQUAZAAACKA4iqVYiqVoiueIjgiEhqwCAIAAAAQAABA0Q1M8R5REz1RV17Zt27Zt27Zt27Zt27ZtW5ZlGQgNWQUAQAAAENJpZqkGiDADGQZCQ1YBAAgAAIARijDEgNCQVQAAQAAAgBhKDqIJrTnfnOOgWQ6aSrE5HZxItXmSm4q5Oeecc87J5pwxzjnnnKKcWQyaCa0555zEoFkKmgmtOeecJ7F50JoqrTnnnHHO6WCcEcY555wmrXmQmo21OeecBa1pjppLsTnnnEi5eVKbS7U555xzzjnnnHPOOeec6sXpHJwTzjnnnKi9uZab0MU555xPxunenBDOOeecc84555xzzjnnnCA0ZBUAAAQAQBCGjWHcKQjS52ggRhFiGjLpQffoMAkag5xC6tHoaKSUOggllXFSSicIDVkFAAACAEAIIYUUUkghhRRSSCGFFGKIIYYYcsopp6CCSiqpqKKMMssss8wyyyyzzDrsrLMOOwwxxBBDK63EUlNtNdZYa+4555qDtFZaa621UkoppZRSCkJDVgEAIAAABEIGGWSQUUghhRRiiCmnnHIKKqiA0JBVAAAgAIAAAAAAT\/Ic0REd0REd0REd0REd0fEczxElURIlURIt0zI101NFVXVl15Z1Wbd9W9iFXfd93fd93fh1YViWZVmWZVmWZVmWZVmWZVmWIDRkFQAAAgAAIIQQQkghhRRSSCnGGHPMOegklBAIDVkFAAACAAgAAABwFEdxHMmRHEmyJEvSJM3SLE\/zNE8TPVEURdM0VdEVXVE3bVE2ZdM1XVM2XVVWbVeWbVu2dduXZdv3fd\/3fd\/3fd\/3fd\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\/X\/Ofo9yCQZsoHL6\/5z9HuUSDNgAAAAACIDB4P\/BQA4NcAAHhzYgQAhyZEChScMgZPzmQwZwkcYjJguOaCaT6Sp\/Kand3Luej5yp9HApCHVtClzDUAdARABQMgC00kVNVxCUVrqo6QqCoqpkHqdBZaA+ViWsfXWfDxS00kVNVxDkVrqo6QqCjKoGkDPMI4eZeZZqpq8aZ9AMtNJFzVYQ1Fa6qNkKgqoiGrbSkmkbqXv3aIeKI\/3mh4gORh4cy6gShGMZVYJwm9SKkJkzqK64CkyLTGbMGExnzhyrNcyYMQl0nE4rwzDkq0+D\/PO1japBzB9E1XqdAUTVep0BnDStQJsDk7gaNQK5UeTMGgwzILIr00nCYH0Gd4wp1aAOEwlvhGwA2nl9c0KAu9LTJUSPIOXVyCVQpPP65oQAd6WnS4geQcqrkUugiC8QZa1eq9eqRUYCAFAWY\/oggB0gm5gFWYhtgB6gSIeJS8FxMiAGycBBm2ABURdHBNQRQF0JAJDJ8PhkMplMJtcxH+aYTMhkjut1vXIdkwEAHryuAQAgk\/lcyZXZ7Darzd2J3RBRoGf+V69evXJtviwAxOMBNqACAAIoAAAgM2tuRDEpAGAD0Khcc8kAQDgMAKDRbGlmFJENAACaaSYCoJkoAAA6mKlYAAA6TgBwxpkKAIDrBACdBAwA8LyGDACacTIRBoAA\/in9zlAB4aA4Vczai\/R\/roGKBP4+pd8ZKiAcFKeKWXuR\/s81UJHAn26QimqtBBQ2MW2QKUBUG+oBegpQ1GslgCIboA3IoId6DZeCg2QgkAyIQR3iYgwursY4RgGEH7\/rmjBQwUUVgziioIgrroJRBECGTxaUDEAgvF4nYCagzZa1WbJGkhlJGobRMJpMM0yT0Z\/6TFiwa\/WXHgAKwAABmgLQiOy5yTVDATQdAACaDYCKrDkyA4A2TgoAAB1mTgpAGycjAAAYZ0yjxAEAmQ6FcQWAR4cHAOhDKACAeGkA0WEaGABQSfYcWSMAHhn9f87rKPpQpe8viN3YXQ08cCAy+v+c11H0oUrfXxC7sbsaeOAAmaAXkPWQ6sBBKRAe\/UEYxiuPH7\/j9bo+M0cAE31NOzEaVBBMChqRNUdWWTIFGRpCZo7ssuXMUBwgACpJZcmZRQMFQJNxMgoCAGKcjNEAEnoDqEoD1t37wH7KXc7FayXfFzrSQHQ7nxi7yVsKXN6eo7ewMrL+kxn\/0wYf0gGXcpEoDSQI4CABFsAJ8AgeGf1\/zn9NcuIMGEBk9P85\/zXJiTNgAAAAPPz\/rwAEHBDgGqgSAgQQAuaOAHj6ELgGOaBqRSpIg+J0EC3U8kFGa5qapr41xuXsTB\/BpNn2BcPaFfV5vCYu12wisH\/m1IkQmqJLYAKBHAAQBRCgAR75\/H\/Of01yCQbiZkgoRD7\/n\/Nfk1yCgbgZEgoAAAAAEADBcPgHQRjEAR4Aj8HFGaAAeIATDng74SYAwgEn8BBHUxA4Tyi3ZtOwTfcbkBQ4DAImJ6AA\"><\/audio>\n<audio id=\"offline-sound-hit\" src=\"data:audio\/mpeg;base64,T2dnUwACAAAAAAAAAABVDxppAAAAABYzHfUBHgF2b3JiaXMAAAAAAkSsAAD\/\/\/\/\/AHcBAP\/\/\/\/+4AU9nZ1MAAAAAAAAAAAAAVQ8aaQEAAAC9PVXbEEf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+IDdm9yYmlzNwAAAEFPOyBhb1R1ViBiNSBbMjAwNjEwMjRdIChiYXNlZCBvbiBYaXBoLk9yZydzIGxpYlZvcmJpcykAAAAAAQV2b3JiaXMlQkNWAQBAAAAkcxgqRqVzFoQQGkJQGeMcQs5r7BlCTBGCHDJMW8slc5AhpKBCiFsogdCQVQAAQAAAh0F4FISKQQghhCU9WJKDJz0IIYSIOXgUhGlBCCGEEEIIIYQQQgghhEU5aJKDJ0EIHYTjMDgMg+U4+ByERTlYEIMnQegghA9CuJqDrDkIIYQkNUhQgwY56ByEwiwoioLEMLgWhAQ1KIyC5DDI1IMLQoiag0k1+BqEZ0F4FoRpQQghhCRBSJCDBkHIGIRGQViSgwY5uBSEy0GoGoQqOQgfhCA0ZBUAkAAAoKIoiqIoChAasgoAyAAAEEBRFMdxHMmRHMmxHAsIDVkFAAABAAgAAKBIiqRIjuRIkiRZkiVZkiVZkuaJqizLsizLsizLMhAasgoASAAAUFEMRXEUBwgNWQUAZAAACKA4iqVYiqVoiueIjgiEhqwCAIAAAAQAABA0Q1M8R5REz1RV17Zt27Zt27Zt27Zt27ZtW5ZlGQgNWQUAQAAAENJpZqkGiDADGQZCQ1YBAAgAAIARijDEgNCQVQAAQAAAgBhKDqIJrTnfnOOgWQ6aSrE5HZxItXmSm4q5Oeecc87J5pwxzjnnnKKcWQyaCa0555zEoFkKmgmtOeecJ7F50JoqrTnnnHHO6WCcEcY555wmrXmQmo21OeecBa1pjppLsTnnnEi5eVKbS7U555xzzjnnnHPOOeec6sXpHJwTzjnnnKi9uZab0MU555xPxunenBDOOeecc84555xzzjnnnCA0ZBUAAAQAQBCGjWHcKQjS52ggRhFiGjLpQffoMAkag5xC6tHoaKSUOggllXFSSicIDVkFAAACAEAIIYUUUkghhRRSSCGFFGKIIYYYcsopp6CCSiqpqKKMMssss8wyyyyzzDrsrLMOOwwxxBBDK63EUlNtNdZYa+4555qDtFZaa621UkoppZRSCkJDVgEAIAAABEIGGWSQUUghhRRiiCmnnHIKKqiA0JBVAAAgAIAAAAAAT\/Ic0REd0REd0REd0REd0fEczxElURIlURIt0zI101NFVXVl15Z1Wbd9W9iFXfd93fd93fh1YViWZVmWZVmWZVmWZVmWZVmWIDRkFQAAAgAAIIQQQkghhRRSSCnGGHPMOegklBAIDVkFAAACAAgAAABwFEdxHMmRHEmyJEvSJM3SLE\/zNE8TPVEURdM0VdEVXVE3bVE2ZdM1XVM2XVVWbVeWbVu2dduXZdv3fd\/3fd\/3fd\/3fd\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\/\/lzx+Xw+X3x8fCQSiWggDAA83UXF6\/vpLipe3zsCULWMBE5PMTBMlsv39\/f39\/f39524nZ13CDgaRFuLYTbaWgyzq22MzEyKolIpst50Z9PGqqJSq8T2++taLf3+oqg6btyouhEjYlxFjXxex1wCBFxcv+PmzG1uc2bKyJFLLlkizZozZ\/ZURpZs2TKiWbNnz5rKyJItS0akWbNnzdrIyJJtxmCczpxOATRRhoPimyjDQfEfIFMprQDU3WFYbXZLZZxMhxrGyRh99Uqel55XEk+9efP7I\/FU\/8Ojew4JNN\/rTq6b73Un1x+AVSsCWD2tNqtpGOM4DOM4GV7n5th453cXNGcfAYQKTFEOguKnKAdB8btRLxNBWUrViLoY1\/q1er+Q9xkvZM\/IjaoRf30xu3HLnr61fu3UBDRZHZdqsjoutQeAVesAxNMTw2rR66X\/Ix6\/T5tx80+t\/D67ipt\/q5XfJzTfa03Wzfdak\/UeAEpZawlsbharxTBVO1+c2nm\/7\/f1XR1dY8XaKWMH3aW9xvEFRFEksXgURRKLn7VamSFRVnYXg0C2Zo2MNE3+57u+e3NFlVev1uufX6nU3Lnf9d1j4wE03+sObprvdQc3ewBYFIArAtjdrRaraRivX7x+8VrbHIofG0n6cFwtNFKYBzxXA2j4uRpAw7dJRkSETBkZV1V1o+N0Op1WhmEyDOn36437RbKvl7zz838wgn295Iv8\/Ac8UaRIPFGkSHyAzCItAXY3dzGsNueM6VDDOJkOY3QYX008L6vnfZp\/3qf559VQL3Xm1SEFNN2fiMA03Z+IwOwBoKplAKY4TbGIec0111x99dXr9XrjZ\/nzdSWXBekAHEsWp4ljyeI0sVs2FEGiLFLj7rjxeqG8Pm+tX\/uW90b+DX31bVTF\/I+Ut+\/sM1IA\/MyILvUzI7rUbpNqyIBVjSDGVV\/Jo\/9H6G\/jq+5y3Pzb7P74Znf5ffZtApI5\/fN5SAcHjIhB5vTP5yEdHDAiBt4oK\/WGeqUMMspeTNsGk\/H\/PziIgCrG1Rijktfreh2vn4DH78WXa25yZkizZc9oM7JmaYeZM6bJOJkOxmE69Hmp\/q\/k0fvVRLln3H6fXcXNPt78W638Ptlxsytv\/pHyW7Pfp1Xc7L5XfqvZb5MdN7vy5p\/u8lut\/D6t4mb3vfmnVn6bNt9nV3Hzj1d+q9lv02bc7Mqbf6vZb+N23OzKm73u8lOz3+fY3uwqLv1022+THTepN38yf7XyW1aX8YqjACWfDTiAA+BQALTURU0oCFpLXdSEgqAJpAKxrLtzybNt1Go5VeJAASzRnh75Eu3pke8BYNWiCIBVLdgsXMqlXBJijDGW2Sj5lUqlSJFpPN9fAf08318B\/ewBUMUiA3h4YGIaooZrfn5+fn5+fn5+fn6mtQYKcQE8WVg5YfJkYeWEyWqblCIiiqKoVGq1WqxWWa3X6\/V6vVoty0zrptXq9\/u4ccS4GjWKGxcM6ogaNWpUnoDf73Xd3OQml2xZMhJNM7Nmz54zZ\/bsWbNmphVJRpYs2bJly5YtS0YSoWlm1uzZc+bMnj17ZloATNNI4PbTNBK4\/W5jlJGglFJWI4hR\/levXr06RuJ5+fLly6Ln1atXxxD18uXLKnr+V8cI8\/M03+vErpvvdWLXewBYxVoC9bBZDcPU3Bevtc399UWNtZH0p4MJZov7AkxThBmYpggzcNVCJqxIRQwiLpNBxxqUt\/NvuCqmb2Poa+RftCr7DO3te16HBjzbulL22daVsnsAqKIFwMXVzbCLYdVe9vGovzx9xP7469mk3L05d1+qjyKuPAY8397G2PPtbYztAWDVQgCH09MwTTG+Us67nX1fG5G+0o3YvspGtK+yfBmqAExTJDHQaYokBnrrZZEZkqoa3BjFDJlmGA17PF+qE\/GbJd3xm0V38qoYT\/aLuTzh6w\/ST\/j6g\/QHYBVgKYHTxcVqGKY5DOM4DNNRO3OXkM0JmAto6AE01xBa5OYaQou8B4BmRssAUNQ0TfP169fv169fvz6XSIZhGIbJixcvXrzIFP7+\/3\/9evc\/wyMAVFM8EEOvpngghr5by8hIsqiqBjXGXx0T4zCdTCfj8PJl1fy83vv7q1fHvEubn5+fnwc84etOrp\/wdSfXewBUsRDA5upqMU1DNl+\/GNunkTDUGrWzn0BDIC5UUw7CwKspB2HgVzVFSFZ1R9QxU8MkHXvLGV8jKxtjv6J9G0N\/MX1fIysbQzTdOlK26daRsnsAWLUGWFxcTQum8Skv93j2KLpfjSeb3fvFmM3xt3L3\/mwCPN\/2Rvb5tjeyewBULQGmzdM0DMzS3vEVHVu6MVTZGNn3Fe37WjxU2RjqAUxThJGfpggjv1uLDAlVdeOIGNH\/1P9Q5\/Jxvf49nmyOj74quveLufGb4zzh685unvB1Zzd7AFQAWAhguLpaTFNk8\/1i7Ni+Oq5BxQVcGABEVcgFXo+qkAu8vlurZiaoqiNi3N2Z94sXL168ePEiR4wYMWLEiBEjRowYMWLEiBEjAFRVtGm4qqJNw7ceGRkZrGpQNW58OozDOIzDy5dV8\/Pz8\/Pz8\/Pz8\/Pz8\/Pz8\/NlPN\/rDr6f73UH33sAVLGUwHRxsxqGaq72+tcvy5LsLLZ5JdBo0BdUU7Qgr6ZoQb4NqKon4PH6zfFknHYYjOqLT9XaWdkYWvQr2vcV7fuK9n3F9AEs3SZSduk2kbJ7AKhqBeDm7maYaujzKS8\/0f\/UJ\/eL7v2ie7\/o3rfHk83xBDzdZlLu6TaTcnsAWLUAYHcz1KqivUt7V\/ZQZWPoX7TvK9r3a6iyMVSJ6QNMUaSQnaJIIXvrGSkSVTWIihsZpsmYjKJ\/8vTxvC6694sxm+PJ5vhbuXu\/ADzf6w5+nu91Bz97AFi1lACHm9UwVHPztbbpkiKHJVsy2SAcDURTFhZc0ZSFBdeqNqiKQXwej8dxXrx48eLFixcvXrx4oY3g8\/\/\/\/\/\/\/\/\/+voo3IF3cCRE\/xjoLoKd5RsPUCKVN9jt\/v8TruMJ1MJ9PJ6E3z8y9fvnz58uXLly+rSp+Z+V+9ejXv7+8eukl9XpcPJED4YJP6vC4fSIDwgWN7vdDrmfT\/\/4PHDfg98ns9\/qDHnBxps2RPkuw5ciYZOXPJmSFrllSSNVumJDNLphgno2E6GQ3jUBmPeOn\/KP11zY6bfxvfjCu\/TSuv\/Datustxs0\/Njpt9anbc7Nv4yiu\/TSuv\/Datustxs0\/Njpt9aptx82\/jm175bVp55bfZ\/e5y3OxT24ybfWqbcfNv08orv00rr\/w27dfsuNmnthk3+7SVV36bVl75bVqJnUxPzXazT0294mnq2W+TikmmE5LiQb3pAa94mnpFAGxeSf1\/jn9mWTgDBjhUUv+f459ZFs6AAQ4AAAAAAIAH\/0EYBHEAB6gDzBkAAUxWjEAQk7nWaBZuuKvBN6iqkoMah7sAhnRZ6lFjmllwEgGCAde2zYBzAB5AAH5J\/X+Of81ycQZMHI0uqf\/P8a9ZLs6AiaMRAAAAAAIAOPgPw0EUEIddhEaDphAAjAhrrgAUlNDwPZKFEPFz2JKV4FqHl6tIxjaQDfQAiJqgZk1GDQgcBuAAfkn9f45\/zXLiDBgwuqT+P8e\/ZjlxBgwYAQAAAAAAg\/8fDBlCDUeGDICqAJAT585AAALkhkHxIHMR3AF8IwmgWZwQhv0DcpcIMeTjToEGKDQAB0CEACgAfkn9f45\/LXLiDCiMxpfU\/+f41yInzoDCaAwAAAAEg4P\/wyANDgAEhDsAujhQcBgAHEakAKBZjwHgANMYAkIDo+L8wDUrrgHpWnPwBBoJGZqDBmBAUAB1QANeOf1\/zn53uYQA9ckctMrp\/3P2u8slBKhP5qABAAAAAACAIAyCIAiD8DAMwoADzgECAA0wQFMAiMtgo6AATVGAE0gADAQA\"><\/audio>\n<audio id=\"offline-sound-reached\" src=\"data:audio\/mpeg;base64,T2dnUwACAAAAAAAAAABVDxppAAAAABYzHfUBHgF2b3JiaXMAAAAAAkSsAAD\/\/\/\/\/AHcBAP\/\/\/\/+4AU9nZ1MAAAAAAAAAAAAAVQ8aaQEAAAC9PVXbEEf\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/+IDdm9yYmlzNwAAAEFPOyBhb1R1ViBiNSBbMjAwNjEwMjRdIChiYXNlZCBvbiBYaXBoLk9yZydzIGxpYlZvcmJpcykAAAAAAQV2b3JiaXMlQkNWAQBAAAAkcxgqRqVzFoQQGkJQGeMcQs5r7BlCTBGCHDJMW8slc5AhpKBCiFsogdCQVQAAQAAAh0F4FISKQQghhCU9WJKDJz0IIYSIOXgUhGlBCCGEEEIIIYQQQgghhEU5aJKDJ0EIHYTjMDgMg+U4+ByERTlYEIMnQegghA9CuJqDrDkIIYQkNUhQgwY56ByEwiwoioLEMLgWhAQ1KIyC5DDI1IMLQoiag0k1+BqEZ0F4FoRpQQghhCRBSJCDBkHIGIRGQViSgwY5uBSEy0GoGoQqOQgfhCA0ZBUAkAAAoKIoiqIoChAasgoAyAAAEEBRFMdxHMmRHMmxHAsIDVkFAAABAAgAAKBIiqRIjuRIkiRZkiVZkiVZkuaJqizLsizLsizLMhAasgoASAAAUFEMRXEUBwgNWQUAZAAACKA4iqVYiqVoiueIjgiEhqwCAIAAAAQAABA0Q1M8R5REz1RV17Zt27Zt27Zt27Zt27ZtW5ZlGQgNWQUAQAAAENJpZqkGiDADGQZCQ1YBAAgAAIARijDEgNCQVQAAQAAAgBhKDqIJrTnfnOOgWQ6aSrE5HZxItXmSm4q5Oeecc87J5pwxzjnnnKKcWQyaCa0555zEoFkKmgmtOeecJ7F50JoqrTnnnHHO6WCcEcY555wmrXmQmo21OeecBa1pjppLsTnnnEi5eVKbS7U555xzzjnnnHPOOeec6sXpHJwTzjnnnKi9uZab0MU555xPxunenBDOOeecc84555xzzjnnnCA0ZBUAAAQAQBCGjWHcKQjS52ggRhFiGjLpQffoMAkag5xC6tHoaKSUOggllXFSSicIDVkFAAACAEAIIYUUUkghhRRSSCGFFGKIIYYYcsopp6CCSiqpqKKMMssss8wyyyyzzDrsrLMOOwwxxBBDK63EUlNtNdZYa+4555qDtFZaa621UkoppZRSCkJDVgEAIAAABEIGGWSQUUghhRRiiCmnnHIKKqiA0JBVAAAgAIAAAAAAT\/Ic0REd0REd0REd0REd0fEczxElURIlURIt0zI101NFVXVl15Z1Wbd9W9iFXfd93fd93fh1YViWZVmWZVmWZVmWZVmWZVmWIDRkFQAAAgAAIIQQQkghhRRSSCnGGHPMOegklBAIDVkFAAACAAgAAABwFEdxHMmRHEmyJEvSJM3SLE\/zNE8TPVEURdM0VdEVXVE3bVE2ZdM1XVM2XVVWbVeWbVu2dduXZdv3fd\/3fd\/3fd\/3fd\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\/wPOytDN39XY2P8N\/w2XhoCs0CKt8NEKLdIKH63ShlVlwuuiLze+3BjtjfZGe0lf6As9ggZstNJFphRUtpUuMqWgsqrasj2IhOA1F7LFMdFaWzkAtNBFpisIQgtdZLqCIKjqAAa9WePLkKr1MMG1FlwGtNJFTSkIcitd1JSCIKsCAQWISK0Cyzw147T1tAK00kVNKKjQVrqoCQUVqqr412m+VKtZf9h+TDaaztAAtNRFzVEQlJa6qDkKgiIrc2gtfES4nSQ1mlvfMxfX4+b2t7ICVNGwkKiiYSGxTQtK1YArN+DgTqdjMwyD1q8dL6RfOzXZ0yO+qkZ8+Ub81WP+DwNkWcJhvlmWcJjvSbUK\/WVm3LgxClkyiuxpIFtS5Gwi5FBkj2DGWEyHYBiLcRJkWnQSZGbRGYGZAHr6vWVJAWGE5q724ldv\/B8Kp5II3dPvLUsKCCM0d7UXv3rj\/1A4lUTo+kCUtXqtWimLssjIyMioViORobCJAQLYFnpaAACCAKEWAMCiQGqMABAIUKknAFkUIGsBIBBAHYBtgAFksAFsEySQgQDWQ4J1AOpiVBUHd1FE1d2IGDfGAUzmKiiTyWQyuY6Lx\/W4jgkQZQKioqKuqioAiIqKwagqCqKiogYxCgACCiKoAAAIqAuKAgAgjyeICQAAvAEXmQAAmYNhMgDAZD5MJqYzppPpZDqMwzg0TVU9epXf39\/9xw5lBaCpqJiG3VOsht0wRd8FgAeoB8APKOABQFT23GY0GgoAolkyckajHgBoZEYujQY+230BUoD\/uf31br\/7qCHLXLWwIjMIz3ZfgBTgf25\/vdvvPmrIMlctrMgMwiwCAAB4FgAAggAAAM8CAEAgkNG0DgCeBQCAIAAAmEUBynoASKANMIAMNoBtAAlkMAGoAzKQgDoAdQYAKOoEANFgAoAyKwAAGIOiAACVBACyAAAAFYMDAAAyxyMAAMBMfgQAAMi8GAAACDfoFQAAYHgxACA16QiK4CoWcTcVAADDdNpc7AAAgJun080DAAAwPTwxDQAAxYanm1UFAAAVD0MsAA4AyCUztwBwBgAyQOTMTZYA0AAiySW3Clar\/eRUAb5fPDXA75e8QH\/\/jkogHmq1n5wqwPeLpwb4\/ZIX6O\/fUQnEgwf9fr\/f72dmZmoaRUREhMLTADSVgCAgVLKaCT0tAABk2AFgAyQgEEDTSABtQiSQwQDUARksYBtAAgm2AQSQYBtAAuYPOK5rchyPLxAABFej4O7uAIgYNUYVEBExbozBGHdVgEoCYGZmAceDI0mGmZlrwYDHkQQAiLhxo6oKSHJk\/oBrZgYASI4XAwDAXMMnIQAA5DoyDAAACa8AAMDM5JPEZDIZhiFJoN33vj4X6N19v15gxH8fAE1ERMShbm5iBYCOAAMFgAzaZs3ITURECAAhInKTNbNtfQDQNnuWHBERFgBUVa4iDqyqXEUc+AKkZlkmZCoJgIOBBaubqwoZ2SDNgJlj5MgsMrIV44xgKjCFYTS36QRGQafwylRZAhMXr7IEJi7+AqQ+gajAim2S1W\/71ACEi4sIxsXVkSNDQRkgzGp6eNgMJDO7kiVXcmStkCVL0Ry0MzMgzRklI2dLliQNEbkUVFvaCApWW9oICq7rpRlKs2MBn8eVJRlk5JARjONMdGSYZArDOA0ZeKHD6+KN9oZ5MBDTCO8bmrptBBLgcnnOcBmk\/KMhS2lL6rYRSIDL5TnDZZDyj4YspS3eIOoN9Uq1KIsMpp1gsU0gm412AISQyICYRYmsFQCQwWIgwWRCABASGRDawAKYxcCAyYQFgLhB1Rg17iboGF6v1+fIcR2TyeR4PF7HdVzHdVzHcYXPbzIAQNTFuBoVBQAADJOL15WBhNcFAADAI9cAAAAAAJAEmIsMAOBlvdTLVcg4mTnJzBnTobzDfKPRaDSaI1IAnUyHhr6LALxFo5FmyZlL1kAU5lW+LIBGo9lym1OF5ikAOsyctGkK8fgfAfgPIQDAvBLgmVsGoM01lwRAvCwAHje0zTiA\/oUDAOYAHqv9+AQC4gEDMJ\/bIrXsH0Ggyh4rHKv9+AQC4gEDMJ\/bIrXsH0Ggyh4rDPUsAADAogBCk3oCQBAAAABBAAAg6FkAANCzAAAgBELTAACGQAAoGoFBFoWoAQDaBPoBQ0KdAQAAAK7iqkAVAABQNixAoRoAAKgE4CAiAAAAACAYow6IGjcAAAAAAPL4DfZ6kkZkprlkj6ACu7i7u5sKAAAOd7vhAAAAAEBxt6m6CjSAgKrFasUOAAAoAABic\/d0EwPIBjAA0CAggABojlxzLQD+mv34BQXEBQvYH5sijDr0\/FvZOwu\/Zj9+QQFxwQL2x6YIow49\/1b2zsI9CwAAeBYAAIBANGlSDQAABAEAAKBnIQEAeloAABgCCU0AAEMgAGQTYNAG+gCwAeiBIWMAGmYAAICogRg16gAAABB1gwVkNlgAAIDIGnCMOwIAAACAgmPA8CpgBgAAAIDMG\/QbII\/PLwAAaKN9vl4Pd3G6maoAAAAAapiKaQUAANPTxdXhJkAWXHBzcRcFAAAHAABqNx2YEQAHHIADOAEAvpp9fyMBscACmc9Lku7s1RPB+kdWs+9vJCAWWCDzeUnSnb16Ilj\/CNOzAACAZwEAAAhEk6ZVAAAIAgAAQc8CAICeFgAAhiAAABgCAUAjMGgDPQB6CgCikmDIGIDqCAAAkDUQdzUOAAAAKg3WIKsCAABkFkAJAAAAQFzFQXh8QQMAAAAABCMCKEhAAACAkXcOo6bDxCgqOMXV6SoKAAAAoGrabDYrAAAiHq5Ww80EBMiIi01tNgEAAAwAAKiHGGpRQADUKpgGAAAOEABogFFAAN6K\/fghBIQ5cH0+roo0efVEquyBaMV+\/BACwhy4Ph9XRZq8eiJV9kCQ9SwAAMCiAGhaDwAIAgAAIAgAAAQ9CwAAehYAAIQgAAAYAgGgaAAGWRTKBgBAG4AMADI2ANVFAAAAgKNqFKgGAACKRkpQqAEAgCKBAgAAAIAibkDFuDEAAAAAYODzA1iQoAEAAI3+ZYOMNls0AoEdN1dPiwIAgNNp2JwAAAAAYHgaLoa7QgNwgKeImAoAAA4AALU5XNxFoYFaVNxMAQCAjADAAQaeav34QgLiAQM4H1dNGbXoH8EIlT2SUKr14wsJiAcM4HxcNWXUon8EI1T2SEJMzwIAgJ4FAAAgCAAAhCAAABD0LAAA6GkBAEAIAgCAIRAAqvUAgywK2QgAyKIAoBEYAiGqCQB1BQAAqCNAmQEAAOqGFZANCwAAoBpQJgAAAKDiuIIqGAcAAAAA3Ig64LgoAADQHJ+WmYbJdMzQBsGuVk83mwIAAAIAgFNMV1cBUz1xKAAAgAEAwHR3sVldBRxAQD0d6uo0FAAADAAA6orNpqIAkMFqqMNAAQADKABkICgAfmr9+AUFxB0ANh+vita64VdPLCP9acKn1o9fUEDcAWDz8aporRt+9cQy0p8mjHsWAADwLAAAAEEAAAAEAQCAoGchAAD0LAAADIHQpAIADIEAUCsSDNpACwA2AK2EIaOVgLoCAACUBZCVAACAKBssIMqGFQAAoKoAjIMLAAAAAAgYIyB8BAUAAAAACPMJkN91ZAAA5O6kwzCtdAyIVd0cLi4KAAAAIFbD4uFiAbW5mu42AAAAAFBPwd1DoIEjgNNF7W4WQAEABwACODxdPcXIAAIHAEEBflr9\/A0FxAULtD9eJWl006snRuXfq8Rp9fM3FBAXLND+eJWk0U2vnhiVf68STM8CAACeBQAAIAgAAIAgAAAQ9CwAAOhpAQBgCITGOgAwBAJAYwYYZFGoFgEAZFEAKCsBhkDIGgAoqwAAAFVAVCUAAKhU1aCIhgAAIMoacKNGVAEAAABwRBRQXEUUAAAAABUxCGAMRgAAAABNpWMnaZOWmGpxt7kAAAAAIBimq9pAbOLuYgMAAAAAww0300VBgAMRD0+HmAAAZAAAAKvdZsNUAAcoaAAgA04BXkr9+EIC4gQD2J\/XRWjmV0\/syr0xpdSPLyQgTjCA\/XldhGZ+9cSu3BvD9CwAAOBZAAAAggAAAAgCgAQIehYAAPQsAAAIQQAAMAQCQJNMMMiiUDTNBABZFACyHmBIyCoAACAKoCIBACCLBjMhGxYAACCzAhQFAAAAYMBRFMUYAwAAAAAorg5gPZTJOI4yzhiM0hI1TZvhBgAAAIAY4mZxNcBQV1dXAAAAAAA3u4u7h4ICIYOni7u7qwGAAqAAAIhaHKI2ICCGXe2mAQBAgwwAAQIKQK6ZuREA\/hm9dyCg9xrQforH3TSBf2dENdKfM5\/RewcCeq8B7ad43E0T+HdGVCP9OWN6WgAA5CkANERJCAYAAIBgAADIAD0LAAB6WgAAmCBCUW8sAMAQCEBqWouAQRZFaigBgDaBSBgCIeoBAFkAwAiou6s4LqqIGgAAKMsKKKsCAAColIgbQV3ECAAACIBRQVzVjYhBVQEAAADJ55chBhUXEQEAIgmZOXNmTSNLthmTjNOZM8cMw2RIa9pdPRx2Q01VBZGNquHTq2oALBfQxKcAh\/zVDReL4SEqIgBAbqcKYhiGgdXqblocygIAdL6s7qbaDKfdNE0FAQ4AVFVxeLi7W51DAgIAAwSWDoAPoHUAAt6YvDUqoHcE7If29ZNi2H\/k+ir\/85yQNiZvjQroHQH7oX39pBj2H7m+yv88J6QWi7cXgKFPJtNOABIEEGVEvUljJckAbdhetBOgpwFkZFbqtWqAUBgysL2AQR2gHoDYE3Dld12P18HkOuY1r+M4Hr\/HAAAVBRejiCN4HE\/QLOAGPJhMgAJi1BhXgwCAyZUCmOuHZuTMkTUia47sGdIs2TPajKwZqUiTNOKl\/1fyvHS8fOn\/1QGU+5U0SaOSzCxpmiNntsxI0LhZ+\/0dmt1CVf8HNAXKl24AoM0D7jsIAMAASbPkmpvssuTMktIgALMAUESaJXuGzCyZQQBwgEZl5JqbnBlvgIyT0TAdSgG+6Px\/rn+NclEGFGDR+f9c\/xrlogwoAKjPiKKfIvRhGKYgzZLZbDkz2hC4djgeCVkXEKJlXz1uAosCujLkrDz6p0CZorVVOjvIQOAp3aVcLyCErGACSRKImCRMETeKzA6cFNd2X3KG1pyLgOnTDtnHXMSpVY1A6IXSjlNoh70ubc2VzXgfgd6uEQOBEmCt1O4wOHBQB2ANvtj8f65\/jXKiAkiwWGz+P9e\/RjlRASRYAODhfxqlH5QGhuxAobUGtOqEll3GqBEhYLIJQLMr6oQooHFcGpIsDK4yPg3UfMJtO\/hTFVma3lrt+JI\/EFBxbvlT2OiH0mhEfBofQDudLtq0lTiGSOKaVl6peD3XTDACuSXYNQAp4JoD7wjgUAC+2Px\/rn+NcqIMKDBebP4\/179GOVEGFBgDQPD\/fxBW4I7k5DEgDtxdcwFpcNNx+JoDICRCTtO253ANTbn7DmF+TXalagLadQ23yhGw1Pj7SzpOajGmpeeYyqUY1\/Y6KfuTVOU5cvu0gW2boGlMfFv5TejrOmkOl0iEpuQMpAYBB09nZ1MABINhAAAAAAAAVQ8aaQMAAAB\/dp+bB5afkaKgrlp+2Px\/rn+NchECSMBh8\/+5\/jXKRQggAQAI\/tMRHf0LRqDj05brTRlASvIy1PwPFcajBhcoY0BtuEqvBZw0c0jJRaZ4n0f7fOKW0Y8QZ\/M7xFeaGJktZ2ePGFTOLl4XzRCQMnJET4bVsFhMiiHf5vXtJ9vtMsf\/Wzy030v3dqzCbkfN7af9JmpkTSXXICMpLAVO16AZoAF+2Px\/rn91uQgGDOCw+f9c\/+pyEQwYAACCH51SxFCg6SCEBi5Yzvla\/iwJC4ekcPjs4PTWuY3tqJ0BKbo3cSYE4Oxo+TYjMXbYRhO+7lamNITiY2u0SUbFcZRMTaC5sUlWteBp+ZP4wUl9lzksq8hUQ5JOZZBAjfd98+8O6pvScEnEsrp\/Z5BczwfWpkx5PwQ37EoIH7fMBgYGgusZAQN+2Px\/rn91uQgGFOCw+f9c\/+pyEQwoAPD\/I8YfOD1cxsESTiLRCq0XjEpMtryCW+ZYCL2OrG5\/pdkExMrQmjY9KVY4h4vfDR0No9dovrC2mxka1Pr0+Mu09SplWO6YXqWclpXdoVKuagQllrWfCaGA0R7bvLk41ZsRTBiieZFaqyFRFbasq0GwHT0MKbUIB2QAftj8f65\/NbkIAQxwOGz+P9e\/mlyEAAY4gEcfPYMyMh8UBxBogIAtTU0qrERaVBLhCkJQ3MmgzZNrxplCg6xVj5AdH8J2IE3bUNgyuD86evYivJmI+NREqmWbKqosI6xblSnNmJJUum+0qsMe4o8fIeCXELdErT52+KQtXSIl3XJNKOKv3BnKtS2cKmmnGpCqP\/5YNQ9MCB2P8VUnCJiYDEAAXrj8f65\/jXIiGJCAwuX\/c\/1rlBPBgAQA\/ymlCDEi+hsNB2RoT865unFOQZiOpcy11YPQ6BiMettS0AZ0JqI4PV\/Neludd25CqZDuiL82RhzdohJXt36nH+HlZiHE5ILqVSQL+T5\/0h9qFzBVn0OFT9herDG3XzXz299VNY2RkejrK96EGyybKbXyG3IUUv5QEvq2bAP5CjJa9IiDeD5OOF64\/H8uf3W5lAAmULj8fy5\/dbmUACYAPEIfUcpgMGh0GgjCGlzQcHwGnb9HCrHg86LPrV1SbrhY+nX\/N41X2DMb5NsNtkcRS9rs95w9uDtvP+KP\/MupnfH3yHIbPG\/1zDBygJimTvFcZywqne6OX18E1zluma5AShnVx4aqfxLo6K\/C8P2fxH5cuaqtqE3Lbru4hT4283zc0Hqv2xINtisxZXBVfQuOAK6kCHjBAF6o\/H+uf09ycQK6w6IA40Ll\/3P9e5KLE9AdFgUYAwAAAgAAgDD4g+AgXAEEyAAEoADiPAAIcHGccHEAxN271+bn5+dt4B2YmGziAIrZMgZ4l2nedkACHggIAA==\"><\/audio>\n<\/template>\n            <\/div>\n        <\/div>\n    <\/div><br \/>\n\n<div style=\"margin-top:-10px;padding: 3px\" align=\"center\">\n<input style=\"-ms-transform: scale(1.1);-webkit-transform: scale(1.1);transform: scale(1.1);padding: 5px\" type=\"radio\" name=\"leve0\" id=\"leve0\" onclick=\"setlevel(0)\" checked ><label for=\"leve0\" style=\"padding:2px;font-family: 'Marck Script',cursive;color: black;font-weight: 900;font-size:14pt;cursor: pointer\"> Beginner <\/label>\n<input style=\"-ms-transform: scale(1.1);-webkit-transform: scale(1.1);transform: scale(1.1);padding:5px\" type=\"radio\" name=\"leve0\" id=\"level\" onclick=\"setlevel(1)\"> <label for=\"level\" style=\"padding:2px;font-family: 'Marck Script',cursive;color: black;font-weight: 900;font-size:14pt;cursor: pointer\">Learner <\/label>\n<input type=\"radio\" name=\"leve0\" id=\"leve2\" onclick=\"setlevel(2)\"><label for=\"leve2\" style=\"padding:5px;font-family: 'Marck Script',cursive;color: black;font-weight: 900;font-size:14pt;cursor: pointer\">Pro<\/label>\n<input type=\"radio\" name=\"leve0\" id=\"leve3\" onclick=\"setlevel(3)\"><label for=\"leve3\" style=\"padding:5px;font-family: 'Marck Script',cursive;color: black;font-weight: 900;font-size:14pt; cursor: pointer;\">Geek<\/label>\n<\/div><br>\n\n<div align=\"center\">\n<table style=\"background-color: white;border: 1px solid lightgrey;padding: 0px;margin: 0px;border-spacing:0px; text-align:center;\">\n<tr>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(11)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc11\"><\/a><\/td>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(12)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc12\"><\/a><\/td>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(13)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc13\"><\/a><\/td>\n<\/tr><tr>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(21)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc21\"><\/a><\/td>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(22)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc22\"><\/a><\/td>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(23)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc23\"><\/a><\/td>\n<\/tr><tr>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(31)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc31\"><\/a><\/td>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(32)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc32\"><\/a><\/td>\n<td style=\"border:1px solid lightgrey;width:85px;\"><a href=\"javascript:setbutton(33)\"><img decoding=\"async\" src=\"https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/blank.gif\" name=\"rc33\"><\/a><\/td>\n<\/tr><\/table><br>\n<p>\n\n<form name=\"WPTTT_scores\">\n<table>\n<tr>\n<td><textarea style=\"width:298px;height: 195px;overflow-y:hidden;color:#008753;font-size:16pt; font-family: 'Marck Script',cursive;font-weight:bolder;padding: 0 0 0 10px;line-height: 50px;background: url('https:\/\/smurcteez.com\/wp-content\/plugins\/wp-tic-tac-toe\/\/images\/scoresgame.jpg');\" name=\"scores2\" ><\/textarea><\/td>\n<\/tr>\n<\/table>\n<\/form>\n\n\n<\/div>\n\t<div id=\"WPTTT_popup\">\n  \t\t<div class=\"close\"><a href=\"javascript:;\" onclick=\"WPTTT_closex()\">[ Close ]<\/a><\/div>\n        <div id=\"WPTTT_result\"><\/div>\n\t<\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-72","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Games(more games pass the smurc search) - email me administrator@smurcteez.com for inquiries on shirts<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/smurcteez.com\/index.php\/games\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Games(more games pass the smurc search) - email me administrator@smurcteez.com for inquiries on shirts\" \/>\n<meta property=\"og:url\" content=\"https:\/\/smurcteez.com\/index.php\/games\/\" \/>\n<meta property=\"og:site_name\" content=\"email me administrator@smurcteez.com for inquiries on shirts\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-20T00:07:42+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/smurcteez.com\\\/index.php\\\/games\\\/\",\"url\":\"https:\\\/\\\/smurcteez.com\\\/index.php\\\/games\\\/\",\"name\":\"Games(more games pass the smurc search) - email me administrator@smurcteez.com for inquiries on shirts\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/smurcteez.com\\\/#website\"},\"datePublished\":\"2025-11-04T00:08:30+00:00\",\"dateModified\":\"2026-04-20T00:07:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/smurcteez.com\\\/index.php\\\/games\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/smurcteez.com\\\/index.php\\\/games\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/smurcteez.com\\\/index.php\\\/games\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/smurcteez.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Games(more games pass the smurc search)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/smurcteez.com\\\/#website\",\"url\":\"https:\\\/\\\/smurcteez.com\\\/\",\"name\":\"email me administrator@smurcteez.com for inquiries on shirts\",\"description\":\"email me administrator@smurcteez.com for inquiries on shirts... CASH APP $wardellrandall\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/smurcteez.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Games(more games pass the smurc search) - email me administrator@smurcteez.com for inquiries on shirts","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/smurcteez.com\/index.php\/games\/","og_locale":"en_US","og_type":"article","og_title":"Games(more games pass the smurc search) - email me administrator@smurcteez.com for inquiries on shirts","og_url":"https:\/\/smurcteez.com\/index.php\/games\/","og_site_name":"email me administrator@smurcteez.com for inquiries on shirts","article_modified_time":"2026-04-20T00:07:42+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/smurcteez.com\/index.php\/games\/","url":"https:\/\/smurcteez.com\/index.php\/games\/","name":"Games(more games pass the smurc search) - email me administrator@smurcteez.com for inquiries on shirts","isPartOf":{"@id":"https:\/\/smurcteez.com\/#website"},"datePublished":"2025-11-04T00:08:30+00:00","dateModified":"2026-04-20T00:07:42+00:00","breadcrumb":{"@id":"https:\/\/smurcteez.com\/index.php\/games\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/smurcteez.com\/index.php\/games\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/smurcteez.com\/index.php\/games\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/smurcteez.com\/"},{"@type":"ListItem","position":2,"name":"Games(more games pass the smurc search)"}]},{"@type":"WebSite","@id":"https:\/\/smurcteez.com\/#website","url":"https:\/\/smurcteez.com\/","name":"email me administrator@smurcteez.com for inquiries on shirts","description":"email me administrator@smurcteez.com for inquiries on shirts... CASH APP $wardellrandall","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/smurcteez.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/PdL5jH-1a","_links":{"self":[{"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/pages\/72","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/comments?post=72"}],"version-history":[{"count":7,"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/pages\/72\/revisions"}],"predecessor-version":[{"id":429,"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/pages\/72\/revisions\/429"}],"wp:attachment":[{"href":"https:\/\/smurcteez.com\/index.php\/wp-json\/wp\/v2\/media?parent=72"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}