├── .craft.yml ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── scripts └── bump-version.sh ├── src ├── lib.rs └── parser.rs └── tests ├── fixtures ├── XCDYouTubeKit-54.txt ├── bruno.txt ├── handcrafted.txt └── spaces.txt ├── snapshots ├── test_snapshots__XCDYouTubeKit-54.snap ├── test_snapshots__bruno.snap ├── test_snapshots__handcrafted.snap └── test_snapshots__spaces.snap └── test_snapshots.rs /.craft.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # Configuration for sentry-craft (https://github.com/getsentry/craft) 3 | minVersion: "0.22.2" 4 | changelogPolicy: auto 5 | 6 | targets: 7 | - name: crates 8 | - name: github 9 | 10 | artifactProvider: 11 | name: none 12 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: [master, release/**] 6 | pull_request: 7 | branches: [master] 8 | 9 | env: 10 | CARGO_TERM_COLOR: always 11 | 12 | jobs: 13 | lint: 14 | name: Lint 15 | runs-on: ubuntu-latest 16 | 17 | steps: 18 | - uses: actions/checkout@v3 19 | 20 | - uses: actions-rs/toolchain@v1 21 | with: 22 | toolchain: stable 23 | profile: minimal 24 | components: clippy, rustfmt, rust-docs 25 | override: true 26 | 27 | - uses: swatinem/rust-cache@v1 28 | 29 | - name: Run Rustfmt 30 | uses: actions-rs/cargo@v1 31 | with: 32 | command: fmt 33 | args: --all -- --check 34 | 35 | - name: Run Clippy 36 | uses: actions-rs/cargo@v1 37 | with: 38 | command: clippy 39 | args: --all-targets --all-features -- -D warnings 40 | 41 | - name: Rust Doc Comments 42 | uses: actions-rs/cargo@v1 43 | env: 44 | RUSTDOCFLAGS: -Dwarnings 45 | with: 46 | command: doc 47 | args: --no-deps --document-private-items 48 | 49 | test: 50 | name: Test 51 | runs-on: ubuntu-latest 52 | 53 | steps: 54 | - uses: actions/checkout@v3 55 | 56 | - uses: actions-rs/toolchain@v1 57 | with: 58 | toolchain: stable 59 | profile: minimal 60 | override: true 61 | 62 | - uses: swatinem/rust-cache@v1 63 | 64 | - name: Run Cargo Tests 65 | uses: actions-rs/cargo@v1 66 | with: 67 | command: test 68 | args: --all-features 69 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | version: 7 | description: Version to release 8 | required: true 9 | force: 10 | description: Force a release even when there are release-blockers (optional) 11 | required: false 12 | 13 | jobs: 14 | release: 15 | runs-on: ubuntu-latest 16 | name: "Release a new version" 17 | steps: 18 | - name: Get auth token 19 | id: token 20 | uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 21 | with: 22 | app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }} 23 | private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }} 24 | - uses: actions/checkout@v3 25 | with: 26 | token: ${{ steps.token.outputs.token }} 27 | fetch-depth: 0 28 | - name: Prepare release 29 | uses: getsentry/action-prepare-release@v1 30 | env: 31 | GITHUB_TOKEN: ${{ steps.token.outputs.token }} 32 | with: 33 | version: ${{ github.event.inputs.version }} 34 | force: ${{ github.event.inputs.force }} 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.5.1 4 | 5 | - Remove dependency on `time` 0.1.45. ([#17](https://github.com/getsentry/apple-crash-report-parser/pull/17)) 6 | 7 | ## 0.5.0 8 | 9 | - Update `uuid` to 1.0.0. ([#10](https://github.com/getsentry/apple-crash-report-parser/pull/10)) 10 | 11 | ## 0.4.2 12 | 13 | - Fix parsing of datetimes with millisecond precision (#6). 14 | 15 | ## 0.4.1 16 | 17 | - Support binary image names with spaces (#5). 18 | - Add `ParseError::InvalidImageIdentifier`. 19 | 20 | ## 0.4.0 21 | 22 | - Update `uuid` to `0.8.1`. 23 | 24 | ## 0.3.1 25 | 26 | - Expose the type `Addr` (missing public export). 27 | 28 | ## 0.3.0 29 | 30 | (no changes) 31 | 32 | ## 0.2.0 33 | 34 | - Fix incorrect serialization for registers. 35 | - Fix some doc comments. 36 | 37 | ## 0.1.1 38 | 39 | - Fix the link to docs. 40 | 41 | ## 0.1.0 42 | 43 | Initial release. 44 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "apple-crash-report-parser" 3 | version = "0.5.1" 4 | authors = ["Armin Ronacher ", "Sentry "] 5 | keywords = ["apple", "crashreport"] 6 | license = "Apache-2.0" 7 | readme = "README.md" 8 | edition = "2018" 9 | repository = "https://github.com/getsentry/apple-crash-report-parser" 10 | homepage = "https://github.com/getsentry/apple-crash-report-parser" 11 | documentation = "https://docs.rs/apple-crash-report-parser" 12 | categories = ["parser-implementations"] 13 | description = """ 14 | Parses apple crash report text files. 15 | """ 16 | 17 | [package.metadata.docs.rs] 18 | all-features = true 19 | 20 | [features] 21 | with_serde = ["uuid/serde", "chrono/serde", "serde"] 22 | 23 | [dependencies] 24 | regex = "1.1.0" 25 | lazy_static = "1.2.0" 26 | uuid = { version = "1.0.0" } 27 | chrono = { version = "0.4.23", default-features = false, features = ["std"] } 28 | serde = { version = "1.0.84", features = ["derive"], package = "serde", optional = true } 29 | 30 | [dev-dependencies] 31 | serde_json = "1.0.34" 32 | insta = { version = "1.26.0", features = ["yaml"] } 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: style lint test-all 2 | .PHONY: all 3 | 4 | check: style lint 5 | .PHONY: check 6 | 7 | build: 8 | @cargo build --all-features 9 | .PHONY: build 10 | 11 | doc: 12 | @cargo doc 13 | .PHONY: doc 14 | 15 | test: 16 | @cargo test 17 | .PHONY: test 18 | 19 | test-all: 20 | @cargo test --all-features 21 | .PHONY: test-all 22 | 23 | style: 24 | @rustup component add rustfmt --toolchain stable 2> /dev/null 25 | cargo +stable fmt --all -- --check 26 | .PHONY: style 27 | 28 | format: 29 | @rustup component add rustfmt --toolchain stable 2> /dev/null 30 | @cargo +stable fmt --all 31 | .PHONY: format 32 | 33 | lint: 34 | @rustup component add clippy --toolchain stable 2> /dev/null 35 | @cargo +stable clippy --all-targets --all-features -- -D warnings 36 | .PHONY: lint 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Apple Crash Report Parser 2 | 3 | [![Build Status](https://travis-ci.com/getsentry/apple-crash-report-parser.svg?branch=master)](https://travis-ci.org/getsentry/apple-crash-report-parser) 4 | [![Crates.io](https://img.shields.io/crates/v/apple-crash-report-parser.svg?style=flat)](https://crates.io/crates/apple-crash-report-parser) 5 | 6 | This is a Rust library that can parse apple crash report text files. These files 7 | are generated by the apple native crash reporter as well as PLCrashReporter and 8 | KSCrash. 9 | 10 | ## Example file 11 | 12 | ``` 13 | Incident Identifier: 5C32DF84-31A0-43E7-87D0-239F7F594940 14 | CrashReporter Key: TODO 15 | Hardware Model: MacBookPro14,3 16 | Process: YetAnotherMac [49028] 17 | Identifier: com.YourCompany.YetAnotherMac 18 | Version: 4.21.1 19 | Code Type: X86-64 20 | Parent Process: launchd [1] 21 | 22 | Date/Time: 2019-01-09 17:44:22 +0000 23 | OS Version: Mac OS X 10.14.0 (18A391) 24 | Report Version: 104 25 | 26 | Exception Type: SIGSEGV 27 | Exception Codes: SEGV_MAPERR at 0x88 28 | Crashed Thread: 5 29 | 30 | Thread 0: 31 | 0 libsystem_kernel.dylib 0x00007fff61bc6c2a 0x7fff61bc6000 + 3114 32 | 1 CoreFoundation 0x00007fff349f505e 0x7fff349b9000 + 245854 33 | 2 CoreFoundation 0x00007fff349f45ad 0x7fff349b9000 + 243117 34 | 3 CoreFoundation 0x00007fff349f3ce4 0x7fff349b9000 + 240868 35 | 4 HIToolbox 0x00007fff33c8d895 0x7fff33c83000 + 43157 36 | 5 HIToolbox 0x00007fff33c8d5cb 0x7fff33c83000 + 42443 37 | 6 HIToolbox 0x00007fff33c8d348 0x7fff33c83000 + 41800 38 | 7 AppKit 0x00007fff31f4a95b 0x7fff31f30000 + 108891 39 | 8 AppKit 0x00007fff31f496fa 0x7fff31f30000 + 104186 40 | 9 AppKit 0x00007fff31f4375d 0x7fff31f30000 + 79709 41 | 10 YetAnotherMac 0x0000000108b7092b 0x10864e000 + 5384491 42 | 11 YetAnotherMac 0x0000000108b702a6 0x10864e000 + 5382822 43 | 12 libdyld.dylib 0x00007fff61a8e085 0x7fff61a77000 + 94341 44 | 45 | ... 46 | ``` 47 | 48 | ## Resources 49 | 50 | - [crates.io](https://crates.io/crates/apple-crash-report-parser) 51 | - [Documentation](https://docs.rs/apple-crash-report-parser) 52 | -------------------------------------------------------------------------------- /scripts/bump-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -euo pipefail 3 | 4 | SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 | cd $SCRIPT_DIR/.. 6 | 7 | OLD_VERSION="${1}" 8 | NEW_VERSION="${2}" 9 | 10 | echo "Current version: ${OLD_VERSION}" 11 | echo "Bumping version: ${NEW_VERSION}" 12 | 13 | perl -pi -e "s/^version = \".*?\"/version = \"$NEW_VERSION\"/" Cargo.toml 14 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | //! This library implements a simple parser for the apple crash report 2 | //! text format. 3 | //! 4 | //! This library also defines a `with_serde` feature to enable serde 5 | //! serialization (not not deserialization). 6 | mod parser; 7 | 8 | pub use crate::parser::*; 9 | -------------------------------------------------------------------------------- /src/parser.rs: -------------------------------------------------------------------------------- 1 | use std::borrow::Cow; 2 | use std::collections::BTreeMap; 3 | use std::fmt; 4 | use std::io::{self, BufRead, BufReader, Read}; 5 | 6 | use chrono::{DateTime, FixedOffset, Utc}; 7 | use lazy_static::lazy_static; 8 | use regex::Regex; 9 | #[cfg(feature = "with_serde")] 10 | use serde::{Serialize, Serializer}; 11 | use uuid::Uuid; 12 | 13 | lazy_static! { 14 | static ref KEY_VALUE_RE: Regex = Regex::new( 15 | r#"(?x) 16 | ^\s*(.*?)\s*:\s*(.*?)\s*$ 17 | "# 18 | ) 19 | .unwrap(); 20 | static ref THREAD_RE: Regex = Regex::new( 21 | r#"(?x) 22 | ^Thread\ ([0-9]+)(\ Crashed)?:\s*(.+?)?\s*$ 23 | "# 24 | ) 25 | .unwrap(); 26 | static ref THREAD_NAME_RE: Regex = Regex::new( 27 | r#"(?x) 28 | ^Thread\ ([0-9]+)\ name:\s*(.+?) 29 | (?:\s+Dispatch\ queue:\s*(.*?))?\s*$ 30 | "# 31 | ) 32 | .unwrap(); 33 | static ref THREAD_STATE_RE: Regex = Regex::new( 34 | r#"(?x) 35 | ^Thread\ ([0-9]+)\ crashed\ with\ .*?\ Thread\ State:\s*$ 36 | "# 37 | ) 38 | .unwrap(); 39 | static ref REGISTER_RE: Regex = Regex::new( 40 | r#"(?x) 41 | \s* 42 | ([a-z0-9]+):\s+ 43 | (0x[0-9a-fA-F]+)\s* 44 | "# 45 | ) 46 | .unwrap(); 47 | static ref FRAME_RE: Regex = Regex::new( 48 | r#"(?x) 49 | ^ 50 | [0-9]+ \s+ 51 | (.+?) \s+ 52 | (0x[0-9a-fA-F]+)\s+ 53 | (.*?) 54 | (?:\ (?:\+\ [0-9]+|\((.*?):([0-9]+)\)))? 55 | \s* 56 | $ 57 | "# 58 | ) 59 | .unwrap(); 60 | static ref BINARY_IMAGE_RE: Regex = Regex::new( 61 | r#"(?x) 62 | ^ 63 | \s* 64 | (0x[0-9a-fA-F]+) \s* 65 | - 66 | \s* 67 | (0x[0-9a-fA-F]+) \s+ 68 | \+?(.+)\s+ 69 | (\S+?)\s+ 70 | (?:\(([^)]+?)\))?\s+ 71 | <([^>]+?)>\s+ 72 | (.*?) 73 | $ 74 | "# 75 | ) 76 | .unwrap(); 77 | } 78 | 79 | /// A newtype for addresses. 80 | #[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)] 81 | pub struct Addr(pub u64); 82 | 83 | #[cfg(feature = "with_serde")] 84 | impl Serialize for Addr { 85 | fn serialize(&self, serializer: S) -> Result 86 | where 87 | S: Serializer, 88 | { 89 | format!("{:#x}", self.0).serialize(serializer) 90 | } 91 | } 92 | 93 | /// Holds a parsed apple crash report. 94 | #[derive(Debug, Default)] 95 | #[cfg_attr(feature = "with_serde", derive(Serialize))] 96 | pub struct AppleCrashReport { 97 | /// The unique crash ID. 98 | pub incident_identifier: Uuid, 99 | /// The timestamp of the crash. 100 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 101 | pub timestamp: Option>, 102 | /// The architecture of the crash (might require further parsing) 103 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 104 | pub code_type: Option, 105 | /// The path to the application. 106 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 107 | pub path: Option, 108 | /// Optional application specific crash information as string. 109 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 110 | pub application_specific_information: Option, 111 | /// Optional syslog info 112 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 113 | pub filtered_syslog: Option, 114 | /// The internal report version. 115 | pub report_version: u32, 116 | /// Extra metdata. 117 | pub metadata: BTreeMap, 118 | /// A list of threads. 119 | pub threads: Vec, 120 | /// A list of referenced binary images. 121 | pub binary_images: Vec, 122 | } 123 | 124 | /// A single binary image in the crash. 125 | #[derive(Debug)] 126 | #[cfg_attr(feature = "with_serde", derive(Serialize))] 127 | pub struct BinaryImage { 128 | /// The address of the image, 129 | pub addr: Addr, 130 | /// The size of the image, 131 | pub size: u64, 132 | /// The unique ID of the image, 133 | pub uuid: Uuid, 134 | /// The architecture of the image, 135 | pub arch: String, 136 | /// The version of the image if available. This might require further parsing. 137 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 138 | pub version: Option, 139 | /// The short name of the image. 140 | pub name: String, 141 | /// The full path of the image. 142 | pub path: String, 143 | } 144 | 145 | /// Represents a single frame. 146 | #[derive(Debug)] 147 | #[cfg_attr(feature = "with_serde", derive(Serialize))] 148 | pub struct Frame { 149 | /// The module of the frame. 150 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 151 | pub module: Option, 152 | /// The symbol of the frame if available. 153 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 154 | pub symbol: Option, 155 | /// The filename of the frame if available. 156 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 157 | pub filename: Option, 158 | /// The line number of the frame if available. 159 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 160 | pub lineno: Option, 161 | //// The instruction address of the frame. 162 | pub instruction_addr: Addr, 163 | } 164 | 165 | /// A single thread in the crash. 166 | #[derive(Debug)] 167 | #[cfg_attr(feature = "with_serde", derive(Serialize))] 168 | pub struct Thread { 169 | /// The ID (index) of the thread. 170 | pub id: u64, 171 | /// The name of the thread if available. 172 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 173 | pub name: Option, 174 | /// The name of the dispatch queue 175 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 176 | pub dispatch_queue: Option, 177 | /// `true` if this thread crashed. 178 | pub crashed: bool, 179 | /// The list of frames 180 | pub frames: Vec, 181 | /// A dump of all the registers of the thread if available. 182 | #[cfg_attr(feature = "with_serde", serde(skip_serializing_if = "Option::is_none"))] 183 | pub registers: Option>, 184 | } 185 | 186 | enum ParsingState { 187 | Root, 188 | Thread, 189 | BinaryImages, 190 | ThreadState, 191 | FilteredSyslog, 192 | ApplicationSpecificInformation, 193 | } 194 | 195 | /// Represents a parsing error. 196 | #[derive(Debug)] 197 | pub enum ParseError { 198 | Io(io::Error), 199 | InvalidIncidentIdentifier(uuid::Error), 200 | InvalidImageIdentifier(uuid::Error), 201 | InvalidReportVersion(std::num::ParseIntError), 202 | InvalidTimestamp(chrono::ParseError), 203 | } 204 | 205 | impl std::error::Error for ParseError { 206 | fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { 207 | match *self { 208 | ParseError::Io(ref err) => Some(err), 209 | ParseError::InvalidIncidentIdentifier(ref err) => Some(err), 210 | ParseError::InvalidImageIdentifier(ref err) => Some(err), 211 | ParseError::InvalidReportVersion(ref err) => Some(err), 212 | ParseError::InvalidTimestamp(ref err) => Some(err), 213 | } 214 | } 215 | } 216 | 217 | impl fmt::Display for ParseError { 218 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { 219 | match *self { 220 | ParseError::Io(..) => write!(f, "io error during parsing"), 221 | ParseError::InvalidIncidentIdentifier(..) => write!(f, "invalid incident identifier"), 222 | ParseError::InvalidImageIdentifier(..) => write!(f, "invalid binary image identifier"), 223 | ParseError::InvalidReportVersion(..) => write!(f, "invalid report version"), 224 | ParseError::InvalidTimestamp(..) => write!(f, "invalid timestamp"), 225 | } 226 | } 227 | } 228 | 229 | impl std::str::FromStr for AppleCrashReport { 230 | type Err = ParseError; 231 | 232 | fn from_str(s: &str) -> Result { 233 | AppleCrashReport::from_line_iter(s.lines().map(|x| Ok(Cow::Borrowed(x)))) 234 | } 235 | } 236 | 237 | impl AppleCrashReport { 238 | /// Consumes a reader and parses it. 239 | pub fn from_reader(r: R) -> Result { 240 | let reader = BufReader::new(r); 241 | AppleCrashReport::from_line_iter(reader.lines().map(|x| x.map(Cow::Owned))) 242 | } 243 | 244 | #[allow(clippy::cognitive_complexity)] 245 | fn from_line_iter<'a, I>(iter: I) -> Result 246 | where 247 | I: Iterator, io::Error>>, 248 | { 249 | let mut state = ParsingState::Root; 250 | let mut thread = None; 251 | let mut thread_names = BTreeMap::new(); 252 | let mut registers = BTreeMap::new(); 253 | let mut application_specific_information = String::new(); 254 | let mut filtered_syslog = String::new(); 255 | 256 | let mut rv = AppleCrashReport::default(); 257 | 258 | for line in iter { 259 | let line = line.map_err(ParseError::Io)?; 260 | let line = line.trim_end(); 261 | 262 | if line.starts_with("Binary Images:") { 263 | state = ParsingState::BinaryImages; 264 | continue; 265 | } else if line.starts_with("Application Specific Information:") { 266 | state = ParsingState::ApplicationSpecificInformation; 267 | continue; 268 | } else if line.starts_with("Filtered syslog:") { 269 | state = ParsingState::FilteredSyslog; 270 | continue; 271 | } else if THREAD_STATE_RE.is_match(line) { 272 | state = ParsingState::ThreadState; 273 | continue; 274 | } else if let Some(caps) = THREAD_RE.captures(line) { 275 | if let Some(thread) = thread.take() { 276 | rv.threads.push(thread); 277 | } 278 | thread = Some(Thread { 279 | id: caps[1].parse().unwrap(), 280 | name: caps.get(3).map(|m| m.as_str().to_string()), 281 | dispatch_queue: None, 282 | frames: vec![], 283 | crashed: caps.get(2).is_some(), 284 | registers: None, 285 | }); 286 | state = ParsingState::Thread; 287 | continue; 288 | } else if let Some(caps) = THREAD_NAME_RE.captures(line) { 289 | thread_names.insert( 290 | caps[1].parse::().unwrap(), 291 | ( 292 | caps[2].to_string(), 293 | caps.get(3).map(|x| x.as_str().to_string()), 294 | ), 295 | ); 296 | state = ParsingState::Root; 297 | continue; 298 | } 299 | 300 | state = match state { 301 | ParsingState::Root => { 302 | if let Some(caps) = KEY_VALUE_RE.captures(line) { 303 | match &caps[1] { 304 | "Incident Identifier" => { 305 | rv.incident_identifier = caps[2] 306 | .parse() 307 | .map_err(ParseError::InvalidIncidentIdentifier)?; 308 | } 309 | "Report Version" => { 310 | rv.report_version = 311 | caps[2].parse().map_err(ParseError::InvalidReportVersion)?; 312 | } 313 | "Path" => { 314 | rv.path = Some(caps[2].to_string()); 315 | } 316 | "Code Type" => { 317 | rv.code_type = Some(caps[2].to_string()); 318 | } 319 | "Date/Time" => { 320 | let timestamp = DateTime::::parse_from_str( 321 | &caps[2], 322 | "%Y-%m-%d %H:%M:%S%.3f %z", 323 | ) 324 | .map_err(ParseError::InvalidTimestamp)?; 325 | rv.timestamp = Some(timestamp.with_timezone(&Utc)); 326 | } 327 | "Crashed Thread" => {} 328 | _ => { 329 | rv.metadata.insert(caps[1].to_string(), caps[2].to_string()); 330 | } 331 | } 332 | } 333 | ParsingState::Root 334 | } 335 | ParsingState::ThreadState => { 336 | if line.is_empty() { 337 | ParsingState::Root 338 | } else { 339 | for caps in REGISTER_RE.captures_iter(line) { 340 | registers.insert( 341 | caps[1].to_string(), 342 | Addr(u64::from_str_radix(&caps[2][2..], 16).unwrap()), 343 | ); 344 | } 345 | ParsingState::ThreadState 346 | } 347 | } 348 | ParsingState::Thread => { 349 | if let Some(caps) = FRAME_RE.captures(line) { 350 | thread.as_mut().unwrap().frames.push(Frame { 351 | module: if &caps[1] == "???" { 352 | None 353 | } else { 354 | Some(caps[1].to_string()) 355 | }, 356 | symbol: caps.get(3).and_then(|x| { 357 | if x.as_str().starts_with("0x") 358 | && u64::from_str_radix(&x.as_str()[2..], 16).is_ok() 359 | { 360 | None 361 | } else { 362 | Some(x.as_str().to_string()) 363 | } 364 | }), 365 | filename: caps.get(4).map(|x| x.as_str().to_string()), 366 | lineno: caps.get(5).map(|x| x.as_str().parse().unwrap()), 367 | instruction_addr: Addr(u64::from_str_radix(&caps[2][2..], 16).unwrap()), 368 | }); 369 | ParsingState::Thread 370 | } else { 371 | ParsingState::Root 372 | } 373 | } 374 | ParsingState::BinaryImages => { 375 | if line.is_empty() { 376 | ParsingState::BinaryImages 377 | } else if let Some(caps) = BINARY_IMAGE_RE.captures(line) { 378 | let addr = u64::from_str_radix(&caps[1][2..], 16).unwrap(); 379 | rv.binary_images.push(BinaryImage { 380 | addr: Addr(addr), 381 | size: u64::from_str_radix(&caps[2][2..], 16).unwrap() - addr, 382 | uuid: caps[6] 383 | .parse() 384 | .map_err(ParseError::InvalidImageIdentifier)?, 385 | arch: caps[4].to_string(), 386 | version: caps.get(5).map(|x| x.as_str().to_string()), 387 | name: caps[3].to_string(), 388 | path: caps[7].to_string(), 389 | }); 390 | ParsingState::BinaryImages 391 | } else { 392 | ParsingState::Root 393 | } 394 | } 395 | ParsingState::ApplicationSpecificInformation => { 396 | if !application_specific_information.is_empty() { 397 | application_specific_information.push('\n'); 398 | } 399 | application_specific_information.push_str(line); 400 | ParsingState::ApplicationSpecificInformation 401 | } 402 | ParsingState::FilteredSyslog => { 403 | if !filtered_syslog.is_empty() { 404 | filtered_syslog.push('\n'); 405 | } 406 | filtered_syslog.push_str(line); 407 | ParsingState::FilteredSyslog 408 | } 409 | } 410 | } 411 | 412 | if let Some(thread) = thread.take() { 413 | rv.threads.push(thread); 414 | } 415 | 416 | for thread in rv.threads.iter_mut() { 417 | if let Some((name, dispatch_queue)) = thread_names.remove(&thread.id) { 418 | thread.name = Some(name); 419 | thread.dispatch_queue = dispatch_queue; 420 | } 421 | } 422 | 423 | if !registers.is_empty() { 424 | for thread in rv.threads.iter_mut() { 425 | if thread.crashed { 426 | thread.registers = Some(registers); 427 | break; 428 | } 429 | } 430 | } 431 | 432 | if !application_specific_information.is_empty() { 433 | if application_specific_information.ends_with('\n') { 434 | application_specific_information 435 | .truncate(application_specific_information.len() - 1); 436 | } 437 | rv.application_specific_information = Some(application_specific_information); 438 | } 439 | if !filtered_syslog.is_empty() { 440 | if filtered_syslog.ends_with('\n') { 441 | filtered_syslog.truncate(filtered_syslog.len() - 1); 442 | } 443 | rv.filtered_syslog = Some(filtered_syslog); 444 | } 445 | 446 | Ok(rv) 447 | } 448 | } 449 | -------------------------------------------------------------------------------- /tests/fixtures/XCDYouTubeKit-54.txt: -------------------------------------------------------------------------------- 1 | Hardware Model: MacBookPro5,3 2 | Process: iTubeDownloader [590] 3 | Path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/MacOS/iTubeDownloader 4 | Identifier: com.AlphaSoft.iTubeDownloader 5 | Version: 512 6 | Code Type: X86-64 7 | Parent Process: launchd [129] 8 | Date/Time: 2014-07-16 00:25:09 +0000 9 | OS Version: Mac OS X 10.8.5 (12F45) 10 | Framework Version: 1.0 11 | Report Version: 106 12 | Exception Type: SIGSEGV 13 | Exception Codes: SEGV_MAPERR at 0x8 14 | Crashed Thread: 0 15 | Thread 0 Crashed: 16 | 0 com.apple.JavaScriptCore 0x00007fff99d89d4b JSValueIsString + 155 17 | 1 ch.pitaya.xcdyoutubekit 0x00000001018b8cad -[XCDYouTubePlayerScript unscrambleSignature:] + 285 18 | 2 ch.pitaya.xcdyoutubekit 0x00000001018ba765 -[XCDYouTubeVideo initWithIdentifier:info:playerScript:response:error:] + 3445 19 | 3 ch.pitaya.xcdyoutubekit 0x00000001018bc476 -[XCDYouTubeVideoOperation handleVideoInfoResponseWithInfo:playerScript:] + 310 20 | 4 ch.pitaya.xcdyoutubekit 0x00000001018bd905 -[XCDYouTubeVideoOperation handleJavaScriptPlayerResponse] + 277 21 | 5 ch.pitaya.xcdyoutubekit 0x00000001018be287 -[XCDYouTubeVideoOperation connectionDidFinishLoading:] + 647 22 | 6 com.apple.Foundation 0x00007fff97604d68 __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0 + 28 23 | 7 com.apple.Foundation 0x00007fff97604cac -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 227 24 | 8 com.apple.Foundation 0x00007fff97604ba8 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 63 25 | 9 com.apple.CFNetwork 0x00007fff96f8ee61 ___delegate_didFinishLoading_block_invoke_0 + 40 26 | 10 com.apple.CFNetwork 0x00007fff96f8129a ___withDelegateAsync_block_invoke_0 + 90 27 | 11 com.apple.CFNetwork 0x00007fff97011eba __block_global_1 + 28 28 | 12 com.apple.CoreFoundation 0x00007fff8dcfb154 CFArrayApplyFunction + 68 29 | 13 com.apple.CFNetwork 0x00007fff96f72014 _ZN19RunloopBlockContext7performEv + 124 30 | 14 com.apple.CFNetwork 0x00007fff96f71eeb _ZN17MultiplexerSource7performEv + 221 31 | 15 com.apple.CoreFoundation 0x00007fff8dcdcb31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 32 | 16 com.apple.CoreFoundation 0x00007fff8dcdc455 __CFRunLoopDoSources0 + 245 33 | 17 com.apple.CoreFoundation 0x00007fff8dcff7f5 __CFRunLoopRun + 789 34 | 18 com.apple.CoreFoundation 0x00007fff8dcff0e2 CFRunLoopRunSpecific + 290 35 | 19 com.apple.HIToolbox 0x00007fff8d907eb4 RunCurrentEventLoopInMode + 209 36 | 20 com.apple.HIToolbox 0x00007fff8d907c52 ReceiveNextEventCommon + 356 37 | 21 com.apple.HIToolbox 0x00007fff8d907ae3 BlockUntilNextEventMatchingListInMode + 62 38 | 22 com.apple.AppKit 0x00007fff910e7533 _DPSNextEvent + 685 39 | 23 com.apple.AppKit 0x00007fff910e6df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 40 | 24 com.apple.AppKit 0x00007fff910de1a3 -[NSApplication run] + 517 41 | 25 com.apple.AppKit 0x00007fff91082bd6 NSApplicationMain + 869 42 | 26 libdyld.dylib 0x00007fff8f9e97e1 start + 0 43 | Thread 1: 44 | 0 libsystem_kernel.dylib 0x00007fff8d89ed16 kevent + 10 45 | 1 libdispatch.dylib 0x00007fff8d7389ee _dispatch_mgr_thread + 54 46 | Thread 2: 47 | 0 libsystem_kernel.dylib 0x00007fff8d89e6d6 __workq_kernreturn + 10 48 | 1 libsystem_c.dylib 0x00007fff98709ce3 _pthread_wqthread + 412 49 | 2 libsystem_c.dylib 0x00007fff986f4191 start_wqthread + 13 50 | Thread 3: 51 | 0 libsystem_kernel.dylib 0x00007fff8d89c686 mach_msg_trap + 10 52 | 1 com.apple.CoreFoundation 0x00007fff8dcfa233 __CFRunLoopServiceMachPort + 195 53 | 2 com.apple.CoreFoundation 0x00007fff8dcff916 __CFRunLoopRun + 1078 54 | 3 com.apple.CoreFoundation 0x00007fff8dcff0e2 CFRunLoopRunSpecific + 290 55 | 4 com.apple.Foundation 0x00007fff9761f526 +[NSURLConnection _resourceLoadLoop:] + 356 56 | 5 com.apple.Foundation 0x00007fff9767d532 __NSThread__main__ + 1345 57 | 6 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 58 | 7 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 59 | Thread 4: 60 | 0 libsystem_kernel.dylib 0x00007fff8d89e0fa __psynch_cvwait + 10 61 | 1 com.apple.CoreVideo 0x00007fff99366ea3 _ZN13CVDisplayLink9waitUntilEy + 271 62 | 2 com.apple.CoreVideo 0x00007fff99366201 _ZN13CVDisplayLink11runIOThreadEv + 529 63 | 3 com.apple.CoreVideo 0x00007fff99365fd7 _ZL13startIOThreadPv + 148 64 | 4 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 65 | 5 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 66 | Thread 5: 67 | 0 libsystem_kernel.dylib 0x00007fff8d89e322 __select + 10 68 | 1 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 69 | 2 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 70 | Thread 6: 71 | 0 libsystem_kernel.dylib 0x00007fff8d89e0fa __psynch_cvwait + 10 72 | 1 com.apple.JavaScriptCore 0x00007fff99d7eb66 _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexEd + 118 73 | 2 com.apple.JavaScriptCore 0x00007fff99fa1bfa _ZN3JSC14BlockAllocator22blockFreeingThreadMainEv + 90 74 | 3 com.apple.JavaScriptCore 0x00007fff99fb725f _ZN3WTFL19wtfThreadEntryPointEPv + 15 75 | 4 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 76 | 5 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 77 | Thread 7: 78 | 0 libsystem_kernel.dylib 0x00007fff8d89e0fa __psynch_cvwait + 10 79 | 1 com.apple.JavaScriptCore 0x00007fff99f049d4 _ZN3JSC11SlotVisitor15drainFromSharedENS0_15SharedDrainModeE + 212 80 | 2 com.apple.JavaScriptCore 0x00007fff99f048b6 _ZN3JSC25MarkStackThreadSharedData17markingThreadMainEv + 214 81 | 3 com.apple.JavaScriptCore 0x00007fff99fb725f _ZN3WTFL19wtfThreadEntryPointEPv + 15 82 | 4 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 83 | 5 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 84 | Thread 8: 85 | 0 libsystem_kernel.dylib 0x00007fff8d89e0fa __psynch_cvwait + 10 86 | 1 com.apple.JavaScriptCore 0x00007fff99d7eb2d _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexEd + 61 87 | 2 com.apple.WebCore 0x00007fff906ced01 _ZN3WTF12MessageQueueIN7WebCore11StorageTaskEE33waitForMessageFilteredWithTimeoutIFbPS2_EEENS_10PassOwnPtrIS2_EERNS_22MessageQueueWaitResultERT_d + 81 88 | 3 com.apple.WebCore 0x00007fff8fc1f12a _ZN7WebCore13StorageThread16threadEntryPointEv + 154 89 | 4 com.apple.JavaScriptCore 0x00007fff99fb725f _ZN3WTFL19wtfThreadEntryPointEPv + 15 90 | 5 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 91 | 6 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 92 | Thread 9: 93 | 0 libsystem_kernel.dylib 0x00007fff8d89c686 mach_msg_trap + 10 94 | 1 com.apple.QuartzCore 0x00007fff9827017b _ZN2CA6Render6Server13server_threadEPv + 403 95 | 2 com.apple.QuartzCore 0x00007fff982f4dc6 thread_fun + 25 96 | 3 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 97 | 4 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 98 | Thread 10: 99 | 0 libsystem_kernel.dylib 0x00007fff8d89e6d6 __workq_kernreturn + 10 100 | 1 libsystem_c.dylib 0x00007fff98709ce3 _pthread_wqthread + 412 101 | 2 libsystem_c.dylib 0x00007fff986f4191 start_wqthread + 13 102 | Thread 11: 103 | 0 libsystem_kernel.dylib 0x00007fff8d89e6d6 __workq_kernreturn + 10 104 | 1 libsystem_c.dylib 0x00007fff98709ce3 _pthread_wqthread + 412 105 | 2 libsystem_c.dylib 0x00007fff986f4191 start_wqthread + 13 106 | Thread 12: 107 | 0 libsystem_kernel.dylib 0x00007fff8d89e6d6 __workq_kernreturn + 10 108 | 1 libsystem_c.dylib 0x00007fff98709ce3 _pthread_wqthread + 412 109 | 2 libsystem_c.dylib 0x00007fff986f4191 start_wqthread + 13 110 | Thread 13: 111 | 0 libsystem_kernel.dylib 0x00007fff8d89e386 __semwait_signal + 10 112 | 1 libsystem_c.dylib 0x00007fff987916df usleep + 54 113 | 2 com.apple.AppKit 0x00007fff912cc838 -[NSUIHeartBeat _heartBeatThread:] + 543 114 | 3 com.apple.Foundation 0x00007fff9767d532 __NSThread__main__ + 1345 115 | 4 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 116 | 5 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 117 | Thread 14: 118 | 0 libsystem_kernel.dylib 0x00007fff8d89c686 mach_msg_trap + 10 119 | 1 com.apple.CoreFoundation 0x00007fff8dcfa233 __CFRunLoopServiceMachPort + 195 120 | 2 com.apple.CoreFoundation 0x00007fff8dcff916 __CFRunLoopRun + 1078 121 | 3 com.apple.CoreFoundation 0x00007fff8dcff0e2 CFRunLoopRunSpecific + 290 122 | 4 com.apple.Foundation 0x00007fff976827be -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 123 | 5 com.apple.Foundation 0x00007fff9761b18a -[NSRunLoop(NSRunLoop) run] + 74 124 | 6 com.AlphaSoft.iTubeDownloader 0x000000010181bc10 0x1017ff000 + 117776 125 | 7 com.apple.Foundation 0x00007fff9767d532 __NSThread__main__ + 1345 126 | 8 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 127 | 9 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 128 | Thread 15: 129 | 0 libsystem_kernel.dylib 0x00007fff8d89e6d6 __workq_kernreturn + 10 130 | 1 libsystem_c.dylib 0x00007fff98709ce3 _pthread_wqthread + 412 131 | 2 libsystem_c.dylib 0x00007fff986f4191 start_wqthread + 13 132 | Thread 16: 133 | 0 libsystem_kernel.dylib 0x00007fff8d89e0fa __psynch_cvwait + 10 134 | 1 com.apple.JavaScriptCore 0x00007fff99d7eb66 _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexEd + 118 135 | 2 com.apple.JavaScriptCore 0x00007fff99fa1bfa _ZN3JSC14BlockAllocator22blockFreeingThreadMainEv + 90 136 | 3 com.apple.JavaScriptCore 0x00007fff99fb725f _ZN3WTFL19wtfThreadEntryPointEPv + 15 137 | 4 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 138 | 5 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 139 | Thread 17: 140 | 0 libsystem_kernel.dylib 0x00007fff8d89e0fa __psynch_cvwait + 10 141 | 1 com.apple.JavaScriptCore 0x00007fff99f049d4 _ZN3JSC11SlotVisitor15drainFromSharedENS0_15SharedDrainModeE + 212 142 | 2 com.apple.JavaScriptCore 0x00007fff99f048b6 _ZN3JSC25MarkStackThreadSharedData17markingThreadMainEv + 214 143 | 3 com.apple.JavaScriptCore 0x00007fff99fb725f _ZN3WTFL19wtfThreadEntryPointEPv + 15 144 | 4 libsystem_c.dylib 0x00007fff98707772 _pthread_start + 327 145 | 5 libsystem_c.dylib 0x00007fff986f41a1 thread_start + 13 146 | Thread 0 crashed with X86-64 Thread State: 147 | rax: 0x0000000000000000 rbx: 0x000000010d9e7000 rcx: 0xffff000000000002 rdx: 0x000000010d9e7028 148 | rdi: 0x000000010d9e9900 rsi: 0x000000010d9e702c rbp: 0x00007fff5e3fe9a0 rsp: 0x00007fff5e3fe970 149 | r10: 0x00007fff9a7be319 r11: 0x00007fff99d89cb0 r12: 0x000000010d9e7008 r13: 0x0000000103ac75a0 150 | r14: 0x0000000000000000 r15: 0x00007fff7eacfe00 rip: 0x00007fff99d89d4b rflags: 0x0000000000010246 151 | cs: 0x000000000000002b fs: 0x0000000000000000 gs: 0x0000000000000000 152 | Binary Images: 153 | 0x1017ff000 - 0x101885fff +com.AlphaSoft.iTubeDownloader (x86_64) <7B639009-221F-3815-A7A3-657098146F8A> /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/MacOS/iTubeDownloader 154 | 0x1018b6000 - 0x1018c2fff ch.pitaya.xcdyoutubekit (x86_64) <31136917-6868-3472-B768-EB12D00E37E9> /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/XCDYouTubeKit.framework/Versions/A/XCDYouTubeKit 155 | 0x1018d7000 - 0x1018e1fff com.devmate.DevMateTracking (x86_64) <1549AC14-E653-3611-8C6D-B9D80E4578E8> /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateTracking.framework/Versions/A/DevMateTracking 156 | 0x1018fa000 - 0x101924fff com.devmate.DevMateActivations (x86_64) <09C0EA70-4FDE-3BE3-BD3D-EACD2D887BA4> /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateActivations.framework/Versions/A/DevMateActivations 157 | 0x101959000 - 0x101987fff com.devmate.DevMateIssues (x86_64) <9FE897B2-531C-3E52-950B-D8CD4BFC3001> /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateIssues.framework/Versions/A/DevMateIssues 158 | 0x1019cf000 - 0x1019f5fff com.devmate.DevMateFeedback (x86_64) /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateFeedback.framework/Versions/A/DevMateFeedback 159 | 0x101a36000 - 0x101a60fff org.andymatuschak.Sparkle (x86_64) /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle 160 | 0x101a7e000 - 0x10240efff com.apple.CoreGraphics (x86_64) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 161 | 0x10251b000 - 0x102534fff coop.plausible.CrashReporter (x86_64) <1B1E5450-2055-3FDD-801E-FFE8811494CE> /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateIssues.framework/Versions/A/Frameworks/CrashReporter.framework/Versions/A/CrashReporter 162 | 0x103a89000 - 0x103a95fff libCSync.A.dylib (x86_64) <1EE4C872-5236-3577-A458-691DA2B43370> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 163 | 0x103aa0000 - 0x103aa5fff libFontRegistryUI.dylib (x86_64) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib 164 | 0x103c14000 - 0x103c18fff libCGXType.A.dylib (x86_64) <3010D3F9-C3A9-3D2E-ACDD-9020FB17482E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 165 | 0x104e44000 - 0x104e70fff libRIP.A.dylib (x86_64) <606E69AD-20AD-3517-B304-AD03F68CF47D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 166 | 0x1059b7000 - 0x105b75fff com.apple.opengl (x86_64) <1BD4D913-CE6C-3389-B4E1-FC7352E4C23F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine 167 | 0x105bac000 - 0x105d1cfff libGLProgrammability.dylib (x86_64) <3E488CEF-5751-3073-B8EE-0B4CA39CB6AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 168 | 0x105d54000 - 0x105d61fff libGPUSupport.dylib (x86_64) <7860F083-3F7B-3811-A56C-E8557A90C7DB> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport.dylib 169 | 0x105d68000 - 0x105d93fff com.apple.opengl (x86_64) <055EC8E7-2D7E-370C-96AD-DBEEDB106927> /System/Library/Frameworks/OpenGL.framework/Resources//GLRendererFloat.bundle/GLRendererFloat 170 | 0x105d9c000 - 0x105da5fff libcldcpuengine.dylib (x86_64) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 171 | 0x105dcd000 - 0x105dcdfff cl_kernels (x86_64) <0F997364-3D32-46F0-868E-A51A6476C487> cl_kernels 172 | 0x106320000 - 0x106321fff cl_kernels (x86_64) <275060ED-DD93-4D21-86D6-82F937742016> cl_kernels 173 | 0x106328000 - 0x106329fff cl_kernels (x86_64) cl_kernels 174 | 0x1064ac000 - 0x1064acfff cl_kernels (x86_64) <4C243299-E72E-4663-AEA2-0B345AA6B9CA> cl_kernels 175 | 0x1065fc000 - 0x106696fff com.apple.opencl (x86_64) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib 176 | 0x10799c000 - 0x1079b2fff WebContentAnalysis (x86_64) <1C3967C0-93B5-3D98-AC74-393EEAEA5505> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis 177 | 0x107b8e000 - 0x107bb2fff com.apple.security.csparser (x86_64) <5202D850-7782-340F-94B3-45916DB9BC94> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser 178 | 0x107e8b000 - 0x107e8cfff cl_kernels (x86_64) <0B805CF5-8C05-44D6-900E-94E944711C8C> cl_kernels 179 | 0x10a9f0000 - 0x10aa7afff XQuery (x86_64) <04E0E165-BE1D-3DD7-899F-10AFD053B30C> /System/Library/PrivateFrameworks/XQuery.framework/XQuery 180 | 0x10c319000 - 0x10c319fff cl_kernels (x86_64) <2B8B3CF9-FD10-480E-955E-3370488E41F9> cl_kernels 181 | 0x10ce75000 - 0x10ce7bfff libCGXCoreImage.A.dylib (x86_64) <971D9275-C3C8-3B4F-AA38-F17E8D58B6B3> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib 182 | 0x10d5e4000 - 0x10d5e5fff ATSHI.dylib (x86_64) <8727FE94-7CED-3691-89E8-02BA300B4313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 183 | 0x1139e6000 - 0x113a7ffff com.apple.opencl (x86_64) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_argb.dylib 184 | 0x200000000 - 0x20092efff com.apple.GeForceGLDriver (x86_64) <8CD2D18D-F88B-3953-84EC-715320EFCD8F> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver 185 | 0x7fff8d48a000 - 0x7fff8d4b2fff libJPEG.dylib (x86_64) <4E159C31-1B41-3EFF-89EC-3F7BC9053F2C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 186 | 0x7fff8d4d4000 - 0x7fff8d50afff com.apple.DebugSymbols (x86_64) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 187 | 0x7fff8d50b000 - 0x7fff8d51ffff com.apple.speech.synthesis.framework (x86_64) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 188 | 0x7fff8d54a000 - 0x7fff8d565fff com.apple.frameworks.preferencepanes (x86_64) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes 189 | 0x7fff8d5b6000 - 0x7fff8d5c0fff libcsfde.dylib (x86_64) <08092C5B-2171-3C1D-A98F-CF499A315DDC> /usr/lib/libcsfde.dylib 190 | 0x7fff8d5c1000 - 0x7fff8d5d6fff com.apple.ImageCapture (x86_64) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 191 | 0x7fff8d63f000 - 0x7fff8d64cfff libbz2.1.0.dylib (x86_64) /usr/lib/libbz2.1.0.dylib 192 | 0x7fff8d6d0000 - 0x7fff8d733fff com.apple.audio.CoreAudio (x86_64) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 193 | 0x7fff8d734000 - 0x7fff8d749fff libdispatch.dylib (x86_64) /usr/lib/system/libdispatch.dylib 194 | 0x7fff8d7f2000 - 0x7fff8d7f4fff com.apple.securityhi (x86_64) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 195 | 0x7fff8d7f5000 - 0x7fff8d821fff com.apple.quartzfilters (x86_64) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 196 | 0x7fff8d864000 - 0x7fff8d88bfff com.apple.PerformanceAnalysis (x86_64) <96A89CD5-16E9-37CA-8740-22B5DB5A4679> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 197 | 0x7fff8d88c000 - 0x7fff8d8a7fff libsystem_kernel.dylib (x86_64) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib 198 | 0x7fff8d8a8000 - 0x7fff8dbd8fff com.apple.HIToolbox (x86_64) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 199 | 0x7fff8dbd9000 - 0x7fff8dbebfff libz.1.dylib (x86_64) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib 200 | 0x7fff8dc47000 - 0x7fff8dcc9fff com.apple.Heimdal (x86_64) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 201 | 0x7fff8dcca000 - 0x7fff8deb4fff com.apple.CoreFoundation (x86_64) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 202 | 0x7fff8defd000 - 0x7fff8defffff com.apple.EFILogin (x86_64) <6C1E7ED7-8FC7-308E-AD17-4C766E936519> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 203 | 0x7fff8e450000 - 0x7fff8e5dbfff com.apple.WebKit (x86_64) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 204 | 0x7fff8e5e1000 - 0x7fff8e636fff libTIFF.dylib (x86_64) <0CA1662F-EB05-34DE-B9BA-0A03EC59B846> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 205 | 0x7fff8e637000 - 0x7fff8e665fff com.apple.CoreServicesInternal (x86_64) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 206 | 0x7fff8e666000 - 0x7fff8e764fff com.apple.QuickLookUIFramework (x86_64) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 207 | 0x7fff8e765000 - 0x7fff8e765fff com.apple.Cocoa (x86_64) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 208 | 0x7fff8e766000 - 0x7fff8e7fafff com.apple.CorePDF (x86_64) /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 209 | 0x7fff8e7fb000 - 0x7fff8e88bfff libCoreStorage.dylib (x86_64) <2FFB6BCA-3033-3AC1-BCE4-ED102DCBECD5> /usr/lib/libCoreStorage.dylib 210 | 0x7fff8e88c000 - 0x7fff8ec17fff com.apple.FinderKit (x86_64) <7956AB84-AB7A-3B00-A543-76E5CD708881> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit 211 | 0x7fff8ec18000 - 0x7fff8ec6ffff com.apple.ScalableUserInterface (x86_64) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface 212 | 0x7fff8ec74000 - 0x7fff8ecadfff libssl.0.9.8.dylib (x86_64) <46DF85DC-18FB-3108-91F6-52AE3EBF2347> /usr/lib/libssl.0.9.8.dylib 213 | 0x7fff8ecaf000 - 0x7fff8ecb5fff libunwind.dylib (x86_64) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib 214 | 0x7fff8ecb6000 - 0x7fff8eda7fff com.apple.DiskImagesFramework (x86_64) <5C56181F-1E9F-336A-B7BB-620565A8BD6E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 215 | 0x7fff8eda8000 - 0x7fff8edacfff com.apple.TCC (x86_64) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 216 | 0x7fff8edad000 - 0x7fff8ee06fff com.apple.ImageCaptureCore (x86_64) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 217 | 0x7fff8ee07000 - 0x7fff8ee14fff com.apple.HelpData (x86_64) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData 218 | 0x7fff8ee15000 - 0x7fff8ee94fff com.apple.securityfoundation (x86_64) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 219 | 0x7fff8ee95000 - 0x7fff8eebafff libc++abi.dylib (x86_64) /usr/lib/libc++abi.dylib 220 | 0x7fff8eebd000 - 0x7fff8f42dfff com.apple.CoreAUC (x86_64) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 221 | 0x7fff8f52d000 - 0x7fff8f544fff com.apple.GenerationalStorage (x86_64) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 222 | 0x7fff8f54a000 - 0x7fff8f564fff com.apple.CoreMediaAuthoring (x86_64) <5637F52D-3AB9-38FD-B851-265B9F5A2FE8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 223 | 0x7fff8f565000 - 0x7fff8f574fff libxar.1.dylib (x86_64) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib 224 | 0x7fff8f575000 - 0x7fff8f88cfff com.apple.CoreServices.CarbonCore (x86_64) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 225 | 0x7fff8f9e7000 - 0x7fff8f9eafff libdyld.dylib (x86_64) /usr/lib/system/libdyld.dylib 226 | 0x7fff8f9eb000 - 0x7fff8f9f7fff com.apple.CrashReporterSupport (x86_64) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 227 | 0x7fff8f9f8000 - 0x7fff8fb10fff libobjc.A.dylib (x86_64) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib 228 | 0x7fff8fb50000 - 0x7fff8fb54fff com.apple.IOSurface (x86_64) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 229 | 0x7fff8fb55000 - 0x7fff8fbaffff com.apple.opencl (x86_64) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 230 | 0x7fff8fbb0000 - 0x7fff8fbfffff libFontRegistry.dylib (x86_64) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 231 | 0x7fff8fc00000 - 0x7fff90bbffff com.apple.WebCore (x86_64) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 232 | 0x7fff90bc0000 - 0x7fff90c66fff com.apple.CoreServices.OSServices (x86_64) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 233 | 0x7fff90c67000 - 0x7fff90c72fff libsystem_notify.dylib (x86_64) /usr/lib/system/libsystem_notify.dylib 234 | 0x7fff90c73000 - 0x7fff90ce3fff com.apple.ISSupport (x86_64) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport 235 | 0x7fff90d0d000 - 0x7fff90e0afff libsqlite3.dylib (x86_64) /usr/lib/libsqlite3.dylib 236 | 0x7fff90e0b000 - 0x7fff90f91fff com.apple.Accelerate.vecLib (x86_64) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 237 | 0x7fff90f92000 - 0x7fff91bbffff com.apple.AppKit (x86_64) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 238 | 0x7fff91bc0000 - 0x7fff91bc8fff liblaunch.dylib (x86_64) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib 239 | 0x7fff91bc9000 - 0x7fff91bcffff com.apple.DiskArbitration (x86_64) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 240 | 0x7fff91bd3000 - 0x7fff91c04fff com.apple.DictionaryServices (x86_64) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 241 | 0x7fff91c05000 - 0x7fff91c4dfff libcurl.4.dylib (x86_64) /usr/lib/libcurl.4.dylib 242 | 0x7fff91c4e000 - 0x7fff91c7cfff com.apple.shortcut (x86_64) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 243 | 0x7fff91cc7000 - 0x7fff920befff com.apple.Accelerate.vecLib (x86_64) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 244 | 0x7fff920e2000 - 0x7fff920f9fff libGL.dylib (x86_64) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 245 | 0x7fff920fa000 - 0x7fff920fcfff libquarantine.dylib (x86_64) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib 246 | 0x7fff922f6000 - 0x7fff92303fff com.apple.AppleFSCompression (x86_64) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 247 | 0x7fff92304000 - 0x7fff92363fff com.apple.AE (x86_64) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 248 | 0x7fff92364000 - 0x7fff92599fff com.apple.CoreData (x86_64) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 249 | 0x7fff925a7000 - 0x7fff925d2fff com.apple.datadetectors (x86_64) <565AFA08-B5CA-3F64-9CD4-F2D9DCFA276E> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors 250 | 0x7fff92630000 - 0x7fff9266afff com.apple.GSS (x86_64) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 251 | 0x7fff9266b000 - 0x7fff926c2fff com.apple.AppleVAFramework (x86_64) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 252 | 0x7fff926c3000 - 0x7fff9271ffff com.apple.QuickLookFramework (x86_64) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 253 | 0x7fff92720000 - 0x7fff92720fff com.apple.Accelerate (x86_64) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 254 | 0x7fff92721000 - 0x7fff92725fff libGIF.dylib (x86_64) <326C48F1-C892-3AF9-94BC-32768EFF6731> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 255 | 0x7fff92726000 - 0x7fff92726fff com.apple.quartzframework (x86_64) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 256 | 0x7fff9277e000 - 0x7fff9278cfff libcommonCrypto.dylib (x86_64) /usr/lib/system/libcommonCrypto.dylib 257 | 0x7fff9278d000 - 0x7fff927dafff com.apple.CoreMediaIO (x86_64) <8FD1C1A9-25C5-3B9E-A76D-BE813253B358> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 258 | 0x7fff927db000 - 0x7fff92843fff libc++.1.dylib (x86_64) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib 259 | 0x7fff92844000 - 0x7fff92851fff com.apple.NetAuth (x86_64) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 260 | 0x7fff92852000 - 0x7fff93037fff com.apple.GeForceGLDriver (x86_64) /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib 261 | 0x7fff93462000 - 0x7fff93483fff com.apple.Ubiquity (x86_64) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 262 | 0x7fff93484000 - 0x7fff934b2fff libsystem_m.dylib (x86_64) /usr/lib/system/libsystem_m.dylib 263 | 0x7fff935de000 - 0x7fff935e4fff libmacho.dylib (x86_64) /usr/lib/system/libmacho.dylib 264 | 0x7fff935e5000 - 0x7fff935e6fff libodfde.dylib (x86_64) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib 265 | 0x7fff935ee000 - 0x7fff93a0bfff com.apple.vision.FaceCoreLight (x86_64) /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight 266 | 0x7fff93a0c000 - 0x7fff93cbbfff com.apple.imageKit (x86_64) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 267 | 0x7fff93cbc000 - 0x7fff93cc0fff libCoreVMClient.dylib (x86_64) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 268 | 0x7fff93cc1000 - 0x7fff93cc1fff com.apple.ApplicationServices (x86_64) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 269 | 0x7fff93cc2000 - 0x7fff93cf8fff libsystem_info.dylib (x86_64) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib 270 | 0x7fff93cf9000 - 0x7fff93dd3fff com.apple.backup.framework (x86_64) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 271 | 0x7fff93dd4000 - 0x7fff93de7fff com.apple.LangAnalysis (x86_64) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 272 | 0x7fff947b6000 - 0x7fff948d6fff com.apple.desktopservices (x86_64) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 273 | 0x7fff948d7000 - 0x7fff948d7fff com.apple.AOSMigrate (x86_64) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate 274 | 0x7fff948d8000 - 0x7fff94b33fff com.apple.QuartzComposer (x86_64) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 275 | 0x7fff94b34000 - 0x7fff94b85fff com.apple.SystemConfiguration (x86_64) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 276 | 0x7fff94b86000 - 0x7fff94bc3fff libGLImage.dylib (x86_64) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 277 | 0x7fff94bc4000 - 0x7fff94c5efff com.apple.Accelerate.vecLib (x86_64) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 278 | 0x7fff94c5f000 - 0x7fff94d61fff libJP2.dylib (x86_64) <01E502E9-7FD3-3A5D-8EA4-2DC8C56E0497> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 279 | 0x7fff94d6f000 - 0x7fff94daafff com.apple.LDAPFramework (x86_64) <7E4F2C08-0010-34AE-BC46-149B7EE8A0F5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 280 | 0x7fff94dab000 - 0x7fff94df7fff com.apple.framework.CoreWLAN (x86_64) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 281 | 0x7fff94df8000 - 0x7fff94e2cfff com.apple.securityinterface (x86_64) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 282 | 0x7fff94e9d000 - 0x7fff94ee7fff libGLU.dylib (x86_64) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 283 | 0x7fff94ee8000 - 0x7fff94f42fff com.apple.print.framework.PrintCore (x86_64) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 284 | 0x7fff94f43000 - 0x7fff94f45fff com.apple.TrustEvaluationAgent (x86_64) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 285 | 0x7fff94f46000 - 0x7fff94ff8fff com.apple.LaunchServices (x86_64) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 286 | 0x7fff9517f000 - 0x7fff9521afff com.apple.CoreSymbolication (x86_64) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 287 | 0x7fff95267000 - 0x7fff952c1fff com.apple.Suggestions (x86_64) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions 288 | 0x7fff952ef000 - 0x7fff9572bfff com.apple.VideoToolbox (x86_64) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 289 | 0x7fff9572c000 - 0x7fff9572ffff libRadiance.dylib (x86_64) <139962CD-21E2-3D31-9F47-D5F2D6C2C2BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 290 | 0x7fff95730000 - 0x7fff95770fff com.apple.MediaKit (x86_64) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 291 | 0x7fff95771000 - 0x7fff95778fff com.apple.phonenumbers (x86_64) /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers 292 | 0x7fff9610a000 - 0x7fff96113fff com.apple.CommerceCore (x86_64) <870C7810-0D27-3AC5-95A0-3224BB4890C0> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 293 | 0x7fff96114000 - 0x7fff96122fff com.apple.Librarian (x86_64) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian 294 | 0x7fff96123000 - 0x7fff961a3fff com.apple.ApplicationServices.ATS (x86_64) <0EF1BB57-71AA-304D-A455-55CBE0A4983A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 295 | 0x7fff961a4000 - 0x7fff96257fff com.apple.PDFKit (x86_64) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 296 | 0x7fff96258000 - 0x7fff96529fff com.apple.security (x86_64) <87489F4C-750E-3183-B404-215097E71054> /System/Library/Frameworks/Security.framework/Versions/A/Security 297 | 0x7fff96538000 - 0x7fff9653ffff com.apple.NetFS (x86_64) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 298 | 0x7fff96569000 - 0x7fff96820fff com.apple.MediaToolbox (x86_64) <57043584-98E7-375A-89AE-F46480AA5D97> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 299 | 0x7fff96826000 - 0x7fff96830fff com.apple.speech.recognition.framework (x86_64) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 300 | 0x7fff96874000 - 0x7fff9689bfff com.apple.speech.LatentSemanticMappingFramework (x86_64) /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping 301 | 0x7fff9689c000 - 0x7fff96b09fff com.apple.RawCamera.bundle (x86_64) <1588CEC6-012E-30E5-BF38-5BBDABB2F48F> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 302 | 0x7fff96b0a000 - 0x7fff96b0afff libkeymgr.dylib (x86_64) /usr/lib/system/libkeymgr.dylib 303 | 0x7fff96b0b000 - 0x7fff96b57fff libauto.dylib (x86_64) /usr/lib/libauto.dylib 304 | 0x7fff96b58000 - 0x7fff96e1cfff com.apple.AddressBook.framework (x86_64) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook 305 | 0x7fff96e1d000 - 0x7fff96eeffff com.apple.CoreText (x86_64) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 306 | 0x7fff96ef5000 - 0x7fff9706afff com.apple.CFNetwork (x86_64) <03663F71-3E01-3958-9BBC-D7015189A4AC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 307 | 0x7fff9706b000 - 0x7fff9713efff com.apple.DiscRecording (x86_64) <8CC25B07-D5C8-3BE0-A3AD-700252C2717A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 308 | 0x7fff9713f000 - 0x7fff9718afff com.apple.CoreMedia (x86_64) <64467905-48DC-37F9-9F32-186768CF2640> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 309 | 0x7fff9718b000 - 0x7fff97196fff com.apple.bsd.ServiceManagement (x86_64) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 310 | 0x7fff97197000 - 0x7fff9719afff libutil.dylib (x86_64) /usr/lib/libutil.dylib 311 | 0x7fff971e5000 - 0x7fff97207fff com.apple.Kerberos (x86_64) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 312 | 0x7fff97208000 - 0x7fff9721bfff libbsm.0.dylib (x86_64) /usr/lib/libbsm.0.dylib 313 | 0x7fff9721c000 - 0x7fff9725ffff com.apple.RemoteViewServices (x86_64) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 314 | 0x7fff97260000 - 0x7fff972bcfff com.apple.Symbolication (x86_64) <84D69A46-BB0A-3DBE-ABC2-B767F61EC221> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 315 | 0x7fff972bd000 - 0x7fff9742efff com.apple.QTKit (x86_64) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 316 | 0x7fff9742f000 - 0x7fff97461fff com.apple.framework.Admin (x86_64) /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin 317 | 0x7fff97462000 - 0x7fff97481fff libresolv.9.dylib (x86_64) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib 318 | 0x7fff97482000 - 0x7fff97484fff libCVMSPluginSupport.dylib (x86_64) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 319 | 0x7fff97486000 - 0x7fff9759ffff com.apple.ImageIO.framework (x86_64) <1D023BCE-1FA2-3743-B449-7489BC0C5C43> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 320 | 0x7fff975a0000 - 0x7fff975a1fff libremovefile.dylib (x86_64) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib 321 | 0x7fff975e7000 - 0x7fff97946fff com.apple.Foundation (x86_64) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 322 | 0x7fff97947000 - 0x7fff97947fff libOpenScriptingUtil.dylib (x86_64) /usr/lib/libOpenScriptingUtil.dylib 323 | 0x7fff97948000 - 0x7fff9798cfff libcups.2.dylib (x86_64) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib 324 | 0x7fff9798f000 - 0x7fff97991fff com.apple.print.framework.Print (x86_64) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 325 | 0x7fff97992000 - 0x7fff97993fff libSystem.B.dylib (x86_64) /usr/lib/libSystem.B.dylib 326 | 0x7fff97994000 - 0x7fff97b94fff libicucore.A.dylib (x86_64) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib 327 | 0x7fff97bc7000 - 0x7fff97d62fff com.apple.vImage (x86_64) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 328 | 0x7fff97d63000 - 0x7fff97d80fff com.apple.openscripting (x86_64) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 329 | 0x7fff97e9b000 - 0x7fff97e9efff com.apple.AppleSystemInfo (x86_64) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 330 | 0x7fff97ed5000 - 0x7fff97f42fff com.apple.datadetectorscore (x86_64) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 331 | 0x7fff97f94000 - 0x7fff97ffcfff com.apple.Accelerate.vecLib (x86_64) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 332 | 0x7fff9805b000 - 0x7fff980f9fff com.apple.ink.framework (x86_64) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 333 | 0x7fff981b3000 - 0x7fff98361fff com.apple.QuartzCore (x86_64) <84F0B40E-DF91-36F2-9F2E-3922234206A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 334 | 0x7fff98362000 - 0x7fff983cbfff libstdc++.6.dylib (x86_64) /usr/lib/libstdc++.6.dylib 335 | 0x7fff983cc000 - 0x7fff983d7fff com.apple.aps.framework (x86_64) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService 336 | 0x7fff983d8000 - 0x7fff983dbfff com.apple.help (x86_64) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 337 | 0x7fff983dc000 - 0x7fff983defff libunc.dylib (x86_64) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib 338 | 0x7fff984bf000 - 0x7fff98611fff com.apple.audio.toolbox.AudioToolbox (x86_64) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 339 | 0x7fff98615000 - 0x7fff98615fff com.apple.Accelerate.vecLib (x86_64) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 340 | 0x7fff98616000 - 0x7fff9861afff com.apple.CommonPanels (x86_64) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 341 | 0x7fff9865f000 - 0x7fff986e0fff com.apple.Metadata (x86_64) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 342 | 0x7fff986e7000 - 0x7fff986eafff com.apple.LoginUICore (x86_64) <98A808A9-F27D-37A9-84D6-77B61C444F97> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore 343 | 0x7fff986eb000 - 0x7fff986f2fff libGFXShared.dylib (x86_64) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 344 | 0x7fff986f3000 - 0x7fff987bffff libsystem_c.dylib (x86_64) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib 345 | 0x7fff987d9000 - 0x7fff9882ffff com.apple.HIServices (x86_64) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 346 | 0x7fff98abf000 - 0x7fff98b2dfff com.apple.framework.IOKit (x86_64) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 347 | 0x7fff98b2e000 - 0x7fff98b4efff libPng.dylib (x86_64) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 348 | 0x7fff98b4f000 - 0x7fff98b5bfff com.apple.DirectoryService.Framework (x86_64) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 349 | 0x7fff98b68000 - 0x7fff98b69fff liblangid.dylib (x86_64) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib 350 | 0x7fff98b6a000 - 0x7fff98b79fff com.apple.opengl (x86_64) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 351 | 0x7fff98b7a000 - 0x7fff98b7ffff libcompiler_rt.dylib (x86_64) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib 352 | 0x7fff98b80000 - 0x7fff98c82fff libcrypto.0.9.8.dylib (x86_64) /usr/lib/libcrypto.0.9.8.dylib 353 | 0x7fff98c83000 - 0x7fff98cd2fff libcorecrypto.dylib (x86_64) /usr/lib/system/libcorecrypto.dylib 354 | 0x7fff98cd3000 - 0x7fff98d90fff com.apple.ColorSync (x86_64) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 355 | 0x7fff98d91000 - 0x7fff98e1efff com.apple.SearchKit (x86_64) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 356 | 0x7fff98e2c000 - 0x7fff98e64fff libtidy.A.dylib (x86_64) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib 357 | 0x7fff98e65000 - 0x7fff98e9ffff com.apple.framework.internetaccounts (x86_64) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts 358 | 0x7fff98ea5000 - 0x7fff98ea5fff com.apple.CoreServices (x86_64) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 359 | 0x7fff98ea8000 - 0x7fff98ea9fff libDiagnosticMessagesClient.dylib (x86_64) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib 360 | 0x7fff98ebf000 - 0x7fff98ec4fff libcache.dylib (x86_64) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib 361 | 0x7fff98ec5000 - 0x7fff98ec6fff libsystem_blocks.dylib (x86_64) /usr/lib/system/libsystem_blocks.dylib 362 | 0x7fff98ec7000 - 0x7fff98fd3fff libFontParser.dylib (x86_64) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 363 | 0x7fff98fd4000 - 0x7fff98fdffff com.apple.DisplayServicesFW (x86_64) /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 364 | 0x7fff98fe3000 - 0x7fff99002fff com.apple.ChunkingLibrary (x86_64) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 365 | 0x7fff9901f000 - 0x7fff99041fff libxpc.dylib (x86_64) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib 366 | 0x7fff99042000 - 0x7fff991a0fff com.apple.MediaControlSender (x86_64) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 367 | 0x7fff991a1000 - 0x7fff991affff libsystem_network.dylib (x86_64) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib 368 | 0x7fff991cb000 - 0x7fff992e5fff com.apple.coreavchd (x86_64) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 369 | 0x7fff992e6000 - 0x7fff992ebfff com.apple.OpenDirectory (x86_64) <51E52779-4F5A-36B5-9297-67138547DCA9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 370 | 0x7fff992ec000 - 0x7fff99313fff com.apple.framework.familycontrols (x86_64) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 371 | 0x7fff99314000 - 0x7fff99363fff com.apple.framework.CoreWiFi (x86_64) /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi 372 | 0x7fff99364000 - 0x7fff9938efff com.apple.CoreVideo (x86_64) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 373 | 0x7fff993a1000 - 0x7fff993a2fff libsystem_sandbox.dylib (x86_64) /usr/lib/system/libsystem_sandbox.dylib 374 | 0x7fff993a3000 - 0x7fff993abfff libsystem_dnssd.dylib (x86_64) /usr/lib/system/libsystem_dnssd.dylib 375 | 0x7fff993ac000 - 0x7fff993c3fff com.apple.CFOpenDirectory (x86_64) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 376 | 0x7fff993ce000 - 0x7fff99411fff com.apple.bom (x86_64) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 377 | 0x7fff99429000 - 0x7fff994eefff com.apple.coreui (x86_64) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 378 | 0x7fff994ef000 - 0x7fff994effff com.apple.vecLib (x86_64) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 379 | 0x7fff994fe000 - 0x7fff994fefff com.apple.audio.units.AudioUnit (x86_64) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 380 | 0x7fff9950a000 - 0x7fff9950afff com.apple.Carbon (x86_64) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 381 | 0x7fff9950b000 - 0x7fff99521fff com.apple.MultitouchSupport.framework (x86_64) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 382 | 0x7fff99522000 - 0x7fff99526fff libpam.2.dylib (x86_64) /usr/lib/libpam.2.dylib 383 | 0x7fff99527000 - 0x7fff99538fff libsasl2.2.dylib (x86_64) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib 384 | 0x7fff99539000 - 0x7fff9962efff libiconv.2.dylib (x86_64) /usr/lib/libiconv.2.dylib 385 | 0x7fff9962f000 - 0x7fff9966efff com.apple.QD (x86_64) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 386 | 0x7fff9966f000 - 0x7fff9969bfff com.apple.framework.Apple80211 (x86_64) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 387 | 0x7fff9969c000 - 0x7fff996aafff libkxld.dylib (x86_64) /usr/lib/system/libkxld.dylib 388 | 0x7fff996ab000 - 0x7fff9994ffff com.apple.CoreImage (x86_64) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 389 | 0x7fff99950000 - 0x7fff9995bfff com.apple.CommonAuth (x86_64) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 390 | 0x7fff999bc000 - 0x7fff999e7fff libxslt.1.dylib (x86_64) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib 391 | 0x7fff99a9b000 - 0x7fff99d1cfff com.apple.AOSKit (x86_64) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit 392 | 0x7fff99d78000 - 0x7fff9a013fff com.apple.JavaScriptCore (x86_64) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 393 | 0x7fff9a069000 - 0x7fff9a08afff libCRFSuite.dylib (x86_64) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib 394 | 0x7fff9a08d000 - 0x7fff9a18afff libxml2.2.dylib (x86_64) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib 395 | 0x7fff9a18b000 - 0x7fff9a192fff libcopyfile.dylib (x86_64) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib 396 | 0x7fff9a193000 - 0x7fff9a194fff libdnsinfo.dylib (x86_64) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib -------------------------------------------------------------------------------- /tests/fixtures/handcrafted.txt: -------------------------------------------------------------------------------- 1 | Incident Identifier: 5C32DF84-31A0-43E7-87D0-239F7F594940 2 | CrashReporter Key: TODO 3 | Hardware Model: MacBookPro14,3 4 | Process: YetAnotherMac [49028] 5 | Path: /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/MacOS/YetAnotherMac 6 | Identifier: com.YourCompany.YetAnotherMac 7 | Version: 4.21.1 8 | Code Type: X86-64 9 | Parent Process: launchd [1] 10 | 11 | Date/Time: 2019-01-09 17:42:22 +0000 12 | OS Version: Mac OS X 10.14.0 (18A391) 13 | Report Version: 104 14 | 15 | Exception Type: SIGSEGV 16 | Exception Codes: SEGV_MAPERR at 0x88 17 | Crashed Thread: 5 18 | 19 | Application Specific Information: 20 | objc_msgSend() selector name: respondsToSelector: 21 | more information here 22 | 23 | Thread 0: 24 | 0 libsystem_kernel.dylib 0x00007fff61bc6c2a 0x7fff61bc6000 + 3114 25 | 1 CoreFoundation 0x00007fff349f505e 0x7fff349b9000 + 245854 26 | 2 CoreFoundation 0x00007fff349f45ad 0x7fff349b9000 + 243117 27 | 3 CoreFoundation 0x00007fff349f3ce4 0x7fff349b9000 + 240868 28 | 4 HIToolbox 0x00007fff33c8d895 0x7fff33c83000 + 43157 29 | 5 HIToolbox 0x00007fff33c8d5cb 0x7fff33c83000 + 42443 30 | 6 HIToolbox 0x00007fff33c8d348 0x7fff33c83000 + 41800 31 | 7 AppKit 0x00007fff31f4a95b 0x7fff31f30000 + 108891 32 | 8 AppKit 0x00007fff31f496fa 0x7fff31f30000 + 104186 33 | 9 AppKit 0x00007fff31f4375d 0x7fff31f30000 + 79709 34 | 10 YetAnotherMac 0x0000000108b7092b 0x10864e000 + 5384491 35 | 11 YetAnotherMac 0x0000000108b702a6 a_function_here + 64 36 | 12 libdyld.dylib 0x00007fff61a8e085 start + 0 37 | 13 YetanotherMac 0x00000000000ea004 main (main.m:16) 38 | 39 | Thread 1 Crashed: Test Thread Name 40 | 0 libsystem_kernel.dylib 0x00007fff61bc85be 0x7fff61bc6000 + 9662 41 | 1 libsystem_pthread.dylib 0x00007fff61c7f415 0x7fff61c7d000 + 9237 42 | 2 ??? 0x0000000054485244 0x0 + 0 43 | 44 | Thread 1 crashed with X86-64 Thread State: 45 | rip: 0x00000001090a0132 rbp: 0x0000700015a616d0 rsp: 0x0000700015a613f0 rax: 0x20261bb4775b008f 46 | rbx: 0x0000000000000000 rcx: 0x00000001288266c0 rdx: 0x0000000000000001 rdi: 0x0000000000000000 47 | rsi: 0x0000000000000000 r8: 0x0000000000000003 r9: 0x0000000000000010 r10: 0x0000000000000000 48 | r11: 0x00000000ffffffff r12: 0x0000000000000008 r13: 0x000000011e800b00 r14: 0x0000000000000001 49 | r15: 0x0000000000000000 rflags: 0x0000000000010206 cs: 0x000000000000002b fs: 0x0000000000000000 50 | gs: 0x0000000000000000 51 | 52 | Binary Images: 53 | 0x10864e000 - 0x10ee0ffff +YetAnotherMac x86_64 (400.9.4 - 1.0.0) <2d903291397d3d14bfca52c7fb8c5e00> /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/MacOS/YetAnotherMac 54 | 0x112bb2000 - 0x112dc3fff libPhysX3PROFILE.dylib x86_64 (0.0.0 - 0.0.0) <6deccee4a0523ea4bb67957b06f53ad1> /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPhysX3PROFILE.dylib 55 | 0x112fc0000 - 0x112ff5fff libPhysX3CookingPROFILE.dylib x86_64 (0.0.0 - 0.0.0) <5e012a646cc536f19b4da0564049169b> /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPhysX3CookingPROFILE.dylib 56 | 0x113013000 - 0x11317afff libPhysX3CommonPROFILE.dylib x86_64 (0.0.0 - 0.0.0) <9c19854471943de6b67e4cc27eed2eab> /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPhysX3CommonPROFILE.dylib 57 | 0x1131fa000 - 0x113200fff libPxFoundationPROFILE.dylib x86_64 (400.9.0 - 1.0.0) <890f0997f90435449af7cf011f09a06e> /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPxFoundationPROFILE.dylib -------------------------------------------------------------------------------- /tests/fixtures/spaces.txt: -------------------------------------------------------------------------------- 1 | Thread 0: 2 | 0 App Namespace 0x0000000102268e70 0x10211c000 + 1363568 3 | 1 App Namespace 0x0000000102268550 0x10211c000 + 1361232 4 | 2 App Namespace 0x000000010226860c 0x10211c000 + 1361420 5 | 3 UIKitCore 0x00000001b81d6948 0x1b7609000 + 12376392 6 | 4 UIKitCore 0x00000001b81d6464 0x1b7609000 + 12375140 7 | 5 UIKitCore 0x00000001b81d6b64 0x1b7609000 + 12376932 8 | 6 UIKitCore 0x00000001b8015c84 0x1b7609000 + 10538116 9 | 7 UIKitCore 0x00000001b80057d4 0x1b7609000 + 10471380 10 | 8 UIKitCore 0x00000001b8035744 0x1b7609000 + 10667844 11 | 9 CoreFoundation 0x00000001b3f03e68 0x1b3e5b000 + 691816 12 | 10 CoreFoundation 0x00000001b3efed54 0x1b3e5b000 + 671060 13 | 11 CoreFoundation 0x00000001b3eff320 0x1b3e5b000 + 672544 14 | 12 CoreFoundation 0x00000001b3efeadc 0x1b3e5b000 + 670428 15 | 13 GraphicsServices 0x00000001bde9f328 0x1bde9c000 + 13096 16 | 14 UIKitCore 0x00000001b800c63c 0x1b7609000 + 10499644 17 | 15 App Namespace 0x000000010212d008 0x10211c000 + 69640 18 | 16 libdyld.dylib 0x00000001b3d88360 0x1b3d87000 + 4960 19 | 20 | Binary Images: 21 | 0x10211c000 - 0x1024b3fff App Namespace arm64 /private/var/containers/Bundle/Application/012CABCB-BD5B-1234-AE44-3215BF57D1CD/App Namespace Some.app/App Namespace 22 | 0x1b3dc2000 - 0x1b3e18fff libc++.1.dylib arm64 <6bc32e62110531eebcdeab97b76d5507> /usr/lib/libc++.1.dylib 23 | 0x102638000 - 0x10266bfff SomeNet arm64 <0e89aabbddd33bfd90e2f2da54d3da23> /private/var/containers/Bundle/Application/012CABCB-BD5B-4881-AE44-3215BF57D1CD/App Namespace Some.app/Frameworks/some.framework/SomeNet 24 | 0x1b4237000 - 0x1b44f0fff Foundation arm64 <7b1733b174c93a338a58853b0a029826> /System/Library/Frameworks/Foundation.framework/Foundation 25 | 0x102a20000 - 0x102ca3fff SharedIOSFramework arm64 <004d54f641393bae8f166277368ff79e> /private/var/containers/Bundle/Application/012CABCB-BD5B-4881-AE44-3215BF57D1CD/App Namespace Some.app/Frameworks/SharedIOSFramework.framework/SharedIOSFramework 26 | 0x1b71c7000 - 0x1b7527fff CFNetwork arm64 <59b74c73dcc33a999647189b124b265b> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 27 | 0x1c08b8000 - 0x1c0a7afff CoreMotion arm64 <86e7ee42c1f936fb9bf0af733547d042> /System/Library/Frameworks/CoreMotion.framework/CoreMotion 28 | 0x1b3e5b000 - 0x1b41cffff CoreFoundation arm64 <7519e99910533367b9d58844f6d3bdc6> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 29 | 0x1b7609000 - 0x1b86cffff UIKitCore arm64 /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 30 | 0x1bde9c000 - 0x1bdea4fff GraphicsServices arm64 /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 31 | 0x1c2c99000 - 0x1c39fbfff JavaScriptCore arm64 /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 32 | 0x1b3bf7000 - 0x1b3c6bfff libdispatch.dylib arm64 /usr/lib/system/libdispatch.dylib 33 | 0x1b3d87000 - 0x1b3db8fff libdyld.dylib arm64 <7b531a153e73318590e2b88d9476da5e> /usr/lib/system/libdyld.dylib 34 | 0x1b3d59000 - 0x1b3d86fff libsystem_kernel.dylib arm64 <1b7d718405d63a83bb1bf9af6aef61f3> /usr/lib/system/libsystem_kernel.dylib 35 | 0x1b3c97000 - 0x1b3ca7fff libsystem_pthread.dylib arm64 <1ff7a2fb9f2837b7af39344206a322bd> /usr/lib/system/libsystem_pthread.dylib 36 | 0x1bfe9a000 - 0x1bffe6fff WebKitLegacy arm64 /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 37 | 0x1bbaeb000 - 0x1bd6dffff WebCore arm64 <83a4a19111a0313897dcef1313f78bae> /System/Library/PrivateFrameworks/WebCore.framework/WebCore 38 | -------------------------------------------------------------------------------- /tests/snapshots/test_snapshots__XCDYouTubeKit-54.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/test_snapshots.rs 3 | expression: "&report" 4 | 5 | --- 6 | incident_identifier: 00000000-0000-0000-0000-000000000000 7 | timestamp: "2014-07-16T00:25:09Z" 8 | code_type: X86-64 9 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/MacOS/iTubeDownloader 10 | report_version: 106 11 | metadata: 12 | Exception Codes: SEGV_MAPERR at 0x8 13 | Exception Type: SIGSEGV 14 | Framework Version: "1.0" 15 | Hardware Model: "MacBookPro5,3" 16 | Identifier: com.AlphaSoft.iTubeDownloader 17 | OS Version: Mac OS X 10.8.5 (12F45) 18 | Parent Process: "launchd [129]" 19 | Process: "iTubeDownloader [590]" 20 | Version: "512" 21 | threads: 22 | - id: 0 23 | crashed: true 24 | frames: 25 | - module: com.apple.JavaScriptCore 26 | symbol: JSValueIsString 27 | instruction_addr: "0x7fff99d89d4b" 28 | - module: ch.pitaya.xcdyoutubekit 29 | symbol: "-[XCDYouTubePlayerScript unscrambleSignature:]" 30 | instruction_addr: "0x1018b8cad" 31 | - module: ch.pitaya.xcdyoutubekit 32 | symbol: "-[XCDYouTubeVideo initWithIdentifier:info:playerScript:response:error:]" 33 | instruction_addr: "0x1018ba765" 34 | - module: ch.pitaya.xcdyoutubekit 35 | symbol: "-[XCDYouTubeVideoOperation handleVideoInfoResponseWithInfo:playerScript:]" 36 | instruction_addr: "0x1018bc476" 37 | - module: ch.pitaya.xcdyoutubekit 38 | symbol: "-[XCDYouTubeVideoOperation handleJavaScriptPlayerResponse]" 39 | instruction_addr: "0x1018bd905" 40 | - module: ch.pitaya.xcdyoutubekit 41 | symbol: "-[XCDYouTubeVideoOperation connectionDidFinishLoading:]" 42 | instruction_addr: "0x1018be287" 43 | - module: com.apple.Foundation 44 | symbol: "__65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0" 45 | instruction_addr: "0x7fff97604d68" 46 | - module: com.apple.Foundation 47 | symbol: "-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]" 48 | instruction_addr: "0x7fff97604cac" 49 | - module: com.apple.Foundation 50 | symbol: "-[NSURLConnectionInternal _withActiveConnectionAndDelegate:]" 51 | instruction_addr: "0x7fff97604ba8" 52 | - module: com.apple.CFNetwork 53 | symbol: ___delegate_didFinishLoading_block_invoke_0 54 | instruction_addr: "0x7fff96f8ee61" 55 | - module: com.apple.CFNetwork 56 | symbol: ___withDelegateAsync_block_invoke_0 57 | instruction_addr: "0x7fff96f8129a" 58 | - module: com.apple.CFNetwork 59 | symbol: __block_global_1 60 | instruction_addr: "0x7fff97011eba" 61 | - module: com.apple.CoreFoundation 62 | symbol: CFArrayApplyFunction 63 | instruction_addr: "0x7fff8dcfb154" 64 | - module: com.apple.CFNetwork 65 | symbol: _ZN19RunloopBlockContext7performEv 66 | instruction_addr: "0x7fff96f72014" 67 | - module: com.apple.CFNetwork 68 | symbol: _ZN17MultiplexerSource7performEv 69 | instruction_addr: "0x7fff96f71eeb" 70 | - module: com.apple.CoreFoundation 71 | symbol: __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ 72 | instruction_addr: "0x7fff8dcdcb31" 73 | - module: com.apple.CoreFoundation 74 | symbol: __CFRunLoopDoSources0 75 | instruction_addr: "0x7fff8dcdc455" 76 | - module: com.apple.CoreFoundation 77 | symbol: __CFRunLoopRun 78 | instruction_addr: "0x7fff8dcff7f5" 79 | - module: com.apple.CoreFoundation 80 | symbol: CFRunLoopRunSpecific 81 | instruction_addr: "0x7fff8dcff0e2" 82 | - module: com.apple.HIToolbox 83 | symbol: RunCurrentEventLoopInMode 84 | instruction_addr: "0x7fff8d907eb4" 85 | - module: com.apple.HIToolbox 86 | symbol: ReceiveNextEventCommon 87 | instruction_addr: "0x7fff8d907c52" 88 | - module: com.apple.HIToolbox 89 | symbol: BlockUntilNextEventMatchingListInMode 90 | instruction_addr: "0x7fff8d907ae3" 91 | - module: com.apple.AppKit 92 | symbol: _DPSNextEvent 93 | instruction_addr: "0x7fff910e7533" 94 | - module: com.apple.AppKit 95 | symbol: "-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]" 96 | instruction_addr: "0x7fff910e6df2" 97 | - module: com.apple.AppKit 98 | symbol: "-[NSApplication run]" 99 | instruction_addr: "0x7fff910de1a3" 100 | - module: com.apple.AppKit 101 | symbol: NSApplicationMain 102 | instruction_addr: "0x7fff91082bd6" 103 | - module: libdyld.dylib 104 | symbol: start 105 | instruction_addr: "0x7fff8f9e97e1" 106 | registers: 107 | cs: "0x2b" 108 | fs: "0x0" 109 | gs: "0x0" 110 | r10: "0x7fff9a7be319" 111 | r11: "0x7fff99d89cb0" 112 | r12: "0x10d9e7008" 113 | r13: "0x103ac75a0" 114 | r14: "0x0" 115 | r15: "0x7fff7eacfe00" 116 | rax: "0x0" 117 | rbp: "0x7fff5e3fe9a0" 118 | rbx: "0x10d9e7000" 119 | rcx: "0xffff000000000002" 120 | rdi: "0x10d9e9900" 121 | rdx: "0x10d9e7028" 122 | rflags: "0x10246" 123 | rip: "0x7fff99d89d4b" 124 | rsi: "0x10d9e702c" 125 | rsp: "0x7fff5e3fe970" 126 | - id: 1 127 | crashed: false 128 | frames: 129 | - module: libsystem_kernel.dylib 130 | symbol: kevent 131 | instruction_addr: "0x7fff8d89ed16" 132 | - module: libdispatch.dylib 133 | symbol: _dispatch_mgr_thread 134 | instruction_addr: "0x7fff8d7389ee" 135 | - id: 2 136 | crashed: false 137 | frames: 138 | - module: libsystem_kernel.dylib 139 | symbol: __workq_kernreturn 140 | instruction_addr: "0x7fff8d89e6d6" 141 | - module: libsystem_c.dylib 142 | symbol: _pthread_wqthread 143 | instruction_addr: "0x7fff98709ce3" 144 | - module: libsystem_c.dylib 145 | symbol: start_wqthread 146 | instruction_addr: "0x7fff986f4191" 147 | - id: 3 148 | crashed: false 149 | frames: 150 | - module: libsystem_kernel.dylib 151 | symbol: mach_msg_trap 152 | instruction_addr: "0x7fff8d89c686" 153 | - module: com.apple.CoreFoundation 154 | symbol: __CFRunLoopServiceMachPort 155 | instruction_addr: "0x7fff8dcfa233" 156 | - module: com.apple.CoreFoundation 157 | symbol: __CFRunLoopRun 158 | instruction_addr: "0x7fff8dcff916" 159 | - module: com.apple.CoreFoundation 160 | symbol: CFRunLoopRunSpecific 161 | instruction_addr: "0x7fff8dcff0e2" 162 | - module: com.apple.Foundation 163 | symbol: "+[NSURLConnection _resourceLoadLoop:]" 164 | instruction_addr: "0x7fff9761f526" 165 | - module: com.apple.Foundation 166 | symbol: __NSThread__main__ 167 | instruction_addr: "0x7fff9767d532" 168 | - module: libsystem_c.dylib 169 | symbol: _pthread_start 170 | instruction_addr: "0x7fff98707772" 171 | - module: libsystem_c.dylib 172 | symbol: thread_start 173 | instruction_addr: "0x7fff986f41a1" 174 | - id: 4 175 | crashed: false 176 | frames: 177 | - module: libsystem_kernel.dylib 178 | symbol: __psynch_cvwait 179 | instruction_addr: "0x7fff8d89e0fa" 180 | - module: com.apple.CoreVideo 181 | symbol: _ZN13CVDisplayLink9waitUntilEy 182 | instruction_addr: "0x7fff99366ea3" 183 | - module: com.apple.CoreVideo 184 | symbol: _ZN13CVDisplayLink11runIOThreadEv 185 | instruction_addr: "0x7fff99366201" 186 | - module: com.apple.CoreVideo 187 | symbol: _ZL13startIOThreadPv 188 | instruction_addr: "0x7fff99365fd7" 189 | - module: libsystem_c.dylib 190 | symbol: _pthread_start 191 | instruction_addr: "0x7fff98707772" 192 | - module: libsystem_c.dylib 193 | symbol: thread_start 194 | instruction_addr: "0x7fff986f41a1" 195 | - id: 5 196 | crashed: false 197 | frames: 198 | - module: libsystem_kernel.dylib 199 | symbol: __select 200 | instruction_addr: "0x7fff8d89e322" 201 | - module: libsystem_c.dylib 202 | symbol: _pthread_start 203 | instruction_addr: "0x7fff98707772" 204 | - module: libsystem_c.dylib 205 | symbol: thread_start 206 | instruction_addr: "0x7fff986f41a1" 207 | - id: 6 208 | crashed: false 209 | frames: 210 | - module: libsystem_kernel.dylib 211 | symbol: __psynch_cvwait 212 | instruction_addr: "0x7fff8d89e0fa" 213 | - module: com.apple.JavaScriptCore 214 | symbol: _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexEd 215 | instruction_addr: "0x7fff99d7eb66" 216 | - module: com.apple.JavaScriptCore 217 | symbol: _ZN3JSC14BlockAllocator22blockFreeingThreadMainEv 218 | instruction_addr: "0x7fff99fa1bfa" 219 | - module: com.apple.JavaScriptCore 220 | symbol: _ZN3WTFL19wtfThreadEntryPointEPv 221 | instruction_addr: "0x7fff99fb725f" 222 | - module: libsystem_c.dylib 223 | symbol: _pthread_start 224 | instruction_addr: "0x7fff98707772" 225 | - module: libsystem_c.dylib 226 | symbol: thread_start 227 | instruction_addr: "0x7fff986f41a1" 228 | - id: 7 229 | crashed: false 230 | frames: 231 | - module: libsystem_kernel.dylib 232 | symbol: __psynch_cvwait 233 | instruction_addr: "0x7fff8d89e0fa" 234 | - module: com.apple.JavaScriptCore 235 | symbol: _ZN3JSC11SlotVisitor15drainFromSharedENS0_15SharedDrainModeE 236 | instruction_addr: "0x7fff99f049d4" 237 | - module: com.apple.JavaScriptCore 238 | symbol: _ZN3JSC25MarkStackThreadSharedData17markingThreadMainEv 239 | instruction_addr: "0x7fff99f048b6" 240 | - module: com.apple.JavaScriptCore 241 | symbol: _ZN3WTFL19wtfThreadEntryPointEPv 242 | instruction_addr: "0x7fff99fb725f" 243 | - module: libsystem_c.dylib 244 | symbol: _pthread_start 245 | instruction_addr: "0x7fff98707772" 246 | - module: libsystem_c.dylib 247 | symbol: thread_start 248 | instruction_addr: "0x7fff986f41a1" 249 | - id: 8 250 | crashed: false 251 | frames: 252 | - module: libsystem_kernel.dylib 253 | symbol: __psynch_cvwait 254 | instruction_addr: "0x7fff8d89e0fa" 255 | - module: com.apple.JavaScriptCore 256 | symbol: _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexEd 257 | instruction_addr: "0x7fff99d7eb2d" 258 | - module: com.apple.WebCore 259 | symbol: _ZN3WTF12MessageQueueIN7WebCore11StorageTaskEE33waitForMessageFilteredWithTimeoutIFbPS2_EEENS_10PassOwnPtrIS2_EERNS_22MessageQueueWaitResultERT_d 260 | instruction_addr: "0x7fff906ced01" 261 | - module: com.apple.WebCore 262 | symbol: _ZN7WebCore13StorageThread16threadEntryPointEv 263 | instruction_addr: "0x7fff8fc1f12a" 264 | - module: com.apple.JavaScriptCore 265 | symbol: _ZN3WTFL19wtfThreadEntryPointEPv 266 | instruction_addr: "0x7fff99fb725f" 267 | - module: libsystem_c.dylib 268 | symbol: _pthread_start 269 | instruction_addr: "0x7fff98707772" 270 | - module: libsystem_c.dylib 271 | symbol: thread_start 272 | instruction_addr: "0x7fff986f41a1" 273 | - id: 9 274 | crashed: false 275 | frames: 276 | - module: libsystem_kernel.dylib 277 | symbol: mach_msg_trap 278 | instruction_addr: "0x7fff8d89c686" 279 | - module: com.apple.QuartzCore 280 | symbol: _ZN2CA6Render6Server13server_threadEPv 281 | instruction_addr: "0x7fff9827017b" 282 | - module: com.apple.QuartzCore 283 | symbol: thread_fun 284 | instruction_addr: "0x7fff982f4dc6" 285 | - module: libsystem_c.dylib 286 | symbol: _pthread_start 287 | instruction_addr: "0x7fff98707772" 288 | - module: libsystem_c.dylib 289 | symbol: thread_start 290 | instruction_addr: "0x7fff986f41a1" 291 | - id: 10 292 | crashed: false 293 | frames: 294 | - module: libsystem_kernel.dylib 295 | symbol: __workq_kernreturn 296 | instruction_addr: "0x7fff8d89e6d6" 297 | - module: libsystem_c.dylib 298 | symbol: _pthread_wqthread 299 | instruction_addr: "0x7fff98709ce3" 300 | - module: libsystem_c.dylib 301 | symbol: start_wqthread 302 | instruction_addr: "0x7fff986f4191" 303 | - id: 11 304 | crashed: false 305 | frames: 306 | - module: libsystem_kernel.dylib 307 | symbol: __workq_kernreturn 308 | instruction_addr: "0x7fff8d89e6d6" 309 | - module: libsystem_c.dylib 310 | symbol: _pthread_wqthread 311 | instruction_addr: "0x7fff98709ce3" 312 | - module: libsystem_c.dylib 313 | symbol: start_wqthread 314 | instruction_addr: "0x7fff986f4191" 315 | - id: 12 316 | crashed: false 317 | frames: 318 | - module: libsystem_kernel.dylib 319 | symbol: __workq_kernreturn 320 | instruction_addr: "0x7fff8d89e6d6" 321 | - module: libsystem_c.dylib 322 | symbol: _pthread_wqthread 323 | instruction_addr: "0x7fff98709ce3" 324 | - module: libsystem_c.dylib 325 | symbol: start_wqthread 326 | instruction_addr: "0x7fff986f4191" 327 | - id: 13 328 | crashed: false 329 | frames: 330 | - module: libsystem_kernel.dylib 331 | symbol: __semwait_signal 332 | instruction_addr: "0x7fff8d89e386" 333 | - module: libsystem_c.dylib 334 | symbol: usleep 335 | instruction_addr: "0x7fff987916df" 336 | - module: com.apple.AppKit 337 | symbol: "-[NSUIHeartBeat _heartBeatThread:]" 338 | instruction_addr: "0x7fff912cc838" 339 | - module: com.apple.Foundation 340 | symbol: __NSThread__main__ 341 | instruction_addr: "0x7fff9767d532" 342 | - module: libsystem_c.dylib 343 | symbol: _pthread_start 344 | instruction_addr: "0x7fff98707772" 345 | - module: libsystem_c.dylib 346 | symbol: thread_start 347 | instruction_addr: "0x7fff986f41a1" 348 | - id: 14 349 | crashed: false 350 | frames: 351 | - module: libsystem_kernel.dylib 352 | symbol: mach_msg_trap 353 | instruction_addr: "0x7fff8d89c686" 354 | - module: com.apple.CoreFoundation 355 | symbol: __CFRunLoopServiceMachPort 356 | instruction_addr: "0x7fff8dcfa233" 357 | - module: com.apple.CoreFoundation 358 | symbol: __CFRunLoopRun 359 | instruction_addr: "0x7fff8dcff916" 360 | - module: com.apple.CoreFoundation 361 | symbol: CFRunLoopRunSpecific 362 | instruction_addr: "0x7fff8dcff0e2" 363 | - module: com.apple.Foundation 364 | symbol: "-[NSRunLoop(NSRunLoop) runMode:beforeDate:]" 365 | instruction_addr: "0x7fff976827be" 366 | - module: com.apple.Foundation 367 | symbol: "-[NSRunLoop(NSRunLoop) run]" 368 | instruction_addr: "0x7fff9761b18a" 369 | - module: com.AlphaSoft.iTubeDownloader 370 | instruction_addr: "0x10181bc10" 371 | - module: com.apple.Foundation 372 | symbol: __NSThread__main__ 373 | instruction_addr: "0x7fff9767d532" 374 | - module: libsystem_c.dylib 375 | symbol: _pthread_start 376 | instruction_addr: "0x7fff98707772" 377 | - module: libsystem_c.dylib 378 | symbol: thread_start 379 | instruction_addr: "0x7fff986f41a1" 380 | - id: 15 381 | crashed: false 382 | frames: 383 | - module: libsystem_kernel.dylib 384 | symbol: __workq_kernreturn 385 | instruction_addr: "0x7fff8d89e6d6" 386 | - module: libsystem_c.dylib 387 | symbol: _pthread_wqthread 388 | instruction_addr: "0x7fff98709ce3" 389 | - module: libsystem_c.dylib 390 | symbol: start_wqthread 391 | instruction_addr: "0x7fff986f4191" 392 | - id: 16 393 | crashed: false 394 | frames: 395 | - module: libsystem_kernel.dylib 396 | symbol: __psynch_cvwait 397 | instruction_addr: "0x7fff8d89e0fa" 398 | - module: com.apple.JavaScriptCore 399 | symbol: _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexEd 400 | instruction_addr: "0x7fff99d7eb66" 401 | - module: com.apple.JavaScriptCore 402 | symbol: _ZN3JSC14BlockAllocator22blockFreeingThreadMainEv 403 | instruction_addr: "0x7fff99fa1bfa" 404 | - module: com.apple.JavaScriptCore 405 | symbol: _ZN3WTFL19wtfThreadEntryPointEPv 406 | instruction_addr: "0x7fff99fb725f" 407 | - module: libsystem_c.dylib 408 | symbol: _pthread_start 409 | instruction_addr: "0x7fff98707772" 410 | - module: libsystem_c.dylib 411 | symbol: thread_start 412 | instruction_addr: "0x7fff986f41a1" 413 | - id: 17 414 | crashed: false 415 | frames: 416 | - module: libsystem_kernel.dylib 417 | symbol: __psynch_cvwait 418 | instruction_addr: "0x7fff8d89e0fa" 419 | - module: com.apple.JavaScriptCore 420 | symbol: _ZN3JSC11SlotVisitor15drainFromSharedENS0_15SharedDrainModeE 421 | instruction_addr: "0x7fff99f049d4" 422 | - module: com.apple.JavaScriptCore 423 | symbol: _ZN3JSC25MarkStackThreadSharedData17markingThreadMainEv 424 | instruction_addr: "0x7fff99f048b6" 425 | - module: com.apple.JavaScriptCore 426 | symbol: _ZN3WTFL19wtfThreadEntryPointEPv 427 | instruction_addr: "0x7fff99fb725f" 428 | - module: libsystem_c.dylib 429 | symbol: _pthread_start 430 | instruction_addr: "0x7fff98707772" 431 | - module: libsystem_c.dylib 432 | symbol: thread_start 433 | instruction_addr: "0x7fff986f41a1" 434 | binary_images: 435 | - addr: "0x1017ff000" 436 | size: 552959 437 | uuid: 7b639009-221f-3815-a7a3-657098146f8a 438 | arch: (x86_64) 439 | name: com.AlphaSoft.iTubeDownloader 440 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/MacOS/iTubeDownloader 441 | - addr: "0x1018b6000" 442 | size: 53247 443 | uuid: 31136917-6868-3472-b768-eb12d00e37e9 444 | arch: (x86_64) 445 | name: ch.pitaya.xcdyoutubekit 446 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/XCDYouTubeKit.framework/Versions/A/XCDYouTubeKit 447 | - addr: "0x1018d7000" 448 | size: 45055 449 | uuid: 1549ac14-e653-3611-8c6d-b9d80e4578e8 450 | arch: (x86_64) 451 | name: com.devmate.DevMateTracking 452 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateTracking.framework/Versions/A/DevMateTracking 453 | - addr: "0x1018fa000" 454 | size: 176127 455 | uuid: 09c0ea70-4fde-3be3-bd3d-eacd2d887ba4 456 | arch: (x86_64) 457 | name: com.devmate.DevMateActivations 458 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateActivations.framework/Versions/A/DevMateActivations 459 | - addr: "0x101959000" 460 | size: 192511 461 | uuid: 9fe897b2-531c-3e52-950b-d8cd4bfc3001 462 | arch: (x86_64) 463 | name: com.devmate.DevMateIssues 464 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateIssues.framework/Versions/A/DevMateIssues 465 | - addr: "0x1019cf000" 466 | size: 159743 467 | uuid: d0a650a9-b650-3521-867e-22f1f412ce59 468 | arch: (x86_64) 469 | name: com.devmate.DevMateFeedback 470 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateFeedback.framework/Versions/A/DevMateFeedback 471 | - addr: "0x101a36000" 472 | size: 176127 473 | uuid: cd2cd085-fe76-3120-bfbd-2261157e3c56 474 | arch: (x86_64) 475 | name: org.andymatuschak.Sparkle 476 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle 477 | - addr: "0x101a7e000" 478 | size: 10031103 479 | uuid: e3316ba5-1a34-39b1-8fa7-97727488869b 480 | arch: (x86_64) 481 | name: com.apple.CoreGraphics 482 | path: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 483 | - addr: "0x10251b000" 484 | size: 106495 485 | uuid: 1b1e5450-2055-3fdd-801e-ffe8811494ce 486 | arch: (x86_64) 487 | name: coop.plausible.CrashReporter 488 | path: /Users/rogercoody/Desktop/iTubeDownloader.app/Contents/Frameworks/DevMateIssues.framework/Versions/A/Frameworks/CrashReporter.framework/Versions/A/CrashReporter 489 | - addr: "0x103a89000" 490 | size: 53247 491 | uuid: 1ee4c872-5236-3577-a458-691da2b43370 492 | arch: (x86_64) 493 | name: libCSync.A.dylib 494 | path: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 495 | - addr: "0x103aa0000" 496 | size: 24575 497 | uuid: 9f172961-db6f-3a82-9f90-28f9a233f755 498 | arch: (x86_64) 499 | name: libFontRegistryUI.dylib 500 | path: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib 501 | - addr: "0x103c14000" 502 | size: 20479 503 | uuid: 3010d3f9-c3a9-3d2e-acdd-9020fb17482e 504 | arch: (x86_64) 505 | name: libCGXType.A.dylib 506 | path: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib 507 | - addr: "0x104e44000" 508 | size: 184319 509 | uuid: 606e69ad-20ad-3517-b304-ad03f68cf47d 510 | arch: (x86_64) 511 | name: libRIP.A.dylib 512 | path: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 513 | - addr: "0x1059b7000" 514 | size: 1830911 515 | uuid: 1bd4d913-ce6c-3389-b4e1-fc7352e4c23f 516 | arch: (x86_64) 517 | name: com.apple.opengl 518 | path: /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine 519 | - addr: "0x105bac000" 520 | size: 1511423 521 | uuid: 3e488cef-5751-3073-b8ee-0b4ca39cb6ab 522 | arch: (x86_64) 523 | name: libGLProgrammability.dylib 524 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 525 | - addr: "0x105d54000" 526 | size: 57343 527 | uuid: 7860f083-3f7b-3811-a56c-e8557a90c7db 528 | arch: (x86_64) 529 | name: libGPUSupport.dylib 530 | path: /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport.dylib 531 | - addr: "0x105d68000" 532 | size: 180223 533 | uuid: 055ec8e7-2d7e-370c-96ad-dbeedb106927 534 | arch: (x86_64) 535 | name: com.apple.opengl 536 | path: /System/Library/Frameworks/OpenGL.framework/Resources//GLRendererFloat.bundle/GLRendererFloat 537 | - addr: "0x105d9c000" 538 | size: 40959 539 | uuid: b6e3b14b-1eac-3fdd-8aed-87231a033bed 540 | arch: (x86_64) 541 | name: libcldcpuengine.dylib 542 | path: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 543 | - addr: "0x105dcd000" 544 | size: 4095 545 | uuid: 0f997364-3d32-46f0-868e-a51a6476c487 546 | arch: (x86_64) 547 | name: cl_kernels 548 | path: cl_kernels 549 | - addr: "0x106320000" 550 | size: 8191 551 | uuid: 275060ed-dd93-4d21-86d6-82f937742016 552 | arch: (x86_64) 553 | name: cl_kernels 554 | path: cl_kernels 555 | - addr: "0x106328000" 556 | size: 8191 557 | uuid: f6881972-9bb6-4141-bd97-857405af7c39 558 | arch: (x86_64) 559 | name: cl_kernels 560 | path: cl_kernels 561 | - addr: "0x1064ac000" 562 | size: 4095 563 | uuid: 4c243299-e72e-4663-aea2-0b345aa6b9ca 564 | arch: (x86_64) 565 | name: cl_kernels 566 | path: cl_kernels 567 | - addr: "0x1065fc000" 568 | size: 634879 569 | uuid: 5d62bed8-df5d-3c51-94b4-57368ff10ddb 570 | arch: (x86_64) 571 | name: com.apple.opencl 572 | path: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib 573 | - addr: "0x10799c000" 574 | size: 94207 575 | uuid: 1c3967c0-93b5-3d98-ac74-393eeaea5505 576 | arch: (x86_64) 577 | name: WebContentAnalysis 578 | path: /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis 579 | - addr: "0x107b8e000" 580 | size: 151551 581 | uuid: 5202d850-7782-340f-94b3-45916db9bc94 582 | arch: (x86_64) 583 | name: com.apple.security.csparser 584 | path: /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser 585 | - addr: "0x107e8b000" 586 | size: 8191 587 | uuid: 0b805cf5-8c05-44d6-900e-94e944711c8c 588 | arch: (x86_64) 589 | name: cl_kernels 590 | path: cl_kernels 591 | - addr: "0x10a9f0000" 592 | size: 569343 593 | uuid: 04e0e165-be1d-3dd7-899f-10afd053b30c 594 | arch: (x86_64) 595 | name: XQuery 596 | path: /System/Library/PrivateFrameworks/XQuery.framework/XQuery 597 | - addr: "0x10c319000" 598 | size: 4095 599 | uuid: 2b8b3cf9-fd10-480e-955e-3370488e41f9 600 | arch: (x86_64) 601 | name: cl_kernels 602 | path: cl_kernels 603 | - addr: "0x10ce75000" 604 | size: 28671 605 | uuid: 971d9275-c3c8-3b4f-aa38-f17e8d58b6b3 606 | arch: (x86_64) 607 | name: libCGXCoreImage.A.dylib 608 | path: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib 609 | - addr: "0x10d5e4000" 610 | size: 8191 611 | uuid: 8727fe94-7ced-3691-89e8-02ba300b4313 612 | arch: (x86_64) 613 | name: ATSHI.dylib 614 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib 615 | - addr: "0x1139e6000" 616 | size: 630783 617 | uuid: ac4a19d0-44a5-34cb-9248-20996aca6b06 618 | arch: (x86_64) 619 | name: com.apple.opencl 620 | path: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_argb.dylib 621 | - addr: "0x200000000" 622 | size: 9629695 623 | uuid: 8cd2d18d-f88b-3953-84ec-715320efcd8f 624 | arch: (x86_64) 625 | name: com.apple.GeForceGLDriver 626 | path: /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver 627 | - addr: "0x7fff8d48a000" 628 | size: 167935 629 | uuid: 4e159c31-1b41-3eff-89ec-3f7bc9053f2c 630 | arch: (x86_64) 631 | name: libJPEG.dylib 632 | path: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 633 | - addr: "0x7fff8d4d4000" 634 | size: 225279 635 | uuid: 14e788b1-4eb2-3fd7-934b-849534dfc198 636 | arch: (x86_64) 637 | name: com.apple.DebugSymbols 638 | path: /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 639 | - addr: "0x7fff8d50b000" 640 | size: 86015 641 | uuid: 94edf2ab-809c-3d15-bed5-7ad45b2a7c16 642 | arch: (x86_64) 643 | name: com.apple.speech.synthesis.framework 644 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 645 | - addr: "0x7fff8d54a000" 646 | size: 114687 647 | uuid: 8a3cdc5b-9fa5-32eb-a066-f19874193b92 648 | arch: (x86_64) 649 | name: com.apple.frameworks.preferencepanes 650 | path: /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes 651 | - addr: "0x7fff8d5b6000" 652 | size: 45055 653 | uuid: 08092c5b-2171-3c1d-a98f-cf499a315ddc 654 | arch: (x86_64) 655 | name: libcsfde.dylib 656 | path: /usr/lib/libcsfde.dylib 657 | - addr: "0x7fff8d5c1000" 658 | size: 90111 659 | uuid: 17a45ce6-7da3-36a5-b7ef-72bc136981ae 660 | arch: (x86_64) 661 | name: com.apple.ImageCapture 662 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 663 | - addr: "0x7fff8d63f000" 664 | size: 57343 665 | uuid: ce9785e8-b535-3504-b392-82f0064d9af2 666 | arch: (x86_64) 667 | name: libbz2.1.0.dylib 668 | path: /usr/lib/libbz2.1.0.dylib 669 | - addr: "0x7fff8d6d0000" 670 | size: 409599 671 | uuid: feab83ab-1de5-3813-ba48-7a7f2374ccf0 672 | arch: (x86_64) 673 | name: com.apple.audio.CoreAudio 674 | path: /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 675 | - addr: "0x7fff8d734000" 676 | size: 90111 677 | uuid: d26996bf-fc57-39eb-8829-f63585561e09 678 | arch: (x86_64) 679 | name: libdispatch.dylib 680 | path: /usr/lib/system/libdispatch.dylib 681 | - addr: "0x7fff8d7f2000" 682 | size: 12287 683 | uuid: a91f8981-ecb6-3b65-a7ba-8dcbd9cce3d5 684 | arch: (x86_64) 685 | name: com.apple.securityhi 686 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 687 | - addr: "0x7fff8d7f5000" 688 | size: 184319 689 | uuid: b8de45d7-1827-3379-a478-1a574a1d11d9 690 | arch: (x86_64) 691 | name: com.apple.quartzfilters 692 | path: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 693 | - addr: "0x7fff8d864000" 694 | size: 163839 695 | uuid: 96a89cd5-16e9-37ca-8740-22b5db5a4679 696 | arch: (x86_64) 697 | name: com.apple.PerformanceAnalysis 698 | path: /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 699 | - addr: "0x7fff8d88c000" 700 | size: 114687 701 | uuid: 4b7993c3-f62d-3ac1-af92-414a0d6eed5e 702 | arch: (x86_64) 703 | name: libsystem_kernel.dylib 704 | path: /usr/lib/system/libsystem_kernel.dylib 705 | - addr: "0x7fff8d8a8000" 706 | size: 3346431 707 | uuid: 656d08c2-9068-3532-abdd-32ec5057ccb2 708 | arch: (x86_64) 709 | name: com.apple.HIToolbox 710 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 711 | - addr: "0x7fff8dbd9000" 712 | size: 77823 713 | uuid: 2a1551e8-a272-3de5-b692-955974fe1416 714 | arch: (x86_64) 715 | name: libz.1.dylib 716 | path: /usr/lib/libz.1.dylib 717 | - addr: "0x7fff8dc47000" 718 | size: 536575 719 | uuid: acf0c667-5acc-382a-a998-61e85386c814 720 | arch: (x86_64) 721 | name: com.apple.Heimdal 722 | path: /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 723 | - addr: "0x7fff8dcca000" 724 | size: 2011135 725 | uuid: 0f7403ca-2cb8-3d0a-992b-679701df27ca 726 | arch: (x86_64) 727 | name: com.apple.CoreFoundation 728 | path: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 729 | - addr: "0x7fff8defd000" 730 | size: 12287 731 | uuid: 6c1e7ed7-8fc7-308e-ad17-4c766e936519 732 | arch: (x86_64) 733 | name: com.apple.EFILogin 734 | path: /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 735 | - addr: "0x7fff8e450000" 736 | size: 1622015 737 | uuid: 56b86fa1-ed74-3001-8942-1ca2281540ec 738 | arch: (x86_64) 739 | name: com.apple.WebKit 740 | path: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 741 | - addr: "0x7fff8e5e1000" 742 | size: 352255 743 | uuid: 0ca1662f-eb05-34de-b9ba-0a03ec59b846 744 | arch: (x86_64) 745 | name: libTIFF.dylib 746 | path: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 747 | - addr: "0x7fff8e637000" 748 | size: 192511 749 | uuid: ee77c328-bcc7-3ebd-b3bc-e0e48537d4ff 750 | arch: (x86_64) 751 | name: com.apple.CoreServicesInternal 752 | path: /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 753 | - addr: "0x7fff8e666000" 754 | size: 1044479 755 | uuid: ee02b332-20f3-3226-a022-d71b808e1cc4 756 | arch: (x86_64) 757 | name: com.apple.QuickLookUIFramework 758 | path: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 759 | - addr: "0x7fff8e765000" 760 | size: 4095 761 | uuid: 1f77945c-f37a-3171-b22e-f7ab0fcbb4d4 762 | arch: (x86_64) 763 | name: com.apple.Cocoa 764 | path: /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 765 | - addr: "0x7fff8e766000" 766 | size: 610303 767 | uuid: f17d7d37-4190-38e2-9f43-dd4f87792390 768 | arch: (x86_64) 769 | name: com.apple.CorePDF 770 | path: /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 771 | - addr: "0x7fff8e7fb000" 772 | size: 593919 773 | uuid: 2ffb6bca-3033-3ac1-bce4-ed102dcbecd5 774 | arch: (x86_64) 775 | name: libCoreStorage.dylib 776 | path: /usr/lib/libCoreStorage.dylib 777 | - addr: "0x7fff8e88c000" 778 | size: 3719167 779 | uuid: 7956ab84-ab7a-3b00-a543-76e5cd708881 780 | arch: (x86_64) 781 | name: com.apple.FinderKit 782 | path: /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit 783 | - addr: "0x7fff8ec18000" 784 | size: 360447 785 | uuid: f1d43dfb-1796-361b-ad4b-39f1eed3be19 786 | arch: (x86_64) 787 | name: com.apple.ScalableUserInterface 788 | path: /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface 789 | - addr: "0x7fff8ec74000" 790 | size: 237567 791 | uuid: 46df85dc-18fb-3108-91f6-52ae3ebf2347 792 | arch: (x86_64) 793 | name: libssl.0.9.8.dylib 794 | path: /usr/lib/libssl.0.9.8.dylib 795 | - addr: "0x7fff8ecaf000" 796 | size: 28671 797 | uuid: 21703d36-2dab-3d8b-8442-eaab23c060d3 798 | arch: (x86_64) 799 | name: libunwind.dylib 800 | path: /usr/lib/system/libunwind.dylib 801 | - addr: "0x7fff8ecb6000" 802 | size: 991231 803 | uuid: 5c56181f-1e9f-336a-b7bb-620565a8bd6e 804 | arch: (x86_64) 805 | name: com.apple.DiskImagesFramework 806 | path: /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages 807 | - addr: "0x7fff8eda8000" 808 | size: 20479 809 | uuid: f2f3b753-fc73-3543-8bbe-859fdbb4d6a6 810 | arch: (x86_64) 811 | name: com.apple.TCC 812 | path: /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 813 | - addr: "0x7fff8edad000" 814 | size: 368639 815 | uuid: 84f003c2-5758-3d0a-8644-f3a0ba4f22fc 816 | arch: (x86_64) 817 | name: com.apple.ImageCaptureCore 818 | path: /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 819 | - addr: "0x7fff8ee07000" 820 | size: 57343 821 | uuid: ee68bdcc-af2e-34d3-8e4f-87379e3a4d8e 822 | arch: (x86_64) 823 | name: com.apple.HelpData 824 | path: /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData 825 | - addr: "0x7fff8ee15000" 826 | size: 524287 827 | uuid: 9291ce2a-37d9-39df-956e-7b2650a9f3b0 828 | arch: (x86_64) 829 | name: com.apple.securityfoundation 830 | path: /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 831 | - addr: "0x7fff8ee95000" 832 | size: 155647 833 | uuid: d86169f3-9f31-377a-9af3-db17142052e4 834 | arch: (x86_64) 835 | name: libc++abi.dylib 836 | path: /usr/lib/libc++abi.dylib 837 | - addr: "0x7fff8eebd000" 838 | size: 5705727 839 | uuid: a77bc97a-b695-3f7e-8696-5b2357c2726b 840 | arch: (x86_64) 841 | name: com.apple.CoreAUC 842 | path: /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 843 | - addr: "0x7fff8f52d000" 844 | size: 98303 845 | uuid: fd4a84b3-13a8-3c60-a59e-25a361447a17 846 | arch: (x86_64) 847 | name: com.apple.GenerationalStorage 848 | path: /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 849 | - addr: "0x7fff8f54a000" 850 | size: 110591 851 | uuid: 5637f52d-3ab9-38fd-b851-265b9f5a2fe8 852 | arch: (x86_64) 853 | name: com.apple.CoreMediaAuthoring 854 | path: /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 855 | - addr: "0x7fff8f565000" 856 | size: 65535 857 | uuid: 370ed355-e516-311e-bafd-d80633a84be1 858 | arch: (x86_64) 859 | name: libxar.1.dylib 860 | path: /usr/lib/libxar.1.dylib 861 | - addr: "0x7fff8f575000" 862 | size: 3244031 863 | uuid: 1e567a52-677f-3168-979f-5fbb0818d52b 864 | arch: (x86_64) 865 | name: com.apple.CoreServices.CarbonCore 866 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 867 | - addr: "0x7fff8f9e7000" 868 | size: 16383 869 | uuid: f59367c9-c110-382b-a695-9035a6dd387e 870 | arch: (x86_64) 871 | name: libdyld.dylib 872 | path: /usr/lib/system/libdyld.dylib 873 | - addr: "0x7fff8f9eb000" 874 | size: 53247 875 | uuid: de6afe16-d97e-399d-82ed-3522c773c36e 876 | arch: (x86_64) 877 | name: com.apple.CrashReporterSupport 878 | path: /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 879 | - addr: "0x7fff8f9f8000" 880 | size: 1150975 881 | uuid: 90d31928-f48d-3e37-874f-220a51fd9e37 882 | arch: (x86_64) 883 | name: libobjc.A.dylib 884 | path: /usr/lib/libobjc.A.dylib 885 | - addr: "0x7fff8fb50000" 886 | size: 20479 887 | uuid: 26f01cd4-b76b-37a3-989d-66e8140542b3 888 | arch: (x86_64) 889 | name: com.apple.IOSurface 890 | path: /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 891 | - addr: "0x7fff8fb55000" 892 | size: 372735 893 | uuid: 3c7dfb2c-b3f9-3447-a1fc-eaaa42181a6e 894 | arch: (x86_64) 895 | name: com.apple.opencl 896 | path: /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 897 | - addr: "0x7fff8fbb0000" 898 | size: 327679 899 | uuid: 2e03d7da-9b8f-31bb-8fb5-3d3b6272127f 900 | arch: (x86_64) 901 | name: libFontRegistry.dylib 902 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 903 | - addr: "0x7fff8fc00000" 904 | size: 16515071 905 | uuid: 3ff4783b-ef75-34f5-995c-316557148a18 906 | arch: (x86_64) 907 | name: com.apple.WebCore 908 | path: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 909 | - addr: "0x7fff90bc0000" 910 | size: 684031 911 | uuid: e91b0882-e75c-30e9-8dcd-7a0eee4405cc 912 | arch: (x86_64) 913 | name: com.apple.CoreServices.OSServices 914 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 915 | - addr: "0x7fff90c67000" 916 | size: 49151 917 | uuid: c49275cc-835a-3207-afba-8c01374927b6 918 | arch: (x86_64) 919 | name: libsystem_notify.dylib 920 | path: /usr/lib/system/libsystem_notify.dylib 921 | - addr: "0x7fff90c73000" 922 | size: 462847 923 | uuid: 23ed7650-2705-355a-9f11-409a9981ac53 924 | arch: (x86_64) 925 | name: com.apple.ISSupport 926 | path: /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport 927 | - addr: "0x7fff90d0d000" 928 | size: 1040383 929 | uuid: ade9cb98-d77d-300c-a32a-556b7440769f 930 | arch: (x86_64) 931 | name: libsqlite3.dylib 932 | path: /usr/lib/libsqlite3.dylib 933 | - addr: "0x7fff90e0b000" 934 | size: 1601535 935 | uuid: c102c0f6-8cb6-3b49-ba6b-2eb61f0b2784 936 | arch: (x86_64) 937 | name: com.apple.Accelerate.vecLib 938 | path: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 939 | - addr: "0x7fff90f92000" 940 | size: 12771327 941 | uuid: f12cf463-6f88-32ed-9eba-0fa2ad3cf576 942 | arch: (x86_64) 943 | name: com.apple.AppKit 944 | path: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 945 | - addr: "0x7fff91bc0000" 946 | size: 36863 947 | uuid: 2f71caf8-6524-329e-ac56-c506658b4c0c 948 | arch: (x86_64) 949 | name: liblaunch.dylib 950 | path: /usr/lib/system/liblaunch.dylib 951 | - addr: "0x7fff91bc9000" 952 | size: 28671 953 | uuid: c713a35a-360e-36ce-ac0a-25c86a3f50ca 954 | arch: (x86_64) 955 | name: com.apple.DiskArbitration 956 | path: /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 957 | - addr: "0x7fff91bd3000" 958 | size: 204799 959 | uuid: fb0540ff-5034-3591-a28d-6887fbc220f7 960 | arch: (x86_64) 961 | name: com.apple.DictionaryServices 962 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 963 | - addr: "0x7fff91c05000" 964 | size: 299007 965 | uuid: f52e1881-a425-3ae9-8386-a434f10ae0a2 966 | arch: (x86_64) 967 | name: libcurl.4.dylib 968 | path: /usr/lib/libcurl.4.dylib 969 | - addr: "0x7fff91c4e000" 970 | size: 192511 971 | uuid: c573db65-37fb-3ddc-ab19-525094346d9b 972 | arch: (x86_64) 973 | name: com.apple.shortcut 974 | path: /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut 975 | - addr: "0x7fff91cc7000" 976 | size: 4161535 977 | uuid: d632ec8b-2ba0-3853-800a-20da00a1091c 978 | arch: (x86_64) 979 | name: com.apple.Accelerate.vecLib 980 | path: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 981 | - addr: "0x7fff920e2000" 982 | size: 98303 983 | uuid: f8baba3c-7810-3a65-83fc-61945aa50e90 984 | arch: (x86_64) 985 | name: libGL.dylib 986 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 987 | - addr: "0x7fff920fa000" 988 | size: 12287 989 | uuid: 143b726e-df47-37a8-90aa-f059cfd1a2e4 990 | arch: (x86_64) 991 | name: libquarantine.dylib 992 | path: /usr/lib/system/libquarantine.dylib 993 | - addr: "0x7fff922f6000" 994 | size: 57343 995 | uuid: 5508344a-2a7e-3122-9562-6f363910a80e 996 | arch: (x86_64) 997 | name: com.apple.AppleFSCompression 998 | path: /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 999 | - addr: "0x7fff92304000" 1000 | size: 393215 1001 | uuid: 44f403c1-660a-3543-ab9c-3902e02f936f 1002 | arch: (x86_64) 1003 | name: com.apple.AE 1004 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 1005 | - addr: "0x7fff92364000" 1006 | size: 2318335 1007 | uuid: a676e1a4-2144-376b-92b8-b450dd1d78e5 1008 | arch: (x86_64) 1009 | name: com.apple.CoreData 1010 | path: /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 1011 | - addr: "0x7fff925a7000" 1012 | size: 180223 1013 | uuid: 565afa08-b5ca-3f64-9cd4-f2d9dcfa276e 1014 | arch: (x86_64) 1015 | name: com.apple.datadetectors 1016 | path: /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors 1017 | - addr: "0x7fff92630000" 1018 | size: 241663 1019 | uuid: 423bdfcc-9187-3f3e-abb0-d280003eb15e 1020 | arch: (x86_64) 1021 | name: com.apple.GSS 1022 | path: /System/Library/Frameworks/GSS.framework/Versions/A/GSS 1023 | - addr: "0x7fff9266b000" 1024 | size: 360447 1025 | uuid: 541a7dbe-f8e4-3023-a3c0-8d5a2a550cfb 1026 | arch: (x86_64) 1027 | name: com.apple.AppleVAFramework 1028 | path: /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 1029 | - addr: "0x7fff926c3000" 1030 | size: 380927 1031 | uuid: 8b9eac35-98f3-3bf0-8b15-3a5fe39f150a 1032 | arch: (x86_64) 1033 | name: com.apple.QuickLookFramework 1034 | path: /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 1035 | - addr: "0x7fff92720000" 1036 | size: 4095 1037 | uuid: 878a6e7e-cb34-380f-8212-47fbf12c7c96 1038 | arch: (x86_64) 1039 | name: com.apple.Accelerate 1040 | path: /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 1041 | - addr: "0x7fff92721000" 1042 | size: 20479 1043 | uuid: 326c48f1-c892-3af9-94bc-32768eff6731 1044 | arch: (x86_64) 1045 | name: libGIF.dylib 1046 | path: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 1047 | - addr: "0x7fff92726000" 1048 | size: 4095 1049 | uuid: 6403c982-0d45-37ee-a0f0-0ef8bcfef440 1050 | arch: (x86_64) 1051 | name: com.apple.quartzframework 1052 | path: /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 1053 | - addr: "0x7fff9277e000" 1054 | size: 61439 1055 | uuid: baafe0c9-bb86-3ca7-88c0-e3cba98da06f 1056 | arch: (x86_64) 1057 | name: libcommonCrypto.dylib 1058 | path: /usr/lib/system/libcommonCrypto.dylib 1059 | - addr: "0x7fff9278d000" 1060 | size: 319487 1061 | uuid: 8fd1c1a9-25c5-3b9e-a76d-be813253b358 1062 | arch: (x86_64) 1063 | name: com.apple.CoreMediaIO 1064 | path: /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 1065 | - addr: "0x7fff927db000" 1066 | size: 430079 1067 | uuid: 20e31b90-19b9-3c2a-a9eb-474e08f9fe05 1068 | arch: (x86_64) 1069 | name: libc++.1.dylib 1070 | path: /usr/lib/libc++.1.dylib 1071 | - addr: "0x7fff92844000" 1072 | size: 57343 1073 | uuid: f5bc7d7d-af28-3c83-a674-dada48ff7810 1074 | arch: (x86_64) 1075 | name: com.apple.NetAuth 1076 | path: /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 1077 | - addr: "0x7fff92852000" 1078 | size: 8282111 1079 | uuid: f20d317f-3d4f-3e5e-a5dd-79631e51abc6 1080 | arch: (x86_64) 1081 | name: com.apple.GeForceGLDriver 1082 | path: /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib 1083 | - addr: "0x7fff93462000" 1084 | size: 139263 1085 | uuid: c9a7ee77-b637-3676-b667-c0843bbb0409 1086 | arch: (x86_64) 1087 | name: com.apple.Ubiquity 1088 | path: /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity 1089 | - addr: "0x7fff93484000" 1090 | size: 192511 1091 | uuid: b434be5c-25ab-3ebd-baa7-5304b34e3441 1092 | arch: (x86_64) 1093 | name: libsystem_m.dylib 1094 | path: /usr/lib/system/libsystem_m.dylib 1095 | - addr: "0x7fff935de000" 1096 | size: 28671 1097 | uuid: bf332ad9-e89f-387e-92a4-6e1ab74bd4d9 1098 | arch: (x86_64) 1099 | name: libmacho.dylib 1100 | path: /usr/lib/system/libmacho.dylib 1101 | - addr: "0x7fff935e5000" 1102 | size: 8191 1103 | uuid: 015dd2a0-d59a-3547-909d-7c028a65c312 1104 | arch: (x86_64) 1105 | name: libodfde.dylib 1106 | path: /usr/lib/libodfde.dylib 1107 | - addr: "0x7fff935ee000" 1108 | size: 4317183 1109 | uuid: ddaffd7a-d312-3407-a010-5aef3e17831b 1110 | arch: (x86_64) 1111 | name: com.apple.vision.FaceCoreLight 1112 | path: /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight 1113 | - addr: "0x7fff93a0c000" 1114 | size: 2818047 1115 | uuid: 5f0504da-7ce9-3d97-b2b5-3c5839aebf1f 1116 | arch: (x86_64) 1117 | name: com.apple.imageKit 1118 | path: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 1119 | - addr: "0x7fff93cbc000" 1120 | size: 20479 1121 | uuid: db009cd4-bb0e-3331-bbb4-a118781d193f 1122 | arch: (x86_64) 1123 | name: libCoreVMClient.dylib 1124 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 1125 | - addr: "0x7fff93cc1000" 1126 | size: 4095 1127 | uuid: a3abf20b-ed3a-32b5-830e-b37831a45a80 1128 | arch: (x86_64) 1129 | name: com.apple.ApplicationServices 1130 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 1131 | - addr: "0x7fff93cc2000" 1132 | size: 225279 1133 | uuid: 4ffca242-7f04-365f-87a6-d4efb89503c1 1134 | arch: (x86_64) 1135 | name: libsystem_info.dylib 1136 | path: /usr/lib/system/libsystem_info.dylib 1137 | - addr: "0x7fff93cf9000" 1138 | size: 897023 1139 | uuid: 6b65c44c-7777-3331-ad9d-438d10aac777 1140 | arch: (x86_64) 1141 | name: com.apple.backup.framework 1142 | path: /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 1143 | - addr: "0x7fff93dd4000" 1144 | size: 81919 1145 | uuid: 2f2694e9-a7bc-33c7-b4cf-8ec907df0feb 1146 | arch: (x86_64) 1147 | name: com.apple.LangAnalysis 1148 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 1149 | - addr: "0x7fff947b6000" 1150 | size: 1183743 1151 | uuid: ed3da8c0-160f-3cdc-b537-bf2e766ab7c1 1152 | arch: (x86_64) 1153 | name: com.apple.desktopservices 1154 | path: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 1155 | - addr: "0x7fff948d7000" 1156 | size: 4095 1157 | uuid: 585b1483-490e-32dd-97dc-b9279e9d3490 1158 | arch: (x86_64) 1159 | name: com.apple.AOSMigrate 1160 | path: /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate 1161 | - addr: "0x7fff948d8000" 1162 | size: 2473983 1163 | uuid: d1dd68d1-05d5-3037-abb6-bf6eb183c155 1164 | arch: (x86_64) 1165 | name: com.apple.QuartzComposer 1166 | path: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 1167 | - addr: "0x7fff94b34000" 1168 | size: 335871 1169 | uuid: 581bf463-c15a-363b-999a-e830222fa925 1170 | arch: (x86_64) 1171 | name: com.apple.SystemConfiguration 1172 | path: /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 1173 | - addr: "0x7fff94b86000" 1174 | size: 253951 1175 | uuid: 91e31b9b-4141-36d5-abdc-20f1d6d1d0cf 1176 | arch: (x86_64) 1177 | name: libGLImage.dylib 1178 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 1179 | - addr: "0x7fff94bc4000" 1180 | size: 634879 1181 | uuid: a7f12764-a94c-36eb-88e0-f826f5af55b4 1182 | arch: (x86_64) 1183 | name: com.apple.Accelerate.vecLib 1184 | path: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 1185 | - addr: "0x7fff94c5f000" 1186 | size: 1060863 1187 | uuid: 01e502e9-7fd3-3a5d-8ea4-2dc8c56e0497 1188 | arch: (x86_64) 1189 | name: libJP2.dylib 1190 | path: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 1191 | - addr: "0x7fff94d6f000" 1192 | size: 245759 1193 | uuid: 7e4f2c08-0010-34ae-bc46-149b7ee8a0f5 1194 | arch: (x86_64) 1195 | name: com.apple.LDAPFramework 1196 | path: /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 1197 | - addr: "0x7fff94dab000" 1198 | size: 315391 1199 | uuid: 3735fb49-30c0-3b11-be25-2acdd96041b5 1200 | arch: (x86_64) 1201 | name: com.apple.framework.CoreWLAN 1202 | path: /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 1203 | - addr: "0x7fff94df8000" 1204 | size: 217087 1205 | uuid: 614c9b8e-2056-3a41-9a01-daf74c97cc43 1206 | arch: (x86_64) 1207 | name: com.apple.securityinterface 1208 | path: /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 1209 | - addr: "0x7fff94e9d000" 1210 | size: 307199 1211 | uuid: 6699dea6-9eeb-3b84-a57f-b25ae44ec584 1212 | arch: (x86_64) 1213 | name: libGLU.dylib 1214 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 1215 | - addr: "0x7fff94ee8000" 1216 | size: 372735 1217 | uuid: 5ba0cbed-4d80-386a-9646-f835c9805b71 1218 | arch: (x86_64) 1219 | name: com.apple.print.framework.PrintCore 1220 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 1221 | - addr: "0x7fff94f43000" 1222 | size: 12287 1223 | uuid: a97d348b-32bf-3e52-8df2-59bfad21e1a3 1224 | arch: (x86_64) 1225 | name: com.apple.TrustEvaluationAgent 1226 | path: /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 1227 | - addr: "0x7fff94f46000" 1228 | size: 733183 1229 | uuid: a86f44e5-f285-3029-a5d1-00cd3c231a08 1230 | arch: (x86_64) 1231 | name: com.apple.LaunchServices 1232 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 1233 | - addr: "0x7fff9517f000" 1234 | size: 638975 1235 | uuid: 7d43ed93-bd81-338c-8076-6a932a1d19e8 1236 | arch: (x86_64) 1237 | name: com.apple.CoreSymbolication 1238 | path: /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 1239 | - addr: "0x7fff95267000" 1240 | size: 372735 1241 | uuid: 05d8d892-9a31-301a-bd24-d8a89b2ac905 1242 | arch: (x86_64) 1243 | name: com.apple.Suggestions 1244 | path: /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions 1245 | - addr: "0x7fff952ef000" 1246 | size: 4444159 1247 | uuid: b1185d9d-02ac-3d27-b894-21b1179f2aef 1248 | arch: (x86_64) 1249 | name: com.apple.VideoToolbox 1250 | path: /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 1251 | - addr: "0x7fff9572c000" 1252 | size: 16383 1253 | uuid: 139962cd-21e2-3d31-9f47-d5f2d6c2c2bc 1254 | arch: (x86_64) 1255 | name: libRadiance.dylib 1256 | path: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 1257 | - addr: "0x7fff95730000" 1258 | size: 266239 1259 | uuid: 8aaa8cc3-3acd-34a5-9e57-9b24ad8afd4d 1260 | arch: (x86_64) 1261 | name: com.apple.MediaKit 1262 | path: /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 1263 | - addr: "0x7fff95771000" 1264 | size: 32767 1265 | uuid: e6a01fef-9c6d-3c18-b378-63f4134756e6 1266 | arch: (x86_64) 1267 | name: com.apple.phonenumbers 1268 | path: /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers 1269 | - addr: "0x7fff9610a000" 1270 | size: 40959 1271 | uuid: 870c7810-0d27-3ac5-95a0-3224bb4890c0 1272 | arch: (x86_64) 1273 | name: com.apple.CommerceCore 1274 | path: /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 1275 | - addr: "0x7fff96114000" 1276 | size: 61439 1277 | uuid: 5ac28666-7642-395f-a923-c6f8a274bbbd 1278 | arch: (x86_64) 1279 | name: com.apple.Librarian 1280 | path: /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian 1281 | - addr: "0x7fff96123000" 1282 | size: 528383 1283 | uuid: 0ef1bb57-71aa-304d-a455-55cbe0a4983a 1284 | arch: (x86_64) 1285 | name: com.apple.ApplicationServices.ATS 1286 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 1287 | - addr: "0x7fff961a4000" 1288 | size: 737279 1289 | uuid: eaaed40e-7b2c-3312-826e-26a9dedbf0fc 1290 | arch: (x86_64) 1291 | name: com.apple.PDFKit 1292 | path: /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 1293 | - addr: "0x7fff96258000" 1294 | size: 2957311 1295 | uuid: 87489f4c-750e-3183-b404-215097e71054 1296 | arch: (x86_64) 1297 | name: com.apple.security 1298 | path: /System/Library/Frameworks/Security.framework/Versions/A/Security 1299 | - addr: "0x7fff96538000" 1300 | size: 32767 1301 | uuid: 82e24b9a-7742-3da3-9e99-ed267d98c05e 1302 | arch: (x86_64) 1303 | name: com.apple.NetFS 1304 | path: /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 1305 | - addr: "0x7fff96569000" 1306 | size: 2850815 1307 | uuid: 57043584-98e7-375a-89ae-f46480aa5d97 1308 | arch: (x86_64) 1309 | name: com.apple.MediaToolbox 1310 | path: /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 1311 | - addr: "0x7fff96826000" 1312 | size: 45055 1313 | uuid: d803919c-3102-3515-a178-61e9c86c46a1 1314 | arch: (x86_64) 1315 | name: com.apple.speech.recognition.framework 1316 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 1317 | - addr: "0x7fff96874000" 1318 | size: 163839 1319 | uuid: cdb23c93-853b-3f18-985c-6d32d4704f26 1320 | arch: (x86_64) 1321 | name: com.apple.speech.LatentSemanticMappingFramework 1322 | path: /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping 1323 | - addr: "0x7fff9689c000" 1324 | size: 2547711 1325 | uuid: 1588cec6-012e-30e5-bf38-5bbdabb2f48f 1326 | arch: (x86_64) 1327 | name: com.apple.RawCamera.bundle 1328 | path: /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 1329 | - addr: "0x7fff96b0a000" 1330 | size: 4095 1331 | uuid: cc9e3394-be16-397f-926b-e579b60ee429 1332 | arch: (x86_64) 1333 | name: libkeymgr.dylib 1334 | path: /usr/lib/system/libkeymgr.dylib 1335 | - addr: "0x7fff96b0b000" 1336 | size: 315391 1337 | uuid: ad5a4ce7-cb53-313c-9fae-673303cc2d35 1338 | arch: (x86_64) 1339 | name: libauto.dylib 1340 | path: /usr/lib/libauto.dylib 1341 | - addr: "0x7fff96b58000" 1342 | size: 2904063 1343 | uuid: a850809b-b087-3366-9fa0-1518c20831d3 1344 | arch: (x86_64) 1345 | name: com.apple.AddressBook.framework 1346 | path: /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook 1347 | - addr: "0x7fff96e1d000" 1348 | size: 864255 1349 | uuid: ab493289-e188-3cca-8658-1e5039715f82 1350 | arch: (x86_64) 1351 | name: com.apple.CoreText 1352 | path: /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 1353 | - addr: "0x7fff96ef5000" 1354 | size: 1531903 1355 | uuid: 03663f71-3e01-3958-9bbc-d7015189a4ac 1356 | arch: (x86_64) 1357 | name: com.apple.CFNetwork 1358 | path: /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 1359 | - addr: "0x7fff9706b000" 1360 | size: 868351 1361 | uuid: 8cc25b07-d5c8-3be0-a3ad-700252c2717a 1362 | arch: (x86_64) 1363 | name: com.apple.DiscRecording 1364 | path: /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 1365 | - addr: "0x7fff9713f000" 1366 | size: 311295 1367 | uuid: 64467905-48dc-37f9-9f32-186768cf2640 1368 | arch: (x86_64) 1369 | name: com.apple.CoreMedia 1370 | path: /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 1371 | - addr: "0x7fff9718b000" 1372 | size: 49151 1373 | uuid: c12962d5-85fb-349e-aa56-64f4f487f219 1374 | arch: (x86_64) 1375 | name: com.apple.bsd.ServiceManagement 1376 | path: /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 1377 | - addr: "0x7fff97197000" 1378 | size: 16383 1379 | uuid: ef3340b2-9a53-3d5e-b9b4-bdb5eeecc178 1380 | arch: (x86_64) 1381 | name: libutil.dylib 1382 | path: /usr/lib/libutil.dylib 1383 | - addr: "0x7fff971e5000" 1384 | size: 143359 1385 | uuid: c49b8820-34ed-39d7-a407-a3e854153556 1386 | arch: (x86_64) 1387 | name: com.apple.Kerberos 1388 | path: /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 1389 | - addr: "0x7fff97208000" 1390 | size: 81919 1391 | uuid: f497d3ce-40d9-3551-84b4-3d5e39600737 1392 | arch: (x86_64) 1393 | name: libbsm.0.dylib 1394 | path: /usr/lib/libbsm.0.dylib 1395 | - addr: "0x7fff9721c000" 1396 | size: 278527 1397 | uuid: 5cfa361d-4853-3acc-9efc-a2ac1f43ba4b 1398 | arch: (x86_64) 1399 | name: com.apple.RemoteViewServices 1400 | path: /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 1401 | - addr: "0x7fff97260000" 1402 | size: 380927 1403 | uuid: 84d69a46-bb0a-3dbe-abc2-b767f61ec221 1404 | arch: (x86_64) 1405 | name: com.apple.Symbolication 1406 | path: /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 1407 | - addr: "0x7fff972bd000" 1408 | size: 1515519 1409 | uuid: fc3f5d20-16f4-3f7a-87c6-4171a25d8c5d 1410 | arch: (x86_64) 1411 | name: com.apple.QTKit 1412 | path: /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 1413 | - addr: "0x7fff9742f000" 1414 | size: 208895 1415 | uuid: c61706ad-6952-3b8d-b926-330506f45339 1416 | arch: (x86_64) 1417 | name: com.apple.framework.Admin 1418 | path: /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin 1419 | - addr: "0x7fff97462000" 1420 | size: 131071 1421 | uuid: 0882dc2d-a892-31ff-ad8c-0bb518c48b23 1422 | arch: (x86_64) 1423 | name: libresolv.9.dylib 1424 | path: /usr/lib/libresolv.9.dylib 1425 | - addr: "0x7fff97482000" 1426 | size: 12287 1427 | uuid: f0239392-e0cb-37d7-bfe2-d6f5d42f9196 1428 | arch: (x86_64) 1429 | name: libCVMSPluginSupport.dylib 1430 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 1431 | - addr: "0x7fff97486000" 1432 | size: 1155071 1433 | uuid: 1d023bce-1fa2-3743-b449-7489bc0c5c43 1434 | arch: (x86_64) 1435 | name: com.apple.ImageIO.framework 1436 | path: /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 1437 | - addr: "0x7fff975a0000" 1438 | size: 8191 1439 | uuid: 6763bc8e-18b8-3ad9-8ffa-b43713a7264f 1440 | arch: (x86_64) 1441 | name: libremovefile.dylib 1442 | path: /usr/lib/system/libremovefile.dylib 1443 | - addr: "0x7fff975e7000" 1444 | size: 3538943 1445 | uuid: c98e55ba-553b-314b-b056-849ffb20c220 1446 | arch: (x86_64) 1447 | name: com.apple.Foundation 1448 | path: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 1449 | - addr: "0x7fff97947000" 1450 | size: 4095 1451 | uuid: f8681222-0969-3b10-8bce-c55a4b9c520c 1452 | arch: (x86_64) 1453 | name: libOpenScriptingUtil.dylib 1454 | path: /usr/lib/libOpenScriptingUtil.dylib 1455 | - addr: "0x7fff97948000" 1456 | size: 282623 1457 | uuid: 9f35b58a-f47e-348a-8e09-e235fa4b9270 1458 | arch: (x86_64) 1459 | name: libcups.2.dylib 1460 | path: /usr/lib/libcups.2.dylib 1461 | - addr: "0x7fff9798f000" 1462 | size: 12287 1463 | uuid: 34666cc2-b86d-3313-b3b6-a9977ad593da 1464 | arch: (x86_64) 1465 | name: com.apple.print.framework.Print 1466 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 1467 | - addr: "0x7fff97992000" 1468 | size: 8191 1469 | uuid: df030ddb-df22-3769-a8cd-9806ddb84008 1470 | arch: (x86_64) 1471 | name: libSystem.B.dylib 1472 | path: /usr/lib/libSystem.B.dylib 1473 | - addr: "0x7fff97994000" 1474 | size: 2101247 1475 | uuid: 5783d305-04e8-3d17-94f7-1ceafa975240 1476 | arch: (x86_64) 1477 | name: libicucore.A.dylib 1478 | path: /usr/lib/libicucore.A.dylib 1479 | - addr: "0x7fff97bc7000" 1480 | size: 1687551 1481 | uuid: fae13169-295a-33a5-8e6b-7c2cc1407fa7 1482 | arch: (x86_64) 1483 | name: com.apple.vImage 1484 | path: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 1485 | - addr: "0x7fff97d63000" 1486 | size: 122879 1487 | uuid: c008f56a-1e01-3d4c-a9af-97799d0fae69 1488 | arch: (x86_64) 1489 | name: com.apple.openscripting 1490 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 1491 | - addr: "0x7fff97e9b000" 1492 | size: 16383 1493 | uuid: bc221376-361f-3f85-b284-dc251d3bb442 1494 | arch: (x86_64) 1495 | name: com.apple.AppleSystemInfo 1496 | path: /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 1497 | - addr: "0x7fff97ed5000" 1498 | size: 450559 1499 | uuid: 5775f0db-87d6-310d-8b03-e2ad729efb28 1500 | arch: (x86_64) 1501 | name: com.apple.datadetectorscore 1502 | path: /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 1503 | - addr: "0x7fff97f94000" 1504 | size: 430079 1505 | uuid: 3ca154a3-1be5-3cf4-be48-f0a719a963bb 1506 | arch: (x86_64) 1507 | name: com.apple.Accelerate.vecLib 1508 | path: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 1509 | - addr: "0x7fff9805b000" 1510 | size: 651263 1511 | uuid: 3d8d16a2-7e01-3ea1-b637-83a36d353308 1512 | arch: (x86_64) 1513 | name: com.apple.ink.framework 1514 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 1515 | - addr: "0x7fff981b3000" 1516 | size: 1765375 1517 | uuid: 84f0b40e-df91-36f2-9f2e-3922234206a3 1518 | arch: (x86_64) 1519 | name: com.apple.QuartzCore 1520 | path: /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 1521 | - addr: "0x7fff98362000" 1522 | size: 434175 1523 | uuid: eaa2b53e-eade-39cf-a0ef-fb9d4940672a 1524 | arch: (x86_64) 1525 | name: libstdc++.6.dylib 1526 | path: /usr/lib/libstdc++.6.dylib 1527 | - addr: "0x7fff983cc000" 1528 | size: 49151 1529 | uuid: def85257-2d1c-3524-88f8-cf70980726ae 1530 | arch: (x86_64) 1531 | name: com.apple.aps.framework 1532 | path: /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService 1533 | - addr: "0x7fff983d8000" 1534 | size: 16383 1535 | uuid: 343904fe-3022-3573-97d6-5fe17f8643ba 1536 | arch: (x86_64) 1537 | name: com.apple.help 1538 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 1539 | - addr: "0x7fff983dc000" 1540 | size: 12287 1541 | uuid: 92805328-cd36-34ff-9436-571ab0485072 1542 | arch: (x86_64) 1543 | name: libunc.dylib 1544 | path: /usr/lib/system/libunc.dylib 1545 | - addr: "0x7fff984bf000" 1546 | size: 1388543 1547 | uuid: dc5f3d1b-036a-37de-bc24-7636dc95ea1c 1548 | arch: (x86_64) 1549 | name: com.apple.audio.toolbox.AudioToolbox 1550 | path: /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 1551 | - addr: "0x7fff98615000" 1552 | size: 4095 1553 | uuid: f565b686-24e2-39f2-acc3-c5e4084476be 1554 | arch: (x86_64) 1555 | name: com.apple.Accelerate.vecLib 1556 | path: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 1557 | - addr: "0x7fff98616000" 1558 | size: 20479 1559 | uuid: aac003de-2d6e-38b7-b66b-1f3da91e7245 1560 | arch: (x86_64) 1561 | name: com.apple.CommonPanels 1562 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 1563 | - addr: "0x7fff9865f000" 1564 | size: 532479 1565 | uuid: 69e3eef7-8b7b-3652-8320-b8e885370e56 1566 | arch: (x86_64) 1567 | name: com.apple.Metadata 1568 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 1569 | - addr: "0x7fff986e7000" 1570 | size: 16383 1571 | uuid: 98a808a9-f27d-37a9-84d6-77b61c444f97 1572 | arch: (x86_64) 1573 | name: com.apple.LoginUICore 1574 | path: /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore 1575 | - addr: "0x7fff986eb000" 1576 | size: 32767 1577 | uuid: b4ab9480-2cdb-34f8-8d6f-f5a2cfc221b0 1578 | arch: (x86_64) 1579 | name: libGFXShared.dylib 1580 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 1581 | - addr: "0x7fff986f3000" 1582 | size: 839679 1583 | uuid: 543b05ae-cfa5-3efe-8e58-77225411ba6b 1584 | arch: (x86_64) 1585 | name: libsystem_c.dylib 1586 | path: /usr/lib/system/libsystem_c.dylib 1587 | - addr: "0x7fff987d9000" 1588 | size: 356351 1589 | uuid: bcd36950-013f-35c2-918e-05a93a47be8c 1590 | arch: (x86_64) 1591 | name: com.apple.HIServices 1592 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 1593 | - addr: "0x7fff98abf000" 1594 | size: 454655 1595 | uuid: a90038ed-48f2-3cc9-a042-53a3d7985844 1596 | arch: (x86_64) 1597 | name: com.apple.framework.IOKit 1598 | path: /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 1599 | - addr: "0x7fff98b2e000" 1600 | size: 135167 1601 | uuid: ccbfa9a9-33c0-3189-afe0-a77e831eeba8 1602 | arch: (x86_64) 1603 | name: libPng.dylib 1604 | path: /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 1605 | - addr: "0x7fff98b4f000" 1606 | size: 53247 1607 | uuid: b1475487-1db6-3ba6-b545-5ba751733298 1608 | arch: (x86_64) 1609 | name: com.apple.DirectoryService.Framework 1610 | path: /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService 1611 | - addr: "0x7fff98b68000" 1612 | size: 8191 1613 | uuid: 864c409d-d56b-383e-9b44-a435a47f2346 1614 | arch: (x86_64) 1615 | name: liblangid.dylib 1616 | path: /usr/lib/liblangid.dylib 1617 | - addr: "0x7fff98b6a000" 1618 | size: 65535 1619 | uuid: ad49cf56-b7c1-3598-8610-58532fc41345 1620 | arch: (x86_64) 1621 | name: com.apple.opengl 1622 | path: /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 1623 | - addr: "0x7fff98b7a000" 1624 | size: 24575 1625 | uuid: 08f8731d-5961-39f1-ad00-4590321d24a9 1626 | arch: (x86_64) 1627 | name: libcompiler_rt.dylib 1628 | path: /usr/lib/system/libcompiler_rt.dylib 1629 | - addr: "0x7fff98b80000" 1630 | size: 1060863 1631 | uuid: cf3bab7e-4972-39fd-af92-28acaff0873e 1632 | arch: (x86_64) 1633 | name: libcrypto.0.9.8.dylib 1634 | path: /usr/lib/libcrypto.0.9.8.dylib 1635 | - addr: "0x7fff98c83000" 1636 | size: 327679 1637 | uuid: ce0c29a3-c420-339b-adaa-52f4683233cc 1638 | arch: (x86_64) 1639 | name: libcorecrypto.dylib 1640 | path: /usr/lib/system/libcorecrypto.dylib 1641 | - addr: "0x7fff98cd3000" 1642 | size: 778239 1643 | uuid: 6ce333ae-eddb-3768-9598-9db38041dc55 1644 | arch: (x86_64) 1645 | name: com.apple.ColorSync 1646 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync 1647 | - addr: "0x7fff98d91000" 1648 | size: 581631 1649 | uuid: c7f43889-f8bf-3cb9-ad66-11aefcbcede7 1650 | arch: (x86_64) 1651 | name: com.apple.SearchKit 1652 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 1653 | - addr: "0x7fff98e2c000" 1654 | size: 233471 1655 | uuid: 9009156b-84f5-3781-bfcb-b409b538cd18 1656 | arch: (x86_64) 1657 | name: libtidy.A.dylib 1658 | path: /usr/lib/libtidy.A.dylib 1659 | - addr: "0x7fff98e65000" 1660 | size: 241663 1661 | uuid: 546769aa-c561-3c17-8e8e-4e65a700e2f1 1662 | arch: (x86_64) 1663 | name: com.apple.framework.internetaccounts 1664 | path: /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts 1665 | - addr: "0x7fff98ea5000" 1666 | size: 4095 1667 | uuid: 9dd44cb0-c644-35c3-8f57-0b41b3ec147d 1668 | arch: (x86_64) 1669 | name: com.apple.CoreServices 1670 | path: /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 1671 | - addr: "0x7fff98ea8000" 1672 | size: 8191 1673 | uuid: 8548e0dc-0d2f-30b6-b045-fe8a038e76d8 1674 | arch: (x86_64) 1675 | name: libDiagnosticMessagesClient.dylib 1676 | path: /usr/lib/libDiagnosticMessagesClient.dylib 1677 | - addr: "0x7fff98ebf000" 1678 | size: 24575 1679 | uuid: 65187c6e-3fbf-3eb8-a1aa-389445e2984d 1680 | arch: (x86_64) 1681 | name: libcache.dylib 1682 | path: /usr/lib/system/libcache.dylib 1683 | - addr: "0x7fff98ec5000" 1684 | size: 8191 1685 | uuid: d92dcbc3-541c-37bd-aade-acc75a0c59c8 1686 | arch: (x86_64) 1687 | name: libsystem_blocks.dylib 1688 | path: /usr/lib/system/libsystem_blocks.dylib 1689 | - addr: "0x7fff98ec7000" 1690 | size: 1101823 1691 | uuid: c3d1121b-b066-34c3-9d31-addf387c0b20 1692 | arch: (x86_64) 1693 | name: libFontParser.dylib 1694 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 1695 | - addr: "0x7fff98fd4000" 1696 | size: 49151 1697 | uuid: f02e8fc3-18dc-3f03-8763-e6ee3e2a6b5a 1698 | arch: (x86_64) 1699 | name: com.apple.DisplayServicesFW 1700 | path: /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 1701 | - addr: "0x7fff98fe3000" 1702 | size: 131071 1703 | uuid: 8bec9afb-dcaa-37e8-a5ab-24422b234ecf 1704 | arch: (x86_64) 1705 | name: com.apple.ChunkingLibrary 1706 | path: /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 1707 | - addr: "0x7fff9901f000" 1708 | size: 143359 1709 | uuid: 70bc645b-6952-3264-930c-c835010ccef9 1710 | arch: (x86_64) 1711 | name: libxpc.dylib 1712 | path: /usr/lib/system/libxpc.dylib 1713 | - addr: "0x7fff99042000" 1714 | size: 1437695 1715 | uuid: 853be89d-49b0-3922-9ed5-ddbde9a97356 1716 | arch: (x86_64) 1717 | name: com.apple.MediaControlSender 1718 | path: /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender 1719 | - addr: "0x7fff991a1000" 1720 | size: 61439 1721 | uuid: 0d99f24e-56fe-380f-b81b-4a4c630ee587 1722 | arch: (x86_64) 1723 | name: libsystem_network.dylib 1724 | path: /usr/lib/system/libsystem_network.dylib 1725 | - addr: "0x7fff991cb000" 1726 | size: 1159167 1727 | uuid: 0cf2abe5-b088-3b5d-9c04-47ae708adae3 1728 | arch: (x86_64) 1729 | name: com.apple.coreavchd 1730 | path: /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 1731 | - addr: "0x7fff992e6000" 1732 | size: 24575 1733 | uuid: 51e52779-4f5a-36b5-9297-67138547dca9 1734 | arch: (x86_64) 1735 | name: com.apple.OpenDirectory 1736 | path: /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 1737 | - addr: "0x7fff992ec000" 1738 | size: 163839 1739 | uuid: 50f5a52c-8fb6-300a-977d-5cfde4d5796b 1740 | arch: (x86_64) 1741 | name: com.apple.framework.familycontrols 1742 | path: /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls 1743 | - addr: "0x7fff99314000" 1744 | size: 327679 1745 | uuid: ccf3d8e3-cd1c-36cd-929a-c9972f833f24 1746 | arch: (x86_64) 1747 | name: com.apple.framework.CoreWiFi 1748 | path: /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi 1749 | - addr: "0x7fff99364000" 1750 | size: 176127 1751 | uuid: e5082966-6d81-3973-a05a-38aa5b85f886 1752 | arch: (x86_64) 1753 | name: com.apple.CoreVideo 1754 | path: /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 1755 | - addr: "0x7fff993a1000" 1756 | size: 8191 1757 | uuid: b739da63-b675-387a-ad84-412a651143c0 1758 | arch: (x86_64) 1759 | name: libsystem_sandbox.dylib 1760 | path: /usr/lib/system/libsystem_sandbox.dylib 1761 | - addr: "0x7fff993a3000" 1762 | size: 36863 1763 | uuid: bdcb8566-0189-34c0-9634-35abd3efe25b 1764 | arch: (x86_64) 1765 | name: libsystem_dnssd.dylib 1766 | path: /usr/lib/system/libsystem_dnssd.dylib 1767 | - addr: "0x7fff993ac000" 1768 | size: 98303 1769 | uuid: d01120cc-16e0-372c-825b-b3ab510a8916 1770 | arch: (x86_64) 1771 | name: com.apple.CFOpenDirectory 1772 | path: /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 1773 | - addr: "0x7fff993ce000" 1774 | size: 278527 1775 | uuid: 0bf1f2d2-3648-36b7-be4b-551a0173209b 1776 | arch: (x86_64) 1777 | name: com.apple.bom 1778 | path: /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 1779 | - addr: "0x7fff99429000" 1780 | size: 811007 1781 | uuid: 83d2c92d-6842-3c9d-9289-39d5b4554c3a 1782 | arch: (x86_64) 1783 | name: com.apple.coreui 1784 | path: /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 1785 | - addr: "0x7fff994ef000" 1786 | size: 4095 1787 | uuid: 6cbbfdc4-415c-3910-9558-b67176447789 1788 | arch: (x86_64) 1789 | name: com.apple.vecLib 1790 | path: /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib 1791 | - addr: "0x7fff994fe000" 1792 | size: 4095 1793 | uuid: 6d314680-7409-3bc7-a807-36341411af9a 1794 | arch: (x86_64) 1795 | name: com.apple.audio.units.AudioUnit 1796 | path: /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 1797 | - addr: "0x7fff9950a000" 1798 | size: 4095 1799 | uuid: cc5aa589-242e-3be1-b776-7d4ffd93d0c1 1800 | arch: (x86_64) 1801 | name: com.apple.Carbon 1802 | path: /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 1803 | - addr: "0x7fff9950b000" 1804 | size: 94207 1805 | uuid: 0f7fee29-161b-3d8e-be91-308cbd354461 1806 | arch: (x86_64) 1807 | name: com.apple.MultitouchSupport.framework 1808 | path: /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 1809 | - addr: "0x7fff99522000" 1810 | size: 20479 1811 | uuid: c8f45864-5b58-3237-87e1-2c258a1d73b8 1812 | arch: (x86_64) 1813 | name: libpam.2.dylib 1814 | path: /usr/lib/libpam.2.dylib 1815 | - addr: "0x7fff99527000" 1816 | size: 73727 1817 | uuid: 649cae0e-8ffe-3c60-a849-be6300e4b726 1818 | arch: (x86_64) 1819 | name: libsasl2.2.dylib 1820 | path: /usr/lib/libsasl2.2.dylib 1821 | - addr: "0x7fff99539000" 1822 | size: 1007615 1823 | uuid: fee8b996-eb44-37fa-b96e-d379664defe1 1824 | arch: (x86_64) 1825 | name: libiconv.2.dylib 1826 | path: /usr/lib/libiconv.2.dylib 1827 | - addr: "0x7fff9962f000" 1828 | size: 262143 1829 | uuid: 77a20c25-ebb5-341c-a05c-5d458b97ad5c 1830 | arch: (x86_64) 1831 | name: com.apple.QD 1832 | path: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 1833 | - addr: "0x7fff9966f000" 1834 | size: 184319 1835 | uuid: 73506ca1-cf76-3a98-a6f2-3ddac10cb67a 1836 | arch: (x86_64) 1837 | name: com.apple.framework.Apple80211 1838 | path: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 1839 | - addr: "0x7fff9969c000" 1840 | size: 61439 1841 | uuid: b8f7ed1f-cf84-3777-9183-0a1c513df81f 1842 | arch: (x86_64) 1843 | name: libkxld.dylib 1844 | path: /usr/lib/system/libkxld.dylib 1845 | - addr: "0x7fff996ab000" 1846 | size: 2772991 1847 | uuid: cc6dd22b-ffc6-310b-be13-2397a02c79ef 1848 | arch: (x86_64) 1849 | name: com.apple.CoreImage 1850 | path: /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage 1851 | - addr: "0x7fff99950000" 1852 | size: 49151 1853 | uuid: 1ca95702-ddc7-3adb-891e-7f037abdda14 1854 | arch: (x86_64) 1855 | name: com.apple.CommonAuth 1856 | path: /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 1857 | - addr: "0x7fff999bc000" 1858 | size: 180223 1859 | uuid: 441776b8-9130-3893-956f-39c85ffa644f 1860 | arch: (x86_64) 1861 | name: libxslt.1.dylib 1862 | path: /usr/lib/libxslt.1.dylib 1863 | - addr: "0x7fff99a9b000" 1864 | size: 2629631 1865 | uuid: 01c09924-2603-3c1e-97f7-9484cba35bc9 1866 | arch: (x86_64) 1867 | name: com.apple.AOSKit 1868 | path: /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit 1869 | - addr: "0x7fff99d78000" 1870 | size: 2736127 1871 | uuid: fe3c5add-43d3-33c9-9150-8dcefda218e2 1872 | arch: (x86_64) 1873 | name: com.apple.JavaScriptCore 1874 | path: /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 1875 | - addr: "0x7fff9a069000" 1876 | size: 139263 1877 | uuid: 736abe58-8ded-3289-a042-c25af7ae5b23 1878 | arch: (x86_64) 1879 | name: libCRFSuite.dylib 1880 | path: /usr/lib/libCRFSuite.dylib 1881 | - addr: "0x7fff9a08d000" 1882 | size: 1040383 1883 | uuid: 47b09cb2-c636-3024-8b55-6040f7829b4c 1884 | arch: (x86_64) 1885 | name: libxml2.2.dylib 1886 | path: /usr/lib/libxml2.2.dylib 1887 | - addr: "0x7fff9a18b000" 1888 | size: 32767 1889 | uuid: 30824a67-6743-3d99-8dc3-92578fa9d7cb 1890 | arch: (x86_64) 1891 | name: libcopyfile.dylib 1892 | path: /usr/lib/system/libcopyfile.dylib 1893 | - addr: "0x7fff9a193000" 1894 | size: 8191 1895 | uuid: 14202ffb-c3ca-3fcc-94b0-14611bf8692d 1896 | arch: (x86_64) 1897 | name: libdnsinfo.dylib 1898 | path: /usr/lib/system/libdnsinfo.dylib 1899 | 1900 | -------------------------------------------------------------------------------- /tests/snapshots/test_snapshots__handcrafted.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/test_snapshots.rs 3 | expression: "&report" 4 | 5 | --- 6 | incident_identifier: 5c32df84-31a0-43e7-87d0-239f7f594940 7 | timestamp: "2019-01-09T17:42:22Z" 8 | code_type: X86-64 9 | path: /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/MacOS/YetAnotherMac 10 | application_specific_information: "objc_msgSend() selector name: respondsToSelector:\n more information here" 11 | report_version: 104 12 | metadata: 13 | CrashReporter Key: TODO 14 | Exception Codes: SEGV_MAPERR at 0x88 15 | Exception Type: SIGSEGV 16 | Hardware Model: "MacBookPro14,3" 17 | Identifier: com.YourCompany.YetAnotherMac 18 | OS Version: Mac OS X 10.14.0 (18A391) 19 | Parent Process: "launchd [1]" 20 | Process: "YetAnotherMac [49028]" 21 | Version: 4.21.1 22 | threads: 23 | - id: 0 24 | crashed: false 25 | frames: 26 | - module: libsystem_kernel.dylib 27 | instruction_addr: "0x7fff61bc6c2a" 28 | - module: CoreFoundation 29 | instruction_addr: "0x7fff349f505e" 30 | - module: CoreFoundation 31 | instruction_addr: "0x7fff349f45ad" 32 | - module: CoreFoundation 33 | instruction_addr: "0x7fff349f3ce4" 34 | - module: HIToolbox 35 | instruction_addr: "0x7fff33c8d895" 36 | - module: HIToolbox 37 | instruction_addr: "0x7fff33c8d5cb" 38 | - module: HIToolbox 39 | instruction_addr: "0x7fff33c8d348" 40 | - module: AppKit 41 | instruction_addr: "0x7fff31f4a95b" 42 | - module: AppKit 43 | instruction_addr: "0x7fff31f496fa" 44 | - module: AppKit 45 | instruction_addr: "0x7fff31f4375d" 46 | - module: YetAnotherMac 47 | instruction_addr: "0x108b7092b" 48 | - module: YetAnotherMac 49 | symbol: a_function_here 50 | instruction_addr: "0x108b702a6" 51 | - module: libdyld.dylib 52 | symbol: start 53 | instruction_addr: "0x7fff61a8e085" 54 | - module: YetanotherMac 55 | symbol: main 56 | filename: main.m 57 | lineno: 16 58 | instruction_addr: "0xea004" 59 | - id: 1 60 | name: Test Thread Name 61 | crashed: true 62 | frames: 63 | - module: libsystem_kernel.dylib 64 | instruction_addr: "0x7fff61bc85be" 65 | - module: libsystem_pthread.dylib 66 | instruction_addr: "0x7fff61c7f415" 67 | - instruction_addr: "0x54485244" 68 | registers: 69 | cs: "0x2b" 70 | fs: "0x0" 71 | gs: "0x0" 72 | r10: "0x0" 73 | r11: "0xffffffff" 74 | r12: "0x8" 75 | r13: "0x11e800b00" 76 | r14: "0x1" 77 | r15: "0x0" 78 | r8: "0x3" 79 | r9: "0x10" 80 | rax: "0x20261bb4775b008f" 81 | rbp: "0x700015a616d0" 82 | rbx: "0x0" 83 | rcx: "0x1288266c0" 84 | rdi: "0x0" 85 | rdx: "0x1" 86 | rflags: "0x10206" 87 | rip: "0x1090a0132" 88 | rsi: "0x0" 89 | rsp: "0x700015a613f0" 90 | binary_images: 91 | - addr: "0x10864e000" 92 | size: 108797951 93 | uuid: 2d903291-397d-3d14-bfca-52c7fb8c5e00 94 | arch: x86_64 95 | version: 400.9.4 - 1.0.0 96 | name: YetAnotherMac 97 | path: /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/MacOS/YetAnotherMac 98 | - addr: "0x112bb2000" 99 | size: 2170879 100 | uuid: 6deccee4-a052-3ea4-bb67-957b06f53ad1 101 | arch: x86_64 102 | version: 0.0.0 - 0.0.0 103 | name: libPhysX3PROFILE.dylib 104 | path: /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPhysX3PROFILE.dylib 105 | - addr: "0x112fc0000" 106 | size: 221183 107 | uuid: 5e012a64-6cc5-36f1-9b4d-a0564049169b 108 | arch: x86_64 109 | version: 0.0.0 - 0.0.0 110 | name: libPhysX3CookingPROFILE.dylib 111 | path: /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPhysX3CookingPROFILE.dylib 112 | - addr: "0x113013000" 113 | size: 1474559 114 | uuid: 9c198544-7194-3de6-b67e-4cc27eed2eab 115 | arch: x86_64 116 | version: 0.0.0 - 0.0.0 117 | name: libPhysX3CommonPROFILE.dylib 118 | path: /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPhysX3CommonPROFILE.dylib 119 | - addr: "0x1131fa000" 120 | size: 28671 121 | uuid: 890f0997-f904-3544-9af7-cf011f09a06e 122 | arch: x86_64 123 | version: 400.9.0 - 1.0.0 124 | name: libPxFoundationPROFILE.dylib 125 | path: /Users/bruno/Documents/Unreal Projects/YetAnotherMac/MacNoEditor/YetAnotherMac.app/Contents/UE4/Engine/Binaries/ThirdParty/PhysX3/Mac/libPxFoundationPROFILE.dylib 126 | 127 | -------------------------------------------------------------------------------- /tests/snapshots/test_snapshots__spaces.snap: -------------------------------------------------------------------------------- 1 | --- 2 | source: tests/test_snapshots.rs 3 | expression: "&report" 4 | 5 | --- 6 | incident_identifier: 00000000-0000-0000-0000-000000000000 7 | report_version: 0 8 | metadata: {} 9 | threads: 10 | - id: 0 11 | crashed: false 12 | frames: 13 | - module: App Namespace 14 | instruction_addr: "0x102268e70" 15 | - module: App Namespace 16 | instruction_addr: "0x102268550" 17 | - module: App Namespace 18 | instruction_addr: "0x10226860c" 19 | - module: UIKitCore 20 | instruction_addr: "0x1b81d6948" 21 | - module: UIKitCore 22 | instruction_addr: "0x1b81d6464" 23 | - module: UIKitCore 24 | instruction_addr: "0x1b81d6b64" 25 | - module: UIKitCore 26 | instruction_addr: "0x1b8015c84" 27 | - module: UIKitCore 28 | instruction_addr: "0x1b80057d4" 29 | - module: UIKitCore 30 | instruction_addr: "0x1b8035744" 31 | - module: CoreFoundation 32 | instruction_addr: "0x1b3f03e68" 33 | - module: CoreFoundation 34 | instruction_addr: "0x1b3efed54" 35 | - module: CoreFoundation 36 | instruction_addr: "0x1b3eff320" 37 | - module: CoreFoundation 38 | instruction_addr: "0x1b3efeadc" 39 | - module: GraphicsServices 40 | instruction_addr: "0x1bde9f328" 41 | - module: UIKitCore 42 | instruction_addr: "0x1b800c63c" 43 | - module: App Namespace 44 | instruction_addr: "0x10212d008" 45 | - module: libdyld.dylib 46 | instruction_addr: "0x1b3d88360" 47 | binary_images: 48 | - addr: "0x10211c000" 49 | size: 3768319 50 | uuid: debeff4e-2653-4f38-e59b-c9de7b8daade 51 | arch: arm64 52 | name: App Namespace 53 | path: /private/var/containers/Bundle/Application/012CABCB-BD5B-1234-AE44-3215BF57D1CD/App Namespace Some.app/App Namespace 54 | - addr: "0x1b3dc2000" 55 | size: 356351 56 | uuid: 6bc32e62-1105-31ee-bcde-ab97b76d5507 57 | arch: arm64 58 | name: libc++.1.dylib 59 | path: /usr/lib/libc++.1.dylib 60 | - addr: "0x102638000" 61 | size: 212991 62 | uuid: 0e89aabb-ddd3-3bfd-90e2-f2da54d3da23 63 | arch: arm64 64 | name: SomeNet 65 | path: /private/var/containers/Bundle/Application/012CABCB-BD5B-4881-AE44-3215BF57D1CD/App Namespace Some.app/Frameworks/some.framework/SomeNet 66 | - addr: "0x1b4237000" 67 | size: 2859007 68 | uuid: 7b1733b1-74c9-3a33-8a58-853b0a029826 69 | arch: arm64 70 | name: Foundation 71 | path: /System/Library/Frameworks/Foundation.framework/Foundation 72 | - addr: "0x102a20000" 73 | size: 2637823 74 | uuid: 004d54f6-4139-3bae-8f16-6277368ff79e 75 | arch: arm64 76 | name: SharedIOSFramework 77 | path: /private/var/containers/Bundle/Application/012CABCB-BD5B-4881-AE44-3215BF57D1CD/App Namespace Some.app/Frameworks/SharedIOSFramework.framework/SharedIOSFramework 78 | - addr: "0x1b71c7000" 79 | size: 3543039 80 | uuid: 59b74c73-dcc3-3a99-9647-189b124b265b 81 | arch: arm64 82 | name: CFNetwork 83 | path: /System/Library/Frameworks/CFNetwork.framework/CFNetwork 84 | - addr: "0x1c08b8000" 85 | size: 1847295 86 | uuid: 86e7ee42-c1f9-36fb-9bf0-af733547d042 87 | arch: arm64 88 | name: CoreMotion 89 | path: /System/Library/Frameworks/CoreMotion.framework/CoreMotion 90 | - addr: "0x1b3e5b000" 91 | size: 3624959 92 | uuid: 7519e999-1053-3367-b9d5-8844f6d3bdc6 93 | arch: arm64 94 | name: CoreFoundation 95 | path: /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 96 | - addr: "0x1b7609000" 97 | size: 17592319 98 | uuid: d7630067-7a00-3cb7-99e1-e7f6c55d85c5 99 | arch: arm64 100 | name: UIKitCore 101 | path: /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 102 | - addr: "0x1bde9c000" 103 | size: 36863 104 | uuid: cefbbc61-fdb3-3db7-86bf-337e511616db 105 | arch: arm64 106 | name: GraphicsServices 107 | path: /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 108 | - addr: "0x1c2c99000" 109 | size: 14036991 110 | uuid: c87fa51e-b103-3902-a963-faaedb228c86 111 | arch: arm64 112 | name: JavaScriptCore 113 | path: /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 114 | - addr: "0x1b3bf7000" 115 | size: 479231 116 | uuid: b9d95eab-9269-367d-b2f4-c2b45821a32d 117 | arch: arm64 118 | name: libdispatch.dylib 119 | path: /usr/lib/system/libdispatch.dylib 120 | - addr: "0x1b3d87000" 121 | size: 204799 122 | uuid: 7b531a15-3e73-3185-90e2-b88d9476da5e 123 | arch: arm64 124 | name: libdyld.dylib 125 | path: /usr/lib/system/libdyld.dylib 126 | - addr: "0x1b3d59000" 127 | size: 188415 128 | uuid: 1b7d7184-05d6-3a83-bb1b-f9af6aef61f3 129 | arch: arm64 130 | name: libsystem_kernel.dylib 131 | path: /usr/lib/system/libsystem_kernel.dylib 132 | - addr: "0x1b3c97000" 133 | size: 69631 134 | uuid: 1ff7a2fb-9f28-37b7-af39-344206a322bd 135 | arch: arm64 136 | name: libsystem_pthread.dylib 137 | path: /usr/lib/system/libsystem_pthread.dylib 138 | - addr: "0x1bfe9a000" 139 | size: 1363967 140 | uuid: e259406b-03a4-3977-a227-fcae8df2bc95 141 | arch: arm64 142 | name: WebKitLegacy 143 | path: /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 144 | - addr: "0x1bbaeb000" 145 | size: 29315071 146 | uuid: 83a4a191-11a0-3138-97dc-ef1313f78bae 147 | arch: arm64 148 | name: WebCore 149 | path: /System/Library/PrivateFrameworks/WebCore.framework/WebCore 150 | 151 | -------------------------------------------------------------------------------- /tests/test_snapshots.rs: -------------------------------------------------------------------------------- 1 | // These tests require serde for insta 2 | #![cfg(feature = "with_serde")] 3 | 4 | use std::fs; 5 | 6 | use apple_crash_report_parser::AppleCrashReport; 7 | 8 | fn load_fixture(name: &str) -> String { 9 | fs::read_to_string(format!("tests/fixtures/{name}.txt")).unwrap() 10 | } 11 | 12 | macro_rules! test_snapshots { 13 | ( $( $test:ident => $fixture:literal ),+ $(,)? ) => { 14 | $( 15 | #[test] 16 | fn $test() { 17 | let fixture = load_fixture($fixture); 18 | let report: AppleCrashReport = fixture.parse().unwrap(); 19 | insta::assert_yaml_snapshot!($fixture, &report); 20 | } 21 | )* 22 | }; 23 | } 24 | 25 | test_snapshots!( 26 | test_bruno => "bruno", 27 | test_handcrafted => "handcrafted", 28 | test_xcdyoutubekit_54 => "XCDYouTubeKit-54", 29 | // Regression test for #5: Spaces in image names 30 | test_spaces => "spaces", 31 | ); 32 | --------------------------------------------------------------------------------