IPhone SDK: runtime crash pushing viewController onto navigationController

Hi,
I have looked at this for hours but am completely stuck, any help would be much appreciated.
I have the following code which pushes a viewController onto a navigationController:
Scr1ViewController *scr1ViewController = [[[[Scr1ViewController alloc]]
initWithNibName:@"Scr1ViewController" bundle:nil] autorelease];
[self.navigationController pushViewController:scr1ViewController
animated:YES];
When nibNameOrNil is set to 'nil' the program runs fine and loads a blank view, so I'm guessing that the code is ok. But then when I set nibNameOrNil to the nib name the program crashes at runtime. This leads me to think that it must be a problem with my nib file.
The debugger log shows '-[UIViewController loadView] loaded the "Scr1ViewController" nib but no view was set.'
However, when creating the nib I have followed these steps in the Interface Builder Guide exactly, paying attention to every detail and checking repeatedly.
1. Create a new nib file using the Cocoa Touch View template.
2. Add a view controller object to the top level of the nib file.
3. Set the class of the view controller to your custom class.
4. Drag a navigation item from the library and drop it onto the view controller object.
5. In the Interface Builder document window, drag the view that came with the template and drop it on the view controller to associate it with the controller.
6. Double-click the view controller object to open its editor window.
7. Set the title of the navigation item to the default title for this navigation level.
8. Open the view and add any additional subviews to it to define your user interface (no additional subviews).
9. Save the nib file.
Are there any steps that the guide has missed out, I just can't seem to get it to work, I have created the nib from scratch again and again.
Thanks in advance.

Hi,
when creating a nib-file for the viewcontroller you do not need to add a viewcontroller to the top level. You create the viewController-object in your code so why creating another one in the nib-file?
Set the class of the file's owner to your viewcontroller-subclass.
Add a view to the toplevel and connect the file's ower view outlet to the view.
Add a navigationItem to the topLevel and connect that too.

