My Audio Units Manager DOES NOT exist!... please help.

I recently installed Logic Studio 8. When I first ran it the Audio Units Manager scanned for all of my AU plugins and it did a 'you must hold down the power button and power off' crash when it got about halfway through my 228 AU plugins that have worked fine in Logic 7 for a long time.
When i re-booted the mac and Logic 8 i had no AU plugins and when i go to Preferences menu / Audio Units Manager... nothing happens. I SIMPLY HAVE NO AUDIO UNITS MANAGER.
I cant access it from Waveburner 1.5 either but all of my AU plugins still work fine in Logic Pro 7.2.3
I have tried re-installing Logic Pro 8 and deleted it's preferences and associated receipts and repaired permissions to no avail.... I just cant load my Audio Units Manager
When i click on it in the preferences menu it's as if nothing happens.
Somebody please help... the only solution i see left is a complete re-install?
Mac Pro 8 Core 3ghz

Try creating a new user account and seeing if it works in that account.
Try renaming your ~\Library\Caches folder to Caches-old, rebooting, and see if it works them.
Make sure you run some disk utils - it's rare for an application or plugin to cause a kernal panic because they don't generally have that level of access to the system, so it might be a sign of something else funky on your system (drivers, or system things).

Similar Messages

  • Error: Javax.mail does not exist, please help

    I have copies mail.jar and activation.jar in the classpath directory as instructed, then try to compile but got the below error: package javax.mail does not exist
    please help.
    G:\CRD>javac SendMailBean.java
    SendMailBean.java:22: package javax.mail does not exist
    import javax.mail.*; //JavaMail packages
    ^
    SendMailBean.java:23: package javax.mail.internet does not exist
    import javax.mail.internet.*; //JavaMail Internet packages
    ^
    SendMailBean.java:43: cannot resolve symbol
    symbol : class Session
    location: class SendMailBean
    Session l_session = Session.getDefaultInstance(l_props, null);
    ^
    SendMailBean.java:43: cannot resolve symbol
    symbol : variable Session
    location: class SendMailBean
    Session l_session = Session.getDefaultInstance(l_props, null);
    ^
    SendMailBean.java:48: cannot resolve symbol
    symbol : class MimeMessage
    location: class SendMailBean
    MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
    ^
    SendMailBean.java:48: cannot resolve symbol
    symbol : class MimeMessage
    location: class SendMailBean
    MimeMessage l_msg = new MimeMessage(l_session); // Create a New message
    ^
    SendMailBean.java:50: cannot resolve symbol
    symbol : class InternetAddress
    location: class SendMailBean
    l_msg.setFrom(new InternetAddress(p_from)); // Set the From address
    ^
    SendMailBean.java:53: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.TO,
    ^
    SendMailBean.java:54: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_to, false));
    ^
    SendMailBean.java:57: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.CC,
    ^
    SendMailBean.java:58: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_cc, false));
    ^
    SendMailBean.java:62: package Message does not exist
    l_msg.setRecipients(Message.RecipientType.BCC,
    ^
    SendMailBean.java:63: cannot resolve symbol
    symbol : variable InternetAddress
    location: class SendMailBean
    InternetAddress.parse(p_bcc, false));
    ^
    SendMailBean.java:68: cannot resolve symbol
    symbol : class MimeBodyPart
    location: class SendMailBean
    MimeBodyPart l_mbp = new MimeBodyPart();
    ^
    SendMailBean.java:68: cannot resolve symbol
    symbol : class MimeBodyPart
    location: class SendMailBean
    MimeBodyPart l_mbp = new MimeBodyPart();
    ^
    SendMailBean.java:72: cannot resolve symbol
    symbol : class Multipart
    location: class SendMailBean
    Multipart l_mp = new MimeMultipart();
    ^
    SendMailBean.java:72: cannot resolve symbol
    symbol : class MimeMultipart
    location: class SendMailBean
    Multipart l_mp = new MimeMultipart();
    ^
    SendMailBean.java:83: cannot resolve symbol
    symbol : variable Transport
    location: class SendMailBean
    Transport.send(l_msg);
    ^
    SendMailBean.java:98: cannot resolve symbol
    symbol : class MessagingException
    location: class SendMailBean
    } catch (MessagingException mex) { // Trap the MessagingException Error
    ^
    19 errors

    Another person who doesn't understand how to set CLASSPATH.
    Move those JARs into the same directory as your SendMailBean.java and do it like this:
    javac -classpath .;mail.jar;activation.jar -d . *.java
    java -classpath .;mail.jar;activation.jar SendMailBeanRead how to set CLASSPATH properly:
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html

  • Error message ORA-27101 shared memory realm does not exist,Please help me

    My oracle(oracle 8.1.6) is installed successfully,But when I connect to the database it shows me the error:
    ORA-27101 shared memory realm does not exist.
    How can I deal with it?Please help me.

    The OTN Customer Service - Feedback forum answers questions relating to the OTN site and other customer service issues. It does not answer technical or installation questions. Please post your topic in the appropriate forum.
    Best Regards, OTN Team

  • ORA-27101: shared memory realm does not exist - Please help!!!!!

    OS : Win 2000 server
    After good installation, when I want to connect instance ORCL by using SQLPLUS worksheet (as system/manager), I got this 2 error messages :
    ORA - 01034 : Oracle not available
    ORA - 27101 : shared memory realm does not exist
    In regedit: Ora_home = "my true path to Orahome directory
    Default_SID = ORCL
    Thank you for help !!!!!!

    Can you connect using plain SQL*Plus (sqlplus.exe)? Your database may not be started, try this:
    c:\sqlplus /nolog
    SQL>connect / as sysdba
    SQL>startup
    Then try connecting as one of the default users:
    SQL>connect scott/tiger

  • Javax.servlet does not exist  (please help)

    i was going to try my first example nad follwing head first
    package com.myweb.trying;
    import  javax.servlet.*;
    import  javax.servlet.http.*;
    import  java.io.*;
    public class Serv1 extends HttpServlet {
         public void doPost(HttpServletRequest request,HttpServletResponse response)throws IOException,ServletException{
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("Shutup and see this");
              String c = request.getParameter("color");
              out.println("<be>the color selected is"+ c);
    }on giving the command
    C:\project1\app1>javac -classpath c:\Tomcat6\lib\servlet-api.jar:classes:. -d classes src\com\myweb\trying\Serv1.java
    this is what i got
    src\com\myweb\trying\Serv1.java:3: package javax.servlet does not exist
    import  javax.servlet.*;
    ^
    src\com\myweb\trying\Serv1.java:4: package javax.servlet.http does not exist
    import  javax.servlet.http.*;
    ^
    src\com\myweb\trying\Serv1.java:7: cannot find symbol
    symbol: class HttpServlet
    public class Serv1 extends HttpServlet {
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletRequest
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                              ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class HttpServletResponse
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                                                         ^
    src\com\myweb\trying\Serv1.java:8: cannot find symbol
    symbol  : class ServletException
    location: class com.myweb.trying.Serv1
           public void doPost(HttpServletRequest request,HttpServletResponse respon
    se)throws IOException,ServletException{
                         ^
    6 errors please help what im doing wrong
    i have latest ver.6 of tomcat installed

    exchange the : in your classpath with a ;
    windows, in its infinite wisdom, uses a semi-colon as the path separator. the colon is what you would use if you were on unix, macosx, or linux.
    == eldrich

  • Organizational unit 00000000 does not exist; check entries

    Hi Experts,
    While creating the business partner in transaction BBPMAININT the error is
    Organizational unit 00000000 does not exist; check entries
    where do i have to make entry of the organisation unit
    , already i have entered the purchase organisation.
    Thanks

    Hello,
    Can anyone Explain me How can i Create Vendor  EBP using T Code ppoma_bbp.
    I am using Tcode bbpgetvd for for Replicating Vendor Master to mySRM System and it is Having field of
    Organuzational Object for Suppliers 
    Object ID ______
    I have given Object id which is in assigned is ppoma_bbp (Organizational Structure).
    I have Tried to assign Object ID of Organizational unit which is assign with Purchasing Org. and Purchasing Grp.
    Please Help Me anybody.
    Thanks in Advance.

  • Customer PC3000 does not exist (please change entry in plant 3000)-INT STO

    Hi All,
    Iam getting error message while creating intercompany sto PO in my QA clinet.
    (Customer PC3000 does not exist (please change entry in plant 3000)
    Vendor maintained both the plant(supply and receeving plant)
    Customer maintained both the company code and sales org.(supply and receeving plant) then also Iam getting same error.
    I had checked OMGN t-code setting looks good.
    Same setting I had tested on DEV and SANDBOX its wokring fine.
    Please help me out how to solve this problem
    Thanks
    Raj K

    Hi,
    I am facing similar problem, When trying to create a PO for Intercompany stock transfer, I am getting the error message Customer XXX does not exist (Please change the entry in Plant XXXX).
    This error is appearing only in the Production system, but PO is getting created in Quality system. All the Master data, Configuration in both systems appears same. If you know any solution, kindly post.
    Regards,
    Onkar

  • Encountering error: "field does not exist, please re-enter" when setting up basic calculation

    I created a form in InDesign with many form fields. I would like to be able to have specific form fields generate a sum total in another form field. In acrobat, when I select the form field I wish to have the calcualtion appear in, I select the fields I want to calculate and when I click OK, I am greeted with a pop-up error that the "... field does not exist, please re-enter". I can see that there is a field present when I select "Highlight Existing Fields", I can select it and even fill it in manually. What am I doing wrong?
    I attempted to contact Adobe Help chat and they threw up their hands and directed me here. Does it have something to do with the naming convention? I am stumped but I really need to figure this out. Do I need specific script to drop into the field notation box?
    Thanks,
    In Over My Head

    Thank you George.
    Keeping the file names simple seems to be helping.
    I am now encountering an issue where some field calculations (rouhgly 20 out of 58 different basic calculations) do not compute.They create no sum and remain "zero" despite being created the exact same way as all the other calculations that appear to be working flawlwessly.
    I don't understand and it is giving me kittens.

  • I use windows 7 download lightroom 7 trial does not start please help

    i use windows 7 download lightroom 7 does not start please help my adobe id [email protected]

    Maybe try to download Lightroom 4.1 here:
    https://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_lightroom
    Lightroom 7 does not exist
    Frans

  • I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    I need help with a PDF file that is an image, the "Read Out Loud' option does not work, please help!

    You mean an image such as a scanned document?
    If that is the case, the file doesn't contain any text for Reader Out Loud to read. In order to fix that, you would need an application such as Adobe Acrobat that does Optical Character Recognition to convert the images to actual text.
    You can also try to export the file as a Word document or something else using ExportPDF which I believe offers OCR and is cheaper than Acrobat.

  • My ipad turns off randomly and doesnt turn back on and wont restore with itunes and i tried holding the power and home button down and i see a faint apple logo than it disappears and still does not operate please help solve this issue

    My ipad turns off randomly and doesnt turn back on and wont restore with itunes and i tried holding the power and home button down and i see a faint apple logo than it disappears and still does not operate please help solve this issue

    i have the same problem...my ipod is 4th generation?uggghhhhh

  • "file does not exist" output  Help !

    Dear Java People,
    I am doing a program that uses the methods of the File class.
    When I test to see if my file (containing the driver class )exists
    it says "does not exist" . I don't know why it doesn't see my file
    below is the coding the doesn't see my file and below that the program
    Thank you in advance
    Norman
    //create an object that is a file
            File myFile = new File(myDir, "TryFile.java");
             System.out.println(myFile + (myFile.exists() ? " does" : " does not") +
                                 " exist.");
    import java.io.File;
    import java.util.Date;
    public class TryFile
        public static void main(String[] args)
            //create ab object that is a directory
            File myDir =
            new File("C:\\Documents and Settings\\Gateway User\\jbproject\\stan_ch9_363");
            System.out.println("\n" + myDir + (myDir.isDirectory() ? " is" : " is not")
            + " a directory.");
             System.out.println( myDir.getAbsolutePath() +
             (myDir.isDirectory() ? " is" : " is not") + " a directory.");
              System.out.println("The parent of " + myDir.getName() + " is " +
              myDir.getParent());
            //create an object that is a file
            File myFile = new File(myDir, "TryFile.java");
             System.out.println(myFile + (myFile.exists() ? " does" : " does not") +
                                 " exist.");
             System.out.println(myFile + (myFile.isFile() ? " is" : " is not")
                                       + " a file.");
             System.out.println(myFile + (myFile.isHidden() ? " is" : " is not")
                                       + " hidden.");
             System.out.println("You can" + (myFile.canRead() ? " " : "  not")
                                       + " read. " + myFile);
            System.out.println("You can" + (myFile.canWrite() ? " " : "  not")
                                       + " write. " + myFile);
              System.out.println();
             //get the contents of the directory
             File[] contents = myDir.listFiles();
             //list the contents of the directory
             if(contents != null)
                 System.out.println("\nThe " + contents.length  + " item(s) in the directory "
                                   + myDir.getName() + " are:\n " );
                 for(int i = 0; i < contents.length; i++)
                   System.out.println(  contents[i] + " is a " +
                   (contents.isDirectory() ? "directory" : "file") +
    " last modified on " + new Date(contents[i].lastModified()) + "\nthe number of bytes in TryFile.java are " + myFile.length());
    else {
    System.out.println(myDir.getName() + " is not a directory");
    System.exit(0);

    Dear SMcKee,
    I realize now that JBuilder is Not the IDE of choice when doing programs that utilize the File class methods.
    The program worked without a hitch in the BlueJ IDE
    below is all the correct output. Thank you again !
    Norman
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363 is a directory.
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363 is a directory.
    The parent of stan_ch9___p363 is C:\Documents and Settings\Gateway User\jbproject
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java does exist.
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java is a file.
    C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java is not hidden.
    You can read. C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java
    You can write. C:\Documents and Settings\Gateway User\jbproject\stan_ch9___p363\TryFile.java

  • I forgot my password and my birthday and email does not recognize. please help me, it happen when I buy my new iphone5s and change the Apple ID of my old iPhone 4.

    i have a new iPhone 5s, it does not recognize my password, when I try to restore it my birthday and email does not recognize, it only happen when I change my old iPhone 4 and change the Apple ID of it. please help me, all my phone now does not recognize my password.

    To change to iCloud ID on your phone you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID then sign in with the new ID.  If you don't know the password for the old ID, and if the old ID is an earlier version of your current ID, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • IChat Video Error Message - receiving buddy does not respond - PLEASE HELP

    Hi there,
    I was wondering if anyone else was getting a error communication message where it states the other buddy has not responded but is in fact trying to accept. I cannot send him a successful invite and he cannot send me a successful invite. He have both video conferenced many times. He is overseas and this is the first time we've seen this error message. He travels all over South Korea. Thank you for any help you can give.
    Date/Time: 2008-05-26 00:21:37.938 -0700
    OS Version: 10.5.2 (Build 9C7010)
    Report Version: 4
    iChat Connection Log:
    2008-05-26 00:20:18 -0700: AVChat started with ID 564294034.
    2008-05-26 00:20:18 -0700: 0x140e0e00: State change from AVChatNoState to AVChatStateWaiting.
    2008-05-26 00:20:18 -0700: [email protected]: State change from AVChatNoState to AVChatStateInvited.
    2008-05-26 00:20:29 -0700: 0x140e0e00: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-05-26 00:20:29 -0700: [email protected]: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-05-26 00:20:39 -0700: 0x140e0e00: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-26 00:20:39 -0700: 0x140e0e00: Error -8 (Did not receive a response from 0x140e0e00.)
    2008-05-26 00:20:39 -0700: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-05-26 00:20:39 -0700: [email protected]: Error -8 (Did not receive a response from 0x140e0e00.)
    Video Conference Error Report:
    736.564913 @SIP/SIP.c:2719 type=4 (900A002D/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.000000 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK66aac44a7a5974df
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 461
    v=0
    o=antoniokwon 0 0 IN IP4 sip
    [email protected]
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:2670543583
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 15:320:240:320:240
    a=framerate:15
    a=rtpID:2451277073
    0.020551 @SIP/Transport.c:347 type=2 (00000000/0)
    [ACK sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK690ed58f2a6d3827
    Max-Forwards: 70
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    0.235871 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from 24.82.147.55:16402]
    0.561736 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=100865.14, NSDev=17.59%]
    0.700671 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=848369.60, NSDev=48.28%]
    1.054436 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=515699.40, NSDev=13.25%]
    16.898942 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK4caa71a617f58791
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    16.971322 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK4caa71a617f58791
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    26.441567 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK54d369fa0cb6e234
    Max-Forwards: 70
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    26.442116 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK54d369fa0cb6e234
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    46.899051 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0db5002b4ef208ff
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    47.399193 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0db5002b4ef208ff
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    47.421794 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0db5002b4ef208ff
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    56.404011 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK2ec1069d5362fffb
    Max-Forwards: 70
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    56.404624 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK2ec1069d5362fffb
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    76.899027 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3541f731540c840b
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    76.924447 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK3541f731540c840b
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    86.457789 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK689ae50a4290fce7
    Max-Forwards: 70
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    86.458460 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK689ae50a4290fce7
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    106.899152 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1bea73996adf895d
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    106.967238 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1bea73996adf895d
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    116.447085 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK11d863f1489dd153
    Max-Forwards: 70
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    116.447705 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK11d863f1489dd153
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    136.899184 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK63cf73510a80731b
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    136.920013 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK63cf73510a80731b
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    146.476815 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK1466564d2b67f393
    Max-Forwards: 70
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 6 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    146.477220 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK1466564d2b67f393
    To: 0 <sip:user@lip:16402>;tag=1100088139
    From: u0 <sip:user@rip:16402>;tag=1422303902
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 6 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    152.927851 @SIP/Transport.c:2362 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7d89d4e74f15b05f
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 6 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    152.964649 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7d89d4e74f15b05f
    To: u0 <sip:user@rip:16402>;tag=1422303902
    From: 0 <sip:user@lip:16402>;tag=1100088139
    Call-ID: 8f3bf86a-2af0-11dd-817f-a3c95e6a4012@rip
    CSeq: 6 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    158.634464 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 11 returns 1
    163.739503 @VCChannel/VCChannel.m:252 type=2 (00000000/0)
    [VCChannel prepareConnectionWithRemoteConnectionData - remote VCConnectionData: 1]
    163.742021 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    163.746333 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    164.992068 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1200e9cf3753675e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 409
    v=0
    o=antoniokwon 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3769769788
    165.030945 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1200e9cf3753675e
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    165.035273 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1200e9cf3753675e
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    165.040624 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1200e9cf3753675e
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 271
    [v=0
    o=juliakwon 0 0 IN IP4 24.82.147.55
    s=0
    c=IN IP4 24.82.147.55
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:1600
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:2300441120
    165.040799 @SIP/Transport.c:2362 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1519c6e8623559a9
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    165.261667 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from 24.82.147.55:16402]
    165.585709 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=99070.00, NSDev=5.21%]
    165.742118 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=1155267.40, NSDev=86.43%]
    166.090004 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=512915.10, NSDev=6.24%]
    166.899140 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1c6a86114ae0446f
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    166.927142 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1c6a86114ae0446f
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    176.703729 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK2cb95133614dcc9d
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=857206073
    From: "u0" <sip:user@rip:16402>;tag=776981349
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    176.705952 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK2cb95133614dcc9d
    To: "0" <sip:user@lip:16402>;tag=857206073
    From: "u0" <sip:user@rip:16402>;tag=776981349
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    196.899290 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1eabf72648ec8c95
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    196.941736 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK1eabf72648ec8c95
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    206.398764 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK03de54f1114bec57
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=857206073
    From: "u0" <sip:user@rip:16402>;tag=776981349
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    206.399303 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK03de54f1114bec57
    To: "0" <sip:user@lip:16402>;tag=857206073
    From: "u0" <sip:user@rip:16402>;tag=776981349
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    226.899288 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK754605b218a12e0a
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    226.920890 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK754605b218a12e0a
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    236.412769 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK195e7bd31ee0f56b
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=857206073
    From: "u0" <sip:user@rip:16402>;tag=776981349
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    236.413204 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 24.82.147.55:16402;branch=z9hG4bK195e7bd31ee0f56b
    To: "0" <sip:user@lip:16402>;tag=857206073
    From: "u0" <sip:user@rip:16402>;tag=776981349
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    236.688590 @SIP/Transport.c:2362 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK13eff2683c7453fd
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 5 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    236.723043 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK13eff2683c7453fd
    To: "u0" <sip:user@rip:16402>;tag=776981349
    From: "0" <sip:user@lip:16402>;tag=857206073
    Call-ID: f383f2aa-2af0-11dd-889b-b1b93c3e4012@lip
    CSeq: 5 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    459.505911 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 12 returns 1
    559.525953 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 13 returns 1
    560.160536 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    660.774775 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 14 returns 1
    661.171195 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    686.562543 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 15 returns 1
    686.995742 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    709.686643 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 16 returns 1
    715.266898 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 17 returns 1
    724.563845 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 18 returns 1
    730.441603 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    730.443028 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    736.564831 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@lip00:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK386baf9034905e0b
    Max-Forwards: 70
    To: "u0" <sip:user@lip00:16402>
    From: "0" <sip:user@lip:16402>;tag=773757361
    Call-ID: 483307ae-2af2-11dd-889b-c11c77bb4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 741
    v=0
    o=antoniokwon 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2066329741
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:984871260
    834.024693 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 20 returns 1
    834.664440 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    1568.393270 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 21 returns 1
    1568.806737 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    Video Conference User Report:
    1.073934 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 469 up, 469 down. (00000000)
    1.076449 @Video Conference/VideoConferenceMultiController.m:1958 type=5 (00000000/0)
    [Start Conference With UserID: [email protected]]
    166.138706 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 494 up, 494 down. (00000000)
    166.141618 @Video Conference/VideoConferenceMultiController.m:1958 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    Binary Images Description for "iChat":
    0x1000 - 0x239fff com.apple.iChat 4.0.2 (604) /Applications/iChat.app/Contents/MacOS/iChat
    0x2ae000 - 0x31cfff com.apple.Bluetooth 2.1 (2.1f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x368000 - 0x4b9fff com.apple.viceroy.framework 363.1 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x527000 - 0x566fff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x588000 - 0x5a1fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bb000 - 0x5f4fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x604000 - 0x618fff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x628000 - 0x646fff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x64e000 - 0x6c0fff com.apple.iLifeMediaBrowser 1.0.5 (205.0.2) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6fe000 - 0x72ffff com.apple.iChatCommonGUI 4.0.2 (604) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x758000 - 0x75bfff com.apple.BezelServicesFW 1.4.624 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x773000 - 0x778fff com.apple.iChat.Styles.Balloons 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7e4000 - 0x7e7fff com.apple.iChat.Styles.Boxes 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7ee000 - 0x7f4fff com.apple.iChat.Styles.Compact 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0xa00000 - 0xa02fff com.apple.iChat.Styles.Text 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0xce6000 - 0xcebfff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xc8a1000 - 0xc935fff com.apple.speech.synthesis.MacinTalkSynthesizer 3.6.59 /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
    0xc96a000 - 0xc989fff com.apple.speech.SpeechDictionary 3.5.51 /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
    0xcb61000 - 0xcc4ffff com.apple.RawCamera.bundle 2.0.3 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xdf41000 - 0xdf44fff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xdf4a000 - 0xdf4ffff com.apple.audio.AppleHDAHALPlugIn 1.5.6 (1.5.6a19) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xdf5e000 - 0xdf67fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xdfaf000 - 0xe021fff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xe0f3000 - 0xe0f3fff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0xe16d000 - 0xe174fff com.apple.JavaVM 12.0.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0xe1b0000 - 0xe1b1fff com.apple.iChat.PersonIconPlugIn 4.0.2 (604) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0xe939000 - 0xe974fff com.apple.QuickTimeFireWireDV.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe97f000 - 0xe9acfff com.apple.QuickTimeIIDCDigitizer 7.4.5 (67) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xe9b7000 - 0xea01fff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xea28000 - 0xebaafff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xebd8000 - 0xee58fff com.apple.ATIRadeonX1000GLDriver 1.5.24 (5.2.4) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xeea4000 - 0xeec0fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xffc3000 - 0x10153fff com.apple.audio.codecs.Components 1.6.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x101a6000 - 0x101a9fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x11151000 - 0x11151fff liblangid.dylib /usr/lib/liblangid.dylib
    0x1117a000 - 0x1117cfff com.apple.AutomatorCMM 1.1 (156) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x11182000 - 0x11183fff com.apple.BluetoothMenu 2.1 (2.1f14) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x111b8000 - 0x111bdfff com.apple.FolderActionsMenu 1.3.2 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1138c000 - 0x11392fff com.roxio.ToastItPlugin ToastIt 1.1.2 (build 17) (1.1.2) /Users/antoniokwon/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x11557000 - 0x11557fff com.apple.applescript.component 2.0 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x115b3000 - 0x115cffff com.apple.QuartzComposer.ExtraPatches 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x11637000 - 0x11654fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1166c000 - 0x11679fff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x11841000 - 0x1185afff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1185f000 - 0x11879fff com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1192c000 - 0x1192efff Adobe Unit Types ??? (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x1231c000 - 0x123a3fff com.apple.applescript 2.0 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x131b1000 - 0x13224fff com.apple.audio.units.Components 1.5.1 /System/Library/Components/CoreAudio.component/Contents/MacOS/CACodecs
    0x13d1c000 - 0x13f12fff net.telestream.wmv.import 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x148ea000 - 0x14c68fff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x14cdc000 - 0x14e8dfff net.telestream.wmv.advanced 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x70000000 - 0x700e3fff com.apple.audio.units.Components 1.5.1 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x9013bfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9013c000 - 0x9015afff com.apple.DirectoryService.Framework 3.5.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9015b000 - 0x9016afff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9016b000 - 0x90250fff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90251000 - 0x9029bfff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9029c000 - 0x90467fff com.apple.security 5.0.2 (33001) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90468000 - 0x9053bfff com.apple.QuickTimeH264.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9053c000 - 0x9069bfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9069c000 - 0x906c0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x906c1000 - 0x906f0fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x906f1000 - 0x90793fff com.apple.QuickTimeImporters.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90794000 - 0x90b2afff com.apple.QuartzCore 1.5.1 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90b2b000 - 0x90b6ffff com.apple.DirectoryService.PasswordServerFramework 3.0.2 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90b70000 - 0x90b80fff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90b81000 - 0x90d3cfff com.apple.QuartzComposer 2.1 (106.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90d3d000 - 0x90dc8fff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90dc9000 - 0x90e43fff com.apple.print.framework.PrintCore 5.5.2 (245.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90e44000 - 0x90f23fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90f24000 - 0x90f3afff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91030000 - 0x9103efff libz.1.dylib /usr/lib/libz.1.dylib
    0x9103f000 - 0x910e6fff com.apple.QD 3.11.52 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x910e7000 - 0x91126fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91127000 - 0x9113ffff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91140000 - 0x9120efff com.apple.JavaScriptCore 5525.17 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9120f000 - 0x9128bfff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9128c000 - 0x91292fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91293000 - 0x912ccfff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x912cd000 - 0x912e3fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x912e4000 - 0x91300fff com.apple.IMFramework 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x91301000 - 0x91301fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91302000 - 0x91302fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91303000 - 0x91382fff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91383000 - 0x91741fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x91742000 - 0x91787fff com.apple.Metadata 10.5.2 (398.7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91788000 - 0x91889fff com.apple.PubSub 1.0.3 (65.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9188a000 - 0x9188cfff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x918bd000 - 0x918e8fff libauto.dylib /usr/lib/libauto.dylib
    0x918e9000 - 0x91911fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91912000 - 0x9193afff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9193b000 - 0x91bb5fff com.apple.Foundation 6.5.4 (677.15) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91bb6000 - 0x91bf4fff com.apple.CoreMediaIOServicesPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x91bf5000 - 0x91bf5fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91bf6000 - 0x91bfafff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x91bfb000 - 0x91c78fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91c79000 - 0x91c83fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91c84000 - 0x91c93fff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91c94000 - 0x91ce3fff com.apple.QuickLookUIFramework 1.1 (170.2) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x91ce4000 - 0x91daffff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91dbc000 - 0x91dd3fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x91f2d000 - 0x91fdffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91fe0000 - 0x920a7fff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x920a8000 - 0x920adfff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x920ae000 - 0x920d8fff com.apple.CoreMediaPrivate 8.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x920d9000 - 0x920f7fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x920f8000 - 0x92125fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92126000 - 0x92174fff com.apple.datadetectorscore 1.0.1 (52.13) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92175000 - 0x9217cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x9217d000 - 0x92181fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92182000 - 0x9220bfff com.apple.DesktopServices 1.4.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9220c000 - 0x9220cfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92213000 - 0x92244fff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x92245000 - 0x92369fff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9236a000 - 0x92371fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x92372000 - 0x924b7fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x924b8000 - 0x924cbfff com.apple.IMUtils 4.0.2 (579) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x924cc000 - 0x92589fff com.apple.WebKit 5525.18 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9258a000 - 0x9258cfff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9258d000 - 0x925eafff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x925eb000 - 0x92abefff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92abf000 - 0x92b24fff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92b25000 - 0x92bb8fff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92bb9000 - 0x92bddfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x92bde000 - 0x92bfbfff com.apple.QuickLookFramework 1.1 (170.2) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92c3a000 - 0x92c41fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x92c42000 - 0x92c4dfff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92c4e000 - 0x92cdafff com.apple.QTKit 7.4.5 (67) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92f44000 - 0x92fb6fff com.apple.PDFKit 2.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92fb7000 - 0x93043fff com.apple.LaunchServices 286.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93044000 - 0x9317bfff com.apple.imageKit 1.0.1 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9317c000 - 0x9422cfff com.apple.QuickTimeComponents.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9422d000 - 0x94232fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94233000 - 0x94233fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94234000 - 0x94234fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x942a2000 - 0x942a7fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x942a8000 - 0x942f8fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x942f9000 - 0x9430afff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x9430b000 - 0x9431ffff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9432e000 - 0x94332fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x94333000 - 0x94333fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94334000 - 0x94336fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94337000 - 0x943e7fff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x943e8000 - 0x94438fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x94439000 - 0x94439fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9443a000 - 0x94443fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94444000 - 0x9449dfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9449e000 - 0x94531fff com.apple.ApplicationServices.ATS 3.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94532000 - 0x9456cfff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9456d000 - 0x94575fff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94576000 - 0x945adfff com.apple.SystemConfiguration 1.9.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x945ae000 - 0x94676fff com.apple.QuickTimeMPEG4.component 7.4.5 (67) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x94677000 - 0x946d1fff com.apple.CoreText 2.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x946d2000 - 0x94714fff com.apple.NavigationServices 3.5.1 (161) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94715000 - 0x947f6fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x947f7000 - 0x94c07fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94c08000 - 0x94c49fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94c4a000 - 0x9529afff com.apple.WebCore 5525.18.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9529b000 - 0x95312fff com.apple.CFNetwork 221.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9531d000 - 0x95b1afff com.apple.AppKit 6.5.2 (949.26) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95b1b000 - 0x95b51fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x95b52000 - 0x95b62fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95b63000 - 0x95b63fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95b64000 - 0x95bebfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x95bec000 - 0x95c1efff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95c1f000 - 0x95c5dfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95c5e000 - 0x95d18fff com.apple.CoreServices.OSServices 224.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95d26000 - 0x95d31fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x95d32000 - 0x9603afff com.apple.HIToolbox 1.5.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9603b000 - 0x9605bfff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9605c000 - 0x96077fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96078000 - 0x9607ffff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96080000 - 0x96084fff com.apple.CoreMediaAuthoringPrivate 1.3 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x96085000 - 0x96088fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96089000 - 0x96207fff com.apple.AddressBook.framework 4.1 (687.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96208000 - 0x96264fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96265000 - 0x96271fff com.apple.opengl 1.5.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96272000 - 0x96273fff libffi.dylib /usr/lib/libffi.dylib
    0x96274000 - 0x96594fff com.apple.QuickTime 7.4.5 (67) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96595000 - 0x96595fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96676000 - 0x96695fff com.apple.ImageIO.framework 2.0.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x966cb000 - 0x966cbfff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x966cc000 - 0x967fefff com.apple.CoreFoundation 6.5.1 (476.10) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x967ff000 - 0x96e98fff com.apple.CoreGraphics 1.351.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96eca000 - 0x971a3fff com.apple.CoreServices.CarbonCore 785.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0xbab00000 - 0xbab21fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

    Error 22 is a Bandwidth/Speed issue.
    Make sure both ends have System Preferences > Quicktime > Streaming set to 1.5Mpbs
    Restart iChat if you change the speed.
    If that is set and the iChat > Preferences > Video section > Bandwidth is set to above 200 and preferably NONE then the issue will be the Internet speed or how much it is shared with other computers.
    1:47 PM Monday; May 26, 2008

  • I've uploaded my pics to my PC but now I can't delete them from the iPad, the little trash can does NOT appear, PLEASE HELP I have over 6000 photos I need to delete

    I've uploaded my pics to my PC but now I can't delete them from the iPad, PLEASE HELP the little trash can does NOT appear

    That's because you can't delete it directly from the phone.
    Since you synced not imported those pictures to your iphone using iTunes, you will need to do the opposite and unsync the pictures, in order to remove it from your phone.

Maybe you are looking for

  • Why are ALL apps missing?

    I'm trying to upgrade from CS6 to CC2014 and I decided to download the trials to make sure it's worth it. I logged into my Adobe ID account, clicked the trial and downloaded the CC .dmg image file. I then installed the CC manager tool, logged in and

  • HT6162 What is the pass code????????

    I have a software update and it needs a pass code, where do I get that?????

  • Some prolems when trying to create Jar file...

    Hi, 1st sorry i post this in the wrong box, i posted it in the Jar box but no body replied and I really need to get this done soon... I've got a list of *.class and a folder images and Start is the class I want to be the entry point I tried: 1. jar c

  • Group by one field but sort by another field

    I  need to create a Parent directory for our school. I group the report by last name, then by family ID. Some data example below: Family -grade school        |     Guardians                                      |        Address                       

  • HT1343 Why doesn't Command-X cut a file in finder?

    Why doesn't Command-X cut a file in finder? According to this article it must to! http://support.apple.com/kb/HT1343?viewlocale=en_US&locale=en_US What is  way to cut the a file WITH OUT using a mouse/trackpad - with keyboard only?