Numbers and labels

I built a Numbers document which may be useful for some of those wanting to be able to print labels.
I put it on my iDisk:
<http://idisk.mac.com/koenigyvan-Public?view=web>
koenigyvan:Public:ForNumbers:pourétiquettes.numbers.zip
Play with it
Yvan KOENIG (from FRANCE dimanche 16 décembre 2007 19:24:54)

just for those who missed it
Yvan KOENIG (from FRANCE samedi 12 janvier 2008 19:30:3)

Similar Messages

  • Convert addresses in numbers to labels in pages

    How do I convert addresses listed in Numbers columns into a Pages label template?

    Both Numbers and Pages must be the '09 version in order to do Mail Merge. And, you must be referencing a Numbers '09 document from a Pages '09 document.
    If you don't see a Mail Merge option in Pages, you aren't using the '09 version. It's easy to confuse the two.
    Jerry

  • Print Row Numbers and Column Letters

    How do you tell Numbers to print the Row numbers and Column letters? This was very simple in Appleworks (print dialog box had that option). Can't find it in Numbers though.

    Here is a script doing all the job for us.
    Just select one or several cells in a table and run the script.
    It duplicates it, add an header row, an header column, insert the needed labels and fill the other cells with a formula grabbing the contents of the original table.
    --[SCRIPT build a table with headers]
    Enregistrer len tant que Script: build a table with headers.scpt
    déplacer le fichier créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Selectionner une cellule dans la table à dupliquer
    menu Scripts > Numbers > build a table with headers
    Le script duplique la table et crée des en-têtes de lignes et colonnes.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    +++++++
    Save the script as Script: build a table with headers.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select a range of cells in the table to 'duplicate'
    menu Scripts > Numbers > build a table with headers
    The script duplicate the table and inserts columns/rows headers.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2009/09/19
    --=====
    property theApp : "Numbers"
    --=====
    my activateGUIscripting() (* to be sure than GUI scripting will be active *)
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    set new_Table to t_Name & "_#"
    my duplicateTable(s_Name, t_Name, new_Table)
    set delim to my getLocalizedDelimiter()
    (* grab localized function names and add an open parenthesis at end *)
    set IF_loc to my getLocalizedFunctionName("Numbers", "IF") & "("
    set CHAR_loc to my getLocalizedFunctionName("Numbers", "CHAR") & "("
    set INT_loc to my getLocalizedFunctionName("Numbers", "INT") & "("
    set MOD_loc to my getLocalizedFunctionName("Numbers", "MOD") & "("
    set INDIRECT_loc to my getLocalizedFunctionName("Numbers", "INDIRECT") & "("
    set ADDRESS_loc to my getLocalizedFunctionName("Numbers", "ADDRESS") & "("
    (* grab localized function names and add a couple of parenthesis at end *)
    set ROW_loc to my getLocalizedFunctionName("Numbers", "ROW") & "()"
    set COLUMN_loc to my getLocalizedFunctionName("Numbers", "COLUMN") & "()"
    tell application "Numbers" to tell document d_Name to tell sheet s_Name to tell table new_Table
    if column count = 256 then
    if my parleAnglais() then
    error "Oops, already 256 columns !"
    else
    error "Désolé, il y a déjà 256 colonnes !"
    end if
    end if
    if row count = 65536 then
    if my parleAnglais() then
    error "Oops, already 65536 rows !"
    else
    error "Désolé, il y a déjà 65536 lignes !"
    end if
    end if
    try
    add row above row 1
    on error
    if my parleAnglais() then
    error "Oops, already five header row !"
    else
    error "Désolé, il y a déjà cinq rangs d’en tête !"
    end if
    end try
    try
    add column before column 1
    on error
    if my parleAnglais() then
    error "Oops, already five header columns !"
    else
    error "Désolé, il y a déjà cinq rangs d’en tête !"
    end if
    end try
    set nbr to row count
    set nbc to column count
    (* =IF(COLUMN()<28,CHAR(COLUMN()63),CHAR(INT((COLUMN()-2)/26)+64)&CHAR(MOD(COLUMN()-2,26)65)) *)
    set theFormula to "=" & IF_loc & COLUMN_loc & "<28" & delim & CHAR_loc & COLUMN_loc & "+63)" & delim & CHAR_loc & INT_loc & "(" & COLUMN_loc & "-2)/26)+64)&" & CHAR_loc & MOD_loc & COLUMN_loc & "-2" & delim & "26)+65))"
    tell row 1
    repeat with c from 2 to nbc
    set value of cell c to theFormula
    end repeat
    end tell -- row 1
    (* =ROW()-1 *)
    set theFormula to "=" & ROW_loc & "-1"
    tell column 1
    repeat with r from 2 to nbr
    set value of cell r to theFormula
    end repeat
    end tell -- column 1
    (* =INDIRECT(ADDRESS(ROW()-1,COLUMN()-1,,,"Tableau 2")) *)
    set theFormula to "=" & INDIRECT_loc & ADDRESS_loc & ROW_loc & "-1" & delim & COLUMN_loc & "-1" & delim & delim & delim & quote & t_Name & quote & "))"
    repeat with r from 2 to nbr
    repeat with c from 2 to nbc
    set value of cell r of column c to theFormula
    end repeat -- with c
    end repeat -- with r
    end tell -- Numbers
    --=====
    Set the parameter delimiter which must be used in Numbers formulas
    on getLocalizedDelimiter()
    if character 2 of (0.5 as text) is "." then
    return ","
    else
    return ";"
    end if
    end getLocalizedDelimiter
    --=====
    on getLocalizedFunctionName(theApp, x)
    local p2bndl
    set p2bndl to (path to application support as text) & "iWork '09:Frameworks:SFTabular.framework:Versions:A:Resources:"
    return my getLocalizedName(theApp, x, p2bndl)
    end getLocalizedFunctionName
    --=====
    on getLocalizedName(a, x, f)
    tell application a to return localized string x from table "Localizable" in bundle file f
    end getLocalizedName
    --=====
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on isItAsheet(s)
    try
    tell application "Numbers" to tell document 1
    count of tables of sheet s (*
    Post an error if s is not a sheet *)
    end tell
    return true
    on error
    return false
    end try
    end isItAsheet
    --=====
    on activateGUIscripting()
    tell application "System Events"
    if not (UI elements enabled) then set (UI elements enabled) to true (* to be sure than GUI scripting will be active *)
    end tell
    end activateGUIscripting
    --=====
    on duplicateTable(sourceSheet, sourceTable, newName)
    local lesFeuilles, lesTables1, found, listOfRows, cor, i, isSourceSheet, nameI, j, lesTables2
    tell application "Numbers"
    activate
    tell document 1
    set lesFeuilles to name of sheets
    if sourceSheet is in lesFeuilles then
    tell sheet sourceSheet to set lesTables1 to name of tables
    if sourceTable is not in lesTables1 then
    if my parleAnglais() then
    error "The sheet “" & sourceTable & "” of sheet “" & sourceSheet & "” is unavailable ! "
    else
    error "La table “" & sourceTable & "” de la feuille “" & sourceSheet & "” n'existe pas ! "
    end if
    end if -- sourceTable is not
    else
    if my parleAnglais() then
    error "The sheet “" & sourceSheet & "” is unavailable ! "
    else
    error "La feuille “" & sourceSheet & "” n'existe pas ! "
    end if
    end if -- sourceSheet is in
    end tell -- document
    end tell -- application
    if newName is not in lesTables1 then (*
    Now, an ugly workaround to duplicate the sheet *)
    set isOS4 to (system attribute "sys2") < 5
    tell application "System Events" to tell application process "Numbers"
    set docWindow to false (* CAUTION, an inspector ("AXFloatingWindow") or a Find/Search ("AXDialog") window may be open *)
    repeat with i from 1 to (count of windows)
    if subrole of window i is "AXStandardWindow" then
    set docWindow to i (* got the document's window *)
    exit repeat
    end if
    end repeat
    if docWindow is not false then
    tell outline 1 of scroll area 1 of splitter group 1 of splitter group 1 of window docWindow
    select row 1
    set value of attribute "AXFocused" to true
    set found to false
    set listOfRows to name of static text of every row
    set cor to count of rows (* equal count of listOfRows *)
    if isOS4 then (*
    for mac Os X 10.4.11
    CAUTION, listOfRows it's a list of lists !
    {{"Feuille 2"}, {"Tableau 1"}, {"theSheet"}, {"Feuille 1"}, {"Tableau 2"}, {"Clément"}, {"Feuille 4"}} *)
    repeat with i from 1 to cor (*
    Scan the thumbnails *)
    set nameI to item 1 of item i of listOfRows
    set isSourceSheet to (sourceSheet = nameI) and my isItAsheet(nameI)
    if isSourceSheet then
    select row i
    if (i < cor) and not my isItAsheet(item 1 of item (i + 1) of listOfRows) then (*
    Here we may scan the thumbnails of tables of sourceSheet *)
    repeat with j from i + 1 to i + (count of lesTables1)
    if sourceTable = item 1 of item j of listOfRows then
    select row j
    set found to true
    exit repeat
    end if -- sourceTable
    end repeat
    else
    if my parleAnglais() then
    error "The sheet “" & sourceTable & "” of sheet “" & sourceSheet & "”" & return & " is not revealed in thumbnails ! "
    else
    error "La table “" & sourceTable & "” de la feuille “" & sourceSheet & "”" & return & " n'est pas affichée dans les vignettes ! "
    end if -- my parleFrancais
    end if -- (i < cor)
    end if -- isSourceSheet
    if found then exit repeat
    end repeat -- i
    else (*
    for mac Os X 10.5.x
    CAUTION, listOfRows is a list of lists !
    {{}, {"Tableau 1"}, {"theSheet"}, {}, {"Tableau 2"}, {"Clément"}, {}}
    With 10.5.x, the names of sheets are empty *)
    repeat with i from 1 to cor
    set isSourceSheet to (class of UI element 1 of row i is group) and (get value of static text 1 of group 1 of row i) is sourceSheet
    if isSourceSheet then (*
    Here we may scan the thumbnails of tables of sourceSheet *)
    if value of UI element 1 of group 1 of row i is 0 then (*
    reveal the tables's thumbnails and adjust the list accordingly *)
    click UI element 1 of group 1 of row i (* click the black triangle to reveal tables *)
    delay 0.1
    set listOfRows to name of static text of every row (* update the list accordingly *)
    end if -- value of UI…
    repeat with j from i + 1 to i + (count of lesTables1)
    if sourceTable = item 1 of item j of listOfRows then
    select row j
    set found to true
    exit repeat
    end if -- sourcetable
    end repeat -- with j
    end if -- isSourceSheet
    if found then exit repeat
    end repeat -- with i
    end if -- check OS
    end tell -- outline …
    keystroke "d" using command down
    end if -- docWindow
    end tell -- System Events…
    if docWindow is not false then (*
    Rename the new table according to the passed name: newTable *)
    tell application "Numbers" to tell document 1 to tell sheet sourceSheet
    set lesTables2 to name of tables
    repeat with i in lesTables2
    if i is not in lesTables1 then (*
    Here i is the name of the newly created table *)
    set name of table i to newName
    exit repeat
    end if
    end repeat
    end tell
    end if -- docWindow
    end if -- newName is not…
    end duplicateTable
    --=====
    on parleAnglais()
    local z
    try
    tell application theApp to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) samedi 19 septembre 2009 17:33:59

  • Chapter Numbering (combining numbers and letters)

    Is there a way to create a book with module numbering that has a number and a letter.
    For example:
    Module 9: Family Room Make-Over
    Module 9A: Selecting a Paint Color
    Module 9B: Selecting a Flooring Style
    Module 9C: Selecting Furniture
    Module 10: Kitchen Make-Over
    Module 10A: Selecting Cupboard Style
    Module 10B: Selecting a Counter Top
    I'm currently using a building block of <chapnum> that automatically numbers the modules in a book. This information also updates the footer information for the page numbers (example: 9-1, 9-2, 9-3, etc.)
    I would like to add a letter with the number as shown in the example above (9A, 9B, 9C, etc.) for some of the modules.
    What is the easiest way to do this? Is there a way to automate the book build to get the 9A, 9B, 9C for some modules?
    Any help is much appreciated.
    Dennis

    Dennis:
    I'm not really in the Help Desk business, and the advantage of posting here is that someone else might benefit from the exchange (I've often solved my own FM problems by looking at answers to other people's questions here). If the suggestion Thomas provided isn't working for you, though, I'm somewhat at a loss as to what to say: His approach is exactly what I would've suggested.
    It might be helpful to establish some parameters: I assume you're broadly familiar with FrameMaker's autonumbering properties? Just to clarify, it's the part of each line of Thomas' example that begins with
    i N:
    that matters. That label (which could be any single capital letter; there's no special significance to N), followed by a colon, followed by the building blocks for the numbers and letters, all goes in the "Autonumbering Format" field of the "Numbering" tab in the Paragraph Designer. Actually, looking back at your original post, it seems you want the word "Module" at the beginning of the heading and a colon after the number. Thus, the complete autonumbering format for the top-level heading (let's say you call that paragraph tag
    i Heading1
    ) should read:
    i N:Module\ <n+>< =0>:\t
    ...where
    i N:
    is just a label that identifies this numbering sequence (so it's possible to have more than one sequence in the same document without interference); the word "Module" and the following nonbreaking space (\[space]) are simply text that will appear in the paragraph autonumbering;
    i <n+>
    is a numerical counter that increments with each new instance of the paragraph;
    i < =0>
    (and note the space before the equals sign) is a placholder that sets the value of the second numbering position to zero, but doesn't display anything; and
    i :\t
    is the colon at the end of your autonumber and a tab character to separate the autonumber from the paragraph text (presuming you want to use a tab, that is; this could just as easily be a space or nonbreaking space).
    The autonumbering sequence for the subordinate heading (call it
    i Heading2
    ), would be similar:
    i N:Module\ <n><A+>:\t
    ...the difference being that the first counter now returns the same number as the heading above, but doesn't increment, and the second counter returns a capital alpha character whose equivalent numerical value (i.e., 1=A, 2=B, etc.) is the value of the heading above plus 1.
    Note that you could replace the first counter in both autonumbering formats with
    i <$chapnum>
    , as long as you make sure the chapter number is correctly defined for each file in your book. Either way, you'll get the following results:
    [First paragraph tagged
    i Heading1
    in book] -->
    b Module 1:
    [Heading Text]
    [Second paragraph tagged
    i Heading1
    in book] -->
    b Module 2:
    [Heading Text]
    [First paragraph tagged
    i Heading2
    under Heading1] -->
    b Module 2A:
    [Heading Text]
    [Second paragraph tagged
    i Heading2
    under Heading1] -->
    b Module 2B:
    [Heading Text]
    ...and so on. Once you've set it up this way, the building block
    i <$paranum[Paragraph Tag]>
    will return the whole autonumbering string, including text and punctuation, and
    i <$paranumonly[Paragraph Tag]>
    will return only the values of the counters.
    So a cross-reference format for referencing these headings by number and heading text might look like:
    i <$paranum>\ <emphasis><$paratext><Default ¶ Font>\
    ...and would show up in text as "...this topic is discussed in more detail in
    b Module 2A:
    i Framistat Synchronization
    in the next chapter."
    To get page numbering at the Heading2 level, you would define one of the user-definable header/footer variables (e.g.,
    i Running H/F 3
    ) as:
    i <$paranumonly[Heading2]>
    ...and then include that variable in a header or footer on your masterpage:
    i Running H/F 3-<$curpagenum>
    (note that the page number building block will show up as
    i #
    when you insert it). As I said before, you can (AFAIK) only restart the page numbering to 1 at the beginning of a new file, so you'll have to divide the book into files at the same outline level at which you want to page number.
    Hope this makes it all clear and specific; if this still doesn't work for you, you'll need a better guru than me to take this further.
    -Bill

  • Numbering and section options

    hello forumers.
    im following up on a tut,and im doing the numbering and section option.
    im choosing a page that i like to start off,and choosing a style.but when i click on ok,the pages are not changing,but continue to be labeled 1 2 3 4 5 6
    although for example ive choosen for them to be in roman numerals from lets say page 8 and beyond.do i need to edit smthing in my preference maybe?
    thank you.

    hello
    nope he does not mention nothing about the number section in the preferences.cos if he did i wouldnt have posted the question in the forum.
    i will inform the tutor as he is bery famous as i see,about not mentioning this highlight.
    thank you.

  • Consecutive Numbering and Current Date

    I am trying to create an invoice (that I will save as a template) and I want the invoice number to change, each time I open the invoice template, to the next consecutive number. I also want the date to stay current each time I open the document. Can anyone help? Thanks in advance.

    MATOS-3802 wrote:
    Thanks for the reply. I am neither familiar with computer lingo nor am I very computer savvy, so a lot of that is really confusing to me. Is there a plain English "numbers for dummies" way of going about it? Thanks again.
    Hi MATOS,
    Fortunately you don't need to understand most of it in order to use it.
    As a user, you need only understand:
    Open the Script Editor.
    Copy Yvan's script from his post, then Paste it into the Script editor.
    Then read this part (assuming your English is stronger than your French). The numbers labeling the sections are used in my notes below:
    Section 1A:
    +++++++
    Save this script as Script : invoiceWithDateAndnumber.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Note 1
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Section 1B
    menu Scripts > Numbers > invoiceWithDateAndnumber
    will create a new document from the defined user template
    and insert a new number and the current date as a fixed value.
    Section 2
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Section 3
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/06/05
    Section 4
    --=====
    property theApp : "Numbers"
    Adapter ces six “properties” à vos besoins
    Adjust these six properties to fit your needs
    property myTemplate : "my_invoice.nmbtemplate"
    property fichierNum : "the_number.txt"
    property mySheet : "1"
    property myTable : "1"
    property cell4number : "A1"
    property cell4date : "A2"
    --=====
    Section 4 is the beginning of the actual script. You will need to edit the properties list to fit your own situation.
    The first property "theApp" names the application (Numbers) that the script affects. Do not change this.
    Below the line "Adjust these...":
    myTemplate:
    Change "my_invoice.nmbtemplate" to match the name of your Invoice template, and add the ".nmbtemplate" extension to the name.
    fichierNum:
    This is the name of the file that keeps the most recent invoice number. The script will create the file the first time the script is run, and will update it each tome after that. No change is needed in this line.
    mySheet:
    myTable:
    These are currently set to use the first (ie. top of the list) Table on the first sheet of your invoice template. If the template contains only one table (and only one sheet) no change is needed. If your template contains more than one table, you may need adjust the number(s).
    cell4number:
    This is the cell in which the Invoice Number will be placed. Change "A1" to the actual location of the Invoice Number on your template. Remember to enclose the location in double quotes.
    cell4date:
    This is the cell in which the current date will be placed. Change "A2" to the actual location of the Invoice Date on your template. Remember to enclose the location in double quotes.
    In Section 1, Note 1 tells you you will need a specific set of folders in which to place the script.
    In the Finder, open a new window and click on yourAccount (the house icon with your username below it), then on Library, then on Scripts, then on Applications, then on Numbers.
    Each time you click, it opens the folder and shows (in the next column, if your Finder window is in Column view) the items in that folder. If any of the names on this path are missing, you will need to go to the File menu, choose New Folder, and give the new folder the name shown above. (If you have not yet added any scripts, you will likely need to create at least the Applications and Numbers folders.)
    Section 1A tells what to do with the script after you have edited it: Save it in the Numbers folder you created above. You can save it to the Desktop, then move it to the correct folder, or you could save it directly to the correct folder. Yvan's name is chosen to tell exactly what the script does.
    Section 1B tells how to call the script (ie. how to get it to do what it's written to do):
    go to the Scripts Menu, choose Numbers, then choose "invoiceWithDateAndnumber",
    then describes what the script does.
    The Scripts menu is likely not yet in your Menu bar, so Section 2 tells how to get it there. If you, like me, have a crowded Menu bar already, you may also have to remove something else to make room for the Scripts menu.
    Section 3 tells who wrote the script (Yvan) and when he did so.
    Once you've completed those steps (editing properties and saving the script to the correct location), creating a new dated and numbered invoice is a simple matter of choosing this script in the Scripts menu.
    Regards,
    Barry

  • I have pages, numbers and keynote on my macbook pro, but when i try to use the apps on my new iMac it will not let me save

    I purchased Pages, Numbers and Keynote for my MacBook Pro and iPad last year.  I just purchased a new iMac for my wife and it came with iWorks.  When I try to save a document on the iMac it tells me I must buy an iWorks serial number, but the App Store shows the applications as installed and will not process the request.  How do I correct?

    Did you pay for iWorks to come preinstalled on the iMac? Because it sounds like what you have is a trial version, which is why it is stating that you need to buy a serial number.
    I suggest that you delete the entire trial iWorks suite. Once they are safely in the Trash where the Mac App Store can't see them, you can sign into your account on the MAS and download the MAS versions that you own a license to use.

  • Numbers (and pages and keynote) doesn't open

    Hey people. once more I have an issue with my mac retina iOS Lion 10.8.2. I just downloaded Numbers 2.3 on my mac but, when I try to open it, just doesn't show anything, after that i need to force close. This is te report. I hope someone can help me, thanks
    Date/Time:       2013-02-27 20:04:16 -0500
    OS Version:      10.8.2 (Build 12C3006)
    Architecture:    x86_64
    Report Version:  11
    Command:         Numbers
    Path:            /Applications/Numbers.app/Contents/MacOS/Numbers
    Version:         2.3 (554)
    Build Version:   40
    Project Name:    iWorkAppBundler
    Source Version:  9850000
    App Item ID:     409203825
    App External ID: 12013123
    Parent:          launchd [151]
    PID:             1354
    Event:           hang
    Duration:        1.80s
    Steps:           19 (100ms sampling interval)
    Hardware model:  MacBookPro10,1
    Active cpus:     8
    Free pages:      1409893 pages (+5445)
    Pageins:         0 pages
    Pageouts:        0 pages
    Process:         Numbers [1354]
    Path:            /Applications/Numbers.app/Contents/MacOS/Numbers
    Architecture:    i386
    Parent:          launchd [151]
    UID:             501
    Task size:       5692 pages (-2064)
      Thread 0x51eb3    priority <multiple>
      18 ??? (Numbers + 322094) [0x4fa2e]
        18 ??? (Numbers + 45128) [0xc048]
          18 ??? (Numbers + 45259) [0xc0cb]
            18 -[NSApplication run] + 855 (AppKit) [0x986946cc]
              18 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119 (AppKit) [0x9869e26c]
                18 _DPSNextEvent + 1655 (AppKit) [0x9869eddd]
                  18 AEProcessAppleEvent + 100 (HIToolbox) [0x96271e48]
                    18 aeProcessAppleEvent + 318 (AE) [0x9768f89d]
                      18 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44 (AE) [0x9768f9de]
                        18 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 331 (AE) [0x976b9535]
                          18 _NSAppleEventManagerGenericHandler + 173 (Foundation) [0x940b4b8e]
                            18 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430 (Foundation) [0x940b4d91]
                              18 __76-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 + 121 (Foundation) [0x940b523a]
                                18 -[NSObject performSelector:withObject:withObject:] + 77 (libobjc.A.dylib) [0x95043628]
                                  18 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 378 (AppKit) [0x986a28b4]
                                    18 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751 (AppKit) [0x986a2d9f]
                                      18 -[NSApplication _sendFinishLaunchingNotification] + 249 (AppKit) [0x986a5e48]
                                        18 -[NSApplication _postDidFinishNotification] + 367 (AppKit) [0x986a618e]
                                          18 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92 (Foundation) [0x9409a788]
                                            18 _CFXNotificationPost + 2794 (CoreFoundation) [0x925fe43a]
                                              18 ___CFXNotificationPost_block_invoke_0 + 257 (CoreFoundation) [0x926b2e01]
                                                18 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 49 (Foundation) [0x940b1c52]
                                                  18 ??? (Numbers + 48349) [0xccdd]
                                                    18 -[SFAppApplicationDelegate applicationDidFinishLaunching:] + 926 (SFApplication) [0x2cf4762]
                                                      18 -[SFAppApplicationDelegate continueReopeningIfNeeded] + 90 (SFApplication) [0x2cf7ea4]
                                                        18 -[NSApplication _continueReopening] + 272 (AppKit) [0x988f6a2f]
                                                          18 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_01493 + 160 (AppKit) [0x98a05e02]
                                                            18 __94-[NSPersistentUIManager finishedRestoringWindowsWithZOrder:registerAsReady:completionHandler:]_block_in voke_01187 + 40 (AppKit) [0x98e6c049]
                                                              18 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke_0 + 281 (AppKit) [0x986a5233]
                                                                18 -[NSApplication _whenReopeningIsAllowedDo:] + 164 (AppKit) [0x986a507e]
                                                                  18 __block_global_0 + 36 (AppKit) [0x988fa83f]
                                                                    18 -[NSApplication _doOpenUntitled] + 352 (AppKit) [0x986a56e8]
                                                                      18 -[NSDocumentController(NSInternal) _showOpenPanel] + 87 (AppKit) [0x98596905]
                                                                        18 ??? (Numbers + 484804) [0x775c4]
                                                                          18 -[SFAppDocumentController openDocument:] + 174 (SFApplication) [0x2cfc394]
                                                                            18 -[NSDocumentController openDocument:] + 413 (AppKit) [0x9853d26d]
                                                                              18 -[NSDocumentController beginOpenPanelWithCompletionHandler:] + 94 (AppKit) [0x9859696f]
                                                                                18 -[NSDocumentController _setupOpenPanel] + 38 (AppKit) [0x98596ba7]
                                                                                  18 +[NSOpenPanel openPanel] + 33 (AppKit) [0x98596c6a]
                                                                                    18 +[NSSavePanel _crunchyRawUnbonedPanel] + 217 (AppKit) [0x98596d4e]
                                                                                       18 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 387 (AppKit) [0x98599350]
                                                                                         18 -[NSSavePanel(NSSavePanelLayout) _initContentView] + 2668 (AppKit) [0x9859b14d]
                                                                                           18 -[NSSavePanel(NSSavePanelLayout) _setupFileBrowserView] + 167 (AppKit) [0x9859b519]
                                                                                             18 -[NSSavePanel(NSSavePanelLayout) _makeFileBrowserView] + 199 (AppKit) [0x9859b74e]
                                                                                               18 -[NSSavePanel _ubiquityContainerURLs] + 63 (AppKit) [0x985401ef]
                                                                                                 18 -[NSFileManager URLForUbiquityContainerIdentifier:] + 332 (Foundation) [0x9408337d]
                                                                                                   18 dispatch_semaphore_wait + 36 (libdispatch.dylib) [0x90ef31f5]
                                                                                                     18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x957b980e]
                                                                                                      *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
    *1  return_from_trap + 156 (mach_kernel) [0xffffff80002cd38c]
       *1  i386_astintr + 35 (mach_kernel) [0xffffff80002b8403]
         *1  ast_taken + 209 (mach_kernel) [0xffffff800021b6e1]
           *1  bsd_ast + 839 (mach_kernel) [0xffffff8000567cf7]
             *1  postsig_locked + 663 (mach_kernel) [0xffffff8000567867]
               *1  exit1_internal + 567 (mach_kernel) [0xffffff8000555677]
                 *1  task_terminate_internal + 435 (mach_kernel) [0xffffff8000235a53]
                   *1  vm_map_remove + 80 (mach_kernel) [0xffffff800026a970]
                     *1  ??? (mach_kernel + 420508) [0xffffff8000266a9c]
                       *1  pmap_remove + 501 (mach_kernel) [0xffffff80002a2e05]
                         *1  pmap_remove_range + 148 (mach_kernel) [0xffffff80002a2574]
      Thread 0x51ed6    DispatchQueue 7959657    priority 44       
      18 start_wqthread + 30 (libsystem_c.dylib) [0x92e1fcca]
        18 _pthread_wqthread + 441 (libsystem_c.dylib) [0x92e37e12]
          18 _dispatch_worker_thread2 + 285 (libdispatch.dylib) [0x90ef0f02]
            18 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x90ef3f8f]
              18 __71-[NSApplication(NSUbiquity) _asynchronouslyPrefetchUbiqityContainerURL]_block_invoke_0 + 44 (AppKit) [0x98602cd0]
                18 -[NSFileManager URLForUbiquityContainerIdentifier:] + 332 (Foundation) [0x9408337d]
                  18 dispatch_semaphore_wait + 36 (libdispatch.dylib) [0x90ef31f5]
                    18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x957b980e]
                     *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x51ed4    DispatchQueue 1701273966 priority 48       
      18 _dispatch_mgr_thread + 53 (libdispatch.dylib) [0x90ef27a9]
        18 kevent + 10 (libsystem_kernel.dylib) [0x957bc9ae]
         *18 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x51ee5    priority 46       
      18 thread_start + 34 (libsystem_c.dylib) [0x92e1fcee]
        18 _pthread_start + 344 (libsystem_c.dylib) [0x92e35557]
          18 __NSThread__main__ + 1396 (Foundation) [0x940ec15b]
            18 -[NSThread main] + 45 (Foundation) [0x940ec1d8]
              18 -[SFAppApplicationDelegate _doSyncManagerSetup:] + 59 (SFApplication) [0x2cf762b]
                18 -[SFUSyncManager documentsPath] + 34 (SFUtility) [0x18ed252]
                  18 -[SFUSyncManager(SFUSyncManagerPrivateMethods) _containerURL] + 229 (SFUtility) [0x18ed965]
                    18 -[NSFileManager URLForUbiquityContainerIdentifier:] + 332 (Foundation) [0x9408337d]
                      18 dispatch_semaphore_wait + 36 (libdispatch.dylib) [0x90ef31f5]
                        18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x957b980e]
                         *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Binary Images:
                  0x1000 -           0x167fff  com.apple.iWork.Numbers 2.3 (554) <1540DC91-ED75-AD99-24BD-22010B9894D5> /Applications/Numbers.app/Contents/MacOS/Numbers
               0x1857000 -          0x1911ff3  com.apple.Keynote.sfutility 1.0 (0.0.1d1) <ED93C91F-C30E-541E-BDD3-04A25579EAFB> /Applications/Numbers.app/Contents/Frameworks/SFUtility.framework/Versions/A/SF Utility
               0x2ce2000 -          0x2da0fff  com.apple.sf.sfapplication 1.0 (1.0) <ED347FE0-B441-1346-3267-5A3D36F4292F> /Applications/Numbers.app/Contents/Frameworks/SFApplication.framework/Versions/ A/SFApplication
              0x90eee000 -         0x90f00ff7  libdispatch.dylib <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
              0x925b5000 -         0x9279dff3  com.apple.CoreFoundation 6.8 (744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
              0x92e1f000 -         0x92edcfeb  libsystem_c.dylib <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
              0x9404e000 -         0x9436bff3  com.apple.Foundation 6.8 (945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
              0x95025000 -         0x95132057  libobjc.A.dylib <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
              0x957a7000 -         0x957c1ffc  libsystem_kernel.dylib <561E35E5-E32E-3BFB-9E8B-C977BA6C4F85> /usr/lib/system/libsystem_kernel.dylib
              0x9620e000 -         0x965f1ff3  com.apple.HIToolbox 2.0 <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
              0x97687000 -         0x976e0fff  com.apple.AE 645.3 (645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
              0x9853b000 -         0x990f7ffb  com.apple.AppKit 6.8 (1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         accountsd [1270]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [151]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1444 pages
      Thread 0x46ce1    DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (accountsd + 3048) [0x10eceebe8]
          19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
            19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
              19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                 *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x46ce5    DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Binary Images:
             0x10ecee000 -        0x10eceefff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         AntiVirus [81]
    Path:            /Library/Application Support/MacKeeper/AntiVirus.app/Contents/MacOS/AntiVirus
    Architecture:    i386
    Parent:          launchd [1]
    UID:             0
    Task size:       44712 pages
    Process:         aosnotifyd [102]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2236 pages
      Thread 0x310      DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (aosnotifyd + 36447) [0x106e9de5f]
          19 ??? (aosnotifyd + 35537) [0x106e9dad1]
            19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x35f      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x3b1      priority 63       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __NSThread__main__ + 1345 (Foundation) [0x7fff8a059612]
            19 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff89ffb586]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5da      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x5243e    priority 33       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x52441    priority <multiple>
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Binary Images:
             0x106e95000 -        0x106edcff7  aosnotifyd <A9359981-2023-3781-93F1-89D423F0F712> /usr/sbin/aosnotifyd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         App Store [1346]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Architecture:    x86_64
    Parent:          launchd [151]
    UID:             501
    Task size:       40269 pages
      Thread 0x51739    DispatchQueue 1          priority 46       
      19 ??? (App Store + 6164) [0x1033bc814]
        19 NSApplicationMain + 869 (AppKit) [0x7fff8dd03cb6]
          19 -[NSApplication run] + 517 (AppKit) [0x7fff8dd5f283]
            19 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x7fff8dd67ed2]
              19 _DPSNextEvent + 685 (AppKit) [0x7fff8dd68613]
                19 BlockUntilNextEventMatchingListInMode + 62 (HIToolbox) [0x7fff901b9cd3]
                  19 ReceiveNextEventCommon + 356 (HIToolbox) [0x7fff901b9e42]
                    19 RunCurrentEventLoopInMode + 209 (HIToolbox) [0x7fff901ba0a4]
                      19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                        19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                          19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                            19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                             *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5174c    DispatchQueue 2          priority 48       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x5175b    priority 62       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __NSThread__main__ + 1345 (Foundation) [0x7fff8a059612]
            19 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff89ffb586]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x517b1    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::BlockAllocator::blockFreeingThreadMain() + 90 (JavaScriptCore) [0x7fff8948ed0a]
              19 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118 (JavaScriptCore) [0x7fff8926cd96]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b2    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff893f1606]
              19 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff893f1724]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b3    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff893f1606]
              19 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff893f1724]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b4    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff893f1606]
              19 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff893f1724]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b7    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x51845    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 WebCore::StorageThread::threadEntryPoint() + 154 (WebCore) [0x7fff9120806a]
              19 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81 (WebCore) [0x7fff91cb59b1]
                19 ***::ThreadCondition::timedWait(***::Mutex&, double) + 61 (JavaScriptCore) [0x7fff8926cd5d]
                  19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                   *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x51aa8    priority 53       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 startIOThread(void*) + 148 (CoreVideo) [0x7fff8f248013]
            19 CVDisplayLink::runIOThread() + 680 (CoreVideo) [0x7fff8f2482d4]
              19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
               *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x520cd    priority <multiple>
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5230f    priority 48       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Binary Images:
             0x1033bb000 -        0x10343bfff  com.apple.appstore 1.2.1 (129.7) <31AAF1C2-2BE9-393B-ABFD-6D869F72E909> /Applications/App Store.app/Contents/MacOS/App Store
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89266000 -     0x7fff89500ff7  com.apple.JavaScriptCore 8536 (8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8dc13000 -     0x7fff8e840ff7  com.apple.AppKit 6.8 (1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8f246000 -     0x7fff8f270ff7  com.apple.CoreVideo 1.8 (99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
          0x7fff9015a000 -     0x7fff9048aff7  com.apple.HIToolbox 2.0 <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
          0x7fff911e9000 -     0x7fff921a2fff  com.apple.WebCore 8536 (8536.26.14) <60029E1A-C1DB-3A1F-8528-4970058D8B3D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         appleeventsd [73]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       927 pages (+9)
      Thread 0x313      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x314      DispatchQueue 7          priority 31       
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8eef2d85]
        19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff911c7566]
         *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x52699    priority 31       
      1 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        1 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          1 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *1 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5269a    priority 31       
      1 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        1 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          1 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *1 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5269c    priority 31       
      1 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        1 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          1 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *1 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5269d    priority 31       
    *1 ??? (mach_kernel + 3907152) [0xffffff80005b9e50]
      Binary Images:
             0x10d369000 -        0x10d369fff  appleeventsd <4617FC4D-4C6C-3B62-9E64-08F9C99ABEEF> /System/Library/CoreServices/appleeventsd
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         AppleSpell [299]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [151]
    UID:             501
    Sudden Term:     Clean
    Task size:       2703 pages
      Thread 0xa31      DispatchQueue 1          priority 46       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (AppleSpell + 7271) [0x1064a4c67]
          19 -[NSSpellServer run] + 73 (Foundation) [0x7fff8a145e36]
            19 CFRunLoopRun + 97 (CoreFoundation) [0x7fff88457371]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xa33      DispatchQueue 2          priority 48       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Binary Images:
             0x1064a3000 -        0x106558ff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         apsd [79]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2492 pages
      Thread 0x26d      DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (apsd + 21702) [0x1029c94c6]
          19 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff89ff718a]
            19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x2c2      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x392      priority 63       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __NSThread__main__ + 1345 (Foundation) [0x7fff8a059612]
            19 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff89ffb586]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4d2      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Binary Images:
             0x1029c4000 -        0x102a42ff7  apsd <955901BC-3EA7-3976-9473-FD16EE108102> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         autofsd [78]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       520 pages
      Thread 0x29a      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x29b      DispatchQueue 7          priority 31       
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8eef2d85]
        19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff911c7566]
         *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Binary Images:
             0x10ed62000 -        0x10ed63fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         awacsd [77]
    Path:            /usr/sbin/awacsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2119 pages
      Thread 0x31b      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x337      DispatchQueue 7          priority 31       
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8eef2d85]
        19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff911c7566]
         *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x31c      DispatchQueue 35         priority 31       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff8d4adcab]
          19 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8eef41c3]
            19 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8eef42f1]
              19 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x7fff8eef447f]
                19 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8eef30b6]
                  19 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8eef6f01]
                    19 ??? (awacsd + 161099) [0x10a66454b]
                      19 CFRunLoopRun + 97 (CoreFoundation) [0x7fff88457371]
                        19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                          19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                            19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                              19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                               *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x341      DispatchQueue 145        priority 31       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff8d4adcab]
          19 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8eef41c3]
            19 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8eef42f1]
              19 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x7fff8eef447f]
                19 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8eef30b6]
                  19 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8eef6f01]
                    19 ??? (awacsd + 212682) [0x10a670eca]
                      19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
                        19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                          19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                            19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                              19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                               *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4e1      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x52503    priority 33       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Binary Images:
             0x10a63d000 -        0x10a6b6ff7  awacsd <5C3F7941-CE4B-3AAA-9F4C-B63CD78D82D0> /usr/sbin/awacsd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         blued [76]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1114 pages
      Thread 0x26a      DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (blued + 170413) [0x10f95f9ad]
          19 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff89ff718a]
            19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x2b4      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x371      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Binary Images:
             0x10f936000 -        0x10f9eafff  blued <9CEF1456-03C9-3DED-A0DA-0E8B483CDB34> /usr/sbin/blued
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel

    Just so you know.... this forum is answered by fellow users not Apple Developers who can use the crash log.  I suggest moving the preferences for Numbers and Pages to your desktop while both apps are nit running, then launch them.
    The preferences files are stored in the folder:
         /Users/<your user name>/Library/Preferences
    you should locate and move (to the desktop) the files:
         /Users/<your user name>/Library/Preferences/com.apple.iWork.Numbers.plist
         /Users/<your user name>/Library/Preferences/com.apple.iWork.Pages.plist
    I usually go there by using the menu item (in the Finder) "Go > Go To Folder…"

  • How do I use page numbering and a text block in a footer in Word with the Report Generation Toolkit?

    I am creating a Word document with the Report Generation Toolkit, and LabVIEW 8.2.1. In the report I am using a template that has page numbering enabled in the center. When I try to add a text block to the left side footer, it eliminates the page numbering and adds my text on the left side. I found "Set Report Footer Text" and "Word Set Page Numbering" vi's that may be the clue to this. When I use these two vi's I either get Page 1 of 456789-001 on the left side, or if I reverse the order I get only 456789-001(text) in the left side with nothing in the center. What I would like to achieve is 456789-001(text) on the left footer, and Page 1 of 2 in the center. Is this possible and if it is, then how can I do it?

    Hi SciManStev,
    I have attached a vi where you can see how they can be made to work together. You have to design it such that one follows the other. If you don't design it that way, it results in a race condition and only one of them get executed.
    Good Luck!
    Warm regards,
    Karunya R
    National Instruments
    Applications Engineer
    Attachments:
    SciMan1.vi ‏14 KB

  • Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    What does the error say?
    A couple of thoughts: the file is corrupted or is password-protected. Corruption is more likely to cause Numbers to crash & Numbers cannot open password-protected Excel files. Try using one of the free Office clones & see what happens.

  • Using Numbers and Pages on more than one account

    I purchased Pages, Numbers and Keynote. I have three accounts setup on my Macbook Air (one for English, one for Korean and one for French). The applications only show up on the account where I purchased them.
    How do get the applications to run from any of the three accounts?

    If they appear only in one account, it's because you installed them in the Applications folder of this account.
    To be able to use them from other accounts, you must move them into the global applications folder.
    As you wrote
    I purchased Pages, Numbers and Keynote.
    I'm not sure of what you really bought. Is it iWork as a whole or the three separated apps thru App Store ?
    Buying iWork, the three apps would be in a subfolder:
    Macintosh HD:Users:<theUserAccount>:Applications:iWork '09
    Move them to
    Macintosh HD:Applications:iWork '09
    If you bought in the App Store, I read a post stating that they are stored in :
    Macintosh HD:Users:<theUserAccount>:Applications:
    I feel that it would be a good idea to move them in a subfolder as in the iWork case.
    Macintosh HD:Applications:iWork '09
    Select the subfolder (or the three applications) to move them in a single operation.
    So you will be asked for your password only once.
    I explain for those which never bought on App Store. In this case, the system keep links to the exact location and require the administrator password before moving the app.
    Yvan KOENIG (VALLAURIS, France) jeudi 27 janvier 2011 10:14:42

  • My wife and i share the same computer to sync our phone with. All of a sudden i lost all my phone numbers and got hers. How do i get mine back. Help Please

    My wife and i share the same computer to sync our phones with. The last time i sync i lost all my phone numbers and got hers. Is there a way to get mine back. Please Help. Thanks

    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here... http://support.apple.com/kb/HT1495
    Create a New User Account for each User.
    Then Each user will have their own iTunes library..
    More Info Here >  cnettv.cnet.com/use-two-iphones-one-computerl

  • I can't seem to see sync my mac and iphone using iCloud with numbers and pages how can i correct this?

    Hi
    I've used Numbers and Pages for IOS for sometime now and when i use safari to look at my icloud account i can see all my files. Recently i bought Numbers for Mac and now whenever i create a spreadsheet on my mac i can't see it on my iphone but i can if i login to icloud. In fact i can only see about 16 files on my iphone when there is over 40 files.
    Although i don't yet have pages for mac i now have a similar problem with Pages, whenever i edit a file or even create a file on IOS it doesn't appear in icloud.
    I did think it was something to do with me not selecting backup to icloud so i then spent £14 to upgrade my storage to 15GB and that hasn't helped.
    I've checked all the settings and can't see anythng that will cause the problem.
    My iphone is running IOS 6 and my Mac is running Mountain Lion 10.8.2
    Does anyone know how to correct this mess?
    Many thanks in advance.
    Mick.

    Problems with buttons and links at the top of the page not working can be caused by an extension like the Yahoo! Toolbar or a Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode

  • How can I get the phone numbers in contacts to appear with dashes between the first 3 numbers, the next 3 numbers, and the last 4 numbers?  Until very recently it did so.  Contacts on my macbook pro does show up this way.  I do have a mobile me account an

    How can I get the phone numbers in contacts to appear with dashes between the first 3 numbers, the next 3 numbers, and the last 4 numbers?  Until very recently
    it did so.  Contacts on my macbook pro does show up this way.  I do have a mobile me account and in the past syncing was no problem.  What setting has changed?

    The phone number format as well as the date language and format and the time format are controlled by the Region Format setting. Go to Settings > General >International > Region Format.  When you change a region format, you can go back one page (to International) and see an example of the date/time/phone number format that your selected region format will produce.

  • I have 1 apple id, 2 5S iPhones with separates numbers and both ring when I get a call on one of the numbers. How do I switch that of ?

    I have 1 Apple ID, 2 5S iPhones (1 private/1 work) with separates numbers and both phones ring when I get a call on one of the numbers. How do I switch that of ?

    I realize that my wife could make her own iTunes account; however, she's been using mine for about 2 years now and this hasn't been an issue.  I guess with the Family Sharing she can have access to all of our music and apps now with her own account. 
    I'll have to see if unchecking our emails resolves this issue.

Maybe you are looking for