Similar Messages

  • IPhone SDK 3 NavController push/pop animated difference (in simulator)?

    Ok, I have a NavController that supports Portrait and Landscape orientations. If I push a ViewController in Portrait and then go "back" the built-in animation is wipe left, then wipe right when going back. In Landscape in 2.2.1 it worked the same way.
    Now, in 3.0, the animation in Landscape is wipe left, then wipe DOWN when going back!
    Anyone else seeing this in the simulator? Any idea why it's different? Anyone seen this in the phone?
    Is there anyway to control the animation from a built-in "back" button? Or, must I make a custom button and just turn off animation?
    Thanks!
    Dan

    Ok, I have a NavController that supports Portrait and Landscape orientations. If I push a ViewController in Portrait and then go "back" the built-in animation is wipe left, then wipe right when going back. In Landscape in 2.2.1 it worked the same way.
    Now, in 3.0, the animation in Landscape is wipe left, then wipe DOWN when going back!
    Anyone else seeing this in the simulator? Any idea why it's different? Anyone seen this in the phone?
    Is there anyway to control the animation from a built-in "back" button? Or, must I make a custom button and just turn off animation?
    Thanks!
    Dan

  • IPhone SDK - scrollToRowAtIndexPath crashes if table is not loaded yet

    I have a case where i have to scroll the UITableView to a particular row and section. When i tried this the application crashes when the table is not yet done loading.
    Is there a way to find out if the table view is done loading?
    I did not see any delegate methods which address this.
    I would appreciate for any pointers on how to handle this scenario.
    Thanks,
    -TRS

    Found a solution.
    I reload the table before i ask it to scroll to a position.
    - (void) setOrdinal:(jint) topItem {
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:topItem inSection:0];
    [tableView reloadData];
    [tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
    The setOrdinal method is called by the user of the view containing the table.
    This works just fine.
    Thanks to all who took time to read this post.
    -TRS

  • IPhone SDK: How to access navigationController in appDelegate?

    Hi,
    This is probably a noob question, but I'v spent all day on this and cant figure it out.
    After creating a project using the Navigation-Based Application template the folllowing code was automatically created:
    @interface NavigationAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    UINavigationController *navigationController;
    @property (nonatomic, retain) IBOutlet UIWindow *window;
    @property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
    @end
    I am writing code for a viewContoller and would like to push another viewController onto the stack of this navigationController but don't know how to access it. So far I have written the following:
    [??????.navigationController
    pushViewController:scr1ViewController animated:YES];
    What do I put in place of ?????? Everything I try returns an error.
    Thanks in advance.

    Its ok, Iv just figured it out. Been staring at it for seven hours with no luck. As soon as Iv posted the question I decided to try 'self' it worked.

  • IPhone SDK crashes?

    When I try to open the photos app on the iPhone SDK, a warning comes up and says and try to save an image from Mobile Safari by click-holding an image until it says "Save Photo" Safari crashes and it says "MobileSafari quit unexpectedly." How can I fix this? I have the latest iPhone SDK update.

    Found a solution.
    I reload the table before i ask it to scroll to a position.
    - (void) setOrdinal:(jint) topItem {
    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:topItem inSection:0];
    [tableView reloadData];
    [tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
    The setOrdinal method is called by the user of the view containing the table.
    This works just fine.
    Thanks to all who took time to read this post.
    -TRS

  • My iphone 3g suddenly crashed in the middle of texting....when i tun it on all i get are red flashing lines !  I have pushed all buttons, done all suggestions...it is fully charged.....but still nothing HELP PLEASE !

    Help...my iphone 3g suddenly crashed in the middle of texting......the whole screen shut down.   I pushed the home button and on-off buttons - as directed, the white apple came up...then all I get are red and white lines on the screen.....nothing else ! please help !!!

    Thank you for your reply....I actually managed to get it showing in itunes....but couldn't open the phone at all....so took a gamble and got itunes to restore my phone back to factory settings !  which it did...then it restored all the backed up info.....so far so good !!!!  phone seems to be working !!!  no red lines...!  but am still going to take it to the apple store and get them to check it out.......Oh....I lost all the apps I'd bought.....although their on itunes....my phone won't ake them back ???  I can't sync them in ?  thanks again though.

  • IPhone SDK: auto-rotation sets wrong bounds in view?

    Hi all,
    Can anybody confirm if this is a bug in the iPhone SDK? I have a ViewController that defines as its view a DimensionsLogger, which is a trivial subclass of UIView that just logs its frame, bounds and center properties when layoutSubviews is invoked.
    When I set this view as the root view in my application, the dimensions are logged like so (portrait mode):
    Bounds: (0.000000, 0.000000) x (320.000000, 460.000000)
    I rotate it to landscape mode and the bounds are logged:
    Bounds: (0.000000, 0.000000) x (390.000000, 390.000000)
    Bounds: (0.000000, 0.000000) x (480.000000, 300.000000)
    Then back to portrait mode:
    Bounds: (0.000000, 0.000000) x (390.000000, 390.000000)
    Bounds: (0.000000, 0.000000) x (320.000000, 460.000000)
    So far, so good.
    When I add my DimensionLogger + ViewController to a NavigationController, however, the same process (repeated several times) yields the following output:
    Bounds: (0.000000, 0.000000) x (320.000000, 416.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 346.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 358.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 358.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 346.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 346.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 358.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 358.000000)
    Bounds: (0.000000, 0.000000) x (390.000000, 346.000000)
    The bounds value never returns to the original dimensions.
    Am I missing something, or is this a bug? The practical consequence of this is that it seems impossible to combine the following 3 UI elements:
    - "anchoring" something to the bottom of a view, like a UIToolbar (NOT a tabbar)
    - Nesting that view in a UINavigationController
    - Supporting portrait and landscape interface orientation.
    Also, if I file this as a bug, is there any way to search the bug report tool to see if this has already been filed? I've logged into the tool and I see some search functionality but it only seems to search bugs I've previously filed.
    Thanks,
    Russ

    Just wanted to add that I've tried this in the simulator and on a provisioned iPod touch, same results on both.
    Russ

  • IPhone SDK 2.2 memory corruption

    Hello. I'm working on an application for iPhone SDK 2.2 and seem to be having weird memory corruption problems. Not necessarily leaks because using Instruments shows my memory stamp never going above about 1.8 megs. The nature of the app is a database of animals so I'm constantly loading and unloading sounds and images. None of the objects are very large (at most I'll have 4 800k pngs loaded at once) and I've checked and rechecked my alloc/retain/release and everything is in order (hence no memory usage increase). However...after using the application for a while I'll notice strange behavior. For example:
    1) we have a UILabel as the title for each page. After a while the font size of this will change.
    2) I have several screens with a subclassed UIScrollView where images are loaded and then added to. The problem shows itself here by the images not showing up. there's no crash, stepping through the debugger shows that the image loads up fine, it's just that the image is not there.
    3) I have a UILabel at the top of an animal description screen, which in the nib file is called "Animal Name" by default. This will change to show "Animal Name" at the top.
    I've removed all audio in our latest build so that isn't the problem. What I'm starting to suspect is that altering anything defined in a nib file will cause corruption. For example, the UIScrollView is defined in the nib file, and I constantly am reassigning the contents of that with a UIImageView. This UIImageView is handled within the subview class like :
    UIImageView *imgView = [[UIImageView alloc] initWithImage: [ UIImage imageWithContentsOfFile:[[NSBundle mainBundle ] pathForResource:imageToLoad ofType:@"png" ]] ];
    imgView.tag = 50;
    [self addSubview:imgView ];
    [ imgView release ];
    Then later when moving away from the screen I'll find that view's tag and remove it from the superview (since addSubView increases the retain count, the alloc+addSubView is cancelled by release+removeFromSuperView)
    I can't explain why titles that are never changed would be affected, but it must somehow be related. What I'm wondering is: are there any known issues involving modification of the contents of objects defined in Nib files? Perhaps the memory allocated when initWithNibName is restrained, then any modification of objects allocated within it can cause corruption. I'm starting to think I should just alloc and free anything modified in code and skip using nib files altogether (I reset the text on buttons for example). If this is a known issue please let me know. I'll give you more information if I can.
    Thank you

    Just download the huge SDK package and install. No need to uninstall the old SDK.

  • AIR 2.5.1 runtime crash on Mac OSX 10.6

    Running an application on Snow Leopard (Mac OSX 10.6) user experienced a runtime crash that appears to be in the AIR 2.5.1 runtime code.
    Dump:
    Version:         1.0.3 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [109]
    Date/Time: 2011-01-23 10:36:35.813 -0500
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report:          1074093 sec
    Crashes Since Last Report: 2
    Per-App Interval Since Last Report:  157256 sec
    Per-App Crashes Since Last Report: 2
    Anonymous UUID: 6938E7E0-4FF3-42E8-858F-ECB3ADF6821D
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.adobe.AIR                 0x028cca09 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 377618
    1   com.adobe.AIR 0x0288d90e r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 119319
    2   com.adobe.AIR 0x029404b6 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 851391
    3   com.adobe.AIR 0x02943c95 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 865694
    4   com.adobe.AIR 0x029ce9ab r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1434292
    5   com.adobe.AIR 0x02949111 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 887322
    6   com.adobe.AIR 0x027ff11a XC_RSA_Decrypt_Zeroes_Coding_Lithium + 1858666
    7   com.adobe.AIR 0x027ed661 XC_RSA_Decrypt_Zeroes_Coding_Lithium + 1786289
    8   com.adobe.AIR 0x027ed7db XC_RSA_Decrypt_Zeroes_Coding_Lithium + 1786667
    9   com.adobe.AIR 0x02b352af r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 2902968
    10  com.adobe.AIR 0x029ddb7b r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1496196
    11  com.apple.CoreFoundation 0x986b04cb __CFRunLoopDoSources0 + 1563
    12 com.apple.CoreFoundation       0x986adf8f __CFRunLoopRun + 1071
    13 com.apple.CoreFoundation       0x986ad464 CFRunLoopRunSpecific + 452
    14 com.apple.CoreFoundation       0x986ad291 CFRunLoopRunInMode + 97
    15  com.apple.HIToolbox 0x97694004 RunCurrentEventLoopInMode + 392
    16  com.apple.HIToolbox           0x97693dbb ReceiveNextEventCommon + 354
    17 com.apple.HIToolbox           0x97693c40 BlockUntilNextEventMatchingListInMode + 81
    18 com.apple.AppKit               0x9910b78d _DPSNextEvent + 847
    19  com.apple.AppKit 0x9910afce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    20  com.apple.AppKit 0x990cd247 -[NSApplication run] + 821
    21 com.adobe.AIR                 0x0255dc98 0x255a000 + 15512
    22  com.adobe.AIR 0x0255dfde 0x255a000 + 16350
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib             0x989f7982 kevent + 10
    1   libSystem.B.dylib             0x989f809c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib 0x989f7559 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x989f72fe _dispatch_worker_thread2 + 240
    4 libSystem.B.dylib             0x989f6d81 _pthread_wqthread + 390
    5   libSystem.B.dylib 0x989f6bc6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x989d10fa mach_msg_trap + 10
    1   libSystem.B.dylib 0x989d1867 mach_msg + 68
    2 com.apple.CoreFoundation       0x986ae37f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation       0x986ad464 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation       0x986ad291 CFRunLoopRunInMode + 97
    5   com.apple.Foundation 0x950ef7d0 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation           0x950b6bf0 -[NSThread main] + 45
    7   com.apple.Foundation 0x950b6ba0 __NSThread__main__ + 1499
    8 libSystem.B.dylib             0x989fe85d _pthread_start + 345
    9   libSystem.B.dylib 0x989fe6e2 thread_start + 34
    Thread 3: com.apple.CFSocket.private
    0   libSystem.B.dylib 0x989f00c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation       0x986edc83 __CFSocketManager + 1091
    2   libSystem.B.dylib 0x989fe85d _pthread_start + 345
    3 libSystem.B.dylib             0x989fe6e2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib             0x989f6a12 __workq_kernreturn + 10
    1   libSystem.B.dylib 0x989f6fa8 _pthread_wqthread + 941
    2 libSystem.B.dylib             0x989f6bc6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000004  ebx: 0x028cca08  ecx: 0x02948bc1  edx: 0x13331000
    edi: 0x00000000  esi: 0x00000004  ebp: 0xbfffe3f8 esp: 0xbfffe3e0
    ss: 0x0000001f  efl: 0x00010282  eip: 0x028cca09   cs: 0x00000017
    ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000004
    Binary Images:
    0xca000 -    0xcaff0 +com.google.GearsEnabler ??? (1.0) <7587E6D5-A9E3-404A-3E0E-1D8D45A8D8E7> /Library/InputManagers/GearsEnable
    r/GearsEnabler .bundle/Contents/MacOS/GearsEnabler
    0xd1000 - 0xd3fff +com.Logitech.Control Center.Scroll Enhancer Loader 2.6.0 (2.6.0) /Library/InputManagers/LCC Scroll Enhancer
    Loader/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
    0x600000 -   0x6b5fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto
    .0.9.7.dylib
    0x7d8000 - 0x7dbff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x7e0000 -   0x7e4ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F402CF88-D96C-42A0-3207-49759F496AE8> /System/Library/Extensi
    ons/AudioIPCDriver.kext/C ontents/Resources/AudioIPCPlugIn.bundle/Contents/M acOS/AudioIPCPlugIn
    0x7e9000 -   0x7efffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <82BFF5E9-2B0E-FE8B-8370-445DD94DA434> /System/Library/E
    xtensions/AppleHDA.kext/Content s/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/ AppleHDAHALPlugIn
    0x7f4000 -   0x7f6fff +com.Logitech.Control Center.Scroll Enhancer 2.6.0 (2.6.0) /Library/Application Support/Logitech/LCC Scroll
    Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
    0x255a000 -  0x3179fe7 +com.adobe.AIR ??? (2.5.1.17750) <4B8E3C0F-83EF-278B-698A-62E16EB44914> /Library/Frameworks/Adobe AIR.framew
    ork/Versions/1.0/Adobe AIR
    0x1355e000 - 0x135b3fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Dec
    oder
    0x15a6b000 - 0x15fe6ff7 +WebKit.dylib ??? (???) <58458B7A-D2A1-AD0B-4BE7-6C05A5208322> /Library/Frameworks/Adobe AIR.framework/Versi
    ons/1.0/Resources/WebKit.dyli b
    0x1a640000 - 0x1a64aff7 com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/
    IOFWDVComponents.comp onent/Contents/MacOS/IOFWDVComponents
    0x1b024000 - 0x1b04effb  com.apple.QuickTimeIIDCDigitizer 7.6.6 (1756) <96489BA5-A106-36A1-FA42-F7F2D6AA098C> /System/Library/QuickT
    ime/QuickTimeIIDCDigitizer .component/Contents/MacOS/QuickTimeIIDCDigitizer
    0 x1c43d000 - 0x1c44bfe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /Sy
    stem/Library/CoreServices/Encodings/libSimpli fiedChineseConverter.dylib
    0x1c44f000 - 0x1c461ff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /S
    ystem/Library/CoreServices/Encodings/libTradit ionalChineseConverter.dylib
    0x1c66a000 - 0x1c6a6fe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1756) <5723A7A8-2C99-561B-8D87-C8B0716436FA> /System/Library
    /QuickTime/QuickTimeFireWireDV.co mponent/Contents/MacOS/QuickTimeFireWireDV
    0x1c6b2 000 - 0x1c6ccfe7 +com.google.talk.camera 1.0.19.1554 (1.0.19.1554) <FA9C2E2F-F81A-A88D-26F7-1DAAAB72806C> /Library/QuickTime/
    Google Camera Adapter 0.component/Contents/MacOS/Google Camera Adapter 0
    0x1c6de000 - 0x1c6f8fe7 +com.google.talk.camera 1.0.19.1554 (1.0.19.1554) <854A25D1-2979-7E98-644E-CFB6C4DD14EC> /Library/QuickTime/
    Google Camera Adapter 1.component/Contents/MacOS/Google Camera Adapter 1
    0x1c907000 - 0x1c92bfe7  GLRendererFloat ??? (???) <1274B762-2FB9-48FE-EAFD-C459B2B4BECC> /System/Library/Frameworks/OpenGL.framewor
    k/Reso urces/GLRendererFloat.bundle/GLRendererFloat
    0x1ca 50000 - 0x1ca9ffe3 com.apple.QuickTimeUSBVDCDigitizer 2.6.5 (2.6.5) <9DABC446-2388-C209-8912-3A33F6178B18> /System/Library/Qui
    ckTime/QuickTimeUSBVDCDigitiz er.component/Contents/MacOS/QuickTimeUSBVDCDigitiz er
    0x1edb0000 - 0x1ef28fe7  GLEngine ??? (???) <3A6C5513-7428-2242-2892-B429C72343CB> /System/Library/Frameworks/OpenGL.framework/Resou
    rces/GLEngine.bundle/GLEngine
    0x1f9e0000 - 0x1fddeffb  com.apple.ATIRadeonX2000GLDriver 1.6.26 (6.2.6) <DEB16E02-87D1-DCBF-8B60-5C972311EE28> /System/Library/Exte
    nsions/ATIRadeonX2000GLDrive r.bundle/Contents/MacOS/ATIRadeonX2000GLDriver
    0x8 fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90083feb com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreSer
    vices.framewor k/Versions/A/Frameworks/SearchKit.framework/Versio ns/A/SearchKit
    0x900ad000 - 0x904e2ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Framew
    orks/Accelerate.framework/ Versions/A/Frameworks/vecLib.framework/Versions/A/ libLAPACK.dylib
    0x904e3000 - 0x904f1fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x906cf000 - 0x906dfff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dy
    lib
    0x906e0000 - 0x906fbff7  libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationService
    s.f ramework/Versions/A/Frameworks/ImageIO.framework/V ersions/A/Resources/libPng.dylib
    0x906fc000 - 0x90705ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskA
    rbitration.frame work/Versions/A/DiskArbitration
    0x90706000 - 0x90835fe3  com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/F
    rameworks/AudioToolbox.framewor k/Versions/A/AudioToolbox
    0x90836000 - 0x9083aff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationService
    s.f ramework/Versions/A/Frameworks/ImageIO.framework/V ersions/A/Resources/libGIF.dylib
    0x9084e000 - 0x90891ff7  libGLU.dylib ??? (???) <BB66EDB2-D5FE-61C9-21BE-747F9862819C> /System/Library/Frameworks/OpenGL.framework/V
    ers ions/A/Libraries/libGLU.dylib
    0x90892000 - 0x908dffeb com.apple.DirectoryService.PasswordServerFramewor k 6.0 (6.0) <52906E26-3D22-6F37-8C90-E50BBCDEA5D0> /System
    /Library/PrivateFrameworks/PasswordServer .framework/Versions/A/PasswordServer
    0x90950000 - 0x90c70ff3  com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Fr
    ameworks/CoreServices.framewor k/Versions/A/Frameworks/CarbonCore.framework/Versi ons/A/CarbonCore
    0x90c71000 - 0x90c74ffb com.apple.help 1.3.1 (41) <EF92C648-2085-C085-8EA7-A1AF37AE94F4> /System/Library/Frameworks/Carbon.framewor
    k/Vers ions/A/Frameworks/Help.framework/Versions/A/Help
    0 x90c9b000 - 0x90c9eff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Fr
    ameworks/ApplicationServices.f ramework/Versions/A/Frameworks/CoreGraphics.framew ork/Versions/A/Resources/libCGXType.A.dylib
    0x90c9 f000 - 0x90ca9ff7  com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/Help
    Data.frame work/Versions/A/HelpData
    0x90caa000 - 0x90cf3fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServic
    es.f ramework/Versions/A/Frameworks/ImageIO.framework/V ersions/A/Resources/libTIFF.dylib
    0x90cf4000 - 0x90d2afff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x90d2b000 - 0x90dd3ffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServic
    es.f ramework/Versions/A/Frameworks/QD.framework/Versio ns/A/QD
    0x90dd4000 - 0x90e18fe7 com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreSe
    rvices.framewor k/Versions/A/Frameworks/Metadata.framework/Version s/A/Metadata
    0x90e19000 - 0x91044ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Q
    uartz.framework/Vers ions/A/Frameworks/QuartzComposer.framework/Version s/A/QuartzComposer
    0x91045000 - 0x91051ff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x91052000 - 0x9108bff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E0D512DD-365D-46A0-F50C-435BC250424F> /usr/lib/libcups.2.dylib
    0x9108c000 - 0x91127ff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Framewor
    ks/ApplicationServices.f ramework/Versions/A/Frameworks/ATS.framework/Versi ons/A/ATS
    0x91133000 - 0x91235fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/Mes
    hKit.framew ork/Versions/A/Frameworks/MeshKitIO.framework/Vers ions/A/MeshKitIO
    0x91236000 - 0x91269ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.f
    ramewor k/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x9126a000 - 0x91271ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.fra
    mework/Version s/A/AGL
    0x9127f000 - 0x91280ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Framew
    orks/AudioUnit.framework/V ersions/A/AudioUnit
    0x91281000 - 0x912a9ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dyli
    b
    0x912ed000 - 0x91adc557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/Appl
    icationServices.f ramework/Versions/A/Frameworks/CoreGraphics.framew ork/Versions/A/CoreGraphics
    0x91add000 - 0x91b5aff7  com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <3B7F5895-B48D-A2E0-D708-58EC58EB9514> /System/Library/PrivateF
    rameworks/iLifeMediaBrow ser.framework/Versions/A/iLifeMediaBrowser
    0x91cce 000 - 0x91d7bfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dyl
    ib
    0x91f11000 - 0x91f7bfe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.d
    ylib
    0x91f7c000 - 0x91fbeff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <29E5ABCF-6D8A-0CE0-B480-C7D240FF8575> /System/Library/Framewor
    ks/Accelerate.framework/ Versions/A/Frameworks/vecLib.framework/Versions/A/ libvDSP.dylib
    0x91fbf000 - 0x9202eff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <706684C7-AFA0-B036-274A-D02F8961DED5> /System/Library/Framewo
    rks/Accelerate.framework/ Versions/A/Frameworks/vecLib.framework/Versions/A/ libvMisc.dylib
    0x9202f000 - 0x9202fff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/App
    licationServices.f ramework/Versions/A/ApplicationServices
    0x92030000 - 0x920dafe7  com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/C
    oreServices.framewor k/Versions/A/Frameworks/CFNetwork.framework/Versio ns/A/CFNetwork
    0x920db000 - 0x9211eff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/
    Carbon.framework/Vers ions/A/Frameworks/NavigationServices.framework/Ver sions/A/NavigationServices
    0x92124000 - 0x92128ff7 libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.frame
    work/Vers ions/A/Libraries/libGFXShared.dylib
    0x92129000 - 0x9216dff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.fr
    amewo rk/Versions/A/CoreUI
    0x92179000 - 0x921ddffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon
    .framework/Vers ions/A/Frameworks/HTMLRendering.framework/Versions /A/HTMLRendering
    0x921de000 - 0x92219feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/Applicati
    onServices.f ramework/Versions/A/Frameworks/ATS.framework/Versi ons/A/Resources/libFontRegistry.dylib
    0x9228f000 - 0x92294ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenD
    irectory.framewo rk/Versions/A/OpenDirectory
    0x92295000 - 0x922d4ff7  com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/
    ImageCaptureCore.fram ework/Versions/A/ImageCaptureCore
    0x922d5000 - 0x923b2ff7  com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.fra
    mework/ Versions/A/Frameworks/vImage.framework/Versions/A/ vImage
    0x923b3000 - 0x923cffe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbo
    n.framework/Vers ions/A/Frameworks/OpenScripting.framework/Versions /A/OpenScripting
    0x923d0000 - 0x923f0fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.
    dylib
    0x923f1000 - 0x92409ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/Ope
    nDirectory.framewo rk/Versions/A/Frameworks/CFOpenDirectory.framework /Versions/A/CFOpenDirectory
    0x92444000 - 0x92626fff  com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.fra
    mework/Vers ions/A/Frameworks/ImageKit.framework/Versions/A/Im ageKit
    0x9262a000 - 0x9262aff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x926fd000 - 0x9270fff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Librar
    y/PrivateFrameworks/MultitouchSupp ort.framework/Versions/A/MultitouchSupport
    0x92710 000 - 0x9276dff7  com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit
    .framework/Versi ons/A/IOKit
    0x9276f000 - 0x92928feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks
    /ApplicationServices.f ramework/Versions/A/Frameworks/ImageIO.framework/V ersions/A/ImageIO
    0x92929000 - 0x9292fff7 libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <DACD11D8-4B64-CD3B-C988-B1041E07D13A> /System/Libra
    ry/Frameworks/ApplicationServices.f ramework/Versions/A/Frameworks/CoreGraphics.framew ork/Versions/A/Resources/libCGXCoreImage.A.dyli
    b
    0x92930000 - 0x92a34fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto
    .0.9.8.dylib
    0x92a35000 - 0x92ab7ffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoun
    dation.fr amework/Versions/A/SecurityFoundation
    0x92b03000 - 0x92c31fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.f
    ramework/Ve rsions/A/CoreData
    0x92c32000 - 0x92c3dff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Fram
    eworks/ApplicationServices.f ramework/Versions/A/Frameworks/CoreGraphics.framew ork/Versions/A/Resources/libCSync.A.dylib
    0x92d3a0 00 - 0x92d40fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.
    framework/Vers ions/A/Frameworks/CommonPanels.framework/Versions/ A/CommonPanels
    0x92d41000 - 0x92e78ff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFramework
    s/CoreAUC.framew ork/Versions/A/CoreAUC
    0x92e79000 - 0x92e7bff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.f
    ramework/Vers ions/A/Frameworks/SecurityHI.framework/Versions/A/ SecurityHI
    0x92e7c000 - 0x92ed4fe7 com.apple.datadetectorscore 2.0 (80.7) <18C2FB6A-BF60-F838-768C-0306151C21DA> /System/Library/PrivateFramew
    orks/DataDetectorsC ore.framework/Versions/A/DataDetectorsCore
    0x92ed5 000 - 0x92f67fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Fram
    eworks/ApplicationServices.f ramework/Versions/A/Frameworks/PrintCore.framework /Versions/A/PrintCore
    0x92f68000 - 0x93005fe3 com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/Co
    reServices.framewor k/Versions/A/Frameworks/LaunchServices.framework/V ersions/A/LaunchServices
    0x93006000 - 0x93132ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFram
    eworks/MediaToolbox.f ramework/Versions/A/MediaToolbox
    0x93276000 - 0x93277ff7  com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFramew
    orks/TrustEvaluatio nAgent.framework/Versions/A/TrustEvaluationAgent
    0 x9329f000 - 0x9334dff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbo
    n.framework/Vers ions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x9 334e000 - 0x942a0fef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.com ponen
    t/Contents/MacOS/QuickTimeComponents
    0x942a1 000 - 0x942fbfe7  com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePD
    F.framew ork/Versions/A/CorePDF
    0x942fc000 - 0x944f9ff7 com.apple.JavaScriptCore 6533.19 (6533.19.1) <85A6BFDD-CBB6-7490-748D-8EA8B9B7FDD8> /System/Library/Framewo
    rks/JavaScriptCore.framew ork/Versions/A/JavaScriptCore
    0x944fa000 - 0x9452bff7  libGLImage.dylib ??? (???) <E3EC8E92-4DDD-E7B8-3D38-C5A5160A4930> /System/Library/Frameworks/OpenGL.framewo
    rk/Vers ions/A/Libraries/libGLImage.dylib
    0x9452c000 - 0x94550ff7  libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServic
    es.f ramework/Versions/A/Frameworks/ImageIO.framework/V ersions/A/Resources/libJPEG.dylib
    0x94551000 - 0x94601ff3  com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/Applica
    tionServices.f ramework/Versions/A/Frameworks/ColorSync.framework /Versions/A/ColorSync
    0x94635000 - 0x946a3ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Framework
    s/Quartz.framework/Vers ions/A/Frameworks/QuickLookUI.framework/Versions/A /QuickLookUI
    0x9474e000 - 0x9475eff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/Privat
    eFrameworks/DSObjCWrappers .framework/Versions/A/DSObjCWrappers
    0x94769000 - 0x9476aff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/Privat
    eFrameworks/MonitorPanel.f ramework/Versions/A/MonitorPanel
    0x94872000 - 0x9493cfef  com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Framewor
    ks/CoreServices.framewor k/Versions/A/Frameworks/OSServices.framework/Versi ons/A/OSServices
    0x9493d000 - 0x9494bff7 com.apple.opengl 1.6.12 (1.6.12) <9F13B279-F289-18AC-5D86-DCD52BAF087D> /System/Library/Frameworks/OpenGL.f
    ramework/Vers ions/A/OpenGL
    0x9494c000 - 0x9498cff3 com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks
    /SecurityInterface.fra mework/Versions/A/SecurityInterface
    0x949a6000 - 0x949f7ff7  com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/Applicat
    ionServices.f ramework/Versions/A/Frameworks/HIServices.framewor k/Versions/A/HIServices
    0x94a96000 - 0x94a99ff7 libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.fr
    amework/Vers ions/A/Libraries/libCoreVMClient.dylib
    0x94a9f000 - 0x94aaaff7  libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Ve
    rs ions/A/Libraries/libGL.dylib
    0x94aab000 - 0x94b61ff7  libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/Application
    Services.f ramework/Versions/A/Frameworks/ATS.framework/Versi ons/A/Resources/libFontParser.dylib
    0x94b62000 - 0x94b6aff7  com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrame
    works/DisplayService s.framework/Versions/A/DisplayServices
    0x94b8b000 - 0x94bc9ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/
    QuickLook.framework/V ersions/A/QuickLook
    0x94bca000 - 0x94bf1ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Qua
    rtz.framework/Vers ions/A/Frameworks/QuartzFilters.framework/Versions /A/QuartzFilters
    0x94bf2000 - 0x94c6dfff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/Private
    Frameworks/AppleVA.framew ork/Versions/A/AppleVA
    0x94c6e000 - 0x94d1efe3 com.apple.QuickTimeImporters.component 7.6.6 (1756) <9276DEF5-B027-75CD-A0EB-69709F903196> /System/Library/
    QuickTime/QuickTimeImporters.com ponent/Contents/MacOS/QuickTimeImporters
    0x94d1f00 0 - 0x94d1fff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework
    /Versi ons/A/Cocoa
    0x94d20000 - 0x94efbff3 libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/Applicatio
    nServices.f ramework/Versions/A/Frameworks/ATS.framework/Versi ons/A/Resources/libType1Scaler.dylib
    0x94fb1000 - 0x95001ff7  com.apple.framework.familycontrols 2.0.2 (2020) <AF7F86F1-F7BF-CBA8-7A4A-D8F7A19F9601> /System/Library/Priv
    ateFrameworks/FamilyControls .framework/Versions/A/FamilyControls
    0x95002000 - 0x95063fe7  com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/Applicatio
    nServices.f ramework/Versions/A/Frameworks/CoreText.framework/ Versions/A/CoreText
    0x950a0000 - 0x95313fe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Found
    ation.framework/ Versions/C/Foundation
    0x95314000 - 0x95344ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshK
    it.framew ork/Versions/A/MeshKit
    0x9539f000 - 0x95419fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/C
    oreAudio.framework/V ersions/A/CoreAudio
    0x9541a000 - 0x95420fe7 com.apple.CommerceCore 1.0 (6) <41C2A87D-93D8-56C1-9292-0400699F23C1> /System/Library/PrivateFrameworks/Com
    merceKit.fr amework/Versions/A/Frameworks/CommerceCore.framewo rk/Versions/A/CommerceCore
    0x95421000 - 0x9542eff7 com.apple.NetFS 3.2.1 (3.2.1) <A6443845-5815-2429-7649-C51A4B5E7DF9> /System/Library/Frameworks/NetFS.frame
    work/Versi ons/A/NetFS
    0x9542f000 - 0x95450fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.frame
    work/Vers ions/A/OpenCL
    0x9547b000 - 0x9547bff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Framewo
    rks/Accelerate.framework/ Versions/A/Frameworks/vecLib.framework/Versions/A/ vecLib
    0x9547c000 - 0x95486ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Libra
    ry/Frameworks/Carbon.framework/Vers ions/A/Frameworks/SpeechRecognition.framework/Vers ions/A/SpeechRecognition
    0x95487000 - 0x95780fef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTim
    e.framework/V ersions/A/QuickTime
    0x957a8000 - 0x95883feb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrame
    works/DesktopService sPriv.framework/Versions/A/DesktopServicesPriv
    0x9 5b94000 - 0x95bdaff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x95c20000 - 0x95c23fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/
    libmathCommon.A.dylib
    0x95c24000 - 0x95c24ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quart
    z.framework/Vers ions/A/Quartz
    0x95d81000 - 0x95da7ffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Framework
    s/CoreServices.framewor k/Versions/A/Frameworks/DictionaryServices.framewo rk/Versions/A/DictionaryServices
    0x95da8000 - 0x95dd2ff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Short
    cut.frame work/Versions/A/Shortcut
    0x95e14000 - 0x95e14ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framewo
    rk/Vers ions/A/Carbon
    0x95e15000 - 0x95f16fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dyl
    ib
    0x95f17000 - 0x95f5effb com.apple.CoreMediaIOServices 134.0 (1160) <D4F40A28-4E31-3210-7C2B-59D8A1903FB2> /System/Library/PrivateFr
    ameworks/CoreMediaIOSer vices.framework/Versions/A/CoreMediaIOServices
    0x9 5f98000 - 0x95f9cff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/V
    ersions/A/IOSurface
    0x95f9d000 - 0x95fa4ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Framewor
    ks/Carbon.framework/Vers ions/A/Frameworks/Print.framework/Versions/A/Print
    0x95fa5000 - 0x95fe2ff7  com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFramewo
    rks/CoreMedia.fram ework/Versions/A/CoreMedia
    0x95fe3000 - 0x96020ff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Framew
    orks/SystemConfiguration.f ramework/Versions/A/SystemConfiguration
    0x96035000 - 0x961b7fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.
    A.dylib
    0x96c04000 - 0x96c23ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVide
    o.framework/V ersions/A/CoreVideo
    0x96c24000 - 0x96c24ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks
    /Accelerate.framework/ Versions/A/Accelerate
    0x96c3b000 - 0x96fa6ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/Quart
    zCore.framework/ Versions/A/QuartzCore
    0x96fa7000 - 0x97060fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dyl
    ib
    0x97061000 - 0x97075ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Libra
    ry/Frameworks/ApplicationServices.f ramework/Versions/A/Frameworks/SpeechSynthesis.fra mework/Versions/A/SpeechSynthesis
    0x97076000 - 0x9752fffb  com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFram
    eworks/VideoToolbox.f ramework/Versions/A/VideoToolbox
    0x97530000 - 0x97571ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Framew
    orks/ApplicationServices.f ramework/Versions/A/Frameworks/CoreGraphics.framew ork/Versions/A/Resources/libRIP.A.dylib
    0x9763b000 - 0x9763bff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.
    framework/Vers ions/A/vecLib
    0x9763c000 - 0x9765efef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Fra
    meworks/DirectoryService.fram ework/Versions/A/DirectoryService
    0x9765f000 - 0x97983fef  com.apple.HIToolbox 1.6.4 (???) <4699C8BB-DE74-C530-564B-D131F74C9B54> /System/Library/Frameworks/Carbon.fr
    amework/Vers ions/A/Frameworks/HIToolbox.framework/Versions/A/H IToolbox
    0x97997000 - 0x97d7dffb com.apple.RawCamera.bundle 3.4.1 (546) <557C094F-BF8D-B298-E502-C4EE78914C55> /System/Library/CoreServices/
    RawCamera.bundle/Co ntents/MacOS/RawCamera
    0x97e8e000 - 0x97fd1fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framew
    ork/Versi ons/A/QTKit
    0x97fd2000 - 0x98004fe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/Applica
    tionServices.f ramework/Versions/A/Frameworks/ATS.framework/Versi ons/A/Resources/libTrueTypeScaler.dylib
    0x98005000 - 0x98007ff7  libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationSe
    rvices.f ramework/Versions/A/Frameworks/ImageIO.framework/V ersions/A/Resources/libRadiance.dylib
    0x9803d000 - 0x98052fff  com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carb
    on.framework/Vers ions/A/Frameworks/ImageCapture.framework/Versions/ A/ImageCapture
    0x98053000 - 0x98067fe7 libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x98362000 - 0x985c5fff com.apple.security 6.1.1 (37594) <B6F2A8BF-C1B7-A0E2-83FB-4FF265E9BDDC> /System/Library/Frameworks/Security
    .framework/Ve rsions/A/Security
    0x985c6000 - 0x985d7ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/Appl
    icationServices.f ramework/Versions/A/Frameworks/LangAnalysis.framew ork/Versions/A/LangAnalysis
    0x985d8000 - 0x98670fe7  edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos
    .framework/Ve rsions/A/Kerberos
    0x98671000 - 0x987ecfe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/C
    oreFoundation.framew ork/Versions/A/CoreFoundation
    0x9882e000 - 0x9893aff7  libGLProgrammability.dylib ??? (???) <A077BFEA-19C6-9F48-2F36-8E4E55376F49> /System/Library/Frameworks/Open
    GL.framework/Vers ions/A/Libraries/libGLProgrammability.dylib
    0x9893 b000 - 0x98945fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Framework
    s/Carbon.framework/Vers ions/A/Frameworks/CarbonSound.framework/Versions/A /CarbonSound
    0x98946000 - 0x9899cff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFramework
    s/MeshKit.framew ork/Versions/A/Frameworks/MeshKitRuntime.framework /Versions/A/MeshKitRuntime
    0x989d0000 - 0x98b77ff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B
    .dylib
    0x98b78000 - 0x98f8eff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Framewor
    ks/Accelerate.framework/ Versions/A/Frameworks/vecLib.framework/Versions/A/ libBLAS.dylib
    0x990c3000 - 0x999a3ff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.f
    ramework/Vers ions/C/AppKit
    0x999c6000 - 0x99a3fff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.fra
    mework/Vers ions/A/Frameworks/PDFKit.framework/Versions/A/PDFK it
    0x99a40000 - 0x99a40ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServic
    es.framewor k/Versions/A/CoreServices
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <B339B85B-1B6D-81D8-1281-7B8C8A517329> /System/Libr
    ary/CoreServices/Encodings/libJapane seConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EF3E3210-927F-DB9F-4CD4-4039A2AE2F84> /System/Librar
    y/CoreServices/Encodings/libKorean Converter.dylib
    0xbb100000 - 0xbb103fe7 libLatinSuppConverter.dylib 49.0.0 (compatibility 1.0.0) <80CA35C5-AFBF-DD2D-B47B-9CE773B9CAEF> /System/Lib
    rary/CoreServices/Encodings/libLatinS uppConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: iMac10,1, BootROM IM101.00CC.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 8 GB, SMC 1.53f13
    Graphics: ATI Radeon HD 4670, ATI Radeon HD 4670, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 2.1.14.5
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 0 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528ASQ, 931.51 GB
    Serial ATA Device: OPTIARC DVD RW AD-5680H
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0x24400000
    USB Device: iPhone, 0x05ac  (Apple Inc.), 0x1297, 0x26200000
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000

    Another one happened - similar (but different) machine
    Version:         1.0.5 (???)
    Code Type:       X86 (Native)Parent Process:  launchd [107]
    Date/Time:       2011-01-31 14:48:47.051 -0500OS Version:      Mac OS X 10.6.6 (10J567)Report Version:  6
    Interval Since Last Report:          922246 secCrashes Since Last Report:           19Per-App Interval Since Last Report:  299 secPer-App Crashes Since Last Report:   1Anonymous UUID:                      AAC72C73-DE29-47B2-A2C9-E016B22E0071
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000020310000Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread0   com.adobe.AIR                     0x02feac4e XC_RSA_Decrypt_Zeroes_Coding_Lithium + 17755181   com.adobe.AIR                     0x02febfff XC_RSA_Decrypt_Zeroes_Coding_Lithium + 17805592   com.adobe.AIR                     0x02fed09d XC_RSA_Decrypt_Zeroes_Coding_Lithium + 17848133   com.adobe.AIR                     0x02fef214 XC_RSA_Decrypt_Zeroes_Coding_Lithium + 17933804   com.adobe.AIR                     0x030a27dc r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 2050295   com.adobe.AIR                     0x030a2911 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 2053386   com.adobe.AIR                     0x030f32ca r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 5355077   com.adobe.AIR                     0x032480a1 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 19316908   ???                               0x1a66c9bc 0 + 4429439329   com.adobe.AIR                     0x031a2860 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 125373710  WebKit.dylib                      0x17167125 WebKitGetAPI + 490649711  WebKit.dylib                      0x16e1b86a WebKitGetAPI + 145133412  ???                               0x1b22536b 0 + 45523441113  WebKit.dylib                      0x16db5a42 WebKitGetAPI + 103401414  WebKit.dylib                      0x16d1cb6c WebKitGetAPI + 40762415  WebKit.dylib                      0x16d1cbc2 WebKitGetAPI + 40771016  WebKit.dylib                      0x17167ce6 WebKitGetAPI + 490950617  com.adobe.AIR                     0x0319de21 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 123473018  com.adobe.AIR                     0x0312b6ca r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 76590719  com.adobe.AIR                     0x031285f8 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 75340920  com.adobe.AIR                     0x03127ad7 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 75056021  com.adobe.AIR                     0x0312bf1b r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 76803622  com.adobe.AIR                     0x0312e26f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 77708023  com.adobe.AIR                     0x0321ece2 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 176279524  com.adobe.AIR                     0x03220a56 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 177033525  com.adobe.AIR                     0x0308dec8 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 12078526  com.adobe.AIR                     0x02d70947 0x2d5a000 + 9248727  com.apple.Foundation              0x9019ae80 __NSThreadPerformPerform + 70528  com.apple.CoreFoundation          0x91336361 __CFRunLoopDoSources0 + 120129  com.apple.CoreFoundation          0x91333f8f __CFRunLoopRun + 107130  com.apple.CoreFoundation          0x91333464 CFRunLoopRunSpecific + 45231  com.apple.CoreFoundation          0x91333291 CFRunLoopRunInMode + 9732  com.apple.HIToolbox               0x9752b004 RunCurrentEventLoopInMode + 39233  com.apple.HIToolbox               0x9752adbb ReceiveNextEventCommon + 35434  com.apple.HIToolbox               0x9752ac40 BlockUntilNextEventMatchingListInMode + 8135  com.apple.AppKit                  0x988f378d _DPSNextEvent + 84736  com.apple.AppKit                  0x988f2fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 15637  com.apple.AppKit                  0x988b5247 -[NSApplication run] + 82138  com.adobe.AIR                     0x02d5dc98 0x2d5a000 + 1551239  com.adobe.AIR                     0x02d5dfde 0x2d5a000 + 16350Thread 1:  Dispatch queue: com.apple.libdispatch-manager0   libSystem.B.dylib                 0x97c40982 kevent + 101   libSystem.B.dylib                 0x97c4109c _dispatch_mgr_invoke + 2152   libSystem.B.dylib                 0x97c40559 _dispatch_queue_invoke + 1633   libSystem.B.dylib                 0x97c402fe _dispatch_worker_thread2 + 2404   libSystem.B.dylib                 0x97c3fd81 _pthread_wqthread + 3905   libSystem.B.dylib                 0x97c3fbc6 start_wqthread + 30
    Thread 2:0   libSystem.B.dylib                 0x97c1a142 semaphore_wait_signal_trap + 101   libSystem.B.dylib                 0x97c47cfc _pthread_cond_wait + 10892   libSystem.B.dylib                 0x97c9046f pthread_cond_wait + 483   com.adobe.AIR                     0x0323c227 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18829284   com.adobe.AIR                     0x030911ca r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1338435   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835446   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836667   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838218   libSystem.B.dylib                 0x97c4785d _pthread_start + 3459   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 3:0   libSystem.B.dylib                 0x97c1a142 semaphore_wait_signal_trap + 101   libSystem.B.dylib                 0x97c47cfc _pthread_cond_wait + 10892   libSystem.B.dylib                 0x97c9046f pthread_cond_wait + 483   com.adobe.AIR                     0x0323c227 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18829284   com.adobe.AIR                     0x030911ca r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1338435   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835446   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836667   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838218   libSystem.B.dylib                 0x97c4785d _pthread_start + 3459   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 4:0   libSystem.B.dylib                 0x97c1a142 semaphore_wait_signal_trap + 101   libSystem.B.dylib                 0x97c47cfc _pthread_cond_wait + 10892   libSystem.B.dylib                 0x97c9046f pthread_cond_wait + 483   com.adobe.AIR                     0x0323c227 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18829284   com.adobe.AIR                     0x030911ca r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1338435   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835446   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836667   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838218   libSystem.B.dylib                 0x97c4785d _pthread_start + 3459   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 5:0   libSystem.B.dylib                 0x97c1a142 semaphore_wait_signal_trap + 101   libSystem.B.dylib                 0x97c47cfc _pthread_cond_wait + 10892   libSystem.B.dylib                 0x97c9046f pthread_cond_wait + 483   com.adobe.AIR                     0x0323c227 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18829284   com.adobe.AIR                     0x030911ca r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1338435   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835446   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836667   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838218   libSystem.B.dylib                 0x97c4785d _pthread_start + 3459   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 6:0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 101   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 10662   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 473   com.adobe.AIR                     0x0323c269 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18829944   com.adobe.AIR                     0x0324fb16 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 19630395   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835446   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836667   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838218   libSystem.B.dylib                 0x97c4785d _pthread_start + 3459   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 7:0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 101   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 10662   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 473   com.adobe.AIR                     0x0323c269 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18829944   com.adobe.AIR                     0x03348063 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 29802045   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835446   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836667   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838218   libSystem.B.dylib                 0x97c4785d _pthread_start + 3459   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 8:0   libSystem.B.dylib                 0x97c1a0fa mach_msg_trap + 101   libSystem.B.dylib                 0x97c1a867 mach_msg + 682   com.apple.CoreFoundation          0x9133437f __CFRunLoopRun + 20793   com.apple.CoreFoundation          0x91333464 CFRunLoopRunSpecific + 4524   com.apple.CoreFoundation          0x91333291 CFRunLoopRunInMode + 975   com.apple.Foundation              0x901bd7d0 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 3296   com.apple.Foundation              0x90184bf0 -[NSThread main] + 457   com.apple.Foundation              0x90184ba0 __NSThread__main__ + 14998   libSystem.B.dylib                 0x97c4785d _pthread_start + 3459   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 9:  com.apple.CFSocket.private0   libSystem.B.dylib                 0x97c390c6 select$DARWIN_EXTSN + 101   com.apple.CoreFoundation          0x91373c83 __CFSocketManager + 10912   libSystem.B.dylib                 0x97c4785d _pthread_start + 3453   libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 10:0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 101   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 10662   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 473   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 3799994   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1286865   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1290676   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835447   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836668   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838219   libSystem.B.dylib                 0x97c4785d _pthread_start + 34510  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 11:0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 101   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 10662   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 473   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 3799994   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1286865   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1290676   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835447   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836668   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838219   libSystem.B.dylib                 0x97c4785d _pthread_start + 34510  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 12:0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 101   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 10662   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 473   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 3799994   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1286865   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1290676   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835447   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836668   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838219   libSystem.B.dylib                 0x97c4785d _pthread_start + 34510  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 13:0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 101   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 10662   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 473   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 3799994   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1286865   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1290676   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18835447   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18836668   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 18838219   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 28:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 29:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 30:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 31:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 32:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 33:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 34:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 35:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 36:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 37:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 38:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 39:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 40:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 41:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 42:
    0   libSystem.B.dylib                 0x97c3fa12 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x97c3ffa8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x97c3fbc6 start_wqthread + 30
    Thread 43:
    0   libSystem.B.dylib                 0x97c3fa12 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x97c3ffa8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x97c3fbc6 start_wqthread + 30
    Thread 44:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 45:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 46:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 47:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 48:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821
    9   libSystem.B.dylib                 0x97c4785d _pthread_start + 345
    10  libSystem.B.dylib                 0x97c476e2 thread_start + 34
    Thread 49:
    0   libSystem.B.dylib                 0x97c1a15a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x97c47ce5 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x97c76ac8 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.AIR                     0x030cd356 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 379999
    4   com.adobe.AIR                     0x0308fda5 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 128686
    5   com.adobe.AIR                     0x0308ff22 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 129067
    6   com.adobe.AIR                     0x0323c48f r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883544
    7   com.adobe.AIR                     0x0323c509 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883666
    8   com.adobe.AIR                     0x0323c5a4 r_0sxkwv70f9yg6kbm41b3d14u0dvqsem0nnvh83 + 1883821

  • Do synthesized instance variables work in iPhone SDK?

    I tried using Obj-C properties to synthesize not only the accessor methods, but also the instance variable. I ended up with an error saying something like "...must explicitly name an ivar...".
    I was under the impression the iPhone ran the modern (64-bit) Objective-C runtime. I'm using xCode 3.x and iPhone SDK 2.2. Are synthesized instance variables not supported, or do I need to change some xCode/project configuration settings to activate this support (I'd really like to use it)?
    Does the fact that I'm linking to the Sen Test Kit Framework, or running on a relatively old Intel MacBook Pro cause this problem? If the 2.2 SDK does not support synthesized instance variables, does iPhone SDK 3.0 beta support them?
    Note that I would need the synthesized ivar support to work on the iPhone simulator too (obviously) so that I can do testing. Hopefully the iPhone simulator supports the modern Obj-C 2.0 runtime.
    Thank You,
    Eric

    orangekay wrote:
    A. I don't see that anywhere in the Objective-C 2.0 language specification, so I don't believe this has anything to do with the iPhone SDK.
    B. I don't see any point in adding such a thing to the language as it accomplishes nothing that could not be handled with a standard ivar declaration.
    This sounds like a feature you imagined.
    Yeah, right I imagined it. Get a clue, will you?
    http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Articles/oc Properties.html#//apple_ref/doc/uid/TP30001163-CH17-SW3
    In general the behavior of properties is identical on all runtimes (see Runtime Versions and Platforms in Objective-C 2.0 Runtime Programming Guide). There is one key difference: the modern runtime supports instance variable synthesis whereas the legacy runtime does not.
    For @synthesize to work in the legacy runtime, you must either provide an instance variable with the same name and compatible type of the property or specify another existing instance variable in the @synthesize statement. With the modern runtime, if you do not provide an instance variable, the compiler adds one for you. For example, given the following class declaration and implementation:
    @interface MyClass : NSObject {
    float sameName;
    float otherName;
    @property float sameName;
    @property float differentName;
    @property float noDeclaredIvar;
    @end
    @implementation MyClass
    @synthesize sameName;
    @synthesize differentName=otherName;
    @synthesize noDeclaredIvar;
    @end
    the compiler for the legacy runtime would generate an error at @synthesize noDeclaredIvar; whereas the compiler for the modern runtime would add an instance variable to represent noDeclaredIvar.

  • System-wide alarm in iPhone SDK

    Is there an equivalent of CalAlarm class in the iPhone SDK? Does anyone know how else we can set a system-wide alarm?

    Until push notification is added to the SDK, you cannot set a system-wide alarm.

  • IPhone SDK - trouble working with iPod Touch 2G

    Hello, new Macbook OSX 10.5.4, new iPod Touch running iPhone OS 2.1. Just downloaded and installed xcode 3.1.1 and newest iPhone SDK.
    I read the iPhone OS Pre-Installation Advisory document found here:
    http://developer.apple.com/iphone/download.action?path=/iphone/iphoneos_software_preinstallation_advisory/iphone_os_2.1_preinstallationadvisory.pdf
    I created shortcut:
    .../iPhoneOS.platform/DeviceSupport/2.1.1/
    pointed to:
    .../iPhoneOS.platform/DeviceSupport/2.1/
    Checked the shortcut, it works.
    Start xcode, open Window->Orgnizer. "Xcode cannot find the software image to install this version" is showing up just below the "Software Version" line. Software version has a value of 2.1.1 (5F138).
    If I ignore this and continue to build, sign and try the application. I will receive an error message "Your mobile device has encountered an unexpected error (0xE800003A) during the install phase: Verifying application" I tried disconnect the iPod Touch, power off, power on. Same problem.
    I tried to make a complete copy in (not a shortcut):
    .../iPhoneOS.platform/DeviceSupport/2.1.1/
    Same problem.
    What should I do to trace this issue?

    I wanted to compile and upload the sample app Accelerometer Graph onto my brand new ipod touch 16.
    I got the notorious error (0xE800003A) during the install phase, verifying.
    i checked all the product id#'s which i just copied/pasted when creating the certificates etc.... so i don't know what's wrong... so what IS wrong?
    here's the logs:
    ==== Attached at 2008-09-25 17:04:27 -0400 ====
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: urn IOSDIOController::enumerateSlot(UInt8, bool): Found SDIO I/O device. Function count(2), memory(0)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: IOReturn IOSDIOIoCardDevice::parseCIS(): Device manufacturer Id(4d50), Product Id(4d48)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::init(): Starting with debug level: 4, debug flags: 00000000
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::start()
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::initHardware(): BCM4325 revision D0
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: read new style signature 0x43313131 (line:281)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] VSVFL Register [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] VFL Init [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: detected HBPP. driver will be kept alive
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: enabled power, scheduled bootloading
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: BCM4325 Firmware Version: wl0: Sep 1 2008 14:42:30 version 4.173.4.0
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::initFirmware(): successful initialization
    Thu Sep 25 17:04:17 unknown com.apple.launchd[1] <Notice>: Bug: launchd.c:228 (23506):19: mount("fdesc", "/dev", MNT_UNION, NULL) != -1
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: Bug: launchctl.c:2907 (23614):2: sysctl(nbmib, 2, &nb, &nbsz, NULL, 0) == 0
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: /dev/disk0s1 on / (hfs, local, read-only, noatime)
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: /dev/disk0s2 on /private/var (hfs, local, nodev, nosuid, noatime)
    Thu Sep 25 17:04:18 unknown com.apple.launchctl.System[2] <Notice>: launchctl: Couldn't stat("/etc/mach_init.d"): No such file or directory
    Thu Sep 25 17:04:19 unknown com.apple.launchd[1] <Warning>: open("/var/logs/BTServer/stdout", ...): No such file or directory
    Thu Sep 25 17:04:19 unknown com.apple.launchd[1] <Warning>: open("/var/logs/BTServer/stderr", ...): No such file or directory
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325: Ethernet address 00:22:41:c3:88:2c
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleBCM4325::setPowerStateGated() : Powering On
    Thu Sep 25 17:04:19 unknown mDNSResponder mDNSResponder-178.2 (Aug 10 2008 22:56:13)[17] <Error>: starting
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: downloaded 128 bytes of prox calibration data ("built-in")
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: downloaded 256 bytes of calibration data ("built-in")
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleD1759PMUPowerSource: AppleUSBCableDetect 1
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleSynopsysOTG2::handleUSBCableConnect cable connected, but don't have device configuration yet
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleMultitouchZ2SPI: downloaded 48612 bytes of firmware data ("0x0051.bin") in 149ms.
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: AppleS5L8720XFMSS::_fmssInitCmdsAndCEMaskCtrl: VendorSpecific: VSCMDSIMPLE
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] VFL_Open [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] YAFTL Register [OK]
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: [FTL:MSG] FTL_Open [OK]
    Thu Sep 25 17:04:19 unknown /usr/sbin/fairplayd[20] <Notice>: Vroum
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: Got boot device = IOService:/AppleARMPE/arm-io/AppleS5L8720XIO/flash-controller0@A00000/AppleS5L8 720XFMSS/disk@FF/AppleNANDFTL/IOFlashBlockDevice/IOBlockStorageDriver/unknown vendor unknown product Media/IOFDiskPartitionScheme/Untitled 1@1
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: BSD root: disk0s1, major 14, minor 1
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: Jettisoning kernel linker.
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: mDNSResponder[17] syscallbuiltinprofile: mDNSResponder (seatbelt)
    Thu Sep 25 17:04:19 unknown kernel[0] <Debug>: mDNSResponder[17] Builtin profile: mDNSResponder (seatbelt)
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: BTServer 1.2 () Modified on
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: com.apple.server.bluetooth: Bluetooth Super Server Robot Destroyer
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: com.apple.server.bluetooth: Got local-mac-address: 00:22:41:c1:42:29
    Thu Sep 25 17:04:20 unknown com.apple.BTServer[26] <Notice>: machport is com.apple.server.bluetooth
    Thu Sep 25 17:04:20 unknown lockdownd[15] <Error>: (0x3941d6d0) lookupimei: Could not get matching service for baseband
    Thu Sep 25 17:04:21 unknown mDNSResponder[17] <Error>: Note: SetDomainSecrets: no keychain support
    Thu Sep 25 17:04:21 unknown com.apple.BTServer[26] <Notice>: Cannot read termcap database;
    Thu Sep 25 17:04:21 unknown com.apple.BTServer[26] <Notice>: using dumb terminal settings.
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Opening /dev/cu.bluetooth @ 115200 baud.
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: bluetooth wake is now ON
    Thu Sep 25 17:04:22 unknown com.apple.itunesstored[18] <Notice>: Couldn't open shared capabilities memory GSCapabilities (No such file or directory)
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: bluetooth reset was pulsed 100 ms
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Issued HCI Reset
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Sending UpdateUART_BaudRate
    Thu Sep 25 17:04:22 unknown com.apple.BTServer[26] <Notice>: Setting local baud rate
    Thu Sep 25 17:04:23 unknown configd[21] <Notice>: CLTM: No thermal sensors detected, not registering for notifications
    Thu Sep 25 17:04:24 unknown kernel[0] <Debug>: en0: setting diversity to: -1
    Thu Sep 25 17:04:24 unknown lockbot[30] <Error>: copy_preference: Could not ssetgid to 501: Operation not permitted
    Thu Sep 25 17:04:24 unknown kernel[0] <Debug>: en0: setting tx antenna: -1
    Thu Sep 25 17:04:24 unknown lockbot[31] <Error>: copy_preference: Could not ssetgid to 501: Operation not permitted
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) sanitizedevicename: Could not convert device name into buffer
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80cc00) calculateapplicationusage: Calculating the application usage
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) ping_configd: Could not sanitize device name
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) load_systemversion: Could not lookup release type
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) extract_recordidentifier: Could not extract ICCID from account token
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) loadactivationrecords: Could not extract ICCID from record
    Thu Sep 25 17:04:24 unknown lockdownd[15] <Error>: (0x80be00) loadactivationrecords: This is the iPod activation record
    Thu Sep 25 17:04:24 unknown configd[21] <Notice>: setting hostname to "iPod"
    Thu Sep 25 17:04:25 unknown lockdownd[15] <Error>: (0x80be00) determineactivationstate: The original activation state is Activated
    Thu Sep 25 17:04:25 unknown lockdownd[15] <Error>: (0x80be00) determineactivationstate: SIM status: kCTSIMSupportSIMStatusReady
    Thu Sep 25 17:04:25 unknown lockdownd[15] <Error>: (0x80be00) determineactivationstate: The activation state has not changed.
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 - Configuration: PTP
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: PTP
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 - Configuration: iPod USB Interface
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: USBAudioControl
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: USBAudioStreaming
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: IapOverUsbHid
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 - Configuration: PTP + Apple Mobile Device
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2 Interface: AppleUSBMux
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function USBAudioControl
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: IOAccessoryPortUSB::start
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function IapOverUsbHid
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: virtual bool AppleUSBDeviceMux::start(IOService*) build: Aug 10 2008 22:34:20
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: init_waste
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function USBAudioStreaming
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function AppleUSBMux
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction Register function PTP
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::gated_registerFunction all functions registered- we are ready to start usb stack
    Thu Sep 25 17:04:26 unknown kernel[0] <Debug>: AppleSynopsysOTG2::handleUSBReset
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Current Device: UART - /dev/cu.bluetooth
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Setting speed to 115200
    Thu Sep 25 17:04:26 unknown /usr/libexec/ptpd[12] <Notice>: PTP interface bas been activated at high speed.
    Thu Sep 25 17:04:26 unknown SpringBoard[22] <Warning>: Not monitoring for AOS notifications since they are not enabled by user defaults.
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending UpdateUART_BaudRate
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Setting local baud rate
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Using env variable: BTDEVICEADDRESS = 00:22:41:c1:42:29
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending WriteBDADDR
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Using host name: iPod
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending WriteLocalName: iPod
    Thu Sep 25 17:04:26 unknown com.apple.BTServer[26] <Notice>: Sending SetSleepmodeParam
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: com.apple.server.bluetooth: Server attached, going into msg loop.
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Cannot read termcap database;
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: using dumb terminal settings.
    Thu Sep 25 17:04:27 unknown afcd[35] <Error>: user mobile has uid 501
    Thu Sep 25 17:04:27 unknown afcd[35] <Error>: mode is 0x41e8
    Thu Sep 25 17:04:27 unknown configd[21] <Notice>: WiFi: Currently not associated. Beginning auto join sequence.
    Thu Sep 25 17:04:27 unknown configd[21] <Notice>: WiFi: External power source attached
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Opening /dev/cu.bluetooth @ 2400000 baud.
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: bluetooth wake is now ON
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Issued HCI Reset
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: Sending SetSleepmodeParam
    Thu Sep 25 17:04:27 unknown com.apple.BTServer[26] <Notice>: bluetooth wake is now OFF
    Thu Sep 25 17:04:28 unknown lockdownd[15] <Error>: (0x81c200) set_timezone: Setting the time zone to /usr/share/zoneinfo/US/Eastern
    Thu Sep 25 17:04:28 unknown com.apple.mediaserverd[16] <Notice>: mediaserverd: 17:04:28.136 StreamUSBAspen.cpp[163]: GetCurrentPhysicalFormat(): ERROR: No HAL stream format corresponding to the current iAP digital audio sample rate 0 Hz
    Thu Sep 25 17:04:32 unknown itunesstored[18] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x10c620>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:32 unknown iapd[19] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x20b290>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:32 unknown afcd[56] <Error>: user mobile has uid 501
    Thu Sep 25 17:04:32 unknown afcd[56] <Error>: mode is 0x41e8
    Thu Sep 25 17:04:34 unknown SpringBoard[22] <Warning>: lockdown says the device is: [Activated], state is 3
    Thu Sep 25 17:04:34 unknown /System/Library/CoreServices/SpringBoard.app/SpringBoard[22] <Notice>: CLTM: initial thermal level is 0
    Thu Sep 25 17:04:35 unknown securityd[32] <Error>: misagent[60] SecItemCopyMatching: missing entitlement
    Thu Sep 25 17:04:36 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:36 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. auto-generating notification 'com.apple.itunes-mobdev.syncWillStart' for (
    <SBSyncController: 0x2ad960>
    Thu Sep 25 17:04:36 unknown itunesstored[18] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x10c620>. posting local notification for distributed notification: com.apple.springboard.syncingUnblocked
    Thu Sep 25 17:04:36 unknown iapd[19] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x20b290>. posting local notification for distributed notification: com.apple.springboard.syncingUnblocked
    Thu Sep 25 17:04:37 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. posting local notification for distributed notification: com.apple.springboard.syncingUnblocked
    Thu Sep 25 17:04:37 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. auto-generating notification 'com.apple.itunes-mobdev.syncWillStart' for (
    <ABRingtoneManager: 0x2c5660>,
    <SBVODController: 0x2c5d70>
    Thu Sep 25 17:04:37 unknown SpringBoard[22] <Warning>: INFO:: ITSyncHelper <ITSyncHelper: 0x232830>. posting local notification for distributed notification: com.apple.itunes-mobdev.syncWillStart
    Thu Sep 25 17:04:37 unknown securityd[32] <Error>: mobileimagemou[54] SecItemCopyMatching: missing entitlement

  • IPhone SDK to iPhone...?

    Hi,
    I know this long post may seem very disturbing to some members, but it is important for me to post it.
    Today (July 12th), I have struggled, and struggled, and struggled to try and use the iPhone SDK on a PPC based mac. And yes, I did succeed! I had to modify Xcode & iPhone simulator in several ways to make it build & run properly. I have started to learn how to use Interface builder for iPhone.
    However, I was not aware that the $99 dollar fee was to get your app onto the iPhone, I though the fee was for getting your app on to the app store. I was so disappointed that after about 4 hours of fiddling around Finder & hidden files to modify Xcode, I wouldn't be able to try my application on my father's iPod Touch.
    So then, I tried different methods:
    1. I did it the traditional way; plugging in the iTouch and using "organizer" in Xcode to sync. It gave me the well known error message that verification had failed.
    2. I set the SDK to "device iPhone 2.0", so that Xcode would build my test app as an "iPhoneos-release" app. Then, I dragged the resulting application into iTunes/Applications (via iTunes itself). Worked fine. Pressed sync, and it gave me the famous warning that the app failed verification. I wasn't very pleased.
    So now here I am. I do not want to sell or place anything on the App Store. All I would like is to develop applications for my father's iTouch. I have been developing AppleScript Studio apps for about 3 years now, a new platform is interesting. I am aware that some organisation created a Mac OS X application named "Pwnage" and that would let me install my app on the iPod Touch. However, it's a hack, and I really do NOT want to hack the device.
    My end question would be, is there any way to "bypass" the $99 fee? I only want the app for my family's personal use.
    Regards,
    Philippe H.

    But don't you need a server for ad-hoc stuff?
    http://www.tuaw.com/2008/06/11/what-does-ad-hoc-app-distribution-mean-for-users/
    Also, the mini-app would really be for personal use, so I don't think the app store is right for that.

  • Launchd_core_logic.c error on iPhone SDK 3.1

    Hi,
    I am running release version of the app on the iPhone, it works fine. There is no error messages in the XCode debugger:
    Running…
    [Switching to thread 11779]
    [Switching to thread 11779]
    sharedlibrary apply-load-rules all
    (gdb) continue
    [Switching to thread 12291]
    [Switching to thread 11779]
    [Switching to thread 13059]
    Debugger stopped.
    Program exited with status value:0.
    However I see these messages in the console of iPhone when connect to it via Organizer:
    Wed Oct 7 15:37:01 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.blah.blah[0x830c]) Bug: launchdcorelogic.c:2649 (23909):10
    Wed Oct 7 15:37:01 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.blah.blah[0x830c]) Working around 5020256. Assuming the job crashed.
    Wed Oct 7 15:37:01 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.blah.blah[0x830c]) Job appears to have crashed: Segmentation fault
    Wed Oct 7 15:37:01 unknown com.apple.debugserver-43[6124] <Warning>: 1 [17ec/1603]: error: ::read ( 7, 0x28091c, 1024 ) => -1 err = Bad file descriptor (0x00000009)
    Wed Oct 7 15:37:01 unknown SpringBoard[25] <Warning>: Application 'blah' exited abnormally with signal 11: Segmentation fault
    There is no crash logs created, so I don't think it is a crash.
    What is it? Is it a problem, even though application works perfectly fine?
    Thanks

    I am also experiencing this problem.
    Our application used to work perfectly fine, then suddenly this situation appeared :/ And in our case, this is serious problem, because we save application state using archiveRootObject:toFile method of NSKeyedArchiver class in applicationWillTerminate, and due to this crash, our root object do not get saved so we can not restore application state!
    Of course, everything works perfectly on simulator...
    I tried installation new iPhone OS (had 3.0.1, now 3.1.2), also installed newer version of iPhone SDK with new Xcode - of course - did not help. Tried installing application from other computer, tried installing other application, which used to work - nothing - problem remains. Really fantastic...
    I wonder whether this problem with iPhone device or something else. As for now, I don't have possibility to check if this situation is present on other device.
    Any help will be greatly appreciated!

  • My iphone 5 keeps crashing all the time and has a delay of about 3 seconds when doing anything on it i did a factory restore on it but it didnt fix the problem

    my iphone 5 keeps crashing all the time and has a delay of about 3 seconds when doing anything on it i did a factory restore on it but it didnt fix the problem i went to optus to see if they could help me as my phone is through them but they knew nothing i need help please my phone is only 8 months old

    Plug the device into a wall outlet and leave it for about 20 minutes. If it has not powered on at that point try a reset by pressing and holding the home and power buttons for about 15 seconds until the white Apple logo appears.

Maybe you are looking for

  • Poor network performanc​e Pavilion 500

    Has anyone ran into and solved an ethernet performance issue on the HP Pavillion 500 (500-047cb) where the nic is unable to acheive speeds of 20MB/sec or higher?  The max download performance of my current card is in 5MB range.   The same computer ge

  • CP-8831-K9= not available in CCW

    Since last week CP-8831-K9= is not available in the Cisco Commerce Workspace (I'm in EMEA). I can add it but no pricing is shown for it. Does anyone know why this is?

  • Boot camp or Parallels with Late 2008 MBP 2.8

    Does anyone have any experience yet? I need to use Adobe CS3, Wordperfect X3, and Autocad 2009. I still wanted the new MBP so I ordered it and it will be here next week. I will be running XP Pro. Which is the more useful platform Parallels or BC.

  • Missing Inbound Interface under Edit Service for Business System

    Hello All, I have to configure a Scenario at Integration Directory. Import from IR already done. When i try to configure a Service under Party\Service\Business System I am not able to find the special IDoc type (here) PROJECT:PROJECT01 under register

  • HT4993 Do not disturb feature

    Do not disturb feature is on but locks out my favorites also.  Help