Bitcoin Forum
April 23, 2024, 10:01:42 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 »  All
  Print  
Author Topic: Bitcoin 0.9.0rc2 is available for testing [Changelog]  (Read 14539 times)
rme (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 504



View Profile
March 02, 2014, 09:49:36 AM
Last edit: March 02, 2014, 05:22:42 PM by rme
 #1

15 hours ago the Core Developers of Bitcoin released the 0.9.0 Realase Candidate 2 of Bitcoin Core (aka Bitcoin QT).

This is a Development version so it is not intended for normal use, it is only intended to test, debug and see what is comming.


Sources:
https://github.com/bitcoin/bitcoin/releases
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.9.0/test/
https://bitcoin.org/bin/0.9.0/test/README.txt


Bitcoin Core version 0.9.0rc2 is now available from:

  https://bitcoin.org/bin/0.9.0/test/

This is a release candidate for a new major version. A major version brings
both new features and bug fixes.

Please report bugs using the issue tracker at github:

  https://github.com/bitcoin/bitcoin/issues

How to Upgrade
--------------

If you are running an older version, shut it down. Wait until it has completely
shut down (which might take a few minutes for older versions), uninstall all
earlier versions of Bitcoin, then run the installer (on Windows) or just copy
over /Applications/Bitcoin-Qt (on Mac) or bitcoind/bitcoin-qt (on Linux).

If you are upgrading from version 0.7.2 or earlier, the first time you run
0.9.0 your blockchain files will be re-indexed, which will take anywhere from
30 minutes to several hours, depending on the speed of your machine.

On Windows, do not forget to uninstall all earlier versions of the Bitcoin
client first, especially if you are switching to the 64-bit version.

Windows 64-bit installer
-------------------------

New in 0.9.0 is the Windows 64-bit version of the client. There have been
frequent reports of users running out of virtual memory on 32-bit systems
during the initial sync. Because of this it is recommended to install the
64-bit version if your system supports it.

NOTE: Release candidate 2 windows binaries are not code-signed; use pgp
and the SHA256SUMS.asc file to make sure your binaries are correct.
The final 0.9.0 release Windows setup.exe binaries will be code-signed.

OSX 10.5 / 32-bit no longer supported
-------------------------------------

0.9.0 drops support for older Macs. The minimum requirements are now
a 64-bit-capable CPU running OSX 10.6 or later.

Rebranding to Bitcoin Core
---------------------------

To reduce confusion between Bitcoin-the-network and Bitcoin-the-software we
have renamed the reference client to Bitcoin Core.

Autotools build system
-----------------------

For 0.9.0 we switched to an autotools-based build system instead of individual
(q)makefiles.

Using the standard “./autogen.sh; ./configure; make” to build Bitcoin-Qt and
bitcoind makes it easier for experienced open source developers to contribute
to the project.

Be sure to check doc/build-*.md for your platform before building from source.

Bitcoin-cli
-------------

Another change in the 0.9 release is moving away from the bitcoind executable
functioning both as a server and as a RPC client. The RPC client functionality
(“tell the running bitcoin daemon to do THIS”) was split into a separate
executable, 'bitcoin-cli'. The RPC client code will eventually be removed from
bitcoind, but will be kept for backwards compatibility for a release or two.

`walletpassphrase` RPC
-----------------------

The behavior of the `walletpassphrase` RPC when the wallet is already unlocked
has changed between 0.8 and 0.9.

The 0.8 behavior of `walletpassphrase` is to fail when the wallet is already unlocked:

    > walletpassphrase 1000
    walletunlocktime = now + 1000
    > walletpassphrase 10
    Error: Wallet is already unlocked (old unlock time stays)

The new behavior of `walletpassphrase` is to set a new unlock time overriding
the old one:

    > walletpassphrase 1000
    walletunlocktime = now + 1000
    > walletpassphrase 10
    walletunlocktime = now + 10 (overriding the old unlock time)

Transaction malleability-related fixes
--------------------------------------

This release contains a few fixes for transaction id malleability issues:

- -nospendzeroconfchange command-line option, to avoid spending
  zero-confirmation change
- IsStandard() transaction rules tightened to prevent relaying and mining of
  mutated transactions
- Additional information in listtransactions/gettransaction output to
  report wallet transactions that conflict with each other because
  they spend the same outputs.
- Bug fixes to the getbalance/listaccounts RPC commands, which would report
  incorrect balances for double-spent (or mutated) transactions.
- New option: -zapwallettxes to rebuild the wallet's transaction information

Transaction Fees
----------------

This release drops the default fee required to relay transactions across the
network to 0.01mBTC per kilobyte. Note that getting a transaction relayed
across the network does NOT guarantee that the transaction will be
accepted by a miner and included in a block, and the default fee accepted
by miners remains 0.1mBTC per kilobyte.

As in previous releases, the relay fee may be changed with the -minrelaytxfee
command-line option, and miners may change the default minimum fee they accept
with the -mintxfee command-line option.

0.9.0rc2 Release notes
=======================

RPC:

- New notion of 'conflicted' transactions, reported as
  confirmations: -1
- 'listreceivedbyaddress' now provides tx ids
- Add raw transaction hex to 'gettransaction' output
- Updated help and tests for 'getreceivedby(account|address)'
- In 'getblock', accept 2nd 'verbose' parameter, similar to getrawtransaction,
  but defaulting to 1 for backward compatibility
- Add 'verifychain', to verify chain database at runtime
- Add 'dumpwallet' and 'importwallet' RPCs
- 'keypoolrefill' gains optional size parameter
- Add 'getbestblockhash', to return tip of best chain
- Add 'chainwork' (the total work done by all blocks since the genesis block)
  to 'getblock' output
- Make RPC password resistant to timing attacks
- Clarify help messages and add examples
- Add 'getrawchangeaddress' call for raw transaction change destinations
- Reject insanely high fees by default in 'sendrawtransaction'
- Add RPC call 'decodescript' to decode a hex-encoded transaction script
- Make 'validateaddress' provide redeemScript
- Add 'getnetworkhashps' to get the calculated network hashrate
- New RPC 'ping' command to request ping, new 'pingtime' and 'pingwait' fields
  in 'getpeerinfo' output
- Adding new 'addrlocal' field to 'getpeerinfo' output
- Add verbose boolean to 'getrawmempool'
- Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance
- Explicitly ensure that wallet is unlocked in `importprivkey`
- Add check for valid keys in `importprivkey`

Command-line options:

- New option: -nospendzeroconfchange to never spend unconfirmed change outputs
- New option: -zapwallettxes to rebuild the wallet's transaction information
- Rename option '-tor' to '-onion' to better reflect what it does
- Add '-disablewallet' mode to let bitcoind run entirely without wallet (when
  built with wallet)
- Update default '-rpcsslciphers' to include TLSv1.2
- make '-logtimestamps' default on and rework help-message
- RPC client option: '-rpcwait', to wait for server start
- Remove '-logtodebugger'
- Allow `-noserver` with bitcoind

Block-chain handling and storage:

- Update leveldb to 1.15
- Check for correct genesis (prevent cases where a datadir from the wrong
  network is accidentally loaded)
- Allow txindex to be removed and add a reindex dialog
- Log aborted block database rebuilds
- Store orphan blocks in serialized form, to save memory
- Limit the number of orphan blocks in memory to 750
- Fix non-standard disconnected transactions causing mempool orphans
- Add a new checkpoint at block 279,000

Wallet:

- Bug fixes and new regression tests to correctly compute
  the balance of wallets containing double-spent (or mutated) transactions
- Store key creation time. Calculate whole-wallet birthday.
- Optimize rescan to skip blocks prior to birthday
- Let user select wallet file with -wallet=foo.dat
- Consider generated coins mature at 101 instead of 120 blocks
- Improve wallet load time
- Don't count txins for priority to encourage sweeping
- Don't create empty transactions when reading a corrupted wallet
- Fix rescan to start from beginning after importprivkey
- Only create signatures with low S values.

Mining:

- Increase default -blockmaxsize/prioritysize to 750K/50K
- 'getblocktemplate' does not require a key to create a block template

Protocol and network:

- Drop the fee required to relay a transaction to 0.01mBTC per kilobyte
- Send tx relay flag with version
- New 'reject' P2P message (BIP 0061, see https://gist.github.com/gavinandresen/7079034 for draft)
- Dump addresses every 15 minutes instead of 10 seconds
- Relay OP_RETURN data TxOut as standard transaction type
- Remove CENT-output free transaction rule when relaying
- Lower maximum size for free transaction creation
- Send multiple inv messages if mempool.size > MAX_INV_SZ
- Split MIN_PROTO_VERSION into INIT_PROTO_VERSION and MIN_PEER_PROTO_VERSION
- Do not treat fFromMe transaction differently when broadcasting
- Process received messages one at a time without sleeping between messages
- Improve logging of failed connections
- Bump protocol version to 70002
- Add some additional logging to give extra network insight
- Added new DNS seed from bitcoinstats.com

Validation:

- Log reason for non-standard transaction rejection
- Prune provably-unspendable outputs, and adapt consistency check for it.
- Detect any sufficiently long fork and add a warning
- Call the -alertnotify script when we see a long or invalid fork
- Fix multi-block reorg transaction resurrection
- Reject non-canonically-encoded serialization sizes
- Reject dust amounts during validation
- Accept nLockTime transactions that finalize in the next block

Build system:

- Switch to autotools-based build system
- Build without wallet by passing `--disable-wallet` to configure, this removes
  the BerkeleyDB dependency
- Upgrade gitian dependencies (libpng, libz, libupnpc, boost, openssl) to more
  recent versions
- Windows 64-bit build support
- Solaris compatibility fixes
- Check integrity of gitian input source tarballs
- Enable full GCC Stack-smashing protection for all OSes

GUI:

- Switch to Qt 5.2.0 for Windows build
- Add payment request (BIP 0070) support
- Improve options dialog
- Show transaction fee in new send confirmation dialog
- Add total balance in overview page
- Allow user to choose data directory on first start, when data directory is
  missing, or when the -choosedatadir option is passed
- Save and restore window positions
- Add vout index to transaction id in transactions details dialog
- Add network traffic graph in debug window
- Add open URI dialog
- Add Coin Control Features
- Improve receive coins workflow: make the 'Receive' tab into a form to request
  payments, and move historical address list functionality to File menu.
- Rebrand to `Bitcoin Core`
- Move initialization/shutdown to a thread. This prevents “Not responding”
  messages during startup. Also show a window during shutdown.
- Don't regenerate autostart link on every client startup
- Show and store message of normal bitcoin:URI
- Fix richtext detection hang issue on very old Qt versions
- osx: Make use of the 10.8+ user notification center to display growl like
       notifications
- osx: Added NSHighResolutionCapable flag to Info.plist for better font
       rendering on Retina displays.
- osx: Fix bitcoin-qt startup crash when clicking dock icon
- linux: Fix Gnome bitcoin: URI handler

Miscellaneous:

- Add Linux script (contrib/qos/tc.sh) to limit outgoing bandwidth
- Add '-regtest' mode, similar to testnet but private with instant block
  generation with 'setgenerate' RPC.
- Add 'linearize.py' script to contrib, for creating bootstrap.dat
- Add separate bitcoin-cli client

Credits
--------

Thanks to everyone who contributed to this release:

- Andrey
- Ashley Holman
- b6393ce9-d324-4fe1-996b-acf82dbc3d53
- bitsofproof
- Brandon Dahler
- Calvin Tam
- Christian Decker
- Christopher Latham
- Chuck
- coblee
- constantined
- Cory Fields
- Cozz Lovan
- Daniel Larimer
- David Hill
- Dmitry Smirnov
- Drak
- Eric Lombrozo
- fanquake
- fcicq
- Florin
- frewil
- Gavin Andresen
- Gregory Maxwell
- gubatron
- Guillermo Céspedes Tabárez
- Haakon Nilsen
- HaltingState
- Han Lin Yap
- harry
- Ian Kelling
- Jeff Garzik
- Johnathan Corgan
- Jonas Schnelli
- Josh Lehan
- Josh Triplett
- Julian Langschaedel
- Kangmo
- Lake Denman
- Luke Dashjr
- Mark Friedenbach
- Matt Corallo
- Michael Bauer
- Michael Ford
- Michagogo
- Midnight Magic
- Mike Hearn
- Nils Schneider
- Noel Tiernan
- Olivier Langlois
- patrick s
- Patrick Strateman
- Peter Todd
- phantomcircuit
- phelixbtc
- Philip Kaufmann
- Pieter Wuille
- Rav3nPL
- regergregregerrge
- Robert Backhaus
- Roman Mindalev
- Rune K. Svendsen
- Ryan Niebur
- Scott Ellis
- Scott Willeke
- Sergey Kazenyuk
- Shawn Wilkinson
- Sined
- sje
- Subo1978
- super3
- Tamas Blummer
- theuni
- Thomas Holenstein
- Timon Rapp
- Timothy Stranex
- Vaclav Vobornik
- vhf / victor felder
- Vinnie Falco
- Warren Togami
- Wil Bown
- Wladimir J. van der Laan
1713909702
Hero Member
*
Offline Offline

Posts: 1713909702

View Profile Personal Message (Offline)

Ignore
1713909702
Reply with quote  #2

1713909702
Report to moderator
1713909702
Hero Member
*
Offline Offline

Posts: 1713909702

View Profile Personal Message (Offline)

Ignore
1713909702
Reply with quote  #2

1713909702
Report to moderator
In order to get the maximum amount of activity points possible, you just need to post once per day on average. Skipping days is OK as long as you maintain the average.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713909702
Hero Member
*
Offline Offline

Posts: 1713909702

View Profile Personal Message (Offline)

Ignore
1713909702
Reply with quote  #2

1713909702
Report to moderator
1713909702
Hero Member
*
Offline Offline

Posts: 1713909702

View Profile Personal Message (Offline)

Ignore
1713909702
Reply with quote  #2

1713909702
Report to moderator
btceic
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


♫ A wave came crashing like a fist to the jaw ♫


View Profile WWW
March 02, 2014, 02:08:29 PM
 #2

Great work guys, thank you.

I would like to request the following:

In windows when you start bitcoind.exe it hangs the cmd window, any chance of releasing the window if bitcoind.exe starts correctly?

Here is my scenario, I would like to run the bitcoin daemon to check for valid addresses locally on my server without having to call the blockchain api as I do now.

TIA

♫ This situation, which side are you on? Are you getting out? Are you dropping bombs? Have you heard of diplomatic resolve? ♫ How To Run A Cheap Full Bitcoin Node For $19 A Year ♫ If I knew where it was, I would take you there. There’s much more than this. ♫ Track Your Bitcoins Value
neoranga
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
March 02, 2014, 02:32:00 PM
 #3

Great news, thanks to everybody that contributed Smiley

I started testing it on win64
jedimstr
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000



View Profile
March 02, 2014, 02:46:02 PM
 #4

Crashes on startup on Mac OSX 10.9.2
Here's the crashlog: http://pastebin.com/download.php?i=3Us9uLN4
I added it to an existing issue in Github as well.

Carlton Banks
Legendary
*
Offline Offline

Activity: 3430
Merit: 3071



View Profile
March 02, 2014, 03:18:12 PM
 #5

15 hours ago the Core Developers of Bitcoin released the 0.9.0 Realase Candidate 2 of Bitcoin Core (aka Bitcoin QT).

[...]

0.9.0rc1 Release notes
=======================

[...]


The full release notes for RC 2 are (only) at the sourceforge link you listed, there are a few notable additions like transaction malleability handling + new default minrelaytxfee



Linux build exhibits the same issue that my own test build has, namely that the executables are not (executable) from the Linux GUI (tested on Mate and Xfce). Executable permissions + properties are all as they should be, and the files are interpreted by the GUI as file type "Shared Library", not "binary" or "executable". Works fine if you launch from command line.

Vires in numeris
Bitalo_Maciej
Member
**
Offline Offline

Activity: 80
Merit: 10


Lead developer


View Profile WWW
March 02, 2014, 03:36:49 PM
 #6

This is a huge release, thanks to core dev team for all the hard work. There are few notable features that many were waiting for. Amonth others:

- Increase default -blockmaxsize/prioritysize to 750K/50K - maybe this will cause miners to include more transactions in blocks, so transactions will confirm faster
- Relay OP_RETURN data TxOut as standard transaction type - LOTS of potential in this change (it allows you to send small data snippets along with the transaction). It will enable things like Mastercoin, Colored coins, or Trusted transactions (an trusted service including its signature as an output which will allow other parties that trust this service to accept its transactions with lower amount or even with zero confirmations).
- Reject insanely high fees by default in 'sendrawtransaction' - I myself was stung by sending bigger transaction fee than I wanted to, hopefully this will prevent others from doing the same by mistake
- Prune provably-unspendable outputs - yay for reducing UTXO database size Smiley
- New default minrelaytxfee - finally. Paying ~5 US cents for every transaction, even small ones, wasn't that great. Half a cent sounds much better Wink

Web wallets get hacked all the time. Computer wallets get hacked all the time as well.
Solution? Hybrid P2SH wallets - safer than your online and offline wallets combined. Check it out, store and trade your Bitcoins with ease of mind!
Bitcoin.Greece
Sr. Member
****
Offline Offline

Activity: 412
Merit: 250


Bitcoin is the Future of currency


View Profile WWW
March 02, 2014, 03:53:28 PM
 #7

I try the x64 windows version for about 10 min and  my transactions list  dispeared when testing ... back to 0.8.6
Looks good waiting for the final version

Get a VPN - Protect yourself
jgarzik
Legendary
*
qt
Offline Offline

Activity: 1596
Merit: 1091


View Profile
March 02, 2014, 04:16:39 PM
 #8

This is a premature posting, with an incomplete set of release notes.

Jeff Garzik, Bloq CEO, former bitcoin core dev team; opinions are my own.
Visit bloq.com / metronome.io
Donations / tip jar: 1BrufViLKnSWtuWGkryPsKsxonV2NQ7Tcj
SteamGamesBTC.com
Hero Member
*****
Offline Offline

Activity: 734
Merit: 507



View Profile WWW
March 02, 2014, 04:44:06 PM
 #9

Finally the -disablewallet option, yeah! :-)

SteamGamesBTC.com
> Automatic 24/7 bot: purchase any Steam game 20% cheaper with Bitcoin! <
rme (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 504



View Profile
March 02, 2014, 05:20:05 PM
 #10

changelog updated
rme (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 504



View Profile
March 02, 2014, 05:23:21 PM
 #11

Download Links:
https://bitcoin.org/bin/0.9.0/test/
http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.9.0/test/
Carlton Banks
Legendary
*
Offline Offline

Activity: 3430
Merit: 3071



View Profile
March 02, 2014, 05:43:41 PM
 #12

Finally the -disablewallet option, yeah! :-)

Supply bitcoin-qt with the -disablewallet option, and you get a nice "Node" GUI in place of the wallet driven GUI. Status, bandwidth graphs and RPC console. You can even build the source so that the wallet code isn't compiled, so that -disablewallet is the only mode of operation. Pretty decent overall.

Vires in numeris
dexX7
Legendary
*
Offline Offline

Activity: 1106
Merit: 1024



View Profile WWW
March 02, 2014, 05:55:17 PM
 #13

- New default minrelaytxfee - finally. Paying ~5 US cents for every transaction, even small ones, wasn't that great. Half a cent sounds much better Wink

To my understanding that only means that transactions with 0.00001 BTC/KB fee for example are relayed (= nMinRelayTxFee), but the fee to include a transaction in a block remains at 0.0001 BTC/KB (= nMinTxFee).

MarcoTC
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
March 02, 2014, 07:15:20 PM
 #14

.........and the default fee accepted by miners remains 0.1mBTC per kilobyte.

Really?
So basically, the actual fee remains the same then?? Sad

Guess I wasn't the only one who misunderstood: http://www.coindesk.com/bitcoin-transaction-fees-slashed-tenfold/
roslinpl
Legendary
*
Offline Offline

Activity: 2212
Merit: 1199


View Profile WWW
March 02, 2014, 08:16:13 PM
 #15

oooh that is very nice! I was waiting so long for new version!
Changes are very promising!

grue
Legendary
*
Offline Offline

Activity: 2058
Merit: 1431



View Profile
March 02, 2014, 08:39:19 PM
 #16

works fine on windows 7, 64 bit exe.

It is pitch black. You are likely to be eaten by a grue.

Adblock for annoying signature ads | Enhanced Merit UI
roslinpl
Legendary
*
Offline Offline

Activity: 2212
Merit: 1199


View Profile WWW
March 02, 2014, 08:52:29 PM
 #17

works fine on windows 7, 64 bit exe.

so far so good here too...

Windows 7 64bit version
dserrano5
Legendary
*
Offline Offline

Activity: 1974
Merit: 1029



View Profile
March 02, 2014, 10:11:10 PM
 #18

Binaries don't work in debian 7.4 (glibc 2.13):

Code:
bitcoind: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.15' not found (required by bitcoind)
bitcoind: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by bitcoind)

I understand debian 7 is the latest stable. Please developers fix this, debian 7 isn't even one year old (source). Yeah I know I can compile but I can't understand why I'm being forced to either compile or stick with bitcoin 0.8.
roslinpl
Legendary
*
Offline Offline

Activity: 2212
Merit: 1199


View Profile WWW
March 02, 2014, 11:01:41 PM
 #19

Binaries don't work in debian 7.4 (glibc 2.13):

Code:
bitcoind: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.15' not found (required by bitcoind)
bitcoind: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by bitcoind)

