/*
         * Tests taking an utterance of "Test", outputting to a PCM raw file taken from Rust OnPlayerVoice.  Use ffmpeg to encode to a WAV file and check it sounds right.
         */
        public static void TestWavToPCM()
        {
            Console.WriteLine("Opening WAV file source, and initializing Steam-OPUS Encoder...");

            int i = 0;

            WavHandler   wv = new WavHandler();
            BinaryWriter Writer;

            try
            {
                wv.OpenAndRead(@"..\..\..\..\musicbox.wav");
                Writer = new BinaryWriter(File.OpenWrite(@"..\..\..\..\test.pcm"));
            }
            catch (Exception ex)
            {
                Console.WriteLine("ERROR! Failed to open the sample WAV file, or output PCM file.");
                Console.WriteLine(ex.ToString());
                return;
            }


            int MaxSize = 1024;

            do
            {
                var bufferAudioSamples = new byte[1];

                // 16bit PCM, so half the start and size
                bufferAudioSamples = wv.GetClipBytes(0, i, MaxSize);

                // No data left, exit
                if (bufferAudioSamples == null)
                {
                    break;
                }

                Writer.Write(bufferAudioSamples, 0, bufferAudioSamples.Length);

                Writer.Flush();

                i += MaxSize;
            } while (true);

            Console.WriteLine(" * Ouput to PCM file = " + i * 2 + " bytes");

            Console.WriteLine("");

            Writer.Close();
        }
        /*
         * Tests taking PCM from a source, simple mono-8KHz PCM WAV file, and encoding and decoding and confirming output is similar to input.
         * NOTE: OPUS is a lossy encoder.
         */
        public static void TestWaveFrameEncodeDecode()
        {
            Console.WriteLine("Opening WAV file source, and initializing Steam-OPUS Encoder...");

            int i = 0;

            WavHandler   wv = new WavHandler();
            BinaryWriter Writer;

            try
            {
                wv.OpenAndRead(@"..\..\..\..\musicbox.wav");
                Writer = new BinaryWriter(File.OpenWrite(@"..\..\..\..\test.pcm"));
            }
            catch (Exception ex)
            {
                Console.WriteLine("ERROR! Failed to open the sample WAV file, or output PCM file.");
                Console.WriteLine(ex.ToString());
                return;
            }

            SteamVoiceFrame nEncoder = new SteamVoiceFrame();


            // Frame size in bytes ; this is 0x500/1280 audio samples
            int MaxSize = 160 * 8;

            do
            {
                Console.WriteLine(i / MaxSize + " chunk ==================================");

                // 16bit PCM, so half the start and size
                var bufferAudioSamples = wv.GetClipBytes(0, i, MaxSize);

                // Exceeded data size, exit
                if (bufferAudioSamples == null)
                {
                    break;
                }

                byte[] nComp;
                int    size = nEncoder.EncodeSamplesToFrame(bufferAudioSamples, out nComp);

                Console.WriteLine("Compressed " + i / MaxSize + " Size=" + size + " -> " + nComp[0]);

                // Skip header
                byte[] payloadData = nComp.Skip(12).ToArray();

                byte[] bufferOutAudio;
                int    decompAudioSize = nEncoder.DecodePayload(payloadData, payloadData.Length - 4, out bufferOutAudio);

                // Write raw read samples - OK
                // Writer.Write(bufferAudioSamples, 0, MaxSize);

                // Output raw->compressed->decompressed->raw audio
                Writer.Write(bufferOutAudio, 0, decompAudioSize * 2);

                Writer.Flush();

                Console.WriteLine(" * Input to compressor = " + MaxSize);
                Console.WriteLine(" * Output from decompressor = " + decompAudioSize * 2);

                Console.WriteLine("");

                i += MaxSize;
            } while (true);

            Writer.Close();
        }
        public static async Task HandleIncomingConnections()
        {
            bool runServer = true;


            Console.WriteLine("Opening WAV file source, and initializing Steam-OPUS Encoder...");

            WavHandler wv = new WavHandler();

            try
            {
                // Open the sample audio track, should be in the top of the project folder.
                wv.OpenAndRead(@"..\..\..\..\musicbox.wav");
            } catch (Exception ex)
            {
                Console.WriteLine("ERROR! Failed to open the sample WAV file.");
                Console.WriteLine(ex.ToString());
                return;
            }

            SteamVoiceFrame nEncoder = new SteamVoiceFrame();
            int             i        = 0;


            // While a user hasn't visited the `shutdown` url, keep on handling requests
            while (runServer)
            {
                Console.WriteLine("Waiting for RUST Client web-request...");

                // Will wait here until we hear from a connection
                HttpListenerContext ctx = await listener.GetContextAsync();

                // Peel out the requests and response objects
                HttpListenerRequest  req  = ctx.Request;
                HttpListenerResponse resp = ctx.Response;

                // Print out some info about the request
                Console.WriteLine("Request #: {0}", ++requestCount);
                Console.WriteLine("URL           > " + req.Url.ToString());
                Console.WriteLine("HttpMethod    > " + req.HttpMethod);
                Console.WriteLine("ClientHostName> " + req.UserHostName);
                Console.WriteLine("ClientAgent   > " + req.UserAgent);
                Console.WriteLine("QueryString   > " + req.QueryString.ToString());
                Console.WriteLine("QueryString # > " + req.QueryString.Count);

                int count = 1;
                foreach (String QueryKey in req.QueryString.AllKeys)
                {
                    Console.WriteLine("    Query param #" + count++ + "> " + QueryKey + " -> " + req.QueryString[QueryKey]);
                }
                Console.WriteLine();

                // If `shutdown` url requested w/ POST, then shutdown the server after serving the page
                if ((req.HttpMethod == "POST") && (req.Url.AbsolutePath == "/shutdown"))
                {
                    Console.WriteLine("Shutdown requested");
                    runServer = false;
                }

                // Make sure we don't increment the page views counter if `favicon.ico` is requested
                if (req.Url.AbsolutePath != "/favicon.ico")
                {
                    pageViews += 1;
                }

                // Generate response payload
                byte[] data = null;


                // Send a fixed sample OR WAV based one...
                bool fixedSample = false;
                if (fixedSample)
                {
                    byte[] buffer0 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06, 0xbf, 0x02, 0x4e, 0x00, 0x00, 0x00, 0x68, 0x02, 0xe6, 0xaf, 0x5c, 0xb7, 0xb0, 0xf5, 0x00, 0x65, 0x98, 0xec, 0x9a, 0xd5, 0x08, 0xb6, 0x21, 0x23, 0x46, 0x4b, 0x71, 0x35, 0x02, 0x03, 0x45, 0x90, 0xc2, 0xa6, 0x0a, 0x55, 0x56, 0xad, 0xa2, 0xb6, 0xfc, 0x67, 0x6b, 0x65, 0xf7, 0xf4, 0xc8, 0x55, 0x18, 0xfd, 0x1e, 0x92, 0x7c, 0x91, 0x28, 0x3f, 0x7f, 0x44, 0x7e, 0x99, 0xa0, 0xcd, 0x17, 0xd1, 0xf3, 0x58, 0x57, 0x67, 0x80, 0xca, 0x36, 0xc3, 0x07, 0xe3, 0xe2, 0x4c, 0x7d, 0x31, 0x74, 0x93, 0x53, 0xac, 0xc1, 0xbf, 0x51, 0x00, 0x01, 0x00, 0x68, 0x2f, 0x36, 0x14, 0xc3, 0x62, 0xf5, 0x1a, 0xc0, 0x69, 0xef, 0x46, 0x79, 0x7f, 0xab, 0xe7, 0x64, 0x04, 0xd2, 0xb8, 0x33, 0x3a, 0x29, 0x46, 0x28, 0xfb, 0xe3, 0xa0, 0x3b, 0xb8, 0xc4, 0xaf, 0x09, 0x3f, 0xd1, 0x47, 0xbe, 0x00, 0x2b, 0x76, 0xff, 0xff, 0x41, 0xeb, 0xd2, 0x0a, 0x6f, 0x93, 0x07, 0x44, 0x70, 0xe9, 0x14, 0x35, 0x27, 0xc7, 0x8c, 0x9c, 0x49, 0x05, 0x63, 0x4a, 0xd8, 0xfe, 0x4a, 0x58, 0xf9, 0x5b, 0xb5, 0x16, 0x65, 0xb0, 0xb9, 0x53, 0x87, 0x8e, 0x0e, 0xcd, 0xd9, 0xea, 0x24, 0x4b, 0x00, 0x02, 0x00, 0x68, 0x31, 0x1c, 0xd7, 0xff, 0xa0, 0x74, 0x78, 0xf7, 0xaa, 0xce, 0xd0, 0x8b, 0xb0, 0xa6, 0x30, 0x44, 0xd8, 0x13, 0x6a, 0x2f, 0xbf, 0x73, 0xd1, 0x6e, 0x52, 0xf2, 0x44, 0xdb, 0xab, 0x68, 0x9e, 0x6d, 0xfe, 0x72, 0x9e, 0x49, 0xff, 0xff, 0x51, 0x8d, 0x1c, 0x63, 0x98, 0xfb, 0xd2, 0x14, 0x01, 0xca, 0xbe, 0xe9, 0x21, 0x94, 0xd8, 0x6d, 0x99, 0xd1, 0xbd, 0x0b, 0x8a, 0x49, 0xe3, 0x36, 0xff, 0x9c, 0xbe, 0x1b, 0xa0, 0xbb, 0xbd, 0xe9, 0xcc, 0xe4, 0xc9, 0xcc, 0x4c, 0x00, 0x03, 0x00, 0x68, 0x30, 0xa2, 0x18, 0x77, 0x85, 0xc3, 0x99, 0x50, 0x34, 0x39, 0xfb, 0x4d, 0xe8, 0x93, 0x4d, 0x1a, 0x70, 0xe2, 0x2d, 0xaa, 0xb3, 0xd9, 0x9c, 0x99, 0x5b, 0xdb, 0xfe, 0x58, 0x1d, 0x24, 0x2a, 0x88, 0xdc, 0x5c, 0xa8, 0x82, 0x02, 0xfa, 0x61, 0xde, 0x8b, 0x93, 0xdd, 0x62, 0x3b, 0x2f, 0x7b, 0x76, 0x8c, 0xf8, 0xfb, 0xe3, 0xee, 0xa3, 0x97, 0xc5, 0x60, 0xab, 0x01, 0xc8, 0x84, 0x87, 0x7d, 0x60, 0x10, 0x9e, 0x90, 0x4d, 0x29, 0x29, 0x0c, 0xa2, 0xb0, 0x8f, 0x9c, 0x5c, 0x00, 0x04, 0x00, 0x68, 0x81, 0x15, 0x18, 0xd3, 0x6c, 0x15, 0x0a, 0xc7, 0x53, 0x9c, 0xa4, 0x18, 0xcd, 0x63, 0x0b, 0x8f, 0x33, 0xd9, 0x28, 0x41, 0x67, 0x07, 0xbd, 0x64, 0xac, 0xa5, 0xf2, 0x65, 0xe8, 0x78, 0xa0, 0xa8, 0x20, 0xf8, 0x30, 0x96, 0x3d, 0xf2, 0xbc, 0x22, 0x39, 0x7f, 0x2e, 0x99, 0x9c, 0x7c, 0xbe, 0x7d, 0xef, 0xb9, 0xf3, 0x68, 0x84, 0x8e, 0x9d, 0x87, 0xbd, 0xa3, 0xfb, 0xc1, 0xab, 0x17, 0x47, 0xeb, 0x1a, 0x33, 0x04, 0x75, 0x97, 0x8a, 0x24, 0x8c, 0x9d, 0xfe, 0x95, 0x11, 0x0f, 0x12, 0xcd, 0xe1, 0x42, 0xd9, 0xb0, 0xdc, 0xd2, 0xcb, 0x4d, 0xed, 0xcf, 0x14, 0xe7, 0x5a, 0x00, 0x05, 0x00, 0x68, 0x91, 0x67, 0x41, 0xda, 0xbd, 0x22, 0x78, 0xf3, 0x1c, 0xa8, 0x6b, 0xe9, 0x29, 0xd2, 0x33, 0x05, 0x54, 0x4a, 0xe5, 0x78, 0x70, 0xef, 0x7d, 0x81, 0x03, 0xc3, 0x41, 0x2b, 0x8c, 0x10, 0xf3, 0x05, 0x03, 0xc5, 0x75, 0x7b, 0x60, 0x9e, 0x6c, 0x80, 0x38, 0xde, 0xdc, 0x89, 0xe1, 0xa3, 0x24, 0x35, 0xb0, 0x7d, 0x3e, 0xca, 0xcd, 0x2b, 0xbc, 0x53, 0xee, 0x4d, 0x91, 0xbc, 0xca, 0x84, 0xe7, 0xde, 0x0a, 0x54, 0xdb, 0xe6, 0x28, 0x41, 0x73, 0x1c, 0x41, 0xf8, 0x13, 0x72, 0x29, 0x43, 0x05, 0x09, 0x52, 0xbe, 0x40, 0xe1, 0xac, 0xb5, 0x26, 0x30, 0x1e, 0x56, 0x00, 0x06, 0x00, 0x68, 0x90, 0x27, 0x4f, 0x32, 0x3e, 0x33, 0x42, 0x95, 0xba, 0x1e, 0xd5, 0x82, 0x5e, 0x1b, 0xa4, 0xb5, 0xae, 0x4f, 0xfb, 0x88, 0xf4, 0x45, 0x37, 0x00, 0x72, 0x5e, 0xf5, 0xce, 0x18, 0x1a, 0xf8, 0xa7, 0xa7, 0xb5, 0x3a, 0xb1, 0x87, 0xf8, 0x6e, 0x22, 0x45, 0x93, 0x9b, 0x2e, 0x42, 0xe1, 0x98, 0x8e, 0x61, 0xc1, 0xe8, 0xba, 0xa1, 0x5f, 0x99, 0x5b, 0x5d, 0x38, 0x71, 0x2a, 0x1d, 0x3c, 0xbd, 0x7f, 0xd2, 0xdb, 0x2d, 0x06, 0x75, 0xc3, 0x3d, 0xe3, 0xbc, 0x67, 0x0c, 0x48, 0x82, 0x15, 0x77, 0x47, 0xfd, 0x16, 0x1a, 0x8a, 0x9d, 0x5d, 0x00, 0x07, 0x00, 0x68, 0x8f, 0xdd, 0x22, 0xa5, 0xf6, 0x59, 0x8d, 0xf9, 0x88, 0x68, 0x4a, 0xbd, 0x99, 0x42, 0x12, 0x90, 0xa0, 0x0d, 0xe2, 0x33, 0x4c, 0xc2, 0xf8, 0xef, 0x08, 0x58, 0xef, 0x7a, 0x89, 0x28, 0xbf, 0x83, 0x1e, 0x2d, 0xf4, 0x04, 0xc1, 0xaa, 0x67, 0x16, 0x73, 0xe4, 0x0a, 0x34, 0x85, 0x01, 0x31, 0xaf, 0x57, 0x71, 0xc5, 0x73, 0x6c, 0xf7, 0xa9, 0x2d, 0xf9, 0x3e, 0x6d, 0xe8, 0x21, 0x62, 0xde, 0x9f, 0xc7, 0x96, 0xbb, 0x89, 0x78, 0x92, 0xf0, 0x54, 0x62, 0x3d, 0x3e, 0xcd, 0x33, 0xfd, 0x95, 0x81, 0x5f, 0x6e, 0xc5, 0xde, 0x92, 0x3b, 0xff, 0xba, 0x75, 0x61, 0x2c, 0x37, 0x5e, 0x49, 0x39, 0x85 };
                    byte[] buffer1 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06, 0x15, 0x01, 0x5e, 0x00, 0x08, 0x00, 0x68, 0xac, 0xac, 0xc2, 0x05, 0x2c, 0x6a, 0x52, 0xba, 0x5f, 0xf4, 0xbd, 0x56, 0xc3, 0xdf, 0x81, 0xe5, 0x20, 0x3b, 0xe5, 0x51, 0x61, 0xfc, 0x0e, 0x34, 0x5b, 0xe4, 0x8c, 0xae, 0x16, 0x70, 0x13, 0x68, 0xc5, 0xf4, 0xbe, 0xb6, 0xb0, 0x9e, 0x0d, 0xf6, 0x53, 0x51, 0x64, 0x06, 0x9e, 0x0f, 0x73, 0xff, 0x79, 0x25, 0xf0, 0xae, 0xe1, 0x79, 0x91, 0x53, 0xc5, 0xe5, 0x3d, 0xe5, 0xe9, 0x4c, 0xf2, 0x06, 0x2a, 0xd0, 0x79, 0x8e, 0x63, 0xb6, 0x3c, 0x64, 0xd8, 0x50, 0x81, 0x7a, 0xbc, 0x58, 0x82, 0x3c, 0xf1, 0x74, 0xcd, 0x72, 0x14, 0x64, 0x91, 0x7d, 0x00, 0x9e, 0xd5, 0x4b, 0x8e, 0x57, 0x00, 0x09, 0x00, 0x68, 0xaa, 0xb2, 0x06, 0x09, 0x58, 0x67, 0x15, 0xc3, 0x17, 0x6a, 0x2c, 0xd0, 0xd6, 0x50, 0x21, 0x29, 0x29, 0x1b, 0xa3, 0xa0, 0x28, 0xa9, 0xd8, 0x50, 0x83, 0xd4, 0x27, 0x16, 0xae, 0x41, 0x72, 0x53, 0x07, 0x47, 0x00, 0xae, 0x3a, 0x6a, 0x8c, 0x61, 0x15, 0x19, 0x34, 0xba, 0x3e, 0x43, 0x9c, 0x2a, 0xbf, 0xda, 0xfd, 0x0b, 0xae, 0xa4, 0x5b, 0xb5, 0xa4, 0x48, 0xca, 0xa9, 0x31, 0x0b, 0x9e, 0xf1, 0x79, 0xb0, 0xe9, 0xdd, 0xd1, 0x2b, 0xa4, 0x05, 0x29, 0xd2, 0xba, 0x9a, 0x3c, 0x57, 0x1c, 0x5b, 0x5a, 0x36, 0x5a, 0xd6, 0x4f, 0x0b, 0x54, 0x00, 0x0a, 0x00, 0x68, 0x8f, 0x06, 0xd8, 0xe7, 0xea, 0x94, 0x75, 0x3e, 0xa1, 0x1d, 0x8f, 0x0a, 0x9d, 0x84, 0xa4, 0x75, 0xcc, 0x9d, 0x9b, 0xdf, 0xc9, 0x44, 0xf7, 0x11, 0x62, 0x4f, 0x3c, 0xf7, 0x22, 0xd0, 0x97, 0x9d, 0x79, 0x7b, 0xa5, 0x40, 0xf4, 0x5d, 0x31, 0xe0, 0xcd, 0xe5, 0x87, 0x59, 0x2f, 0x4d, 0xb2, 0xb0, 0x65, 0xa4, 0xad, 0x9a, 0xd6, 0x91, 0xf5, 0x29, 0x13, 0x9e, 0xb4, 0xb7, 0x8b, 0x7a, 0x86, 0x43, 0xa7, 0x07, 0x3b, 0x0d, 0xd7, 0x11, 0x00, 0x18, 0xf3, 0x2f, 0x84, 0x6c, 0x1d, 0xb9, 0x5b, 0xe9, 0xe2, 0x94, 0x38, 0x0b, 0xc0, 0x5d, 0x06, 0x1c, 0x01, 0x5b, 0x00, 0x0b, 0x00, 0x68, 0x8d, 0x7b, 0x0d, 0x77, 0xf6, 0x3a, 0x0a, 0x3d, 0x85, 0x90, 0x19, 0x2c, 0x07, 0x52, 0x0c, 0x6e, 0xf7, 0xdd, 0xc7, 0x07, 0x11, 0x71, 0x50, 0x1f, 0xe9, 0x8d, 0x64, 0x71, 0x4c, 0x8d, 0x01, 0xa6, 0x6b, 0xb5, 0x05, 0xdd, 0x62, 0xe9, 0xb1, 0x94, 0x07, 0xca, 0x09, 0x51, 0x4e, 0xc6, 0x29, 0xd1, 0x92, 0x63, 0xa0, 0x68, 0x3c, 0x66, 0x2c, 0xa6, 0xa4, 0xc0, 0x20, 0xda, 0xd4, 0xdd, 0x2e, 0xbe, 0x48, 0xa0, 0x36, 0x9c, 0x54, 0x3d, 0x8b, 0xbb, 0x8b, 0xcd, 0xc0, 0x92, 0xd9, 0xa0, 0x44, 0x79, 0xf0, 0x0e, 0xc3, 0xcd, 0x8d, 0x7c, 0x93, 0xe8, 0x54, 0xae, 0x56, 0x00, 0x0c, 0x00, 0x68, 0x8c, 0x8a, 0xc4, 0xbf, 0x8e, 0xc8, 0x71, 0x2c, 0x62, 0x9e, 0x79, 0x93, 0x38, 0xb9, 0xdb, 0x34, 0x83, 0x2b, 0x41, 0xf1, 0x4c, 0xe8, 0x7b, 0x1e, 0x72, 0xd9, 0xd4, 0x22, 0x49, 0x73, 0xe2, 0x6a, 0x03, 0xfd, 0x29, 0x43, 0x1d, 0xdc, 0x50, 0x60, 0x28, 0x56, 0x77, 0xfa, 0xaa, 0xf9, 0x47, 0xfa, 0xa5, 0x12, 0x42, 0x69, 0xd3, 0xd9, 0xc7, 0x41, 0xe8, 0x3a, 0x65, 0xef, 0x60, 0xf6, 0x58, 0x12, 0x73, 0x11, 0x68, 0x92, 0xe7, 0x8a, 0x66, 0x8a, 0x6a, 0xa5, 0x9f, 0x62, 0x9e, 0x51, 0x19, 0xaf, 0x61, 0x27, 0xe4, 0xa5, 0x4c, 0x5f, 0x00, 0x0d, 0x00, 0x68, 0x8f, 0xf4, 0x1e, 0xc0, 0xa7, 0x39, 0x1b, 0x0b, 0xa2, 0x1f, 0xf4, 0xbf, 0x80, 0x89, 0x92, 0x64, 0xdd, 0xd5, 0x97, 0x1f, 0xec, 0xc8, 0xe1, 0xdc, 0xcd, 0xd6, 0xb6, 0x1c, 0xe3, 0x80, 0x27, 0xb1, 0xb6, 0x63, 0x6c, 0xf3, 0x04, 0x39, 0xe6, 0x3c, 0x23, 0xde, 0x08, 0x32, 0x6c, 0xb2, 0xe2, 0x7e, 0x5a, 0xe0, 0x6e, 0x77, 0x3c, 0x09, 0x12, 0x08, 0x51, 0x4b, 0x9b, 0xe4, 0x87, 0x92, 0x60, 0x92, 0x92, 0x43, 0x8e, 0x12, 0xc3, 0x6a, 0x8e, 0xd4, 0xc1, 0xfd, 0xa6, 0x6b, 0x24, 0x76, 0x4a, 0x09, 0x48, 0x9a, 0x7b, 0x07, 0xac, 0x39, 0x4a, 0xf5, 0xa4, 0x58, 0x41, 0x7d, 0x66, 0xda, 0x8c, 0x5b, 0x76, 0x48 };
                    byte[] buffer2 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06, 0x08, 0x01, 0x50, 0x00, 0x0e, 0x00, 0x68, 0x90, 0xe5, 0x82, 0x5c, 0xb4, 0xdf, 0x98, 0xe6, 0x46, 0x54, 0x83, 0xc7, 0x6c, 0x67, 0x67, 0xc5, 0x91, 0x90, 0x51, 0xf2, 0x18, 0xb6, 0x25, 0xcc, 0xb1, 0xa1, 0xb6, 0x6f, 0xaf, 0x42, 0xde, 0x1d, 0x7b, 0x4c, 0x97, 0xd0, 0x48, 0x71, 0x7e, 0xe9, 0xac, 0x38, 0x78, 0x14, 0x47, 0xae, 0x17, 0x7c, 0x9f, 0x6b, 0x05, 0x8a, 0x28, 0x2e, 0x46, 0xdc, 0x02, 0xc8, 0x5b, 0xb5, 0xe7, 0x1a, 0x87, 0x70, 0x44, 0x08, 0xd5, 0xad, 0xd1, 0xc8, 0xb1, 0xb1, 0x65, 0x24, 0xe8, 0xa4, 0x60, 0x46, 0x64, 0x54, 0x00, 0x0f, 0x00, 0x68, 0x90, 0xd7, 0x53, 0x4f, 0xf7, 0x40, 0xeb, 0xb5, 0x32, 0x91, 0xb7, 0x35, 0x0d, 0xe7, 0xac, 0xf0, 0x6d, 0x87, 0x9b, 0xf7, 0xe8, 0xb0, 0x5f, 0x04, 0xcb, 0x1a, 0x1c, 0x87, 0x9c, 0x09, 0x5b, 0xce, 0x64, 0x8a, 0xe1, 0x56, 0x89, 0xff, 0xd2, 0x25, 0xee, 0x88, 0x55, 0x7b, 0x12, 0xcf, 0xb8, 0xb0, 0xe5, 0x30, 0xf2, 0x0f, 0x6c, 0x2d, 0x67, 0xd2, 0xb0, 0xbd, 0x29, 0x51, 0x45, 0x2c, 0x74, 0x31, 0x1c, 0x9e, 0x9f, 0x30, 0x38, 0x44, 0x83, 0xef, 0xd1, 0xb1, 0x2b, 0x69, 0x52, 0x6e, 0xb4, 0xbe, 0x48, 0x3d, 0x0a, 0x58, 0x00, 0x10, 0x00, 0x68, 0x90, 0x5b, 0x3c, 0xf0, 0xe1, 0x46, 0xb6, 0x21, 0xfb, 0x0e, 0x1d, 0x56, 0x89, 0xce, 0xa6, 0xeb, 0xb2, 0xdd, 0xc5, 0xb1, 0xc5, 0xdb, 0x0e, 0xe9, 0xf0, 0x90, 0x5b, 0x4b, 0x17, 0x5f, 0x00, 0x76, 0x97, 0xc8, 0xbd, 0xf5, 0x57, 0x27, 0x3d, 0x20, 0x37, 0x73, 0x67, 0x1f, 0x3d, 0x86, 0x7c, 0xf0, 0x3c, 0xe1, 0x16, 0x30, 0x5e, 0xc9, 0x40, 0xc9, 0x87, 0x9d, 0x71, 0x2d, 0x19, 0xef, 0x3a, 0xd6, 0x9f, 0x82, 0xa6, 0x39, 0x0f, 0xc6, 0xca, 0x45, 0x45, 0xa8, 0x5a, 0x77, 0x18, 0xf2, 0x13, 0xa9, 0x1d, 0xe6, 0x10, 0x8d, 0x4a, 0xa5, 0xf6, 0x0b, 0xc0, 0x5d, 0x06, 0xb6, 0x00, 0x56, 0x00, 0x11, 0x00, 0x68, 0x90, 0x56, 0x1f, 0xcc, 0xc9, 0x14, 0x38, 0x5c, 0x9b, 0xe1, 0x4c, 0x66, 0xdd, 0x40, 0x71, 0x8c, 0x41, 0x8a, 0xbd, 0xea, 0x5a, 0xb9, 0x38, 0xf1, 0x0d, 0x72, 0xd0, 0xa1, 0x32, 0x0c, 0x5f, 0x36, 0x72, 0xba, 0xab, 0x8c, 0x5d, 0x12, 0xdd, 0x77, 0x9c, 0x9d, 0xb9, 0x29, 0x3c, 0x0c, 0x1a, 0x72, 0x69, 0x74, 0x01, 0xbf, 0xc8, 0x10, 0x37, 0xcb, 0x62, 0x25, 0xcb, 0x9d, 0xf2, 0xe0, 0x27, 0x33, 0x24, 0xa5, 0xeb, 0x35, 0xa1, 0x7d, 0x92, 0x95, 0xbb, 0x2f, 0xd5, 0x26, 0x5d, 0x59, 0x2c, 0xb8, 0x45, 0xdc, 0xa8, 0xbf, 0xf0, 0x58, 0x00, 0x12, 0x00, 0x68, 0x90, 0x5b, 0xea, 0xd7, 0xe9, 0xa6, 0x68, 0x1e, 0xfd, 0xc0, 0x26, 0xa1, 0x22, 0x57, 0x43, 0x7a, 0x08, 0xa0, 0xf5, 0xc2, 0x36, 0x1b, 0x69, 0x29, 0xe5, 0x55, 0xe2, 0x52, 0xda, 0xc6, 0xa9, 0x0f, 0xbf, 0x20, 0xec, 0x46, 0x66, 0xbb, 0xc8, 0x70, 0x70, 0x0f, 0xce, 0xac, 0xd7, 0x94, 0x79, 0x3b, 0x6b, 0x04, 0x42, 0x29, 0xdf, 0x75, 0x9a, 0x68, 0x6c, 0x3e, 0xdb, 0x84, 0xc3, 0x3e, 0x64, 0x56, 0xc1, 0x36, 0x14, 0xda, 0x0f, 0xfa, 0x5c, 0xa7, 0xe5, 0x9d, 0xf6, 0x93, 0x3a, 0xdc, 0xa2, 0x11, 0xa7, 0xf4, 0x52, 0x0a, 0x22, 0x8f, 0x8d, 0xd8, 0x10, 0x58, 0xc7 };
                    byte[] buffer3 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06, 0xfb, 0x00, 0x4c, 0x00, 0x13, 0x00, 0x68, 0x8e, 0xf6, 0x5a, 0xe3, 0xdd, 0x4a, 0x27, 0x33, 0x31, 0x54, 0xa7, 0x6f, 0xb4, 0xb6, 0x70, 0xa2, 0xba, 0x34, 0x06, 0xb1, 0xdf, 0x9b, 0x2d, 0x59, 0x67, 0x0c, 0x1b, 0xb5, 0x95, 0xe5, 0xc8, 0x63, 0xf3, 0x8f, 0x90, 0xed, 0x4c, 0x93, 0x3e, 0x0e, 0x7c, 0x62, 0x49, 0x48, 0x88, 0x16, 0x62, 0xde, 0xfb, 0x8c, 0x46, 0x1a, 0x35, 0x08, 0xda, 0x5e, 0xe4, 0x3e, 0xf1, 0x48, 0x46, 0x3b, 0x83, 0x8e, 0x08, 0xea, 0x6f, 0x90, 0xf7, 0x8a, 0xae, 0x64, 0x92, 0xbc, 0xf0, 0x54, 0x00, 0x14, 0x00, 0x68, 0x8c, 0xb3, 0x92, 0x5a, 0x63, 0xdd, 0x4a, 0x0c, 0x40, 0x1f, 0xcb, 0xf5, 0x98, 0x1a, 0xf7, 0xb0, 0x24, 0xa2, 0x8b, 0x5a, 0x27, 0x0a, 0x44, 0x93, 0x04, 0x68, 0x7b, 0x7c, 0x7e, 0x9e, 0x0d, 0x9b, 0xc9, 0x12, 0x93, 0x95, 0xae, 0xef, 0x15, 0xda, 0xf5, 0x96, 0xf3, 0xd7, 0xe0, 0xac, 0x05, 0x1d, 0x0f, 0x7a, 0xb1, 0x5c, 0xae, 0x91, 0xfb, 0x3d, 0x84, 0x05, 0xd3, 0xf1, 0xd1, 0xb8, 0x39, 0x9c, 0xf0, 0x2f, 0x6e, 0xd0, 0x02, 0xe1, 0xc2, 0x51, 0x3f, 0x1e, 0x47, 0xe8, 0x24, 0x51, 0x94, 0x72, 0x97, 0xb3, 0x55, 0x4f, 0x00, 0x15, 0x00, 0x68, 0x8e, 0xfc, 0x54, 0x57, 0x25, 0xc9, 0xc9, 0x39, 0xe1, 0x3f, 0xff, 0xf9, 0x0e, 0xdd, 0xe4, 0xa3, 0x63, 0x4d, 0x54, 0x96, 0xd3, 0x4d, 0x67, 0x2b, 0xa4, 0x2b, 0x17, 0xcd, 0x6f, 0x84, 0x62, 0x64, 0xf1, 0xef, 0xc4, 0x78, 0x16, 0x08, 0x56, 0xa1, 0x8e, 0x71, 0x65, 0x1f, 0x0e, 0x21, 0xa9, 0x1c, 0x47, 0x22, 0xd4, 0xfc, 0x15, 0x46, 0x45, 0x1b, 0xff, 0x7e, 0xb3, 0xd5, 0x7e, 0x78, 0x4a, 0xaf, 0xb4, 0x23, 0xb1, 0x91, 0x84, 0x35, 0x16, 0x0f, 0x9b, 0xdc, 0x80, 0x00, 0x6a, 0x43, 0x54, 0x9c, 0x15, 0xab };
                    byte[] buffer4 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06, 0xe2, 0x00, 0x4a, 0x00, 0x16, 0x00, 0x68, 0x37, 0xdb, 0x97, 0x26, 0x0e, 0xc5, 0xd0, 0xa9, 0xb8, 0xdf, 0x05, 0x8f, 0xf3, 0xc0, 0xba, 0x72, 0x72, 0x57, 0x17, 0x49, 0x61, 0x96, 0x06, 0xdf, 0xfb, 0x95, 0xe6, 0x1d, 0xb0, 0xd7, 0x57, 0xf8, 0x2b, 0xaa, 0x80, 0xaa, 0x81, 0xad, 0x13, 0x4a, 0x58, 0x6d, 0x00, 0x8a, 0x14, 0xe6, 0x01, 0x0f, 0x68, 0xcd, 0x0e, 0xc4, 0x50, 0x4d, 0x9a, 0xa7, 0x70, 0x6d, 0x3f, 0x18, 0xc8, 0x31, 0x44, 0xb8, 0x31, 0x17, 0xb2, 0x38, 0xe8, 0x85, 0xef, 0x4e, 0x94, 0x48, 0x00, 0x17, 0x00, 0x68, 0x37, 0x1f, 0x5e, 0xa0, 0x2c, 0x25, 0x87, 0x86, 0x0d, 0x7c, 0xba, 0x51, 0xe2, 0xa8, 0x37, 0x36, 0x05, 0x7d, 0xa3, 0xc2, 0x1e, 0xa8, 0x44, 0x1f, 0xa3, 0xcc, 0x46, 0xb7, 0x4e, 0xac, 0x87, 0x17, 0x3c, 0x0b, 0x84, 0x1d, 0x79, 0x71, 0xcd, 0x7e, 0x2b, 0xe3, 0xc6, 0x11, 0x7b, 0x0e, 0x19, 0xb6, 0xa6, 0xb3, 0x37, 0x1a, 0xd3, 0x5c, 0xb8, 0xa7, 0x20, 0xe1, 0x19, 0xcd, 0xe6, 0xbc, 0x7a, 0xcf, 0xf8, 0xd5, 0xdf, 0x6f, 0x2b, 0x73, 0xa4, 0x44, 0x00, 0x18, 0x00, 0x68, 0x33, 0x03, 0xa4, 0x4a, 0x73, 0x43, 0xaf, 0x09, 0x1e, 0x08, 0xf9, 0x8d, 0xda, 0x01, 0xfb, 0xce, 0x41, 0x25, 0x41, 0x26, 0xa3, 0xea, 0x08, 0x12, 0x61, 0x09, 0x93, 0xf3, 0x82, 0x56, 0xe6, 0xfa, 0xb6, 0x16, 0x33, 0x7c, 0xfb, 0xb3, 0x7f, 0x46, 0x18, 0x80, 0x1e, 0x35, 0x62, 0x97, 0xdb, 0x48, 0x44, 0x01, 0x9d, 0x76, 0x5c, 0x00, 0xc2, 0xfe, 0xd7, 0x81, 0xb8, 0xc2, 0x7a, 0xea, 0x7e, 0x56, 0x84, 0xe7, 0x53, 0x0b, 0xc0, 0x5d, 0x06, 0xe9, 0x00, 0x49, 0x00, 0x19, 0x00, 0x68, 0x32, 0xf5, 0x11, 0x55, 0x05, 0x9b, 0x7f, 0x2c, 0xe7, 0x22, 0x27, 0x30, 0x57, 0x90, 0x97, 0xcd, 0xe7, 0xdb, 0xd8, 0x9b, 0x08, 0x18, 0xba, 0xc6, 0xcc, 0x39, 0x90, 0x8c, 0xeb, 0x4e, 0x11, 0x6b, 0x6d, 0x70, 0xa5, 0x9f, 0x84, 0xbf, 0x07, 0x5b, 0x17, 0xb6, 0x38, 0x31, 0x2d, 0xb5, 0xf5, 0x33, 0xcc, 0x74, 0xe6, 0x8a, 0xb9, 0x5b, 0x2f, 0x9f, 0x3d, 0x0a, 0xd7, 0xff, 0x50, 0x3d, 0x5f, 0xa4, 0x0b, 0x4c, 0x0e, 0x27, 0xb7, 0xdd, 0xb8, 0x8a, 0x4a, 0x00, 0x1a, 0x00, 0x68, 0x31, 0x1a, 0xed, 0x6b, 0x5c, 0x59, 0x5f, 0x46, 0x61, 0xaf, 0x7a, 0x7d, 0x34, 0x7a, 0x22, 0x9b, 0x3f, 0xe5, 0x46, 0xe4, 0x0f, 0xcf, 0x8c, 0x72, 0x44, 0x3c, 0x24, 0xa9, 0x47, 0x8e, 0xb2, 0xaa, 0xda, 0x6d, 0x79, 0x62, 0x5c, 0xba, 0xdb, 0xd9, 0x6b, 0xda, 0x63, 0xc4, 0xf8, 0x25, 0x60, 0xf2, 0x0d, 0x46, 0xe0, 0x57, 0x63, 0xb4, 0x77, 0x1d, 0x09, 0x8e, 0x6f, 0x01, 0x8c, 0x0a, 0xae, 0xbd, 0x34, 0x23, 0x9c, 0xd5, 0xc1, 0xfa, 0xab, 0x95, 0xd3, 0x4a, 0x00, 0x1b, 0x00, 0x68, 0x31, 0x1b, 0xef, 0x6a, 0xc0, 0xea, 0xa0, 0xde, 0x6e, 0x01, 0x67, 0xee, 0xcd, 0x6b, 0x67, 0xde, 0xcb, 0x4a, 0x35, 0x63, 0x9a, 0x09, 0xd9, 0x99, 0x65, 0xd2, 0x44, 0x4d, 0x45, 0x88, 0x66, 0x6c, 0x5a, 0x2d, 0x3f, 0x2a, 0x17, 0xb6, 0x1b, 0x18, 0xd6, 0xcc, 0x52, 0x96, 0xc7, 0x31, 0x5a, 0xec, 0x54, 0x1a, 0x28, 0x7b, 0x13, 0x55, 0xc9, 0x60, 0x65, 0x18, 0x13, 0x5c, 0x36, 0xb3, 0xd2, 0x84, 0x8c, 0x36, 0xfe, 0x0f, 0xd2, 0x04, 0x38, 0x0c, 0x5d, 0xd1, 0xf4, 0xc6, 0x42 };
                    byte[] buffer5 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06, 0xee, 0x00, 0x54, 0x00, 0x1c, 0x00, 0x68, 0x81, 0x38, 0x35, 0x54, 0x57, 0x7b, 0x03, 0x77, 0xd9, 0xbf, 0xb6, 0x1a, 0x9a, 0x34, 0xc1, 0xe9, 0xf0, 0x6b, 0xb2, 0xf4, 0x20, 0x75, 0x31, 0x18, 0x0f, 0xc1, 0xe7, 0xd6, 0x39, 0xd8, 0x31, 0xf5, 0x70, 0xa3, 0xa9, 0x27, 0x09, 0xeb, 0xe9, 0x42, 0x5c, 0x9d, 0xcb, 0xf1, 0x77, 0x00, 0x6e, 0x75, 0xf6, 0xd9, 0xb8, 0x29, 0x6d, 0x86, 0xc4, 0xd0, 0x8e, 0x10, 0x88, 0xfc, 0xdf, 0xea, 0x0a, 0xee, 0x77, 0xdc, 0xd1, 0x19, 0xac, 0xf9, 0x4e, 0x08, 0x8b, 0x4a, 0x82, 0x7a, 0xb0, 0x23, 0xa5, 0xab, 0xee, 0x63, 0x06, 0x45, 0x00, 0x1d, 0x00, 0x68, 0x34, 0xb7, 0x53, 0x18, 0xb6, 0xd6, 0xe4, 0x7e, 0xa7, 0x6d, 0x30, 0x4e, 0x37, 0x3f, 0x42, 0x9b, 0x3f, 0x27, 0x59, 0xa0, 0xba, 0xb8, 0x46, 0x93, 0x74, 0xd7, 0xd1, 0xce, 0x52, 0xc4, 0xb5, 0x02, 0xd4, 0x99, 0x6c, 0x51, 0x3a, 0x3a, 0x24, 0xa2, 0xbe, 0xde, 0x82, 0xd0, 0xb7, 0x44, 0x86, 0x9b, 0x71, 0x3d, 0xba, 0x79, 0x5d, 0xa3, 0x07, 0xcf, 0x4a, 0xd8, 0xff, 0x0c, 0x8e, 0x8d, 0x8f, 0x97, 0xa9, 0x7f, 0xfa, 0xcb, 0x49, 0x00, 0x1e, 0x00, 0x68, 0x33, 0x31, 0xc5, 0x66, 0xe5, 0x3e, 0x33, 0xee, 0xd9, 0xf6, 0xe0, 0x99, 0x4c, 0xfc, 0x09, 0xf1, 0x05, 0x07, 0x7f, 0x21, 0xbf, 0xdc, 0x4d, 0x98, 0x9a, 0xf3, 0xe9, 0xdd, 0xbe, 0xfb, 0x68, 0x1c, 0x08, 0xd8, 0xfc, 0x78, 0x20, 0xdc, 0x4c, 0x52, 0xe5, 0xc3, 0x77, 0xde, 0xd4, 0x29, 0x78, 0xcf, 0x52, 0xe2, 0xb5, 0x3a, 0x32, 0x7f, 0xd3, 0xd4, 0x8c, 0x86, 0x1b, 0x18, 0xe3, 0x4f, 0xa8, 0x48, 0x18, 0x6a, 0x01, 0x20, 0x5a, 0x1c, 0x59, 0x54, 0x0b, 0xc0, 0x5d, 0x06, 0xe7, 0x00, 0x48, 0x00, 0x1f, 0x00, 0x68, 0x33, 0x07, 0x9e, 0x41, 0x9b, 0x62, 0x33, 0x5b, 0x70, 0xf4, 0x1a, 0xec, 0xe3, 0xd4, 0xc9, 0xec, 0x90, 0xc2, 0xf3, 0x85, 0x0d, 0xe1, 0xae, 0x6a, 0x71, 0x4a, 0x9a, 0x08, 0x9e, 0x6e, 0xd0, 0x3b, 0xac, 0x26, 0xd2, 0x4a, 0x06, 0xe9, 0x37, 0xc3, 0x58, 0xad, 0xbb, 0x97, 0x66, 0x0b, 0x58, 0x93, 0xdd, 0xd7, 0x6f, 0xf5, 0xc9, 0x75, 0x8e, 0xf5, 0x53, 0x58, 0xf2, 0x73, 0x63, 0x23, 0xac, 0x80, 0x60, 0x52, 0x90, 0x85, 0x39, 0xa9, 0x8c, 0x4b, 0x00, 0x20, 0x00, 0x68, 0x33, 0x03, 0xd4, 0x52, 0x2b, 0x6d, 0x69, 0xed, 0x92, 0x45, 0x49, 0x04, 0xd3, 0x38, 0x4b, 0x5d, 0xf1, 0x14, 0xea, 0x33, 0x65, 0x83, 0x83, 0xac, 0x3f, 0x46, 0xb4, 0x84, 0x06, 0xfa, 0xeb, 0xba, 0xe4, 0xf2, 0xc1, 0x42, 0x82, 0xee, 0xad, 0xff, 0xc3, 0xa8, 0xb3, 0xa2, 0x1b, 0x99, 0xcf, 0x5d, 0x43, 0xe8, 0x69, 0xa7, 0xe1, 0x54, 0x90, 0x1c, 0xff, 0x77, 0x08, 0x99, 0x29, 0x6d, 0xdd, 0x45, 0xad, 0x76, 0xa6, 0xc7, 0x60, 0x7e, 0x26, 0x3e, 0x49, 0xdb, 0x48, 0x00, 0x21, 0x00, 0x68, 0x32, 0xce, 0x91, 0xdb, 0x79, 0xde, 0x7c, 0xb5, 0x57, 0x4e, 0xd1, 0x7f, 0x63, 0xcd, 0xa4, 0xd1, 0x31, 0x57, 0x69, 0x20, 0x23, 0x03, 0xca, 0xbb, 0x8b, 0x42, 0x50, 0x94, 0x3f, 0xc6, 0x51, 0x29, 0x2d, 0xde, 0x0f, 0x07, 0x2f, 0xff, 0xa7, 0x9e, 0x07, 0x8e, 0xd8, 0x85, 0x9e, 0xe4, 0x8f, 0x25, 0x06, 0xef, 0x08, 0x9e, 0x89, 0x6c, 0x28, 0x8b, 0xb2, 0xe3, 0xe0, 0xea, 0xa2, 0xaf, 0xbf, 0x39, 0xbe, 0xcd, 0xaa, 0xcb, 0x15, 0x1a, 0x5c, 0xa6, 0xd8, 0x95, 0xc2 };
                    byte[] buffer6 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06, 0xf2, 0x00, 0x48, 0x00, 0x22, 0x00, 0x68, 0x31, 0x1e, 0xd4, 0xa8, 0x85, 0xea, 0x74, 0xd8, 0x04, 0x66, 0x47, 0x8b, 0x41, 0x41, 0xef, 0xa1, 0xaa, 0xda, 0x98, 0xa5, 0x4f, 0xe5, 0xaf, 0x1c, 0xcc, 0xb0, 0xdc, 0x9b, 0x44, 0x06, 0x69, 0xa0, 0x10, 0xd7, 0x65, 0x8b, 0xf7, 0x93, 0x3f, 0x7d, 0x60, 0x5c, 0x88, 0xde, 0x18, 0xd5, 0x24, 0x91, 0xe3, 0x8e, 0x6b, 0x13, 0xf1, 0xb8, 0xcb, 0xb3, 0x2d, 0x66, 0x89, 0x2d, 0x6b, 0x4a, 0xf5, 0x2e, 0x82, 0x9c, 0x18, 0x21, 0x3a, 0x04, 0x43, 0x4d, 0x00, 0x23, 0x00, 0x68, 0x31, 0x20, 0xa6, 0x06, 0xa1, 0xa9, 0x2d, 0x89, 0x8f, 0x64, 0x3a, 0xdb, 0xbf, 0x80, 0x37, 0xed, 0x76, 0xd5, 0x89, 0x38, 0xcb, 0x19, 0xd3, 0x22, 0x0f, 0x5e, 0x7f, 0x20, 0x95, 0x54, 0x13, 0xce, 0x4a, 0x12, 0x0e, 0xf3, 0x77, 0x2f, 0x57, 0xc2, 0x65, 0x10, 0x39, 0xaa, 0xee, 0x77, 0xca, 0x1f, 0x37, 0xf2, 0x57, 0x8b, 0xee, 0xf4, 0xb5, 0xb7, 0x86, 0x34, 0x0f, 0x44, 0xeb, 0x52, 0xbb, 0x9d, 0xd7, 0xcc, 0x53, 0x27, 0x73, 0xff, 0x22, 0xda, 0x11, 0x0e, 0x62, 0x94, 0x51, 0x00, 0x24, 0x00, 0x68, 0x31, 0x1e, 0xd4, 0x30, 0x14, 0x33, 0xa9, 0x62, 0xa3, 0x87, 0x7c, 0x58, 0xe9, 0x30, 0xf2, 0x18, 0x17, 0x37, 0xc2, 0x39, 0xf3, 0x79, 0x5e, 0x02, 0x56, 0x3c, 0xeb, 0x56, 0xbc, 0x38, 0xb7, 0xd1, 0xf7, 0x48, 0x15, 0xda, 0x5c, 0xec, 0x30, 0x58, 0xc6, 0x15, 0xb6, 0xd0, 0x75, 0x12, 0xc5, 0xde, 0x64, 0xa4, 0xc1, 0x96, 0xf9, 0x98, 0x8a, 0x74, 0xd4, 0x76, 0x4c, 0xb6, 0x8b, 0xea, 0xb1, 0xe1, 0x7a, 0x90, 0x3c, 0x76, 0xf1, 0xd5, 0xdf, 0x70, 0xa2, 0xd3, 0xfd, 0xa9, 0xe6, 0xbb, 0x03, 0x18, 0x0b, 0xc0, 0x5d, 0x06, 0x63, 0x00, 0x4e, 0x00, 0x25, 0x00, 0x68, 0x31, 0x1f, 0x81, 0x15, 0x30, 0x0b, 0x41, 0xb6, 0x73, 0x8a, 0x5b, 0x3f, 0x51, 0xfb, 0x22, 0xa2, 0xda, 0x40, 0xe9, 0x53, 0xf9, 0x41, 0x32, 0xb7, 0xf3, 0xc4, 0x5e, 0xb5, 0xce, 0x37, 0xc6, 0xe4, 0x49, 0x8b, 0xd9, 0x9e, 0x5d, 0x83, 0xbc, 0x21, 0x4e, 0x27, 0x39, 0x9f, 0xcc, 0x9c, 0x67, 0x8e, 0x7d, 0x1c, 0xff, 0xdc, 0x7a, 0xfe, 0x22, 0xa0, 0x7b, 0x65, 0x61, 0x8b, 0xbf, 0x59, 0x24, 0x19, 0xab, 0x3e, 0xf2, 0x7f, 0x8a, 0xef, 0xca, 0x4e, 0x3f, 0x20, 0x62, 0xc5, 0x8d, 0x01, 0x00, 0x26, 0x00, 0x68, 0x01, 0x00, 0x27, 0x00, 0x68, 0x01, 0x00, 0x28, 0x00, 0x68, 0xff, 0xff, 0x75, 0xd9, 0x21, 0x79 };
                    byte[] buffer7 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x00, 0xee, 0x02, 0x8c, 0xf6, 0x8f, 0x2d };
                    byte[] buffer8 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x00, 0xee, 0x02, 0x8c, 0xf6, 0x8f, 0x2d };
                    byte[] buffer9 = new byte[] { 0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x00, 0xee, 0x02, 0x8c, 0xf6, 0x8f, 0x2d };

                    if (counterX == 0)
                    {
                        data = buffer0;
                    }
                    if (counterX == 1)
                    {
                        data = buffer1;
                    }
                    if (counterX == 2)
                    {
                        data = buffer2;
                    }
                    if (counterX == 3)
                    {
                        data = buffer3;
                    }
                    if (counterX == 4)
                    {
                        data = buffer4;
                    }
                    if (counterX == 5)
                    {
                        data = buffer5;
                    }
                    if (counterX == 6)
                    {
                        data = buffer6;
                    }
                    if (counterX == 7)
                    {
                        data = buffer7;
                    }
                    if (counterX == 8)
                    {
                        data = buffer8;
                    }
                    if (counterX == 9)
                    {
                        data = buffer9;
                    }
                    counterX++;
                    if (counterX == 10)
                    {
                        counterX = 0;
                    }

                    // UUEncode data
                    data = Encoding.UTF8.GetBytes(Convert.ToBase64String(data));
                }
                else
                {
                    // ************************************************************************************************
                    // Grab audio
                    // Wrap in header;  0x57, 0x5c, 0x35, 0x00, 0x01, 0x00, 0x10, 0x01, 0x0b, 0xc0, 0x5d, 0x06
                    // Add CRC

                    int MaxSize = 160 * 4;

                    var bufferAudioSamples = wv.GetClipBytes(0, i, MaxSize);

                    byte[] nComp;
                    int    size = nEncoder.EncodeSamplesToFrame(bufferAudioSamples, out nComp);

                    string st = "";
                    foreach (byte X in nComp)
                    {
                        st = st + String.Format("0x{0:X2}", X) + ", ";
                    }
                    Console.WriteLine("Compressed " + i / MaxSize + " Size=" + size + " -> " + st);

                    // UUEncode
                    data = Encoding.UTF8.GetBytes(Convert.ToBase64String(nComp, 0, size));

                    i += MaxSize;

                    // ************************************************************************************************
                }


                // TEXT/HTML for UUEncodeded data; in UTF8 format
                resp.ContentType = "text/html";
                //resp.ContentType = "application/octet-stream";
                resp.ContentEncoding = Encoding.UTF8;
                resp.ContentLength64 = data.LongLength;


                // Write out to the response stream (asynchronously), then close it
                await resp.OutputStream.WriteAsync(data, 0, data.Length);

                resp.Close();
            }
        }