Mini 205 330

   TOSHIBA PLEASE DO NOT LEAVE US WITH THIS BIG PROBLEM 
I am having  problem with netbook 205  33O. Very faint sound not loud enough to really hear

It might well be correct in that the driver may not be Intel compatible. What I suggest you do is go to the SpeedTouch web site…
http://www.speedtouch.com/
… and download the latest driver for your modem and see how it goes. I just checked and there one for Mac OS X 10.4.
If it fails to work then you might just be stuck with an Ethernet modem/router. As for which one, the simplest, though not necessarily the cheapest, is to get one from Wanadoo as it will have a profile for easy setup otherwise you can get pretty much any one you like.

Similar Messages

  • Intel Mac Mini & Speedtouch 330 USB

    Ok..
    I was delighted to have my mac mini shipped to me the other day.
    It took nearly three hours to do a migration from my emac.
    Then I tried to connect to the net using my speedtouch 330 usb.
    Doesn't work. Single red flashing led.
    Spoke to wanadoo, and speedtouch, both declare that speedtouch does not work with the intel mac mini (os 10.4.6). Need a router (which one?)
    Fact or fiction? I don't know.......
    Has anybody had the same problems with the same hardware.
    Any feedback would be ace.
    Cheers World..

    It might well be correct in that the driver may not be Intel compatible. What I suggest you do is go to the SpeedTouch web site…
    http://www.speedtouch.com/
    … and download the latest driver for your modem and see how it goes. I just checked and there one for Mac OS X 10.4.
    If it fails to work then you might just be stuck with an Ethernet modem/router. As for which one, the simplest, though not necessarily the cheapest, is to get one from Wanadoo as it will have a profile for easy setup otherwise you can get pretty much any one you like.

  • Query advice

    I have an internet db designed as follows (scripts follow and the end of the post)
    table entities - different articles to be published to the internet
    table medias - media files upload to our site (may be of different types - audio, video, pictures,...)
    table entity_medias - N:N relationship between entities and entity_medias
    many queries are like : choose the desired entities and then give me the top 1 media files of each type of media (i.e. 1 picture, 1 video, 1 audio, etc.) for each entity chosen. there are several pieces of info needed for each media: url, type, tool tip,
    descr,...) each entity can ahve between 0 and N medias of each type
    I created a function using pivot to return all the media info to be select after the entity list has been created and it seems faster than any other method I tried, but still it is used a lot and is heavy. any suggestions for improvement?
    typical query:
    select bunch of fields from entities, all fields from func
      from entities
     outer apply fn_add_top1_media_info (entities.entity_Code) func
    where conditions on entities
    ALTER function [fn_add_top1_media_info] 
    (@entity int )
    RETURNS @t TABLE ( entity_code int,
    pic_media_code int, 
    video_media_code int, 
    audio_media_code int,
    passport_media_code int,
    file_media_code int,
    hd_media_code int,
    pic_file_ext char(4), 
    video_file_ext char(4), 
    audio_file_ext char(4), 
    passport_file_ext char(4), 
    file_file_ext char(4), 
    hd_file_ext char(4), 
    pic_tool_tip nvarchar(450),
    video_tool_tip nvarchar(450),
    audio_tool_tip nvarchar(450),
    passport_tool_tip nvarchar(450),
    file_tool_tip nvarchar(450),
    hd_tool_tip nvarchar(450),
    pic_bottom_desc nvarchar(275),
    video_bottom_desc nvarchar(275),
    audio_bottom_desc nvarchar(275),
    passport_bottom_desc nvarchar(275),
    file_bottom_desc nvarchar(275),
    hd_bottom_desc nvarchar(275),
    video_url varchar(300),
    audio_url varchar(300),
    hd_url varchar(300),
    video_statDesc nvarchar(275),
    audio_statDesc nvarchar(275),
    hd_statDesc nvarchar(275),
    can_enlarge bit)
    AS
    begin
    insert into @t (entity_code ,
    pic_media_code , 
    video_media_code , 
    audio_media_code ,
    passport_media_code ,
    file_media_code ,
    hd_media_code ,
    pic_file_ext , 
    video_file_ext , 
    audio_file_ext , 
    passport_file_ext , 
    file_file_ext , 
    hd_file_ext , 
    pic_tool_tip ,
    video_tool_tip ,
    audio_tool_tip ,
    passport_tool_tip ,
    file_tool_tip ,
    hd_tool_tip ,
    pic_bottom_desc ,
    video_bottom_desc ,
    audio_bottom_desc ,
    passport_bottom_desc ,
    file_bottom_desc ,
    hd_bottom_desc ,
    video_url ,
    audio_url ,
    hd_url,
    video_statDesc,
    audio_statDesc,
    hd_statDesc,
    can_enlarge)
    select entity_code,
    min([1]) as pic_media_code, 
    min([2]) as video_media_code, 
    min([3]) as audio_media_code,
    min([4]) as passport_media_code,
    min([5]) as file_media_code,
    min([7]) as hd_media_code,
    min([101]) as pic_file_ext, 
    min([102]) as video_file_ext,
    min([103]) as audio_file_ext,
    min([104]) as passport_file_ext,
    min([105]) as file_file_ext,
    min([107]) as hd_file_ext,
    min([201]) as pic_tool_tip,
    min([202]) as video_tool_tip,
    min([203]) as audio_tool_tip,
    min([204]) as passport_tool_tip,
    min([205]) as file_tool_tip,
    min([207]) as hd_tool_tip,
    min([301]) as pic_bottom_desc,
    min([302]) as video_bottom_desc,
    min([303]) as audio_bottom_desc,
    min([304]) as passport_bottom_desc,
    min([305]) as file_bottom_desc,
    min([307]) as hd_bottom_desc,
    min([402]) as video_url,
    min([403]) as audio_url,
    min([407]) as hd_url,
    min([502]) as video_statDesc,
    min([503]) as audio_statDesc,
    min([507]) as hd_statDesc,
    min(can_enlarge) as can_enlarge
    from
    select em.entity_code, em.media_code, m.file_extension, url,
      case when m.media_type_code=1 then convert(tinyint,m.can_enlarge) else null end as can_enlarge,
      tool_tip = dbo.add_copyrights( em.tool_tip, m.media_company_code,0),
          bottom_desc = dbo.add_copyrights(em.bottom_desc, m.media_company_code, 1 ),
      statDesc = isNull(dbo.Trim(em.bottom_desc),m.media_desc),
      --ROW_NUMBER() OVER(PARTITION BY em.entity_code,m.media_type_code ORDER BY em.entity_code DESC) as rownum,
      media_type = m.media_type_code,
      ext_type = m.media_type_code+100,
      tool_type = m.media_type_code+200,
          bottom_type = m.media_type_code+300,
      url_type = m.media_type_code+400,
      stat_type = m.media_type_code+500
     from entity_medias em 
    inner join medias m 
     on em.media_code=m.media_code 
    where em.sort_order = 1 and entity_code = @entity) as tmpPic 
    pivot
    (min(media_code)
    for media_type in ([1],[2],[3],[4],[5],[7])
    ) as mvt
    pivot
    (min(file_extension)
    for ext_type in ([101],[102],[103],[104],[105],[107])
    ) as fvt
    pivot
    (min(tool_tip)
    for tool_type in ([201],[202],[203],[204],[205],[207])
    ) as tvt
    pivot
    (min(bottom_desc)
    for bottom_type in ([301],[302],[303],[304],[305],[307])
    ) as bvt
    pivot
    (min(url)
    for url_type in ([402],[403],[407])
    ) as uvt
    pivot
    (min(statDesc)
    for stat_type in ([502],[503],[507])
    ) as svt
    --where rownum=1 
    group by entity_code
    return
    end
     table definitions
    CREATE TABLE [entities](
    [site_code] [smallint] NOT NULL,
    [entity_type_code] [smallint] NOT NULL,
    [entity_code] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
    [extra] [bit] NOT NULL,
    [start_date] [smalldatetime] NOT NULL,
    [end_date] [smalldatetime] NOT NULL,
    [create_date] [smalldatetime] NOT NULL,
    [show_time] [tinyint] NOT NULL,
    [update_date] [smalldatetime] NOT NULL,
    [comment] [nvarchar](350) NOT NULL,
    [worker_code] [smallint] NULL,
    [user_code] [smallint] NOT NULL,
    [worker_name] [nvarchar](280) SPARSE  NULL,
    [email] [varchar](40) SPARSE  NULL,
    [update_content_date] [smalldatetime] NULL,
    [locked_user_code] [smallint] SPARSE  NULL,
    [locked_time] [smalldatetime] SPARSE  NULL,
    [locked_ip] [char](15) SPARSE  NULL,
    [locked_station] [char](15) SPARSE  NULL,
    [locked_user] [varchar](25) SPARSE  NULL,
    [update_computer] [char](15) SPARSE  NULL,
    [rowguid] [uniqueidentifier] ROWGUIDCOL  NOT NULL,
    [is_exclusive] [bit] NOT NULL,
     CONSTRAINT [PK_entities] PRIMARY KEY NONCLUSTERED 
    [entity_code] ASC)
    CREATE TABLE [medias](
    [media_code] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
    [media_date] [smalldatetime] NOT NULL,
    [media_desc] [nvarchar](50) NOT NULL,
    [media_type_code] [smallint] NOT NULL,
    [media_subtype_code] [tinyint] NOT NULL,
    [url] [varchar](300) NOT NULL,
    [file_extension] [char](4) NOT NULL,
    [media_rights] [nvarchar](50) SPARSE  NULL,
    [can_enlarge] [bit] NOT NULL,
    [can_delete] [bit] NOT NULL,
    [is_deleted] [bit] NOT NULL,
    [media_company_code] [tinyint] NOT NULL,
     CONSTRAINT [PK_medias] PRIMARY KEY CLUSTERED 
    [media_code] ASC)
    CREATE TABLE [entity_medias](
    [entity_code] [int] NOT NULL,
    [media_code] [int] NOT NULL,
    [sort_order] [tinyint] NOT NULL,
    [tool_tip] [nvarchar](350) NOT NULL,
    [bottom_desc] [nvarchar](175) NOT NULL,
    [updated_by] [smallint] NULL,
    [update_time] [smalldatetime] NULL,
    [update_computer] [char](15) SPARSE  NULL,
    [rowguid] [uniqueidentifier] ROWGUIDCOL  NOT NULL,
     CONSTRAINT [PK_entity_medias] PRIMARY KEY CLUSTERED 
    [entity_code] ASC,
    [media_code] ASC)
    CREATE NONCLUSTERED INDEX [IX_entity_medias] ON [entity_medias] 
    [entity_code] ASC,
    [sort_order] ASC
    INCLUDE ( [media_code]) WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [index]
    GO
    CREATE NONCLUSTERED INDEX [IX_entity_medias_1] ON [entity_medias] 
    [sort_order] ASC
    INCLUDE ( [entity_code],
    [media_code]) WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [index]
    GO

    a simplified schema and data for 1 entity. queries select a set of entities and fill in the function's data for each select entity. I am supplying create table, insert data, create function, and finally a select using the function
    CREATE TABLE [entity_medias](
    [entity_code] [int] NOT NULL,
    [media_code] [int] NOT NULL,
    [sort_order] [tinyint] NOT NULL,
    [tool_tip] [nvarchar](350) NOT NULL,
    [bottom_desc] [nvarchar](175) NOT NULL,
     CONSTRAINT [PK_entity_medias] PRIMARY KEY CLUSTERED 
    ( [entity_code] ASC,
    [media_code] ASC))
    CREATE TABLE [medias](
    [media_code] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
    [media_date] [smalldatetime] NOT NULL,
    [media_desc] [nvarchar](50) NOT NULL,
    [media_type_code] [smallint] NOT NULL,
    [url] [varchar](300) NOT NULL,
    [file_extension] [char](4) NOT NULL,
    [can_enlarge] [bit] NOT NULL,
     CONSTRAINT [PK_medias] PRIMARY KEY CLUSTERED 
    ( [media_code] ASC))
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 501043, 1, N'06.09.09', N'מוצפי כי תבוא')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 501845, 2, N'09.09.09', N'הרב מוצפי פרשת עקב')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 502467, 3, N'11.09.09', N'מוצפי ניצבים וילך')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 504610, 4, N'21.09.09', N'מוצפי ראש השנה תש"ע')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 507269, 5, N'04.10.09', N'מוצפי סוכות תש"ע')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 510555, 6, N'18.10.09', N'מוצפי בראשית')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 512258, 7, N'25.10.09', N'מוצפי נח תש"ע')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 513950, 8, N'01.11.09', N'מוצפי לך לך תש"ע')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 516150, 9, N'09.11.09', N'מוצפי וירא תש"ע')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 554976, 1, N'הרב בן ציון מוצפי שליט"א. צילום: אלעזר רוזברגר', N'')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 801439, 1, N'1.11.13', N'תולדות תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 802618, 2, N'8.11.13', N'ויצא תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 803053, 3, N'15.11.13', N'וישלח תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 805254, 4, N'22.11.13', N'וישב תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 805519, 5, N'29.11.13', N'מקץ תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 806827, 6, N'6.12.13', N'ויגש תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 810254, 7, N'20.12.13', N'שמות תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 810739, 8, N'27.12.13', N'וארא תשע"ד.')
    INSERT INTO [dbo].[entity_medias] ([entity_code], [media_code], [sort_order], [tool_tip], [bottom_desc]) VALUES (671471, 815399, 9, N'3.1.14', N'בא תשע"ד.')
    PRINT(N'Add 19 rows to [dbo].[medias]')
    GO
    SET IDENTITY_INSERT [dbo].[medias] ON
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (501043, '2009-09-06 20:16:00.000', N'מוצפי כי תבוא', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=2_2_2009-09-06_191735',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (501845, '2009-09-09 15:17:00.000', N'הרב מוצפי פרשת עקב', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=50_1_2009-09-07_213257',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (502467, '2009-09-11 16:33:00.000', N'מוצפי ניצבים וילך', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=2_2_2009-09-11_162457',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (504610, '2009-09-21 20:03:00.000', N'מוצפי ראש השנה תש"ע', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=1_2_2009-09-21_194836',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (507269, '2009-10-04 16:39:00.000', N'מוצפי סוכות תש"ע', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=1_2_2009-10-04_161919',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (510555, '2009-10-18 19:49:00.000', N'מוצפי בראשית', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=1_2_2009-10-18_193009',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (512258, '2009-10-25 19:07:00.000', N'מוצפי נח תש"ע', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=1_2_2009-10-25_175703',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (513950, '2009-11-01 17:31:00.000', N'מוצפי לך לך תש"ע', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=1_2_2009-11-01_172325',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (516150, '2009-11-09 17:57:00.000', N'מוצפי וירא תש"ע', 3, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=1_2_2009-11-09_174608',
    N'wma ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (554976, '2010-04-25 21:02:00.000', N'מוצפי', 1, N'', N'jpg ', 1)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (801439, '2013-11-08 11:42:00.000', N'מוצפי תולדות תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-11-08_111731',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (802618, '2013-11-15 10:57:00.000', N'מוצפי ויצא תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-11-15_105345',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (803053, '2013-11-18 11:38:00.000', N'מוצפי וישלח תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-11-18_113508',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (805254, '2013-11-29 11:10:00.000', N'מוצפי וישב תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-11-29_110429',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (805519, '2013-12-01 14:47:00.000', N'מוצפי מקץ תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-12-01_143134',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (806827, '2013-12-08 14:16:00.000', N'מוצפי ויגש תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-12-08_140914',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (810254, '2013-12-27 12:26:00.000', N'מוצפי שמות תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-12-27_121951',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (810739, '2013-12-30 15:39:00.000', N'מוצפי וארא תשע"ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2013-12-30_152747',
    N'wmv ', 0)
    INSERT INTO [dbo].[medias] ([media_code], [media_date], [media_desc], [media_type_code], [url], [file_extension], [can_enlarge]) VALUES (815399, '2014-01-24 12:16:00.000', N'מוצפי_בא_תשע_ד', 2, N'http://switch5.castup.net/frames/20040704_IBA_Popup/iba_gray.asp?ai=31&ar=IB2_2_2014-01-10_131024',
    N'wmv ', 0)
    SET IDENTITY_INSERT [dbo].[medias] OFF
    create function [fn_add_top1_media_info] 
    (@entity int )
    RETURNS @t TABLE ( entity_code int,
    pic_media_code int, 
    video_media_code int, 
    audio_media_code int,
    passport_media_code int,
    file_media_code int,
    hd_media_code int,
    pic_file_ext char(4), 
    video_file_ext char(4), 
    audio_file_ext char(4), 
    passport_file_ext char(4), 
    file_file_ext char(4), 
    hd_file_ext char(4), 
    pic_tool_tip nvarchar(450),
    video_tool_tip nvarchar(450),
    audio_tool_tip nvarchar(450),
    passport_tool_tip nvarchar(450),
    file_tool_tip nvarchar(450),
    hd_tool_tip nvarchar(450),
    pic_bottom_desc nvarchar(275),
    video_bottom_desc nvarchar(275),
    audio_bottom_desc nvarchar(275),
    passport_bottom_desc nvarchar(275),
    file_bottom_desc nvarchar(275),
    hd_bottom_desc nvarchar(275),
    video_url varchar(300),
    audio_url varchar(300),
    hd_url varchar(300),
    video_statDesc nvarchar(275),
    audio_statDesc nvarchar(275),
    hd_statDesc nvarchar(275),
    can_enlarge bit)
    AS
    begin
    insert into @t (entity_code ,
    pic_media_code , 
    video_media_code , 
    audio_media_code ,
    passport_media_code ,
    file_media_code ,
    hd_media_code ,
    pic_file_ext , 
    video_file_ext , 
    audio_file_ext , 
    passport_file_ext , 
    file_file_ext , 
    hd_file_ext , 
    pic_tool_tip ,
    video_tool_tip ,
    audio_tool_tip ,
    passport_tool_tip ,
    file_tool_tip ,
    hd_tool_tip ,
    pic_bottom_desc ,
    video_bottom_desc ,
    audio_bottom_desc ,
    passport_bottom_desc ,
    file_bottom_desc ,
    hd_bottom_desc ,
    video_url ,
    audio_url ,
    hd_url,
    video_statDesc,
    audio_statDesc,
    hd_statDesc,
    can_enlarge)
    select entity_code,
    min([1]) as pic_media_code, 
    min([2]) as video_media_code, 
    min([3]) as audio_media_code,
    min([4]) as passport_media_code,
    min([5]) as file_media_code,
    min([7]) as hd_media_code,
    min([101]) as pic_file_ext, 
    min([102]) as video_file_ext,
    min([103]) as audio_file_ext,
    min([104]) as passport_file_ext,
    min([105]) as file_file_ext,
    min([107]) as hd_file_ext,
    min([201]) as pic_tool_tip,
    min([202]) as video_tool_tip,
    min([203]) as audio_tool_tip,
    min([204]) as passport_tool_tip,
    min([205]) as file_tool_tip,
    min([207]) as hd_tool_tip,
    min([301]) as pic_bottom_desc,
    min([302]) as video_bottom_desc,
    min([303]) as audio_bottom_desc,
    min([304]) as passport_bottom_desc,
    min([305]) as file_bottom_desc,
    min([307]) as hd_bottom_desc,
    min([402]) as video_url,
    min([403]) as audio_url,
    min([407]) as hd_url,
    min([502]) as video_statDesc,
    min([503]) as audio_statDesc,
    min([507]) as hd_statDesc,
    min(can_enlarge) as can_enlarge
    from
    select em.entity_code, em.media_code, m.file_extension, url,
      case when m.media_type_code=1 then convert(tinyint,m.can_enlarge) else null end as can_enlarge,
      tool_tip =  em.tool_tip,
          bottom_desc = em.bottom_desc,
        statDesc = isNull(dbo.Trim(em.bottom_desc),m.media_desc),
      --ROW_NUMBER() OVER(PARTITION BY em.entity_code,m.media_type_code ORDER BY em.entity_code DESC) as rownum,
      media_type = m.media_type_code,
      ext_type = m.media_type_code+100,
      tool_type = m.media_type_code+200,
          bottom_type = m.media_type_code+300,
      url_type = m.media_type_code+400,
      stat_type = m.media_type_code+500
     from entity_medias em 
    inner join medias m 
     on em.media_code=m.media_code 
    where em.sort_order = 1 and entity_code = @entity) as tmpPic 
    pivot
    (min(media_code)
    for media_type in ([1],[2],[3],[4],[5],[7])
    ) as mvt
    pivot
    (min(file_extension)
    for ext_type in ([101],[102],[103],[104],[105],[107])
    ) as fvt
    pivot
    (min(tool_tip)
    for tool_type in ([201],[202],[203],[204],[205],[207])
    ) as tvt
    pivot
    (min(bottom_desc)
    for bottom_type in ([301],[302],[303],[304],[305],[307])
    ) as bvt
    pivot
    (min(url)
    for url_type in ([402],[403],[407])
    ) as uvt
    pivot
    (min(statDesc)
    for stat_type in ([502],[503],[507])
    ) as svt
    group by entity_code
    select e.*,func.*
      from entity_medias e -- this would normally the entity table but not relevant to this simplified scenario
     outer apply dbo.fn_add_top1_media_info (e.entity_code ) func
    where e.entity_code=671471

  • Installing Intel 330 SSD in Mini 311c / Windows XP

    I've recently installed a 120GB Intel 330 series SSD into my old Mini 311c-1101SA running Windows XP. I believe the motherboard has a Nvidia 730i chipset (GFX card is Nvidia ION LE).
    Installation went fine and everything is up and running. I aligned the drive using the Norton Alignment tool.
    However, drive performance is less than stellar. Driver benchmarks indicate a read speed of 127MB/s and write speed of 104MB/s. Furthermore, the Intel SSD Toolbox says it "cannot communicate with the drive" and that I need to update the storage driver.
    Is this something I can sort out? Are there suitable drivers that I can slipstream into a new XP installation? Would upgrading to Windows 7 improve matters?

    Hi , i got the same problem and that's what i did:
    clicking the rigth buttom on the install .exe and extract it to a folder with winzip
    After this go to the folder you've unzipped the install pack and double-click on setup.exe
    It will ask the profile you want to install the product with and after choosing it , the installfield should start.
    I hope this helps you : Anita

  • What do I need to reinstall operating system on toshiba nb 205 mini laptop with win 7

    I want to re install the operating system on my mini laptop but not sure what I need? I boght this off of a nice older lady but she didn't give me any discs with this laptop. Would windows 7 be the actual software that came with this laptop? The numbers on the windows sticker seem to be mostly worn off. Is there a way to do this without the product key? All help would be great! also, can I buy a re install disc and use that? Or is there a way for me to burn one off of the laptop itself? I do not have a dvd/cd spot on this laptop so can I use a flash drive? Thanks

    Which NB205? There is a label on the bottom.
    -Jerry

  • Safari crash on print with Mac mini

    Safari crashes on two brand new Mac minis (Feb '12) a couple times a day while printing. They are both connected to Dell 2530dn printers running the latest Dell driver. I pasted the crash report below. Any info is extremely appreciated.
    Process:         Safari [26325]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.4 (7534.54.16)
    Build Info:      WebBrowser-7534054016000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [111]
    Date/Time:       2012-03-20 13:17:48.067 -0400
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          16395 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  16338 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      C538D8A7-3E99-4768-A76B-FCE090AD143C
    Crashed Thread:  8  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    objc[26325]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8d9d167a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d9d0d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff868766fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8687ee64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8687e676 CFRunLoopRunSpecific + 230
    5   com.apple.HIToolbox                     0x00007fff8db1f31f RunCurrentEventLoopInMode + 277
    6   com.apple.HIToolbox                     0x00007fff8db265c9 ReceiveNextEventCommon + 355
    7   com.apple.HIToolbox                     0x00007fff8db26456 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff8b654f5d _DPSNextEvent + 659
    9   com.apple.AppKit                        0x00007fff8b654861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    10  com.apple.Safari.framework              0x00007fff917da165 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 171
    11  com.apple.AppKit                        0x00007fff8b90b39d -[NSApplication _realDoModalLoop:peek:] + 610
    12  com.apple.AppKit                        0x00007fff8b90afd1 -[NSApplication runModalForWindow:] + 120
    13  com.apple.Safari.framework              0x00007fff917fed07 -[BrowserDocument printFrame:showingPrintPanel:waitUntilDone:] + 470
    14  com.apple.Safari.framework              0x00007fff9196ad28 _ZN6Safari2WKL10printFrameEPK12OpaqueWKPagePK13OpaqueWKFramePKv + 77
    15  com.apple.WebKit2                       0x0000000109a15f8e WebKit::WebPageProxy::printFrame(unsigned long long) + 54
    16  com.apple.WebKit2                       0x0000000109a15f4b void CoreIPC::handleMessage<Messages::WebPageProxy::PrintFrame, WebKit::WebPageProxy, void (WebKit::WebPageProxy::*)(unsigned long long)>(CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*, WebKit::WebPageProxy*, void (WebKit::WebPageProxy::*)(unsigned long long)) + 68
    17  com.apple.WebKit2                       0x00000001099da563 WebKit::WebPageProxy::didReceiveSyncWebPageProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*) + 535
    18  com.apple.WebKit2                       0x00000001099da2ac WebKit::WebProcessProxy::didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*) + 170
    19  com.apple.WebKit2                       0x00000001099da19d CoreIPC::Connection::dispatchSyncMessage(CoreIPC::MessageID, CoreIPC::ArgumentDecoder*) + 125
    20  com.apple.WebKit2                       0x00000001099d6d43 CoreIPC::Connection::dispatchMessage(CoreIPC::Connection::Message<CoreIPC::Argu mentDecoder>&) + 157
    21  com.apple.WebKit2                       0x00000001099da0fd CoreIPC::Connection::SyncMessageState::dispatchMessages() + 131
    22  com.apple.WebKit2                       0x00000001099d39c3 RunLoop::performWork() + 111
    23  com.apple.WebKit2                       0x00000001099d3934 RunLoop::performWork(void*) + 76
    24  com.apple.CoreFoundation                0x00007fff868586e1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    25  com.apple.CoreFoundation                0x00007fff86857f4d __CFRunLoopDoSources0 + 253
    26  com.apple.CoreFoundation                0x00007fff8687ed39 __CFRunLoopRun + 905
    27  com.apple.CoreFoundation                0x00007fff8687e676 CFRunLoopRunSpecific + 230
    28  com.apple.HIToolbox                     0x00007fff8db1f31f RunCurrentEventLoopInMode + 277
    29  com.apple.HIToolbox                     0x00007fff8db265c9 ReceiveNextEventCommon + 355
    30  com.apple.HIToolbox                     0x00007fff8db26456 BlockUntilNextEventMatchingListInMode + 62
    31  com.apple.AppKit                        0x00007fff8b654f5d _DPSNextEvent + 659
    32  com.apple.AppKit                        0x00007fff8b654861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    33  com.apple.Safari.framework              0x00007fff917da165 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 171
    34  com.apple.AppKit                        0x00007fff8b65119d -[NSApplication run] + 470
    35  com.apple.AppKit                        0x00007fff8b8cfb88 NSApplicationMain + 867
    36  com.apple.Safari.framework              0x00007fff9198e48d SafariMain + 197
    37  com.apple.Safari                        0x000000010938ff24 0x10938f000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8d9d37e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff86c275be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff86c2614e _dispatch_mgr_thread + 54
    Thread 2:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8d9d2bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ab40274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x0000000109cb41d5 WebCore::IconDatabase::syncThreadMainLoop() + 375
    3   com.apple.WebCore                       0x0000000109cb1c7f WebCore::IconDatabase::iconDatabaseSyncThread() + 491
    4   com.apple.WebCore                       0x0000000109cb1a8f WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9
    5   libsystem_c.dylib                       0x00007fff8ab3c8bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8ab3fb75 thread_start + 13
    Thread 3:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8d9d167a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d9d0d71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff8fa975c9 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff8fa97509 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff8ab3c8bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff8ab3fb75 thread_start + 13
    Thread 4:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x00007fff8d9d167a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d9d0d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff868766fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8687ee64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8687e676 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x00007fff91948b2f Safari::MessageRunLoop::threadBody() + 163
    6   com.apple.Safari.framework              0x00007fff91948a87 Safari::MessageRunLoop::threadCallback(void*) + 9
    7   libsystem_c.dylib                       0x00007fff8ab3c8bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8ab3fb75 thread_start + 13
    Thread 5:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8d9d167a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8d9d0d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff868766fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8687ee64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8687e676 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff8c8c5ffb +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff8c8ba74e -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff8c8ba6c6 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff8ab3c8bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8ab3fb75 thread_start + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8d9d2df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff868c7cdb __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff8ab3c8bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff8ab3fb75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8d9d3192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ab3e594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ab3fb85 start_wqthread + 13
    Thread 8 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   com.apple.CoreFoundation                0x00007fff86945ca5 __THE_SYSTEM_HAS_NO_PORT_SETS_AVAILABLE__ + 5
    1   com.apple.CoreFoundation                0x00007fff8687e8ca __CFRunLoopFindMode + 426
    2   com.apple.CoreFoundation                0x00007fff86883ecd __CFRunLoopCreate + 445
    3   com.apple.CoreFoundation                0x00007fff86883bc7 _CFRunLoopGet0 + 535
    4   com.apple.Foundation                    0x00007fff8c86be32 +[NSRunLoop(NSRunLoop) currentRunLoop] + 22
    5   com.apple.Foundation                    0x00007fff8c880338 -[NSConnection sendInvocation:internal:] + 132
    6   com.apple.CoreFoundation                0x00007fff868d6ff4 ___forwarding___ + 756
    7   com.apple.CoreFoundation                0x00007fff868d6c88 _CF_forwarding_prep_0 + 232
    8   com.apple.AppKit                        0x00007fff8bbc72f4 -[NSSpellChecker _checkSpellingAndGrammarInString:range:enclosingRange:offset:types:options:orth ography:inSpellDocumentWithTag:mutableResults:wordCount:] + 1923
    9   com.apple.AppKit                        0x00007fff8b83575f NSSpellCheckerCheckString + 9368
    10  com.apple.AppKit                        0x00007fff8b833254 -[NSTextCheckingOperation main] + 203
    11  com.apple.Foundation                    0x00007fff8c8a86d8 -[__NSOperationInternal start] + 705
    12  com.apple.Foundation                    0x00007fff8c8bb936 ____NSOQSchedule_block_invoke_2 + 124
    13  libdispatch.dylib                       0x00007fff86c258ba _dispatch_call_block_and_release + 18
    14  libdispatch.dylib                       0x00007fff86c26799 _dispatch_worker_thread2 + 255
    15  libsystem_c.dylib                       0x00007fff8ab3e3da _pthread_wqthread + 316
    16  libsystem_c.dylib                       0x00007fff8ab3fb85 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8d9d3192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ab3e594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ab3fb85 start_wqthread + 13
    Thread 10:: Dispatch queue: com.apple.CoreIPC.ReceiveQueue
    0   com.apple.JavaScriptCore                0x0000000109398a4d ***::TCMalloc_Central_FreeList::RemoveRange(void**, void**, int*) + 205
    1   com.apple.JavaScriptCore                0x0000000109397483 ***::fastMalloc(unsigned long) + 659
    2   com.apple.WebKit2                       0x00000001099d49c8 CoreIPC::Connection::receiveSourceEventHandler() + 132
    3   libdispatch.dylib                       0x00007fff86c2a2b6 _dispatch_source_invoke + 635
    4   libdispatch.dylib                       0x00007fff86c26f77 _dispatch_queue_invoke + 71
    5   libdispatch.dylib                       0x00007fff86c270d4 _dispatch_queue_drain + 210
    6   libdispatch.dylib                       0x00007fff86c26f66 _dispatch_queue_invoke + 54
    7   libdispatch.dylib                       0x00007fff86c26760 _dispatch_worker_thread2 + 198
    8   libsystem_c.dylib                       0x00007fff8ab3e3da _pthread_wqthread + 316
    9   libsystem_c.dylib                       0x00007fff8ab3fb85 start_wqthread + 13
    Thread 11:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8d9d2e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8aaf2dea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff8aaf2bb5 usleep + 53
    3   com.apple.AppKit                        0x00007fff8b88bc73 -[NSUIHeartBeat _heartBeatThread:] + 1727
    4   com.apple.Foundation                    0x00007fff8c8ba74e -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8c8ba6c6 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff8ab3c8bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8ab3fb75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8d9d2bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8ab40274 _pthread_cond_wait + 840
    2   com.apple.WebKit2                       0x0000000109a19351 -[WKPrintingView knowsPageRange:] + 231
    3   com.apple.AppKit                        0x00007fff8bd3630e -[NSView(NSPrinting2) _knowsPagesFirst:last:] + 164
    4   com.apple.AppKit                        0x00007fff8bb5ff31 -[NSConcretePrintOperation(NSInternal) _validatePagination] + 179
    5   com.apple.AppKit                        0x00007fff8bb6007f -[NSConcretePrintOperation(NSInternal) _firstPageNumber] + 27
    6   com.apple.AppKit                        0x00007fff8bb60122 -[NSConcretePrintOperation(NSInternal) _validateJobPageNumbers] + 54
    7   com.apple.AppKit                        0x00007fff8bb6046e -[NSConcretePrintOperation(NSInternal) _firstRenderPageNumber] + 27
    8   com.apple.AppKit                        0x00007fff8bda8b0d -[NSView(NSPrintingInternal) _printForCurrentOperation] + 85
    9   com.apple.AppKit                        0x00007fff8bb5e795 -[NSConcretePrintOperation _renderView] + 224
    10  com.apple.AppKit                        0x00007fff8bb5e531 -[NSConcretePrintOperation _continueModalOperationToTheEnd:] + 48
    11  com.apple.Foundation                    0x00007fff8c8ba74e -[NSThread main] + 68
    12  com.apple.Foundation                    0x00007fff8c8ba6c6 __NSThread__main__ + 1575
    13  libsystem_c.dylib                       0x00007fff8ab3c8bf _pthread_start + 335
    14  libsystem_c.dylib                       0x00007fff8ab3fb75 thread_start + 13
    Thread 8 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000006  rbx: 0x00007fca63cb57b0  rcx: 0x00007fff76ea5101  rdx: 0x0000000000000001
      rdi: 0x00000001180203d8  rsi: 0x0000000000000003  rbp: 0x0000000118020410  rsp: 0x0000000118020410
       r8: 0x000000000001cbab   r9: 0x0000000000000000  r10: 0x0000000000000030  r11: 0x0000000000000206
      r12: 0x00000001180204c0  r13: 0x00007fca63cb57c0  r14: 0x00007fff75d3bb20  r15: 0x00007fca63cb3c60
      rip: 0x00007fff86945ca5  rfl: 0x0000000000000206  cr2: 0x000000011801efd8
    Logical CPU: 0
    Binary Images:
           0x10938f000 -        0x10938ffff  com.apple.Safari (5.1.4 - 7534.54.16) <6FC662B5-998D-3127-B626-704689DC65EE> /Applications/Safari.app/Contents/MacOS/Safari
           0x109396000 -        0x1096b8fff  com.apple.JavaScriptCore (7534.54 - 7534.54.15) <E3F855E9-D69F-3FE4-B856-5FFA5DC7F17A> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
           0x10974c000 -        0x1098d6ff7  com.apple.WebKit (7534.54 - 7534.54.16) <4F9F734F-0C29-3355-A3FA-11B2AEB42E81> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
           0x1099be000 -        0x109b76fff  com.apple.WebKit2 (7534.54 - 7534.54.16) <2C67A292-6084-32C5-B57D-65DBE0DEB351> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
           0x109cad000 -        0x10a9e4fef  com.apple.WebCore (7534.54 - 7534.54.17) <8D6B8DB6-5C2B-3722-8548-DF49C5309CF1> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
           0x10b2fc000 -        0x10b2fcff5 +cl_kernels (??? - ???) <10533A5A-7687-4407-9D0C-35BABBB333C3> cl_kernels
           0x10df57000 -        0x10df5dfef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <C0C4CC37-F2FD-301C-A830-EC54D86612D5> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10df64000 -        0x10df67ff7  libCoreFSCache.dylib (??? - ???) <0E2C3D54-7D05-35E8-BA10-2142B7C03946> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10df81000 -        0x10df81ffd +cl_kernels (??? - ???) <F010F11A-9F90-4DB4-9118-5AD7797BED58> cl_kernels
           0x10df83000 -        0x10e016ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10e039000 -        0x10e03aff3 +cl_kernels (??? - ???) <E554CEE0-F538-4AAE-A3CC-2A2F0F5102F7> cl_kernels
           0x10f98c000 -        0x10f9c0fff  com.apple.printingprivate.framework.PrintingPrivate (7.3 - 68.2) <24787996-8D0C-3803-8EB4-BAB6C7686AE9> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
           0x10fa92000 -        0x10fac9fff  com.apple.print.framework.Print.Private (7.3 - 378.9) <1C9B08C6-0604-33C8-9C51-D553C44A13DE> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
           0x10fb15000 -        0x10fb58fff  com.apple.print.PrintingCocoaPDEs (7.3 - 378.9) <B7D60792-C973-3CC9-8D05-325153737EEF> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
           0x110613000 -        0x11063cfff  libPDFRIP.A.dylib (600.0.0 - compatibility 64.0.0) <1C157125-306E-385C-B154-059198F56907> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
        0x7fff68f8f000 -     0x7fff68fc3baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff85f2b000 -     0x7fff8612dfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8612e000 -     0x7fff86133fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff86134000 -     0x7fff8613dff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff86146000 -     0x7fff86162fff  com.apple.ScriptingBridge (1.2.1 - ???) <A4162BA5-2432-3BF3-8EBC-47AEF2BDD8DA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff86163000 -     0x7fff86190fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff86191000 -     0x7fff8619cfff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8619d000 -     0x7fff861b4fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3F8C015B-88AC-370F-B39D-B4665FB7616A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff861b5000 -     0x7fff861fcff7  com.apple.CoreMedia (1.0 - 705.61) <0C34B0D4-DB8A-33C7-B67B-F443AD86482C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff86200000 -     0x7fff86200fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8623a000 -     0x7fff86261ff7  com.apple.PerformanceAnalysis (1.10 - 10) <DD87C994-66D6-330A-BAF9-AB86BE125A62> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff86262000 -     0x7fff8657eff7  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff86587000 -     0x7fff86589fff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8658a000 -     0x7fff8658afff  com.apple.Carbon (153 - 153) <C1A30E01-E113-38A0-95CA-99360F92A37A> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8660d000 -     0x7fff8664efff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff86651000 -     0x7fff866d4fef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff866d5000 -     0x7fff866effff  com.apple.CoreMediaAuthoring (2.0 - 890) <7BE57576-8EF5-3473-95E6-6191E239E3F0> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff866ff000 -     0x7fff86703fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff86846000 -     0x7fff86a1afff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff86a1b000 -     0x7fff86a20fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff86bf8000 -     0x7fff86c23ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <4DB5ED11-004B-36B5-AE5F-2AB714754241> /usr/lib/libxslt.1.dylib
        0x7fff86c24000 -     0x7fff86c32fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff86c33000 -     0x7fff86c33fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86cad000 -     0x7fff86caefff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <92364334-3B11-360B-89D8-447185FEC653> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff86cc5000 -     0x7fff86cc6ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff86cc7000 -     0x7fff86e20fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff86ff7000 -     0x7fff8706dfff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8706e000 -     0x7fff87072fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <37517279-C92E-3217-B49A-838198B48787> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87073000 -     0x7fff8707afff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <848F5267-C6B3-3591-AB27-B0176B04CCC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff872c7000 -     0x7fff87319ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8731a000 -     0x7fff87355fff  com.apple.LDAPFramework (3.1 - 120.2) <5633BDE9-BDCB-35CC-BC6B-B8E4CD011D51> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff87356000 -     0x7fff873fafff  com.apple.ink.framework (1.3.2 - 110) <C8840EA4-AE7B-360C-A191-D36B5F10B6B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff873fb000 -     0x7fff87480ff7  com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff874ce000 -     0x7fff875d0ff7  com.apple.PubSub (1.0.5 - 65.28) <98BFFA0E-6E32-3779-9594-B0629EFF1B6E> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff875d1000 -     0x7fff875fcff7  com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff875fd000 -     0x7fff8760bff7  libkxld.dylib (??? - ???) <B1BD4862-9D3F-3EEF-895C-A8E2E53684B6> /usr/lib/system/libkxld.dylib
        0x7fff8760c000 -     0x7fff8761afff  com.apple.HelpData (2.1.2 - 72) <B99E743A-82C9-3058-8FD5-18668CA890F7> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8761b000 -     0x7fff87638ff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8777c000 -     0x7fff8777dfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff877f2000 -     0x7fff878fffff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff87a8b000 -     0x7fff87a8cfff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff87a8d000 -     0x7fff87b8fff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
        0x7fff87b90000 -     0x7fff87bd4ff7  com.apple.MediaKit (12 - 589) <7CFF29BF-D907-3593-B338-0BB48643B2A8> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff87bd5000 -     0x7fff87d5fff7  com.apple.QTKit (7.7.1 - 2315) <BFC33B70-34F2-3940-A14A-3C51036589F0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87d7f000 -     0x7fff87d86fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff87d87000 -     0x7fff87eeeff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff87eef000 -     0x7fff87ef0fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff87ef1000 -     0x7fff87f87ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff87f88000 -     0x7fff87fb5fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff87fb6000 -     0x7fff87feffe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff87ff0000 -     0x7fff88452ff7  com.apple.RawCamera.bundle (3.9.1 - 586) <1AA853F4-E429-33E3-B4A9-6B019CCCC5E4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff88453000 -     0x7fff88465ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff88476000 -     0x7fff884d6fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff884d7000 -     0x7fff88abbfff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff88abc000 -     0x7fff88ac8fff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff88ada000 -     0x7fff88ae0ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff88ae1000 -     0x7fff88af3ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff88af4000 -     0x7fff88b34fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff88b48000 -     0x7fff88bb8fff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff88bf8000 -     0x7fff88cbfff7  com.apple.ColorSync (4.7.1 - 4.7.1) <EA74B067-9916-341A-9C68-6165A4656042> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff88cc0000 -     0x7fff88dd9fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff88dda000 -     0x7fff88ed7fff  com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff88ed8000 -     0x7fff88fb6fff  com.apple.DiscRecording (6.0.3 - 6030.4.1) <8DB1BDDD-F066-3E8B-B416-11DF712C6A1E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff88fb7000 -     0x7fff8906afff  com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff89080000 -     0x7fff89185fff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff89876000 -     0x7fff89ca8fef  com.apple.VideoToolbox (1.0 - 705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff89ca9000 -     0x7fff8a047fef  com.apple.MediaToolbox (1.0 - 705.61) <F48F2150-0573-354C-BBB2-BA52DD0FD0AB> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff8a7c8000 -     0x7fff8a7dcff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8a7dd000 -     0x7fff8a7deff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a7df000 -     0x7fff8a87ffff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a885000 -     0x7fff8a8c7ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8a8d6000 -     0x7fff8a8d6fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8a8d7000 -     0x7fff8a90aff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8a90b000 -     0x7fff8a911fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff8a93b000 -     0x7fff8a93fff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8a940000 -     0x7fff8a964fff  com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8a965000 -     0x7fff8a9e0ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8a9e1000 -     0x7fff8aaedfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8aaee000 -     0x7fff8abcbfef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff8abec000 -     0x7fff8abf1fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8abf2000 -     0x7fff8ae60ff7  com.apple.QuartzComposer (5.0 - 236.3) <F8B96724-2550-32FE-9DE4-22AC7A6C0942> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8ae61000 -     0x7fff8aeb9fff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8aeba000 -     0x7fff8af98fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8afef000 -     0x7fff8affbff7  com.apple.CrashReporterSupport (10.7.3 - 349) <5EB46C20-5ED2-37EE-A033-4B3B355059FA> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8b026000 -     0x7fff8b03cff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8b03d000 -     0x7fff8b0a7ff7  com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8b0a8000 -     0x7fff8b3cbff7  com.apple.AddressBook.framework (6.1 - 1083) <9C23C164-B9E1-3F80-83F4-C027AF282DE6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8b3cc000 -     0x7fff8b427ff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b536000 -     0x7fff8b62bfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff8b62c000 -     0x7fff8b64bfff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8b64c000 -     0x7fff8c250fff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c251000 -     0x7fff8c260ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff8c261000 -     0x7fff8c4d7ff7  com.apple.imageKit (2.1.1 - 1.0) <A4A58BBB-70BB-3A0F-84F0-49EC6113BF2F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8c4d8000 -     0x7fff8c56aff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8c56b000 -     0x7fff8c58bfff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8c58c000 -     0x7fff8c5b0fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8c5b1000 -     0x7fff8c5dafff  com.apple.datadetectors (3.2 - 172.5) <DCCD9903-0D01-3956-B4EB-F91CBF2C9414> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff8c5db000 -     0x7fff8c5e6ff7  com.apple.DisplayServicesFW (2.5.2 - 317) <D1FE33BD-1D71-343F-B790-685253F1F701> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8c62b000 -     0x7fff8c635ff7  liblaunch.dylib (392.35.0 - compatibility 1.0.0) <8F8BB206-CECA-33A5-A105-4A01C3ED5D23> /usr/lib/system/liblaunch.dylib
        0x7fff8c636000 -     0x7fff8c671fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8c672000 -     0x7fff8c6c6ff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8c6c7000 -     0x7fff8c6f6fff  com.apple.shortcut (2.1 - 2.1) <43C186C0-6B0F-39FA-976A-C307CC410495> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8c6f7000 -     0x7fff8c7f1ff7  com.apple.DiskImagesFramework (10.7.3 - 331.3) <57A7E46A-5AA4-37FF-B19C-5337CCBCA0CA> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8c7f2000 -     0x7fff8c84eff7  com.apple.QuickLookFramework (3.1 - 500.10) <35BF320E-26F5-310C-9FA9-D60919B218EC> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8c84f000 -     0x7fff8c85fff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8c860000 -     0x7fff8cb79ff7  com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8cb7a000 -     0x7fff8cb80ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8cb96000 -     0x7fff8cbabfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8cbac000 -     0x7fff8cbaefff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8cbaf000 -     0x7fff8cbb2fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8cbb3000 -     0x7fff8cbb9fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8cbba000 -     0x7fff8d081fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d082000 -     0x7fff8d364fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d5f1000 -     0x7fff8d683fff  com.apple.PDFKit (2.6.2 - 2.6.2) <4C8D80F6-09BB-3BD5-983B-A24FBEB5BCF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8d684000 -     0x7fff8d6d7fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8d6dd000 -     0x7fff8d6e4ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8d6e5000 -     0x7fff8d74dff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8d74e000 -     0x7fff8d74efff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8d74f000 -     0x7fff8d74ffff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8d766000 -     0x7fff8d89cfff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d89d000 -     0x7fff8d988fff  com.apple.backup.framework (1.3.1 - 1.3.1) <C933E52C-5BA6-386D-9B6A-8F98D8142A6F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8d989000 -     0x7fff8d98aff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d98b000 -     0x7fff8d9bbff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8d9bc000 -     0x7fff8d9dcfff  libsystem_kernel.dylib (1699.24.8 - compatibility 1.0.0) <C56819BB-3779-3726-B610-4CF7B3ABB6F9> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8da3a000 -     0x7fff8da3ffff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8da40000 -     0x7fff8daa6ff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8daa7000 -     0x7fff8db1cff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff8db1d000 -     0x7fff8de47ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8de48000 -     0x7fff8deaaff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8deab000 -     0x7fff8deabfff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8df50000 -     0x7fff8df8afe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8df8b000 -     0x7fff8df90ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8df91000 -     0x7fff8df94ff7  com.apple.securityhi (4.0 - 1) <7146CB8E-B754-3B0E-A74E-77E9138A81C5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8dfc5000 -     0x7fff8dfd6ff7  SyndicationUI (??? - ???) <31B8E697-A12A-3389-87A9-823CBE515686> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff8ed25000 -     0x7fff8ee07fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8ee08000 -     0x7fff8ee0cfff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <380C3F44-0CA7-3514-8080-46D1C9DF4FCD> /usr/lib/system/libdyld.dylib
        0x7fff8ee82000 -     0x7fff8ee83fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8ee84000 -     0x7fff8f618fef  com.apple.CoreAUC (6.11.04 - 6.11.04) <FFC336DF-C71F-3C93-8E93-5CBD9EEAE940> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8f619000 -     0x7fff8f642fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8f643000 -     0x7fff8f689ff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <01DD0773-236C-3AC3-B43B-07911F458767> /usr/lib/libcurl.4.dylib
        0x7fff8f68a000 -     0x7fff8f692fff  libsystem_dnssd.dylib (??? - ???) <998E3778-7B43-301C-9053-12045AB8544D> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8f693000 -     0x7fff8f6d6ff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <85D00F5C-43ED-33A9-80B4-72EB0EAE3E25> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8f6d7000 -     0x7fff8f6ffff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f700000 -     0x7fff8f740ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
        0x7fff8f7d3000 -     0x7fff8f7e9fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8f7ea000 -     0x7fff8f85dfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8f85e000 -     0x7fff8f89dff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8f89e000 -     0x7fff8f8c7ff7  com.apple.framework.Apple80211 (7.1.2 - 712.1) <B4CD34B3-D555-38D2-8FF8-E3C6A93B94EB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8f8c8000 -     0x7fff8f8d6fff  com.apple.NetAuth (3.1 - 3.1) <FE7EC4D7-5632-3B8D-9094-A0AC8D60EDEE> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f8d7000 -     0x7fff8f979ff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8f97a000 -     0x7fff8f9a1fff  com.apple.framework.internetaccounts (1.2 - 3) <A3FFB4BD-77BE-388F-ADB1-9CA80A68B1F2> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8fa95000 -     0x7fff8fc34fff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8fc35000 -     0x7fff8fc48ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff8fc49000 -     0x7fff8fc8bfff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8fce0000 -     0x7fff8fd29ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <B254CC2C-F1A4-3A87-96DE-B6A4113D2811> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8fd2a000 -     0x7fff8fd7eff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff90157000 -     0x7fff901a3ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff901a4000 -     0x7fff901f4fff  com.apple.CoreMediaIO (210.0 - 3180) <C5B60D3E-71BE-3CD2-90FC-3B2F9961D662> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff9037b000 -     0x7fff90381fff  IOSurface (??? - ???) <03F95CAC-569C-3573-B3D7-2D211B8BDC56> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff903e8000 -     0x7fff903e8fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff903e9000 -     0x7fff90437fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff90438000 -     0x7fff9044ffff  com.apple.CFOpenDirectory (10.7 - 146) <E71AE4A2-F72B-35F2-9043-9F45CF75F11A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff90502000 -     0x7fff90556ff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff90588000 -     0x7fff90622ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff90623000 -     0x7fff90625fff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
        0x7fff90626000 -     0x7fff9084efe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff9084f000 -     0x7fff9085aff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff90861000 -     0x7fff90868fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff90869000 -     0x7fff90adcfff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff90add000 -     0x7fff90b0aff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff90b0b000 -     0x7fff90b0efff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff90b0f000 -     0x7fff90b1aff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <48607E6E-8612-3267-9184-E948B1863B32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff90b1b000 -     0x7fff90b28fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff90b81000 -     0x7fff90b8eff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
        0x7fff90b8f000 -     0x7fff90b90fff  libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <37FEFE78-BCB5-37EC-8E99-747469BCA4C7> /usr/lib/system/libdnsinfo.dylib
        0x7fff90b91000 -     0x7fff90baefff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
        0x7fff90baf000 -     0x7fff90bb2fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff90ded000 -     0x7fff90e13ff7  com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff90e14000 -     0x7fff90f1bfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff90f1c000 -     0x7fff90f2eff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff90f35000 -     0x7fff91362fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff91363000 -     0x7fff91780ff7  com.apple.SceneKit (2.2 - 125.3) <DDCC8DB6-D5DB-31CD-A401-F56C84216E1C> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff91781000 -     0x7fff91c11fff  com.apple.Safari.framework (7534 - 7534.54.16) <87A0EB0F-A7E2-325A-A4C6-CDD208088E4E> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff91c12000 -     0x7fff925a27a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework

    Hi Michael, that is a lot to digest, but first try this...
    http://support.apple.com/kb/TS1627
    If that doesn't help, reading between the lines Question marks always seem to be close to the problem...
    0x7fff8ae61000 -     0x7fff8aeb9fff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    Can you maybe capture.download the/those Tiffs on a bad site & examine them/test print them in another APP?

  • Mac Mini repeatedly refuses to wake from sleep

    Please to anyone I really need your help.
    First let me preface you that I know my console log is incredibly long, and let me know if there is a way to make them more manageable and I will update.
    Also let me know which other logs or screen shots or active programs I can provide
    I have a 2011 2.5 ghz Mac mini i5 with AMD Radeon 6630M
    I have customized this with a 256gb SSD and 2TB HDD as well as 16gb RAM.
    I also have a Monoprice drawing tablet attached.
    My keyboard and trackpad are bluetooth
    I am running yosemite 10.10.1.
    10.10 was installed with a clean install.
    So here is the issue:
    The computer was working perfectly, and then, I can't identify a specific time, it started to just occasionally refuse to wake up from sleep (monitor off, won't activate).
    Interestingly it seems to have only started happening AFTER I purchased an apple TV which I use to mirror my screen for video playback. Prior to that I had two mac mini's (one hooked up to TV as a media center and one desktop). This configuration resulted in no freezing issues for a few months.
    My parents wanted to get an apple desktop so I ended up giving them my mac mini media center and decided to try using an apple TV mirroring with my mac mini instead.
    Now the computer seems to work perfectly fine for a day or two and then it just refuses to wake from sleep.
    I do a hard reset and it boots up with no issue and everything works perfectly for a couple days (or less), then it just won't wake from sleep at all.
    This can occur when still mirrored to apple TV, but also occurs when it is not.
    Background programs tend to be: dropbox, google drive, evernote, flycut, Teamviewer, safari and google chrome
    Additionally I have noticed that if the computer has been on for a couple days, when trying got mirror it becomes very choppy.
    Activity monitor identifies no CPU or memory hogs. (can post if needed)
    The console does seem to show A LOT of issues, but I can't make any sense of them, and I have tried searching google for what they might mean.
    HERE ARE THE CONSOLE LOGS FROM THE FEW HOURS BEFORE I ATTEMPTED TO UNSUCCESSFULLY WAKE
    11/26/14 4:01:21.687 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:01:21.728 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:04:35.987 PM BezelServices 245.23[67]: ASSERTION FAILED: dvcAddrRef != ((void *)0) -[DriverServices getDeviceAddress:] line: 2602
    11/26/14 4:04:35.987 PM BezelServices 245.23[67]: ASSERTION FAILED: dvcAddrRef != ((void *)0) -[DriverServices getDeviceAddress:] line: 2602
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning] ====== IDS Traffic Usage:
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning]    Service: com.apple.private.alloy.icloudpairing
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning]      outgoing-messages: 3
    11/26/14 4:04:41.601 PM identityservicesd[346]: [Warning]
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning]    Service: com.apple.madrid
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning]      incoming-messages: 8
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning]
    11/26/14 4:04:41.602 PM identityservicesd[346]: [Warning] ====== Done
    11/26/14 4:19:21.821 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:19:21.865 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:19:31.000 PM kernel[0]: Over-release of kernel-internal importance assertions for pid 1559 (AddressBookSourc), dropping 1 assertion(s) but task only has 0 remaining (0 external).
    11/26/14 4:19:31.470 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 4:19:31.490 PM com.apple.iCloudHelper[1562]: objc[1562]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 4:19:31.497 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 4:21:01.000 PM kernel[0]: Google Chrome He (map: 0xffffff802e43ab40) triggered DYLD shared region unnest for map: 0xffffff802e43ab40, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 4:37:21.951 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:37:21.994 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:53:02.000 PM kernel[0]: Google Chrome He (map: 0xffffff8036ea20f0) triggered DYLD shared region unnest for map: 0xffffff8036ea20f0, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 4:55:06.723 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:55:06.764 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 4:55:32.526 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 4:55:32.565 PM com.apple.iCloudHelper[1587]: objc[1587]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 4:55:32.579 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:04:41.516 PM identityservicesd[346]: [Warning] ====== IDS Traffic Usage:
    11/26/14 5:04:41.516 PM identityservicesd[346]: [Warning]    Service: com.apple.private.alloy.icloudpairing
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]      outgoing-messages: 3
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]    Service: com.apple.madrid
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]      incoming-messages: 10
    11/26/14 5:04:41.517 PM identityservicesd[346]: [Warning]
    11/26/14 5:04:41.518 PM identityservicesd[346]: [Warning] ====== Done
    11/26/14 5:13:22.527 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:13:22.571 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:13:31.440 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:13:31.464 PM com.apple.iCloudHelper[1596]: objc[1596]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 5:13:31.474 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:22:01.000 PM kernel[0]: Google Chrome He (map: 0xffffff8036ea20f0) triggered DYLD shared region unnest for map: 0xffffff8036ea20f0, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 5:31:21.008 PM com.apple.iCloudHelper[1611]: objc[1611]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 5:31:21.021 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:31:21.665 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:31:21.713 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:33:33.218 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 5:49:20.819 PM bird[320]: notify name "CKStatusReport" has been registered 140 times - this may be a leak
    11/26/14 5:49:21.142 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VDZ8PCF9YD.com.halfbrick.FruitNinjaLite is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.142 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VDZ8PCF9YD.com.halfbrick.FruitNinjaLite is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.433 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Pages is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.434 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Pages is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.606 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:49:21.641 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 5:49:21.741 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Automator is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:21.741 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Automator is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.038 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VJXTL73S8G.com.algoriddim.djay-ios is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.039 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.VJXTL73S8G.com.algoriddim.djay-ios is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.356 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.C5Z3V9M735.com.bitmonstergames.lili is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.357 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.C5Z3V9M735.com.bitmonstergames.lili is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.651 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Numbers is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.652 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.com.apple.Numbers is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.931 PM cloudd[354]: Stream 0x7fdd159500c0 is sending an event before being opened
    11/26/14 5:49:22.947 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.ZL5FFY3M32.com.mseven.mSecure is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:49:22.947 PM nsurlsessiond[349]: Being asked if container with identifier com.apple.clouddocs.ZL5FFY3M32.com.mseven.mSecure is foreground before getting callback from BRContainersMonitor!
    11/26/14 5:54:03.000 PM kernel[0]: Google Chrome He (map: 0xffffff802e3a7a50) triggered DYLD shared region unnest for map: 0xffffff802e3a7a50, region 0x7fff97200000->0x7fff97400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning] ====== IDS Traffic Usage:
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning]    Service: com.apple.private.alloy.icloudpairing
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning]      outgoing-messages: 3
    11/26/14 6:04:41.432 PM identityservicesd[346]: [Warning]
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning]    Service: com.apple.madrid
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning]      incoming-messages: 10
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning]
    11/26/14 6:04:41.433 PM identityservicesd[346]: [Warning] ====== Done
    11/26/14 6:07:21.702 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 6:07:21.748 PM CalendarAgent[324]: [com.apple.calendar.store.log.caldav.coredav] [Refusing to parse response to PROPPATCH because of content-type: [text/html; charset=UTF-8].]
    11/26/14 6:07:31.474 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:07:31.492 PM com.apple.iCloudHelper[1636]: objc[1636]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 6:07:31.503 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    HERE ARE THE CONSOLE LOGS IN THE TIME AROUND WHEN I TRIED TO WAKE THE COMPUTER
    11/26/14 6:10:37.688 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:21:17.000 PM bootlog[0]: BOOT_TIME 1417044077 0
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.AccountPolicyHelper" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.awdd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.callhistory.asl.conf" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.cloudd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.clouddocs" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.commerce.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.CoreDuetAdmissionControl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.family.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.ical" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.icloud.FindMyDevice" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.secinitd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM syslogd[16]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    11/26/14 6:21:19.000 PM kernel[0]: Longterm timer threshold: 1000 ms
    11/26/14 6:21:19.000 PM kernel[0]: PMAP: PCID enabled
    11/26/14 6:21:19.000 PM kernel[0]: Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    11/26/14 6:21:19.000 PM kernel[0]: vm_page_bootstrap: 3920186 free pages and 241350 wired pages
    11/26/14 6:21:19.000 PM kernel[0]: kext submap [0xffffff7f80a00000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000a00000]
    11/26/14 6:21:19.000 PM kernel[0]: zone leak detection enabled
    11/26/14 6:21:19.000 PM kernel[0]: "vm_compressor_mode" is 4
    11/26/14 6:21:19.000 PM kernel[0]: multiq scheduler config: deep-drain 0, urgent first 1, depth limit 4, band limit 127, sanity check 0
    11/26/14 6:21:19.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    11/26/14 6:21:19.000 PM kernel[0]: standard background quantum is 2500 us
    11/26/14 6:21:19.000 PM kernel[0]: mig_table_max_displ = 13
    11/26/14 6:21:19.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for AMFI
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Apple Mobile File Integrity (AMFI)
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    11/26/14 6:21:19.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    11/26/14 6:21:19.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    11/26/14 6:21:19.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    11/26/14 6:21:19.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    11/26/14 6:21:19.000 PM kernel[0]: MAC Framework successfully initialized
    11/26/14 6:21:19.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    11/26/14 6:21:19.000 PM kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2014 00:11:30)
    11/26/14 6:21:19.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    11/26/14 6:21:19.000 PM kernel[0]: ACPI: sleep states S3 S4 S5
    11/26/14 6:21:19.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0057
    11/26/14 6:21:19.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 00:11:36 Sep 19 2014) initialization complete
    11/26/14 6:21:19.000 PM kernel[0]: pci (build 00:11:20 Sep 19 2014), flags 0xe3000, pfm64 (36 cpu) 0xf80000000, 0x80000000
    11/26/14 6:21:19.000 PM kernel[0]: [ PCI configuration begin ]
    11/26/14 6:21:19.000 PM kernel[0]: console relocated to 0xf80010000
    11/26/14 6:21:19.000 PM kernel[0]: [ PCI configuration end, bridges 13, devices 18 ]
    11/26/14 6:21:19.000 PM kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID a4b197fffed35b90; max speed s800.
    11/26/14 6:21:19.000 PM kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    11/26/14 6:21:19.000 PM kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    11/26/14 6:21:19.000 PM kernel[0]: rooting via boot-uuid from /chosen: 63B7062C-5B87-3FFD-939F-B3D35565E8D0
    11/26/14 6:21:19.000 PM kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    11/26/14 6:21:19.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    11/26/14 6:21:19.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    11/26/14 6:21:19.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/Samsung SSD 840 EVO 250GB Media/IOGUIDPartitionScheme/Macintosh HD@2
    11/26/14 6:21:19.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 3
    11/26/14 6:21:19.000 PM kernel[0]: jnl: b(1, 3): replay_journal: from: 21117952 to: 24910336 (joffset 0x747000)
    11/26/14 6:21:19.000 PM kernel[0]: BTCOEXIST off
    11/26/14 6:21:19.000 PM kernel[0]: BRCM tunables:
    11/26/14 6:21:19.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    11/26/14 6:21:19.000 PM kernel[0]: jnl: b(1, 3): journal replay done.
    11/26/14 6:21:19.000 PM kernel[0]: hfs: mounted Macintosh HD on device root_device
    11/26/14 6:21:19.000 PM kernel[0]: VM Swap Subsystem is ON
    11/26/14 6:21:19.000 PM kernel[0]: hfs: Removed 106 orphaned / unlinked files and 30 directories
    11/26/14 6:21:19.358 PM com.apple.xpc.launchd[1]: (com.teamviewer.service) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:19.614 PM hidd[71]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    11/26/14 6:21:19.618 PM hidd[71]: ____IOHIDSessionScheduleAsync_block_invoke: thread_id=0x105ec0000
    11/26/14 6:21:19.619 PM hidd[71]: HID Session async scheduling initiated.
    11/26/14 6:21:19.619 PM hidd[71]: HID Session async root queue running at priority 63 and schedule 2.
    11/26/14 6:21:19.619 PM hidd[71]: HID Session async scheduling complete.
    11/26/14 6:21:19.619 PM hidd[71]: Successfully opened the IOHIDSession
    11/26/14 6:21:19.621 PM fseventsd[20]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (80211 2 80234)
    11/26/14 6:21:19.636 PM com.apple.SecurityServer[53]: Session 100000 created
    11/26/14 6:21:19.358 PM com.apple.xpc.launchd[1]: (com.microsoft.office.licensing.helper) This key does not do anything: OnDemand
    11/26/14 6:21:19.358 PM com.apple.xpc.launchd[1]: (com.microsoft.office.licensing.helper) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:19.359 PM com.apple.xpc.launchd[1]: (com.apple.AppleFileServer) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.649 PM fseventsd[20]: log dir: /.fseventsd getting new uuid: 796B7427-D1EC-4899-9B10-F9396F84A986
    11/26/14 6:21:19.359 PM com.apple.xpc.launchd[1]: (com.apple.alf) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.361 PM com.apple.xpc.launchd[1]: (com.apple.audio.coreaudiod) Unknown key for array: seatbelt-profiles
    11/26/14 6:21:19.362 PM com.apple.xpc.launchd[1]: (com.apple.auditd) The TimeOut key is no longer respected. It never did anything anyway.
    11/26/14 6:21:19.363 PM launchd[1]: assertion failed: 14B25: libxpc.dylib + 34510 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x8d
    11/26/14 6:21:19.363 PM com.apple.xpc.launchd[1]: (com.apple.backupd-status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.363 PM com.apple.xpc.launchd[1]: (com.apple.backupd.status.xpc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.365 PM com.apple.xpc.launchd[1]: (com.apple.bsd.dirhelper) The TimeOut key is no longer respected. It never did anything anyway.
    11/26/14 6:21:19.366 PM com.apple.xpc.launchd[1]: (com.apple.cmio.AVCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/26/14 6:21:19.366 PM com.apple.xpc.launchd[1]: (com.apple.autofsd) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:19.366 PM com.apple.xpc.launchd[1]: (com.apple.cmio.IIDCVideoAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    11/26/14 6:21:19.717 PM watchdogd[31]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    11/26/14 6:21:19.718 PM watchdogd[31]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    11/26/14 6:21:19.722 PM watchdogd[31]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    11/26/14 6:21:19.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    11/26/14 6:21:19.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    11/26/14 6:21:19.000 PM kernel[0]: bpfAttach len 64 dlt 12
    11/26/14 6:21:19.725 PM com.apple.xpc.launchd[1]: (com.apple.watchdogd) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    11/26/14 6:21:19.829 PM iconservicesagent[37]: iconservicesagent launched.
    11/26/14 6:21:19.973 PM com.apple.xpc.launchd[1]: (com.apple.CoreRAID[21]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.CoreRAID
    11/26/14 6:21:19.978 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:19.984 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    11/26/14 6:21:19.984 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    11/26/14 6:21:19.990 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    11/26/14 6:21:19.990 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:19.993 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:19.998 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    11/26/14 6:21:20.080 PM com.apple.SecurityServer[53]: Entering service
    11/26/14 6:21:20.108 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:20.000 PM kernel[0]: IOGraphics flags 0x43
    11/26/14 6:21:20.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    11/26/14 6:21:20.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8281 FirmwareVersion - 0x0147
    11/26/14 6:21:20.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xd000 ****
    11/26/14 6:21:20.000 PM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xd000 ****
    11/26/14 6:21:20.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xd000
    11/26/14 6:21:20.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    11/26/14 6:21:20.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    11/26/14 6:21:20.000 PM kernel[0]: **** [IOBluetoothHCIController][ProcessBluetoothTransportShowsUpActionWL] -- Connected to the transport successfully -- 0x7180 -- 0xc800 -- 0xd000 ****
    11/26/14 6:21:20.000 PM kernel[0]: ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
    11/26/14 6:21:20.267 PM kdc[61]: label: default
    11/26/14 6:21:20.267 PM kdc[61]: dbname: od:/Local/Default
    11/26/14 6:21:20.269 PM kdc[61]: mkey_file: /var/db/krb5kdc/m-key
    11/26/14 6:21:20.286 PM kdc[61]: acl_file: /var/db/krb5kdc/kadmind.acl
    11/26/14 6:21:20.302 PM opendirectoryd[46]: BUG in libdispatch: 14B25 - 2004 - 0x5
    11/26/14 6:21:20.000 PM kernel[0]: jnl: disk1s2: replay_journal: from: 155467776 to: 156610560 (joffset 0x3a38000)
    11/26/14 6:21:20.000 PM kernel[0]: Previous shutdown cause: 3
    11/26/14 6:21:20.000 PM kernel[0]: DSMOS has arrived
    11/26/14 6:21:20.562 PM iconservicesagent[37]: Starting service with cache path: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.iconservices
    11/26/14 6:21:20.682 PM com.apple.usbmuxd[52]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    11/26/14 6:21:20.692 PM loginwindow[67]: Login Window Application Started
    11/26/14 6:21:20.716 PM thermald[22]: Waiting for OSTT support notification
    11/26/14 6:21:20.000 PM kernel[0]: jnl: disk1s2: journal replay done.
    11/26/14 6:21:20.781 PM UserEventAgent[17]: Captive: CNPluginHandler en1: Inactive
    11/26/14 6:21:20.791 PM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.system) Service "com.apple.ManagedClient.startup" tried to hijack endpoint "com.apple.ManagedClient.agent" from owner: com.apple.ManagedClient
    11/26/14 6:21:20.794 PM kdc[61]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    11/26/14 6:21:20.000 PM kernel[0]: hfs: mounted Internal Storage Drive on device disk1s2
    11/26/14 6:21:20.895 PM secinitd[236]: UID[0]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    11/26/14 6:21:20.896 PM secinitd[236]: ctkd[235]: unable to get root path for bundle of main executable: /System/Library/Frameworks/CryptoTokenKit.framework/ctkd
    11/26/14 6:21:20.935 PM apsd[50]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    11/26/14 6:21:20.973 PM fseventsd[20]: event logs in /Volumes/Internal Storage Drive/.fseventsd out of sync with volume.  destroying old logs. (43490 0 80235)
    11/26/14 6:21:20.974 PM smb-sync-preferences[70]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    11/26/14 6:21:21.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    11/26/14 6:21:21.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 94 dlt 163
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 30 dlt 105
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 52 dlt 127
    11/26/14 6:21:21.000 PM kernel[0]: bpfAttach len 38 dlt 192
    11/26/14 6:21:21.013 PM configd[25]: dhcp_arp_router: en1 SSID unavailable
    11/26/14 6:21:21.016 PM configd[25]: preference: no sharing preferences
    11/26/14 6:21:21.017 PM digest-service[237]: label: default
    11/26/14 6:21:21.017 PM digest-service[237]: dbname: od:/Local/Default
    11/26/14 6:21:21.017 PM digest-service[237]: mkey_file: /var/db/krb5kdc/m-key
    11/26/14 6:21:21.017 PM digest-service[237]: acl_file: /var/db/krb5kdc/kadmind.acl
    11/26/14 6:21:21.028 PM digest-service[237]: digest-request: uid=0
    11/26/14 6:21:21.080 PM digest-service[237]: digest-request: netr probe 0
    11/26/14 6:21:21.084 PM WindowServer[233]: Server is starting up
    11/26/14 6:21:21.085 PM digest-service[237]: digest-request: init request
    11/26/14 6:21:21.097 PM digest-service[237]: digest-request: init return domain: BUILTIN server: LOCALHOST indomain was: <NULL>
    11/26/14 6:21:21.105 PM smb-sync-preferences[70]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    11/26/14 6:21:21.111 PM smb-sync-preferences[70]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    11/26/14 6:21:21.155 PM mds[33]: (FMW.Normal:1402) FMW 0 0
    11/26/14 6:21:21.196 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    11/26/14 6:21:21.205 PM apsd[50]: Attempt to set push wake topics without dark wake enabled: ()
    11/26/14 6:21:21.206 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    11/26/14 6:21:21.206 PM apsd[50]: <APSConnectionServer: 0x7f9fb8d2f7b0> Invalid mach port - Cleaning up this named port's topics. com.apple.askpermission.aps
    11/26/14 6:21:21.000 PM kernel[0]: in func createVirtualInterface ifRole = 1
    11/26/14 6:21:21.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    11/26/14 6:21:21.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init <p2p> role 1
    11/26/14 6:21:21.000 PM kernel[0]: Created virtif 0xffffff804584ec00 p2p0
    11/26/14 6:21:21.288 PM lsregister[242]: LaunchServices: Begin database seeding
    11/26/14 6:21:21.289 PM lsregister[242]: LaunchServices: Completed database seeding
    11/26/14 6:21:21.298 PM airportd[30]: airportdProcessDLILEvent: en1 attached (up)
    11/26/14 6:21:21.487 PM systemkeychain[174]: done file: /var/run/systemkeychaincheck.done
    11/26/14 6:21:21.634 PM iconservicesd[38]: iconservicesd launched.
    11/26/14 6:21:21.637 PM iconservicesd[38]: Cache path: /Library/Caches/com.apple.iconservices.store
    11/26/14 6:21:21.798 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:21.798 PM com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:21.799 PM com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:21:21.799 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/26/14 6:21:21.871 PM locationd[55]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    11/26/14 6:21:21.893 PM locationd[55]: NBB-Could not get UDID for stable refill timing, falling back on random
    11/26/14 6:21:21.000 PM kernel[0]: en2: promiscuous mode enable succeeded
    11/26/14 6:21:21.992 PM discoveryd[49]: Basic Sockets GetProcessNameFromSocket() failed errno[57] err[-1]
    11/26/14 6:21:21.992 PM discoveryd[49]: Basic Sockets Unknown(-1), errno 0 UDS FD=3
    11/26/14 6:21:21.992 PM discoveryd[49]: Basic Sockets UDS FD=3 ERROR: failed to get effective user ID, errno 0
    11/26/14 6:21:21.993 PM discoveryd[49]: Basic SleepProxy BSP Server Disabled. Metric = 3373
    11/26/14 6:21:21.994 PM WindowServer[233]: Session 257 retained (2 references)
    11/26/14 6:21:21.994 PM WindowServer[233]: Session 257 released (1 references)
    11/26/14 6:21:21.998 PM discoveryd[49]: AwdlD2d AwdlD2dInitialize: Initialized
    11/26/14 6:21:22.001 PM discoveryd[49]: D2D_IPC: Loaded
    11/26/14 6:21:22.020 PM discoveryd_helper[249]: Basic RemoteControl com.apple.discoveryd_helper Starting XPC Server
    11/26/14 6:21:22.021 PM discoveryd_helper[249]: Detailed RemoteControl com.apple.discoveryd_helper XPC connection 0x7f8003407220: start (pid=49, <unknown> not root)
    11/26/14 6:21:22.024 PM WindowServer[233]: Session 257 retained (2 references)
    11/26/14 6:21:22.027 PM WindowServer[233]: init_page_flip: page flip mode is on
    11/26/14 6:21:22.074 PM discoveryd[49]: Basic WABServer NetResolverEvent no resolvers, resetting domains
    11/26/14 6:21:22.075 PM discoveryd[49]: Basic DNSResolver etc/hosts file changed: Event 0x7f9ef870c9f0 Flushed /etc/hosts cache
    11/26/14 6:21:22.077 PM discoveryd[49]: Basic BTMMServer,Warn Couldn't remove from DynStore No such key
    11/26/14 6:21:22.078 PM discoveryd[49]: Basic RemoteControl com.apple.discoveryd Starting XPC Server
    11/26/14 6:21:22.078 PM discoveryd[49]: Basic SleepProxy Could not get the primary interface
    11/26/14 6:21:22.079 PM discoveryd[49]: Basic RemoteControl com.apple.discoveryd.dnsproxy Starting XPC Server
    11/26/14 6:21:22.085 PM discoveryd[49]: Basic SleepProxy Sleep Proxy Server is not enabled
    11/26/14 6:21:22.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    11/26/14 6:21:22.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    11/26/14 6:21:22.119 PM awacsd[251]: Starting awacsd connectivity_executables-112 (Sep  9 2014 16:16:55)
    11/26/14 6:21:22.137 PM networkd[250]: networkd-411 pid 250
    11/26/14 6:21:22.140 PM awacsd[251]: InnerStore CopyAllZones: no info in Dynamic Store
    11/26/14 6:21:22.194 PM kdc[61]: KDC started
    11/26/14 6:21:22.238 PM UserEventAgent[17]: nsurlsessiond_events plugin: adding token 1 for client softwareupdate_download_service
    11/26/14 6:21:22.336 PM awacsd[251]: Configuring lazy AWACS client: 109974245.p07.members.btmm.icloud.com.
    11/26/14 6:21:22.348 PM discoveryd[49]: Basic BTMMServer Got DNS key from awacsd for 109974245.members.btmm.icloud.com.
    11/26/14 6:21:22.353 PM discoveryd[49]: Basic BTMMServer Account info completed for 109974245.members.btmm.icloud.com.
    11/26/14 6:21:22.408 PM locationd[55]: locationd was started after an unclean shutdown
    11/26/14 6:21:22.442 PM WindowServer[233]: Found 76 modes for display 0x00000000 [76, 0]
    11/26/14 6:21:22.446 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.448 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.449 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.451 PM WindowServer[233]: mux_initialize: Couldn't find any matches
    11/26/14 6:21:22.461 PM WindowServer[233]: Found 76 modes for display 0x00000000 [76, 0]
    11/26/14 6:21:22.483 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.483 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.484 PM WindowServer[233]: Found 1 modes for display 0x00000000 [1, 0]
    11/26/14 6:21:22.490 PM locationd[55]: Location icon should now be in state 'Inactive'
    11/26/14 6:21:22.518 PM WindowServer[233]: WSMachineUsesNewStyleMirroring: false
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x1a492c40: GL mask 0x1; bounds (0, 0)[1920 x 1200], 76 modes available
    Main, Active, on-line, enabled, boot, Vendor 469, Model 24b1, S/N 0, Unit 0, Rotation 0
    UUID 0x5f28995fa90a8dcf15b9a417c318b0c9
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.522 PM WindowServer[233]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.523 PM WindowServer[233]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.524 PM WindowServer[233]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    11/26/14 6:21:22.524 PM WindowServer[233]: WSSetWindowTransform: Singular matrix
    11/26/14 6:21:22.525 PM WindowServer[233]: WSSetWindowTransform: Singular matrix
    11/26/14 6:21:22.525 PM WindowServer[233]: WSSetWindowTransform: Singular matrix
    11/26/14 6:21:22.528 PM WindowServer[233]: Display 0x1a492c40: GL mask 0x1; bounds (0, 0)[1920 x 1200], 76 modes available
    Main, Active, on-line, enabled, boot, Vendor 469, Model 24b1, S/N 0, Unit 0, Rotation 0
    UUID 0x5f28995fa90a8dcf15b9a417c318b0c9
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f0040: GL mask 0x10; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f003f: GL mask 0x8; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f003e: GL mask 0x4; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.529 PM WindowServer[233]: Display 0x003f003d: GL mask 0x2; bounds (2947, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    11/26/14 6:21:22.530 PM WindowServer[233]: CGXPerformInitialDisplayConfiguration
    11/26/14 6:21:22.530 PM WindowServer[233]:   Display 0x1a492c40: Unit 0; Vendor 0x469 Model 0x24b1 S/N 0 Dimensions 21.50 x 13.86; online enabled, Bounds (0,0)[1920 x 1200], Rotation 0, Resolution 1
    11/26/14 6:21:22.531 PM WindowServer[233]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.531 PM WindowServer[233]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.531 PM WindowServer[233]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.532 PM WindowServer[233]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2947,0)[1 x 1], Rotation 0, Resolution 1
    11/26/14 6:21:22.552 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.553 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    11/26/14 6:21:22.553 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    11/26/14 6:21:22.557 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    11/26/14 6:21:22.557 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:22.558 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:22.559 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    11/26/14 6:21:22.562 PM WindowServer[233]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001f, accelerator 0x00003ef3, unit 0, caps QEX|MIPMAP, vram 256 MB
    11/26/14 6:21:22.562 PM WindowServer[233]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions NPOT|GLSL|FLOAT
    11/26/14 6:21:22.563 PM WindowServer[233]: GLCompositor enabled for tile size [256 x 256]
    11/26/14 6:21:22.563 PM WindowServer[233]: CGXGLInitMipMap: mip map mode is on
    11/26/14 6:21:22.607 PM WindowServer[233]: CGXSetDisplayColorProfileAndTransfer: Display 0x1a492c40: Unit 0; ColorProfile { -1113921444 }; TransferFormula (1.000000, 1.000000, 1.000000)
    11/26/14 6:21:22.625 PM com.apple.AmbientDisplayAgent[262]: AmbientDisplayAgent started
    11/26/14 6:21:22.630 PM com.apple.AmbientDisplayAgent[262]: AMBD initializing devices
    11/26/14 6:21:22.636 PM com.apple.AmbientDisplayAgent[262]: AMBD Agent: xpc connection became invalid during event handler
    11/26/14 6:21:22.641 PM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.641 PM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    11/26/14 6:21:22.643 PM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    11/26/14 6:21:22.645 PM com.apple.xpc.launchd[1]: (com.apple.helpd) This key does not do anything: OnDemand
    11/26/14 6:21:22.650 PM com.apple.xpc.launchd[1]: (com.apple.noticeboard.agent) This key does not do anything: OnDemand
    11/26/14 6:21:22.653 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:22.000 PM kernel[0]: hfs: mounted Recovery HD on device disk0s3
    11/26/14 6:21:22.669 PM mds[33]: (Volume.Normal:2464) volume:0x7f7f6180d000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    11/26/14 6:21:22.654 PM com.apple.xpc.launchd[1]: (com.apple.inputswitcher.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.654 PM com.apple.xpc.launchd[1]: (com.apple.universalaccesscontrol.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.654 PM com.apple.xpc.launchd[1]: (com.apple.universalaccessd.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.655 PM com.apple.xpc.launchd[1]: (com.apple.UserEventAgent-LoginWindow) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:22.656 PM com.apple.xpc.launchd[1]: (com.apple.VoiceOver.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.657 PM com.apple.xpc.launchd[1]: (com.apple.ZoomWindow.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:22.657 PM com.apple.xpc.launchd[1]: (com.teamviewer.desktop) This service is defined to be constantly running and is inherently inefficient.
    11/26/14 6:21:22.775 PM com.apple.SecurityServer[53]: Session 100005 created
    11/26/14 6:21:22.857 PM WindowServer[233]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x1a492c40 device: 0x7fb95bc16740  isBackBuffered: 1 numComp: 3 numDisp: 3
    11/26/14 6:21:22.857 PM WindowServer[233]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fb95bc16740) - enabling OpenGL
    11/26/14 6:21:22.928 PM configd[25]: network changed.
    11/26/14 6:21:22.928 PM configd[25]: setting hostname to "Seans-2011-Mac-Mini.local"
    11/26/14 6:21:22.950 PM configd[25]: dhcp_arp_router: en1 SSID unavailable
    11/26/14 6:21:23.006 PM loginwindow[67]: The current system was not found in the list of machines requiring a switch to a black background
    11/26/14 6:21:23.025 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:23.026 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:23.041 PM loginwindow[67]: Login Window Started Security Agent
    11/26/14 6:21:23.070 PM askpermissiond[267]: objc[267]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    11/26/14 6:21:23.097 PM askpermissiond[267]: StoreTransport: Resetting APS Connection using environment name production
    11/26/14 6:21:23.104 PM apsd[50]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    11/26/14 6:21:23.170 PM SecurityAgent[278]: This is the first run
    11/26/14 6:21:23.170 PM SecurityAgent[278]: MacBuddy was run = 0
    11/26/14 6:21:23.203 PM SecurityAgent[278]: User info context values set for seanstoy
    11/26/14 6:21:23.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 92:81:d8:d1:65:f5  MAC AUTH succeeded
    11/26/14 6:21:23.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    11/26/14 6:21:23.000 PM kernel[0]: AirPort: Link Up on en1
    11/26/14 6:21:23.000 PM kernel[0]: en1: BSSID changed to 92:81:d8:d1:65:f5
    11/26/14 6:21:23.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    11/26/14 6:21:23.390 PM UserEventAgent[272]: user agent networkd: built Sep  9 2014 16:11:57
    11/26/14 6:21:23.457 PM WiFiAgent[273]:  securityd_message_with_reply_sync Failed to talk to secd after 4 attempts.
    11/26/14 6:21:23.483 PM fseventsd[20]: log dir: /Volumes/Internal Storage Drive/.fseventsd getting new uuid: 13CDA244-CC79-498D-B287-5CAA4C7F080D
    11/26/14 6:21:23.496 PM SecurityAgent[278]: Login Window login proceeding
    11/26/14 6:21:23.577 PM awacsd[251]: KV HTTP 0
    11/26/14 6:21:23.609 PM fseventsd[20]: Logging disabled completely for device:1: /Volumes/Recovery HD
    11/26/14 6:21:23.685 PM loginwindow[67]: Login Window - Returned from Security Agent
    11/26/14 6:21:23.000 PM kernel[0]: rtR0InitNative: warning! failed to resolve special kernel symbols
    11/26/14 6:21:23.000 PM kernel[0]: vboxdrv: fAsync=0 offMin=0xa51 offMax=0xeaf
    11/26/14 6:21:23.000 PM kernel[0]: supdrvDTraceInit: RTR0DbgKrnlInfoOpen failed with rc=-102.
    11/26/14 6:21:23.000 PM kernel[0]: VBoxDrv: version 4.3.16 r95972; IOCtl version 0x1a0007; IDC version 0x10000; dev major=33
    11/26/14 6:21:23.000 PM kernel[0]: VBoxDrv: Failed to open kernel symbols, rc=-102
    11/26/14 6:21:23.907 PM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:23.000 PM kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    11/26/14 6:21:23.913 PM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    11/26/14 6:21:23.915 PM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    11/26/14 6:21:23.915 PM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    11/26/14 6:21:23.918 PM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    11/26/14 6:21:23.918 PM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    11/26/14 6:21:23.919 PM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    11/26/14 6:21:23.921 PM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    11/26/14 6:21:23.972 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    11/26/14 6:21:23.972 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    11/26/14 6:21:23.973 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    11/26/14 6:21:23.974 PM com.apple.audio.DriverHelper[292]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.wirelessproxd.
    11/26/14 6:21:23.981 PM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    11/26/14 6:21:24.002 PM coreaudiod[290]: 2014-11-26 06:21:24.001687 PM [AirPlay] BTLE discovery removing all devices
    11/26/14 6:21:24.003 PM coreaudiod[290]: 2014-11-26 06:21:24.003326 PM [AirPlay] Resetting AWDL traffic registration.
    11/26/14 6:21:24.004 PM coreaudiod[290]: 2014-11-26 06:21:24.003731 PM [AirPlay] Deregister AirPlay traffic for AWDL at MAC 00:00:00:00:00:00 with target infra non critical PeerIndication=0 err=-3900
    11/26/14 6:21:24.006 PM discoveryd[49]: AwdlD2d AwdlD2dStartBrowsingForKey: '_raop' Browsing service started
    11/26/14 6:21:24.006 PM discoveryd[49]: AwdlD2d AwdlD2dStartBrowsingForKey: '_airplay' Browsing service started
    11/26/14 6:21:24.007 PM com.apple.audio.DriverHelper[292]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    11/26/14 6:21:24.007 PM com.apple.audio.DriverHelper[292]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    11/26/14 6:21:24.007 PM com.apple.audio.DriverHelper[292]: The plug-in named BluetoothAudioPlugIn.driver requires

    I'm having this same issue. I also have this line in my log, which is curious:
    12/14/14 7:13:07.822 PM netbiosd[16766]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.smbd
    Is this related to the problem? What does it mean?
    My 2010 27" iMac running Yosemite won't wake up from sleep.

  • Mac Mini slow login

    I wonder if anyone can help with this.
    My Mac Mini, with a 256GB Samsung SSD installed just after purchase, has been very quick for the last 7 months. Suddenly the boot time has become painfully slow with a long delay until I can log in. After login all runs fine as far as I can tell. Here's what happens:
    Power on - grey screen and spinning progress bar (this used to take 15-20 seconds but is now longer)
    Login window appears but all buttons are unresponsive. Mouse cursor moves on screen but nothing clicks. Neither can one use keyboard shortcuts.
    After a long wait the login buttons suddenly become active and I can enter password and proceed.
    I have tried FSCK, permissions check, Disk repair and eventually reinstalled the OS, just in case, but the symptoms persist.
    I suspect there is some background process that is holding up the startup process but I am unsure what it could be. Perhaps someone with a more expert eye could have a look at the console data below and see if they can spot what seems to be causing the lag. Seems to me not a lot happens between 16:19 and 16:26 when it all gets rolling again...
    Thanks for any help
    Mar 18 16:17:30 localhost bootlog[0]: BOOT_TIME 1363623450 0
    Mar 18 16:17:32 localhost kernel[0]: PMAP: PCID enabled
    Mar 18 16:17:32 localhost kernel[0]: Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Mar 18 16:17:32 localhost kernel[0]: vm_page_bootstrap: 1847087 free pages and 233681 wired pages
    Mar 18 16:17:32 localhost kernel[0]: kext submap [0xffffff7f80735000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000735000]
    Mar 18 16:17:32 localhost kernel[0]: zone leak detection enabled
    Mar 18 16:17:32 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar 18 16:17:32 localhost kernel[0]: standard background quantum is 2500 us
    Mar 18 16:17:32 localhost kernel[0]: mig_table_max_displ = 74
    Mar 18 16:17:32 localhost kernel[0]: TSC Deadline Timer supported and enabled
    Mar 18 16:17:32 localhost kernel[0]: corecrypto kext started!
    Mar 18 16:17:32 localhost kernel[0]: Running kernel space in FIPS MODE
    Mar 18 16:17:32 localhost kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Mar 18 16:17:32 localhost kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    Mar 18 16:17:32 localhost kernel[0]: corecrypto.kext FIPS POST passed!
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    Mar 18 16:17:32 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    Mar 18 16:17:32 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar 18 16:17:32 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar 18 16:17:32 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar 18 16:17:32 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar 18 16:17:32 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar 18 16:17:32 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar 18 16:17:32 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar 18 16:17:32 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar 18 16:17:32 localhost kernel[0]: MAC Framework successfully initialized
    Mar 18 16:17:32 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar 18 16:17:32 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Mar 18 16:17:32 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5]
    Mar 18 16:17:32 localhost kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    Mar 18 16:17:32 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0057
    Mar 18 16:17:32 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 22:41:17 Jan  6 2013) initialization complete
    Mar 18 16:17:32 localhost kernel[0]: [ PCI configuration begin ]
    Mar 18 16:17:32 localhost kernel[0]: console relocated to 0xfd0010000
    Mar 18 16:17:32 localhost kernel[0]: PCI configuration changed (bridge=16 device=5 cardbus=0)
    Mar 18 16:17:32 localhost kernel[0]: [ PCI configuration end, bridges 13 devices 18 ]
    Mar 18 16:17:32 localhost kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    Mar 18 16:17:32 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar 18 16:17:32 localhost kernel[0]: rooting via boot-uuid from /chosen: 7241D56B-8820-3EA6-90DE-7BCADCB0D29E
    Mar 18 16:17:32 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Mar 18 16:17:32 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar 18 16:17:32 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar 18 16:17:32 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar 18 16:17:32 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar 18 16:17:32 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar 18 16:17:32 localhost kernel[0]: FireWire (OHCI) TI ID 823f built-in now active, GUID 3c0754fffea33274; max speed s800.
    Mar 18 16:17:32 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT1@1/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/SAMSUNG SSD 830 Series Media/IOGUIDPartitionScheme/Mac SSD@2
    Mar 18 16:17:32 localhost kernel[0]: BSD root: disk0s2, major 1, minor 4
    Mar 18 16:17:32 localhost kernel[0]: Kernel is LP64
    Mar 18 16:17:32 localhost kernel[0]: USBMSC Identifier (non-unique): 00E0010797477 0x59f 0x1018 0x1
    Mar 18 16:17:32 localhost kernel[0]: USBMSC Identifier (non-unique): 0010101D40003358 0x60f 0x1007 0x200
    Mar 18 16:17:30 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar 18 16:17:30 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Mar 18 16:17:31 localhost com.apple.launchd[1] (com.xrite.device.xrdd.plist): Unknown key for string: CFBundleVersion
    Mar 18 16:17:31 localhost com.apple.launchd[1] (com.xrite.device.xrdd.plist): Unknown key: CFBundleVersion
    Mar 18 16:17:31 localhost com.apple.launchd[1] (com.apple.automountd): Unknown key for boolean: NSSupportsSuddenTermination
    Mar 18 16:17:32 localhost distnoted[20]: # distnote server daemon  absolute time: 2.418917068   civil time: Mon Mar 18 16:17:32 2013   pid: 20 uid: 0  root: yes
    Mar 18 16:17:33 localhost com.apple.SecurityServer[15]: Session 100000 created
    Mar 18 16:17:33 localhost configd[17]: ioctl(SIOCGIFCAP) failed: Device not configured
    Mar 18 16:17:33 --- last message repeated 1 time ---
    Mar 18 16:17:33 Petes-Mac-mini.local configd[17]: setting hostname to "Petes-Mac-mini.local"
    Mar 18 16:17:33 Petes-Mac-mini.local configd[17]: network changed.
    Mar 18 16:17:33 Petes-Mac-mini.local com.apple.SecurityServer[15]: Entering service
    Mar 18 16:17:33 Petes-Mac-mini.local UserEventAgent[11]: Captive: [mySCCopyWiFiDevices:162] WiFi Device Name == NULL
    Mar 18 16:17:34 Petes-Mac-mini kernel[0]: Waiting for DSMOS...
    Mar 18 16:17:36 Petes-Mac-mini kernel[0]: Previous Shutdown Cause: 5
    Mar 18 16:17:36 Petes-Mac-mini kernel[0]: BTCOEXIST off
    Mar 18 16:17:36 Petes-Mac-mini kernel[0]: BRCM tunables:
    Mar 18 16:17:36 Petes-Mac-mini kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    Mar 18 16:17:36 Petes-Mac-mini.local com.apple.kextd[12]: Kext id com.apple.kernel.iokit not found; removing personalities from kernel.
    Mar 18 16:17:36 Petes-Mac-mini.local com.apple.kextd[12]: String/URL conversion failure.
    Mar 18 16:17:37 Petes-Mac-mini.local hidd[74]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    Mar 18 16:17:37 Petes-Mac-mini kernel[0]: macx_swapon SUCCESS
    Mar 18 16:17:37 Petes-Mac-mini.local hidd[74]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    Mar 18 16:17:37 Petes-Mac-mini com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 10 seconds
    Mar 18 16:17:37 Petes-Mac-mini.local fseventsd[75]: could not open <</.fseventsd/fseventsd-uuid>> (No such file or directory)
    Mar 18 16:17:37 Petes-Mac-mini.local fseventsd[75]: log dir: /.fseventsd getting new uuid: 80C67064-6BBE-4E98-B4E2-C4A7CF11CE18
    Mar 18 16:17:37 Petes-Mac-mini com.apple.launchd[1] (com.rogueamoeba.hermes[93]): Exited with code: 1
    Mar 18 16:17:37 Petes-Mac-mini.local awacsd[84]: Starting awacsd connectivity-78.2 (Dec 16 2012 19:43:29)
    Mar 18 16:17:37 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/UpdateS ettingsTool' [54] for authorization created by '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/UpdateS ettingsTool' [54] (100002,0)
    Mar 18 16:17:37 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.services.directory.configure' by client '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/UpdateS ettingsTool' [54] for authorization created by '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/UpdateS ettingsTool' [54] (100002,0)
    Mar 18 16:17:37 Petes-Mac-mini.local SophosAutoUpdate[92]: AlreadyRegistered
    Mar 18 16:17:37 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.preferences' by client '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/writeco nfig' [102] for authorization created by '/System/Library/PrivateFrameworks/Admin.framework/Versions/A/Resources/UpdateS ettingsTool' [54] (100002,0)
    Mar 18 16:17:37 Petes-Mac-mini.local Little Snitch Daemon[97]: 3.0.3 (3908): m7835626c 0 / 0x101817fa0
    Mar 18 16:17:37 Petes-Mac-mini.local awacsd[84]: InnerStore CopyAllZones: no info in Dynamic Store
    Mar 18 16:17:37 Petes-Mac-mini.local apsd[86]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 18 16:17:37 --- last message repeated 1 time ---
    Mar 18 16:17:37 Petes-Mac-mini.local revisiond[60]: Had metainfo
    Mar 18 16:17:37 Petes-Mac-mini.local revisiond[60]: UUIDs match!
    Mar 18 16:17:37 Petes-Mac-mini.local systemkeychain[110]: done file: /var/run/systemkeychaincheck.done
    Mar 18 16:17:38 Petes-Mac-mini.local SophosAntiVirus[90]: reloading scheduled scans...
    Mar 18 16:17:38 Petes-Mac-mini.local coreservicesd[101]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    Mar 18 16:17:38 Petes-Mac-mini.local ifcstart[73]: Error loading /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder:  dlopen(/Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder, 262): no suitable image found.  Did find:
              /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder: no matching architecture in universal wrapper
    Mar 18 16:17:38 --- last message repeated 17 times ---
    Mar 18 16:17:38 Petes-Mac-mini.local revisiond[60]: Had metainfo
    Mar 18 16:17:38 Petes-Mac-mini.local revisiond[60]: UUIDs match!
    Mar 18 16:17:38 Petes-Mac-mini.local ifcstart[73]: Error loading /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder:  dlopen(/Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder, 262): no suitable image found.  Did find:
              /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder: no matching architecture in universal wrapper
    Mar 18 16:17:38 --- last message repeated 2 times ---
    Mar 18 16:17:38 Petes-Mac-mini.local ifcstart[73]: Error loading /Library/QuickTime/macam.component/Contents/MacOS/macam:  dlopen(/Library/QuickTime/macam.component/Contents/MacOS/macam, 262): no suitable image found.  Did find:
              /Library/QuickTime/macam.component/Contents/MacOS/macam: no matching architecture in universal wrapper
    Mar 18 16:17:38 Petes-Mac-mini.local ifcstart[73]: Error loading /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder:  dlopen(/Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder, 262): no suitable image found.  Did find:
              /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder: no matching architecture in universal wrapper
    Mar 18 16:17:38 --- last message repeated 19 times ---
    Mar 18 16:17:38 Petes-Mac-mini.local ifcstart[73]: Error loading /Library/QuickTime/macam.component/Contents/MacOS/macam:  dlopen(/Library/QuickTime/macam.component/Contents/MacOS/macam, 262): no suitable image found.  Did find:
              /Library/QuickTime/macam.component/Contents/MacOS/macam: no matching architecture in universal wrapper
    Mar 18 16:17:39 Petes-Mac-mini.local makequeues[132]:     Device URI is dnssd://hp%20LaserJet%204200%20(0001E62B2F0C)._pdl-datastream._tcp.local./?bidi
    Mar 18 16:17:39 Petes-Mac-mini.local makequeues[132]:     NickName is HP LaserJet 4200 Series
    Mar 18 16:17:39 Petes-Mac-mini.local makequeues[132]:     PCFileName is HP4200_6.PPD
    Mar 18 16:17:39 Petes-Mac-mini.local makequeues[132]:     FileVersion is 19.5
    Mar 18 16:17:39 Petes-Mac-mini.local makequeues[132]: hp_LaserJet_4200__0001E62B2F0C_: Checking for updates...
    Mar 18 16:17:39 Petes-Mac-mini.local com.apple.kextd[12]: Can't load /System/Library/Extensions/CDSDAudioCaptureSupport.kext - no code for running kernel's architecture.
    Mar 18 16:17:39 Petes-Mac-mini.local com.apple.kextd[12]: Load com.hzsystems.driver.CDSDAudioCaptureSupport failed; removing personalities from kernel.
    Mar 18 16:17:40 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::probe
    Mar 18 16:17:40 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8281 FirmwareVersion - 0x0097
    Mar 18 16:17:40 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::start
    Mar 18 16:17:40 Petes-Mac-mini.local com.apple.kextd[12]: Can't load /System/Library/Extensions/CDSDAudioCaptureSupport.kext - no code for running kernel's architecture.
    Mar 18 16:17:40 Petes-Mac-mini.local com.apple.kextd[12]: Load com.hzsystems.driver.CDSDAudioCaptureSupport failed; removing personalities from kernel.
    Mar 18 16:17:41 Petes-Mac-mini.local loginwindow[69]: Login Window Application Started
    Mar 18 16:17:41 Petes-Mac-mini kernel[0]: DSMOS has arrived
    Mar 18 16:17:41 Petes-Mac-mini kernel[0]: [IOBluetoothHCIController][start] -- completed
    Mar 18 16:17:41 Petes-Mac-mini kernel[0]: AMDTurksGraphicsAccelerator: ** Device in slot: SLOT--1 **
    Mar 18 16:17:41 Petes-Mac-mini kernel[0]: BCM5701Enet: Ethernet address 3c:07:54:6d:c4:26
    Mar 18 16:17:41 Petes-Mac-mini kernel[0]: AirPort_Brcm4331: Ethernet address 70:73:cb:be:7e:55
    Mar 18 16:17:41 Petes-Mac-mini kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar 18 16:17:41 Petes-Mac-mini kernel[0]: IO80211Interface::efiNVRAMPublished():
    Mar 18 16:17:41 Petes-Mac-mini.local UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    Mar 18 16:17:41 Petes-Mac-mini.local WindowServer[137]: Server is starting up
    Mar 18 16:17:41 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/usr/libexec/UserEventAgent' [11] for authorization created by '/usr/libexec/UserEventAgent' [11] (100012,0)
    Mar 18 16:17:41 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: 4.1.3f3, Copyright © 2002-2012 Apple Inc. All rights reserved.
    Mar 18 16:17:41 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: IORegistry idProduct 0x8281
    Mar 18 16:17:41 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: IORegistry bcdDevice 0x0097
    Mar 18 16:17:41 Petes-Mac-mini.local digest-service[142]: label: default
    Mar 18 16:17:41 Petes-Mac-mini.local digest-service[142]:      dbname: od:/Local/Default
    Mar 18 16:17:41 Petes-Mac-mini.local digest-service[142]:      mkey_file: /var/db/krb5kdc/m-key
    Mar 18 16:17:41 Petes-Mac-mini.local digest-service[142]:      acl_file: /var/db/krb5kdc/kadmind.acl
    Mar 18 16:17:41 Petes-Mac-mini.local digest-service[142]: digest-request: uid=0
    Mar 18 16:17:41 Petes-Mac-mini.local mds[65]: (Normal) FMW: FMW 0 0
    Mar 18 16:17:41 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: switch to DFU mode
    Mar 18 16:17:41 Petes-Mac-mini.local rpcsvchost[154]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    Mar 18 16:17:41 Petes-Mac-mini.local digest-service[142]: digest-request: init request
    Mar 18 16:17:41 Petes-Mac-mini.local digest-service[142]: digest-request: init return domain: BUILTIN server: PETES-MAC-MINI
    Mar 18 16:17:41 Petes-Mac-mini com.apple.launchd[1] (com.apple.bsd.dirhelper): Throttling respawn: Will start in 6 seconds
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::probe
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0xF007 FirmwareVersion - 0x0097
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::start
    Mar 18 16:17:42 Petes-Mac-mini.local airportd[165]: _processDLILEvent: en1 attached (up)
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: aksfridge version 1.0.1.16332 successfully loaded
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: createVirtIf(): ifRole = 1
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: in func createVirtualInterface ifRole = 1
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff8041bc5800
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    Mar 18 16:17:42 Petes-Mac-mini kernel[0]: Created virtif 0xffffff8041bc5800 p2p0
    Mar 18 16:17:42 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: IORegistry idProduct 0xF007
    Mar 18 16:17:42 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: IORegistry bcdDevice 0x0097
    Mar 18 16:17:42 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: CFPreferences idProduct 0x8281
    Mar 18 16:17:42 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: BoardIDTable idProduct 0x8281
    Mar 18 16:17:42 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: filename /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothU SBDFU.kext/Contents/Resources/20702_8281.dfu
    Mar 18 16:17:42 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: DFUFileSuffix 0x0100 0x8281 0x05AC 0x0100 0x554644 0x10 0x191D8802
    Mar 18 16:17:43 Petes-Mac-mini.local socketfilterfw[147]: Logging: creating /var/log/appfirewall.log
    Mar 18 16:17:43 Petes-Mac-mini.local IOBluetoothUSBDFUTool[139]: firmware update complete
    Mar 18 16:17:45 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::probe
    Mar 18 16:17:45 Petes-Mac-mini kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8281 FirmwareVersion - 0x0100
    Mar 18 16:17:45 Petes-Mac-mini kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    Mar 18 16:17:45 Petes-Mac-mini kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    Mar 18 16:17:45 Petes-Mac-mini kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar 18 16:17:47 Petes-Mac-mini.local stackshot[57]: Timed out waiting for IOKit to finish matching.
    Mar 18 16:17:47 Petes-Mac-mini kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 1-Gigabit, Full-duplex, Symmetric flow-control, EEE enabled, Debug [796d,0301,0de1,0300,c5e1,3800]
    Mar 18 16:17:47 Petes-Mac-mini.local apsd[86]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    Mar 18 16:17:47 Petes-Mac-mini.local appleeventsd[80]: main: Starting up
    Mar 18 16:17:47 Petes-Mac-mini.local mDNSResponder[66]: mDNSResponder mDNSResponder-379.37 (Dec 16 2012 19:43:09) starting OSXVers 12
    Mar 18 16:17:47 Petes-Mac-mini.local com.apple.usbmuxd[53]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    Mar 18 16:17:47 Petes-Mac-mini.local launchctl[180]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:17:48 Petes-Mac-mini.local configd[17]: network changed: DNS*
    Mar 18 16:17:48 Petes-Mac-mini.local mDNSResponder[66]: D2D_IPC: Loaded
    Mar 18 16:17:48 Petes-Mac-mini.local mDNSResponder[66]: D2DInitialize succeeded
    Mar 18 16:17:48 Petes-Mac-mini.local locationd[70]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar 18 16:17:48 Petes-Mac-mini.local locationd[70]: NOTICE,Location icon should now be in state 0
    Mar 18 16:17:48 Petes-Mac-mini.local configd[17]: network changed: v4(en0+:192.168.0.5) DNS+ Proxy+ SMB
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Found 1 drivers that match
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Match 1: NickName is HP LaserJet 4200 Series
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Match 1: PCFileName is HP4200_6.PPD
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Match 1: FileVersion is 19.5
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Device URI is usb://EPSON/Stylus%20Photo%201290?serial=WORLL0106152238100
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     NickName is EPSON SP 1290
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     PCFileName is EPSP1290.PPD
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     FileVersion is 9.00
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]: EPSON_Stylus_Photo_1290: Checking for updates...
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Found 1 drivers that match
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Match 1: NickName is EPSON SP 1290
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Match 1: PCFileName is EPSP1290.PPD
    Mar 18 16:17:48 Petes-Mac-mini.local makequeues[132]:     Match 1: FileVersion is 9.00
    Mar 18 16:17:48 Petes-Mac-mini.local UpdateSettingsTool[54]: IA domains cache not present. Creating.
    Mar 18 16:17:48 Petes-Mac-mini.local UpdateSettingsTool[54]: [Warning] Bad response from daemon for setup info
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini kernel[0]: Sophos Anti-Virus on-access kext activated
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:17:49 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:17:51 Petes-Mac-mini.local SophosAntiVirus[90]: reloading scheduled scans...
    Mar 18 16:17:51 Petes-Mac-mini.local ntpd[140]: proto: precision = 1.000 usec
    Mar 18 16:17:53 Petes-Mac-mini.local awacsd[84]: Exiting
    Mar 18 16:17:58 Petes-Mac-mini.local launchctl[193]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:17:58 Petes-Mac-mini.local distnoted[195]: # distnote server agent  absolute time: 27.983630988   civil time: Mon Mar 18 16:17:58 2013   pid: 195 uid: 89  root: no
    Mar 18 16:17:58 Petes-Mac-mini.local com.apple.SecurityServer[15]: Session 100003 created
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]: InterfaceNamer: timed out waiting for IOKit to quiesce
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]: Busy services :
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2 [1, 71633 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert [1, 71619 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0 [1, 71563 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI [1, 71553 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2 [1, 71258 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e [1, 71250 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0 [1, 71250 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge [1, 71246 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge/FRWR@0 [1, 71246 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge/FRWR@0/AppleFWOHCI [!registered, !matched, 1, 71238 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge/FRWR@0/AppleFWOHCI/IOFireWireController [1, 71238 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge/FRWR@0/AppleFWOHCI/IOFireWireController/IOFireWireDevic e@4800004f1a62 [1, 71238 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge/FRWR@0/AppleFWOHCI/IOFireWireController/IOFireWireDevic e@4800004f1a62/IOFireWireUnit [1, 71236 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge/FRWR@0/AppleFWOHCI/IOFireWireController/IOFireWireDevic e@4800004f1a62/IOFireWireUnit/IOFireWireSBP2Target [1, 71235 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local configd[17]:   Macmini5,2/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP03@1C,2/IOPCI2PCIBridg e/FWBR@0/IOPCI2PCIBridge/FRWR@0/AppleFWOHCI/IOFireWireController/IOFireWireDevic e@4800004f1a62/IOFireWireUnit/IOFireWireSBP2Target/IOFireWireSBP2LUN [!matched, 1, 71235 ms]
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: IOKitWaitQuiet: (iokit/common) I/O Timeout
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Session 256 retained (2 references)
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Session 256 released (1 references)
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Session 256 retained (2 references)
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: init_page_flip: page flip mode is on
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: mux_initialize: Couldn't find any matches
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: GLCompositor enabled for tile size [256 x 256]
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: CGXGLInitMipMap: mip map mode is on
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: WSMachineUsesNewStyleMirroring: false
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: MPServiceForDisplayDevice: Invalid device alias (0)
    Mar 18 16:18:42 Petes-Mac-mini kernel[0]: EDID CEA Extensions not valid for audio [Revision ID]: 1 (minimum value: 3)
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x70c60c40: GL mask 0x1; bounds (0, 0)[1280 x 1024], 30 modes available
         Main, Active, on-line, enabled, boot, Vendor 15c3, Model 1831, S/N 0, Unit 0, Rotation 0
         UUID 0x000015c3000018310000000070c60c40
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x28d9d283: GL mask 0x8; bounds (-1680, 0)[1680 x 1050], 87 modes available
         Active, on-line, enabled, Vendor 38a3, Model 674a, S/N 0, Unit 3, Rotation 0
         UUID 0x000038a30000674a0000000028d9d283
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
         off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
         UUID 0xffffffffffffffffffffffff003f003e
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
         off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
         UUID 0xffffffffffffffffffffffff003f003d
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Created shield window 0x7 for display 0x70c60c40
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Created shield window 0x8 for display 0x28d9d283
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Created shield window 0x9 for display 0x003f003e
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Created shield window 0xa for display 0x003f003d
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x28d9d283: GL mask 0x8; bounds (0, 0)[1680 x 1050], 87 modes available
         Main, Active, on-line, enabled, Vendor 38a3, Model 674a, S/N 0, Unit 3, Rotation 0
         UUID 0x000038a30000674a0000000028d9d283
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x70c60c40: GL mask 0x1; bounds (-1280, 0)[1280 x 1024], 30 modes available
         Active, on-line, enabled, boot, Vendor 15c3, Model 1831, S/N 0, Unit 0, Rotation 0
         UUID 0x000015c3000018310000000070c60c40
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x003f003e: GL mask 0x4; bounds (2704, 0)[1 x 1], 1 modes available
         off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
         UUID 0xffffffffffffffffffffffff003f003e
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: Display 0x003f003d: GL mask 0x2; bounds (2705, 0)[1 x 1], 1 modes available
         off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
         UUID 0xffffffffffffffffffffffff003f003d
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]: CGXPerformInitialDisplayConfiguration
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]:   Display 0x28d9d283: MappedDisplay Unit 3; Vendor 0x38a3 Model 0x674a S/N 0 Dimensions 18.66 x 11.65; online enabled, Bounds (0,0)[1680 x 1050], Rotation 0, Resolution 1
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]:   Display 0x70c60c40: MappedDisplay Unit 0; Vendor 0x15c3 Model 0x1831 S/N 0 Dimensions 14.80 x 11.85; online enabled, Bounds (-1280,0)[1280 x 1024], Rotation 0, Resolution 1
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2704,0)[1 x 1], Rotation 0, Resolution 1
    Mar 18 16:18:42 Petes-Mac-mini.local WindowServer[137]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2705,0)[1 x 1], Rotation 0, Resolution 1
    Mar 18 16:18:43 Petes-Mac-mini.local WindowServer[137]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000000f, accelerator 0x000043db, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    Mar 18 16:18:43 Petes-Mac-mini.local WindowServer[137]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x0000000f, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    Mar 18 16:18:43 Petes-Mac-mini.local loginwindow[69]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Mar 18 16:18:43 Petes-Mac-mini.local launchctl[205]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:18:44 Petes-Mac-mini.local WindowServer[137]: Created shield window 0xb for display 0x28d9d283
    Mar 18 16:18:44 Petes-Mac-mini.local WindowServer[137]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:44 Petes-Mac-mini.local WindowServer[137]: Created shield window 0xc for display 0x70c60c40
    Mar 18 16:18:44 Petes-Mac-mini.local WindowServer[137]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:44 Petes-Mac-mini.local launchctl[206]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:18:44 Petes-Mac-mini.local launchctl[206]: com.apple.findmymacmessenger: Already loaded
    Mar 18 16:18:44 Petes-Mac-mini com.apple.launchd[1] (com.displaylink.useragent[213]): Job specified non-existent working directory: /System/Library/Extensions/DisplayLinkDriver.kext/DisplayLinkAgent
    Mar 18 16:18:44 Petes-Mac-mini com.apple.launchd[1] (com.displaylink.useragent[213]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Mar 18 16:18:44 Petes-Mac-mini com.apple.launchd[1] (com.displaylink.useragent[213]): Job failed to exec(3) for weird reason: 2
    Mar 18 16:18:44 Petes-Mac-mini.local com.apple.SecurityServer[15]: Session 100005 created
    Mar 18 16:18:44 Petes-Mac-mini.local WindowServer[137]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 18 16:18:45 --- last message repeated 1 time ---
    Mar 18 16:18:45 Petes-Mac-mini.local loginwindow[69]: Login Window Started Security Agent
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:45 --- last message repeated 1 time ---
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:45 --- last message repeated 1 time ---
    Mar 18 16:18:45 Petes-Mac-mini.local SecurityAgent[220]: This is the first run
    Mar 18 16:18:45 Petes-Mac-mini.local SecurityAgent[220]: MacBuddy was run = 0
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x28d9d283 device: 0x1014f7890  isBackBuffered: 1 numComp: 3 numDisp: 3
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x70c60c40 device: 0x1014f7110  isBackBuffered: 1 numComp: 3 numDisp: 3
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:45 Petes-Mac-mini.local WindowServer[137]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:18:45 Petes-Mac-mini.local launchctl[226]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:18:45 Petes-Mac-mini.local locationd[227]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar 18 16:18:45 Petes-Mac-mini.local locationd[227]: NOTICE,Location icon should now be in state 0
    Mar 18 16:18:45 Petes-Mac-mini.local UserEventAgent[207]: cannot find useragent 1102
    Mar 18 16:18:45 Petes-Mac-mini.local revisiond[60]: Had metainfo
    Mar 18 16:18:45 Petes-Mac-mini.local revisiond[60]: UUIDs match!
    Mar 18 16:18:46 Petes-Mac-mini.local SecurityAgent[220]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 18 16:18:46 Petes-Mac-mini.local SecurityAgent[220]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Mar 18 16:18:46 Petes-Mac-mini.local launchctl[263]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:18:46 Petes-Mac-mini.local launchctl[267]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:18:47 Petes-Mac-mini.local genatsdb[265]: ########## genatsdb Sandboxed. ##########
    Mar 18 16:18:51 Petes-Mac-mini.local genatsdb[265]: *GENATSDB* FontObjects generated = 778
    Mar 18 16:18:54 Petes-Mac-mini.local xpcd[269]: qlmanage[257]: registration request failed: (0x12, 0xd) process failed sandbox check
    Mar 18 16:18:57 Petes-Mac-mini.local helpd[210]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Mar 18 16:18:57 --- last message repeated 1 time ---
    Mar 18 16:18:57 Petes-Mac-mini kernel[0]: IOHIDSystem: postEvent LLEventQueue overflow.
    Mar 18 16:19:32 Petes-Mac-mini.local mdworker[273]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Mar 18 16:19:32 --- last message repeated 7 times ---
    Mar 18 16:19:32 Petes-Mac-mini.local mds[65]: Unable to talk to lsboxd
    Mar 18 16:19:34 Petes-Mac-mini.local mdworker[273]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Mar 18 16:19:39 --- last message repeated 7 times ---
    Mar 18 16:19:39 Petes-Mac-mini kernel[0]: AppleBCM5701Ethernet:        0        1 BCM5701Enet::replaceOrCopyPacket worked after N tries
    Mar 18 16:19:46 Petes-Mac-mini kernel[0]: considerRebuildOfPrelinkedKernel com.apple.iokit.IOGraphicsFamily triggered rebuild
    Mar 18 16:19:52 Petes-Mac-mini.local distnoted[279]: # distnote server agent  absolute time: 141.817504479   civil time: Mon Mar 18 16:19:52 2013   pid: 279 uid: 503  root: no
    Mar 18 16:19:52 Petes-Mac-mini.local com.apple.SecurityServer[15]: Session 100007 created
    Mar 18 16:20:11 Petes-Mac-mini.local mds[65]: (/.Spotlight-V100/Store-V2/9D726EAF-6077-4EAC-B5A9-261AFC22D120)(Error) IndexStore in bool setLocalizedAttributesLocked(datastore_info *, db_obj **, CFStringRef *, CFDictionaryRef *, CFIndex, StoreOptions, CFDictionaryRef, bool, bool, CFArrayRef):Error:7 setting field:com_apple_system_prefs_keywords for oid:7905123
    Mar 18 16:20:27 Petes-Mac-mini.local com.apple.kextcache[276]: IOKitWaitQuiet() timed out.
    Mar 18 16:20:27 Petes-Mac-mini.local com.apple.kextcache[276]: Kernel file /mach_kernel does not contain requested arch: i386
    Mar 18 16:20:45 Petes-Mac-mini.local com.apple.kextcache[276]: Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache.
    Mar 18 16:22:42 Petes-Mac-mini.local hidd[74]: Timeout waiting for IOKit to be quiet
    Mar 18 16:22:53 Petes-Mac-mini kernel[0]: IOHIDSystem: postEvent LLEventQueue overflow.
    Mar 18 16:23:57 Petes-Mac-mini kernel[0]: IOHIDSystem: postEvent LLEventQueue overflow.
    Mar 18 16:24:00 Petes-Mac-mini.local mds[65]: (/.Spotlight-V100/Store-V2/9D726EAF-6077-4EAC-B5A9-261AFC22D120)(Error) IndexStore in bool setLocalizedAttributesLocked(datastore_info *, db_obj **, CFStringRef *, CFDictionaryRef *, CFIndex, StoreOptions, CFDictionaryRef, bool, bool, CFArrayRef):Error:7 setting field:com_apple_system_prefs_keywords for oid:7905123
    Mar 18 16:24:58 Petes-Mac-mini kernel[0]: IOHIDSystem: postEvent LLEventQueue overflow.
    Mar 18 16:26:42 Petes-Mac-mini.local WindowServer[137]: Timeout waiting for IOKit to be quiet
    Mar 18 16:26:42 Petes-Mac-mini.local CVMServer[201]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Mar 18 16:26:42 Petes-Mac-mini.local launchctl[323]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:26:42 Petes-Mac-mini.local CVMServer[201]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Mar 18 16:26:42 Petes-Mac-mini.local SystemStarter[328]: execl("/Library/StartupItems/RetroRun/RetroRun"): Bad CPU type in executable
    Mar 18 16:26:42 Petes-Mac-mini.local SystemStarter[143]: Retrospect Startup Helper (328) did not complete successfully
    Mar 18 16:26:42 Petes-Mac-mini.local SystemStarter[143]: The following StartupItems failed to start properly:
    Mar 18 16:26:42 Petes-Mac-mini.local SystemStarter[143]: /Library/StartupItems/RetroRun
    Mar 18 16:26:42 Petes-Mac-mini.local SystemStarter[143]:  - execution of Startup script failed
    Mar 18 16:26:50 Petes-Mac-mini.local Nalpeirond6b[329]: /Library/StartupItems/ProTec6b/Nalpeirond6b: daemon has successfully started
    Mar 18 16:27:12 Petes-Mac-mini.local SecurityAgent[220]: User info context values set for petemac
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_authenticate(): Got user: petemac
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_authenticate(): Got ruser: (null)
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_authenticate(): Got service: authorization
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in od_principal_for_user(): No authentication authority returned
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in od_principal_for_user(): failed: 7
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_authenticate(): Done cleanup3
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in od_record_check_pwpolicy(): retval: 0
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Establishing credentials
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Got user: petemac
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Context initialised
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Got euid, egid: 0 0
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Done getpwnam()
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Done setegid() & seteuid()
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): pam_sm_setcred: krb5 user petemac doesn't have a principal
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Done cleanup3
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Done seteuid() & setegid()
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): Done cleanup4
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Mar 18 16:27:12 Petes-Mac-mini.local authorizationhost[339]: in pam_sm_setcred(): pam_sm_setcred: no domain found skipping
    Mar 18 16:27:12 Petes-Mac-mini.local SecurityAgent[220]: Login Window login proceeding
    Mar 18 16:27:12 Petes-Mac-mini.local CVMServer[201]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Mar 18 16:27:12 Petes-Mac-mini.local launchctl[341]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:27:12 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.console' by client '/System/Library/CoreServices/loginwindow.app' [69] for authorization created by '/System/Library/CoreServices/loginwindow.app' [69] (100003,0)
    Mar 18 16:27:12 Petes-Mac-mini.local loginwindow[69]: Login Window - Returned from Security Agent
    Mar 18 16:27:13 Petes-Mac-mini.local loginwindow[69]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    Mar 18 16:27:13 Petes-Mac-mini.local loginwindow[69]: USER_PROCESS: 69 console
    Mar 18 16:27:13 Petes-Mac-mini.local CVMServer[201]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious permissions on file (skipping): /Users/petemac/Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
    Mar 18 16:27:13 Petes-Mac-mini com.apple.launchd[1] (com.wacom.wacomtablet[212]): Exited with code: 255
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious permissions on file (skipping): /Users/petemac/Library/LaunchAgents/com.adobe.ARM.930da3ce175de4e82bd3cdf1dd857 1f74bd3b6a7236bc94bfc00f6e9.plist
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious permissions on file (skipping): /Users/petemac/Library/LaunchAgents/com.apple.FolderActions.enabled.plist
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious permissions on file (skipping): /Users/petemac/Library/LaunchAgents/com.apple.FolderActions.folders.plist
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious permissions on file (skipping): /Users/petemac/Library/LaunchAgents/com.google.keystone.agent.plist
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious permissions on file (skipping): /Users/petemac/Library/LaunchAgents/net.jonstovell.keepRembrandt500GBSpinning.p list
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious permissions on file (skipping): /Users/petemac/Library/LaunchAgents/net.jonstovell.keepSamsung1TBSpinning.plist
    Mar 18 16:27:13 Petes-Mac-mini.local launchctl[346]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:27:13 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.apple.gamed): Ignored this key: UserName
    Mar 18 16:27:13 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.apple.gamed): Ignored this key: GroupName
    Mar 18 16:27:13 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.apple.ReportCrash): Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    Mar 18 16:27:13 Petes-Mac-mini.local loginwindow[69]: Connection with distnoted server was invalidated
    Mar 18 16:27:13 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/System/Library/CoreServices/UserAccountUpdater' [350] for authorization created by '/System/Library/CoreServices/UserAccountUpdater' [350] (2,0)
    Mar 18 16:27:13 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/usr/libexec/launchdadd' [335] for authorization created by '/System/Library/CoreServices/UserAccountUpdater' [350] (100002,0)
    Mar 18 16:27:13 Petes-Mac-mini.local blued[83]: kBTXPCUpdateUserPreferences gConsoleUserUID = 503
    Mar 18 16:27:13 Petes-Mac-mini.local Little Snitch Agent[355]: Little Snitch Agent version 3908 started.
    Mar 18 16:27:13 Petes-Mac-mini.local WindowServer[137]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    Mar 18 16:27:13 Petes-Mac-mini.local WindowServer[137]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    Mar 18 16:27:13 Petes-Mac-mini.local WindowServer[137]: Created shield window 0x15 for display 0x70c60c40
    Mar 18 16:27:13 Petes-Mac-mini.local WindowServer[137]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 4, "Display Link1 120206-2.icc"}; TransferTable (256, 3)
    Mar 18 16:27:13 Petes-Mac-mini.local MiniLauncher[356]: Skipping Setup Assistant for user 503
    Mar 18 16:27:13 Petes-Mac-mini.local Little Snitch Network Monitor[362]: Little Snitch Network Monitor version 3908 started.
    Mar 18 16:27:13 Petes-Mac-mini.local transition[364]: INFO: Not signed into MobileMe, nothing to do. Reason: 1
    Mar 18 16:27:13 Petes-Mac-mini.local locationd[361]: Incorrect NSStringEncoding value 0x8000100 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
    Mar 18 16:27:13 Petes-Mac-mini.local locationd[361]: NOTICE,Location icon should now be in state 0
    Mar 18 16:27:13 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.services.systemconfiguration.network' by client '/usr/libexec/UserEventAgent' [347] for authorization created by '/usr/libexec/UserEventAgent' [347] (100000,0)
    Mar 18 16:27:14 --- last message repeated 1 time ---
    Mar 18 16:27:14 Petes-Mac-mini.local revisiond[60]: Had metainfo
    Mar 18 16:27:14 Petes-Mac-mini.local revisiond[60]: UUIDs match!
    Mar 18 16:27:14 Petes-Mac-mini.local MiniLauncher[356]: INFO: MMAccountMgr_Private: finishedSetup called.
    Mar 18 16:27:14 Petes-Mac-mini.local MRT[352]: Error opening path for pattern match: Too many levels of symbolic links
    Mar 18 16:27:14 Petes-Mac-mini.local mds[65]: (/)(Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Mar 18 16:27:14 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.login.done' by client '/System/Library/CoreServices/loginwindow.app' [69] for authorization created by '/System/Library/CoreServices/loginwindow.app' [69] (100002,0)
    Mar 18 16:27:14 Petes-Mac-mini.local genatsdb[401]: ########## genatsdb Sandboxed. ##########
    Mar 18 16:27:14 Petes-Mac-mini.local MRT[352]: Error opening path for pattern match: Too many levels of symbolic links
    Mar 18 16:27:14 Petes-Mac-mini.local talagent[357]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    Mar 18 16:27:14 Petes-Mac-mini.local talagent[357]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.apple.afpstat-qfa[424]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.apple.afpstat-qfa[424]): Job failed to exec(3) for weird reason: 2
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.f-secure.sync.BTCloud[437]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.f-secure.sync.BTCloud[437]): Job failed to exec(3) for weird reason: 2
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.displaylink.useragent[432]): Job specified non-existent working directory: /System/Library/Extensions/DisplayLinkDriver.kext/DisplayLinkAgent
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.displaylink.useragent[432]): Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.displaylink.useragent[432]): Job failed to exec(3) for weird reason: 2
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.adobe.CS4ServiceManager[434]): Exited with code: 97
    Mar 18 16:27:15 Petes-Mac-mini.local coreservicesd[101]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationBirth to notificationID=157
    Mar 18 16:27:15 Petes-Mac-mini com.apple.launchd.peruser.503[262] (com.adobe.CS5ServiceManager[433]): Exited with code: 97
    Mar 18 16:27:16 Petes-Mac-mini.local launchctl[451]: launchctl: Dubious ownership on file (skipping): /Library/LaunchAgents/com.epson.epw.agent.plist
    Mar 18 16:27:16 Petes-Mac-mini.local fseventsd[75]: check_vol_last_mod_time:XXX failed to get mount time (25; &mount_time == 0x10df4f518)
    Mar 18 16:27:16 Petes-Mac-mini.local fseventsd[75]: log dir: /Volumes/BOSCH MS/.fseventsd getting new uuid: 5812FCC2-539D-4E52-95DB-DD0A2B2990A4
    Mar 18 16:27:16 Petes-Mac-mini.local WindowServer[137]: CGXDisableUpdate: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    Mar 18 16:27:16 Petes-Mac-mini.local coreservicesd[101]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyLaunchFinished to notificationID=156
    Mar 18 16:27:16 Petes-Mac-mini.local coreservicesd[101]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationReady to notificationID=156
    Mar 18 16:27:16 Petes-Mac-mini.local coreservicesd[101]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationBirth to notificationID=156
    Mar 18 16:27:16 Petes-Mac-mini.local Glims Agent[429]: Glims INFO: Additions loaded succesfully.
    Mar 18 16:27:16 Petes-Mac-mini.local mds[65]: (/)(Warning) IndexQuery in virtual bool SISearchCtx_FSI::performSearch(struct PartialQueryResults *):Retried searchfs 4 times
    Mar 18 16:27:17 Petes-Mac-mini.local coresymbolicationd[461]: /System/Library/Caches/com.apple.coresymbolicationd/data does not exist, resetting cache
    Mar 18 16:27:17 Petes-Mac-mini.local NetworkBrowserAgent[463]: Starting NetworkBrowserAgent
    Mar 18 16:27:17 Petes-Mac-mini.local Adobe Reader Updater Helper[440]: Adobe Reader Updater encountered errorCode 260
    Mar 18 16:27:17 Petes-Mac-mini.local WindowServer[137]: reenable_update_for_connection: UI updates were finally reenabled by application "SystemUIServer" after 2.64 seconds (server forcibly re-enabled them after 1.00 seconds)
    Mar 18 16:27:17 Petes-Mac-mini.local Adobe Reader Updater Helper[440]: Adobe Reader Updater encountered errorCode 1001
    Mar 18 16:27:17 Petes-Mac-mini.local xpcd[269]: (null): have symlinks: (
    Mar 18 16:27:18 Petes-Mac-mini.local InterCheck[91]: SXLC: Setting [key:SXLDNSIP1] [value:192.168.0.1]
    Mar 18 16:27:18 Petes-Mac-mini.local InterCheck[91]: Live protection is Enabled
    Mar 18 16:27:18 Petes-Mac-mini.local mds[65]: (/)(Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Mar 18 16:27:18 Petes-Mac-mini.local Finder[403]: Initializer-based scripting additions are no longer supported. "/Library/ScriptingAdditions/LCC Scroll Enhancer Loader.osax" not loaded.
    Mar 18 16:27:18 Petes-Mac-mini.local Finder[403]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    Mar 18 16:27:18 Petes-Mac-mini.local osascript[474]: Initializer-based scripting additions are no longer supported. "/Library/ScriptingAdditions/LCC Scroll Enhancer Loader.osax" not loaded.
    Mar 18 16:27:18 Petes-Mac-mini.local osascript[474]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    Mar 18 16:27:19 Petes-Mac-mini.local FontExplorerXAutoload[465]: FontExplorerXAutoload.app is loading...
    Mar 18 16:27:19 Petes-Mac-mini.local apsd[386]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    Mar 18 16:27:20 Petes-Mac-mini.local MRT[352]: MRT finished scan. Malware files were not found.
    Mar 18 16:27:20 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/usr/libexec/MRT' [352] for authorization created by '/usr/libexec/MRT' [352] (2,0)
    Mar 18 16:27:20 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.ServiceManagement.daemons.modify' by client '/usr/libexec/launchdadd' [335] for authorization created by '/usr/libexec/MRT' [352] (100002,0)
    Mar 18 16:27:21 --- last message repeated 1 time ---
    Mar 18 16:27:21 Petes-Mac-mini.local WindowServer[137]: CGXDisableUpdate: UI updates were forcibly disabled by application "OfficeTime" for over 1.00 seconds. Server has re-enabled them.
    Mar 18 16:27:24 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'com.apple.SoftwareUpdate.scan' by client '/System/Library/CoreServices/Software Update.app' [460] for authorization created by '/System/Library/CoreServices/Software Update.app' [460] (100003,0)
    Mar 18 16:27:24 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.install.apple-software' by client '/System/Library/CoreServices/Software Update.app' [460] for authorization created by '/System/Library/CoreServices/Software Update.app' [460] (100003,0)
    Mar 18 16:27:24 Petes-Mac-mini.local com.apple.SecurityServer[15]: Succeeded authorizing right 'system.install.apple-software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [505] for authorization created by

    Thanks Linc - I've uninstalled Sophos. Neither Sophos or SIMBL activity kicks in until after login though so my instinct is that the problem is more fundamental.
    There is a much edited part of the latest console data below which covers the lag between appearance of login screen and the time it actually becomes active - 09:43 - 09:52. Can you see anything in there that might iondicate why it is hanging for 8 minutes? This is after a fairly long period of spinning progrees disk and Apple.
    I've also noticed that Shutdown now seems quite extended too.
    19/03/2013 09:43:55.023 com.apple.SecurityServer[17]: Session 100005 created
    19/03/2013 09:43:55.182 loginwindow[65]: Login Window Started Security Agent
    19/03/2013 09:43:55.444 SecurityAgent[139]: This is the first run
    19/03/2013 09:43:55.444 SecurityAgent[139]: MacBuddy was run = 0
    19/03/2013 09:43:55.467 WindowServer[115]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x28d9d283 device: 0x10271e890  isBackBuffered: 1 numComp: 3 numDisp: 3
    19/03/2013 09:43:55.496 WindowServer[115]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x70c60c40 device: 0x10271e110  isBackBuffered: 1 numComp: 3 numDisp: 3
    19/03/2013 09:43:56.051 UserEventAgent[129]: cannot find useragent 1102
    19/03/2013 09:43:56.056 locationd[146]: NOTICE,Location icon should now be in state 0
    19/03/2013 09:43:56.818 WindowServer[115]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    19/03/2013 09:43:56.819 WindowServer[115]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    19/03/2013 09:43:56.869 WindowServer[115]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:43:56.870 WindowServer[115]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:43:56.878 WindowServer[115]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:43:56.879 WindowServer[115]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:43:56.904 WindowServer[115]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:43:56.905 WindowServer[115]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:43:56.912 WindowServer[115]: Display 0x28d9d283: MappedDisplay Unit 3; ColorProfile { 2, "P221W"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:43:56.913 WindowServer[115]: Display 0x70c60c40: MappedDisplay Unit 0; ColorProfile { 3, "S1921"}; TransferFormula (1.000000, 1.000000, 1.000000)
    19/03/2013 09:44:06.360 warmd[48]: [___bootcachectl_filter_out_sharedio_from_history_block_invoke_0:2321] Unable to open i386 shared cache: 2 No such file or directory
    19/03/2013 09:44:48.954 distnoted[159]: # distnote server agent  absolute time: 121.901688524   civil time: Tue Mar 19 09:44:48 2013   pid: 159 uid: 503  root: no
    19/03/2013 09:44:48.955 distnoted[159]: Bug: 12D78: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    19/03/2013 09:45:04.996 com.apple.SecurityServer[17]: Session 100002 created
    19/03/2013 09:45:05.018 com.apple.SecurityServer[17]: Session 100003 created
    19/03/2013 09:47:54.000 kernel[0]: considerRebuildOfPrelinkedKernel prebuild rebuild has expired
    19/03/2013 09:47:54.794 hidd[69]: Timeout waiting for IOKit to be quiet
    19/03/2013 09:51:54.791 WindowServer[115]: Timeout waiting for IOKit to be quiet
    19/03/2013 09:52:00.219 SystemStarter[175]: execl("/Library/StartupItems/RetroRun/RetroRun"): Bad CPU type in executable
    19/03/2013 09:52:00.221 SystemStarter[51]: Retrospect Startup Helper (175) did not complete successfully
    19/03/2013 09:52:00.226 SystemStarter[51]: The following StartupItems failed to start properly:
    19/03/2013 09:52:00.227 SystemStarter[51]: /Library/StartupItems/RetroRun
    19/03/2013 09:52:00.227 SystemStarter[51]:  - execution of Startup script failed
    19/03/2013 09:52:01.562 Nalpeirond6b[177]: /Library/StartupItems/ProTec6b/Nalpeirond6b: daemon has successfully started
    19/03/2013 09:52:41.527 SecurityAgent[139]: User info context values set for petemac
    19/03/2013 09:52:41.812 SecurityAgent[139]: Login Window login proceeding
    19/03/2013 09:52:42.059 CVMServer[124]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    19/03/2013 09:52:42.070 loginwindow[65]: Login Window - Returned from Security Agent
    19/03/2013 09:52:42.076 loginwindow[65]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    19/03/2013 09:52:42.114 loginwindow[65]: USER_PROCESS: 65 console

  • Mini & Samsung 215tw - help me with SwitchResX? I have a 90% solution

    I hope I'm not off creating a new question topic for this. If it needs to be moved, by all means do so.
    I got the Samsung 215tw today for my mini g4 1.42 and, of course, ran into a few problems. I also found 90% of the solutions using stock values in SwitchResX that were recommended for another similarly spec'ed monitor of a different brand. I'm hoping that someone with working knowledge of SwitchResX might be able to fine tune the custom values to make a 100% solution. I'll detail the problems/solution below:
    I initially just plugged the monitor in using the dvi connection, without turning off the computer. The screen worked instantly with a perfect image - no "digital noise lines" as I've seen it described.
    I did have problems though:
    1. When I restarted the computer, the monitor would stay blank, going into power saver mode. I could bring it back by turning off the monitor (with the toggle switch), putting my mini to sleep (i have the power button set to sleep it, not turn it off), then turning the monitor back on and waking up the computer. Not an elegant solution, but it made it functional again to further play with the settings.
    2. When I tried to use any of the mac screen savers, i would get a moment of "noise" on the screen and it would go blank. Again, i'd have to turn off, sleep, turn on, and wake using the same half-way solution.
    3. When I tried to rotate the monitor and change the os settings to 90-degree rotation, it would work for a second, get that noise, and then go blank. Once again, that four step turn off/on/etc would bring it back.
    So I tried using the SwitchResX solution posted here (now an archived thread):
    http://discussions.apple.com/message.jspa?messageID=1707980
    I don't really know what I'm doing with the various numbers, so I essentially just copied the values Tom Fussy gave to Alehning. Once I did that, I had near perfect operation.
    When I boot the computer, I don't see the apple logo and the progress circle, but once the desktop is ready the monitor works fine. The screensavers work perfectly. The rotate works almost perfectly - the only flaw is the motion when dragging windows etc is kinda choppy.
    I'm hoping that further play with the values will fix the choppiness after rotating and maybe even the display of the boot screens.
    Here is the exported DDC file from SwitchResX before i made any changes:
    DDC block report generated by SwitchResX for display
    SyncMaster
    0 1 2 3 4 5 6 7 8 9 A B C D E F
    0 | 00 FF FF FF FF FF FF 00 4C 2D 14 02 31 32 50 44
    1 | 1C 10 01 03 80 2D 1C 78 2A EE 95 A3 54 4C 99 26
    2 | 0F 50 54 BF EF 80 B3 00 81 80 81 40 71 4F 01 01
    3 | 01 01 01 01 01 01 21 39 90 30 62 1A 27 40 68 B0
    4 | 36 00 98 32 11 00 00 1C 00 00 00 FD 00 38 4B 1E
    5 | 51 11 00 0A 20 20 20 20 20 20 00 00 00 FC 00 53
    6 | 79 6E 63 4D 61 73 74 65 72 0A 20 20 00 00 00 FF
    7 | 00 48 43 47 4C 37 30 30 38 35 39 0A 20 20 00 43
    Valid DDC block: checksum passed
    EDID Version........1.3
    Manufacturer........SAM
    Product Code........5122 (1402) (0214)
    Serial Number.......1146106417
    Manufactured........Week 28 of year 2006
    Max H Size..........45 cm
    Max V Size..........28 cm
    Gamma...............2.20
    DPMS Supported Features:
    Active off
    Display type:
    RGB color display
    Input signal & sync:
    Digital
    Color info:
    Red x = 0.640 Green x = 0.300 Blue x = 0.150 White x = 0.313
    Red y = 0.330 Green y = 0.600 Blue y = 0.060 White y = 0.329
    Established Timings:
    800 x 600 @ 60Hz
    800 x 600 @ 56Hz
    640 x 480 @ 75Hz
    640 x 480 @ 72Hz
    640 x 480 @ 67Hz
    640 x 480 @ 60Hz
    720 x 400 @ 70Hz
    1280 x 1024 @ 75Hz
    1024 x 768 @ 75Hz
    1024 x 768 @ 70Hz
    1024 x 768 @ 60Hz
    832 x 624 @ 75Hz
    800 x 600 @ 75Hz
    800 x 600 @ 72Hz
    Manufacturer Reserved Timings:
    1152 x 870 @ 75Hz
    Standard Timing Identification:
    #0: 1680 x 1050 @ 60Hz (B300)
    #1: 1280 x 1024 @ 60Hz (8180)
    #2: 1280 x 960 @ 60Hz (8140)
    #3: 1152 x 864 @ 75Hz (714F)
    Monitor Description blocks:
    Descriptor #0 is Timing definition:
    Mode = 1680 x 1050 @ 60Hz
    H. Active...............1680 pixels
    H. Blanking.............560 pixels
    V. Active...............1050 lines
    V. Blanking.............39 lines
    HSync Offset............104 pixels
    HSync Pulse Width.......176 pixels
    VSync Offset............3 lines
    VSync Pulse Width.......6 lines
    Pixel Clock.............146.25MHz
    Horizontal freq.........65.29kHz
    Vertical freq...........59.95Hz
    H Image Size............408mm
    V Image Size............306mm
    H Border................0 pixels
    V Border................0 lines
    Non-Interlaced
    Sync: Digital separate with
    * Negative vertical polarity
    * Positive horizontal polarity
    Descriptor #1 is Monitor limits:
    Horizontal frequency range.......30-81 kHz
    Vertical frequency range.........56-75 Hz
    Maximum bandwidth unspecified
    Descriptor #2 is Monitor name:
    SyncMaster
    Descriptor #3 is Serial number:
    HCGL700859
    And here are the values I entered to make the 90% solution:
    Pixel clock: 127.68 MHz
    Horizontal Active: 1680 pixels
    Horizontal Front porch: 64 pixels
    Horizontal Sync width: 128 pixels
    Horizontal Back porch: 128 pixels
    Vertical Active: 1050 lines
    Vertical Front porch: 3 lines
    Vertical Sync width: 6 lines
    Vertical Back porch: 28 lines
    Positive Sync for both H and V
    H Scan rate: 63.84
    V Scan rate: 58.73
    Final Resolution: 1680 x 1050, 59Hz

    Hi Plan,
    A couple of things:
    1). Have you tried downloading the source for the demo to see if there's anything in there being done differently?
    2). To file a bug report, you go to My Oracle Support (MOS) and open a service request. If you don't have a support contract with Oracle, there's no "official" way to do it I'm afraid.
    Best,
    John

  • Hi,  this morning on my Mac mini, Finder didn't start and this message appeared on the Desktop:     Finder quit unexpectedly while using the DesktopServicePriv plug-in     and the following problem details and system configuration -

    Hi,  this morning on my Mac mini, Finder didn't start and this message appeared on the Desktop:
    Finder quit unexpectedly while using the DesktopServicePriv plug-in
    and the following problem details and system configuration -
    Process:    
    Finder [258]
    Path:       
    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier: 
    Finder
    Version:    
    10.9.4 (10.9.4)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [243]
    Responsible:
    Finder [258]
    User ID:    
    501
    PlugIn Path:  
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Deskt opServicesPriv
    PlugIn Identifier: com.apple.desktopservices
    PlugIn Version:
    1.8.3 (1.8.3)
    Date/Time:  
    2014-10-21 08:38:03.483 -0400
    OS Version: 
    Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  8F3DE107-0825-931D-E5D1-A1EB822E4735
    Crashed Thread:  3  Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x0000000106be90bc
    kernel messages:
    VM Regions Near 0x106be90bc:
    Kernel Alloc Once 
    0000000106bc6000-0000000106bc7000 [
    4K] rw-/rwx SM=PRV 
    --> __TEXT            
    0000000106bc7000-0000000106cf8000 [ 1220K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    __DATA            
    0000000106cf8000-0000000106d01000 [   36K] rw-/rwx SM=PRV  /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x000000010cd09a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x000000010cd08d18 mach_msg + 64
    2   com.apple.CoreServices.CarbonCore    0x000000010cf71e15 f2d_register_rpc + 325
    3   com.apple.CoreServices.CarbonCore    0x000000010cf71bb0 register_with_server + 869
    4   com.apple.CoreServices.CarbonCore    0x000000010cf7169c FSEventStreamStart + 260
    5   com.apple.desktopservices
    0x0000000106bd619b CreateFSEventStreamForPath(__CFString const*, void (*)(__FSEventStream const*, void*, unsigned long, void*, unsigned int const*, unsigned long long const*), __CFArray const*) + 151
    6   com.apple.desktopservices
    0x0000000106bd5fd5 TBusyFolders::StartObservingDirectory(TUString const&, bool) + 203
    7   com.apple.desktopservices
    0x0000000106bd5e40 TSystemNotificationTask::TSystemNotificationTask() + 242
    8   com.apple.desktopservices
    0x0000000106bd5b1b TSystemNotificationTask::MakeSystemNotificationTask() + 63
    9   com.apple.desktopservices
    0x0000000106bc9608 NodeContextOpen + 42
    10  com.apple.finder        
    0x00000001065c88c3 0x1065c0000 + 35011
    11  com.apple.finder        
    0x00000001065c683c 0x1065c0000 + 26684
    12  com.apple.finder        
    0x00000001065c671d 0x1065c0000 + 26397
    13  libdyld.dylib           
    0x000000010cb615fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib  
    0x000000010cd0de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010ce23f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010ce26fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x000000010cd0e662 kevent64 + 10
    1   libdispatch.dylib       
    0x000000010cb28421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib       
    0x000000010cb28136 _dispatch_mgr_thread + 52
    Thread 3 Crashed:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   com.apple.desktopservices
    0x0000000106be90bc TPropertyReference::AsSInt32(int&) const + 0
    1   com.apple.desktopservices
    0x0000000106bd6e21 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 1017
    2   com.apple.desktopservices
    0x0000000106bd6961 ___ZN17TVolumeSyncThread19PostNodeTaskRequestEP9TNodeTask_block_invoke_2 + 84
    3   com.apple.desktopservices
    0x0000000106bd68b1 ExceptionSafeBlock(void () block_pointer) + 12
    4   com.apple.desktopservices
    0x0000000106bd689f ___ZN17TVolumeSyncThread19PostNodeTaskRequestEP9TNodeTask_block_invoke + 91
    5   libdispatch.dylib       
    0x000000010cb291bb _dispatch_call_block_and_release + 12
    6   libdispatch.dylib       
    0x000000010cb2628d _dispatch_client_callout + 8
    7   libdispatch.dylib       
    0x000000010cb28673 _dispatch_queue_drain + 451
    8   libdispatch.dylib       
    0x000000010cb299c1 _dispatch_queue_invoke + 110
    9   libdispatch.dylib       
    0x000000010cb27f87 _dispatch_root_queue_drain + 75
    10  libdispatch.dylib       
    0x000000010cb29177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib 
    0x000000010ce23ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib 
    0x000000010ce26fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x000000010cd0de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010ce23f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010ce26fb9 start_wqthread + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000106bd6e11  rbx: 0x0000000115bccd58  rcx: 0x0000000115bccd58  rdx: 0x0000000000000001
      rdi: 0x00006080000a5248  rsi: 0x0000000115bcccc4  rbp: 0x0000000115bccce0  rsp: 0x0000000115bccca8
       r8: 0x0000000000000001   r9: 0x0000000000000000  r10: 0x0000000115bccd88  r11: 0x0000000000000246
      r12: 0x0000000106d002a0  r13: 0x0000000000000000  r14: 0x0000000000000001  r15: 0x0000000115bccd58
      rip: 0x0000000106be90bc  rfl: 0x0000000000010206  cr2: 0x0000000106be90bc
    Logical CPU:
    1
    Error Code: 
    0x00000014
    Trap Number:
    14
    Binary Images:
    0x1065c0000 -   
    0x106a8eff9  com.apple.finder (10.9.4 - 10.9.4) <1CEEB00A-B22D-34DA-ABDB-EC5419F308A4> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x106bc7000 -   
    0x106cf7ff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x106d7b000 -   
    0x106ddeffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x106e1d000 -   
    0x106e58fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x106e71000 -   
    0x106e76fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x106e86000 -   
    0x106ef2fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x106f2c000 -   
    0x106f58ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x106f86000 -   
    0x10706afff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x10712e000 -   
    0x107179fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x1071c1000 -   
    0x10735dff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x107435000 -   
    0x107443fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x10744e000 -   
    0x107512ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x10759a000 -   
    0x1075ebfff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x10762d000 -   
    0x1077e5ffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
    0x10788b000 -   
    0x107892fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x10789c000 -   
    0x107afdfff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x107d49000 -   
    0x107e1afff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x107ed1000 -   
    0x10815afff  com.apple.CommerceKit (1.2.0 - 232.11) <976C534B-C0F3-3C01-AB3D-E81B2EE9ADB1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x1081f8000 -   
    0x10824aff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x108294000 -   
    0x1083e8ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x108482000 -   
    0x108553ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D85430A6-1410-3B5F-9D11-17E2440B786E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x1085b5000 -   
    0x1085b6ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x1085be000 -   
    0x108649fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
    0x108675000 -   
    0x1086bbfff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x1086e3000 -   
    0x1086edff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
    0x1086fb000 -   
    0x10873cfff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x108f93000 -   
    0x108fc1ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x108ff5000 -   
    0x108ff8fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x108fff000 -   
    0x10900bfff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
    0x109020000 -   
    0x10927aff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x1093c7000 -   
    0x1093c7fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x1093cd000 -   
    0x109677ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x1097d0000 -   
    0x1097ddfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x1097f0000 -   
    0x109aeefff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x109d30000 -   
    0x109eddf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x109f00000 -   
    0x109f52fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x109fb4000 -   
    0x109fb5ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
    0x109fc1000 -   
    0x10a083ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x10a0f2000 -   
    0x10a28dff8  com.apple.CFNetwork (673.3 - 673.3) <4375B7CB-34B6-3A26-99AC-2D2404AD9C9B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x10a39a000 -   
    0x10a39afff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x10a3a1000 -   
    0x10af17ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x10b6a0000 -   
    0x10b885fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x10b9fc000 -   
    0x10bb02ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x10bb71000 -   
    0x10bb71fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x10bb78000 -   
    0x10bbebfff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x10bc2e000 -   
    0x10c54e32b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x10c67f000 -   
    0x10c68ffff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x10c69c000 -   
    0x10c6b5ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x10c6cf000 -   
    0x10c6daff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x10c6e7000 -   
    0x10c717fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x10c744000 -   
    0x10c7b3ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x10c7e5000 -   
    0x10c86efff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x10c8b6000 -   
    0x10c8fbff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x10c934000 -   
    0x10c943ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x10c953000 -   
    0x10c9a0ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x10c9ce000 -   
    0x10ca07ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x10ca25000 -   
    0x10ca2efff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x10ca41000 -   
    0x10ca52ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x10ca5f000 -   
    0x10ca62ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x10ca6c000 -   
    0x10ca6cfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x10ca70000 -   
    0x10ca74ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x10ca7a000 -   
    0x10ca84fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x10ca99000 -   
    0x10caa0fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x10cab1000 -   
    0x10cab8ffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
    0x10cac6000 -   
    0x10cb14fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x10cb25000 -   
    0x10cb3ffff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    0x10cb5e000 -   
    0x10cb61ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    0x10cb6b000 -   
    0x10cb6bff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x10cb76000 -   
    0x10cb7dff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
    0x10cb8a000 -   
    0x10cb8ffff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x10cb99000 -   
    0x10cb9bff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x10cba7000 -   
    0x10cba8ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x10cbb5000 -   
    0x10cbc6ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x10cbd0000 -   
    0x10cbd1ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x10cbd8000 -   
    0x10cc61ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x10cc92000 -   
    0x10cc94ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
    0x10cc9f000 -   
    0x10cca7fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
    0x10ccb4000 -   
    0x10ccdbffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x10ccf8000 -   
    0x10cd14ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
    0x10cd3e000 -   
    0x10cd6dfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x10cd7f000 -   
    0x10cd9aff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x10cda4000 -   
    0x10cdcbff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x10cded000 -   
    0x10cdf6ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x10ce02000 -   
    0x10ce08ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x10ce21000 -   
    0x10ce28ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x10ce36000 -   
    0x10ce37fff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
    0x10ce3e000 -   
    0x10ce42ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
    0x10ce4f000 -   
    0x10ce50fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x10ce59000 -   
    0x10ce5eff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x10ce69000 -   
    0x10ce8dfff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x10ceb0000 -   
    0x10cef2ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x10cf0d000 -   
    0x10cf36ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x10cf4a000 -   
    0x10cf55fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
    0x10cf5b000 -   
    0x10d245fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x10d2c3000 -   
    0x10d353ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x10d3bd000 -   
    0x10d434fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x10d4d7000 -   
    0x10d544fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x10d589000 -   
    0x10d5e4ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x10d619000 -   
    0x10d6e3fff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x10d75f000 -   
    0x10d788fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x10d7ac000 -   
    0x10d896fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x10d8b1000 -   
    0x10d998ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x10d9cf000 -   
    0x10d9dcff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x10d9e5000 -   
    0x10d9e9fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x10d9ef000 -   
    0x10d9efffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x10d9f4000 -   
    0x10da01ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x10da0c000 -   
    0x10da0dfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x10da18000 -   
    0x10da33ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x10da44000 -   
    0x10daa8fff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x10dae8000 -   
    0x10daebfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x10daf2000 -   
    0x10db09ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x10db27000 -   
    0x10db31ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x10db40000 -   
    0x10db68ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x10db76000 -   
    0x10de4afc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x10de8e000 -   
    0x10de8efff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x10de93000 -   
    0x10df5efff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x10df6b000 -   
    0x10e01bff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x10e028000 -   
    0x10e409ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x10e46d000 -   
    0x10e5dbff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x10e607000 -   
    0x10e6f6fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x10e76f000 -   
    0x10e7b6fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x10e7dc000 -   
    0x10e800ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10e80b000 -   
    0x10e864fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x10e875000 -   
    0x10e890ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x10e89e000 -   
    0x10e8a2ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x10e8ae000 -   
    0x10e99cfff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x10e9ca000 -   
    0x10e9ccfff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x10e9d1000 -   
    0x10ea18ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
    0x10ea32000 -   
    0x10ea4bff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x10ea68000 -   
    0x10ea97ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x10eabd000 -   
    0x10ead9fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x10eaeb000 -   
    0x10ebdcff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x10ebee000 -   
    0x10ec53ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x10ec83000 -   
    0x10ec84fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x10ec8c000 -   
    0x10ec90ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
    0x10ec99000 -   
    0x10eca5ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x10ecc0000 -   
    0x10ecc9ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x10ecd3000 -   
    0x10ed24ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x10ed4e000 -   
    0x10ed66ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x10ed76000 -   
    0x10ed9bff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x10edac000 -   
    0x10edb8ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x10edc0000 -   
    0x10edcbff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x10edd5000 -   
    0x10edd8ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x10ede2000 -   
    0x10ede3ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
    0x10edea000 -   
    0x10eea2ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x10ef0b000 -   
    0x10ef50fff  libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
    0x10ef60000 -   
    0x10ef91fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x10efa4000 -   
    0x10efa6fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x10efb0000 -   
    0x10efb2ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
    0x10efbb000 -   
    0x10efc1fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x10efcd000 -   
    0x10f002ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x10f013000 -   
    0x10f023ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
    0x10f02c000 -   
    0x10f10bfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
    0x10f175000 -   
    0x10f1a9fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
    0x10f1c5000 -   
    0x10f1fdff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x10f23c000 -   
    0x10f23cffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x10f247000 -   
    0x10f48fff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x10f5b8000 -   
    0x10f5c0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x10f5d0000 -   
    0x10f5e2ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x10f5f3000 -   
    0x10f67fff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x10f6b5000 -   
    0x10f6daff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x10f6fd000 -   
    0x10f9ceff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x10fac5000 -   
    0x10fb18fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x10fb44000 -   
    0x10fb83fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x10fb96000 -   
    0x10fb9effc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x10fbab000 -   
    0x10fbb6fff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x10fbcd000 -   
    0x10fc0bff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x10fc1a000 -   
    0x10fc1cfff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x10fc23000 -   
    0x10fc26fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x10fc2f000 -   
    0x110062ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x110281000 -   
    0x11028bff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x11029d000 -   
    0x1102ebff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x110309000 -   
    0x11038afff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x1103df000 -   
    0x110437ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x11047e000 -   
    0x1104adfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x1104c9000 -   
    0x1104d2fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x1104e1000 -   
    0x110622fff  com.apple.QTKit (7.7.3 - 2826.19) <E634E6EC-2C7A-3F86-997B-CFC5D9F89E6B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x11073b000 -   
    0x1107d6ff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x110850000 -   
    0x110d73fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x111095000 -   
    0x1110b9fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x1110e8000 -   
    0x1110eeff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x1110fc000 -   
    0x11121efff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x111336000 -   
    0x11137ffff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x1113b2000 -   
    0x1116e8fff  com.apple.MediaToolbox (1.0 - 1273.54) <CB6F6690-D44C-30B5-93AB-CAB198D51884> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x111798000 -   
    0x111be6fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x111c45000 -   
    0x111c45fff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x111c4e000 -   
    0x111c64fff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x111c7d000 -   
    0x111cc9ffe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x111cf3000 -   
    0x111d0affa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x111d20000 -   
    0x111e4ffef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x111e8e000 -   
    0x111ebdff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x111ecb000 -   
    0x111ed0ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x111ee1000 -   
    0x111ee3fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x111ee9000 -   
    0x1122c0fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x1122d1000 -   
    0x1122eeff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x1122fe000 -   
    0x112306ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x11230e000 -   
    0x112375ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x1123a7000 -   
    0x112406fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x11244a000 -   
    0x112474ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x112484000 -   
    0x1124eafff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x11254f000 -   
    0x11259cfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x1125ae000 -   
    0x1125b8ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x1125c8000 -   
    0x1125f2ff7  libsandbox.1.dylib (278.11.1) <D98EE9E5-BEB9-3396-924B-9CD100E81C41> /usr/lib/libsandbox.1.dylib
    0x112600000 -   
    0x112613ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x11262c000 -   
    0x11262efff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x112637000 -   
    0x11263ffff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
    0x112647000 -   
    0x11264bfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x112656000 -   
    0x112659fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x112665000 -   
    0x112677fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x112698000 -   
    0x1126b0ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x1126c9000 -   
    0x1126caff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x1126cf000 -   
    0x1126d1ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x1126dd000 -   
    0x112765ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-428

    Hi,  this morning on my Mac mini, Finder didn't start and this message appeared on the Desktop:
    Finder quit unexpectedly while using the DesktopServicePriv plug-in
    and the following problem details and system configuration -
    Process:    
    Finder [258]
    Path:       
    /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier: 
    Finder
    Version:    
    10.9.4 (10.9.4)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [243]
    Responsible:
    Finder [258]
    User ID:    
    501
    PlugIn Path:  
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Deskt opServicesPriv
    PlugIn Identifier: com.apple.desktopservices
    PlugIn Version:
    1.8.3 (1.8.3)
    Date/Time:  
    2014-10-21 08:38:03.483 -0400
    OS Version: 
    Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  8F3DE107-0825-931D-E5D1-A1EB822E4735
    Crashed Thread:  3  Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x0000000106be90bc
    kernel messages:
    VM Regions Near 0x106be90bc:
    Kernel Alloc Once 
    0000000106bc6000-0000000106bc7000 [
    4K] rw-/rwx SM=PRV 
    --> __TEXT            
    0000000106bc7000-0000000106cf8000 [ 1220K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    __DATA            
    0000000106cf8000-0000000106d01000 [   36K] rw-/rwx SM=PRV  /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x000000010cd09a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x000000010cd08d18 mach_msg + 64
    2   com.apple.CoreServices.CarbonCore    0x000000010cf71e15 f2d_register_rpc + 325
    3   com.apple.CoreServices.CarbonCore    0x000000010cf71bb0 register_with_server + 869
    4   com.apple.CoreServices.CarbonCore    0x000000010cf7169c FSEventStreamStart + 260
    5   com.apple.desktopservices
    0x0000000106bd619b CreateFSEventStreamForPath(__CFString const*, void (*)(__FSEventStream const*, void*, unsigned long, void*, unsigned int const*, unsigned long long const*), __CFArray const*) + 151
    6   com.apple.desktopservices
    0x0000000106bd5fd5 TBusyFolders::StartObservingDirectory(TUString const&, bool) + 203
    7   com.apple.desktopservices
    0x0000000106bd5e40 TSystemNotificationTask::TSystemNotificationTask() + 242
    8   com.apple.desktopservices
    0x0000000106bd5b1b TSystemNotificationTask::MakeSystemNotificationTask() + 63
    9   com.apple.desktopservices
    0x0000000106bc9608 NodeContextOpen + 42
    10  com.apple.finder        
    0x00000001065c88c3 0x1065c0000 + 35011
    11  com.apple.finder        
    0x00000001065c683c 0x1065c0000 + 26684
    12  com.apple.finder        
    0x00000001065c671d 0x1065c0000 + 26397
    13  libdyld.dylib           
    0x000000010cb615fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib  
    0x000000010cd0de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010ce23f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010ce26fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x000000010cd0e662 kevent64 + 10
    1   libdispatch.dylib       
    0x000000010cb28421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib       
    0x000000010cb28136 _dispatch_mgr_thread + 52
    Thread 3 Crashed:: Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   com.apple.desktopservices
    0x0000000106be90bc TPropertyReference::AsSInt32(int&) const + 0
    1   com.apple.desktopservices
    0x0000000106bd6e21 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 1017
    2   com.apple.desktopservices
    0x0000000106bd6961 ___ZN17TVolumeSyncThread19PostNodeTaskRequestEP9TNodeTask_block_invoke_2 + 84
    3   com.apple.desktopservices
    0x0000000106bd68b1 ExceptionSafeBlock(void () block_pointer) + 12
    4   com.apple.desktopservices
    0x0000000106bd689f ___ZN17TVolumeSyncThread19PostNodeTaskRequestEP9TNodeTask_block_invoke + 91
    5   libdispatch.dylib       
    0x000000010cb291bb _dispatch_call_block_and_release + 12
    6   libdispatch.dylib       
    0x000000010cb2628d _dispatch_client_callout + 8
    7   libdispatch.dylib       
    0x000000010cb28673 _dispatch_queue_drain + 451
    8   libdispatch.dylib       
    0x000000010cb299c1 _dispatch_queue_invoke + 110
    9   libdispatch.dylib       
    0x000000010cb27f87 _dispatch_root_queue_drain + 75
    10  libdispatch.dylib       
    0x000000010cb29177 _dispatch_worker_thread2 + 40
    11  libsystem_pthread.dylib 
    0x000000010ce23ef8 _pthread_wqthread + 314
    12  libsystem_pthread.dylib 
    0x000000010ce26fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x000000010cd0de6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010ce23f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010ce26fb9 start_wqthread + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000106bd6e11  rbx: 0x0000000115bccd58  rcx: 0x0000000115bccd58  rdx: 0x0000000000000001
      rdi: 0x00006080000a5248  rsi: 0x0000000115bcccc4  rbp: 0x0000000115bccce0  rsp: 0x0000000115bccca8
       r8: 0x0000000000000001   r9: 0x0000000000000000  r10: 0x0000000115bccd88  r11: 0x0000000000000246
      r12: 0x0000000106d002a0  r13: 0x0000000000000000  r14: 0x0000000000000001  r15: 0x0000000115bccd58
      rip: 0x0000000106be90bc  rfl: 0x0000000000010206  cr2: 0x0000000106be90bc
    Logical CPU:
    1
    Error Code: 
    0x00000014
    Trap Number:
    14
    Binary Images:
    0x1065c0000 -   
    0x106a8eff9  com.apple.finder (10.9.4 - 10.9.4) <1CEEB00A-B22D-34DA-ABDB-EC5419F308A4> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    0x106bc7000 -   
    0x106cf7ff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x106d7b000 -   
    0x106ddeffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x106e1d000 -   
    0x106e58fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x106e71000 -   
    0x106e76fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x106e86000 -   
    0x106ef2fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x106f2c000 -   
    0x106f58ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x106f86000 -   
    0x10706afff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x10712e000 -   
    0x107179fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x1071c1000 -   
    0x10735dff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x107435000 -   
    0x107443fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x10744e000 -   
    0x107512ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x10759a000 -   
    0x1075ebfff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x10762d000 -   
    0x1077e5ffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
    0x10788b000 -   
    0x107892fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x10789c000 -   
    0x107afdfff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x107d49000 -   
    0x107e1afff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x107ed1000 -   
    0x10815afff  com.apple.CommerceKit (1.2.0 - 232.11) <976C534B-C0F3-3C01-AB3D-E81B2EE9ADB1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x1081f8000 -   
    0x10824aff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x108294000 -   
    0x1083e8ff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x108482000 -   
    0x108553ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D85430A6-1410-3B5F-9D11-17E2440B786E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x1085b5000 -   
    0x1085b6ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x1085be000 -   
    0x108649fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
    0x108675000 -   
    0x1086bbfff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x1086e3000 -   
    0x1086edff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
    0x1086fb000 -   
    0x10873cfff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x108f93000 -   
    0x108fc1ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x108ff5000 -   
    0x108ff8fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x108fff000 -   
    0x10900bfff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
    0x109020000 -   
    0x10927aff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x1093c7000 -   
    0x1093c7fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x1093cd000 -   
    0x109677ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x1097d0000 -   
    0x1097ddfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x1097f0000 -   
    0x109aeefff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x109d30000 -   
    0x109eddf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x109f00000 -   
    0x109f52fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x109fb4000 -   
    0x109fb5ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
    0x109fc1000 -   
    0x10a083ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x10a0f2000 -   
    0x10a28dff8  com.apple.CFNetwork (673.3 - 673.3) <4375B7CB-34B6-3A26-99AC-2D2404AD9C9B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x10a39a000 -   
    0x10a39afff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x10a3a1000 -   
    0x10af17ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x10b6a0000 -   
    0x10b885fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x10b9fc000 -   
    0x10bb02ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x10bb71000 -   
    0x10bb71fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x10bb78000 -   
    0x10bbebfff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x10bc2e000 -   
    0x10c54e32b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x10c67f000 -   
    0x10c68ffff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x10c69c000 -   
    0x10c6b5ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x10c6cf000 -   
    0x10c6daff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x10c6e7000 -   
    0x10c717fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x10c744000 -   
    0x10c7b3ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x10c7e5000 -   
    0x10c86efff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x10c8b6000 -   
    0x10c8fbff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x10c934000 -   
    0x10c943ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x10c953000 -   
    0x10c9a0ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x10c9ce000 -   
    0x10ca07ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x10ca25000 -   
    0x10ca2efff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x10ca41000 -   
    0x10ca52ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x10ca5f000 -   
    0x10ca62ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x10ca6c000 -   
    0x10ca6cfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x10ca70000 -   
    0x10ca74ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x10ca7a000 -   
    0x10ca84fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x10ca99000 -   
    0x10caa0fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x10cab1000 -   
    0x10cab8ffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
    0x10cac6000 -   
    0x10cb14fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x10cb25000 -   
    0x10cb3ffff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    0x10cb5e000 -   
    0x10cb61ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    0x10cb6b000 -   
    0x10cb6bff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x10cb76000 -   
    0x10cb7dff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
    0x10cb8a000 -   
    0x10cb8ffff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x10cb99000 -   
    0x10cb9bff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x10cba7000 -   
    0x10cba8ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x10cbb5000 -   
    0x10cbc6ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x10cbd0000 -   
    0x10cbd1ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x10cbd8000 -   
    0x10cc61ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x10cc92000 -   
    0x10cc94ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
    0x10cc9f000 -   
    0x10cca7fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
    0x10ccb4000 -   
    0x10ccdbffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x10ccf8000 -   
    0x10cd14ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
    0x10cd3e000 -   
    0x10cd6dfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x10cd7f000 -   
    0x10cd9aff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x10cda4000 -   
    0x10cdcbff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x10cded000 -   
    0x10cdf6ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x10ce02000 -   
    0x10ce08ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x10ce21000 -   
    0x10ce28ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x10ce36000 -   
    0x10ce37fff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
    0x10ce3e000 -   
    0x10ce42ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
    0x10ce4f000 -   
    0x10ce50fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x10ce59000 -   
    0x10ce5eff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x10ce69000 -   
    0x10ce8dfff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x10ceb0000 -   
    0x10cef2ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x10cf0d000 -   
    0x10cf36ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x10cf4a000 -   
    0x10cf55fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
    0x10cf5b000 -   
    0x10d245fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x10d2c3000 -   
    0x10d353ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x10d3bd000 -   
    0x10d434fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x10d4d7000 -   
    0x10d544fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x10d589000 -   
    0x10d5e4ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x10d619000 -   
    0x10d6e3fff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x10d75f000 -   
    0x10d788fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x10d7ac000 -   
    0x10d896fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x10d8b1000 -   
    0x10d998ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x10d9cf000 -   
    0x10d9dcff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x10d9e5000 -   
    0x10d9e9fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x10d9ef000 -   
    0x10d9efffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x10d9f4000 -   
    0x10da01ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x10da0c000 -   
    0x10da0dfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x10da18000 -   
    0x10da33ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x10da44000 -   
    0x10daa8fff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x10dae8000 -   
    0x10daebfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x10daf2000 -   
    0x10db09ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x10db27000 -   
    0x10db31ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x10db40000 -   
    0x10db68ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x10db76000 -   
    0x10de4afc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x10de8e000 -   
    0x10de8efff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x10de93000 -   
    0x10df5efff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x10df6b000 -   
    0x10e01bff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x10e028000 -   
    0x10e409ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x10e46d000 -   
    0x10e5dbff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x10e607000 -   
    0x10e6f6fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x10e76f000 -   
    0x10e7b6fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x10e7dc000 -   
    0x10e800ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10e80b000 -   
    0x10e864fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x10e875000 -   
    0x10e890ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x10e89e000 -   
    0x10e8a2ff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x10e8ae000 -   
    0x10e99cfff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x10e9ca000 -   
    0x10e9ccfff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x10e9d1000 -   
    0x10ea18ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
    0x10ea32000 -   
    0x10ea4bff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x10ea68000 -   
    0x10ea97ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x10eabd000 -   
    0x10ead9fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x10eaeb000 -   
    0x10ebdcff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x10ebee000 -   
    0x10ec53ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x10ec83000 -   
    0x10ec84fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x10ec8c000 -   
    0x10ec90ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
    0x10ec99000 -   
    0x10eca5ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x10ecc0000 -   
    0x10ecc9ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x10ecd3000 -   
    0x10ed24ff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x10ed4e000 -   
    0x10ed66ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x10ed76000 -   
    0x10ed9bff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x10edac000 -   
    0x10edb8ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x10edc0000 -   
    0x10edcbff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <B62B1994-1874-3F8D-B62E-589E6F6534C9> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x10edd5000 -   
    0x10edd8ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x10ede2000 -   
    0x10ede3ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
    0x10edea000 -   
    0x10eea2ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x10ef0b000 -   
    0x10ef50fff  libcurl.4.dylib (78.94.1) <88F27F9B-052E-3375-938D-2603E90D8AD5> /usr/lib/libcurl.4.dylib
    0x10ef60000 -   
    0x10ef91fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x10efa4000 -   
    0x10efa6fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x10efb0000 -   
    0x10efb2ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
    0x10efbb000 -   
    0x10efc1fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x10efcd000 -   
    0x10f002ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x10f013000 -   
    0x10f023ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
    0x10f02c000 -   
    0x10f10bfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
    0x10f175000 -   
    0x10f1a9fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
    0x10f1c5000 -   
    0x10f1fdff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x10f23c000 -   
    0x10f23cffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x10f247000 -   
    0x10f48fff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x10f5b8000 -   
    0x10f5c0ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x10f5d0000 -   
    0x10f5e2ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x10f5f3000 -   
    0x10f67fff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x10f6b5000 -   
    0x10f6daff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x10f6fd000 -   
    0x10f9ceff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x10fac5000 -   
    0x10fb18fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x10fb44000 -   
    0x10fb83fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x10fb96000 -   
    0x10fb9effc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x10fbab000 -   
    0x10fbb6fff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x10fbcd000 -   
    0x10fc0bff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x10fc1a000 -   
    0x10fc1cfff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x10fc23000 -   
    0x10fc26fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x10fc2f000 -   
    0x110062ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x110281000 -   
    0x11028bff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x11029d000 -   
    0x1102ebff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x110309000 -   
    0x11038afff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x1103df000 -   
    0x110437ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x11047e000 -   
    0x1104adfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x1104c9000 -   
    0x1104d2fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x1104e1000 -   
    0x110622fff  com.apple.QTKit (7.7.3 - 2826.19) <E634E6EC-2C7A-3F86-997B-CFC5D9F89E6B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x11073b000 -   
    0x1107d6ff7  com.apple.PDFKit (2.9.2 - 2.9.2) <0CDC6467-9227-3D98-B4D4-660796AE9F6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x110850000 -   
    0x110d73fff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x111095000 -   
    0x1110b9fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x1110e8000 -   
    0x1110eeff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x1110fc000 -   
    0x11121efff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x111336000 -   
    0x11137ffff  com.apple.CoreMedia (1.0 - 1273.54) <CAB7303A-9AB2-317A-99C3-BEAA8AE8764B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x1113b2000 -   
    0x1116e8fff  com.apple.MediaToolbox (1.0 - 1273.54) <CB6F6690-D44C-30B5-93AB-CAB198D51884> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x111798000 -   
    0x111be6fef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x111c45000 -   
    0x111c45fff  com.apple.Carbon (154 - 157) <EFC1A1C0-CB07-395A-B038-CFA2E71D3E69> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x111c4e000 -   
    0x111c64fff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x111c7d000 -   
    0x111cc9ffe  com.apple.CoreMediaIO (408.0 - 4570) <72371044-3FF2-3538-8EE1-C7C20F7C60A0> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x111cf3000 -   
    0x111d0affa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x111d20000 -   
    0x111e4ffef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x111e8e000 -   
    0x111ebdff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x111ecb000 -   
    0x111ed0ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
    0x111ee1000 -   
    0x111ee3fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x111ee9000 -   
    0x1122c0fef  com.apple.CoreAUC (6.25.00 - 6.25.00) <2D7DC96C-BA83-3220-A03F-C790D50A23D8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x1122d1000 -   
    0x1122eeff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x1122fe000 -   
    0x112306ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x11230e000 -   
    0x112375ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x1123a7000 -   
    0x112406fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x11244a000 -   
    0x112474ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x112484000 -   
    0x1124eafff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x11254f000 -   
    0x11259cfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x1125ae000 -   
    0x1125b8ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x1125c8000 -   
    0x1125f2ff7  libsandbox.1.dylib (278.11.1) <D98EE9E5-BEB9-3396-924B-9CD100E81C41> /usr/lib/libsandbox.1.dylib
    0x112600000 -   
    0x112613ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x11262c000 -   
    0x11262efff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x112637000 -   
    0x11263ffff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
    0x112647000 -   
    0x11264bfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x112656000 -   
    0x112659fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x112665000 -   
    0x112677fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x112698000 -   
    0x1126b0ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x1126c9000 -   
    0x1126caff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x1126cf000 -   
    0x1126d1ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x1126dd000 -   
    0x112765ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-428

  • Mac Mini Mavericks 10.9.2 Crash

    I have a Mac Mini, 10.9.2. Over the last three weeks, it is crashing spontaneously and always around 50 minutes after restarting. I have changed RAM, reset the SMC, removed all peripherals. It has also done this in SAFE mode. Here is a Console log from the last crash, any thoughts? I would be happy to post additional ones as well. It is always the finder that is crashing, and either due to Exception type EXC_BAD_ACCESS and code KERN_INVALID_ADDRESS or KERN_PROTECTION_FAILURE.
    Process:         Finder [172]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.9.2 (10.9.2)
    Build Info:      Finder_FE-885002006000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [154]
    Responsible:     Finder [172]
    User ID:         501
    Date/Time:       2014-04-26 06:41:41.263 -0600
    OS Version:      Mac OS X 10.9.2 (13C1021)
    Report Version:  11
    Anonymous UUID:
    Crashed Thread:  5
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000010ff09f9c
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x10ff09f9c:
        __DATA                 000000010ff04000-000000010ff07000 [   12K] rw-/rwx SM=COW  /usr/lib/system/libdispatch.dylib
    --> __LINKEDIT             000000010ff07000-000000010ff17000 [   64K] r--/rwx SM=COW  /usr/lib/system/libdispatch.dylib
        __LINKEDIT             000000010ff17000-000000010ff18000 [    4K] rw-/rwx SM=NUL  /usr/lib/system/libdispatch.dylib
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00000001100b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001100b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010ed08fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010ed085e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010ed07f25 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x000000010c7f6a0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x000000010c7f67b7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x000000010c7f65bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x000000010d9ba3de _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x000000010d9b9a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit                        0x000000010d9adb2c -[NSApplication run] + 553
    11  com.apple.AppKit                        0x000000010d998913 NSApplicationMain + 940
    12  com.apple.finder                        0x00000001099b4770 0x1099ae000 + 26480
    13  libdyld.dylib                           0x000000010ff1c5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00000001100ba662 kevent64 + 10
    1   libdispatch.dylib                       0x000000010fee743d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x000000010fee7152 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x00000001100b9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001101c6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001101c9fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00000001100b9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001101c6f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001101c9fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00000001100b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001100b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010ed08fc5 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010ed085e9 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010ed07f25 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x000000010db5a16e _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00000001101c5899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00000001101c572a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00000001101c9fc9 thread_start + 13
    Thread 5 Crashed:
    0   ???                                     0x000000010ff09f9c 0 + 4562395036
    Thread 5 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000054  rcx: 0x000000010d3b6000  rdx: 0x0000000000000054
      rdi: 0x000000010d3b6000  rsi: 0x000000010badb000  rbp: 0x000000010d3b7ff0  rsp: 0x000000010d3b7f78
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x000000010badb000
      rip: 0x000000010ff09f9c  rfl: 0x0000000000010206  cr2: 0x000000010ff09f9c
    Logical CPU:     4
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
           0x1099ae000 -        0x109e7cff5  com.apple.finder (10.9.2 - 10.9.2) <44F7D842-1D12-392F-AFF7-FEEA9FD48D36> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x109fb7000 -        0x10a0e7ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10a169000 -        0x10a1ccff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10a20a000 -        0x10a245fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10a25d000 -        0x10a262fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10a271000 -        0x10a2dbff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10a30f000 -        0x10a33bff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
           0x10a368000 -        0x10a44cfff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10a512000 -        0x10a55dfff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x10a5a6000 -        0x10a742ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10a820000 -        0x10a82efff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10a83d000 -        0x10a901ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10a98b000 -        0x10a9dcfff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x10aa1a000 -        0x10abd2ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
           0x10ac7f000 -        0x10ac86fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10ac8e000 -        0x10aeeffff  com.apple.imageKit (2.5 - 774) <AACDE16E-ED9F-3B3F-A792-69BA1942753B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10b13d000 -        0x10b20efff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10b2c4000 -        0x10b54dfff  com.apple.CommerceKit (1.2.0 - 232.6.1) <FFC0E26C-1D4F-3682-91D7-ACFF4C837EEB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
           0x10b5ed000 -        0x10b63fff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x10b68e000 -        0x10b7e1ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10b877000 -        0x10b948ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x10b9ae000 -        0x10b9afff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10b9ba000 -        0x10ba45fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
           0x10ba6f000 -        0x10bab5fff  com.apple.DiskManagement (6.1 - 744.1) <3DD4CD10-4476-334C-8C4B-991A85AAC272> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x10bade000 -        0x10bae8ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
           0x10bafa000 -        0x10bb3bfff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10c390000 -        0x10c3beff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10c3f2000 -        0x10c3f5fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x10c400000 -        0x10c40cfff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x10c420000 -        0x10c679ff9  com.apple.security (7.0 - 55471.14.1) <FF57C9BB-4E52-33E5-8927-59AEADB6CA27> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10c7c3000 -        0x10c7c3fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10c7c8000 -        0x10ca72ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10cbcb000 -        0x10cbd8fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x10cbf0000 -        0x10ceeefff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10d130000 -        0x10d2ddf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x10d2ff000 -        0x10d351fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x10d3ae000 -        0x10d3afff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x10d3bb000 -        0x10d47dff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10d4ec000 -        0x10d55ffff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10d5a4000 -        0x10d714ff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10d820000 -        0x10d820fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10d827000 -        0x10d92dfff  com.apple.ImageIO.framework (3.3.0 - 1042) <DEA4FF1B-D340-32C3-977D-D249709C6031> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10d996000 -        0x10e50cfff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10ec98000 -        0x10ee7dfff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10eff1000 -        0x10eff1fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10eff5000 -        0x10f91468f  com.apple.CoreGraphics (1.600.0 - 599.21.1) <23BCDB0F-4E60-31BA-859C-820351D50111> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x10fa45000 -        0x10fa55fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x10fa62000 -        0x10fa7bff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10fa93000 -        0x10fa9eff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10faad000 -        0x10faddfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x10fb06000 -        0x10fb75ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10fba4000 -        0x10fc2dfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10fc77000 -        0x10fcbcffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10fcf4000 -        0x10fd03ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10fd18000 -        0x10fd65ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10fd93000 -        0x10fdccff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10fdeb000 -        0x10fdf4fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10fe0a000 -        0x10fe1bff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x10fe25000 -        0x10fe28ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10fe31000 -        0x10fe31fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10fe35000 -        0x10fe39ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x10fe42000 -        0x10fe4cfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x10fe5c000 -        0x10fe63fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x10fe71000 -        0x10fe78ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x10fe85000 -        0x10fed3fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x10fee4000 -        0x10fefefff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
           0x10ff19000 -        0x10ff1cff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
           0x10ff24000 -        0x10ff24ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x10ff2e000 -        0x10ff35ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
           0x10ff3f000 -        0x10ff44fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x10ff4d000 -        0x10ff4fff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x10ff5c000 -        0x10ff5dffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x10ff66000 -        0x10ff77ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x10ff86000 -        0x10ff87ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x10ff91000 -        0x11001aff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
           0x110047000 -        0x110049ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
           0x110053000 -        0x11005bfff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
           0x110066000 -        0x11008dffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x1100a4000 -        0x1100c0ff7  libsystem_kernel.dylib (2422.92.1) <3F649963-7FA1-3201-8FF6-8438A52B9973> /usr/lib/system/libsystem_kernel.dylib
           0x1100ea000 -        0x110119fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x110126000 -        0x110141ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
           0x11014e000 -        0x110175ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x110192000 -        0x11019bff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x1101a4000 -        0x1101aaff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
           0x1101c4000 -        0x1101cbff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x1101dd000 -        0x1101deff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
           0x1101e6000 -        0x1101eaff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
           0x1101f2000 -        0x1101f3fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x1101f9000 -        0x1101feff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x110205000 -        0x110229fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
           0x110248000 -        0x11028aff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x1102a6000 -        0x1102cfff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
           0x1102e4000 -        0x1102effff  libkxld.dylib (2422.92.1) <A7DFFC8C-45EE-3525-A961-EF93C2FB1340> /usr/lib/system/libkxld.dylib
           0x1102f8000 -        0x1105e2fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x11065f000 -        0x1106effff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x110757000 -        0x1107cefff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x110871000 -        0x1108defff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x110928000 -        0x110983ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x1109b9000 -        0x110a82fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x110af9000 -        0x110b22fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x110b47000 -        0x110c31fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x110c48000 -        0x110d2fff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x110d68000 -        0x110d75ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x110d84000 -        0x110d88fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x110d8e000 -        0x110d8effd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x110d95000 -        0x110da2ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x110da8000 -        0x110da9fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x110daf000 -        0x110dcaff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x110dd8000 -        0x110e3cfff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x110e7f000 -        0x110e82fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x110e90000 -        0x110ea7ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x110ec8000 -        0x110ed2ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x110ee1000 -        0x110f09ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x110f1b000 -        0x1111effc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x111237000 -        0x111237fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x111240000 -        0x11130bfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x11131d000 -        0x1113cdff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1113d9000 -        0x1117baffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x11181d000 -        0x11198bff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x1119ba000 -        0x111aa9fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x111b24000 -        0x111b6bfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x111b95000 -        0x111bb9ff7  libJPEG.dylib (1042.2) <0AFE20D1-F24D-3548-A562-DB8FA7995655> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x111bc6000 -        0x111c1ffff  libTIFF.dylib (1042.2) <1C80C3FD-639C-3781-8A30-265410DD444F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x111c2e000 -        0x111c49ff7  libPng.dylib (1042.2) <103F76EB-0FB7-320E-822F-53483CCB7299> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x111c54000 -        0x111c58ff7  libGIF.dylib (1042.2) <0A9267FF-D93A-36DF-87B9-BA34C1166C0C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x111c5e000 -        0x111d4cfff  libJP2.dylib (1042.2) <DD2DE799-C053-3C6A-91EC-D637CBD6FF90> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x111d76000 -        0x111d78fff  libRadiance.dylib (1042.2) <63C92F09-F862-3303-9EF6-55A80B48F2CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x111d7d000 -        0x111dc4ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
           0x111ddd000 -        0x111df6ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x111e11000 -        0x111e40ff9  com.apple.GSS (4.0 - 2.0) <1B71A3E1-E31D-32CC-A733-ED155CC4A6A2> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x111e62000 -        0x111e7efff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x111e90000 -        0x111f81ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x111f97000 -        0x111ffcffb  com.apple.Heimdal (4.0 - 2.0) <1560A2CC-2C0C-3F7B-868C-BD5ADB241F5A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x112028000 -        0x112029fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x112031000 -        0x112035ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
           0x112042000 -        0x11204eff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x112068000 -        0x112071ffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x11207d000 -        0x1120ceff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1120f6000 -        0x11210eff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x112121000 -        0x112146ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x112157000 -        0x112163ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x112172000 -        0x11217dff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x112187000 -        0x11218aff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
           0x112194000 -        0x112195ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
           0x1121a2000 -        0x11225aff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x1122c3000 -        0x112308fff  libcurl.4.dylib (78.92.2) <548E2D61-103F-3737-9C7C-0C26246CD4C8> /usr/lib/libcurl.4.dylib
           0x112318000 -        0x112349fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x112361000 -        0x112363fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x11236e000 -        0x112370ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
           0x112379000 -        0x11237ffff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
           0x11238d000 -        0x1123c2ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x1123d7000 -        0x1123e7ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
           0x1123f3000 -        0x1124d2fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
           0x112540000 -        0x112574fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
           0x11258a000 -        0x1125c2ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x1125ff000 -        0x1125ffffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x11260b000 -        0x112853ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x112980000 -        0x112988ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x112995000 -        0x1129a7ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x1129ba000 -        0x112a46ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x112a79000 -        0x112a9eff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x112abc000 -        0x112d8cffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x112e83000 -        0x112ed6fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x112f00000 -        0x112f3ffff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x112f55000 -        0x112f5dffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x112f68000 -        0x112f73fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x112f89000 -        0x112fc7ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x112fd0000 -        0x112fd2fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x112fda000 -        0x112fddfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x112fe7000 -        0x11341affb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x113637000 -        0x113641ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x113653000 -        0x1136a1fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x1136be000 -        0x11373efff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x11375e000 -        0x1137b6ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x1137fe000 -        0x11382dfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x11384d000 -        0x113856fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x113861000 -        0x1139a2fff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x113aba000 -        0x113b55fff  com.apple.PDFKit (2.9.1 - 2.9.1) <F4DFF4F2-6DA3-3B1B-823E-D9ED271A1522> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x113bcb000 -        0x1140eefff  com.apple.QuartzComposer (5.1 - 319) <8B90921F-911B-3240-A1D5-3C084F3E6A36> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x114411000 -        0x114435fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x114467000 -        0x11446dff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
           0x11447c000 -        0x11459eff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
           0x1146b6000 -        0x1146fffff  com.apple.CoreMedia (1.0 - 1273.49) <D91EC90A-BFF1-300D-A353-68001705811C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x11472d000 -        0x114a63fff  com.apple.MediaToolbox (1.0 - 1273.49) <AB8ED666-6D15-3367-A033-F4A8AD33C4E0> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x114b17000 -        0x114f65fff  com.apple.VideoToolbox (1.0 - 1273.49) <27177077-9107-3E06-ADAD-92B80E80CDCD> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x114fc4000 -        0x114fc4fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x114fcd000 -        0x114fe3fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x114ffd000 -        0x115049ffe  com.apple.CoreMediaIO (407.0 - 4561) <BC8222A6-516C-380C-AB7D-DE78B23574DC> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x115075000 -        0x11508cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
           0x1150a0000 -        0x1151cffef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x115208000 -        0x115237ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x115247000 -        0x11524cff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
           0x11525c000 -        0x11525efff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
           0x115269000 -        0x1157d9fff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x1157ed000 -        0x11580aff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x115819000 -        0x115821ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
           0x11582b000 -        0x115892ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
           0x1158c1000 -        0x115920fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x115962000 -        0x11598cff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x1159a1000 -        0x115a07fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x115a6c000 -        0x115ab9fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x115aca000 -        0x115ad4ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
           0x115ae0000 -        0x115b0aff7  libsandbox.1.dylib (278.11) <9E5654BF-DCD3-3B15-9C63-209B2B2D2803> /usr/lib/libsandbox.1.dylib
           0x115b15000 -        0x115b28ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
           0x115b42000 -        0x115b44fff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
           0x115b51000 -        0x115b59fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
           0x115b5f000 -        0x115b63fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x115b6e000 -        0x115b71fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x115b79000 -        0x115b8bfff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x115baa000 -        0x115bc2ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x115bd6000 -        0x115bd7ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x115be3000 -        0x115be5ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x115bec000 -        0x115c74ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x115ccb000 -        0x116042ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <DC1116A7-934C-37C1-9AB2-354DBA43EAD7> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x11613c000 -        0x11615efff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x116178000 -        0x116202fff  com.apple.SoftwareUpdate.framework (6 - 574.2) <5F447EBB-E877-3A78-A9B3-F6A966990755> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
           0x116270000 -        0x11628bfff  com.apple.DistributionKit (700 - 846) <E4562C9C-9367-3C8E-87C2-80C6C0C7B187> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
           0x1162a8000 -        0x1162acfff  com.apple.ServerInformation (2.0 - 1) <85F3EFCA-246B-30A1-8757-ECC97533D38D> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x1162ba000 -        0x116350ff7  com.apple.PackageKit (3.0 - 332) <70BE1C7F-0609-32D3-9FA3-3C2CCF7FE999> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
           0x1163c7000 -        0x1163d5fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x1163e6000 -        0x1163fdfff  com.apple.PackageKit.PackageUIKit (3.0 - 332) <419D2A01-3A7A-3EB4-B4E5-55DEEB786572> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
           0x11641a000 -        0x11642cfff  com.apple.login (3.0 - 3.0) <8342C3B7-8363-36BE-B5B6-CD81166AEC24> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
           0x116441000 -        0x116443fff  com.apple.loginsupport (1.0 - 1) <4FBB283B-5BBD-3918-AC89-3A7286CFA145> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
           0x11644a000 -        0x116499ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x1164ed000 -        0x116733fff  com.apple.AddressBook.framework (8.0 - 1369) <3D1A8D58-6A9E-366C-BDB8-ECC6F279DB24> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x1169a3000 -        0x116ad9ffc  com.apple.WebKit (9537 - 9537.75.14) <98D7B16B-B2C8-3A4E-9AE9-7A8385ACFBA9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x116bd3000 -        0x116c70fff  com.apple.imcore (10.0 - 1000) <DF924E35-74AB-389C-9279-1828518218F8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
           0x116cb3000 -        0x116ccffff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x116cf0000 -        0x116f81ff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
           0x116fae000 -        0x117e00ff7  com.apple.WebCore (9537 - 9537.75.14) <8C80717D-91D3-32D5-92F4-804AC1D1E881> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x118773000 -        0x11877aff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x118787000 -        0x1187e4fff  com.apple.imfoundation (10.0 - 1000) <122D84B9-871D-3885-9D8D-840CD529028F> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
           0x11882f000 -        0x118831fff  com.apple.marco (10.0 - 1000) <FC7EF8C7-5EDF-3720-BAEC-281F12A7A3F8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
           0x118839000 -        0x118857fff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
           0x11886b000 -        0x1188a7ff7  com.apple.ids (10.0 - 1000) <632F7192-0399-34C8-B6BB-463D2F4370E0> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
           0x1188c8000 -        0x1188dcfff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
           0x1188f8000 -        0x1188f9fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
           0x118904000 -        0x11890afff  com.apple.AddressBook.ContactsFoundation (8.0 - 1369) <A5D1D494-2F84-3A97-A229-04DB308D4481> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
           0x11891c000 -        0x11891cfff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x118924000 -        0x118951ff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x118967000 -        0x118998ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
           0x1189a9000 -        0x1189abff7  com.apple.diagnosticlogcollection (10.0 - 1000) <5CA6D8A2-DEA6-33C3-91BC-F3B076C0500B> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
           0x1189b6000 -        0x1189c7fff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
           0x1189e0000 -        0x118a37fff  com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
           0x118a75000 -        0x118a75fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
           0x118a7b000 -        0x118adbfff  com.apple.ISSupport (1.9.9 - 57) <E1E343D7-222C-3458-9D1F-FC600B7F1C50> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
           0x119120000 -        0x11912dff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x119149000 -        0x119151ff3  libCGCMS.A.dylib (599.21.1) <84C6C6F3-AD75-3120-A86F-8AE1005A0ECE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x11a851000 -        0x11a87dfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x11aa30000 -        0x11aa58ffb  libRIP.A.dylib (599.21.1) <994C1D46-A532-3361-8C20-11778DC12040> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x11aa68000 -        0x11aa6bffa  libCGXType.A.dylib (599.21.1) <0F364FEE-105D-329D-B823-082AA45E6AFD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x11ab54000 -        0x11ab5bff7  com.apple.SyncedDefaults (1.3 - 91.30) <FC5A4423-3D91-3A34-853A-C49971EEAE4E> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x11ab66000 -        0x11ab81ff9  com.apple.security.csparser (3.0 - 55471.14.1) <484D5DDB-DE66-3909-B482-C6EDAAD4ADA4> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
        0x7fff5fd2b000 -     0x7fff5fd5e817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 13
        thread_create: 2
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 1420
        thread_create: 2
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=208.7M resident=171.5M(82%) swapped_out_or_unallocated=37.2M(18%)
    Writable regions: Total=153.5M written=7988K(5%) resident=37.9M(25%) swapped_out=220K(0%) unallocated=115.6M(75%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                   628K
    CG image                              4K
    CG shared images                    172K
    CoreAnimation                       328K
    Foundation                            4K
    Kernel Alloc Once                     8K
    MALLOC                            101.8M
    MALLOC (admin)                       32K
    Memory Tag 242                       12K
    Memory Tag 250                       48K
    STACK GUARD                        56.0M
    Stack                              10.1M
    VM_ALLOCATE                        24.5M
    __DATA                             29.9M
    __IMAGE                             528K
    __LINKEDIT                         50.0M
    __TEXT                            158.8M
    __UNICODE                           544K
    mapped file                        46.8M
    shared memory                         4K
    ===========                      =======
    TOTAL                             480.1M

    Move the com.apple.finder.plist file from the hidden /username/Library/Preferences/ folder to the Desktop, OPTION-click and hold the Finder's Dock icon, and select relaunch. Run in that mode for an hour or so. If not crash, then reset your Finder prefs and delete the moved file.

  • Problems after 10.9.2 update on Mac Mini

    So, after I updated, two things happened.
    1. safari will no longer open- boots to error saying safari has quit unexpectedly. It will work in safe mode though.
    2. it reset my display settings to my tv. i need underscan option slider but it is gone now. Slider still not there in safe mode.
    I've tried resetting smc and pram, both to no avail.

    Safari, Mail and App Store not working after 10.9.2 install - I get "Mail quit unexectedly while using WebKit2 plug-in "  same msg (change app name) for Safari and App Store.  Below is log from the mail failure - any recommendations:
    Process:    
    Mail [1110]
    Path:       
    /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: 
    com.apple.mail
    Version:    
    7.2 (1874)
    Build Info: 
    Mail-1874000000000000~1
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [169]
    Responsible:
    Mail [1110]
    User ID:    
    501
    PlugIn Path:  
    /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    PlugIn Identifier: com.apple.WebKit2
    PlugIn Version:
    9537 (9537.74.9)
    Date/Time:  
    2014-03-01 10:02:40.190 -0500
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  E00E5BF4-3BD0-2210-EF70-EF8F6ADED86A
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x0000000111d2f588
    VM Regions Near 0x111d2f588:
    __LINKEDIT        
    0000000111c50000-0000000111c78000 [  160K] r--/rwx SM=COW  /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    --> __TEXT            
    0000000111c7c000-0000000111e6d000 [ 1988K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    __DATA            
    0000000111e6d000-0000000111e89000 [  112K] rw-/rwx SM=ZER  /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebKit2        
    0x0000000111d2f588 -[WKBrowsingContextGroup initWithIdentifier:] + 0
    1   com.apple.mail           
    0x00000001025b2e6a 0x102557000 + 376426
    2   com.apple.mail           
    0x00000001025b2de5 0x102557000 + 376293
    3   libdispatch.dylib        
    0x0000000107a462ad _dispatch_client_callout + 8
    4   libdispatch.dylib        
    0x0000000107a4621c dispatch_once_f + 79
    5   com.apple.mail           
    0x00000001025b2da5 0x102557000 + 376229
    6   com.apple.mail           
    0x00000001025b2ceb 0x102557000 + 376043
    7   com.apple.AppKit         
    0x00000001066c6424 -[NSClassSwapper initWithCoder:] + 528
    8   com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    9   com.apple.Foundation     
    0x0000000104cbaf9f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    10  com.apple.Foundation     
    0x0000000104cbb19b -[NSArray(NSArray) initWithCoder:] + 202
    11  com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    12  com.apple.Foundation     
    0x0000000104cb934d _decodeObject + 288
    13  com.apple.AppKit         
    0x00000001066c473c -[NSView initWithCoder:] + 1949
    14  com.apple.AppKit         
    0x0000000106709da6 -[NSClipView initWithCoder:] + 51
    15  com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    16  com.apple.Foundation     
    0x0000000104cbaf9f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    17  com.apple.Foundation     
    0x0000000104cbb19b -[NSArray(NSArray) initWithCoder:] + 202
    18  com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    19  com.apple.Foundation     
    0x0000000104cb934d _decodeObject + 288
    20  com.apple.AppKit         
    0x00000001066c473c -[NSView initWithCoder:] + 1949
    21  com.apple.AppKit         
    0x00000001067087cd -[NSScrollView initWithCoder:] + 284
    22  com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    23  com.apple.Foundation     
    0x0000000104cb934d _decodeObject + 288
    24  com.apple.AppKit         
    0x000000010669de5d -[NSNibConnector initWithCoder:] + 106
    25  com.apple.AppKit         
    0x000000010669dcde -[NSNibOutletConnector initWithCoder:] + 73
    26  com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    27  com.apple.Foundation     
    0x0000000104cbaf9f -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1774
    28  com.apple.Foundation     
    0x0000000104cbb19b -[NSArray(NSArray) initWithCoder:] + 202
    29  com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    30  com.apple.Foundation     
    0x0000000104cb934d _decodeObject + 288
    31  com.apple.AppKit         
    0x000000010669c912 -[NSIBObjectData initWithCoder:] + 205
    32  com.apple.Foundation     
    0x0000000104cb9e92 _decodeObjectBinary + 2534
    33  com.apple.Foundation     
    0x0000000104cb934d _decodeObject + 288
    34  com.apple.AppKit         
    0x000000010674bfa0 -[NSNib _instantiateNibWithExternalNameTable:] + 508
    35  com.apple.AppKit         
    0x000000010687b572 -[NSNib instantiateNibWithOwner:topLevelObjects:] + 215
    36  com.apple.AppKit         
    0x000000010687b352 -[NSViewController loadView] + 180
    37  com.apple.AppKit         
    0x00000001067a9888 -[NSViewController view] + 41
    38  com.apple.mail           
    0x00000001025b175f 0x102557000 + 370527
    39  com.apple.mail           
    0x00000001025b1622 0x102557000 + 370210
    40  com.apple.mail           
    0x00000001025b1268 0x102557000 + 369256
    41  com.apple.mail           
    0x00000001025b0f47 0x102557000 + 368455
    42  com.apple.mail           
    0x00000001025b094d 0x102557000 + 366925
    43  com.apple.AppKit         
    0x000000010686916b -[NSView _updateSuggestedContentRect] + 774
    44  com.apple.AppKit         
    0x0000000106877cf1 -[NSView _updateSuggestedContentRectForVisibleRectChange] + 219
    45  com.apple.AppKit         
    0x0000000106877b87 -[NSScrollView(NSRulerSupport) _handleBoundsChangeForSubview:] + 331
    46  com.apple.AppKit         
    0x00000001068779fa -[NSView _postBoundsChangeNotification] + 136
    47  com.apple.AppKit         
    0x0000000106877838 -[NSView translateOriginToPoint:] + 294
    48  com.apple.AppKit         
    0x000000010671edbf -[NSClipView _immediateScrollToPoint:] + 2659
    49  com.apple.AppKit         
    0x000000010671e31a -[NSClipView scrollToPoint:] + 237
    50  com.apple.AppKit         
    0x0000000106876c9e -[NSScrollView scrollClipView:toPoint:] + 203
    51  com.apple.AppKit         
    0x0000000106722f79 -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1688
    52  com.apple.AppKit         
    0x00000001067226ff -[NSClipView _reflectDocumentViewFrameChange] + 128
    53  com.apple.AppKit         
    0x00000001066e70ac -[NSView _postFrameChangeNotification] + 203
    54  com.apple.AppKit         
    0x00000001066f0852 -[NSView setFrameSize:] + 1586
    55  com.apple.mail           
    0x0000000102577d24 0x102557000 + 134436
    56  com.apple.AppKit         
    0x00000001066f01d9 -[NSView setFrame:] + 294
    57  com.apple.mail           
    0x00000001025aad9e 0x102557000 + 343454
    58  com.apple.mail           
    0x00000001025b011b 0x102557000 + 364827
    59  com.apple.mail           
    0x00000001025aff56 0x102557000 + 364374
    60  com.apple.mail           
    0x00000001025aee23 0x102557000 + 359971
    61  com.apple.mail           
    0x0000000102577013 0x102557000 + 131091
    62  com.apple.Foundation     
    0x0000000104cabf28 NSKeyValueNotifyObserver + 387
    63  com.apple.Foundation     
    0x0000000104ce8ed1 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1115
    64  com.apple.AppKit         
    0x0000000106741d88 -[NSController _notifyObserversForKeyPath:change:] + 209
    65  com.apple.AppKit         
    0x00000001068735b7 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53
    66  com.apple.AppKit         
    0x0000000106741bc8 -[NSArrayController setContent:] + 826
    67  com.apple.mail           
    0x0000000102574bf3 0x102557000 + 121843
    68  com.apple.Foundation     
    0x0000000104ce972e -[NSObject(NSKeyValueCoding) setValue:forKey:] + 389
    69  com.apple.AppKit         
    0x000000010674b0ad -[NSObjectParameterBinder _updateObject:observedController:observedKeyPath:context:] + 1298
    70  com.apple.AppKit         
    0x00000001067420a8 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 652
    71  com.apple.mail           
    0x00000001025ac52a 0x102557000 + 349482
    72  com.apple.mail           
    0x0000000102576a67 0x102557000 + 129639
    73  com.apple.mail           
    0x00000001025a2c3b 0x102557000 + 310331
    74  com.apple.mail           
    0x0000000102579c70 0x102557000 + 142448
    75  com.apple.mail           
    0x0000000102583599 0x102557000 + 181657
    76  com.apple.mail           
    0x00000001025a2294 0x102557000 + 307860
    77  com.apple.mail           
    0x00000001025a1f31 0x102557000 + 306993
    78  com.apple.CoreFoundation 
    0x00000001058d2e0c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    79  com.apple.CoreFoundation 
    0x00000001057c6a6d _CFXNotificationPost + 2893
    80  com.apple.Foundation     
    0x0000000104ca57ba -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    81  com.apple.AppKit         
    0x00000001067f8c0f -[NSTableView _sendSelectionChangedNotificationForRows:columns:] + 177
    82  com.apple.AppKit         
    0x0000000106725504 -[NSTableView _enableSelectionPostingAndPost] + 406
    83  com.apple.AppKit         
    0x00000001068d44bc -[NSTableView mouseDown:] + 5588
    84  com.apple.mail           
    0x00000001025cf761 0x102557000 + 493409
    85  com.apple.AppKit         
    0x00000001068bdb48 -[NSWindow sendEvent:] + 11296
    86  com.apple.AppKit         
    0x000000010685c6e4 -[NSApplication sendEvent:] + 2021
    87  com.apple.mail           
    0x00000001025997e7 0x102557000 + 272359
    88  com.apple.AppKit         
    0x00000001066acb89 -[NSApplication run] + 646
    89  com.apple.AppKit         
    0x0000000106697913 NSApplicationMain + 940
    90  libdyld.dylib            
    0x0000000107a825fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x0000000107c24662 kevent64 + 10
    1   libdispatch.dylib        
    0x0000000107a4843d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x0000000107a48152 _dispatch_mgr_thread + 52
    Thread 2:: Dispatch queue: NSOperationQueue 0x60000022e440
    0   libsystem_platform.dylib 
    0x0000000107d10ed5 _os_lock_handoff_trylock + 23
    1   libsystem_platform.dylib 
    0x0000000107d10daf os_lock_trylock + 10
    2   libobjc.A.dylib          
    0x00000001051e49e8 _objc_rootReleaseWasZero + 76
    3   libobjc.A.dylib          
    0x00000001051e6105 objc_release + 53
    4   libobjc.A.dylib          
    0x00000001051e565a (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 502
    5   com.apple.CoreFoundation 
    0x00000001057eeb72 _CFAutoreleasePoolPop + 50
    6   com.apple.CoreFoundation 
    0x0000000105838481 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 145
    7   com.apple.CoreFoundation 
    0x0000000105837c1f -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 319
    8   com.apple.Mail.framework 
    0x0000000103647629 -[MFMailAccount mailboxForRelativePath:isFilesystemPath:create:] + 944
    9   com.apple.Mail.framework 
    0x00000001035c86d7 -[MFIMAPAccount mailboxForRelativePath:isFilesystemPath:create:] + 360
    10  com.apple.Mail.framework 
    0x00000001036485df +[MFMailAccount mailboxForURL:forceCreation:syncableURL:] + 435
    11  com.apple.Mail.framework 
    0x000000010365a4b3 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke841 + 48
    12  com.apple.CoreFoundation 
    0x000000010584185f __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 111
    13  com.apple.CoreFoundation 
    0x000000010584176e -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 222
    14  com.apple.Mail.framework 
    0x000000010365a3a0 __43+[MFMailbox queueUpdateCountsForMailboxes:]_block_invoke + 270
    15  com.apple.Foundation     
    0x0000000104ccb0b5 -[NSBlockOperation main] + 75
    16  com.apple.Foundation     
    0x0000000104caa8a1 -[__NSOperationInternal _start:] + 631
    17  com.apple.Foundation     
    0x0000000104caa54b __NSOQSchedule_f + 64
    18  libdispatch.dylib        
    0x0000000107a462ad _dispatch_client_callout + 8
    19  libdispatch.dylib        
    0x0000000107a4a7ff _dispatch_async_redirect_invoke + 154
    20  libdispatch.dylib        
    0x0000000107a462ad _dispatch_client_callout + 8
    21  libdispatch.dylib        
    0x0000000107a4809e _dispatch_root_queue_drain + 326
    22  libdispatch.dylib        
    0x0000000107a49193 _dispatch_worker_thread2 + 40
    23  libsystem_pthread.dylib  
    0x0000000107d2eef8 _pthread_wqthread + 314
    24  libsystem_pthread.dylib  
    0x0000000107d31fb9 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x0000000107c23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x0000000107d2ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x0000000107d31fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x0000000107c23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x0000000107d2ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x0000000107d31fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x0000000107c1fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x0000000107c1ed18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x0000000105827155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x0000000105826779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00000001058260b5 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit         
    0x000000010685916e _NSEventThread + 144
    6   libsystem_pthread.dylib  
    0x0000000107d2d899 _pthread_body + 138
    7   libsystem_pthread.dylib  
    0x0000000107d2d72a _pthread_start + 137
    8   libsystem_pthread.dylib  
    0x0000000107d31fc9 thread_start + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x0000000107c1fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x0000000107c1ed18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x0000000105827155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x0000000105826779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00000001058260b5 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation     
    0x0000000104d09967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation     
    0x0000000104d0976b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib  
    0x0000000107d2d899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x0000000107d2d72a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x0000000107d31fc9 thread_start + 13
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x0000000107c239aa __select + 10
    1   com.apple.CoreFoundation 
    0x0000000105872b83 __CFSocketManager + 867
    2   libsystem_pthread.dylib  
    0x0000000107d2d899 _pthread_body + 138
    3   libsystem_pthread.dylib  
    0x0000000107d2d72a _pthread_start + 137
    4   libsystem_pthread.dylib  
    0x0000000107d31fc9 thread_start + 13
    Thread 8:: Dispatch queue: NSOperationQueue 0x608000039520
    0   libsystem_kernel.dylib   
    0x0000000107c1fa1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x0000000107c1ed18 mach_msg + 64
    2   com.apple.Metadata       
    0x00000001090c3041 mdsSetAttributesForMail + 228
    3   com.apple.Metadata       
    0x00000001090c2f00 _MDSetMailMessageAttributesAtTime + 3986
    4   com.apple.Foundation     
    0x0000000104ccb0b5 -[NSBlockOperation main] + 75
    5   com.apple.Foundation     
    0x0000000104caa8a1 -[__NSOperationInternal _start:] + 631
    6   com.apple.Foundation     
    0x0000000104caa54b __NSOQSchedule_f + 64
    7   libdispatch.dylib        
    0x0000000107a462ad _dispatch_client_callout + 8
    8   libdispatch.dylib        
    0x0000000107a4a7ff _dispatch_async_redirect_invoke + 154
    9   libdispatch.dylib        
    0x0000000107a462ad _dispatch_client_callout + 8
    10  libdispatch.dylib        
    0x0000000107a4809e _dispatch_root_queue_drain + 326
    11  libdispatch.dylib        
    0x0000000107a49193 _dispatch_worker_thread2 + 40
    12  libsystem_pthread.dylib  
    0x0000000107d2eef8 _pthread_wqthread + 314
    13  libsystem_pthread.dylib  
    0x0000000107d31fb9 start_wqthread + 13
    Thread 9:: Dispatch queue: NSOperationQueue Serial Queue
    0   libsystem_kernel.dylib   
    0x0000000107c1fb16 syscall_thread_switch + 10
    1   libsystem_platform.dylib 
    0x0000000107d10df6 _OSSpinLockLockSlow + 63
    2   com.apple.Foundation     
    0x0000000104cac03a +[__NSOperationInternal _observeValueForKeyPath:ofObject:changeKind:oldValue:newValue:indexes:context:] + 151
    3   com.apple.Foundation     
    0x0000000104cabe19 NSKeyValueNotifyObserver + 116
    4   com.apple.Foundation     
    0x0000000104cab0f8 NSKeyValueDidChange + 453
    5   com.apple.Foundation     
    0x0000000104ca8cd5 -[NSObject(NSKeyValueObservingPrivate) _changeValueForKey:key:key:usingBlock:] + 717
    6   com.apple.Foundation     
    0x0000000104caa9b3 -[__NSOperationInternal _start:] + 905
    7   com.apple.Foundation     
    0x0000000104caa54b __NSOQSchedule_f + 64
    8   libdispatch.dylib        
    0x0000000107a462ad _dispatch_client_callout + 8
    9   libdispatch.dylib        
    0x0000000107a4868f _dispatch_queue_drain + 451
    10  libdispatch.dylib        
    0x0000000107a499dd _dispatch_queue_invoke + 110
    11  libdispatch.dylib        
    0x0000000107a47fa3 _dispatch_root_queue_drain + 75
    12  libdispatch.dylib        
    0x0000000107a49193 _dispatch_worker_thread2 + 40
    13  libsystem_pthread.dylib  
    0x0000000107d2eef8 _pthread_wqthread + 314
    14  libsystem_pthread.dylib  
    0x0000000107d31fb9 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib   
    0x0000000107c23e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x0000000107d2ef08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x0000000107d31fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000608000202e70  rbx: 0x000060800048f960  rcx: 0x0000608000a73800  rdx: 0x00000001059cc020
      rdi: 0x0000608000202e70  rsi: 0x000000010598fe3a  rbp: 0x00007fff5d6a2df0  rsp: 0x00007fff5d6a2da8
       r8: 0x0000000000000001   r9: 0x00007f8a72700000  r10: 0x0000000000000002  r11: 0x0000000111d2f588
      r12: 0x00000001051e3080  r13: 0x0000000000000018  r14: 0x0000000000000002  r15: 0x0000000103a3e660
      rip: 0x0000000111d2f588  rfl: 0x0000000000010246  cr2: 0x0000000111d2f588
    Logical CPU:
    1
    Error Code: 
    0x00000014
    Trap Number:
    14
    Binary Images:
    0x102557000 -   
    0x102848fff  com.apple.mail (7.2 - 1874) <9F450371-5F9B-3F84-A38F-BB4CAFC5AA23> /Applications/Mail.app/Contents/MacOS/Mail
    0x102949000 -   
    0x10294aff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x102951000 -   
    0x102b97fff  com.apple.AddressBook.framework (8.0 - 1369) <3D1A8D58-6A9E-366C-BDB8-ECC6F279DB24> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x102e04000 -   
    0x102ec8ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x102f52000 -   
    0x102f6dff7  com.apple.CalendarStore (7.0 - 1366) <27072D7F-8281-3958-A66C-3A3F862F3458> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x102f86000 -   
    0x102f86fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x102f8c000 -   
    0x102f96ff7  com.apple.corerecents (1.0 - 1) <0F44FFB3-8C65-3565-9262-CF6FA0AE0C8A> /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents
    0x102faa000 -   
    0x10308efff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x103150000 -   
    0x10315aff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x103169000 -   
    0x10319effb  com.apple.datadetectors (5.0 - 246.0) <1C4C33FE-F364-3DBA-A1BC-4A53E594CFD3> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x1031c6000 -   
    0x1031cbff7  com.apple.EmailAddressing (7.2 - 1874) <F889E9E5-A143-38F1-91E3-61CF2344A917> /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd ressing
    0x1031d5000 -   
    0x103228ff7  com.apple.ical.EventKit (2.0 - 154) <34C0DAD6-763D-3760-93BA-54C5DC7D81DA> /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit
    0x10327d000 -   
    0x1032c5ff7  com.apple.ExchangeWebServices (4.0 - 193) <867EDAF0-5863-397E-BA75-855878D68949> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x10335a000 -   
    0x1033b1fff  com.apple.IMAP (7.2 - 1874) <9BEBD1CB-EE18-3728-84D9-092EA0AE112C> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
    0x103402000 -   
    0x103451ff7  com.apple.framework.internetaccounts (2.1 - 210) <D7175985-03A5-315B-B788-FBDC0019B0EA> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x10349f000 -   
    0x103509ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x103542000 -   
    0x103758fff  com.apple.Mail.framework (7.2 - 1874) <1E9D6A31-FF20-3102-8EB9-3FCF1E13D3EC> /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail
    0x1038ab000 -   
    0x103954ff7  com.apple.MailCore (7.2 - 1874) <68F605E3-F062-345C-B86F-1285B7A1F6AB> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
    0x1039da000 -   
    0x1039e3ff7  com.apple.MailService (7.2 - 1874) <87141582-08F3-36E8-B4A7-D377D1177178> /System/Library/PrivateFrameworks/MailService.framework/Versions/A/MailService
    0x1039f2000 -   
    0x103a30fff  com.apple.MailUI (7.2 - 1874) <CDEBA548-F861-3D53-AC21-1EF046FE0160> /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI
    0x103a63000 -   
    0x103aa3fff  com.apple.PassKit (1.0 - 1) <CE4A0FC6-6E65-38AC-BC8E-74821D713B43> /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit
    0x103acf000 -   
    0x103ad1fff  apop.so (170.1) <97DD24EE-D5F4-34EB-B521-D7BA883D2606> /usr/lib/sasl2/apop.so
    0x103ad5000 -   
    0x103b16fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x10436c000 -   
    0x1044adfff  com.apple.QTKit (7.7.3 - 2826.17) <ADA1EF77-57D2-3E7E-8526-8F0B732C1218> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x1045c4000 -   
    0x1045c4fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x1045cc000 -   
    0x104825ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x104972000 -   
    0x1049a0ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x1049ce000 -   
    0x1049ceff7  com.apple.frameworks.SleepServices (1.1 - 1.1) <4D9C44FF-5403-3372-A90E-CBF2A34D7CE7> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
    0x1049d6000 -   
    0x104a28ff7  com.apple.Suggestions (3.0 - 137.1) <B7E5B685-C6A4-35DB-BA0A-8DBA2BF4ADF6> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x104a72000 -   
    0x104ba8ff6  com.apple.WebKit (9537 - 9537.74.9) <CA0C0387-8A66-34D4-8B1C-F5CDDBDA76BB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x104c9d000 -   
    0x104c9ffff  libanonymous.2.so (170) <D1297C21-A57B-311E-9006-C3FB8689849A> /usr/lib/sasl2/libanonymous.2.so
    0x104ca3000 -   
    0x104fa1fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x1051de000 -   
    0x10538bf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x1053ad000 -   
    0x1053aeff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
    0x1053b5000 -   
    0x1053b7fff  login.so (170) <7D801D4E-A1A4-32FC-BF2E-9F25DB902523> /usr/lib/sasl2/login.so
    0x1053bb000 -   
    0x1054c1ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x105529000 -   
    0x10552bfff  libcrammd5.2.so (170) <940A42FC-C634-354E-AD74-691CD90A1427> /usr/lib/sasl2/libcrammd5.2.so
    0x105530000 -   
    0x105530fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x105533000 -   
    0x105535fff  libplain.2.so (170) <E9C3B22A-5958-3869-B778-55948D1EC2B7> /usr/lib/sasl2/libplain.2.so
    0x10553a000 -   
    0x10553afff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x105542000 -   
    0x1056deff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x1057b6000 -   
    0x10599bfff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x105b0f000 -   
    0x105bd1ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x105c3f000 -   
    0x105c40fff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1369) <FC0AC7FD-5351-3F6B-9D24-DD3BAA52C5ED> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x105c45000 -   
    0x106564af3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x106695000 -   
    0x10720bfff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x107997000 -   
    0x10799bff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x1079a2000 -   
    0x1079acfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x1079bf000 -   
    0x1079c6fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x1079d2000 -   
    0x1079d9ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x1079e1000 -   
    0x107a2ffff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x107a45000 -   
    0x107a5ffff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x107a7f000 -   
    0x107a82ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x107a8e000 -   
    0x107a8eff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x107a94000 -   
    0x107a9bff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x107aa5000 -   
    0x107aaafff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x107ab2000 -   
    0x107ab4ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x107aba000 -   
    0x107abcfff  pwauxprop.so (400.1) <B95FA3F5-0EE9-335E-BBC7-FDEDEB7F18F0> /usr/lib/sasl2/pwauxprop.so
    0x107ac1000 -   
    0x107ac2ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x107ace000 -   
    0x107adfff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x107ae9000 -   
    0x107aebfff  shadow_auxprop.so (170.1) <E02127CB-F9C0-3E3B-ABBB-473EC0CB6DE7> /usr/lib/sasl2/shadow_auxprop.so
    0x107af0000 -   
    0x107af1ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x107af8000 -   
    0x107b81ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x107bad000 -   
    0x107baffff  smb_nt.so (170.1) <B508FD03-CE31-3B93-91D7-440BEDAD9581> /usr/lib/sasl2/smb_nt.so
    0x107bb4000 -   
    0x107bb6ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
    0x107bbe000 -   
    0x107bbeff9 +cl_kernels (???) <64DEAEF3-A33D-4E7C-B8D4-22ABD7C951D2> cl_kernels
    0x107bc0000 -   
    0x107bc8fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x107bcf000 -   
    0x107bf6ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x107c0e000 -   
    0x107c2aff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x107c53000 -   
    0x107c82fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x107c8e000 -   
    0x107ca9ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x107cb3000 -   
    0x107cb4ffa +cl_kernels (???) <45CBB651-A283-4B4F-A01F-2AAA69594786> cl_kernels
    0x107cb7000 -   
    0x107cdeff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x107cfc000 -   
    0x107d05ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x107d0e000 -   
    0x107d14ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x107d27000 -   
    0x107d27ffd +cl_kernels (???) <924C7075-A481-4622-99AA-8915460ECD35> cl_kernels
    0x107d2c000 -   
    0x107d33ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x107d3f000 -   
    0x107d3ffff +cl_kernels (???) <B1E25235-4C48-4879-8148-FB8C802FE61C> cl_kernels
    0x107d42000 -   
    0x107d43ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
    0x107d4c000 -   
    0x107d50ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
    0x107d5b000 -   
    0x107d5cfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x107d62000 -   
    0x107d67ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x107d74000 -   
    0x107d98fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x107db9000 -   
    0x107dfbff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x107e16000 -   
    0x107e3fff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x107e4d000 -   
    0x107e9ffff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x107efb000 -   
    0x107efdfff  smb_ntlmv2.so (170.1) <938D40AF-BEB3-3F55-B409-C84E3C2886FD> /usr/lib/sasl2/smb_ntlmv2.so
    0x107f02000 -   
    0x107f66fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x107fa7000 -   
    0x107fbbfff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x107fd5000 -   
    0x107fd6fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x107fdf000 -   
    0x107fe5fff  com.apple.AddressBook.ContactsFoundation (8.0 - 1369) <A5D1D494-2F84-3A97-A229-04DB308D4481> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0x107ff5000 -   
    0x107ff8fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x108001000 -   
    0x10800cff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x10801d000 -   
    0x108080ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x1080bc000 -   
    0x108304ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x108431000 -   
    0x108431ffe +cl_kernels (???) <5D4957E2-2375-4214-BA6E-AF17E3557701> cl_kernels
    0x108433000 -   
    0x10843afff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x108447000 -   
    0x1085ffff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
    0x1086aa000 -   
    0x1086b1ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x1086b9000 -   
    0x1086c7fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x1086d2000 -   
    0x1086d2ff7 +cl_kernels (???) <C5E1E723-795B-4279-9F73-E9740844EA9F> cl_kernels
    0x1086d4000 -   
    0x108709ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x10871a000 -   
    0x108726ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x10873b000 -   
    0x10873bff7 +cl_kernels (???) <58AA929A-770D-4187-B677-8907935659C3> cl_kernels
    0x10873d000 -   
    0x1087b0fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x1087f2000 -   
    0x108962ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x108a69000 -   
    0x108a6aff2 +cl_kernels (???) <DAB1CAD6-A622-46A9-9B2D-341738DDF344> cl_kernels
    0x108a6c000 -   
    0x108b53ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x108b8e000 -   
    0x108b9efff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x108bab000 -   
    0x108bbcff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x108bc2000 -   
    0x108bc2ffb +cl_kernels (???) <D4D60297-8CB7-46D6-89AE-228BF0FB3350> cl_kernels
    0x108bc6000 -   
    0x108bd3ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x108be0000 -   
    0x108ccafff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x108ce6000 -   
    0x108ceafff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x108cf3000 -   
    0x108cf3ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x108cfd000 -   
    0x108d0aff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x108d10000 -   
    0x108d11fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x108d19000 -   
    0x108d34ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x108d40000 -   
    0x10902afff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x1090ac000 -   
    0x10913cfff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x1091a3000 -   
    0x10921afff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x1092be000 -   
    0x10932bfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x109371000 -   
    0x1093ccffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x109402000 -   
    0x1094cbfff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x109542000 -   
    0x10956bfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x10958f000 -   
    0x109594fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x1095a2000 -   
    0x1095adfff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
    0x1095b9000 -   
    0x1095c4ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x1095d2000 -   
    0x1095e9ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Dire

  • Paralysing Mini-freezes, beachballs and UI updates in Mavericks

    Hi -- I may be having several different issues, but hopefully, they are related. I apologize in advance for the long post including the EtreCheck Results, but hopefully there is someone who can help with the issues that I am having.
    Problem Description:
    - Sluggish machine. 
    - Spinning beachball and mini-freezes not limited to any specific application. 
    - 3-15 second freezes, windows don't update. 
    - User "gets ahead" of the system. - Productivity eliminated while you wait for the system to catch up.-
    - Spotlight reindexes frequently.
    - System "forgets" finder windows and repopulates taking additional time.
    - SysLog is full of the following messages from WindowServer:
    1/5/14 3:50:04.709 PM WindowServer[124]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/5/14 3:50:07.275 PM WindowServer[124]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 3.57 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/5/14 3:51:26.893 PM WindowServer[124]: [cps/setfront] Failed setting the front application to Finder, psn 0x0-0x1b01b, securitySessionID=0x186a5, err=-13066
    1/5/14 3:57:41.144 PM WindowServer[124]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    1/5/14 3:57:42.114 PM WindowServer[124]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.97 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/5/14 3:58:06.014 PM WindowServer[124]: disable_update_timeout: UI updates were forcibly disabled by application "Terminal" for over 1.00 seconds. Server has re-enabled them.
    1/5/14 3:58:17.716 PM WindowServer[124]: common_reenable_update: UI updates were finally reenabled by application "Terminal" after 12.70 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/5/14 4:00:35.346 PM WindowServer[124]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    - SysLog is full of the following messages from icbaccountsd:
    1/5/14 4:12:17.889 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - 84FB9761-30D5-44FA-8597-16716995D5F5
    1/5/14 4:12:17.889 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.mail - C35BCF54-53FB-4BD3-A209-46A3566B528A
    1/5/14 4:12:17.889 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - EC263A99-0BB8-4EA9-8B83-FD6ACE977E14
    1/5/14 4:12:17.890 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - 0998C3CA-196F-405C-AD0E-65EB1DB438A5
    1/5/14 4:12:17.890 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.aol - 41B27784-E0DF-4F6F-A5A6-88A9C87C581E
    1/5/14 4:12:17.906 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.mail - 562E079B-4E89-436A-B236-89C4D0744576
    1/5/14 4:12:17.907 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.yahoo - BEC75A40-38E4-4B9B-BE75-EDFF4E8516AE
    1/5/14 4:12:17.907 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - 277E2919-5BEC-4FBD-BECA-581873706A9D
    1/5/14 4:12:17.907 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - B27A5981-65E6-4C7E-9251-458A259F205F
    1/5/14 4:12:17.907 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.aol - 5B2D17E7-AAAA-4828-8FF2-49340424112D
    1/5/14 4:12:17.910 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - 75723480-ED67-4A3F-ACF2-56EE57D9EEBF
    1/5/14 4:12:17.911 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.ichat - 710BA5E2-5272-47AF-872D-0CC61DF64378
    1/5/14 4:12:17.911 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - 591A79E1-DD7B-4F08-B370-A99FF8B9738B
    1/5/14 4:12:17.911 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.google - C4C37990-26B6-4DE0-8412-3F0FF432C2E1
    1/5/14 4:12:17.911 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.aol - B9C4BCC2-6F91-44BC-9264-9C63A4E86E81
    1/5/14 4:12:17.911 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.aol - B5A3E9A0-8C79-4971-B5D9-7E700578C80B
    1/5/14 4:12:17.911 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.exchange - 5AC5BC1E-33B4-401C-B2A8-317438B7EB26
    1/5/14 4:12:17.911 PM icbaccountsd[1219]: -[ICBLocalDictionary discoverLocalIAAccounts]: Unknown high level account: com.apple.account.mail - 0F281245-A788-4784-818C-B92A3FCED59A
    1/5/14 4:12:17.935 PM icbaccountsd[1219]: -[ICBLocalDictionary writeLocalMapping:]: Status: Writing out local mapping to disk
    1/5/14 4:12:17.935 PM icbaccountsd[1219]: -[ICBLocalDictionary writeLocalMapping:]: Status: Ending writing out local mapping to disk
    1/5/14 4:12:17.935 PM icbaccountsd[1219]: -[ICBRemoteDictionary writeDevices]: Status: Writing out of devices
    1/5/14 4:12:17.936 PM icbaccountsd[1219]: -[ICBRemoteDictionary writeDevices]: Status: Ending writing out of device
    - SysLog is full of messages from Google Chrome Helper:
    1/5/14 4:12:29.886 PM Google Chrome Helper[1220]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    1/5/14 4:13:29.528 PM Google Chrome Helper[1238]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    1/5/14 4:13:30.631 PM Google Chrome Helper[1238]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    1/5/14 4:13:30.631 PM Google Chrome Helper[1238]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    Additional potential factors:
    - User folder has migrated through all versions of OSX, including OS X Beta.
    - Typically when I upgrade, I migrate Apps and user folder.
    Solutions tried:
    - Cleaning old kext files
    - Clean installation of OS
    - Removal of problematic fonts
    - Remove/Install Chrome
    - Clear out System and User Daemons
    - Clear out System and User Agents
    and the problem persists...
    So, I'm at my wit's end. Thanks for the assistance.
    Spencer
    ==================
    EtreCheck:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2010)
              MacBook Pro - model: MacBookPro6,2
              1 2.66 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics - VRAM: 288 MB
              NVIDIA GeForce GT 330M - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 2:50:41
    Disk Information:
              Hitachi HTS545050B9SA02 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (88.95 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Internal Memory Card Reader
              ЉК FreeAgent GoFlex 1 TB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        FreeAgent Blue 1TB Drive (disk1s2) /Volumes/FreeAgent Blue 1TB Drive: 999.86 GB (77.83 GB free)
              Apple Inc. iPhone
              Apple Computer, Inc. IR Receiver
              Apple Inc. Built-in iSight
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
              [failed] com.apple.AOSNotificationOSX.plist
              [failed] com.apple.softwareupdated.plist
              [failed] com.apple.wdhelper.plist
    Problem System Launch Agents:
              [failed] com.apple.helpd.plist
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.versioncueCS4.plist
              [loaded] com.google.keystone.daemon.plist
              [loaded] com.microsoft.office.licensing.helper.plist
    Launch Agents:
              [loaded] com.adobe.CS4ServiceManager.plist
              [loaded] com.google.keystone.agent.plist
    User Launch Agents:
              [loaded] com.microsoft.LaunchAgent.SyncServicesAgent.plist
    User Login Items:
              Microsoft Database Daemon
              Google Drive
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins::
              o1dbrowserplugin: Version: 4.9.1.16010
              Default Browser: Version: 537 - SDK 10.9
              OfficeLiveBrowserPlugin: Version: 12.3.1
              RealPlayer Plugin: Version: (null)
              Silverlight: Version: 5.1.20913.0 - SDK 10.6
              FlashPlayer-10.6: Version: 11.9.900.170 - SDK 10.6
              Flash Player: Version: 11.9.900.170 - SDK 10.6
              QuickTime Plugin: Version: 7.7.3
              googletalkbrowserplugin: Version: 4.9.1.16010
              SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
              JavaAppletPlugin: Version: Java 7 Update 45
    User Internet Plug-ins::
              WebEx64: Version: 1.0 - SDK 10.6
              Picasa: Version: 1.0
              Google Earth Web Plug-in: Version: 7.1
    Bad Fonts:
              None
    Old applications:
              Adobe AIR Application Installer:          Version: 3.3 - SDK 10.5
                        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
              Adobe AIR Application Installer:          Version: 3.3 - SDK 10.5
                        /Applications/Utilities/Adobe AIR Application Installer.app
              Adobe AIR Uninstaller:          Version: 3.3 - SDK 10.5
                        /Applications/Utilities/Adobe AIR Uninstaller.app
              Adobe AIR Updater:          Version: 3.3 - SDK 10.5
                        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Adobe AIR Updater.app
              Cisco WebEx Meeting Center:          Version: 1303.07.2810.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1324/Meeting Center.app
              Cisco WebEx Meetings:          Version: 1304.23.2811.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/12_1324/Meeting Center.app
              Keynote:          Version: 5.3 - SDK 10.5
                        /Applications/iWork '09/Keynote.app
              Meeting Center:          Version: 12.27.23.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1124/Meeting Center.app
              Microsoft Alerts Daemon:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Alerts Daemon.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              Microsoft Chart Converter:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Chart Converter.app
              Microsoft Clip Gallery:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Clip Gallery.app
              Microsoft Database Daemon:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Daemon.app
              Microsoft Database Utility:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Database Utility.app
              Microsoft Document Connection:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Document Connection.app
              Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
              Microsoft Excel:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Excel.app
              Microsoft Graph:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Graph.app
              Microsoft Language Register:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              Microsoft Office Reminders:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Office Reminders.app
              Microsoft Outlook:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Outlook.app
              Microsoft PowerPoint:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft PowerPoint.app
              Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4
                        /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
              Microsoft Upload Center:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Microsoft Upload Center.app
              Microsoft Word:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Microsoft Word.app
              My Day:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/My Day.app
              NoteBook:          Version: 3.1.2 - SDK 10.5
                        /Applications/NoteBook.app
              NoteBook 2:          Version: 3.0.10 - SDK 10.5
                        /Users/spencerwright/Downloads/NoteBook 2.app
              NoteBook 3:          Version: 3.1 - SDK 10.5
                        /Users/spencerwright/Downloads/NoteBook 3.app
              NoteBook 5:          Version: 3.1.2 - SDK 10.5
                        /Users/spencerwright/Downloads/NoteBook 5.app
              NoteBookHelper:          Version: 5.6 - SDK 10.5
                        /Users/spencerwright/Library/Services/NoteBookHelper.service
              Numbers:          Version: 2.3 - SDK 10.5
                        /Applications/iWork '09/Numbers.app
              OmniFocus:          Version: 1.10.1 - SDK 10.4
                        /Applications/OmniFocus.app
              Open XML for Excel:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Open XML for Excel.app
              Pages:          Version: 4.3 - SDK 10.5
                        /Applications/iWork '09/Pages.app
              Picasa:          Version: 3.9.16 - SDK 10.4
                        /Applications/Picasa.app
              SLLauncher:          Version: 1.0 - SDK 10.5
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              SketchUp:          Version: 8.0 - SDK 10.5
                        /Applications/Google SketchUp 8/SketchUp.app
              Solver:          Version: 1.0 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              SyncServicesAgent:          Version: 14.3.9 - SDK 10.5
                        /Applications/Microsoft Office 2011/Office/SyncServicesAgent.app
              Template:          Version: 3.3 - SDK 10.5
                        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
              TomTomHOMERunner:          Version: 2.9.5.1974 - SDK 10.4
                        /Users/spencerwright/Library/Application Support/TomTom HOME/TomTomHOMERunner.app
              TurboTax Home Business 2011:          Version: 2011.r15.011 - SDK 10.4
                        /Applications/TurboTax Home Business 2011.app
              Twitterrific:          Version: 4.1 - SDK 10.0
                        /Applications/Twitterrific.app
              asannotation2:          Version: 10.21.23.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1124/asannotation2.app
              asannotation2:          Version: 1206.25.2804.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1324/asannotation2.app
              asannotation2:          Version: 1206.25.2804.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/12_1324/asannotation2.app
              atmsupload:          Version: 1209.12.2806.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1324/atmsupload.app
              atmsupload:          Version: 1209.12.2806.0 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/12_1324/atmsupload.app
              convertpdf:          Version: 1.2 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1124/convertpdf/convertpdf.app
              convertpdf:          Version: 1.2 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1124/convertpdf.app
              convertpdf:          Version: 1.2 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/1324/convertpdf.app
              convertpdf:          Version: 1.2 - SDK 10.5
                        /Users/spencerwright/Library/Application Support/WebEx Folder/12_1324/convertpdf.app
              eBay:          Version: 1.1.0 - SDK 10.0
                        /Applications/eBay.app
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 464.96 GB Disk used: 382.12 GB
              Destinations:
                        FreeAgent Blue 1TB Drive [Local] (Last used)
                        Total size: 931.19 GB
                        Total number of backups: 56
                        Oldest backup: 2012-10-16 10:12:35 +0000
                        Last backup: 2014-01-05 02:08:16 +0000
                        Size of backup disk: Too small
                                  Backup size 931.19 GB < (Disk used 382.12 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  99%          icbaccountsd
                  99%          AddressBookSourceSync
                   5%          WindowServer
                   4%          Quicken 2007
                   4%          Google Chrome
    Top Processes by Memory:
              3.69 GB          AddressBookSourceSync
              205 MB          Mail
              115 MB          iTunes
              106 MB          Twitter
              106 MB          mds_stores
    Virtual Memory Statistics:
              385 MB          Free RAM
              3.99 GB          Active RAM
              1.02 GB          Inactive RAM
              1.21 GB          Wired RAM
              1.47 GB          Page-ins
              356 MB          Page-outs
    Additional Information:
    =================
    *** NON-RECEIPT LAUNCH AGENTS AND DAEMONS ***
    /Library/LaunchAgents/com.hp.launchurlagent.plist
    /Library/LaunchAgents/com.hp.launchurlagent.plist
    /System/Library/LaunchDaemons/com.apple.backupd-attach.plist
    /System/Library/LaunchDaemons/com.apple.backupd-wake.plist
    /Library/LaunchDaemons/com.google.GoogleML.plist
    /Library/OpenBase/Resources/LaunchDaemons/._openbase.plist
    /Library/OpenBase/Resources/LaunchDaemons/openbase.plist
    /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
    /System/Library/LaunchAgents/com.apple.RemoteDesktop-a.plist
    /System/Library/LaunchAgents/com.apple.RemoteDesktop-b.plist
    /System/Library/LaunchAgents/com.apple.RemoteUI.plist
    /System/Library/LaunchAgents/com.apple.RemoteUI.plist
    /System/Library/LaunchAgents/com.apple.RemoteUI.plist
    /System/Library/LaunchAgents/com.apple.RemoteUI.plist
    /System/Library/LaunchAgents/com.apple.qtkitserver.plist
    /System/Library/LaunchAgents/com.apple.qtkitserver.plist
    /System/Library/LaunchAgents/com.apple.qtkitserver.plist
    /System/Library/LaunchAgents/com.apple.qtkitserver.plist
    /System/Library/LaunchAgents/com.apple.qtkitserver.plist
    /System/Library/LaunchAgents/com.apple.qtkitserver.plist
    /System/Library/LaunchAgents/com.apple.qtkitserver.plist
    /System/Library/LaunchAgents/com.apple.updater.smc.macbookpro.plist
    /System/Library/LaunchDaemons/com.apple.IIDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.IIDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.IIDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.IIDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.IIDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.IIDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.IIDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.RFBEventHelper-a.plist
    /System/Library/LaunchDaemons/com.apple.RFBEventHelper-b.plist
    /System/Library/LaunchDaemons/com.apple.RFBRegisterMDNS_RemoteManagement-a.plist
    /System/Library/LaunchDaemons/com.apple.RFBRegisterMDNS_RemoteManagement-b.plist
    /System/Library/LaunchDaemons/com.apple.RFBRegisterMDNS_RemoteManagement.plist
    /System/Library/LaunchDaemons/com.apple.RemoteDesktop.PrivilegeProxy-a.plist
    /System/Library/LaunchDaemons/com.apple.RemoteDesktop.PrivilegeProxy-b.plist
    /System/Library/LaunchDaemons/com.apple.mio.AVCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.AVCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.AVCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.AVCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.IIDCVideoAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.IIDCVideoAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.IIDCVideoAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.IIDCVideoAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.VDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.VDCAssistant.plist
    /System/Library/LaunchDaemons/com.apple.mio.VDCAssistant.plist
    /Library/LaunchAgents/com.google.keystone.agent.plist
    /Library/LaunchDaemons/com.google.keystone.daemon.plist
    /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
    /System/Library/LaunchAgents/com.apple.afpstat.plist.old
    *** USER LAUNCH AGENTS ***
    com.microsoft.LaunchAgent.SyncServicesAgent.plist
    *** CRON INFO ***
    *** STARTUP ITEMS ***
    *** KERNEL EXTENSIONS ***
    *** LOGIN ITEMS ***
    "Microsoft Database Daemon"
    "Google Drive"
    Message was edited by: Spence

    I have a similar problem.  Sluggish machine, finder can take up to 15 seconds to populate a new window, etc. 
    Console filled with this kind of stuff:
    1/8/14 9:52:08.543 AM Finder[152]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, " ��z".
    1/8/14 9:52:08.584 AM Finder[152]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, " ��z".
    1/8/14 9:52:16.230 AM Finder[152]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, " ��z".
    1/8/14 9:52:25.000 AM kernel[0]: Network delay is not specified! Defaulting to 0x384
    1/8/14 9:52:27.574 AM com.apple.IconServicesAgent[176]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.doc k.extra.xpc/
    1/8/14 9:52:27.587 AM com.apple.IconServicesAgent[176]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/ XPCServices/com.apple.internetaccounts.xpc/
    1/8/14 9:52:27.588 AM com.apple.IconServicesAgent[176]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/MailService.framework/Versions/A/XPCSe rvices/com.apple.MailServiceAgent.xpc/
    1/8/14 9:52:27.722 AM com.apple.IconServicesAgent[176]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServic es/com.apple.WebKit.WebContent.xpc/
    1/8/14 9:52:27.754 AM com.apple.IconServicesAgent[176]: Icon filename entry missing from bundle info dictionary for bundle at URL: file:///System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/XPCServi ces/com.apple.ShareKitHelper.xpc/
    1/8/14 9:52:47.777 AM Finder[152]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, " ��z".
    1/8/14 9:52:49.264 AM Finder[152]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, " ��z".
    1/8/14 9:52:50.974 AM Finder[152]: FIXME: IOUnserialize has detected a string that is not valid UTF-8, " ��z".
    ========
    1/8/14 10:42:34.189 AM com.apple.IconServicesAgent[204]: main Failed to composit image for binding VariantBinding [0x483] flags: 0x8 binding: FileInfoBinding [0x39b] - extension: mp3, UTI: public.mp3, fileType: ????.
    1/8/14 10:42:34.190 AM quicklookd[270]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x603] flags: 0x8 binding: FileInfoBinding [0x503] - extension: mp3, UTI: public.mp3, fileType: ???? request size:32 scale: 1
    ========
    1/8/14 4:18:05.713 PM WindowServer[108]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/8/14 4:18:05.831 PM WindowServer[108]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.12 seconds (server forcibly re-enabled them after 1.00 seconds)
    I've tried everything short of formatting the disk and reinstall a clean Mavericks.  Hopefully there will be a solution soon.

  • Mac mini won't start up when LCD TV connected

    Hi,
    I seem to have a problem which at the first glance looks similar to a lot others being discussed here. Just I am not sure if it really is.
    Having received my Mac mini a few days ago I am trying desperately to use an LCD TV as display. Once connected powering on the Mac mini gives me that white screen you all know with the grey Apple symbol and the progress circle. At that point the TV says it’s running in 1080i mode. All looks good. -- Until a few seconds later the screen will turn black and not display anything anymore. (Just as if it would not get a signal.)
    The TV is a quite popular one over here I would think: Philips 32PF9830, HDTV, with DVI and HDMI input ports. 1280 x 720p and 1920 x 1080i are supported video modes which I would like to run.
    TV specs would be here: http://www.p4c.philips.com/files/3/32pf983010/32pf9830_10_psseng.pdf
    TV and Mac are connected via a DVI-D cable. I’m having SSH and VNC access to the Mac.
    Now with VNC I only get a proper desktop screen when the TV is not connected. When the TV is connected all I am getting presented via VNC is that white boot screen and the nice grey Apple logo. So with TV connected it appears the Mac doesn’t really start the window manager.
    Looking at the process list this seems to confirm. Without having the TV connected after powering on the Mac I do see a process running called loginwindow.
    When the TV is connected I don’t see that one, but instead 2 processes called WaitingForLoginWindow. See below for the full process lists.
    All my trials configuring a good screen resolution via VNC before connecting the TV did not give a different result. Whatever I configure to be used as resolution, I am getting the above.
    Funny enough running the Apple Hardware Test from the install disk shows a perfect picture in 1080i mode and also specifies 1920 x 1080i as screen resolution used.
    Would anyone have an idea what’s going wrong here … and how to fix? I would suspect that communication between the TV and the Mac is broken. Would I have any chance to further troubleshoot on that?
    Is there a way to tell the Mac not to do any auto configuration or auto discovery on the DVI port?
    Any other ideas?
    Marc
    Process lists (NFS and SSH servers are enabled intentionally.)
    TV not connected (look for process id 52):
    <pre>
    ps -axw
    PID TT STAT TIME COMMAND
    1 ?? 0:00.08 /sbin/launchd -v
    23 ?? Ss 0:00.00 /sbin/dynamic_pager -F /private/var/vm/swapfile
    27 ?? Ss 0:01.41 kextd
    32 ?? Ss 0:00.02 /usr/sbin/KernelEventAgent
    33 ?? Ss 0:00.38 /usr/sbin/mDNSResponder -launchdaemon
    34 ?? Ss 0:00.20 /usr/sbin/netinfod -s local
    35 ?? Ss 0:00.68 /usr/sbin/syslogd
    37 ?? Ss 0:01.31 /usr/sbin/configd
    38 ?? Ss 0:00.06 /usr/sbin/coreaudiod
    39 ?? Ss 0:00.06 /usr/sbin/diskarbitrationd
    40 ?? Ss 0:00.01 /usr/sbin/memberd -x
    41 ?? Ss 0:00.11 /usr/sbin/securityd
    42 ?? Ss 0:00.11 /usr/sbin/notifyd
    45 ?? Ss 0:00.29 /usr/sbin/DirectoryService
    47 ?? Ss 0:00.01 /usr/sbin/distnoted
    49 ?? Ss 0:00.94 /usr/sbin/update
    52 ?? Ss 0:00.19 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console
    57 ?? Ss 0:00.13 /System/Library/CoreServices/coreservicesd
    59 ?? Ss 0:00.73 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/Wind
    60 ?? S 0:00.34 /usr/sbin/blued
    64 ?? Ss 0:00.06 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
    66 ?? Ss 0:00.11 /System/Library/CoreServices/mcxd.app/Contents/MacOS/mcxd -s
    69 ?? S 0:00.02 /System/Library/CoreServices/SecurityAgent.app/Contents/Resources/authorization host
    70 ?? S 0:00.90 /System/Library/CoreServices/SecurityAgent.app/Contents/MacOS/SecurityAgent
    76 ?? Ss 0:00.00 /usr/libexec/crashreporterd
    114 ?? Us 0:00.30 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mds
    132 ?? Ss 0:00.10 ntpd -f /var/run/ntp.drift -p /var/run/ntpd.pid
    146 ?? Ss 0:00.00 nfsiod -n 4
    154 ?? Ss 0:00.00 rpc.statd
    156 ?? Ss 0:00.01 /usr/sbin/portmap
    157 ?? Ss 0:00.01 rpc.lockd
    160 ?? S 0:00.00 rpc.lockd
    173 ?? Ss 0:00.00 mountd
    176 ?? Ss 0:00.00 nfsd-master
    177 ?? S 0:00.00 nfsd-server
    179 ?? S 0:00.00 nfsd-server
    180 ?? S 0:00.00 nfsd-server
    181 ?? S 0:00.00 nfsd-server
    182 ?? S 0:00.00 nfsd-server
    183 ?? S 0:00.00 nfsd-server
    184 ?? Ss 0:00.02 /usr/sbin/automount -f -m /Network -nsl -mnt /private/var/automount
    188 ?? Ss 0:00.01 /usr/sbin/automount -f -m /automount/Servers -fstab -mnt /private/Network/Servers -m /automount/static -s
    193 ?? SNs 0:00.17 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdimpo
    234 ?? S 0:00.19 /usr/sbin/sshd -i
    238 ?? S 0:00.11 /usr/sbin/sshd -i
    277 ?? SNs 0:00.17 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdimpo
    282 ?? Ss 0:00.01 /usr/sbin/lookupd
    239 p0 Ss 0:00.05 -bash
    285 p0 R+ 0:00.00 ps -axw
    </pre>
    TV connected (look for PIDs 53 and 54 at end of the list):
    <pre>
    PID TT STAT TIME COMMAND
    1 ?? 0:00.05 /sbin/launchd
    23 ?? Ss 0:00.00 /sbin/dynamic_pager -F /private/var/vm/swapfile
    27 ?? Ss 0:01.35 kextd
    32 ?? Ss 0:00.02 /usr/sbin/KernelEventAgent
    33 ?? Ss 0:00.30 /usr/sbin/mDNSResponder -launchdaemon
    34 ?? Ss 0:00.13 /usr/sbin/netinfod -s local
    35 ?? Ss 0:00.71 /usr/sbin/syslogd
    37 ?? Ss 0:00.49 /usr/sbin/configd
    38 ?? Ss 0:00.07 /usr/sbin/coreaudiod
    39 ?? Ss 0:00.06 /usr/sbin/diskarbitrationd
    40 ?? Ss 0:00.01 /usr/sbin/memberd -x
    41 ?? Ss 0:00.14 /usr/sbin/securityd
    42 ?? Ss 0:00.07 /usr/sbin/notifyd
    44 ?? Ss 0:00.17 /usr/sbin/DirectoryService
    45 ?? Ss 0:00.01 /usr/sbin/distnoted
    50 ?? Ss 0:08.36 /usr/sbin/update
    59 ?? Ss 4:43.49 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/Wind
    60 ?? S 0:00.33 /usr/sbin/blued
    61 ?? Ss 0:00.14 /System/Library/CoreServices/coreservicesd
    65 ?? Ss 0:00.07 /usr/sbin/lookupd
    79 ?? Ss 0:00.88 ntpd -f /var/run/ntp.drift -p /var/run/ntpd.pid
    93 ?? Ss 0:00.00 nfsiod -n 4
    101 ?? Ss 0:00.00 rpc.statd
    102 ?? Ss 0:00.01 /usr/sbin/portmap
    104 ?? Ss 0:00.01 rpc.lockd
    109 ?? Ss 0:00.06 slpd -f /etc/slpsa.conf
    110 ?? S 0:00.00 rpc.lockd
    115 ?? Ss 0:00.00 /usr/libexec/crashreporterd
    135 ?? Ss 0:00.05 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer
    158 ?? Ss 0:00.12 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mds
    164 ?? Ss 0:00.00 mountd
    167 ?? Ss 0:00.00 nfsd-master
    168 ?? S 0:00.00 nfsd-server
    169 ?? S 0:00.00 nfsd-server
    170 ?? S 0:00.00 nfsd-server
    172 ?? S 0:00.00 nfsd-server
    173 ?? S 0:00.00 nfsd-server
    174 ?? S 0:00.00 nfsd-server
    175 ?? Ss 0:00.02 /usr/sbin/automount -f -m /Network -nsl -mnt /private/var/automount
    179 ?? Ss 0:00.01 /usr/sbin/automount -f -m /automount/Servers -fstab -mnt /private/Network/Servers -m /automount/static -s
    196 ?? S 0:00.20 /usr/sbin/sshd -i
    200 ?? S 0:00.06 /usr/sbin/sshd -i
    205 ?? SNs 0:00.14 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdimpo
    201 p0 Ss 0:00.03 -bash
    209 p0 R+ 0:00.00 ps -axw
    2 ?? Ss+ 0:00.03 sh /etc/rc
    53 ?? S+ 0:00.02 /usr/libexec/WaitingForLoginWindow
    54 ?? S+ 0:00.04 /usr/libexec/WaitingForLoginWindow
    </pre>
    Mac Mini   Mac OS X (10.4.8)  

    A PRRAM reset did the trick.
    http://docs.info.apple.com/article.html?artnum=2238
    This Mac mini is a refurbished one, so probably had some old settings from being connected to something different before.
    The TV now is recognized properly as 'Philips FTV'.
    Marc

  • Mac mini slow boot

    Hello, im new to macs having always had windows before.
    I bought my mac mini about a month ago and its been great, but the past few times ive booted it up its been slow to get to the log in screen and then once there my wireless trackpad and keyboard wont work.
    If i turn them off and on it acknoledges that they have been turned off and on, but cant move the cursor or type.
    If i press a volume buton the keyboard after about 2 minutes the symbol will come up on the screen, where its finally decided to accept what the keyboard wants to do and it all works fine from then on.
    Any ideas whats causing this?
    As i say, im new to all this mac business so be gentle with me.

    Ive not instaled much, just iexplorer, hands off, final cut pro, transmission, vlc, youtube to mp3, adapter.
    All i really use this for is browing the net, updating my ipod and iphone, storing photos, videos.
    When i turned it on just now it done its big stall, so i opened console up and copied it from its last shut down.
    I dont know what im looking at really, so im hoping one of you guys could teach me.
    25/12/2013 13:50:55.377 shutdown[326]: halt by yeahmick:
    25/12/2013 13:50:55.377 shutdown[326]: SHUTDOWN_TIME: 1387979455 377068
    25/12/2013 15:59:13.000 bootlog[0]: BOOT_TIME 1387987153 0
    25/12/2013 15:59:29.000 kernel[0]: PMAP: PCID enabled
    25/12/2013 15:59:29.000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    25/12/2013 15:59:29.000 kernel[0]: Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    25/12/2013 15:59:29.000 kernel[0]: vm_page_bootstrap: 843234 free pages and 197150 wired pages
    25/12/2013 15:59:29.000 kernel[0]: kext submap [0xffffff7f80742000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000742000]
    25/12/2013 15:59:29.000 kernel[0]: zone leak detection enabled
    25/12/2013 15:59:29.000 kernel[0]: standard timeslicing quantum is 10000 us
    25/12/2013 15:59:29.000 kernel[0]: standard background quantum is 2500 us
    25/12/2013 15:59:29.000 kernel[0]: mig_table_max_displ = 74
    25/12/2013 15:59:29.000 kernel[0]: TSC Deadline Timer supported and enabled
    25/12/2013 15:59:29.000 kernel[0]: corecrypto kext started!
    25/12/2013 15:59:29.000 kernel[0]: Running kernel space in FIPS MODE
    25/12/2013 15:59:29.000 kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    25/12/2013 15:59:29.000 kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    25/12/2013 15:59:29.000 kernel[0]: corecrypto.kext FIPS POST passed!
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    25/12/2013 15:59:29.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    25/12/2013 15:59:29.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    25/12/2013 15:59:29.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    25/12/2013 15:59:29.000 kernel[0]: calling mpo_policy_init for Sandbox
    25/12/2013 15:59:29.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    25/12/2013 15:59:29.000 kernel[0]: calling mpo_policy_init for Quarantine
    25/12/2013 15:59:29.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    25/12/2013 15:59:29.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    25/12/2013 15:59:29.000 kernel[0]: The Regents of the University of California. All rights reserved.
    25/12/2013 15:59:29.000 kernel[0]: MAC Framework successfully initialized
    25/12/2013 15:59:29.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    25/12/2013 15:59:29.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    25/12/2013 15:59:14.913 com.apple.launchd[1]: *** launchd[1] has started up. ***
    25/12/2013 15:59:29.000 kernel[0]: ACPI: sleep states S3 S4 S5
    25/12/2013 15:59:29.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    25/12/2013 15:59:29.000 kernel[0]: AppleIntelCPUPowerManagement: (built 13:50:43 Sep 29 2013) initialization complete
    25/12/2013 15:59:29.000 kernel[0]: pci build Sep 29 2013 13:35:16, flags 0x23008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    25/12/2013 15:59:29.000 kernel[0]: [ PCI configuration begin ]
    25/12/2013 15:59:29.000 kernel[0]: console relocated to 0xf80000000
    25/12/2013 15:59:29.000 kernel[0]: [ PCI configuration end, bridges 11, devices 15 ]
    25/12/2013 15:59:29.000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    25/12/2013 15:59:29.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 44fb42fffeb595a6; max speed s800.
    25/12/2013 15:59:29.000 kernel[0]: FWOHCI : enableCycleSync - enabled count going negative?!?
    25/12/2013 15:59:14.913 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    25/12/2013 15:59:29.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    25/12/2013 15:59:29.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    25/12/2013 15:59:29.000 kernel[0]: rooting via boot-uuid from /chosen: 4CF4732B-FEB7-3671-A5F1-41E5A65B1815
    25/12/2013 15:59:22.974 com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    25/12/2013 15:59:29.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    25/12/2013 15:59:29.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    25/12/2013 15:59:29.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    25/12/2013 15:59:29.000 kernel[0]: handsoff: os version is 10.8
    25/12/2013 15:59:29.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    25/12/2013 15:59:29.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    25/12/2013 15:59:29.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    25/12/2013 15:59:29.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD HTS545050A7E362 Media/IOGUIDPartitionScheme/Customer@2
    25/12/2013 15:59:29.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    25/12/2013 15:59:29.000 kernel[0]: BTCOEXIST off
    25/12/2013 15:59:29.000 kernel[0]: BRCM tunables:
    25/12/2013 15:59:29.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    25/12/2013 15:59:29.000 kernel[0]: Kernel is LP64
    25/12/2013 15:59:29.000 kernel[0]: IOThunderboltSwitch<0xffffff802f027c00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    25/12/2013 15:59:29.000 kernel[0]: IOThunderboltSwitch<0xffffff802f027c00>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    25/12/2013 15:59:29.000 kernel[0]: Waiting for DSMOS...
    25/12/2013 15:59:29.000 kernel[0]: macx_swapon SUCCESS
    25/12/2013 15:59:28.038 hidd[47]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    25/12/2013 15:59:29.040 hidd[47]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    25/12/2013 15:59:29.586 appleeventsd[53]: main: Starting up
    25/12/2013 15:59:29.612 com.apple.usbmuxd[28]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    25/12/2013 15:59:30.000 kernel[0]: BCM5701Enet: Ethernet address 68:5b:35:8a:fa:94
    25/12/2013 15:59:30.000 kernel[0]: AirPort_Brcm4331: Ethernet address a8:86:dd:a0:2c:83
    25/12/2013 15:59:30.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    25/12/2013 15:59:30.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    25/12/2013 15:59:30.000 kernel[0]: IOBluetoothUSBDFU::probe
    25/12/2013 15:59:30.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828A FirmwareVersion - 0x0066
    25/12/2013 15:59:30.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- this = 0xffffff802ff91000 ****
    25/12/2013 15:59:30.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- controller = 0xffffff802ff91000
    25/12/2013 15:59:30.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    25/12/2013 15:59:30.000 kernel[0]: Previous Shutdown Cause: 5
    25/12/2013 15:59:30.000 kernel[0]: DSMOS has arrived
    25/12/2013 15:59:30.000 kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    25/12/2013 15:59:31.000 kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00000158
    25/12/2013 15:59:31.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    25/12/2013 15:59:31.938 airportd[72]: _processDLILEvent: en1 attached (down)
    25/12/2013 15:59:32.000 kernel[0]: createVirtIf(): ifRole = 1
    25/12/2013 15:59:32.000 kernel[0]: in func createVirtualInterface ifRole = 1
    25/12/2013 15:59:32.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff802ff6e800
    25/12/2013 15:59:32.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    25/12/2013 15:59:32.000 kernel[0]: Created virtif 0xffffff802ff6e800 p2p0
    25/12/2013 15:59:32.729 com.apple.SecurityServer[15]: Session 100000 created
    25/12/2013 15:59:33.752 coreservicesd[63]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    25/12/2013 15:59:33.755 mds[39]: (Normal) FMW: FMW 0 0
    25/12/2013 15:59:35.000 kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    25/12/2013 15:59:35.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    25/12/2013 15:59:35.345 configd[18]: network changed.
    25/12/2013 15:59:35.345 configd[18]: setting hostname to "Michaels-Mac-mini.local"
    25/12/2013 15:59:36.259 blued[56]: Read the UHE Info
    25/12/2013 15:59:36.259 blued[56]: Read version 2 info.  Number of devices:2
    25/12/2013 15:59:36.259 blued[56]: Class of device:     0x2594
    25/12/2013 15:59:36.259 blued[56]: Device name: 'Apple Wireless Trackpad' length:24
    25/12/2013 15:59:36.259 blued[56]: Finished reading the HID data
    25/12/2013 15:59:36.259 blued[56]: Found a device with PID:0x030e VID:0x05ac
    25/12/2013 15:59:36.260 blued[56]: Class of device:     0x2540
    25/12/2013 15:59:36.260 blued[56]: Device name: 'System Administrator’s Keyboard' length:34
    25/12/2013 15:59:36.260 blued[56]: Finished reading the HID data
    25/12/2013 15:59:36.260 blued[56]: Found a device with PID:0x0256 VID:0x05ac
    25/12/2013 15:59:39.551 stackshot[31]: Timed out waiting for IOKit to finish matching.
    25/12/2013 15:59:39.897 com.apple.SecurityServer[15]: Entering service
    25/12/2013 15:59:41.207 loginwindow[43]: Login Window Application Started
    25/12/2013 15:59:41.285 awacsd[57]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    25/12/2013 15:59:41.293 UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    25/12/2013 15:59:41.308 awacsd[57]: InnerStore CopyAllZones: no info in Dynamic Store
    25/12/2013 15:59:41.315 WindowServer[74]: Server is starting up
    25/12/2013 15:59:41.380 netbiosd[73]: Unable to start NetBIOS name service:
    25/12/2013 15:59:41.530 systemkeychain[76]: done file: /var/run/systemkeychaincheck.done
    25/12/2013 15:59:41.593 digest-service[94]: label: default
    25/12/2013 15:59:41.593 digest-service[94]:           dbname: od:/Local/Default
    25/12/2013 15:59:41.594 digest-service[94]:           mkey_file: /var/db/krb5kdc/m-key
    25/12/2013 15:59:41.594 digest-service[94]:           acl_file: /var/db/krb5kdc/kadmind.acl
    25/12/2013 15:59:41.595 digest-service[94]: digest-request: uid=0
    25/12/2013 15:59:41.617 rpcsvchost[96]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    25/12/2013 15:59:41.621 digest-service[94]: digest-request: init request
    25/12/2013 15:59:41.625 digest-service[94]: digest-request: init return domain: BUILTIN server: MICHAELS-MAC-MINI
    25/12/2013 15:59:42.000 kernel[0]: MacAuthEvent en1   Auth result for: 84:1b:5e:d1:09:da  MAC AUTH succeeded
    25/12/2013 15:59:42.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    25/12/2013 15:59:42.000 kernel[0]: AirPort: Link Up on en1
    25/12/2013 15:59:42.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 15:59:42.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    25/12/2013 15:59:42.000 kernel[0]: AirPort: RSN handshake complete on en1
    25/12/2013 15:59:44.000 kernel[0]: [BNBTrackpadDevice::init][75.19] init is complete
    25/12/2013 15:59:45.000 kernel[0]: [BNBTrackpadDevice::handleStart][75.19] returning 1
    25/12/2013 15:59:45.000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    25/12/2013 15:59:45.410 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    25/12/2013 15:59:45.411 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    25/12/2013 15:59:45.000 kernel[0]: [AppleMultitouchDevice::start] entered
    25/12/2013 15:59:47.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 15:59:47.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 15:59:50.305 mDNSResponder[40]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    25/12/2013 15:59:50.327 configd[18]: network changed: DNS*
    25/12/2013 15:59:50.329 dnslauncher[40]: D2D_IPC: Loaded
    25/12/2013 15:59:50.329 mDNSResponder[40]: D2DInitialize succeeded
    25/12/2013 15:59:50.372 locationd[44]: NOTICE,Location icon should now be in state 0
    25/12/2013 15:59:50.859 airportd[72]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 15:59:50.866 airportd[72]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 15:59:50.874 airportd[72]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 15:59:50.882 airportd[72]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 15:59:53.000 kernel[0]: com_metakine_handsoff_userclient[0xffffff8030aa6400]::closeUserClient(): returning kIOReturnNotOpen.
    25/12/2013 15:59:55.413 apsd[59]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    25/12/2013 15:59:56.310 awacsd[57]: Exiting
    25/12/2013 15:59:58.000 kernel[0]: MacAuthEvent en1   Auth result for: 84:1b:5e:d1:09:da  MAC AUTH succeeded
    25/12/2013 15:59:58.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    25/12/2013 15:59:58.000 kernel[0]: wl0: Roamed or switched channel, reason #4, bssid 84:1b:5e:d1:09:da
    25/12/2013 15:59:58.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 15:59:58.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    25/12/2013 15:59:58.000 kernel[0]: AirPort: RSN handshake complete on en1
    25/12/2013 16:00:00.438 airportd[72]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 16:00:00.000 kernel[0]: [0xffffff802fe0eb00][free]()
    25/12/2013 16:00:00.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 16:00:00.446 configd[18]: network changed: v4(en1+:192.168.0.12) DNS+ Proxy+ SMB
    25/12/2013 16:00:00.458 UserEventAgent[11]: Captive: en1: Not probing 'virginmedia1487092_EXT' (protected network)
    25/12/2013 16:00:00.461 configd[18]: network changed: v4(en1!:192.168.0.12) DNS Proxy SMB
    25/12/2013 16:00:06.000 kernel[0]: MacAuthEvent en1   Auth result for: 84:1b:5e:d1:09:da  MAC AUTH succeeded
    25/12/2013 16:00:06.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    25/12/2013 16:00:06.000 kernel[0]: AirPort: RSN handshake complete on en1
    25/12/2013 16:00:06.000 kernel[0]: wl0: Roamed or switched channel, reason #4, bssid 84:1b:5e:d1:09:da
    25/12/2013 16:00:06.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 16:00:06.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    25/12/2013 16:00:09.087 com.apple.launchd[1]: (com.apple.xprotectupdater[25]) Exited with code: 252
    25/12/2013 16:00:21.958 ntpd[92]: proto: precision = 1.000 usec
    25/12/2013 16:00:30.329 configd[18]: InterfaceNamer: timed out waiting for IOKit to quiesce
    25/12/2013 16:00:30.329 configd[18]: Busy services :
    25/12/2013 16:00:30.329 configd[18]:   Macmini6,1 [1, 76637 ms]
    25/12/2013 16:00:30.329 configd[18]:   Macmini6,1/AppleACPIPlatformExpert [1, 76616 ms]
    25/12/2013 16:00:30.330 configd[18]:   Macmini6,1/AppleACPIPlatformExpert/PCI0@0 [1, 76593 ms]
    25/12/2013 16:00:30.330 configd[18]:   Macmini6,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI [1, 76579 ms]
    25/12/2013 16:00:30.330 configd[18]:   Macmini6,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C [1, 76580 ms]
    25/12/2013 16:00:30.330 configd[18]:   Macmini6,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBridge [1, 76567 ms]
    25/12/2013 16:00:30.330 configd[18]:   Macmini6,1/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPCI2PCIBridge/ SDXC@0,1 [!matched, 1, 76567 ms]
    25/12/2013 16:00:42.584 WindowServer[74]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    25/12/2013 16:00:42.584 WindowServer[74]: IOKitWaitQuiet: (iokit/common) I/O Timeout
    25/12/2013 16:00:42.588 WindowServer[74]: Session 256 retained (2 references)
    25/12/2013 16:00:42.588 WindowServer[74]: Session 256 released (1 references)
    25/12/2013 16:00:42.595 WindowServer[74]: Session 256 retained (2 references)
    25/12/2013 16:00:42.596 WindowServer[74]: init_page_flip: page flip mode is on
    25/12/2013 16:00:42.940 WindowServer[74]: mux_initialize: Couldn't find any matches
    25/12/2013 16:00:42.955 WindowServer[74]: GLCompositor enabled for tile size [256 x 256]
    25/12/2013 16:00:42.955 WindowServer[74]: CGXGLInitMipMap: mip map mode is on
    25/12/2013 16:00:42.985 WindowServer[74]: WSMachineUsesNewStyleMirroring: true
    25/12/2013 16:00:42.985 WindowServer[74]: Display 0x2a70ca42: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 34a9, Model c329, S/N 0, Unit 2, Rotation 0
    UUID 0x000034a90000c329000000002a70ca42
    25/12/2013 16:00:42.985 WindowServer[74]: Display 0x003f003c: GL mask 0x1; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    25/12/2013 16:00:42.985 WindowServer[74]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    25/12/2013 16:00:42.989 WindowServer[74]: Created shield window 0x5 for display 0x2a70ca42
    25/12/2013 16:00:42.989 WindowServer[74]: Created shield window 0x6 for display 0x003f003c
    25/12/2013 16:00:42.990 WindowServer[74]: Created shield window 0x7 for display 0x003f003d
    25/12/2013 16:00:42.991 WindowServer[74]: Display 0x2a70ca42: GL mask 0x4; bounds (0, 0)[1920 x 1080], 17 modes available
    Main, Active, on-line, enabled, boot, Vendor 34a9, Model c329, S/N 0, Unit 2, Rotation 0
    UUID 0x000034a90000c329000000002a70ca42
    25/12/2013 16:00:42.991 WindowServer[74]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    25/12/2013 16:00:42.991 WindowServer[74]: Display 0x003f003d: GL mask 0x2; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    25/12/2013 16:00:42.991 WindowServer[74]: CGXPerformInitialDisplayConfiguration
    25/12/2013 16:00:42.991 WindowServer[74]:   Display 0x2a70ca42: MappedDisplay Unit 2; Vendor 0x34a9 Model 0xc329 S/N 0 Dimensions 27.48 x 15.43; online enabled, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    25/12/2013 16:00:42.991 WindowServer[74]:   Display 0x003f003c: MappedDisplay Unit 0; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    25/12/2013 16:00:42.991 WindowServer[74]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    25/12/2013 16:00:43.062 WindowServer[74]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, accelerator 0x00003243, unit 0, caps QEX|QGL|MIPMAP, vram 1156 MB
    25/12/2013 16:00:43.062 WindowServer[74]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    25/12/2013 16:00:43.065 loginwindow[43]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    25/12/2013 16:00:43.092 WindowServer[74]: Created shield window 0x8 for display 0x2a70ca42
    25/12/2013 16:00:43.092 WindowServer[74]: Display 0x2a70ca42: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    25/12/2013 16:00:43.138 launchctl[115]: com.apple.findmymacmessenger: Already loaded
    25/12/2013 16:00:43.156 com.apple.SecurityServer[15]: Session 100006 created
    25/12/2013 16:00:43.204 loginwindow[43]: Login Window Started Security Agent
    25/12/2013 16:00:43.214 airportd[116]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 16:00:43.283 locationd[125]: NOTICE,Location icon should now be in state 0
    25/12/2013 16:00:43.291 UserEventAgent[118]: cannot find useragent 1102
    25/12/2013 16:00:43.316 SecurityAgent[124]: This is the first run
    25/12/2013 16:00:43.316 SecurityAgent[124]: MacBuddy was run = 0
    25/12/2013 16:00:43.328 WindowServer[74]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x2a70ca42 device: 0x104582110  isBackBuffered: 1 numComp: 3 numDisp: 3
    25/12/2013 16:00:44.990 WindowServer[74]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    25/12/2013 16:00:45.013 WindowServer[74]: Display 0x2a70ca42: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    25/12/2013 16:00:45.026 WindowServer[74]: Display 0x2a70ca42: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    25/12/2013 16:00:53.126 BezelServices 237.2[43]: -[DriverServices sendPreferencesToDevice:resetDefaults:] error: classPrefID (null), classPrefs (null)
    25/12/2013 16:01:14.976 distnoted[137]: # distnote server agent  absolute time: 121.396917828   civil time: Wed Dec 25 16:01:14 2013   pid: 137 uid: 501  root: no
    25/12/2013 16:01:31.066 com.apple.SecurityServer[15]: Session 100002 created
    25/12/2013 16:01:31.109 com.apple.SecurityServer[15]: Session 100003 created
    25/12/2013 16:04:42.958 hidd[47]: Timeout waiting for IOKit to be quiet
    25/12/2013 16:05:20.673 WindowServer[74]: Unable to open IOHIDSystem (e00002bd)
    25/12/2013 16:05:20.000 kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    25/12/2013 16:05:21.012 coreaudiod[154]: Enabled automatic stack shots because audio IO is inactive
    25/12/2013 16:05:43.628 SecurityAgent[124]: User info context values set for yeahmick
    25/12/2013 16:05:44.082 SecurityAgent[124]: Login Window login proceeding
    25/12/2013 16:05:44.449 loginwindow[43]: Login Window - Returned from Security Agent
    25/12/2013 16:05:44.479 loginwindow[43]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    25/12/2013 16:05:44.490 loginwindow[43]: USER_PROCESS: 43 console
    25/12/2013 16:05:44.533 airportd[158]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 16:05:44.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 16:05:44.557 airportd[158]: _doAutoJoin: Already associated to “virginmedia1487092_EXT”. Bailing on auto-join.
    25/12/2013 16:05:44.575 com.apple.launchd.peruser.501[134]: (com.apple.gamed) Ignored this key: UserName
    25/12/2013 16:05:44.575 com.apple.launchd.peruser.501[134]: (com.apple.gamed) Ignored this key: GroupName
    25/12/2013 16:05:44.575 com.apple.launchd.peruser.501[134]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    25/12/2013 16:05:44.580 loginwindow[43]: Connection with distnoted server was invalidated
    25/12/2013 16:05:44.706 WindowServer[74]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    25/12/2013 16:05:44.729 WindowServer[74]: Display 0x2a70ca42: MappedDisplay Unit 2; ColorProfile { 2, "HD 709-A"}; TransferFormula (1.000000, 1.000000, 1.000000)
    25/12/2013 16:05:44.934 com.apple.launchd.peruser.501[134]: (com.apple.afpstat-qfa[189]) Exited with code: 2
    25/12/2013 16:05:45.225 com.apple.launchd.peruser.501[134]: (com.apple.mrt.uiagent[179]) Exited with code: 255
    25/12/2013 16:05:45.290 locationd[196]: NOTICE,Location icon should now be in state 0
    25/12/2013 16:05:45.515 UserEventAgent[160]: cannot find fw daemon port 1102
    25/12/2013 16:05:45.609 NetworkBrowserAgent[213]: Starting NetworkBrowserAgent
    25/12/2013 16:05:47.577 com.apple.time[160]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    25/12/2013 16:05:47.673 Mail[201]: Using V2 Layout
    25/12/2013 16:05:47.677 librariand[214]: MMe quota status changed: under quota
    25/12/2013 16:05:48.979 com.apple.SecurityServer[15]: Session 100009 created
    25/12/2013 16:05:49.000 kernel[0]: MacAuthEvent en1   Auth result for: 84:1b:5e:d1:09:da  MAC AUTH succeeded
    25/12/2013 16:05:49.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    25/12/2013 16:05:50.000 kernel[0]: wl0: Roamed or switched channel, reason #4, bssid 84:1b:5e:d1:09:da
    25/12/2013 16:05:50.000 kernel[0]: en1: BSSID changed to 84:1b:5e:d1:09:da
    25/12/2013 16:05:50.000 kernel[0]: en1::IO80211Interface::postMessage bssid changed
    25/12/2013 16:05:50.000 kernel[0]: AirPort: RSN handshake complete on en1
    25/12/2013 16:09:00.834 coreaudiod[154]: Disabled automatic stack shots because audio IO is active
    25/12/2013 16:09:01.004 coreaudiod[154]: Enabled automatic stack shots because audio IO is inactive

Maybe you are looking for