I understand debian 7 is the latest stable. Please developers fix this, debian 7 isn't even one year old (source). Yeah I know I can compile but I can't understand why I'm being forced to either compile or stick with bitcoin 0.8.

I am sure they will fix this soon. Any bugs are possible for now Smiley

Cheers
Caesium
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
March 02, 2014, 11:13:40 PM
 #20

Getting a segfault on start on OSX 10.9.2:

Code:
Process:         Bitcoin-Qt [40303]
Path:            /Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt
Identifier:      org.bitcoinfoundation.Bitcoin-Qt
Version:         0.9 (0.9)
Code Type:       X86-64 (Native)
Parent Process:  launchd [156]
Responsible:     Bitcoin-Qt [40303]
User ID:         501

Date/Time:       2014-03-02 23:08:14.759 +0000
OS Version:      Mac OS X 10.9.2 (13C64)
Report Version:  11
Anonymous UUID:  77EE019E-F75F-E78E-4448-12301F87788F

Sleep/Wake UUID: EDABB94F-A63A-4D79-A19D-7EBAD36AF681

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff59451fa8

VM Regions Near 0x7fff59451fa8:
    MALLOC_SMALL           00007fb6ef000000-00007fb6f0800000 [ 24.0M] rw-/rwx SM=PRV 
--> STACK GUARD            00007fff55c52000-00007fff59452000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Stack                  00007fff59452000-00007fff59c52000 [ 8192K] rw-/rwx SM=COW  thread 0

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   com.apple.CoreText            0x00007fff845541fd TcmapTable::Map(unsigned short const*, unsigned short*, long&) const + 405
1   com.apple.CoreText            0x00007fff84553fe2 TBaseFont::GetGlyphsForCharacters(unsigned short const*, unsigned short*, long) const + 82
2   com.apple.CoreText            0x00007fff84560aba CTFontGetGlyphsForCharacters + 340
3   libqcocoa.dylib                0x000000010976ca05 0x109721000 + 309765
4   QtGui                          0x00000001071a91ee QFontEngineMulti::stringToCMap(QChar const*, int, QGlyphLayout*, int*, QFlags<QFontEngine::ShaperFlag>) const + 78
5   QtGui                          0x00000001071b2454 QFontMetrics::width(QChar) const + 276
6   QtGui                          0x00000001071bdbdd 0x1070fa000 + 801757
7   QtGui                          0x00000001071b688d 0x1070fa000 + 772237
8   QtGui                          0x00000001071b5bd9 QFontDatabase::findFont(int, QFontPrivate const*, QFontDef const&, bool) + 345
9   QtGui                          0x0000000107256437 QFontEngineMultiQPA::loadEngine(int) + 103
10  QtGui                          0x00000001071a944c QFontEngineMulti::stringToCMap(QChar const*, int, QGlyphLayout*, int*, QFlags<QFontEngine::ShaperFlag>) const + 684
11  QtGui                          0x00000001071b2454 QFontMetrics::width(QChar) const + 276
12  QtGui                          0x00000001071bdbdd 0x1070fa000 + 801757
13  QtGui                          0x00000001071b688d 0x1070fa000 + 772237
14  QtGui                          0x00000001071b5bd9 QFontDatabase::findFont(int, QFontPrivate const*, QFontDef const&, bool) + 345
15  QtGui                          0x0000000107256437 QFontEngineMultiQPA::loadEngine(int) + 103
16  QtGui                          0x00000001071a944c QFontEngineMulti::stringToCMap(QChar const*, int, QGlyphLayout*, int*, QFlags<QFontEngine::ShaperFlag>) const + 684
17  QtGui                          0x00000001071b2454 QFontMetrics::width(QChar) const + 276
18  QtGui                          0x00000001071bdbdd 0x1070fa000 + 801757
19  QtGui                          0x00000001071b688d 0x1070fa000 + 772237

.... [this repeats for 511 frames]

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib        0x00007fff8e42f662 kevent64 + 10
1   libdispatch.dylib              0x00007fff8510143d _dispatch_mgr_invoke + 239
2   libdispatch.dylib              0x00007fff85101152 _dispatch_mgr_thread + 52

Thread 2:
0   libsystem_kernel.dylib        0x00007fff8e42ee6a __workq_kernreturn + 10
1   libsystem_pthread.dylib        0x00007fff879e7f08 _pthread_wqthread + 330
2   libsystem_pthread.dylib        0x00007fff879eafb9 start_wqthread + 13

Thread 3:
0   libsystem_kernel.dylib        0x00007fff8e42ee6a __workq_kernreturn + 10
1   libsystem_pthread.dylib        0x00007fff879e7f08 _pthread_wqthread + 330
2   libsystem_pthread.dylib        0x00007fff879eafb9 start_wqthread + 13

Thread 4:: QThread
0   libsystem_kernel.dylib        0x00007fff8e42e9aa __select + 10
1   QtCore                        0x00000001076a9cd5 qt_safe_select(int, fd_set*, fd_set*, fd_set*, timeval const*) + 69
2   QtCore                        0x00000001076aabac QEventDispatcherUNIXPrivate::doSelect(QFlags<QEventLoop::ProcessEventsFlag>, timeval*) + 668
3   QtCore                        0x00000001076abafb QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 219
4   QtCore                        0x0000000107661983 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 371
5   QtCore                        0x00000001074e21bd QThread::exec() + 109
6   QtCore                        0x00000001074e5a3a 0x1074bf000 + 158266
7   libsystem_pthread.dylib        0x00007fff879e6899 _pthread_body + 138
8   libsystem_pthread.dylib        0x00007fff879e672a _pthread_start + 137
9   libsystem_pthread.dylib        0x00007fff879eafc9 thread_start + 13

Thread 5:: com.apple.CFSocket.private
0   libsystem_kernel.dylib        0x00007fff8e42e9aa __select + 10
1   com.apple.CoreFoundation      0x00007fff89c59b83 __CFSocketManager + 867
2   libsystem_pthread.dylib        0x00007fff879e6899 _pthread_body + 138
3   libsystem_pthread.dylib        0x00007fff879e672a _pthread_start + 137
4   libsystem_pthread.dylib        0x00007fff879eafc9 thread_start + 13

Thread 6:
0   libsystem_kernel.dylib        0x00007fff8e42ee6a __workq_kernreturn + 10
1   libsystem_pthread.dylib        0x00007fff879e7f08 _pthread_wqthread + 330
2   libsystem_pthread.dylib        0x00007fff879eafb9 start_wqthread + 13

Thread 7:
0   libsystem_kernel.dylib        0x00007fff8e42aa1a mach_msg_trap + 10
1   libsystem_kernel.dylib        0x00007fff8e429d18 mach_msg + 64
2   com.apple.CoreFoundation      0x00007fff89c0e155 __CFRunLoopServiceMachPort + 181
3   com.apple.CoreFoundation      0x00007fff89c0d779 __CFRunLoopRun + 1161
4   com.apple.CoreFoundation      0x00007fff89c0d0b5 CFRunLoopRunSpecific + 309
5   com.apple.AppKit              0x00007fff8f94516e _NSEventThread + 144
6   libsystem_pthread.dylib        0x00007fff879e6899 _pthread_body + 138
7   libsystem_pthread.dylib        0x00007fff879e672a _pthread_start + 137
8   libsystem_pthread.dylib        0x00007fff879eafc9 thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x000000010f95e798  rbx: 0x00007fff59453688  rcx: 0x00007fff8455435c  rdx: 0x00007fff845541e9
  rdi: 0x00007fff594520d0  rsi: 0x00007fff59452158  rbp: 0x00007fff59452130  rsp: 0x00007fff59451fb0
   r8: 0x00007fff59453574   r9: 0x0000000000000000  r10: 0x0000000000000018  r11: 0x0000600000248220
  r12: 0x00007fb6ebd5a3b0  r13: 0x00007fff74a71420  r14: 0x00007fff59452150  r15: 0x00007fff59453238
  rip: 0x00007fff845541fd  rfl: 0x0000000000010216  cr2: 0x00007fff59451fa8
 
Logical CPU:     0
Error Code:      0x00000006
Trap Number:     14


Binary Images:
       0x105fae000 -        0x1066f7fff +org.bitcoinfoundation.Bitcoin-Qt (0.9 - 0.9) <9DB3D8D1-C880-1EB6-19E5-6BD80C31E1EA> /Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt
       0x106939000 -        0x10693cff7 +libboost_system-mt.dylib (0) <BE28168B-2882-8CF7-4E4B-7E0C55180A75> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libboost_system-mt.dylib
       0x10693f000 -        0x106950ff7 +libboost_filesystem-mt.dylib (0) <D4CFDE54-C2DB-CC81-546C-04317C90A980> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libboost_filesystem-mt.dylib
       0x10695b000 -        0x1069a1fff +libboost_program_options-mt.dylib (0) <5003ADAC-ACB1-122E-A783-7C8C6F0941C7> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libboost_program_options-mt.dylib
       0x1069e1000 -        0x1069efff7 +libboost_thread-mt.dylib (0) <F0B10D7F-0D5D-FB13-97A7-86CDDA9FC49F> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libboost_thread-mt.dylib
       0x106a07000 -        0x106a0cfff +libboost_chrono-mt.dylib (0) <AB10A698-2390-C26F-6513-A59C78AC1890> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libboost_chrono-mt.dylib
       0x106a16000 -        0x106b15fff +QtNetwork (5.0.2) <17FCD18A-4056-3EA6-84D5-27C0491A31E5> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork
       0x106b4e000 -        0x106fdbff7 +QtWidgets (5.0.2) <2230A9F2-D502-3833-A34F-8150734C486C> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets
       0x1070fa000 -        0x10740bff7 +QtGui (5.0.2) <6C4C1592-C414-36AE-AE76-E5A734DB3F6C> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui
       0x1074bf000 -        0x107910fff +QtCore (5.0.2) <7EB5DDEA-552F-3C79-9DA2-796CF55EC9D5> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore
       0x107989000 -        0x10798ffff +libqrencode.3.dylib (5.1) <C5D89645-D1B3-32DC-E3C4-55B0F5455429> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libqrencode.3.dylib
       0x107995000 -        0x107a70fe7 +libprotobuf.8.dylib (9) <63E6D03D-2B26-23C9-DA36-7E972B1B93B5> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libprotobuf.8.dylib
       0x107adf000 -        0x107c45ff7 +libdb_cxx-4.8.dylib (0) <603C4033-B27B-CA14-A74A-83E8FC144E1F> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libdb_cxx-4.8.dylib
       0x107c6c000 -        0x107c73ff7 +libminiupnpc.8.dylib (0) <A0518C0B-C19B-1FE1-7EB2-3F01CF4479AE> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libminiupnpc.8.dylib
       0x107c77000 -        0x107ccbff7 +libssl.1.0.0.dylib (1) <5955F68C-357C-A2E8-59F3-D20D85403AB3> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libssl.1.0.0.dylib
       0x107ceb000 -        0x107e50ff7 +libcrypto.1.0.0.dylib (1) <AB475C5F-17C6-6A01-1242-63B194872ABB> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libcrypto.1.0.0.dylib
       0x107eb9000 -        0x107ebdfff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
       0x107ec9000 -        0x107edbff7 +libz.1.dylib (1.2.8) <A07EE7AE-FDB1-F5E8-8B12-06B7B616DA94> /Applications/Bitcoin-Qt.app/Contents/Frameworks/libz.1.dylib
       0x109721000 -        0x10979efff +libqcocoa.dylib (0) <6D5E7D49-B255-3F6B-99B0-D002069CDDD5> /Applications/Bitcoin-Qt.app/Contents/PlugIns/platforms/libqcocoa.dylib
       0x1097cb000 -        0x1097f4fff +QtPrintSupport (5.0.2) <D2F121DC-04C7-3458-9D93-F5ABB63C9DB2> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtPrintSupport.framework/Versions/5/QtPrintSupport
       0x109810000 -        0x109815fff +libqminimal.dylib (0) <98F385FD-D1CF-3001-9F1F-8B1162AA18A1> /Applications/Bitcoin-Qt.app/Contents/PlugIns/platforms/libqminimal.dylib
       0x10981b000 -        0x109823ff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
       0x10982b000 -        0x109853ffb  libRIP.A.dylib (599.20.11) <D79461A6-2E24-3531-ADA2-EAC972384A7D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
       0x109863000 -        0x109866ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
       0x109b45000 -        0x109b4dff7 +libqtaccessiblequick.dylib (0) <87D57D0E-15FD-312D-8CFC-6C52C7F99FFA> /Applications/Bitcoin-Qt.app/Contents/PlugIns/accessible/libqtaccessiblequick.dylib
       0x109b53000 -        0x109b73fff +libqtaccessiblewidgets.dylib (0) <DDC7CF4B-68B9-37F3-B52A-4E539B19A009> /Applications/Bitcoin-Qt.app/Contents/PlugIns/accessible/libqtaccessiblewidgets.dylib
       0x109c07000 -        0x109c0dff7 +libqgif.dylib (0) <5CA381E0-A735-3B91-9B54-39FF8AB09932> /Applications/Bitcoin-Qt.app/Contents/PlugIns/imageformats/libqgif.dylib
       0x109c11000 -        0x109c16fff +libqico.dylib (0) <8975D0C1-66BC-3042-9BFA-FD712DBB17E1> /Applications/Bitcoin-Qt.app/Contents/PlugIns/imageformats/libqico.dylib
       0x109c1a000 -        0x109c1efff +libqtga.dylib (0) <603D0C24-497C-3349-B1F4-B3BF91B1385A> /Applications/Bitcoin-Qt.app/Contents/PlugIns/imageformats/libqtga.dylib
       0x109c22000 -        0x109c26ff7 +libqwbmp.dylib (0) <224A0E9B-F54A-3C5E-B4A5-0E68F91E812F> /Applications/Bitcoin-Qt.app/Contents/PlugIns/imageformats/libqwbmp.dylib
       0x10c17f000 -        0x10c3ffff7 +QtQuick (5.0.2) <4E21D9C7-CF86-3A01-82C0-5C8875E04963> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtQuick.framework/Versions/5/QtQuick
       0x10c48e000 -        0x10c65dfff +QtQml (5.0.2) <47812B59-4F2B-304D-98B6-EB6556ACB0E8> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtQml.framework/Versions/5/QtQml
       0x10c6b5000 -        0x10ca5cff7 +QtV8 (5.0.2) <29BE17CA-102D-3537-85BC-9F370892E145> /Applications/Bitcoin-Qt.app/Contents/Frameworks/QtV8.framework/Versions/5/QtV8
       0x10ca9f000 -        0x10cadafff +libqjpeg.dylib (0) <B9520E90-CBDA-38B0-B15C-BF30FD5017AF> /Applications/Bitcoin-Qt.app/Contents/PlugIns/imageformats/libqjpeg.dylib
       0x10cae0000 -        0x10cb2eff7 +libqmng.dylib (0) <ADF61689-DA50-34BA-8463-DF7B133EBFCB> /Applications/Bitcoin-Qt.app/Contents/PlugIns/imageformats/libqmng.dylib
       0x10cb36000 -        0x10cb88ff7 +libqtiff.dylib (0) <60442EBF-C32E-3530-BEFA-31A455E944B9> /Applications/Bitcoin-Qt.app/Contents/PlugIns/imageformats/libqtiff.dylib
    0x7fff63479000 -     0x7fff634ac817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff84263000 -     0x7fff84269fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x7fff8426a000 -     0x7fff842b8fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff8443a000 -     0x7fff84448fff  com.apple.CommerceCore (1.0 - 42) <ACC2CE3A-913A-39E0-8344-B76F8F694EF5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff84449000 -     0x7fff844d9fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff844da000 -     0x7fff84547fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff84548000 -     0x7fff8460aff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff84653000 -     0x7fff84682fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff846a5000 -     0x7fff846c9fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff84a42000 -     0x7fff84a94fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x7fff84aeb000 -     0x7fff84b1ffff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
    0x7fff84b20000 -     0x7fff84b51fff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff84b52000 -     0x7fff84b7bfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff84b7c000 -     0x7fff84b86ff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
    0x7fff84bf3000 -     0x7fff84c4effb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff84c55000 -     0x7fff84c62ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x7fff84c6c000 -     0x7fff84c7dff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff84c7e000 -     0x7fff84c7ffff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x7fff84ca4000 -     0x7fff84efdff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff84efe000 -     0x7fff850abf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x7fff850ac000 -     0x7fff850fdff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff850fe000 -     0x7fff85118fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x7fff8511e000 -     0x7fff85159fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8515d000 -     0x7fff85178ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff85233000 -     0x7fff8526bff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff8526c000 -     0x7fff8527cffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
    0x7fff8527d000 -     0x7fff85348fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff85859000 -     0x7fff85871ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff85872000 -     0x7fff8587eff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff858e0000 -     0x7fff858e4ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff858e5000 -     0x7fff85900ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x7fff85c15000 -     0x7fff85c15ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff85c50000 -     0x7fff85c55fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x7fff85c56000 -     0x7fff85c8fff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff85c90000 -     0x7fff85c90fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff85c91000 -     0x7fff85c99ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff85d48000 -     0x7fff85e32fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff85e33000 -     0x7fff85e3dff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff85e3e000 -     0x7fff85e4bff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x7fff85e4c000 -     0x7fff85e50ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
    0x7fff86358000 -     0x7fff86358fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8635b000 -     0x7fff864c9ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff864ca000 -     0x7fff864f2ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff86567000 -     0x7fff86580ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff865cb000 -     0x7fff865cffff  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
    0x7fff865da000 -     0x7fff86822ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff86829000 -     0x7fff86834ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff86835000 -     0x7fff8684dff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff8684e000 -     0x7fff86855ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
    0x7fff86856000 -     0x7fff8685fff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff86956000 -     0x7fff86986fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff86987000 -     0x7fff86987fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff86988000 -     0x7fff869f2ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff869f3000 -     0x7fff86cf1fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff86cf2000 -     0x7fff86cf2ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x7fff86cf3000 -     0x7fff86da3ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff86fa4000 -     0x7fff8702dfff  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
    0x7fff87069000 -     0x7fff870f5ff7  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
    0x7fff870f6000 -     0x7fff87112fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff8770d000 -     0x7fff879e1fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff879e2000 -     0x7fff879e4fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff879e5000 -     0x7fff879ecff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x7fff87a3d000 -     0x7fff87a6cff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff87b3e000 -     0x7fff87c25ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff87cb2000 -     0x7fff87d7bfff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff88085000 -     0x7fff88091ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff880af000 -     0x7fff880bcfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff880bd000 -     0x7fff88120ff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff88127000 -     0x7fff8814bff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff883f5000 -     0x7fff8841aff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff8841b000 -     0x7fff8841cff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff88463000 -     0x7fff884aaff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
    0x7fff8895b000 -     0x7fff88982ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x7fff88983000 -     0x7fff88986fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff89254000 -     0x7fff89299fff  libcurl.4.dylib (78.90.1) <818543D6-0CCE-3F18-9BF1-4D18B81018F3> /usr/lib/libcurl.4.dylib
    0x7fff8929a000 -     0x7fff8929bff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x7fff892d9000 -     0x7fff89308fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x7fff8931d000 -     0x7fff8931dfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff893aa000 -     0x7fff89433ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff89463000 -     0x7fff8947eff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x7fff89a4a000 -     0x7fff89a4dfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff89add000 -     0x7fff89b42ff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff89b43000 -     0x7fff89b9cfff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff89b9d000 -     0x7fff89d82fff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8a025000 -     0x7fff8a02cfff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff8a02d000 -     0x7fff8a034fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8a135000 -     0x7fff8a137fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff8a138000 -     0x7fff8a139fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff8a13a000 -     0x7fff8a229fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8a234000 -     0x7fff8a3d0ff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8aa21000 -     0x7fff8aa6eff2  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
    0x7fff8aa6f000 -     0x7fff8aa73ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x7fff8aa74000 -     0x7fff8acd1ffd  com.apple.RawCamera.bundle (5.03 - 731) <99C18399-B160-3C4A-AEDC-A2FD4944FCC6> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff8af62000 -     0x7fff8af89ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x7fff8af8a000 -     0x7fff8b36bffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff8b3af000 -     0x7fff8b3c1fff  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
    0x7fff8b3c2000 -     0x7fff8b41aff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff8b433000 -     0x7fff8b434fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff8b435000 -     0x7fff8b442ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff8b443000 -     0x7fff8b522fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8b523000 -     0x7fff8b564fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff8b565000 -     0x7fff8b565ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8b566000 -     0x7fff8b571fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8b581000 -     0x7fff8b9b4ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff8b9f6000 -     0x7fff8b9fefff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff8babd000 -     0x7fff8bacbfff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8bacc000 -     0x7fff8baf1ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8baff000 -     0x7fff8bb2bfff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff8bb2c000 -     0x7fff8bdd6ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff8bdd7000 -     0x7fff8be15ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff8be76000 -     0x7fff8be7eff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8bea2000 -     0x7fff8bf73ff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff8c739000 -     0x7fff8c787ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
    0x7fff8c7e7000 -     0x7fff8c7e7fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff8c7e8000 -     0x7fff8c873fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
    0x7fff8c874000 -     0x7fff8c8a9ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <4ADD0595-25B9-3F09-897E-3FB790AD2C5A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8c8aa000 -     0x7fff8c8acff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff8c936000 -     0x7fff8c95fff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x7fff8c960000 -     0x7fff8c963ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff8c973000 -     0x7fff8c9e2ff1  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
    0x7fff8cc5f000 -     0x7fff8cd65ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8cd66000 -     0x7fff8cd68ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8cd69000 -     0x7fff8cde9fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff8cdea000 -     0x7fff8cea2ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff8cea3000 -     0x7fff8cf07fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff8cf70000 -     0x7fff8cfbefff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x7fff8cfca000 -     0x7fff8d08eff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8d08f000 -     0x7fff8d090ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
    0x7fff8d091000 -     0x7fff8d249ff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
    0x7fff8d24a000 -     0x7fff8d24bff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
    0x7fff8d7c0000 -     0x7fff8d7cfff8  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
    0x7fff8d7d0000 -     0x7fff8d847fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8d848000 -     0x7fff8db18ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff8db19000 -     0x7fff8db45ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff8db46000 -     0x7fff8db51ff7  com.apple.DirectoryService.Framework (10.9 - 173.90.1) <A9866D67-C5A8-36D1-A1DB-E2FA60328698> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff8db52000 -     0x7fff8db64ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff8dc61000 -     0x7fff8dc71fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x7fff8dcad000 -     0x7fff8dd20fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff8dd21000 -     0x7fff8de05fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8de06000 -     0x7fff8de17ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x7fff8ded7000 -     0x7fff8ded9fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff8deda000 -     0x7fff8dfcbff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff8dfcc000 -     0x7fff8dfe5ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8dfe6000 -     0x7fff8dfebfff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8e041000 -     0x7fff8e086ffe  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
    0x7fff8e087000 -     0x7fff8e08aff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff8e08b000 -     0x7fff8e094fff  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
    0x7fff8e135000 -     0x7fff8e139fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x7fff8e13b000 -     0x7fff8e182fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8e18d000 -     0x7fff8e2fdff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff8e34b000 -     0x7fff8e39efff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
    0x7fff8e39f000 -     0x7fff8e3c1fff  com.apple.framework.familycontrols (4.1 - 410) <4FDBCD10-CAA2-3A9C-99F2-06DCB8E81DEE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff8e409000 -     0x7fff8e414fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
    0x7fff8e415000 -     0x7fff8e418ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8e419000 -     0x7fff8e435ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff8e436000 -     0x7fff8e436fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff8e438000 -     0x7fff8e442ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff8e488000 -     0x7fff8e48fff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
    0x7fff8e676000 -     0x7fff8e7c9ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff8e862000 -     0x7fff8e992ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8e993000 -     0x7fff8e999ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x7fff8ea6f000 -     0x7fff8f38eaf3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8f781000 -     0x7fff902f7fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff902f8000 -     0x7fff902fcff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
    0x7fff91290000 -     0x7fff9137efff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff91386000 -     0x7fff913c5fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff913c6000 -     0x7fff913c8ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
    0x7fff9141c000 -     0x7fff91425ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff91426000 -     0x7fff91428ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff914f2000 -     0x7fff914f7ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x7fff914f8000 -     0x7fff9153aff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x7fff917de000 -     0x7fff917dfffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x7fff91a28000 -     0x7fff91a29ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff91a2a000 -     0x7fff91a2dfff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff91a2e000 -     0x7fff91d18fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff91d19000 -     0x7fff91d30ff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff91d31000 -     0x7fff91d3bfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff91d3c000 -     0x7fff91d3dff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 1
    thread_create: 0
    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: 30415206
    thread_create: 1
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=201.5M resident=93.2M(46%) swapped_out_or_unallocated=108.3M(54%)
Writable regions: Total=127.6M written=9668K(7%) resident=24.2M(19%) swapped_out=3444K(3%) unallocated=103.4M(81%)
 
REGION TYPE                      VIRTUAL
===========                      =======
CG backing stores                  2308K
CG image                             76K
CG raster data                       12K
CG shared images                    236K
Kernel Alloc Once                     8K
MALLOC                             96.9M
MALLOC (admin)                       32K
Memory Tag 242                       12K
STACK GUARD                        56.0M
Stack                              10.7M
VM_ALLOCATE                        16.4M
__DATA                             21.2M
__IMAGE                             528K
__LINKEDIT                         72.2M
__TEXT                            129.3M
__UNICODE                           544K
mapped file                        88.9M
shared memory                         4K
===========                      =======
TOTAL                             495.3M



Tired of annoying signature ads? Ad block for signatures
Pages: [1] 2 3 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!