Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 5 112 | repo_url stringlengths 34 141 | action stringclasses 3 values | title stringlengths 1 855 | labels stringlengths 4 721 | body stringlengths 1 261k | index stringclasses 13 values | text_combine stringlengths 96 261k | label stringclasses 2 values | text stringlengths 96 240k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
724,752 | 24,940,964,624 | IssuesEvent | 2022-10-31 18:54:29 | rmlockwood/FLExTrans | https://api.github.com/repos/rmlockwood/FLExTrans | closed | [Do Stamp Synthesis] Crashes if a stem has an affix allomorph | bug high priority | If a stem has an allomorph that has morphtype 'prefix', 'suffix', etc., the module attempts to get the stem name and it crashes since affix allomorphs don't have stem names. FLExTrans may need to support such things in the future, but for now it should gracefully skip such allomorphs. | 1.0 | [Do Stamp Synthesis] Crashes if a stem has an affix allomorph - If a stem has an allomorph that has morphtype 'prefix', 'suffix', etc., the module attempts to get the stem name and it crashes since affix allomorphs don't have stem names. FLExTrans may need to support such things in the future, but for now it should gracefully skip such allomorphs. | priority | crashes if a stem has an affix allomorph if a stem has an allomorph that has morphtype prefix suffix etc the module attempts to get the stem name and it crashes since affix allomorphs don t have stem names flextrans may need to support such things in the future but for now it should gracefully skip such allomorphs | 1 |
753,669 | 26,357,760,110 | IssuesEvent | 2023-01-11 11:00:31 | vaticle/typedb | https://api.github.com/repos/vaticle/typedb | closed | Query with a lot of entities and relations between them takes unreasonable time to compute | type: bug priority: high | ## Description
"Chain" type of query, where we have a line of entities connected with a parent-child relation (10 entities with 9 relations between them) takes an infinite time to compute. Even with 5 entities it never finished the computation
What we are querying for looks like this:
```
O <- commit
| <- commit-link
O <- commit
| <- commit-link
O ...
|
O
|
O
|
O
|
...
|
O
```
The query:
```
match
$commit-0 isa commit, has sha $sha-0, has symbol "VladGan/console@4bdc38acb87f9fd2fbdb7cbcf2bcc93837382cab";
$_ (next: $commit-0, previous: $commit-1) isa commit-link;
$commit-1 isa commit, has sha $sha-1;
$_ (next: $commit-1, previous: $commit-2) isa commit-link;
$commit-2 isa commit, has sha $sha-2;
$_ (next: $commit-2, previous: $commit-3) isa commit-link;
$commit-3 isa commit, has sha $sha-3;
$_ (next: $commit-3, previous: $commit-4) isa commit-link;
$commit-4 isa commit, has sha $sha-4;
$_ (next: $commit-4, previous: $commit-5) isa commit-link;
$commit-5 isa commit, has sha $sha-5;
$_ (next: $commit-5, previous: $commit-6) isa commit-link;
$commit-6 isa commit, has sha $sha-6;
$_ (next: $commit-6, previous: $commit-7) isa commit-link;
$commit-7 isa commit, has sha $sha-7;
$_ (next: $commit-7, previous: $commit-8) isa commit-link;
$commit-8 isa commit, has sha $sha-8;
$_ (next: $commit-8, previous: $commit-9) isa commit-link;
$commit-9 isa commit, has sha $sha-9;
get $sha-0, $sha-1, $sha-2, $sha-3, $sha-4, $sha-5, $sha-6, $sha-7, $sha-8, $sha-9;
```
Database and schema:
https://www.dropbox.com/home/Engineering/Grabl/Issues/Grakn-2.0%20issues/6183 | 1.0 | Query with a lot of entities and relations between them takes unreasonable time to compute - ## Description
"Chain" type of query, where we have a line of entities connected with a parent-child relation (10 entities with 9 relations between them) takes an infinite time to compute. Even with 5 entities it never finished the computation
What we are querying for looks like this:
```
O <- commit
| <- commit-link
O <- commit
| <- commit-link
O ...
|
O
|
O
|
O
|
...
|
O
```
The query:
```
match
$commit-0 isa commit, has sha $sha-0, has symbol "VladGan/console@4bdc38acb87f9fd2fbdb7cbcf2bcc93837382cab";
$_ (next: $commit-0, previous: $commit-1) isa commit-link;
$commit-1 isa commit, has sha $sha-1;
$_ (next: $commit-1, previous: $commit-2) isa commit-link;
$commit-2 isa commit, has sha $sha-2;
$_ (next: $commit-2, previous: $commit-3) isa commit-link;
$commit-3 isa commit, has sha $sha-3;
$_ (next: $commit-3, previous: $commit-4) isa commit-link;
$commit-4 isa commit, has sha $sha-4;
$_ (next: $commit-4, previous: $commit-5) isa commit-link;
$commit-5 isa commit, has sha $sha-5;
$_ (next: $commit-5, previous: $commit-6) isa commit-link;
$commit-6 isa commit, has sha $sha-6;
$_ (next: $commit-6, previous: $commit-7) isa commit-link;
$commit-7 isa commit, has sha $sha-7;
$_ (next: $commit-7, previous: $commit-8) isa commit-link;
$commit-8 isa commit, has sha $sha-8;
$_ (next: $commit-8, previous: $commit-9) isa commit-link;
$commit-9 isa commit, has sha $sha-9;
get $sha-0, $sha-1, $sha-2, $sha-3, $sha-4, $sha-5, $sha-6, $sha-7, $sha-8, $sha-9;
```
Database and schema:
https://www.dropbox.com/home/Engineering/Grabl/Issues/Grakn-2.0%20issues/6183 | priority | query with a lot of entities and relations between them takes unreasonable time to compute description chain type of query where we have a line of entities connected with a parent child relation entities with relations between them takes an infinite time to compute even with entities it never finished the computation what we are querying for looks like this o commit commit link o commit commit link o o o o o the query match commit isa commit has sha sha has symbol vladgan console next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha next commit previous commit isa commit link commit isa commit has sha sha get sha sha sha sha sha sha sha sha sha sha database and schema | 1 |
661,983 | 22,098,831,161 | IssuesEvent | 2022-06-01 12:19:20 | zowe/api-layer | https://api.github.com/repos/zowe/api-layer | closed | Upgrade SpringBoot to 2.5 | enhancement Priority: High technical excellence 22PI2 v2 v1 | **Is your feature request related to a problem? Please describe.**
The 2.3 version currently used is reaching EOL
**Describe the solution you'd like**
Upgrade the SpringBoot to at least 2.5.x version. This requires though either to have Spring Cloud Gateway or providing the functionality of the Spring for the Zuul ourselves.
| 1.0 | Upgrade SpringBoot to 2.5 - **Is your feature request related to a problem? Please describe.**
The 2.3 version currently used is reaching EOL
**Describe the solution you'd like**
Upgrade the SpringBoot to at least 2.5.x version. This requires though either to have Spring Cloud Gateway or providing the functionality of the Spring for the Zuul ourselves.
| priority | upgrade springboot to is your feature request related to a problem please describe the version currently used is reaching eol describe the solution you d like upgrade the springboot to at least x version this requires though either to have spring cloud gateway or providing the functionality of the spring for the zuul ourselves | 1 |
128,051 | 5,047,845,381 | IssuesEvent | 2016-12-20 10:45:54 | Victoire/victoire | https://api.github.com/repos/Victoire/victoire | opened | When I create a quantum on a template, the new widget created is wrongly set | Priority : High Type : Bug | - I am on a template
- I edit a widget and create a quantum with criteria etc ...
- A new widget is created and answers the criteria
- BUT the previous widget based on the default criteria is not visible
- In the DB, the widgets are setted with different widget_map_id instead of using the same one.
Resolution : directly in the DB :
- The newly generated widget_map_id is deleted
- The widget_map_id of the new vic_widget has to be the same one than the original widget | 1.0 | When I create a quantum on a template, the new widget created is wrongly set - - I am on a template
- I edit a widget and create a quantum with criteria etc ...
- A new widget is created and answers the criteria
- BUT the previous widget based on the default criteria is not visible
- In the DB, the widgets are setted with different widget_map_id instead of using the same one.
Resolution : directly in the DB :
- The newly generated widget_map_id is deleted
- The widget_map_id of the new vic_widget has to be the same one than the original widget | priority | when i create a quantum on a template the new widget created is wrongly set i am on a template i edit a widget and create a quantum with criteria etc a new widget is created and answers the criteria but the previous widget based on the default criteria is not visible in the db the widgets are setted with different widget map id instead of using the same one resolution directly in the db the newly generated widget map id is deleted the widget map id of the new vic widget has to be the same one than the original widget | 1 |
388,947 | 11,495,378,401 | IssuesEvent | 2020-02-12 04:37:38 | openmsupply/mobile | https://api.github.com/repos/openmsupply/mobile | closed | App closes itself after clicking on sorting batch name column on Available Credits for the item modal on current stockpage | Docs: not needed Effort: small Module: dispensary Priority: high | ## Describe the bug
Msupply stopped after clicking on batch name arrow on Available Credit for the item on current stockpage.
### To reproduce
Steps to reproduce the behavior:
1. Go to 'current stockpage'
2. Click on 'any displayed item'
3. Click on Return column
4. Click on Batch Name column on "Available Credit for the item Modal that you just clicked in
4. See error
### Expected behaviour
App should display batch name as expected without msupply been stopped
### Proposed Solution
Leave if you don't know how to fix/implement. Edit this issue description and explain here if you know the best path of implementing the fix within the codebase.
### Version and device info
- App version: 4.0.0-rc1
- Tablet model: samsung
- OS version: ios
### Additional context
Add any other context about the problem here.
| 1.0 | App closes itself after clicking on sorting batch name column on Available Credits for the item modal on current stockpage - ## Describe the bug
Msupply stopped after clicking on batch name arrow on Available Credit for the item on current stockpage.
### To reproduce
Steps to reproduce the behavior:
1. Go to 'current stockpage'
2. Click on 'any displayed item'
3. Click on Return column
4. Click on Batch Name column on "Available Credit for the item Modal that you just clicked in
4. See error
### Expected behaviour
App should display batch name as expected without msupply been stopped
### Proposed Solution
Leave if you don't know how to fix/implement. Edit this issue description and explain here if you know the best path of implementing the fix within the codebase.
### Version and device info
- App version: 4.0.0-rc1
- Tablet model: samsung
- OS version: ios
### Additional context
Add any other context about the problem here.
| priority | app closes itself after clicking on sorting batch name column on available credits for the item modal on current stockpage describe the bug msupply stopped after clicking on batch name arrow on available credit for the item on current stockpage to reproduce steps to reproduce the behavior go to current stockpage click on any displayed item click on return column click on batch name column on available credit for the item modal that you just clicked in see error expected behaviour app should display batch name as expected without msupply been stopped proposed solution leave if you don t know how to fix implement edit this issue description and explain here if you know the best path of implementing the fix within the codebase version and device info app version tablet model samsung os version ios additional context add any other context about the problem here | 1 |
428,804 | 12,417,233,733 | IssuesEvent | 2020-05-22 20:07:22 | aseprite/aseprite | https://api.github.com/repos/aseprite/aseprite | closed | Aseprite v1.2.x | high priority | **Please make a comment in this issue if you want to start working on one of these tasks.**
This is the set of items that must be seen before releasing the new Aseprite 1.2.x:
- [x] Loading TGA with alpha in palette creates a layer with Background (@Gasparoken)
- [x] Lua: Dialog:file() to add a field to select filenames https://github.com/aseprite/api/issues/7 (@dacap)
- [x] Lua: selection.origin (something to move the selection edges) (@dacap)
- [x] Check that "flash layer" is working correctly (I think this is not working on macOS) (@dacap)
- [x] https://community.aseprite.org/t/errors-with-known-color-profile-srgb/2656 (@dacap)
- [x] Pixels should be blended with normal blend mode when the backdrop is transparent pixel #1096
https://steamcommunity.com/app/431730/discussions/2/1739980540113413481/?tscn=1548381128 (@Gasparoken)
- [x] Create a filter command to add an outline to borders (related to #371, #1198) (@dacap)
- ~~In someway the outline could be calculated with the whole sprite render result (instead of using the active layer only)~~ converted into #2398
- [x] radial gradient (https://community.aseprite.org/t/radial-gradient/2711, https://steamcommunity.com/app/431730/discussions/1/3182216552785250054/ ) (@dacap)
- [x] Edit > Shift feature removing sprite parts permanently (can't undo)
https://steamcommunity.com/app/431730/discussions/2/1741103267304924778/ (@Gasparoken)
- [x] ~~https://community.aseprite.org/t/cant-browse-folders-when-saving-loading-files/1133~~
- [x] Export name same as file name by default #1964 (@Gasparoken)
- [x] Review the padding checkbox preference for Import Sprite Sheet (@Gasparoken)
- [x] Lua: API to load/save one frame images only directly (https://github.com/aseprite/api/issues/9) (@dacap)
- [x] Test #1977 manually in release mode for bigger lines (@dacap)
- [x] https://community.aseprite.org/t/aseprite-icon-for-ase-files-is-a-bunny-now/2661 (@dacap)
- [x] Lua: https://community.aseprite.org/t/get-selected-palette-color-s/2512 (@dacap)
- ~~Lua: Image:drawImage() should use NORMAL blend mode (add blend mode)~~ https://github.com/aseprite/api/issues/31
- [x] Sprite sheet JSON exporter outputs full filesystem path in meta.image #1606
Not essential (maybe v1.2.11 or v1.3):
- [x] Script in extensions #1949
- [x] Calculate sprite sheet size correctly when trim option is enabled (use DocExporter to calculate sprite sheet texture size in the future)
- [x] Native dialog on macOS stay open after selecting a file #1917 (#1974, #1835) | 1.0 | Aseprite v1.2.x - **Please make a comment in this issue if you want to start working on one of these tasks.**
This is the set of items that must be seen before releasing the new Aseprite 1.2.x:
- [x] Loading TGA with alpha in palette creates a layer with Background (@Gasparoken)
- [x] Lua: Dialog:file() to add a field to select filenames https://github.com/aseprite/api/issues/7 (@dacap)
- [x] Lua: selection.origin (something to move the selection edges) (@dacap)
- [x] Check that "flash layer" is working correctly (I think this is not working on macOS) (@dacap)
- [x] https://community.aseprite.org/t/errors-with-known-color-profile-srgb/2656 (@dacap)
- [x] Pixels should be blended with normal blend mode when the backdrop is transparent pixel #1096
https://steamcommunity.com/app/431730/discussions/2/1739980540113413481/?tscn=1548381128 (@Gasparoken)
- [x] Create a filter command to add an outline to borders (related to #371, #1198) (@dacap)
- ~~In someway the outline could be calculated with the whole sprite render result (instead of using the active layer only)~~ converted into #2398
- [x] radial gradient (https://community.aseprite.org/t/radial-gradient/2711, https://steamcommunity.com/app/431730/discussions/1/3182216552785250054/ ) (@dacap)
- [x] Edit > Shift feature removing sprite parts permanently (can't undo)
https://steamcommunity.com/app/431730/discussions/2/1741103267304924778/ (@Gasparoken)
- [x] ~~https://community.aseprite.org/t/cant-browse-folders-when-saving-loading-files/1133~~
- [x] Export name same as file name by default #1964 (@Gasparoken)
- [x] Review the padding checkbox preference for Import Sprite Sheet (@Gasparoken)
- [x] Lua: API to load/save one frame images only directly (https://github.com/aseprite/api/issues/9) (@dacap)
- [x] Test #1977 manually in release mode for bigger lines (@dacap)
- [x] https://community.aseprite.org/t/aseprite-icon-for-ase-files-is-a-bunny-now/2661 (@dacap)
- [x] Lua: https://community.aseprite.org/t/get-selected-palette-color-s/2512 (@dacap)
- ~~Lua: Image:drawImage() should use NORMAL blend mode (add blend mode)~~ https://github.com/aseprite/api/issues/31
- [x] Sprite sheet JSON exporter outputs full filesystem path in meta.image #1606
Not essential (maybe v1.2.11 or v1.3):
- [x] Script in extensions #1949
- [x] Calculate sprite sheet size correctly when trim option is enabled (use DocExporter to calculate sprite sheet texture size in the future)
- [x] Native dialog on macOS stay open after selecting a file #1917 (#1974, #1835) | priority | aseprite x please make a comment in this issue if you want to start working on one of these tasks this is the set of items that must be seen before releasing the new aseprite x loading tga with alpha in palette creates a layer with background gasparoken lua dialog file to add a field to select filenames dacap lua selection origin something to move the selection edges dacap check that flash layer is working correctly i think this is not working on macos dacap dacap pixels should be blended with normal blend mode when the backdrop is transparent pixel gasparoken create a filter command to add an outline to borders related to dacap in someway the outline could be calculated with the whole sprite render result instead of using the active layer only converted into radial gradient dacap edit shift feature removing sprite parts permanently can t undo gasparoken export name same as file name by default gasparoken review the padding checkbox preference for import sprite sheet gasparoken lua api to load save one frame images only directly dacap test manually in release mode for bigger lines dacap dacap lua dacap lua image drawimage should use normal blend mode add blend mode sprite sheet json exporter outputs full filesystem path in meta image not essential maybe or script in extensions calculate sprite sheet size correctly when trim option is enabled use docexporter to calculate sprite sheet texture size in the future native dialog on macos stay open after selecting a file | 1 |
177,151 | 6,574,846,190 | IssuesEvent | 2017-09-11 14:16:15 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | opened | LDAP Source: authenticate+authorize never ending connection | Priority: High Type: Bug | Right now in LDAP we have a connection timeout which is used passed onto IO::Socket according to Net::LDAP perldoc.
I have seen an issue where the pfqueue workers are not recovering from a temporary LDAP connection issue and are stuck reading from the LDAP TCP socket (strace reports its reading from the file descriptor associated to that TCP connection). That connection is maintaining as ESTABLISHED but seems none of the two parties in the connection are saying a thing.
We should:
- [ ] See if we can find anything about the underlying bug which is the never ending connection
- [ ] Have a global timeout when doing any LDAP query in Authentication::Source::LDAPSource to have a full safety net in case anything goes wrong during that process | 1.0 | LDAP Source: authenticate+authorize never ending connection - Right now in LDAP we have a connection timeout which is used passed onto IO::Socket according to Net::LDAP perldoc.
I have seen an issue where the pfqueue workers are not recovering from a temporary LDAP connection issue and are stuck reading from the LDAP TCP socket (strace reports its reading from the file descriptor associated to that TCP connection). That connection is maintaining as ESTABLISHED but seems none of the two parties in the connection are saying a thing.
We should:
- [ ] See if we can find anything about the underlying bug which is the never ending connection
- [ ] Have a global timeout when doing any LDAP query in Authentication::Source::LDAPSource to have a full safety net in case anything goes wrong during that process | priority | ldap source authenticate authorize never ending connection right now in ldap we have a connection timeout which is used passed onto io socket according to net ldap perldoc i have seen an issue where the pfqueue workers are not recovering from a temporary ldap connection issue and are stuck reading from the ldap tcp socket strace reports its reading from the file descriptor associated to that tcp connection that connection is maintaining as established but seems none of the two parties in the connection are saying a thing we should see if we can find anything about the underlying bug which is the never ending connection have a global timeout when doing any ldap query in authentication source ldapsource to have a full safety net in case anything goes wrong during that process | 1 |
336,295 | 10,179,827,414 | IssuesEvent | 2019-08-09 08:47:14 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | closed | BVM crashes when assigning function pointer with function which returns sub type | Area/JBallerina Component/BVM Priority/Blocker Priority/High Type/Bug | **Description:**
```
function bar() returns string {
return "12";
}
function alpha() {
function () returns any ff = bar;
any s = ff.call();
}
```
Following error can be seen in the log.
[2019-02-25 11:57:58,729] ERROR {org.ballerinalang.bre.bvm.BVMScheduler} - null
java.lang.NullPointerException
at org.ballerinalang.bre.bvm.BVM.execute(BVM.java:714)
at org.ballerinalang.bre.bvm.BVMScheduler.execute(BVMScheduler.java:72)
at org.ballerinalang.bre.bvm.BVMExecutor.execute(BVMExecutor.java:184)
at org.ballerinalang.bre.bvm.BVMExecutor.executeEntryFunction(BVMExecutor.java:92)
at org.ballerinalang.BLangProgramRunner.runMainFunc(BLangProgramRunner.java:75)
at org.ballerinalang.launcher.LauncherUtils.runMain(LauncherUtils.java:171)
at org.ballerinalang.launcher.LauncherUtils.runProgram(LauncherUtils.java:160)
at org.ballerinalang.launcher.Main$RunCmd.execute(Main.java:267)
at java.util.Optional.ifPresent(Optional.java:159)
at org.ballerinalang.launcher.Main.main(Main.java:63)
[2019-02-25 11:57:58,752] ERROR {org.ballerinalang.launcher.Main} - java.lang.NullPointerException
java.lang.RuntimeException: java.lang.NullPointerException
at org.ballerinalang.bre.bvm.BVMScheduler.execute(BVMScheduler.java:77)
at org.ballerinalang.bre.bvm.BVMExecutor.execute(BVMExecutor.java:184)
at org.ballerinalang.bre.bvm.BVMExecutor.executeEntryFunction(BVMExecutor.java:92)
at org.ballerinalang.BLangProgramRunner.runMainFunc(BLangProgramRunner.java:75)
at org.ballerinalang.launcher.LauncherUtils.runMain(LauncherUtils.java:171)
at org.ballerinalang.launcher.LauncherUtils.runProgram(LauncherUtils.java:160)
at org.ballerinalang.launcher.Main$RunCmd.execute(Main.java:267)
at java.util.Optional.ifPresent(Optional.java:159)
at org.ballerinalang.launcher.Main.main(Main.java:63)
Caused by: java.lang.NullPointerException
at org.ballerinalang.bre.bvm.BVM.execute(BVM.java:714)
at org.ballerinalang.bre.bvm.BVMScheduler.execute(BVMScheduler.java:72)
... 8 more
| 2.0 | BVM crashes when assigning function pointer with function which returns sub type - **Description:**
```
function bar() returns string {
return "12";
}
function alpha() {
function () returns any ff = bar;
any s = ff.call();
}
```
Following error can be seen in the log.
[2019-02-25 11:57:58,729] ERROR {org.ballerinalang.bre.bvm.BVMScheduler} - null
java.lang.NullPointerException
at org.ballerinalang.bre.bvm.BVM.execute(BVM.java:714)
at org.ballerinalang.bre.bvm.BVMScheduler.execute(BVMScheduler.java:72)
at org.ballerinalang.bre.bvm.BVMExecutor.execute(BVMExecutor.java:184)
at org.ballerinalang.bre.bvm.BVMExecutor.executeEntryFunction(BVMExecutor.java:92)
at org.ballerinalang.BLangProgramRunner.runMainFunc(BLangProgramRunner.java:75)
at org.ballerinalang.launcher.LauncherUtils.runMain(LauncherUtils.java:171)
at org.ballerinalang.launcher.LauncherUtils.runProgram(LauncherUtils.java:160)
at org.ballerinalang.launcher.Main$RunCmd.execute(Main.java:267)
at java.util.Optional.ifPresent(Optional.java:159)
at org.ballerinalang.launcher.Main.main(Main.java:63)
[2019-02-25 11:57:58,752] ERROR {org.ballerinalang.launcher.Main} - java.lang.NullPointerException
java.lang.RuntimeException: java.lang.NullPointerException
at org.ballerinalang.bre.bvm.BVMScheduler.execute(BVMScheduler.java:77)
at org.ballerinalang.bre.bvm.BVMExecutor.execute(BVMExecutor.java:184)
at org.ballerinalang.bre.bvm.BVMExecutor.executeEntryFunction(BVMExecutor.java:92)
at org.ballerinalang.BLangProgramRunner.runMainFunc(BLangProgramRunner.java:75)
at org.ballerinalang.launcher.LauncherUtils.runMain(LauncherUtils.java:171)
at org.ballerinalang.launcher.LauncherUtils.runProgram(LauncherUtils.java:160)
at org.ballerinalang.launcher.Main$RunCmd.execute(Main.java:267)
at java.util.Optional.ifPresent(Optional.java:159)
at org.ballerinalang.launcher.Main.main(Main.java:63)
Caused by: java.lang.NullPointerException
at org.ballerinalang.bre.bvm.BVM.execute(BVM.java:714)
at org.ballerinalang.bre.bvm.BVMScheduler.execute(BVMScheduler.java:72)
... 8 more
| priority | bvm crashes when assigning function pointer with function which returns sub type description function bar returns string return function alpha function returns any ff bar any s ff call following error can be seen in the log error org ballerinalang bre bvm bvmscheduler null java lang nullpointerexception at org ballerinalang bre bvm bvm execute bvm java at org ballerinalang bre bvm bvmscheduler execute bvmscheduler java at org ballerinalang bre bvm bvmexecutor execute bvmexecutor java at org ballerinalang bre bvm bvmexecutor executeentryfunction bvmexecutor java at org ballerinalang blangprogramrunner runmainfunc blangprogramrunner java at org ballerinalang launcher launcherutils runmain launcherutils java at org ballerinalang launcher launcherutils runprogram launcherutils java at org ballerinalang launcher main runcmd execute main java at java util optional ifpresent optional java at org ballerinalang launcher main main main java error org ballerinalang launcher main java lang nullpointerexception java lang runtimeexception java lang nullpointerexception at org ballerinalang bre bvm bvmscheduler execute bvmscheduler java at org ballerinalang bre bvm bvmexecutor execute bvmexecutor java at org ballerinalang bre bvm bvmexecutor executeentryfunction bvmexecutor java at org ballerinalang blangprogramrunner runmainfunc blangprogramrunner java at org ballerinalang launcher launcherutils runmain launcherutils java at org ballerinalang launcher launcherutils runprogram launcherutils java at org ballerinalang launcher main runcmd execute main java at java util optional ifpresent optional java at org ballerinalang launcher main main main java caused by java lang nullpointerexception at org ballerinalang bre bvm bvm execute bvm java at org ballerinalang bre bvm bvmscheduler execute bvmscheduler java more | 1 |
740,721 | 25,764,725,266 | IssuesEvent | 2022-12-09 00:24:25 | FrozenBlock/WilderWild | https://api.github.com/repos/FrozenBlock/WilderWild | closed | Crash on startup after updating to 1.1.4 | bug crash high priority | **Description of the Bug Encountered**
Game crashes on startup after updating to 1.1.4 from 1.1.2
**Steps To Reproduce**
1. Update to 1.1.4
2. Try to launch the game
3. Game crashes
**Screenshots**
**Logs**
[crash-2022-12-07_21.35.55-client.txt](https://github.com/FrozenBlock/WilderWild/files/10181165/crash-2022-12-07_21.35.55-client.txt)
[crash-2022-12-07_21.35.53-server.txt](https://github.com/FrozenBlock/WilderWild/files/10181166/crash-2022-12-07_21.35.53-server.txt)
[latest.log](https://github.com/FrozenBlock/WilderWild/files/10181168/latest.log)
| 1.0 | Crash on startup after updating to 1.1.4 - **Description of the Bug Encountered**
Game crashes on startup after updating to 1.1.4 from 1.1.2
**Steps To Reproduce**
1. Update to 1.1.4
2. Try to launch the game
3. Game crashes
**Screenshots**
**Logs**
[crash-2022-12-07_21.35.55-client.txt](https://github.com/FrozenBlock/WilderWild/files/10181165/crash-2022-12-07_21.35.55-client.txt)
[crash-2022-12-07_21.35.53-server.txt](https://github.com/FrozenBlock/WilderWild/files/10181166/crash-2022-12-07_21.35.53-server.txt)
[latest.log](https://github.com/FrozenBlock/WilderWild/files/10181168/latest.log)
| priority | crash on startup after updating to description of the bug encountered game crashes on startup after updating to from steps to reproduce update to try to launch the game game crashes screenshots logs | 1 |
793,352 | 27,992,092,544 | IssuesEvent | 2023-03-27 05:12:12 | AY2223S2-CS2103T-W12-4/tp | https://api.github.com/repos/AY2223S2-CS2103T-W12-4/tp | closed | Find appointments during a particular time period | priority.High type.Appointment | As a doctor, I want to view the number of appointments I have during a particular time period so that I can gauge my workload. | 1.0 | Find appointments during a particular time period - As a doctor, I want to view the number of appointments I have during a particular time period so that I can gauge my workload. | priority | find appointments during a particular time period as a doctor i want to view the number of appointments i have during a particular time period so that i can gauge my workload | 1 |
132,083 | 5,169,445,473 | IssuesEvent | 2017-01-18 00:58:11 | bitshares/bitshares-core | https://api.github.com/repos/bitshares/bitshares-core | opened | proposed transactions: get_full_accounts needs to notify ChainStore of any proposed transaction chagnes | api High Priority | _From @jcalfee on November 14, 2015 22:44_
I can create new proposals, but they do not show up in the ChainStore until I refresh the application. The accounts are subscribed via get_full_accounts.
_Copied from original issue: cryptonomex/graphene#442_ | 1.0 | proposed transactions: get_full_accounts needs to notify ChainStore of any proposed transaction chagnes - _From @jcalfee on November 14, 2015 22:44_
I can create new proposals, but they do not show up in the ChainStore until I refresh the application. The accounts are subscribed via get_full_accounts.
_Copied from original issue: cryptonomex/graphene#442_ | priority | proposed transactions get full accounts needs to notify chainstore of any proposed transaction chagnes from jcalfee on november i can create new proposals but they do not show up in the chainstore until i refresh the application the accounts are subscribed via get full accounts copied from original issue cryptonomex graphene | 1 |
470,530 | 13,540,018,812 | IssuesEvent | 2020-09-16 14:10:14 | pokt-network/pocket-dashboard | https://api.github.com/repos/pokt-network/pocket-dashboard | closed | Paying 100% with balance is not working | High Priority bug | **Description**
For APPs and nodes creation, paying the stake 100% with the balance is not working, it's not staking the APP.
**Step by Step**
1. Create a node from the CLI.
2. Go to the faucet and claim tokens for that node.
3. Go to the dashboard.
4. Import that node (after exporting it from the CLI: `pocket accounts export <address>`)
5. Once imported, stake it with the balance only. | 1.0 | Paying 100% with balance is not working - **Description**
For APPs and nodes creation, paying the stake 100% with the balance is not working, it's not staking the APP.
**Step by Step**
1. Create a node from the CLI.
2. Go to the faucet and claim tokens for that node.
3. Go to the dashboard.
4. Import that node (after exporting it from the CLI: `pocket accounts export <address>`)
5. Once imported, stake it with the balance only. | priority | paying with balance is not working description for apps and nodes creation paying the stake with the balance is not working it s not staking the app step by step create a node from the cli go to the faucet and claim tokens for that node go to the dashboard import that node after exporting it from the cli pocket accounts export once imported stake it with the balance only | 1 |
453,352 | 13,068,519,596 | IssuesEvent | 2020-07-31 03:50:17 | kubesphere/kubesphere | https://api.github.com/repos/kubesphere/kubesphere | closed | custom ws role for devops view is wrong | area/iam kind/bug kind/need-to-verify priority/high | **Describe the Bug**
`ray` is the admin of the ws and we can see there are several devops projects. Now create a custom role with devops project view access. Log in with the user, can't see the devops projects.



**Versions Used**
KubeSphere: 3.0.0-dev | 1.0 | custom ws role for devops view is wrong - **Describe the Bug**
`ray` is the admin of the ws and we can see there are several devops projects. Now create a custom role with devops project view access. Log in with the user, can't see the devops projects.



**Versions Used**
KubeSphere: 3.0.0-dev | priority | custom ws role for devops view is wrong describe the bug ray is the admin of the ws and we can see there are several devops projects now create a custom role with devops project view access log in with the user can t see the devops projects versions used kubesphere dev | 1 |
707,894 | 24,322,988,130 | IssuesEvent | 2022-09-30 12:31:16 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | Problem opening the Attribute Table | bug investigation Priority: High Accepted Internal Good first issue | ## Description
<!-- Add here a few sentences describing the bug. -->
Maybe due to the modular plugin (to be confirmed) **sometime** when the Attribute Table is opened it will not appear immediately. This is imply in a wrong UI state.
## How to reproduce
<!-- A list of steps to reproduce the bug -->
- Open [this map](https://dev-mapstore.geosolutionsgroup.com/mapstore/#/viewer/openlayers/10358)
- Select one vector layer
- Open the attribute table
*Expected Result*
<!-- Describe here the expected result -->
The Attribue Table should appear immediately or the button to open the Attribute Table should be enabled only when the chunk of the plugin is loaded.
*Current Result*
<!-- Describe here the current behavior -->

- [x] Not browser related
<details><summary> <b>Browser info</b> </summary>
<!-- If browser related, please compile the following table -->
<!-- If your browser is not in the list please add a new row to the table with the version -->
(use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users)
| Browser Affected | Version |
|---|---|
|Internet Explorer| |
|Edge| |
|Chrome| |
|Firefox| |
|Safari| |
</details>
## Other useful information
<!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
| 1.0 | Problem opening the Attribute Table - ## Description
<!-- Add here a few sentences describing the bug. -->
Maybe due to the modular plugin (to be confirmed) **sometime** when the Attribute Table is opened it will not appear immediately. This is imply in a wrong UI state.
## How to reproduce
<!-- A list of steps to reproduce the bug -->
- Open [this map](https://dev-mapstore.geosolutionsgroup.com/mapstore/#/viewer/openlayers/10358)
- Select one vector layer
- Open the attribute table
*Expected Result*
<!-- Describe here the expected result -->
The Attribue Table should appear immediately or the button to open the Attribute Table should be enabled only when the chunk of the plugin is loaded.
*Current Result*
<!-- Describe here the current behavior -->

- [x] Not browser related
<details><summary> <b>Browser info</b> </summary>
<!-- If browser related, please compile the following table -->
<!-- If your browser is not in the list please add a new row to the table with the version -->
(use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users)
| Browser Affected | Version |
|---|---|
|Internet Explorer| |
|Edge| |
|Chrome| |
|Firefox| |
|Safari| |
</details>
## Other useful information
<!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
| priority | problem opening the attribute table description maybe due to the modular plugin to be confirmed sometime when the attribute table is opened it will not appear immediately this is imply in a wrong ui state how to reproduce open select one vector layer open the attribute table expected result the attribue table should appear immediately or the button to open the attribute table should be enabled only when the chunk of the plugin is loaded current result not browser related browser info use this site a href for non expert users browser affected version internet explorer edge chrome firefox safari other useful information | 1 |
381,728 | 11,286,782,392 | IssuesEvent | 2020-01-16 01:54:02 | apache/incubator-echarts | https://api.github.com/repos/apache/incubator-echarts | closed | 浏览器缩放时地图位置跑偏,需要刷新浏览器才会和数据坐标对应上 | bug component: map priority: high waiting-for: community | <!--
Please Use https://ecomfe.github.io/echarts-issue-helper to create the issue.
Otherwise, it will be closed immediately.
Questions in the form of *How to use ...* should be at Stack Overflow rather than GitHub issue list.
请注意,所有 issue 必须由 https://ecomfe.github.io/echarts-issue-helper/ 创建,不然将会被直接关闭。建议使用英文提问。
Issues 中不要问「如何使用 ECharts 实现……功能」的问题,相关问题请到 SegmentFault 或 Stack Overflow 提问,详见上面的链接。
-->
This issue is not created by [echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will be soon closed.
先附上在线链接:https://gallery.echartsjs.com/editor.html?c=xDO1NEGdk&v=1
第一次init完成后数据在地图上的点没问题,缩放浏览器后,地图位置跑偏了,这时候刷新浏览器后会变正常,并且刷新的时候数据和地图缩放时机不一致。这个问题有人遇到过吗 | 1.0 | 浏览器缩放时地图位置跑偏,需要刷新浏览器才会和数据坐标对应上 - <!--
Please Use https://ecomfe.github.io/echarts-issue-helper to create the issue.
Otherwise, it will be closed immediately.
Questions in the form of *How to use ...* should be at Stack Overflow rather than GitHub issue list.
请注意,所有 issue 必须由 https://ecomfe.github.io/echarts-issue-helper/ 创建,不然将会被直接关闭。建议使用英文提问。
Issues 中不要问「如何使用 ECharts 实现……功能」的问题,相关问题请到 SegmentFault 或 Stack Overflow 提问,详见上面的链接。
-->
This issue is not created by [echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will be soon closed.
先附上在线链接:https://gallery.echartsjs.com/editor.html?c=xDO1NEGdk&v=1
第一次init完成后数据在地图上的点没问题,缩放浏览器后,地图位置跑偏了,这时候刷新浏览器后会变正常,并且刷新的时候数据和地图缩放时机不一致。这个问题有人遇到过吗 | priority | 浏览器缩放时地图位置跑偏,需要刷新浏览器才会和数据坐标对应上 please use to create the issue otherwise it will be closed immediately questions in the form of how to use should be at stack overflow rather than github issue list 请注意,所有 issue 必须由 创建,不然将会被直接关闭。建议使用英文提问。 issues 中不要问「如何使用 echarts 实现……功能」的问题,相关问题请到 segmentfault 或 stack overflow 提问,详见上面的链接。 this issue is not created by and will be soon closed 先附上在线链接: 第一次init完成后数据在地图上的点没问题,缩放浏览器后,地图位置跑偏了,这时候刷新浏览器后会变正常,并且刷新的时候数据和地图缩放时机不一致。这个问题有人遇到过吗 | 1 |
653,098 | 21,572,036,165 | IssuesEvent | 2022-05-02 09:23:11 | chaotic-aur/packages | https://api.github.com/repos/chaotic-aur/packages | closed | [Bug] | priority:high bug:misc | ### What happens?
package 'simple-mtpfs' missing from the packages chaotic-aur repo
package does exist in ufscar-hpc/hourly.2.txt [Issue 976]
### What is expected to happen?
package to be available for install via pacman
### If possible, please attach logs
_No response_
### More information
_No response_ | 1.0 | [Bug] - ### What happens?
package 'simple-mtpfs' missing from the packages chaotic-aur repo
package does exist in ufscar-hpc/hourly.2.txt [Issue 976]
### What is expected to happen?
package to be available for install via pacman
### If possible, please attach logs
_No response_
### More information
_No response_ | priority | what happens package simple mtpfs missing from the packages chaotic aur repo package does exist in ufscar hpc hourly txt what is expected to happen package to be available for install via pacman if possible please attach logs no response more information no response | 1 |
430,150 | 12,440,810,983 | IssuesEvent | 2020-05-26 12:40:21 | BgeeDB/bgee_apps | https://api.github.com/repos/BgeeDB/bgee_apps | opened | TopAnat display improvements | priority: high topanat | In GitLab by @fbastian on Mar 9, 2016, 13:53
From Iakov:
* "It's very hard to copy gene list form from already completed/or running job. [...] Just replace "disabled" with "readonly" for textarea in the html code."
* "if you run multiple topanat analysis in different windows recent job is missing some entries" => this one I'm a bit surprised, I suspect it was not new job, but already existing ones?
* "It would be super cool to have "run in another window" like with ncbi blast. [...] Then you can run the same stuff with different parameters to play with."
* "when jobname is longer than the filed and search didn't return any results, it is impossible to see the full job name because it's truncated. Another solution to show jobname even if no results were found."
* "copyright in html is 2015, not 2016 (`<meta name='dcterms.rights'...>`"
@vrechdelaval: if something is too long/complicated, it should be given to the webteam. | 1.0 | TopAnat display improvements - In GitLab by @fbastian on Mar 9, 2016, 13:53
From Iakov:
* "It's very hard to copy gene list form from already completed/or running job. [...] Just replace "disabled" with "readonly" for textarea in the html code."
* "if you run multiple topanat analysis in different windows recent job is missing some entries" => this one I'm a bit surprised, I suspect it was not new job, but already existing ones?
* "It would be super cool to have "run in another window" like with ncbi blast. [...] Then you can run the same stuff with different parameters to play with."
* "when jobname is longer than the filed and search didn't return any results, it is impossible to see the full job name because it's truncated. Another solution to show jobname even if no results were found."
* "copyright in html is 2015, not 2016 (`<meta name='dcterms.rights'...>`"
@vrechdelaval: if something is too long/complicated, it should be given to the webteam. | priority | topanat display improvements in gitlab by fbastian on mar from iakov it s very hard to copy gene list form from already completed or running job just replace disabled with readonly for textarea in the html code if you run multiple topanat analysis in different windows recent job is missing some entries this one i m a bit surprised i suspect it was not new job but already existing ones it would be super cool to have run in another window like with ncbi blast then you can run the same stuff with different parameters to play with when jobname is longer than the filed and search didn t return any results it is impossible to see the full job name because it s truncated another solution to show jobname even if no results were found copyright in html is not vrechdelaval if something is too long complicated it should be given to the webteam | 1 |
630,056 | 20,085,496,944 | IssuesEvent | 2022-02-05 00:08:06 | LBNL-ETA/BEDES-Manager | https://api.github.com/repos/LBNL-ETA/BEDES-Manager | closed | should be able to make all changes to public application | bug high priority | If I create an application, then change its sharing from Private to Public, I am no longer allowed to modify the application terms, or the application options (name, description, sharing), but I should be able to. | 1.0 | should be able to make all changes to public application - If I create an application, then change its sharing from Private to Public, I am no longer allowed to modify the application terms, or the application options (name, description, sharing), but I should be able to. | priority | should be able to make all changes to public application if i create an application then change its sharing from private to public i am no longer allowed to modify the application terms or the application options name description sharing but i should be able to | 1 |
138,441 | 5,341,396,299 | IssuesEvent | 2017-02-17 02:41:33 | JSCooke/MPAi | https://api.github.com/repos/JSCooke/MPAi | closed | Split MPAi Vowels and MPAi Words Applications | High Priority (urgent) | To complete our design, this should be done, with an extra window popping up at the beginning to choose which one. | 1.0 | Split MPAi Vowels and MPAi Words Applications - To complete our design, this should be done, with an extra window popping up at the beginning to choose which one. | priority | split mpai vowels and mpai words applications to complete our design this should be done with an extra window popping up at the beginning to choose which one | 1 |
411,342 | 12,017,132,732 | IssuesEvent | 2020-04-10 17:40:58 | Sarrasor/INNO-S20-SP | https://api.github.com/repos/Sarrasor/INNO-S20-SP | closed | Rewrite python server due to changes in API | data transfer high priority | Update python server due to changes in API:
- Change names
- Change parser
- Add new fields
Use .proto as a reference | 1.0 | Rewrite python server due to changes in API - Update python server due to changes in API:
- Change names
- Change parser
- Add new fields
Use .proto as a reference | priority | rewrite python server due to changes in api update python server due to changes in api change names change parser add new fields use proto as a reference | 1 |
344,940 | 10,350,476,098 | IssuesEvent | 2019-09-05 02:57:31 | abhinavkashyap/sciwing | https://api.github.com/repos/abhinavkashyap/sciwing | closed | Deploying: CI-CD for installing the package on ay remote/cloud based services | high priority | - You can use Travis/Circle CI to deploy the code on remote servers.
- This helps in easy training on Amazon cloud or other remote servers | 1.0 | Deploying: CI-CD for installing the package on ay remote/cloud based services - - You can use Travis/Circle CI to deploy the code on remote servers.
- This helps in easy training on Amazon cloud or other remote servers | priority | deploying ci cd for installing the package on ay remote cloud based services you can use travis circle ci to deploy the code on remote servers this helps in easy training on amazon cloud or other remote servers | 1 |
826,235 | 31,561,848,917 | IssuesEvent | 2023-09-03 10:57:48 | eSolutions-EMS/endurance-management-system | https://api.github.com/repos/eSolutions-EMS/endurance-management-system | closed | Create Arrivelist for Witness page | high-priority | ## Overview
Having to manually type Participant Number and potentially exact time is too cumbersome. Instead the app can provide Arrivelist ordered by expected arrive time (estimation) which can then be reordered manually. Having a manually ordered list would allow the user to simply snapshot the ARR with a single button click | 1.0 | Create Arrivelist for Witness page - ## Overview
Having to manually type Participant Number and potentially exact time is too cumbersome. Instead the app can provide Arrivelist ordered by expected arrive time (estimation) which can then be reordered manually. Having a manually ordered list would allow the user to simply snapshot the ARR with a single button click | priority | create arrivelist for witness page overview having to manually type participant number and potentially exact time is too cumbersome instead the app can provide arrivelist ordered by expected arrive time estimation which can then be reordered manually having a manually ordered list would allow the user to simply snapshot the arr with a single button click | 1 |
338,380 | 10,228,338,395 | IssuesEvent | 2019-08-17 01:25:16 | alvarogzp/telegram-bot-framework | https://api.github.com/repos/alvarogzp/telegram-bot-framework | closed | Display popular hashtags in a time frame | feature-hashtags high-priority request | Proposed as a sub-command of `/hashtags popular`, it should accept either expressions like "week" or number of days (eg. 10days).
Implementation notes: Try to find a library for parsing time intervals. | 1.0 | Display popular hashtags in a time frame - Proposed as a sub-command of `/hashtags popular`, it should accept either expressions like "week" or number of days (eg. 10days).
Implementation notes: Try to find a library for parsing time intervals. | priority | display popular hashtags in a time frame proposed as a sub command of hashtags popular it should accept either expressions like week or number of days eg implementation notes try to find a library for parsing time intervals | 1 |
799,574 | 28,309,724,085 | IssuesEvent | 2023-04-10 14:22:31 | scientist-softserv/adventist-dl | https://api.github.com/repos/scientist-softserv/adventist-dl | closed | Featured Collections | Phase3/4 High Priority | # Summary
Katharine wants to add/shift around collections on the home page to reflect the following:
[George McCready Price Papers (Collection 002)](https://adl.b2.adventistdigitallibrary.org/collections/4cbb9bb5-d67b-4776-a84e-edd37952d7ed?locale=en)
[Seventh-day Adventist Inventors Collection](https://adl.b2.adventistdigitallibrary.org/collections/ae6b2b1a-2af5-46d8-bca2-d8ab816d74a3?locale=en)
[Warren Eugene Howell Travel Albums](https://adl.b2.adventistdigitallibrary.org/collections/17635b76-4ef4-4951-8c3b-bdbdf22ba0d3?locale=en)
Grace Amadon Collection (Collection 154) - already on homepage; please move to 4th in list
Center for Adventist Research Photograph Collection - already on homepage; please move to 5th in list
JPGs for the new collections



# Acceptance Criteria
- [ ] Featured collections on the home page reflect the above
# Screenshots or Video
# Testing Instructions
# Notes
| 1.0 | Featured Collections - # Summary
Katharine wants to add/shift around collections on the home page to reflect the following:
[George McCready Price Papers (Collection 002)](https://adl.b2.adventistdigitallibrary.org/collections/4cbb9bb5-d67b-4776-a84e-edd37952d7ed?locale=en)
[Seventh-day Adventist Inventors Collection](https://adl.b2.adventistdigitallibrary.org/collections/ae6b2b1a-2af5-46d8-bca2-d8ab816d74a3?locale=en)
[Warren Eugene Howell Travel Albums](https://adl.b2.adventistdigitallibrary.org/collections/17635b76-4ef4-4951-8c3b-bdbdf22ba0d3?locale=en)
Grace Amadon Collection (Collection 154) - already on homepage; please move to 4th in list
Center for Adventist Research Photograph Collection - already on homepage; please move to 5th in list
JPGs for the new collections



# Acceptance Criteria
- [ ] Featured collections on the home page reflect the above
# Screenshots or Video
# Testing Instructions
# Notes
| priority | featured collections summary katharine wants to add shift around collections on the home page to reflect the following grace amadon collection collection already on homepage please move to in list center for adventist research photograph collection already on homepage please move to in list jpgs for the new collections acceptance criteria featured collections on the home page reflect the above screenshots or video testing instructions notes | 1 |
430,797 | 12,466,175,567 | IssuesEvent | 2020-05-28 15:05:38 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | Refinements to Video Component | Accepted GeoStory Priority: High enhancement | ## Description
<!-- A few sentences describing new feature -->
<!-- screenshot, video, or link to mockup/prototype are welcome -->
- Video controls for videos in backgrounds (covers) should be removed (see also comment [here](https://github.com/geosolutions-it/MapStore2-C039/issues/10#issuecomment-626823261))
- Edit mode should show only a thumbnail preview of the video (if available)
- Video should play based on the selected options only in view mode.
- We should include a loop option if possible
- We should include a mute option if possible
- Move autoplay, loop and mute in the content toolbar
- Now videos are automatically stopped once the user scroll down/up to other sections and the video is no longer visible in the story view. We should enhance background videos to automatically resume them as soon the user see the section again
- We should perform some further check with Vimeo
- fit cover does not work as expected in background for small, medium and large sizes. Video overlap the limits of the selected size.
**What kind of improvement you want to add?** (check one with "x", remove the others)
- [x] Minor changes to existing features
## Other useful information
| 1.0 | Refinements to Video Component - ## Description
<!-- A few sentences describing new feature -->
<!-- screenshot, video, or link to mockup/prototype are welcome -->
- Video controls for videos in backgrounds (covers) should be removed (see also comment [here](https://github.com/geosolutions-it/MapStore2-C039/issues/10#issuecomment-626823261))
- Edit mode should show only a thumbnail preview of the video (if available)
- Video should play based on the selected options only in view mode.
- We should include a loop option if possible
- We should include a mute option if possible
- Move autoplay, loop and mute in the content toolbar
- Now videos are automatically stopped once the user scroll down/up to other sections and the video is no longer visible in the story view. We should enhance background videos to automatically resume them as soon the user see the section again
- We should perform some further check with Vimeo
- fit cover does not work as expected in background for small, medium and large sizes. Video overlap the limits of the selected size.
**What kind of improvement you want to add?** (check one with "x", remove the others)
- [x] Minor changes to existing features
## Other useful information
| priority | refinements to video component description video controls for videos in backgrounds covers should be removed see also comment edit mode should show only a thumbnail preview of the video if available video should play based on the selected options only in view mode we should include a loop option if possible we should include a mute option if possible move autoplay loop and mute in the content toolbar now videos are automatically stopped once the user scroll down up to other sections and the video is no longer visible in the story view we should enhance background videos to automatically resume them as soon the user see the section again we should perform some further check with vimeo fit cover does not work as expected in background for small medium and large sizes video overlap the limits of the selected size what kind of improvement you want to add check one with x remove the others minor changes to existing features other useful information | 1 |
142,015 | 5,448,151,960 | IssuesEvent | 2017-03-07 15:16:25 | stats4sd/wordcloud-app | https://api.github.com/repos/stats4sd/wordcloud-app | closed | Add front page with big, easy buttons | 1 - Ready Impact-High Priority-Medium Size-Small Type-feature | 2 buttons - data session and "end of day review" (or something like that!) | 1.0 | Add front page with big, easy buttons - 2 buttons - data session and "end of day review" (or something like that!) | priority | add front page with big easy buttons buttons data session and end of day review or something like that | 1 |
165,641 | 6,279,866,748 | IssuesEvent | 2017-07-18 17:09:41 | jonas747/yagpdb | https://api.github.com/repos/jonas747/yagpdb | closed | Streaming: If the bot fails to add streaming role, they get put in an enigma | bug Priority: High | They will never receive the rolw in the future, after the bot has permissions.
after this is hould clear all streaming states | 1.0 | Streaming: If the bot fails to add streaming role, they get put in an enigma - They will never receive the rolw in the future, after the bot has permissions.
after this is hould clear all streaming states | priority | streaming if the bot fails to add streaming role they get put in an enigma they will never receive the rolw in the future after the bot has permissions after this is hould clear all streaming states | 1 |
261,761 | 8,245,883,574 | IssuesEvent | 2018-09-11 11:07:11 | workcraft/workcraft | https://api.github.com/repos/workcraft/workcraft | closed | Support for guards in WTG model | enhancement priority:high status:confirmed tag:model:wtg | - [x] Guards are assignable to WTG waveforms as a list of signals, possibly with negations (i.e. a product of literals) , e.g.: `x y !z`
- [x] Translate WTG guards to STG as read-arcs from appropriate set of signal places, taking negations into account.
| 1.0 | Support for guards in WTG model - - [x] Guards are assignable to WTG waveforms as a list of signals, possibly with negations (i.e. a product of literals) , e.g.: `x y !z`
- [x] Translate WTG guards to STG as read-arcs from appropriate set of signal places, taking negations into account.
| priority | support for guards in wtg model guards are assignable to wtg waveforms as a list of signals possibly with negations i e a product of literals e g x y z translate wtg guards to stg as read arcs from appropriate set of signal places taking negations into account | 1 |
765,321 | 26,841,379,909 | IssuesEvent | 2023-02-03 00:58:49 | OpenQDev/OpenQ-Frontend | https://api.github.com/repos/OpenQDev/OpenQ-Frontend | closed | Easy Fix: Polygon Exception Call | bug HIGH PRIORITY Fixed - awaiting merge | Polygon Call Exception
An exception occured while calling Polygon. You might want to try again. If you need more information or want to report a bug, please contact info@openq.dev
I think this happens when you try to create a bounty that was already minted. We should change the error message or just disable the mint contract button (if the bounty is not indexed I think it wont be easy to disable it so we should in that case also change the error message to something like bounty already exists) | 1.0 | Easy Fix: Polygon Exception Call - Polygon Call Exception
An exception occured while calling Polygon. You might want to try again. If you need more information or want to report a bug, please contact info@openq.dev
I think this happens when you try to create a bounty that was already minted. We should change the error message or just disable the mint contract button (if the bounty is not indexed I think it wont be easy to disable it so we should in that case also change the error message to something like bounty already exists) | priority | easy fix polygon exception call polygon call exception an exception occured while calling polygon you might want to try again if you need more information or want to report a bug please contact info openq dev i think this happens when you try to create a bounty that was already minted we should change the error message or just disable the mint contract button if the bounty is not indexed i think it wont be easy to disable it so we should in that case also change the error message to something like bounty already exists | 1 |
354,111 | 10,562,964,514 | IssuesEvent | 2019-10-04 19:41:36 | texas-justice-initiative/website-nextjs | https://api.github.com/repos/texas-justice-initiative/website-nextjs | closed | Custom Bar Chart Shading for Incomplete Year | high priority | We would like the current year on bar charts to have some sort of unique color to indicate the data is incomplete. | 1.0 | Custom Bar Chart Shading for Incomplete Year - We would like the current year on bar charts to have some sort of unique color to indicate the data is incomplete. | priority | custom bar chart shading for incomplete year we would like the current year on bar charts to have some sort of unique color to indicate the data is incomplete | 1 |
586,209 | 17,572,717,854 | IssuesEvent | 2021-08-15 02:31:14 | nicolarabarca/SCL017-md-link | https://api.github.com/repos/nicolarabarca/SCL017-md-link | opened | Leer archivos de entrada | Priority:High development | Se debe leer el archivo ingresado por el usuario, el cual puede ser una ruta relativa o absoluta. | 1.0 | Leer archivos de entrada - Se debe leer el archivo ingresado por el usuario, el cual puede ser una ruta relativa o absoluta. | priority | leer archivos de entrada se debe leer el archivo ingresado por el usuario el cual puede ser una ruta relativa o absoluta | 1 |
90,315 | 3,814,468,522 | IssuesEvent | 2016-03-28 13:31:34 | cs2103jan2016-w14-3j/main | https://api.github.com/repos/cs2103jan2016-w14-3j/main | closed | The user can sort his tasks based on priority level | not done priority.high type.story | so that he can complete the most important task before moving on to the next. | 1.0 | The user can sort his tasks based on priority level - so that he can complete the most important task before moving on to the next. | priority | the user can sort his tasks based on priority level so that he can complete the most important task before moving on to the next | 1 |
450,327 | 13,002,372,978 | IssuesEvent | 2020-07-24 03:03:48 | kubesphere/console | https://api.github.com/repos/kubesphere/console | closed | custom ws role permission denied | area/console area/iam kind/bug kind/need-to-verify priority/high | **Describe the bug**
A workspace custom role with project management access, when the user logs in, got error.


**Versions used(KubeSphere/Kubernetes)**
KubeSphere: 3.0.0-dev
Kubernetes: 1.15.12
**Environment**
allinone, minimal installation
**Expected behavior**
workspace setting should hide. I am not sure if the overview also should hide or not. If not, then should give permission. | 1.0 | custom ws role permission denied - **Describe the bug**
A workspace custom role with project management access, when the user logs in, got error.


**Versions used(KubeSphere/Kubernetes)**
KubeSphere: 3.0.0-dev
Kubernetes: 1.15.12
**Environment**
allinone, minimal installation
**Expected behavior**
workspace setting should hide. I am not sure if the overview also should hide or not. If not, then should give permission. | priority | custom ws role permission denied describe the bug a workspace custom role with project management access when the user logs in got error versions used kubesphere kubernetes kubesphere dev kubernetes environment allinone minimal installation expected behavior workspace setting should hide i am not sure if the overview also should hide or not if not then should give permission | 1 |
772,286 | 27,114,917,458 | IssuesEvent | 2023-02-15 17:48:54 | SuadHus/D0020E-VR | https://api.github.com/repos/SuadHus/D0020E-VR | opened | Breathing therapy | enhancement High priority High Risk | Breathing therapy with pretty visuals and guided breathing.
Estimated
Estimated Time: 80 hours | 1.0 | Breathing therapy - Breathing therapy with pretty visuals and guided breathing.
Estimated
Estimated Time: 80 hours | priority | breathing therapy breathing therapy with pretty visuals and guided breathing estimated estimated time hours | 1 |
631,981 | 20,167,075,567 | IssuesEvent | 2022-02-10 06:19:35 | EddieHubCommunity/LinkFree | https://api.github.com/repos/EddieHubCommunity/LinkFree | closed | [OTHER] Site marked as not secure | 🟧 priority: high 🔒 staff only | ### What would you like to share?
For some reason, the site doesn't have ```https://``` it has ```http://`` missing the s at the end. It can be coz the site was made a long time ago, so the site is marked as "Not Secure" at least for google (idk about other browsers. The site works if you add s in the end though, but that's a even worse not secure, so idk who has permissions with the hosting stuff (i think its @eddiejaoude) so please have a look and see if the page can be made secure again.
### Additional information
_No response_ | 1.0 | [OTHER] Site marked as not secure - ### What would you like to share?
For some reason, the site doesn't have ```https://``` it has ```http://`` missing the s at the end. It can be coz the site was made a long time ago, so the site is marked as "Not Secure" at least for google (idk about other browsers. The site works if you add s in the end though, but that's a even worse not secure, so idk who has permissions with the hosting stuff (i think its @eddiejaoude) so please have a look and see if the page can be made secure again.
### Additional information
_No response_ | priority | site marked as not secure what would you like to share for some reason the site doesn t have it has missing the s at the end it can be coz the site was made a long time ago so the site is marked as not secure at least for google idk about other browsers the site works if you add s in the end though but that s a even worse not secure so idk who has permissions with the hosting stuff i think its eddiejaoude so please have a look and see if the page can be made secure again additional information no response | 1 |
545,337 | 15,948,500,120 | IssuesEvent | 2021-04-15 05:57:51 | wso2/product-apim | https://api.github.com/repos/wso2/product-apim | closed | Unable to edit existing Subscription-level throttling policies | API-M 4.0.0 OS/Windows Priority/Highest React-UI Severity/Critical T1 Type/Bug | ### Description:
User can't edit the existing Subscription-level throttling policies.
When edit button is clicked, fields are displayed blank with name field frozen. When trying to save error message "_Name is Empty_" is displayed.

### Steps to reproduce:
- Go to admin portal
- Click subscription policies
- Click edit in policy "Gold"
Expected output :
Existing values should be loaded in the fields.
### Affected Product Version:
API-M 4.0.0
#### Suggested Labels:
API-M 4.0.0
| 1.0 | Unable to edit existing Subscription-level throttling policies - ### Description:
User can't edit the existing Subscription-level throttling policies.
When edit button is clicked, fields are displayed blank with name field frozen. When trying to save error message "_Name is Empty_" is displayed.

### Steps to reproduce:
- Go to admin portal
- Click subscription policies
- Click edit in policy "Gold"
Expected output :
Existing values should be loaded in the fields.
### Affected Product Version:
API-M 4.0.0
#### Suggested Labels:
API-M 4.0.0
| priority | unable to edit existing subscription level throttling policies description user can t edit the existing subscription level throttling policies when edit button is clicked fields are displayed blank with name field frozen when trying to save error message name is empty is displayed steps to reproduce go to admin portal click subscription policies click edit in policy gold expected output existing values should be loaded in the fields affected product version api m suggested labels api m | 1 |
197,819 | 6,964,378,719 | IssuesEvent | 2017-12-08 21:24:44 | b2io/base2.io | https://api.github.com/repos/b2io/base2.io | opened | SEO testing | priority: 2-high scope: site status: 2-ready type: chore | Determine what goal we want to be targeting for SEO optimization. What tooling can we put in place to gauge our level of search engine optimization currently and going forward? Take a look at https://github.com/thedaviddias/Front-End-Checklist. | 1.0 | SEO testing - Determine what goal we want to be targeting for SEO optimization. What tooling can we put in place to gauge our level of search engine optimization currently and going forward? Take a look at https://github.com/thedaviddias/Front-End-Checklist. | priority | seo testing determine what goal we want to be targeting for seo optimization what tooling can we put in place to gauge our level of search engine optimization currently and going forward take a look at | 1 |
523,237 | 15,175,995,713 | IssuesEvent | 2021-02-14 02:27:03 | 2011-FSA-CRAB/DSLD | https://api.github.com/repos/2011-FSA-CRAB/DSLD | closed | FormCheck: Move 'Sets: X of Y', and Accuracy to bottom of video. | High Priority | - [x] Make Reps: X of Y larger inside box
- [x] Move sets under video
| 1.0 | FormCheck: Move 'Sets: X of Y', and Accuracy to bottom of video. - - [x] Make Reps: X of Y larger inside box
- [x] Move sets under video
| priority | formcheck move sets x of y and accuracy to bottom of video make reps x of y larger inside box move sets under video | 1 |
419,699 | 12,227,171,996 | IssuesEvent | 2020-05-03 14:12:52 | rovats/waltz-docker | https://api.github.com/repos/rovats/waltz-docker | closed | Organise output artifacts better | done enhancement high-priority | Currently the are created in `build/output/` directory.
It would be better to create them under environment and db specific directories, eg:
`build/output/local-postgres`
The waltz-web.war file then doesn't need environment in it's name. | 1.0 | Organise output artifacts better - Currently the are created in `build/output/` directory.
It would be better to create them under environment and db specific directories, eg:
`build/output/local-postgres`
The waltz-web.war file then doesn't need environment in it's name. | priority | organise output artifacts better currently the are created in build output directory it would be better to create them under environment and db specific directories eg build output local postgres the waltz web war file then doesn t need environment in it s name | 1 |
357,186 | 10,603,255,663 | IssuesEvent | 2019-10-10 15:38:29 | AY1920S1-CS2103T-F14-1/main | https://api.github.com/repos/AY1920S1-CS2103T-F14-1/main | opened | Create display for questions | priority.High severity.High type.Story | This window should display the detailed information of each individual questions.
- [ ] Create javaFx window to display questions
- [ ] Create controller class that will load and display information based on the Question object.
- [ ] Write unit test
- [ ] Integrate with existing Ui | 1.0 | Create display for questions - This window should display the detailed information of each individual questions.
- [ ] Create javaFx window to display questions
- [ ] Create controller class that will load and display information based on the Question object.
- [ ] Write unit test
- [ ] Integrate with existing Ui | priority | create display for questions this window should display the detailed information of each individual questions create javafx window to display questions create controller class that will load and display information based on the question object write unit test integrate with existing ui | 1 |
514,036 | 14,931,854,171 | IssuesEvent | 2021-01-25 06:40:22 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | m.shein.com - see bug description | browser-focus-geckoview engine-gecko ml-needsdiagnosis-false ml-probability-high priority-important | <!-- @browser: Firefox Mobile 84.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:84.0) Gecko/84.0 Firefox/84.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/66134 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://m.shein.com/us/Caged-Yoke-Form-Fitting-Top-p-679419-cat-1733.html?url_from=adplaswtee07190115668XS
**Browser / Version**: Firefox Mobile 84.0
**Operating System**: Android 9
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: Mobile site does not allow you to back out and close the page without closing the whole browser.
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | m.shein.com - see bug description - <!-- @browser: Firefox Mobile 84.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 9; Mobile; rv:84.0) Gecko/84.0 Firefox/84.0 -->
<!-- @reported_with: unknown -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/66134 -->
<!-- @extra_labels: browser-focus-geckoview -->
**URL**: https://m.shein.com/us/Caged-Yoke-Form-Fitting-Top-p-679419-cat-1733.html?url_from=adplaswtee07190115668XS
**Browser / Version**: Firefox Mobile 84.0
**Operating System**: Android 9
**Tested Another Browser**: No
**Problem type**: Something else
**Description**: Mobile site does not allow you to back out and close the page without closing the whole browser.
**Steps to Reproduce**:
<details>
<summary>Browser Configuration</summary>
<ul>
<li>None</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | priority | m shein com see bug description url browser version firefox mobile operating system android tested another browser no problem type something else description mobile site does not allow you to back out and close the page without closing the whole browser steps to reproduce browser configuration none from with ❤️ | 1 |
256,813 | 8,129,308,196 | IssuesEvent | 2018-08-17 14:41:40 | craftercms/craftercms | https://api.github.com/repos/craftercms/craftercms | closed | [social] Update Jackson dependencies in social proxy module. | CI priority: high quality | Upgrade the Jackson dependencies in social proxy module to 2.9.6.
| 1.0 | [social] Update Jackson dependencies in social proxy module. - Upgrade the Jackson dependencies in social proxy module to 2.9.6.
| priority | update jackson dependencies in social proxy module upgrade the jackson dependencies in social proxy module to | 1 |
718,042 | 24,701,962,300 | IssuesEvent | 2022-10-19 15:54:18 | vertica/spark-connector | https://api.github.com/repos/vertica/spark-connector | closed | [FEATURE] Add Jupyter Notebook container | enhancement High Priority docker | ## Describe the solution you'd like
With the eventual inclusion of Jupyter Notebook examples (see #436, #478), we should provide a Jupyter Notebook container as part of our dev environment in order to run the examples.
## Additional context
The difficulty will be configuring Jupyter to use our Spark container as the master instead of a local master, and ensuring all of the containers can communicate.
We may want to add the Jupyter container under a Docker Compose profile instead of always deploying it (since it is a large image).
| 1.0 | [FEATURE] Add Jupyter Notebook container - ## Describe the solution you'd like
With the eventual inclusion of Jupyter Notebook examples (see #436, #478), we should provide a Jupyter Notebook container as part of our dev environment in order to run the examples.
## Additional context
The difficulty will be configuring Jupyter to use our Spark container as the master instead of a local master, and ensuring all of the containers can communicate.
We may want to add the Jupyter container under a Docker Compose profile instead of always deploying it (since it is a large image).
| priority | add jupyter notebook container describe the solution you d like with the eventual inclusion of jupyter notebook examples see we should provide a jupyter notebook container as part of our dev environment in order to run the examples additional context the difficulty will be configuring jupyter to use our spark container as the master instead of a local master and ensuring all of the containers can communicate we may want to add the jupyter container under a docker compose profile instead of always deploying it since it is a large image | 1 |
789,358 | 27,787,790,320 | IssuesEvent | 2023-03-17 05:51:08 | ainc/ainc-gatsby-sanity | https://api.github.com/repos/ainc/ainc-gatsby-sanity | opened | Create /team-alpha page | Priority: High Difficulty: Medium | https://www.awesomeinc.org/team-alpha
- Sanity Doc
- Name
- Picture
- Team/Role
- Favorite Rule
- Favorite Song
- Favorite Person
- Random Fact | 1.0 | Create /team-alpha page - https://www.awesomeinc.org/team-alpha
- Sanity Doc
- Name
- Picture
- Team/Role
- Favorite Rule
- Favorite Song
- Favorite Person
- Random Fact | priority | create team alpha page sanity doc name picture team role favorite rule favorite song favorite person random fact | 1 |
443,749 | 12,799,029,733 | IssuesEvent | 2020-07-02 14:47:33 | inverse-inc/packetfence | https://api.github.com/repos/inverse-inc/packetfence | closed | X-PacketFence-Tenant-Id header should never be included when in the configurator | Priority: High Type: Bug | title says it all | 1.0 | X-PacketFence-Tenant-Id header should never be included when in the configurator - title says it all | priority | x packetfence tenant id header should never be included when in the configurator title says it all | 1 |
637,575 | 20,672,257,826 | IssuesEvent | 2022-03-10 04:25:52 | wso2/product-apim | https://api.github.com/repos/wso2/product-apim | closed | Upgrade jackson databind to the latest version | Type/Improvement Priority/Highest dependencies 4.x.x | ### Describe your problem(s)
$subject and APIM 4.0.0 has following jackson-databind jars in the APIM distribution:
- jackson-databind-2.9.9.2.jar (inside lib)
- jackson-databind-2.10.5.jar (inside cx3 runtime)
- com.fasterxml.jackson.core.jackson-databind_2.10.3.jar (inside plugins)
Need to check the possibility of removing the redundant jars and upgrade it to latest versions. It needs to be checked in MI, SI, MI Dashboard and SI tooling as well. | 1.0 | Upgrade jackson databind to the latest version - ### Describe your problem(s)
$subject and APIM 4.0.0 has following jackson-databind jars in the APIM distribution:
- jackson-databind-2.9.9.2.jar (inside lib)
- jackson-databind-2.10.5.jar (inside cx3 runtime)
- com.fasterxml.jackson.core.jackson-databind_2.10.3.jar (inside plugins)
Need to check the possibility of removing the redundant jars and upgrade it to latest versions. It needs to be checked in MI, SI, MI Dashboard and SI tooling as well. | priority | upgrade jackson databind to the latest version describe your problem s subject and apim has following jackson databind jars in the apim distribution jackson databind jar inside lib jackson databind jar inside runtime com fasterxml jackson core jackson databind jar inside plugins need to check the possibility of removing the redundant jars and upgrade it to latest versions it needs to be checked in mi si mi dashboard and si tooling as well | 1 |
517,195 | 14,996,744,863 | IssuesEvent | 2021-01-29 15:59:12 | alphagov/govuk-design-system | https://api.github.com/repos/alphagov/govuk-design-system | closed | Add examples of radio and checkbox legends that are not page headings | examples guidance ⚠️ high priority 🕔 days | Every example shown has `isPageHeading` set to true:
https://design-system.service.gov.uk/components/radios/
https://design-system.service.gov.uk/components/checkboxes/
It's not clear from the examples:
- that a legend doesn't need to have a heading element within it
- what the markup should be for a legend that is not a page heading
| 1.0 | Add examples of radio and checkbox legends that are not page headings - Every example shown has `isPageHeading` set to true:
https://design-system.service.gov.uk/components/radios/
https://design-system.service.gov.uk/components/checkboxes/
It's not clear from the examples:
- that a legend doesn't need to have a heading element within it
- what the markup should be for a legend that is not a page heading
| priority | add examples of radio and checkbox legends that are not page headings every example shown has ispageheading set to true it s not clear from the examples that a legend doesn t need to have a heading element within it what the markup should be for a legend that is not a page heading | 1 |
681,012 | 23,294,368,783 | IssuesEvent | 2022-08-06 10:20:30 | mm-ninja-turtles/bulbasaur-express | https://api.github.com/repos/mm-ninja-turtles/bulbasaur-express | closed | [feature]: support for multiple Context-Type | type: enhancement priority: high task: in-progress | ## Problem
Currently `handler()` only response with `application/json`. There might be cases with `handler()` might need to response with other `Content-Type` header (eg. `x-www-form-urlencoded`, 'text/html`, etc...).
## Solution
Haven't thought of possible solution yet.
- It might be like exposing the express's `response` object to the `resolver()` and resolver function should opt out from the `response schema` return type.
- Maybe this should be like new `uncontrolledResolver()` option api like `react.js` does with `dangerouslySetInnerHTML`. | 1.0 | [feature]: support for multiple Context-Type - ## Problem
Currently `handler()` only response with `application/json`. There might be cases with `handler()` might need to response with other `Content-Type` header (eg. `x-www-form-urlencoded`, 'text/html`, etc...).
## Solution
Haven't thought of possible solution yet.
- It might be like exposing the express's `response` object to the `resolver()` and resolver function should opt out from the `response schema` return type.
- Maybe this should be like new `uncontrolledResolver()` option api like `react.js` does with `dangerouslySetInnerHTML`. | priority | support for multiple context type problem currently handler only response with application json there might be cases with handler might need to response with other content type header eg x www form urlencoded text html etc solution haven t thought of possible solution yet it might be like exposing the express s response object to the resolver and resolver function should opt out from the response schema return type maybe this should be like new uncontrolledresolver option api like react js does with dangerouslysetinnerhtml | 1 |
305,437 | 9,369,352,492 | IssuesEvent | 2019-04-03 10:52:45 | bbc/simorgh | https://api.github.com/repos/bbc/simorgh | closed | Fix cypress test on latest | high priority | **Describe the bug**
Amp page cypress test failing when run on CI outside of the UK.
**To Reproduce**
Steps to reproduce the behavior:
1. Go on branch `latest`, `npm ci && npm run build:test`
2. Use VPN for a country outside of the UK.
3. `npm run test:e2e` - see `ampSpec.js` fail.
4. See error
**Expected behavior**
`ampSpec.js` should pass.
- [x] Initially labelled with ["bug"](https://github.com/bbc/simorgh/labels/bug)
| 1.0 | Fix cypress test on latest - **Describe the bug**
Amp page cypress test failing when run on CI outside of the UK.
**To Reproduce**
Steps to reproduce the behavior:
1. Go on branch `latest`, `npm ci && npm run build:test`
2. Use VPN for a country outside of the UK.
3. `npm run test:e2e` - see `ampSpec.js` fail.
4. See error
**Expected behavior**
`ampSpec.js` should pass.
- [x] Initially labelled with ["bug"](https://github.com/bbc/simorgh/labels/bug)
| priority | fix cypress test on latest describe the bug amp page cypress test failing when run on ci outside of the uk to reproduce steps to reproduce the behavior go on branch latest npm ci npm run build test use vpn for a country outside of the uk npm run test see ampspec js fail see error expected behavior ampspec js should pass initially labelled with | 1 |
568,537 | 16,982,497,738 | IssuesEvent | 2021-06-30 10:35:57 | hermeznetwork/wallet-ui | https://api.github.com/repos/hermeznetwork/wallet-ui | opened | Token Swap/Implement Design Selected Tokens | priority: high type: enhancement | Support pre-selecting tokens + display balance.
Max
Use reusable amount input | 1.0 | Token Swap/Implement Design Selected Tokens - Support pre-selecting tokens + display balance.
Max
Use reusable amount input | priority | token swap implement design selected tokens support pre selecting tokens display balance max use reusable amount input | 1 |
453,689 | 13,087,243,267 | IssuesEvent | 2020-08-02 11:08:23 | Rammelkast/AntiCheatReloaded | https://api.github.com/repos/Rammelkast/AntiCheatReloaded | closed | Cannot stand on lilypad | false-positive high priority | Whenever a player stands on a lily pad, you are forced underwater into swimming mode and cannot go up.
This can potentially be exploited to create water traps where the player be told to walk on the lilypad covered water spot, and the player will consequently drown.
Edit: also produces false WaterWalk | 1.0 | Cannot stand on lilypad - Whenever a player stands on a lily pad, you are forced underwater into swimming mode and cannot go up.
This can potentially be exploited to create water traps where the player be told to walk on the lilypad covered water spot, and the player will consequently drown.
Edit: also produces false WaterWalk | priority | cannot stand on lilypad whenever a player stands on a lily pad you are forced underwater into swimming mode and cannot go up this can potentially be exploited to create water traps where the player be told to walk on the lilypad covered water spot and the player will consequently drown edit also produces false waterwalk | 1 |
80,166 | 3,551,480,578 | IssuesEvent | 2016-01-21 03:59:51 | electology/approval_frame | https://api.github.com/repos/electology/approval_frame | closed | Add a free/libre/open license!! | priority:high | This code is all-rights-reserved by legal default until you add a license. Furthermore, you have to handle all sorts of challenges when accepting code from others if the licensing isn't clear. If you have a LICENSE file here, then others who adjust the code in a repository that has the same file can at least be assumed to stick to the same license.
I would consider GNU AGPLv3+ (+ means include the "or later" clause) as the most community-centered freedom-respecting license. The only concern is that if you want to push adoption of this software by other websites which may be proprietary and where they would integrate this into their site, then you may want a more permissive license. GPLv3+ would be fine because it would be equally usable for even proprietary sites and the copyleft (i.e. share-alike / pass-on-the-freedoms) effect would only take place if someone distributes the code and not when they just use it on a site. You could slightly improve license-compatibility with GPLv2+ but that would lose the patent clauses and such. Otherwise, Apache v2 would be a decent option, or MIT to be most permissive. While I'd probably go with AGPLv3+ or maybe GPLv3+, *any* of these would be better than the really unacceptable state of having no license. | 1.0 | Add a free/libre/open license!! - This code is all-rights-reserved by legal default until you add a license. Furthermore, you have to handle all sorts of challenges when accepting code from others if the licensing isn't clear. If you have a LICENSE file here, then others who adjust the code in a repository that has the same file can at least be assumed to stick to the same license.
I would consider GNU AGPLv3+ (+ means include the "or later" clause) as the most community-centered freedom-respecting license. The only concern is that if you want to push adoption of this software by other websites which may be proprietary and where they would integrate this into their site, then you may want a more permissive license. GPLv3+ would be fine because it would be equally usable for even proprietary sites and the copyleft (i.e. share-alike / pass-on-the-freedoms) effect would only take place if someone distributes the code and not when they just use it on a site. You could slightly improve license-compatibility with GPLv2+ but that would lose the patent clauses and such. Otherwise, Apache v2 would be a decent option, or MIT to be most permissive. While I'd probably go with AGPLv3+ or maybe GPLv3+, *any* of these would be better than the really unacceptable state of having no license. | priority | add a free libre open license this code is all rights reserved by legal default until you add a license furthermore you have to handle all sorts of challenges when accepting code from others if the licensing isn t clear if you have a license file here then others who adjust the code in a repository that has the same file can at least be assumed to stick to the same license i would consider gnu means include the or later clause as the most community centered freedom respecting license the only concern is that if you want to push adoption of this software by other websites which may be proprietary and where they would integrate this into their site then you may want a more permissive license would be fine because it would be equally usable for even proprietary sites and the copyleft i e share alike pass on the freedoms effect would only take place if someone distributes the code and not when they just use it on a site you could slightly improve license compatibility with but that would lose the patent clauses and such otherwise apache would be a decent option or mit to be most permissive while i d probably go with or maybe any of these would be better than the really unacceptable state of having no license | 1 |
645,238 | 20,999,068,141 | IssuesEvent | 2022-03-29 15:44:50 | AY2122S2-CS2103-F11-3/tp | https://api.github.com/repos/AY2122S2-CS2103-F11-3/tp | closed | As an expert user, I can keep track of how many new customers I gained | type.Story priority.High | ... so that I can review and improve my company's performance. | 1.0 | As an expert user, I can keep track of how many new customers I gained - ... so that I can review and improve my company's performance. | priority | as an expert user i can keep track of how many new customers i gained so that i can review and improve my company s performance | 1 |
636,067 | 20,574,056,260 | IssuesEvent | 2022-03-04 01:15:33 | giancarlopernudisegura/cmput404 | https://api.github.com/repos/giancarlopernudisegura/cmput404 | closed | [User Story]: Post Posts to Stream | question Priority Level: High Implementation Difficulty: Medium User Story | ### User Story
As an author, I want to post posts to my “stream”.
### Objects
Inbox | 1.0 | [User Story]: Post Posts to Stream - ### User Story
As an author, I want to post posts to my “stream”.
### Objects
Inbox | priority | post posts to stream user story as an author i want to post posts to my “stream” objects inbox | 1 |
620,051 | 19,547,015,255 | IssuesEvent | 2022-01-02 03:02:35 | ctm/mb2-doc | https://api.github.com/repos/ctm/mb2-doc | closed | GitHub login fails on Firefox | bug high priority easy | Fix GitHub login to work on Firefox or take it away from Firefox.
I just noticed that GitHub login silently fails on devctm.com when using Firefox. I haven't had time to explore why yet. The [infamous WebSocket bug](https://bugzilla.mozilla.org/show_bug.cgi?id=758004) shouldn't be an issue here. My _guess_ is it's something in my [gross hack that I added to get around that bug](https://github.com/ctm/mb2-doc/issues/98#issuecomment-793111376). | 1.0 | GitHub login fails on Firefox - Fix GitHub login to work on Firefox or take it away from Firefox.
I just noticed that GitHub login silently fails on devctm.com when using Firefox. I haven't had time to explore why yet. The [infamous WebSocket bug](https://bugzilla.mozilla.org/show_bug.cgi?id=758004) shouldn't be an issue here. My _guess_ is it's something in my [gross hack that I added to get around that bug](https://github.com/ctm/mb2-doc/issues/98#issuecomment-793111376). | priority | github login fails on firefox fix github login to work on firefox or take it away from firefox i just noticed that github login silently fails on devctm com when using firefox i haven t had time to explore why yet the shouldn t be an issue here my guess is it s something in my | 1 |
165,269 | 6,266,512,721 | IssuesEvent | 2017-07-17 02:31:26 | jessesquires/JSQMessagesViewController | https://api.github.com/repos/jessesquires/JSQMessagesViewController | closed | Implement a lighter view controller | feature request priority: high | Break up dataSources and delegates:
1. messagesDataSource (JSQ-specific)
2. dataSource (collection view API)
3. messagesLayoutDelegate (JSQ-specific)
4. delegate (collection view API)
5. Editing delegate (actions: shouldCopy, didCopy, shouldDelete, didDelete)
- [ ] **Make these dataSources and delegates separate objects.**
- [ ] Introduce a cell factory to remove cell configuration into its own class
~~Also, fix remaining issues from #828, namely:~~ (See #920)
http://www.objc.io/issue-1/lighter-view-controllers.html
| 1.0 | Implement a lighter view controller - Break up dataSources and delegates:
1. messagesDataSource (JSQ-specific)
2. dataSource (collection view API)
3. messagesLayoutDelegate (JSQ-specific)
4. delegate (collection view API)
5. Editing delegate (actions: shouldCopy, didCopy, shouldDelete, didDelete)
- [ ] **Make these dataSources and delegates separate objects.**
- [ ] Introduce a cell factory to remove cell configuration into its own class
~~Also, fix remaining issues from #828, namely:~~ (See #920)
http://www.objc.io/issue-1/lighter-view-controllers.html
| priority | implement a lighter view controller break up datasources and delegates messagesdatasource jsq specific datasource collection view api messageslayoutdelegate jsq specific delegate collection view api editing delegate actions shouldcopy didcopy shoulddelete diddelete make these datasources and delegates separate objects introduce a cell factory to remove cell configuration into its own class also fix remaining issues from namely see | 1 |
634,745 | 20,371,799,557 | IssuesEvent | 2022-02-21 11:58:59 | paritytech/contracts-ui | https://api.github.com/repos/paritytech/contracts-ui | closed | Selecting a contract account breaks the app | bug v2 high priority | To reproduce:
Instantiate any contract in order to have it available in the AccountSelect. When you try to select the contract, it either generates a white screen or displays an error message "Specified account does not exist".
| 1.0 | Selecting a contract account breaks the app - To reproduce:
Instantiate any contract in order to have it available in the AccountSelect. When you try to select the contract, it either generates a white screen or displays an error message "Specified account does not exist".
| priority | selecting a contract account breaks the app to reproduce instantiate any contract in order to have it available in the accountselect when you try to select the contract it either generates a white screen or displays an error message specified account does not exist | 1 |
236,907 | 7,753,585,585 | IssuesEvent | 2018-05-31 01:33:21 | Gloirin/m2gTest | https://api.github.com/repos/Gloirin/m2gTest | closed | 0006630:
import wizzard doesn't show errors for final import | Tinebase bug high priority | **Reported by cweiss on 18 Jun 2012 07:36**
**Version:** Milan (2012-03-3)
e.g. if import file itself contains duplicates there are errors in final import.
this errors must be shown and wizard must stay open!
| 1.0 | 0006630:
import wizzard doesn't show errors for final import - **Reported by cweiss on 18 Jun 2012 07:36**
**Version:** Milan (2012-03-3)
e.g. if import file itself contains duplicates there are errors in final import.
this errors must be shown and wizard must stay open!
| priority | import wizzard doesn t show errors for final import reported by cweiss on jun version milan e g if import file itself contains duplicates there are errors in final import this errors must be shown and wizard must stay open | 1 |
319,652 | 9,747,691,700 | IssuesEvent | 2019-06-03 14:53:20 | gamificalostudio/Tankerfield | https://api.github.com/repos/gamificalostudio/Tankerfield | closed | The particle when tank is dead is not shown | Frequency: High Priority: Cosmetic | **Bug description**
The fire of a dead tank dont appear in 2 out of 3 dead tanks.
**Steps to reproduce**
Let the enemies kill the tanks.
**Expected behaviour**
**Actual behaviour**
**Game version**
Tankerfield 0.8
**Screenshots**
**Additional context**
| 1.0 | The particle when tank is dead is not shown - **Bug description**
The fire of a dead tank dont appear in 2 out of 3 dead tanks.
**Steps to reproduce**
Let the enemies kill the tanks.
**Expected behaviour**
**Actual behaviour**
**Game version**
Tankerfield 0.8
**Screenshots**
**Additional context**
| priority | the particle when tank is dead is not shown bug description the fire of a dead tank dont appear in out of dead tanks steps to reproduce let the enemies kill the tanks expected behaviour actual behaviour game version tankerfield screenshots additional context | 1 |
178,124 | 6,599,293,898 | IssuesEvent | 2017-09-16 17:50:27 | dhowe/AdNauseam | https://api.github.com/repos/dhowe/AdNauseam | closed | [WebExt] Content missing from uBlock popup (or incorrectly sized) | Needs-verification PRIORITY: High WebExt | All browsers

It looks like this in uBlock

| 1.0 | [WebExt] Content missing from uBlock popup (or incorrectly sized) - All browsers

It looks like this in uBlock

| priority | content missing from ublock popup or incorrectly sized all browsers it looks like this in ublock | 1 |
28,722 | 2,711,101,596 | IssuesEvent | 2015-04-09 01:55:24 | cs2103jan2015-f09-2c/main | https://api.github.com/repos/cs2103jan2015-f09-2c/main | closed | A user can receive notifications for upcoming deadlines | priority.high type.story | .....so that he knows that a task needs to be completed soon | 1.0 | A user can receive notifications for upcoming deadlines - .....so that he knows that a task needs to be completed soon | priority | a user can receive notifications for upcoming deadlines so that he knows that a task needs to be completed soon | 1 |
554,381 | 16,419,262,048 | IssuesEvent | 2021-05-19 10:31:35 | StrangeLoopGames/EcoIssues | https://api.github.com/repos/StrangeLoopGames/EcoIssues | closed | [0.9.3.2 Release-212]Disconnect closes the client instead of returning to lobby | Category: Tech Priority: High Regression Squad: Pumpkin Status: Fixed Type: Bug | Build: 0.9.3.2 Release-212
## Issue
Pressing the **Disconnect** button closes the client. That should not happen. It should return the player to the in-game eco lobby.
#### Repro
1. Start a new game.
2. Press ESC and click Disconnect.
3. Observe.
#### Actual Result
https://images.zenhubusercontent.com/42199084/493129f1-497a-430a-9cc8-caad16d83410/2021_04_22_19_16_trim.mp4
I'm also getting this on my log:
> [07:17:31.022] Injection detected. Please, stop using third-party software for code injections or you will be reported and permanently banned on all servers.
EcoEngine.Logging.LogManager:LogFormat(LogType, Object, String, Object[])
UnityEngine.Logger:Log(LogType, Object)
UnityEngine.Debug:LogError(Object)
Eco.<>c:<Register>b__1_0(Scene, LoadSceneMode)
UnityEngine.Events.UnityAction`2:Invoke(T0, T1)
UnityEngine.SceneManagement.SceneManager:Internal_SceneLoaded(Scene, LoadSceneMode)
[Player Log](https://app.zenhub.com/files/42199084/2f5de894-28c0-4d52-ba76-f6c6ed1660dd/download)
#### Expected Result
Returns to lobby. | 1.0 | [0.9.3.2 Release-212]Disconnect closes the client instead of returning to lobby - Build: 0.9.3.2 Release-212
## Issue
Pressing the **Disconnect** button closes the client. That should not happen. It should return the player to the in-game eco lobby.
#### Repro
1. Start a new game.
2. Press ESC and click Disconnect.
3. Observe.
#### Actual Result
https://images.zenhubusercontent.com/42199084/493129f1-497a-430a-9cc8-caad16d83410/2021_04_22_19_16_trim.mp4
I'm also getting this on my log:
> [07:17:31.022] Injection detected. Please, stop using third-party software for code injections or you will be reported and permanently banned on all servers.
EcoEngine.Logging.LogManager:LogFormat(LogType, Object, String, Object[])
UnityEngine.Logger:Log(LogType, Object)
UnityEngine.Debug:LogError(Object)
Eco.<>c:<Register>b__1_0(Scene, LoadSceneMode)
UnityEngine.Events.UnityAction`2:Invoke(T0, T1)
UnityEngine.SceneManagement.SceneManager:Internal_SceneLoaded(Scene, LoadSceneMode)
[Player Log](https://app.zenhub.com/files/42199084/2f5de894-28c0-4d52-ba76-f6c6ed1660dd/download)
#### Expected Result
Returns to lobby. | priority | disconnect closes the client instead of returning to lobby build release issue pressing the disconnect button closes the client that should not happen it should return the player to the in game eco lobby repro start a new game press esc and click disconnect observe actual result i m also getting this on my log injection detected please stop using third party software for code injections or you will be reported and permanently banned on all servers ecoengine logging logmanager logformat logtype object string object unityengine logger log logtype object unityengine debug logerror object eco c b scene loadscenemode unityengine events unityaction invoke unityengine scenemanagement scenemanager internal sceneloaded scene loadscenemode expected result returns to lobby | 1 |
200,347 | 7,006,213,897 | IssuesEvent | 2017-12-19 07:24:09 | kh-live/khlive | https://api.github.com/repos/kh-live/khlive | closed | Add dump file (recording) for streams over edcast if record is set to yes | Department (Streaming) priority (high) | files affected are cong_add, cong_edit, and config.php | 1.0 | Add dump file (recording) for streams over edcast if record is set to yes - files affected are cong_add, cong_edit, and config.php | priority | add dump file recording for streams over edcast if record is set to yes files affected are cong add cong edit and config php | 1 |
678,750 | 23,209,521,071 | IssuesEvent | 2022-08-02 08:55:27 | alephium/explorer-backend | https://api.github.com/repos/alephium/explorer-backend | closed | Port `ApplicationSpec` test-cases | high priority | - `ApplicationSpec` test-cases should be ported to work with changes in PR #255.
- `ExplorerV2Spec` should be merged with the ported test-cases. | 1.0 | Port `ApplicationSpec` test-cases - - `ApplicationSpec` test-cases should be ported to work with changes in PR #255.
- `ExplorerV2Spec` should be merged with the ported test-cases. | priority | port applicationspec test cases applicationspec test cases should be ported to work with changes in pr should be merged with the ported test cases | 1 |
51,085 | 3,010,689,093 | IssuesEvent | 2015-07-28 14:26:58 | brharp/hjckrrh | https://api.github.com/repos/brharp/hjckrrh | opened | Update CK Editor default | priority: high type: accessibility type: enhancement request | Ensure buttons available allow for accessible options only - ie insert table, image, underline... | 1.0 | Update CK Editor default - Ensure buttons available allow for accessible options only - ie insert table, image, underline... | priority | update ck editor default ensure buttons available allow for accessible options only ie insert table image underline | 1 |
562,465 | 16,661,334,910 | IssuesEvent | 2021-06-06 11:29:18 | bounswe/2021SpringGroup1 | https://api.github.com/repos/bounswe/2021SpringGroup1 | closed | createPerson html page in MainApp | Priority: High Status: In Progress | I will add an html file to mainapp/templates to create a new post. I will probably use an api call to suggest user a recent new from the world. | 1.0 | createPerson html page in MainApp - I will add an html file to mainapp/templates to create a new post. I will probably use an api call to suggest user a recent new from the world. | priority | createperson html page in mainapp i will add an html file to mainapp templates to create a new post i will probably use an api call to suggest user a recent new from the world | 1 |
228,913 | 7,569,430,279 | IssuesEvent | 2018-04-23 04:26:30 | zulip/zulip | https://api.github.com/repos/zulip/zulip | closed | Search with access to history before you joined when not limited to a stream | area: search priority: high | Here's a video of the issue that describes it much better than I can with text:
https://youtu.be/YkYW8-XZCHQ
I'm on Chrome Version 62.0.3202.89 (Official Build) (64-bit) on MacOS Sierra
| 1.0 | Search with access to history before you joined when not limited to a stream - Here's a video of the issue that describes it much better than I can with text:
https://youtu.be/YkYW8-XZCHQ
I'm on Chrome Version 62.0.3202.89 (Official Build) (64-bit) on MacOS Sierra
| priority | search with access to history before you joined when not limited to a stream here s a video of the issue that describes it much better than i can with text i m on chrome version official build bit on macos sierra | 1 |
513,177 | 14,917,218,189 | IssuesEvent | 2021-01-22 19:29:47 | ooni/ooni.org | https://api.github.com/repos/ooni/ooni.org | closed | Write & submit RightsCon session proposal | effort/M event priority/high | RightsCon 2021 will take place online between 7th-11th June 2021.
I plan to submit a session proposal by the deadline (19th January 2021). | 1.0 | Write & submit RightsCon session proposal - RightsCon 2021 will take place online between 7th-11th June 2021.
I plan to submit a session proposal by the deadline (19th January 2021). | priority | write submit rightscon session proposal rightscon will take place online between june i plan to submit a session proposal by the deadline january | 1 |
175,837 | 6,554,460,542 | IssuesEvent | 2017-09-06 06:02:39 | zeit/hyper | https://api.github.com/repos/zeit/hyper | closed | Hyper crashes on launch on recent Windows 10 builds | Platform: Windows Priority: High Type: Bug | - [x] I am on the [latest](https://github.com/zeit/hyper/releases/latest) Hyper.app version
- [x] I have searched the [issues](https://github.com/zeit/hyper/issues) of this repo and believe that this is not a duplicate
- **OS version and name**: Windows 10 Pro Insider Preview, build 16215
- **Hyper.app version**: 1.3.3
- **Link of a [Gist](https://gist.github.com/) with the contents of your .hyper.js**: https://gist.github.com/cerebrate/ac9aa51a9dfa641a23fe1881f3be449a
- **Relevant information from devtools** _(CMD+ALT+I on Mac OS, CTRL+SHIFT+I elsewhere)_: N/A
- **The issue is reproducible in vanilla Hyper.app**: Yes. Removing plugins has no effect on problem.
## Issue
Hyper crashes on launch with the following error:
[Window Title]
Error
[Main Instruction]
A JavaScript error occurred in the main process
[Content]
Uncaught Exception:
Error: EINVAL: invalid argument, lstat 'C:\Users\avatar\OneDrive'
at Error (native)
at fs.lstatSync (fs.js:982:18)
at Object.fs.lstatSync (ELECTRON_ASAR.js:244:16)
at Gaze._addToWatched (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:292:14)
at Gaze.add (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:190:8)
at new Gaze (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:74:10)
at gaze (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:86:10)
at watch (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\config.js:44:3)
at Object.exports.init (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\config.js:130:3)
at Object.<anonymous> (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\index.js:62:8)
[OK]
I believe this may relate to the changes to OneDrive in Windows 10 build 16215 and higher, in which placeholders are once again available in place of conventional files, although I don't know why Hyper is attempting to access that folder in the first place.
| 1.0 | Hyper crashes on launch on recent Windows 10 builds - - [x] I am on the [latest](https://github.com/zeit/hyper/releases/latest) Hyper.app version
- [x] I have searched the [issues](https://github.com/zeit/hyper/issues) of this repo and believe that this is not a duplicate
- **OS version and name**: Windows 10 Pro Insider Preview, build 16215
- **Hyper.app version**: 1.3.3
- **Link of a [Gist](https://gist.github.com/) with the contents of your .hyper.js**: https://gist.github.com/cerebrate/ac9aa51a9dfa641a23fe1881f3be449a
- **Relevant information from devtools** _(CMD+ALT+I on Mac OS, CTRL+SHIFT+I elsewhere)_: N/A
- **The issue is reproducible in vanilla Hyper.app**: Yes. Removing plugins has no effect on problem.
## Issue
Hyper crashes on launch with the following error:
[Window Title]
Error
[Main Instruction]
A JavaScript error occurred in the main process
[Content]
Uncaught Exception:
Error: EINVAL: invalid argument, lstat 'C:\Users\avatar\OneDrive'
at Error (native)
at fs.lstatSync (fs.js:982:18)
at Object.fs.lstatSync (ELECTRON_ASAR.js:244:16)
at Gaze._addToWatched (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:292:14)
at Gaze.add (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:190:8)
at new Gaze (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:74:10)
at gaze (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\node_modules\gaze\lib\gaze.js:86:10)
at watch (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\config.js:44:3)
at Object.exports.init (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\config.js:130:3)
at Object.<anonymous> (C:\Users\avatar\AppData\Local\hyper\app-1.3.3\resources\app\index.js:62:8)
[OK]
I believe this may relate to the changes to OneDrive in Windows 10 build 16215 and higher, in which placeholders are once again available in place of conventional files, although I don't know why Hyper is attempting to access that folder in the first place.
| priority | hyper crashes on launch on recent windows builds i am on the hyper app version i have searched the of this repo and believe that this is not a duplicate os version and name windows pro insider preview build hyper app version link of a with the contents of your hyper js relevant information from devtools cmd alt i on mac os ctrl shift i elsewhere n a the issue is reproducible in vanilla hyper app yes removing plugins has no effect on problem issue hyper crashes on launch with the following error error a javascript error occurred in the main process uncaught exception error einval invalid argument lstat c users avatar onedrive at error native at fs lstatsync fs js at object fs lstatsync electron asar js at gaze addtowatched c users avatar appdata local hyper app resources app node modules gaze lib gaze js at gaze add c users avatar appdata local hyper app resources app node modules gaze lib gaze js at new gaze c users avatar appdata local hyper app resources app node modules gaze lib gaze js at gaze c users avatar appdata local hyper app resources app node modules gaze lib gaze js at watch c users avatar appdata local hyper app resources app config js at object exports init c users avatar appdata local hyper app resources app config js at object c users avatar appdata local hyper app resources app index js i believe this may relate to the changes to onedrive in windows build and higher in which placeholders are once again available in place of conventional files although i don t know why hyper is attempting to access that folder in the first place | 1 |
448,434 | 12,950,708,073 | IssuesEvent | 2020-07-19 14:13:11 | frenck/home-assistant-config | https://api.github.com/repos/frenck/home-assistant-config | closed | TTS with Google Assistant broke | Bug Priority: High Type: Google Assistant | # Problem/Motivation
Somehow my TTS for Google Assistant broke down in 0.109 (I think).
While I do not actively use TTS yet, I do plan on using it. While playing with it just now I noticed it not working.
My Google Assistants are on a different VLAN (IoT), but I have mDNS repeaters set up. Home Assistant does detect them and I am able to control them (e.g., volume, on/off) and see the current status:

Not sure why TTS does not end up with them. Could it be a streaming issue?
Unsure. | 1.0 | TTS with Google Assistant broke - # Problem/Motivation
Somehow my TTS for Google Assistant broke down in 0.109 (I think).
While I do not actively use TTS yet, I do plan on using it. While playing with it just now I noticed it not working.
My Google Assistants are on a different VLAN (IoT), but I have mDNS repeaters set up. Home Assistant does detect them and I am able to control them (e.g., volume, on/off) and see the current status:

Not sure why TTS does not end up with them. Could it be a streaming issue?
Unsure. | priority | tts with google assistant broke problem motivation somehow my tts for google assistant broke down in i think while i do not actively use tts yet i do plan on using it while playing with it just now i noticed it not working my google assistants are on a different vlan iot but i have mdns repeaters set up home assistant does detect them and i am able to control them e g volume on off and see the current status not sure why tts does not end up with them could it be a streaming issue unsure | 1 |
814,485 | 30,509,181,510 | IssuesEvent | 2023-07-18 19:20:55 | WordPress/openverse | https://api.github.com/repos/WordPress/openverse | opened | Implementation Plan: Initial data dump creation | 🟧 priority: high 🌟 goal: addition 📄 aspect: text 🧱 stack: api 🧱 stack: catalog 🧱 stack: infra 🧭 project: implementation plan | ## Description
<!-- Describe the feature in simple terms understandable by a non-technical audience who is unfamiliar with the internal workings of Openverse. Limit specific implementation details that are better served by the project's other documents. -->
This issue is for tracking the drafting of the first implementation plan for #2545
This implementation plan is intended to describe how to produce and provide access to the raw data dumps which will be used to create the Openverse dataset(s). Additionally, this plan should address the marketing and documentation of the initial data dump. Essentially, all facets of the project relating to the initial release.
| 1.0 | Implementation Plan: Initial data dump creation - ## Description
<!-- Describe the feature in simple terms understandable by a non-technical audience who is unfamiliar with the internal workings of Openverse. Limit specific implementation details that are better served by the project's other documents. -->
This issue is for tracking the drafting of the first implementation plan for #2545
This implementation plan is intended to describe how to produce and provide access to the raw data dumps which will be used to create the Openverse dataset(s). Additionally, this plan should address the marketing and documentation of the initial data dump. Essentially, all facets of the project relating to the initial release.
| priority | implementation plan initial data dump creation description this issue is for tracking the drafting of the first implementation plan for this implementation plan is intended to describe how to produce and provide access to the raw data dumps which will be used to create the openverse dataset s additionally this plan should address the marketing and documentation of the initial data dump essentially all facets of the project relating to the initial release | 1 |
461,013 | 13,222,114,345 | IssuesEvent | 2020-08-17 15:02:33 | cc-ai/kdb | https://api.github.com/repos/cc-ai/kdb | reopened | Current OmniGAN tasks | To Do domain:ml priority:high | - [ ] Integrate new evaluation metrics into code --> Méli
- [ ] Establish baseline score (using existing masker checkpoint) --> Sun
- [x] Integrate depth head, segmentation head, and latest ADVENT tricks
- [x] Evaluate with depth + {latent DA, no latent DA} + ADVENT (on masker) --> Alexia
- [x] Evaluate with segmentation {latent DA, no latent DA} + ADVENT (on masker) --> Méli
- [x] Evaluate with ADVENT (on masker) + {latent DA, no latent DA} --> Tianyu
- [x] Evaluate painter on hand-labelled data (for comparison) --> Sun
- [x] Run CycleGAN to simulate drought
| 1.0 | Current OmniGAN tasks - - [ ] Integrate new evaluation metrics into code --> Méli
- [ ] Establish baseline score (using existing masker checkpoint) --> Sun
- [x] Integrate depth head, segmentation head, and latest ADVENT tricks
- [x] Evaluate with depth + {latent DA, no latent DA} + ADVENT (on masker) --> Alexia
- [x] Evaluate with segmentation {latent DA, no latent DA} + ADVENT (on masker) --> Méli
- [x] Evaluate with ADVENT (on masker) + {latent DA, no latent DA} --> Tianyu
- [x] Evaluate painter on hand-labelled data (for comparison) --> Sun
- [x] Run CycleGAN to simulate drought
| priority | current omnigan tasks integrate new evaluation metrics into code méli establish baseline score using existing masker checkpoint sun integrate depth head segmentation head and latest advent tricks evaluate with depth latent da no latent da advent on masker alexia evaluate with segmentation latent da no latent da advent on masker méli evaluate with advent on masker latent da no latent da tianyu evaluate painter on hand labelled data for comparison sun run cyclegan to simulate drought | 1 |
321,127 | 9,793,772,606 | IssuesEvent | 2019-06-10 20:48:52 | cloverleaf/web | https://api.github.com/repos/cloverleaf/web | closed | Add a settings menu | High Priority New Feature | This would allow for adding of features like #33 while keeping the interface simple. This would probably take form of a [modal](https://materializecss.com/modals.html) or [sidenav](https://materializecss.com/sidenav.html). | 1.0 | Add a settings menu - This would allow for adding of features like #33 while keeping the interface simple. This would probably take form of a [modal](https://materializecss.com/modals.html) or [sidenav](https://materializecss.com/sidenav.html). | priority | add a settings menu this would allow for adding of features like while keeping the interface simple this would probably take form of a or | 1 |
116,082 | 4,696,514,039 | IssuesEvent | 2016-10-12 05:00:49 | lzlw/HBONowHelper | https://api.github.com/repos/lzlw/HBONowHelper | closed | No way to enable/disable | feature high priority | There needs to be a way to enable/disable the extension by clicking on the toolbar icon. | 1.0 | No way to enable/disable - There needs to be a way to enable/disable the extension by clicking on the toolbar icon. | priority | no way to enable disable there needs to be a way to enable disable the extension by clicking on the toolbar icon | 1 |
165,056 | 6,261,232,877 | IssuesEvent | 2017-07-14 23:13:34 | GoogleCloudPlatform/google-cloud-eclipse | https://api.github.com/repos/GoogleCloudPlatform/google-cloud-eclipse | closed | Exception when opening Dataflow launch configuration | bug high priority | Also I cannot save runner selection.
```
java.lang.IllegalStateException: No runner selected, but a runner starts selected
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.getSelectedRunner(PipelineArgumentsTab.java:294)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.performApply(PipelineArgumentsTab.java:270)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.refresh(LaunchConfigurationTabGroupViewer.java:455)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.updateButtons(LaunchConfigurationsDialog.java:1543)
at org.eclipse.debug.ui.AbstractLaunchConfigurationTab.updateLaunchConfigurationDialog(AbstractLaunchConfigurationTab.java:113)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.updateLaunchConfigurationDialog(PipelineArgumentsTab.java:476)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab$UpdateLaunchConfigurationDialogChangedListener.run(PipelineArgumentsTab.java:527)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab$UpdateLaunchConfigurationDialogChangedListener.modifyText(PipelineArgumentsTab.java:513)
at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:179)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1353)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1334)
at org.eclipse.swt.widgets.Text.setText(Text.java:2591)
at org.eclipse.swt.widgets.Text.setText(Text.java:2517)
at com.google.cloud.tools.eclipse.dataflow.ui.preferences.RunOptionsDefaultsComponent.setCloudProjectText(RunOptionsDefaultsComponent.java:204)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.DefaultedPipelineOptionsComponent.updateDefaultableInputValues(DefaultedPipelineOptionsComponent.java:141)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.DefaultedPipelineOptionsComponent.setPreferences(DefaultedPipelineOptionsComponent.java:103)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.initializeFrom(PipelineArgumentsTab.java:315)
at org.eclipse.debug.ui.AbstractLaunchConfigurationTab.activated(AbstractLaunchConfigurationTab.java:411)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.handleTabSelected(LaunchConfigurationTabGroupViewer.java:1365)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer$6.widgetSelected(LaunchConfigurationTabGroupViewer.java:377)
at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1353)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1338)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1119)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3158)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1841)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:330)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3819)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3430)
at org.eclipse.jface.window.Window.runEventLoop(Window.java:827)
at org.eclipse.jface.window.Window.open(Window.java:803)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(LaunchConfigurationsDialog.java:1154)
at org.eclipse.debug.ui.DebugUITools$2.run(DebugUITools.java:619)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:627)
at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:560)
at org.eclipse.debug.ui.actions.OpenLaunchDialogAction.run(OpenLaunchDialogAction.java:82)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:473)
at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:595)
at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:511)
at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3819)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3430)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1127)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1018)
at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:156)
at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:694)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:606)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:139)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:669)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:608)
at org.eclipse.equinox.launcher.Main.run(Main.java:1515)
at org.eclipse.equinox.launcher.Main.main(Main.java:1488)
``` | 1.0 | Exception when opening Dataflow launch configuration - Also I cannot save runner selection.
```
java.lang.IllegalStateException: No runner selected, but a runner starts selected
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.getSelectedRunner(PipelineArgumentsTab.java:294)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.performApply(PipelineArgumentsTab.java:270)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.refresh(LaunchConfigurationTabGroupViewer.java:455)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.updateButtons(LaunchConfigurationsDialog.java:1543)
at org.eclipse.debug.ui.AbstractLaunchConfigurationTab.updateLaunchConfigurationDialog(AbstractLaunchConfigurationTab.java:113)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.updateLaunchConfigurationDialog(PipelineArgumentsTab.java:476)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab$UpdateLaunchConfigurationDialogChangedListener.run(PipelineArgumentsTab.java:527)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab$UpdateLaunchConfigurationDialogChangedListener.modifyText(PipelineArgumentsTab.java:513)
at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:179)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1353)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1334)
at org.eclipse.swt.widgets.Text.setText(Text.java:2591)
at org.eclipse.swt.widgets.Text.setText(Text.java:2517)
at com.google.cloud.tools.eclipse.dataflow.ui.preferences.RunOptionsDefaultsComponent.setCloudProjectText(RunOptionsDefaultsComponent.java:204)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.DefaultedPipelineOptionsComponent.updateDefaultableInputValues(DefaultedPipelineOptionsComponent.java:141)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.DefaultedPipelineOptionsComponent.setPreferences(DefaultedPipelineOptionsComponent.java:103)
at com.google.cloud.tools.eclipse.dataflow.ui.launcher.PipelineArgumentsTab.initializeFrom(PipelineArgumentsTab.java:315)
at org.eclipse.debug.ui.AbstractLaunchConfigurationTab.activated(AbstractLaunchConfigurationTab.java:411)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.handleTabSelected(LaunchConfigurationTabGroupViewer.java:1365)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer$6.widgetSelected(LaunchConfigurationTabGroupViewer.java:377)
at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1353)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1338)
at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1119)
at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3158)
at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1841)
at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:330)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3819)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3430)
at org.eclipse.jface.window.Window.runEventLoop(Window.java:827)
at org.eclipse.jface.window.Window.open(Window.java:803)
at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(LaunchConfigurationsDialog.java:1154)
at org.eclipse.debug.ui.DebugUITools$2.run(DebugUITools.java:619)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:627)
at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:560)
at org.eclipse.debug.ui.actions.OpenLaunchDialogAction.run(OpenLaunchDialogAction.java:82)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:473)
at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:595)
at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:511)
at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4481)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1329)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3819)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3430)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:1127)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:1018)
at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:156)
at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:694)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:337)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:606)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:150)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:139)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:134)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:104)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:380)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:235)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:669)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:608)
at org.eclipse.equinox.launcher.Main.run(Main.java:1515)
at org.eclipse.equinox.launcher.Main.main(Main.java:1488)
``` | priority | exception when opening dataflow launch configuration also i cannot save runner selection java lang illegalstateexception no runner selected but a runner starts selected at com google cloud tools eclipse dataflow ui launcher pipelineargumentstab getselectedrunner pipelineargumentstab java at com google cloud tools eclipse dataflow ui launcher pipelineargumentstab performapply pipelineargumentstab java at org eclipse debug internal ui launchconfigurations launchconfigurationtabgroupviewer refresh launchconfigurationtabgroupviewer java at org eclipse debug internal ui launchconfigurations launchconfigurationsdialog updatebuttons launchconfigurationsdialog java at org eclipse debug ui abstractlaunchconfigurationtab updatelaunchconfigurationdialog abstractlaunchconfigurationtab java at com google cloud tools eclipse dataflow ui launcher pipelineargumentstab updatelaunchconfigurationdialog pipelineargumentstab java at com google cloud tools eclipse dataflow ui launcher pipelineargumentstab updatelaunchconfigurationdialogchangedlistener run pipelineargumentstab java at com google cloud tools eclipse dataflow ui launcher pipelineargumentstab updatelaunchconfigurationdialogchangedlistener modifytext pipelineargumentstab java at org eclipse swt widgets typedlistener handleevent typedlistener java at org eclipse swt widgets eventtable sendevent eventtable java at org eclipse swt widgets display sendevent display java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets text settext text java at org eclipse swt widgets text settext text java at com google cloud tools eclipse dataflow ui preferences runoptionsdefaultscomponent setcloudprojecttext runoptionsdefaultscomponent java at com google cloud tools eclipse dataflow ui launcher defaultedpipelineoptionscomponent updatedefaultableinputvalues defaultedpipelineoptionscomponent java at com google cloud tools eclipse dataflow ui launcher defaultedpipelineoptionscomponent setpreferences defaultedpipelineoptionscomponent java at com google cloud tools eclipse dataflow ui launcher pipelineargumentstab initializefrom pipelineargumentstab java at org eclipse debug ui abstractlaunchconfigurationtab activated abstractlaunchconfigurationtab java at org eclipse debug internal ui launchconfigurations launchconfigurationtabgroupviewer handletabselected launchconfigurationtabgroupviewer java at org eclipse debug internal ui launchconfigurations launchconfigurationtabgroupviewer widgetselected launchconfigurationtabgroupviewer java at org eclipse swt widgets typedlistener handleevent typedlistener java at org eclipse swt widgets eventtable sendevent eventtable java at org eclipse swt widgets display sendevent display java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets widget notifylisteners widget java at org eclipse swt custom ctabfolder setselection ctabfolder java at org eclipse swt custom ctabfolder onmouse ctabfolder java at org eclipse swt custom ctabfolder handleevent ctabfolder java at org eclipse swt widgets eventtable sendevent eventtable java at org eclipse swt widgets display sendevent display java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets display rundeferredevents display java at org eclipse swt widgets display readanddispatch display java at org eclipse jface window window runeventloop window java at org eclipse jface window window open window java at org eclipse debug internal ui launchconfigurations launchconfigurationsdialog open launchconfigurationsdialog java at org eclipse debug ui debuguitools run debuguitools java at org eclipse swt custom busyindicator showwhile busyindicator java at org eclipse debug ui debuguitools openlaunchconfigurationdialogongroup debuguitools java at org eclipse debug ui debuguitools openlaunchconfigurationdialogongroup debuguitools java at org eclipse debug ui actions openlaunchdialogaction run openlaunchdialogaction java at org eclipse jface action action runwithevent action java at org eclipse jface action actioncontributionitem handlewidgetselection actioncontributionitem java at org eclipse jface action actioncontributionitem access actioncontributionitem java at org eclipse jface action actioncontributionitem handleevent actioncontributionitem java at org eclipse swt widgets eventtable sendevent eventtable java at org eclipse swt widgets display sendevent display java at org eclipse swt widgets widget sendevent widget java at org eclipse swt widgets display rundeferredevents display java at org eclipse swt widgets display readanddispatch display java at org eclipse ui internal workbench swt partrenderingengine run partrenderingengine java at org eclipse core databinding observable realm runwithdefault realm java at org eclipse ui internal workbench swt partrenderingengine run partrenderingengine java at org eclipse ui internal workbench createandrunui java at org eclipse ui internal workbench run workbench java at org eclipse core databinding observable realm runwithdefault realm java at org eclipse ui internal workbench createandrunworkbench workbench java at org eclipse ui platformui createandrunworkbench platformui java at org eclipse ui internal ide application ideapplication start ideapplication java at org eclipse equinox internal app eclipseapphandle run eclipseapphandle java at org eclipse core runtime internal adaptor eclipseapplauncher runapplication eclipseapplauncher java at org eclipse core runtime internal adaptor eclipseapplauncher start eclipseapplauncher java at org eclipse core runtime adaptor eclipsestarter run eclipsestarter java at org eclipse core runtime adaptor eclipsestarter run eclipsestarter java at sun reflect nativemethodaccessorimpl native method at sun reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org eclipse equinox launcher main invokeframework main java at org eclipse equinox launcher main basicrun main java at org eclipse equinox launcher main run main java at org eclipse equinox launcher main main main java | 1 |
261,749 | 8,245,732,518 | IssuesEvent | 2018-09-11 10:35:33 | geosolutions-it/eumetsat-EOWS | https://api.github.com/repos/geosolutions-it/eumetsat-EOWS | closed | No space left on device | Priority: High data ingestion in progress investigation | tentando di fare un download WPS del NETCDF:
/var/geoserver/datadir/tmp/filelocks/f8b1e01ed589c532fb30b9dcb5e590e6391c9370.lock (No space left on device) | 1.0 | No space left on device - tentando di fare un download WPS del NETCDF:
/var/geoserver/datadir/tmp/filelocks/f8b1e01ed589c532fb30b9dcb5e590e6391c9370.lock (No space left on device) | priority | no space left on device tentando di fare un download wps del netcdf var geoserver datadir tmp filelocks lock no space left on device | 1 |
62,416 | 3,185,105,014 | IssuesEvent | 2015-09-27 23:27:51 | cmsc495fall/Cardczar | https://api.github.com/repos/cmsc495fall/Cardczar | opened | Spaces in room name | bug high priority | Spaces in the room name will cause an error when creating the database. When entering 'sarah test' I get the following error. Create DB Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '+test' at line 1 | 1.0 | Spaces in room name - Spaces in the room name will cause an error when creating the database. When entering 'sarah test' I get the following error. Create DB Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '+test' at line 1 | priority | spaces in room name spaces in the room name will cause an error when creating the database when entering sarah test i get the following error create db error you have an error in your sql syntax check the manual that corresponds to your mysql server version for the right syntax to use near test at line | 1 |
131,058 | 5,142,210,523 | IssuesEvent | 2017-01-12 12:31:55 | flutter/flutter-intellij | https://api.github.com/repos/flutter/flutter-intellij | closed | Opening existing projects no longer works | high priority | I can no longer open the flutter example projects; they are not properly detected as flutter projects.
This is a regression, I think in 0.1.8.
Note that this is *not* the same as issue https://github.com/flutter/flutter-intellij/issues/316. The *present* issue covers the flutter example projects, which do have an `.iml` file and a `.idea. dir.
## Steps to Reproduce
1. Upgrade flutter to latest build (I have `Framework revision 684259794b (8 hours ago), 2017-01-09 21:35:43`)
1. Start IntelliJ
1. File > Open
1. Select /flutter-sdk-dir/examples/flutter-gallery/
Expected result: Project loads, and I can hit Run to see the app
Actual result: Projects loads, but is not detected as a flutter project so run is disabled
## Version info
Flutter doctor:
```
[✓] Flutter (on Mac OS, channel master)
• Flutter at /Users/mit/dev/github/flutter
• Framework revision 684259794b (8 hours ago), 2017-01-09 21:35:43
• Engine revision f13518d7e7
• Tools Dart version 1.21.0
[✓] Android toolchain - develop for Android devices (Android SDK 25.0.0)
• Android SDK at /Users/mit/Library/Android/sdk
• Platform android-25, build-tools 25.0.0
• ANDROID_HOME = /Users/mit/Library/Android/sdk
• Java(TM) SE Runtime Environment (build 1.8.0_112-b16)
[✓] iOS toolchain - develop for iOS devices (Xcode 8.2.1)
• XCode at /Applications/Xcode.app/Contents/Developer
• Xcode 8.2.1, Build version 8C1002
[-] IntelliJ IDEA Ultimate Edition (version 2016.3.2)
• Dart plugin version 163.11306
• Flutter plugin not installed; this adds Flutter specific functionality.
• For information about managing plugins, see
https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html
[✓] Connected devices
• iPhone 6 • F1198136-43B5-4184-B548-A36956F6FA15 • ios • iOS 9.3 (simulator)```
| 1.0 | Opening existing projects no longer works - I can no longer open the flutter example projects; they are not properly detected as flutter projects.
This is a regression, I think in 0.1.8.
Note that this is *not* the same as issue https://github.com/flutter/flutter-intellij/issues/316. The *present* issue covers the flutter example projects, which do have an `.iml` file and a `.idea. dir.
## Steps to Reproduce
1. Upgrade flutter to latest build (I have `Framework revision 684259794b (8 hours ago), 2017-01-09 21:35:43`)
1. Start IntelliJ
1. File > Open
1. Select /flutter-sdk-dir/examples/flutter-gallery/
Expected result: Project loads, and I can hit Run to see the app
Actual result: Projects loads, but is not detected as a flutter project so run is disabled
## Version info
Flutter doctor:
```
[✓] Flutter (on Mac OS, channel master)
• Flutter at /Users/mit/dev/github/flutter
• Framework revision 684259794b (8 hours ago), 2017-01-09 21:35:43
• Engine revision f13518d7e7
• Tools Dart version 1.21.0
[✓] Android toolchain - develop for Android devices (Android SDK 25.0.0)
• Android SDK at /Users/mit/Library/Android/sdk
• Platform android-25, build-tools 25.0.0
• ANDROID_HOME = /Users/mit/Library/Android/sdk
• Java(TM) SE Runtime Environment (build 1.8.0_112-b16)
[✓] iOS toolchain - develop for iOS devices (Xcode 8.2.1)
• XCode at /Applications/Xcode.app/Contents/Developer
• Xcode 8.2.1, Build version 8C1002
[-] IntelliJ IDEA Ultimate Edition (version 2016.3.2)
• Dart plugin version 163.11306
• Flutter plugin not installed; this adds Flutter specific functionality.
• For information about managing plugins, see
https://www.jetbrains.com/help/idea/2016.2/managing-plugins.html
[✓] Connected devices
• iPhone 6 • F1198136-43B5-4184-B548-A36956F6FA15 • ios • iOS 9.3 (simulator)```
| priority | opening existing projects no longer works i can no longer open the flutter example projects they are not properly detected as flutter projects this is a regression i think in note that this is not the same as issue the present issue covers the flutter example projects which do have an iml file and a idea dir steps to reproduce upgrade flutter to latest build i have framework revision hours ago start intellij file open select flutter sdk dir examples flutter gallery expected result project loads and i can hit run to see the app actual result projects loads but is not detected as a flutter project so run is disabled version info flutter doctor flutter on mac os channel master • flutter at users mit dev github flutter • framework revision hours ago • engine revision • tools dart version android toolchain develop for android devices android sdk • android sdk at users mit library android sdk • platform android build tools • android home users mit library android sdk • java tm se runtime environment build ios toolchain develop for ios devices xcode • xcode at applications xcode app contents developer • xcode build version intellij idea ultimate edition version • dart plugin version • flutter plugin not installed this adds flutter specific functionality • for information about managing plugins see connected devices • iphone • • ios • ios simulator | 1 |
495,557 | 14,283,968,031 | IssuesEvent | 2020-11-23 11:48:37 | geosolutions-it/MapStore2 | https://api.github.com/repos/geosolutions-it/MapStore2 | closed | Problem creating Map Templates in application contexts | Accepted C169-Rennes-Métropole-2019-GeOrchestra Priority: High bug | ## Description
<!-- Add here a few sentences describing the bug. -->
This issue has been reported here: https://github.com/georchestra/mapstore2-georchestra/issues/293
_When adding a new map template in an application context, it is impossible to enter the name, image and description of the map template : impossible to enter anything in the form, only the json file can be loaded in this window._
This issue affects only master branch and it is reproducible in DEV: this is a regression introduced recently.
## How to reproduce
<!-- A list of steps to reproduce the bug -->
- Open the app context wizard of a context
- Add the MapTemplate tool
- Try to create a new MapTemplate
*Expected Result*
<!-- Describe here the expected result -->
The new MapTemplate can be created by uploading the context file, the thumbnail, name and description along with group permissions
*Current Result*
<!-- Describe here the current behavior -->
Currently it is only possible to upload the context file and the user cannot fill the other fields
- thumbnail
- name
- description
- group permissions
- [x] Not browser related
<details><summary> <b>Browser info</b> </summary>
<!-- If browser related, please compile the following table -->
<!-- If your browser is not in the list please add a new row to the table with the version -->
(use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users)
| Browser Affected | Version |
|---|---|
|Internet Explorer| |
|Edge| |
|Chrome| |
|Firefox| |
|Safari| |
</details>
## Other useful information
<!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
| 1.0 | Problem creating Map Templates in application contexts - ## Description
<!-- Add here a few sentences describing the bug. -->
This issue has been reported here: https://github.com/georchestra/mapstore2-georchestra/issues/293
_When adding a new map template in an application context, it is impossible to enter the name, image and description of the map template : impossible to enter anything in the form, only the json file can be loaded in this window._
This issue affects only master branch and it is reproducible in DEV: this is a regression introduced recently.
## How to reproduce
<!-- A list of steps to reproduce the bug -->
- Open the app context wizard of a context
- Add the MapTemplate tool
- Try to create a new MapTemplate
*Expected Result*
<!-- Describe here the expected result -->
The new MapTemplate can be created by uploading the context file, the thumbnail, name and description along with group permissions
*Current Result*
<!-- Describe here the current behavior -->
Currently it is only possible to upload the context file and the user cannot fill the other fields
- thumbnail
- name
- description
- group permissions
- [x] Not browser related
<details><summary> <b>Browser info</b> </summary>
<!-- If browser related, please compile the following table -->
<!-- If your browser is not in the list please add a new row to the table with the version -->
(use this site: <a href="https://www.whatsmybrowser.org/">https://www.whatsmybrowser.org/</a> for non expert users)
| Browser Affected | Version |
|---|---|
|Internet Explorer| |
|Edge| |
|Chrome| |
|Firefox| |
|Safari| |
</details>
## Other useful information
<!-- error stack trace, screenshot, videos, or link to repository code are welcome -->
| priority | problem creating map templates in application contexts description this issue has been reported here when adding a new map template in an application context it is impossible to enter the name image and description of the map template impossible to enter anything in the form only the json file can be loaded in this window this issue affects only master branch and it is reproducible in dev this is a regression introduced recently how to reproduce open the app context wizard of a context add the maptemplate tool try to create a new maptemplate expected result the new maptemplate can be created by uploading the context file the thumbnail name and description along with group permissions current result currently it is only possible to upload the context file and the user cannot fill the other fields thumbnail name description group permissions not browser related browser info use this site a href for non expert users browser affected version internet explorer edge chrome firefox safari other useful information | 1 |
795,973 | 28,094,579,073 | IssuesEvent | 2023-03-30 15:00:17 | wazuh/wazuh-documentation | https://api.github.com/repos/wazuh/wazuh-documentation | closed | Wazuh 4.4.0 release notes and versions update | release notes priority: high | ## Description
This issue aims to create the Wazuh v4.4 release notes and versions update throughout the documentation.
## Task 1 - Create the 4.4 Release notes:
- [x] Branch `5839-4.4-release-notes`
- [x] PR #5840
- [x] Create the 4.4 Release notes
- [x] Add issues:
- [x] Add issues from wazuh/wazuh
- [x] Add issues from wazuh/wazuh-dashboard
- [x] Add issues from wazuh/wazuh-kibana-app 7.10.2
- [x] Add issues from wazuh/wazuh-kibana-app 7.17.x
- [x] Add issues from wazuh/wazuh-splunk
- [x] Add issues from wazuh/wazuh-packages
- [x] Make a versions update
- [x] Correct and improve issues texts
- [x] Create Highlights
- [x] Review Highlights with the team
- [x] Add images to the Highlights
- [x] Make a complete review
- [x] Ask to review and merge
## Task 2 - Make changes to Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-changes`
- [x] PR: #5878
- [x] Make changes to Wazuh 4.4.0 release notes
- [x] Make a complete review
- [x] Ask to review and merge
## Task 3 - Review and adjust the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-review`
- [x] PR: #5908
- [x] Review and adjust the Wazuh 4.4.0 release notes
- [x] Make a complete review
- [x] Ask to review and merge
## Task 4 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update`
- [x] PR: #5919
- [x] Update the Wazuh 4.4.0 release notes
- [x] Branch: `5839-4.4-release-note-update-v2`
- [x] PR: #5921
- [x] Review the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 5 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v3`
- [x] PR: #5945
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 6 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v4`
- [x] PR: #5992
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 7 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v5`
- [x] PR: #5993
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 8 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v6`
- [x] PR: #5999
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge | 1.0 | Wazuh 4.4.0 release notes and versions update - ## Description
This issue aims to create the Wazuh v4.4 release notes and versions update throughout the documentation.
## Task 1 - Create the 4.4 Release notes:
- [x] Branch `5839-4.4-release-notes`
- [x] PR #5840
- [x] Create the 4.4 Release notes
- [x] Add issues:
- [x] Add issues from wazuh/wazuh
- [x] Add issues from wazuh/wazuh-dashboard
- [x] Add issues from wazuh/wazuh-kibana-app 7.10.2
- [x] Add issues from wazuh/wazuh-kibana-app 7.17.x
- [x] Add issues from wazuh/wazuh-splunk
- [x] Add issues from wazuh/wazuh-packages
- [x] Make a versions update
- [x] Correct and improve issues texts
- [x] Create Highlights
- [x] Review Highlights with the team
- [x] Add images to the Highlights
- [x] Make a complete review
- [x] Ask to review and merge
## Task 2 - Make changes to Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-changes`
- [x] PR: #5878
- [x] Make changes to Wazuh 4.4.0 release notes
- [x] Make a complete review
- [x] Ask to review and merge
## Task 3 - Review and adjust the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-review`
- [x] PR: #5908
- [x] Review and adjust the Wazuh 4.4.0 release notes
- [x] Make a complete review
- [x] Ask to review and merge
## Task 4 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update`
- [x] PR: #5919
- [x] Update the Wazuh 4.4.0 release notes
- [x] Branch: `5839-4.4-release-note-update-v2`
- [x] PR: #5921
- [x] Review the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 5 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v3`
- [x] PR: #5945
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 6 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v4`
- [x] PR: #5992
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 7 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v5`
- [x] PR: #5993
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge
## Task 8 - Update the Wazuh 4.4.0 release notes:
- [x] Branch: `5839-4.4-release-note-update-v6`
- [x] PR: #5999
- [x] Update the Wazuh 4.4.0 release notes
- [x] Ask to review and merge | priority | wazuh release notes and versions update description this issue aims to create the wazuh release notes and versions update throughout the documentation task create the release notes branch release notes pr create the release notes add issues add issues from wazuh wazuh add issues from wazuh wazuh dashboard add issues from wazuh wazuh kibana app add issues from wazuh wazuh kibana app x add issues from wazuh wazuh splunk add issues from wazuh wazuh packages make a versions update correct and improve issues texts create highlights review highlights with the team add images to the highlights make a complete review ask to review and merge task make changes to wazuh release notes branch release note changes pr make changes to wazuh release notes make a complete review ask to review and merge task review and adjust the wazuh release notes branch release note review pr review and adjust the wazuh release notes make a complete review ask to review and merge task update the wazuh release notes branch release note update pr update the wazuh release notes branch release note update pr review the wazuh release notes ask to review and merge task update the wazuh release notes branch release note update pr update the wazuh release notes ask to review and merge task update the wazuh release notes branch release note update pr update the wazuh release notes ask to review and merge task update the wazuh release notes branch release note update pr update the wazuh release notes ask to review and merge task update the wazuh release notes branch release note update pr update the wazuh release notes ask to review and merge | 1 |
468,333 | 13,465,509,007 | IssuesEvent | 2020-09-09 21:00:01 | ampproject/amphtml | https://api.github.com/repos/ampproject/amphtml | closed | amp-list fails to load more items when using amp-script as a data source | Component: amp-script P1: High Priority Type: Bug UI: Component: amp-list | ## What's the issue?
When creating an amp-list element that loads items via amp-script, and with the load-more attribute set to any value to retrieve more items, the list fails to load more items. This is likely due to the fact that when calling load more items, amp-list defaults to using the standard behavior of loading items via the 'src' attribute, which is reasonable. The problem is that there is no way to let amp-list know to use amp-script as a data source again for the next load as well as a way to pass the load-more-src value to the associated amp-script script. The two methods are completely separated at this point.
## How do we reproduce the issue?
1. Create an amp-list (load-more attribute set to 'auto' or 'manual') with an associated amp-script element for fetching JSON (which includes a next page url for the load-more-src attribute):
```
<amp-script nodom id="dataFunctions" script="local-script"></amp-script>
<script id="local-script" type="text/plain" target="amp-script">
function transformData(data) {
var items = data.entries.map(function(entry) {
return {
name: entry.first_name
};
});
var nextPageUrl = entry.next.replace('abc-123','xyz-789'); // e.g. https://myendpoint.com/list.json?index=25&max-results=25
return { items: items, "load-more-src": nextPageUrl };
}
function getRemoteData() {
return fetch('https://myendpoint.com/list.json?index=0&max-results=25')
.then(function(resp) { return resp.json(); })
.then(transformData);
}
exportFunction('getRemoteData', getRemoteData);
</script>
<amp-list load-more="auto" width="100" height="200" layout="responsive" src="amp-script:dataFunctions.getRemoteData">
<template type="amp-mustache">
<div>Hello, {{name}}</div>
</template>
</amp-list>
```
2. Visit the page. If load-more is set to manual then click the See More button, otherwise just scroll down. An error message occurs saying "UNABLE TO LOAD MORE". When looking in the JavaScript console, an error reads, 'Response must contain an array or object at " items ". ', showing that the behavior defaulted back to using the 'src' attribute on amp-list.
[Example here](https://testo.wonderfulsubs.com/p/blog.html)
## What browsers are affected?
All browsers
## Which AMP version is affected?
Version 2008220050001
| 1.0 | amp-list fails to load more items when using amp-script as a data source - ## What's the issue?
When creating an amp-list element that loads items via amp-script, and with the load-more attribute set to any value to retrieve more items, the list fails to load more items. This is likely due to the fact that when calling load more items, amp-list defaults to using the standard behavior of loading items via the 'src' attribute, which is reasonable. The problem is that there is no way to let amp-list know to use amp-script as a data source again for the next load as well as a way to pass the load-more-src value to the associated amp-script script. The two methods are completely separated at this point.
## How do we reproduce the issue?
1. Create an amp-list (load-more attribute set to 'auto' or 'manual') with an associated amp-script element for fetching JSON (which includes a next page url for the load-more-src attribute):
```
<amp-script nodom id="dataFunctions" script="local-script"></amp-script>
<script id="local-script" type="text/plain" target="amp-script">
function transformData(data) {
var items = data.entries.map(function(entry) {
return {
name: entry.first_name
};
});
var nextPageUrl = entry.next.replace('abc-123','xyz-789'); // e.g. https://myendpoint.com/list.json?index=25&max-results=25
return { items: items, "load-more-src": nextPageUrl };
}
function getRemoteData() {
return fetch('https://myendpoint.com/list.json?index=0&max-results=25')
.then(function(resp) { return resp.json(); })
.then(transformData);
}
exportFunction('getRemoteData', getRemoteData);
</script>
<amp-list load-more="auto" width="100" height="200" layout="responsive" src="amp-script:dataFunctions.getRemoteData">
<template type="amp-mustache">
<div>Hello, {{name}}</div>
</template>
</amp-list>
```
2. Visit the page. If load-more is set to manual then click the See More button, otherwise just scroll down. An error message occurs saying "UNABLE TO LOAD MORE". When looking in the JavaScript console, an error reads, 'Response must contain an array or object at " items ". ', showing that the behavior defaulted back to using the 'src' attribute on amp-list.
[Example here](https://testo.wonderfulsubs.com/p/blog.html)
## What browsers are affected?
All browsers
## Which AMP version is affected?
Version 2008220050001
| priority | amp list fails to load more items when using amp script as a data source what s the issue when creating an amp list element that loads items via amp script and with the load more attribute set to any value to retrieve more items the list fails to load more items this is likely due to the fact that when calling load more items amp list defaults to using the standard behavior of loading items via the src attribute which is reasonable the problem is that there is no way to let amp list know to use amp script as a data source again for the next load as well as a way to pass the load more src value to the associated amp script script the two methods are completely separated at this point how do we reproduce the issue create an amp list load more attribute set to auto or manual with an associated amp script element for fetching json which includes a next page url for the load more src attribute function transformdata data var items data entries map function entry return name entry first name var nextpageurl entry next replace abc xyz e g return items items load more src nextpageurl function getremotedata return fetch then function resp return resp json then transformdata exportfunction getremotedata getremotedata hello name visit the page if load more is set to manual then click the see more button otherwise just scroll down an error message occurs saying unable to load more when looking in the javascript console an error reads response must contain an array or object at items showing that the behavior defaulted back to using the src attribute on amp list what browsers are affected all browsers which amp version is affected version | 1 |
438,298 | 12,626,025,933 | IssuesEvent | 2020-06-14 14:44:04 | michaelrsweet/pappl | https://api.github.com/repos/michaelrsweet/pappl | closed | Devices: Add DNS-SD/mDNS discovery/printing | enhancement priority-high | Add support for printer discovery and lookup using mDNS/DNS-SD, a la the CUPS dnssd backend, but just for pdl-datastream (AppSocket/JetDirect).
papplDeviceList should return "socket://servicename._pdl-datastream._tcp.local." URIs. papplDeviceOpen should resolve the service name and then connect to the socket. | 1.0 | Devices: Add DNS-SD/mDNS discovery/printing - Add support for printer discovery and lookup using mDNS/DNS-SD, a la the CUPS dnssd backend, but just for pdl-datastream (AppSocket/JetDirect).
papplDeviceList should return "socket://servicename._pdl-datastream._tcp.local." URIs. papplDeviceOpen should resolve the service name and then connect to the socket. | priority | devices add dns sd mdns discovery printing add support for printer discovery and lookup using mdns dns sd a la the cups dnssd backend but just for pdl datastream appsocket jetdirect pappldevicelist should return socket servicename pdl datastream tcp local uris pappldeviceopen should resolve the service name and then connect to the socket | 1 |
810,387 | 30,240,000,282 | IssuesEvent | 2023-07-06 12:56:44 | meshery/meshery.io | https://api.github.com/repos/meshery/meshery.io | closed | Site PR preview build failing | kind/bug priority/high | ### Description
The site PR preview build is failing due to recent upgrade to the ruby version version
`Your Ruby version is 2.7.5, but your Gemfile specified 3.2.2`
### Expected Behavior
Update the version in the preview workflow to sync with the gemfile.
### Screenshots
<!--- Add screenshots, if applicable, to help explain your problem.-->
### Enviroment:
- OS: Mac Linux Windows
- Browser: Chrome Safari Firefox
- Version:
- Device: Desktop Mobile
---
## Contributor [Guides](https://docs.meshery.io/project/contributing) and [Handbook](https://layer5.io/community/handbook)
The meshery.io website uses Jekyll and GitHub Pages. Site content is found under the [`master` branch](https://github.com/meshery/meshery.io/tree/master).
- 📚 See the [Contributing to Meshery.io Website](https://github.com/meshery/meshery.io#contributing-to-the-mesheryio-website) section of the readme.md and other [contributing instructions](https://docs.meshery.io/project/contributing), too.
- 🎨 Wireframes and designs for Meshery UI in [Figma](https://www.figma.com/file/SMP3zxOjZztdOLtgN4dS2W/Meshery-UI)
- 🙋🏾🙋🏼 Questions: [Discussion Forum](https://discuss.layer5.io) and [Community Slack](https://slack.meshery.io)
| 1.0 | Site PR preview build failing - ### Description
The site PR preview build is failing due to recent upgrade to the ruby version version
`Your Ruby version is 2.7.5, but your Gemfile specified 3.2.2`
### Expected Behavior
Update the version in the preview workflow to sync with the gemfile.
### Screenshots
<!--- Add screenshots, if applicable, to help explain your problem.-->
### Enviroment:
- OS: Mac Linux Windows
- Browser: Chrome Safari Firefox
- Version:
- Device: Desktop Mobile
---
## Contributor [Guides](https://docs.meshery.io/project/contributing) and [Handbook](https://layer5.io/community/handbook)
The meshery.io website uses Jekyll and GitHub Pages. Site content is found under the [`master` branch](https://github.com/meshery/meshery.io/tree/master).
- 📚 See the [Contributing to Meshery.io Website](https://github.com/meshery/meshery.io#contributing-to-the-mesheryio-website) section of the readme.md and other [contributing instructions](https://docs.meshery.io/project/contributing), too.
- 🎨 Wireframes and designs for Meshery UI in [Figma](https://www.figma.com/file/SMP3zxOjZztdOLtgN4dS2W/Meshery-UI)
- 🙋🏾🙋🏼 Questions: [Discussion Forum](https://discuss.layer5.io) and [Community Slack](https://slack.meshery.io)
| priority | site pr preview build failing description the site pr preview build is failing due to recent upgrade to the ruby version version your ruby version is but your gemfile specified expected behavior update the version in the preview workflow to sync with the gemfile screenshots enviroment os mac linux windows browser chrome safari firefox version device desktop mobile contributor and the meshery io website uses jekyll and github pages site content is found under the 📚 see the section of the readme md and other too 🎨 wireframes and designs for meshery ui in 🙋🏾🙋🏼 questions and | 1 |
701,821 | 24,109,596,745 | IssuesEvent | 2022-09-20 10:13:08 | fyusuf-a/ft_transcendence | https://api.github.com/repos/fyusuf-a/ft_transcendence | closed | Dynamic and nested routes for the users' pages | enhancement good first issue frontend HIGH PRIORITY | Maybe wait for authentication to be finished and merge.
To have all our users' pages under ```/users/``` (and not have to configure all the routes manually) , each with a slug name as their login (or username):
```/users/username1```
```/users/username2```
```/users/username3```
We need to have ```/username``` as a dynamic segment.
Something like this:
```
const router = new VueRouter({
routes: [
(...)
{ path: '/users/:post_slug', component: UsersView },
(...)
]
}) ``` | 1.0 | Dynamic and nested routes for the users' pages - Maybe wait for authentication to be finished and merge.
To have all our users' pages under ```/users/``` (and not have to configure all the routes manually) , each with a slug name as their login (or username):
```/users/username1```
```/users/username2```
```/users/username3```
We need to have ```/username``` as a dynamic segment.
Something like this:
```
const router = new VueRouter({
routes: [
(...)
{ path: '/users/:post_slug', component: UsersView },
(...)
]
}) ``` | priority | dynamic and nested routes for the users pages maybe wait for authentication to be finished and merge to have all our users pages under users and not have to configure all the routes manually each with a slug name as their login or username users users users we need to have username as a dynamic segment something like this const router new vuerouter routes path users post slug component usersview | 1 |
444,746 | 12,820,586,411 | IssuesEvent | 2020-07-06 06:12:18 | ahmedkaludi/pwa-for-wp | https://api.github.com/repos/ahmedkaludi/pwa-for-wp | closed | "Show on Desktop CTA" and "Show CTA banner without scroll" option in cta are working without enabling those options in amp version | High Priority bug | https://secure.helpscout.net/conversation/1178151122/132460?folderId=2632030
Even though they are disabled but, in amp version, cta is displaying on desktop and initial load it is displaying.
Sometimes in non-amp also cta displays without scroll.
Please see this video it is clearly shown: https://monosnap.com/file/XhUQoczunVPeY9bcwLmkW67IK8fGol
- [ ] Need to improve this name for more understandable and need to had help tool tip for this option Show on Desktop CTA
- [ ] Need to improve this name for more understandable and need to had help tool tip for this option Show cta banner without scroll.
https://www.viaggi-usa.it/fly-and-drive-usa/amp/
| 1.0 | "Show on Desktop CTA" and "Show CTA banner without scroll" option in cta are working without enabling those options in amp version - https://secure.helpscout.net/conversation/1178151122/132460?folderId=2632030
Even though they are disabled but, in amp version, cta is displaying on desktop and initial load it is displaying.
Sometimes in non-amp also cta displays without scroll.
Please see this video it is clearly shown: https://monosnap.com/file/XhUQoczunVPeY9bcwLmkW67IK8fGol
- [ ] Need to improve this name for more understandable and need to had help tool tip for this option Show on Desktop CTA
- [ ] Need to improve this name for more understandable and need to had help tool tip for this option Show cta banner without scroll.
https://www.viaggi-usa.it/fly-and-drive-usa/amp/
| priority | show on desktop cta and show cta banner without scroll option in cta are working without enabling those options in amp version even though they are disabled but in amp version cta is displaying on desktop and initial load it is displaying sometimes in non amp also cta displays without scroll please see this video it is clearly shown need to improve this name for more understandable and need to had help tool tip for this option show on desktop cta need to improve this name for more understandable and need to had help tool tip for this option show cta banner without scroll | 1 |
270,669 | 8,468,294,844 | IssuesEvent | 2018-10-23 19:19:18 | ngageoint/hootenanny | https://api.github.com/repos/ngageoint/hootenanny | closed | ogr.append.data not appending data | Category: Core Priority: High Status: In Progress Type: Bug in progress | Running:
`hoot convert -D ogr.append.data=true test.osm output.gdb --trans $HOOT_HOME/translations/TDSv61.js`
fails when `output.gdb` exists. It should open and add data to the existing FGDB.
| 1.0 | ogr.append.data not appending data - Running:
`hoot convert -D ogr.append.data=true test.osm output.gdb --trans $HOOT_HOME/translations/TDSv61.js`
fails when `output.gdb` exists. It should open and add data to the existing FGDB.
| priority | ogr append data not appending data running hoot convert d ogr append data true test osm output gdb trans hoot home translations js fails when output gdb exists it should open and add data to the existing fgdb | 1 |
480,326 | 13,850,143,917 | IssuesEvent | 2020-10-15 00:22:18 | pytorch/pytorch | https://api.github.com/repos/pytorch/pytorch | closed | DistributedSampler internal asserts if len(dataset) * 2 < number of GPUs | high priority oncall: distributed triaged | ## 🐛 Bug
DistributedSampler crash has been reported in some threads (links below), while its cause has not been identified.
- [https://github.com/open-mmlab/mmdetection/issues/1223](https://github.com/open-mmlab/mmdetection/issues/1223)
- [https://discuss.pytorch.org/t/error-when-using-distributedsampler/32987](https://discuss.pytorch.org/t/error-when-using-distributedsampler/32987)
The crash is due to the implementation error in `DistributedSampler`, where it crashes when the `len(dataset) * 2 < num_gpus`. L101 of the following code snippet is the problematic part, as `self.total_size - len(indices)` overflows `indices` in such case.
https://github.com/pytorch/pytorch/blob/03dde4c62af35a8a8a0c2e1ea9f6486ac897a780/torch/utils/data/distributed.py#L99-L105
## To Reproduce
```python
import os
import torch.utils.data
import torch.multiprocessing as mp
import torch.distributed
# Error occurs when dataset_size * 2 < num_gpus
num_gpus = 9
dataset_size = 4
def main(gpu):
torch.distributed.init_process_group(backend='nccl', init_method='env://', world_size=num_gpus, rank=gpu)
dataset = DummyDataset()
sampler = torch.utils.data.distributed.DistributedSampler(dataset, num_replicas=num_gpus, rank=gpu)
loader = torch.utils.data.DataLoader(dataset, 1, sampler=sampler)
for batch in loader:
print(batch)
class DummyDataset(torch.utils.data.Dataset):
def __getitem__(self, item):
return 0
def __len__(self):
return dataset_size
if __name__ == '__main__':
os.environ['MASTER_ADDR'] = 'localhost'
os.environ['MASTER_PORT'] = '10000'
mp.spawn(main, nprocs=num_gpus)
```
If dataset_size * 2 < num_gpus, (e.g. dataset_size = 4 and num_gpus =9), following error occurs.
```
-- Process 3 terminated with the following error:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/torch/multiprocessing/spawn.py", line 20, in _wrap
fn(i, *args)
File "/home/user/pytorch_bug.py", line 25, in main
for batch in loader:
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 345, in __next__
data = self._next_data()
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 384, in _next_data
index = self._next_index() # may raise StopIteration
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 339, in _next_index
return next(self._sampler_iter) # may raise StopIteration
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/sampler.py", line 200, in __iter__
for idx in self.sampler:
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/distributed.py", line 68, in __iter__
assert len(indices) == self.total_size
AssertionError
```
cc @ezyang @gchanan @zou3519 @SsnL @VitalyFedyunin @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar @jiayisuse @agolynski | 1.0 | DistributedSampler internal asserts if len(dataset) * 2 < number of GPUs - ## 🐛 Bug
DistributedSampler crash has been reported in some threads (links below), while its cause has not been identified.
- [https://github.com/open-mmlab/mmdetection/issues/1223](https://github.com/open-mmlab/mmdetection/issues/1223)
- [https://discuss.pytorch.org/t/error-when-using-distributedsampler/32987](https://discuss.pytorch.org/t/error-when-using-distributedsampler/32987)
The crash is due to the implementation error in `DistributedSampler`, where it crashes when the `len(dataset) * 2 < num_gpus`. L101 of the following code snippet is the problematic part, as `self.total_size - len(indices)` overflows `indices` in such case.
https://github.com/pytorch/pytorch/blob/03dde4c62af35a8a8a0c2e1ea9f6486ac897a780/torch/utils/data/distributed.py#L99-L105
## To Reproduce
```python
import os
import torch.utils.data
import torch.multiprocessing as mp
import torch.distributed
# Error occurs when dataset_size * 2 < num_gpus
num_gpus = 9
dataset_size = 4
def main(gpu):
torch.distributed.init_process_group(backend='nccl', init_method='env://', world_size=num_gpus, rank=gpu)
dataset = DummyDataset()
sampler = torch.utils.data.distributed.DistributedSampler(dataset, num_replicas=num_gpus, rank=gpu)
loader = torch.utils.data.DataLoader(dataset, 1, sampler=sampler)
for batch in loader:
print(batch)
class DummyDataset(torch.utils.data.Dataset):
def __getitem__(self, item):
return 0
def __len__(self):
return dataset_size
if __name__ == '__main__':
os.environ['MASTER_ADDR'] = 'localhost'
os.environ['MASTER_PORT'] = '10000'
mp.spawn(main, nprocs=num_gpus)
```
If dataset_size * 2 < num_gpus, (e.g. dataset_size = 4 and num_gpus =9), following error occurs.
```
-- Process 3 terminated with the following error:
Traceback (most recent call last):
File "/usr/local/lib/python3.6/site-packages/torch/multiprocessing/spawn.py", line 20, in _wrap
fn(i, *args)
File "/home/user/pytorch_bug.py", line 25, in main
for batch in loader:
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 345, in __next__
data = self._next_data()
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 384, in _next_data
index = self._next_index() # may raise StopIteration
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/dataloader.py", line 339, in _next_index
return next(self._sampler_iter) # may raise StopIteration
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/sampler.py", line 200, in __iter__
for idx in self.sampler:
File "/usr/local/lib/python3.6/site-packages/torch/utils/data/distributed.py", line 68, in __iter__
assert len(indices) == self.total_size
AssertionError
```
cc @ezyang @gchanan @zou3519 @SsnL @VitalyFedyunin @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar @jiayisuse @agolynski | priority | distributedsampler internal asserts if len dataset number of gpus 🐛 bug distributedsampler crash has been reported in some threads links below while its cause has not been identified the crash is due to the implementation error in distributedsampler where it crashes when the len dataset num gpus of the following code snippet is the problematic part as self total size len indices overflows indices in such case to reproduce python import os import torch utils data import torch multiprocessing as mp import torch distributed error occurs when dataset size num gpus num gpus dataset size def main gpu torch distributed init process group backend nccl init method env world size num gpus rank gpu dataset dummydataset sampler torch utils data distributed distributedsampler dataset num replicas num gpus rank gpu loader torch utils data dataloader dataset sampler sampler for batch in loader print batch class dummydataset torch utils data dataset def getitem self item return def len self return dataset size if name main os environ localhost os environ mp spawn main nprocs num gpus if dataset size num gpus e g dataset size and num gpus following error occurs process terminated with the following error traceback most recent call last file usr local lib site packages torch multiprocessing spawn py line in wrap fn i args file home user pytorch bug py line in main for batch in loader file usr local lib site packages torch utils data dataloader py line in next data self next data file usr local lib site packages torch utils data dataloader py line in next data index self next index may raise stopiteration file usr local lib site packages torch utils data dataloader py line in next index return next self sampler iter may raise stopiteration file usr local lib site packages torch utils data sampler py line in iter for idx in self sampler file usr local lib site packages torch utils data distributed py line in iter assert len indices self total size assertionerror cc ezyang gchanan ssnl vitalyfedyunin pietern mrshenli zhaojuanmao satgera rohan varma gqchen aazzolini osalpekar jiayisuse agolynski | 1 |
830,966 | 32,032,923,746 | IssuesEvent | 2023-09-22 13:31:18 | gamefreedomgit/Maelstrom | https://api.github.com/repos/gamefreedomgit/Maelstrom | reopened | [Coren direbrew] deserter | Priority: High GameEvent | [//]: # (REMBEMBER! Add links to things related to the bug using for example:)
[//]: # (http://wowhead.com/)
[//]: # (cata-twinhead.twinstar.cz)
**Description:** i get deserter from nothing after i kill coren direbrew and leave party
**How to reproduce:** kill coren direbrew , then exit dungeon from dungeon finder button and leave party
**How it should work:** dont get deserter
**Database link :
As you can see in first photo time is 09:07i got deserter , after this gm removed then i did another coren and get deserter again at 09:10
| 1.0 | [Coren direbrew] deserter - [//]: # (REMBEMBER! Add links to things related to the bug using for example:)
[//]: # (http://wowhead.com/)
[//]: # (cata-twinhead.twinstar.cz)
**Description:** i get deserter from nothing after i kill coren direbrew and leave party
**How to reproduce:** kill coren direbrew , then exit dungeon from dungeon finder button and leave party
**How it should work:** dont get deserter
**Database link :
As you can see in first photo time is 09:07i got deserter , after this gm removed then i did another coren and get deserter again at 09:10
| priority | deserter rembember add links to things related to the bug using for example cata twinhead twinstar cz description i get deserter from nothing after i kill coren direbrew and leave party how to reproduce kill coren direbrew then exit dungeon from dungeon finder button and leave party how it should work dont get deserter database link as you can see in first photo time is got deserter after this gm removed then i did another coren and get deserter again at | 1 |
415,123 | 12,125,169,049 | IssuesEvent | 2020-04-22 15:10:03 | Automattic/simplenote-macos | https://api.github.com/repos/Automattic/simplenote-macos | closed | Simplenote doesn't start on OSX | [priority] high | ### Expected
The simplenote app to start and be usable.
### Observed
I installed the simplenote app from the app store and went to start it and it flashed for a millisecond and then disappeared. After a couple more seconds a box popped up saying that: *Simplenote quit unexpectedly*. The following is the report (I'm not sure if it's helpful):
```
Process: Simplenote [53359]
Path: /Applications/Simplenote.app/Contents/MacOS/Simplenote
Identifier: com.automattic.SimplenoteMac
Version: 1.7.0 (1703)
App Item ID: 692867256
App External ID: 832659887
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Simplenote [53359]
User ID: 501
Date/Time: 2019-09-26 12:32:27.720 -0700
OS Version: Mac OS X 10.14.6 (18G95)
Report Version: 12
Bridge OS Version: 3.6 (16P6571)
Anonymous UUID: 8D13A523-C98A-BB7A-80BF-B678675EE911
Sleep/Wake UUID: D5888492-FB01-4ADB-ABC8-1B9AB1EA227F
Time Awake Since Boot: 270000 seconds
Time Since Wake: 170000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0000000000000001, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Illegal instruction: 4
Termination Reason: Namespace SIGNAL, Code 0x4
Terminating Process: exc handler [53359]
Application Specific Information:
Crashing on exception: Invalid parameter not satisfying: aString != nil
Application Specific Backtrace 1:
0 CoreFoundation 0x00007fff4cbfe2fd __exceptionPreprocess + 256
1 libobjc.A.dylib 0x00007fff772cea17 objc_exception_throw + 48
2 CoreFoundation 0x00007fff4cc19016 +[NSException raise:format:arguments:] + 98
3 Foundation 0x00007fff4eeb8791 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 194
4 AppKit 0x00007fff4a1ce71f -[NSCell _objectValue:forString:errorDescription:] + 312
5 AppKit 0x00007fff4a1ce539 -[NSCell setStringValue:] + 40
6 AppKit 0x00007fff4a225e44 -[NSControl setStringValue:] + 135
7 Simplenote 0x000000010c699fa9 Simplenote + 217001
8 AppKit 0x00007fff4a2fb514 -[NSTableView(NSTableViewViewBased) _delegate_viewForTableColumn:row:] + 88
9 AppKit 0x00007fff4a2fb0ca -[NSTableView(NSTableViewViewBased) makeViewForTableColumn:row:] + 91
10 AppKit 0x00007fff4a2fac20 -[NSTableRowData _addViewToRowView:atColumn:row:] + 342
11 AppKit 0x00007fff4a2fa907 -[NSTableRowData _addViewsToRowView:atRow:] + 197
12 AppKit 0x00007fff4a2f85f6 -[NSTableRowData _initializeRowView:atRow:] + 397
13 AppKit 0x00007fff4a2f78d7 -[NSTableRowData _preparedRowViewForRow:storageHandler:] + 154
14 AppKit 0x00007fff4a2f7736 -[NSTableRowData _addRowViewForVisibleRow:withPriorView:] + 295
15 AppKit 0x00007fff4a2f7569 -[NSTableRowData _addRowViewForVisibleRow:withPriorRowIndex:inDictionary:withRowAnimation:] + 401
16 AppKit 0x00007fff4a2e7dd8 -[NSTableRowData _updateVisibleRowEntries] + 1604
17 AppKit 0x00007fff4a2e76ee -[NSTableRowData updateVisibleRowViews] + 291
18 AppKit 0x00007fff4a23927d -[NSTableView layout] + 206
19 AppKit 0x00007fff4a2327a7 _NSViewLayout + 587
20 AppKit 0x00007fff4a232124 -[NSView _layoutSubtreeWithOldSize:] + 452
21 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
22 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
23 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
24 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
25 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
26 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
27 AppKit 0x00007fff4a22fbc4 -[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:] + 1358
28 AppKit 0x00007fff4a22f348 -[NSWindow(NSConstraintBasedLayout) _layoutViewTree] + 148
29 AppKit 0x00007fff4a240ea4 -[NSWindow(NSConstraintBasedLayout) layoutIfNeeded] + 263
30 AppKit 0x00007fff4a245398 -[NSWindow displayIfNeeded] + 177
31 AppKit 0x00007fff4a245240 __NSWindowGetDisplayCycleObserverForDisplay_block_invoke + 684
32 AppKit 0x00007fff4a240334 NSDisplayCycleObserverInvoke + 162
33 AppKit 0x00007fff4a23feb4 NSDisplayCycleFlush + 1030
34 QuartzCore 0x00007fff575b154d _ZN2CA11Transaction19run_commit_handlersE18CATransactionPhase + 49
35 QuartzCore 0x00007fff575b0d26 _ZN2CA11Transaction6commitEv + 212
36 AppKit 0x00007fff4a23f84d __65+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayRefresh]_block_invoke + 274
37 CoreFoundation 0x00007fff4cba4f28 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
38 CoreFoundation 0x00007fff4cba4e5d __CFRunLoopDoObservers + 451
39 CoreFoundation 0x00007fff4cb47580 __CFRunLoopRun + 1136
40 CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
41 HIToolbox 0x00007fff4bda61ab RunCurrentEventLoopInMode + 292
42 HIToolbox 0x00007fff4bda5ee5 ReceiveNextEventCommon + 603
43 HIToolbox 0x00007fff4bda5c76 _BlockUntilNextEventMatchingListInModeWithFilter + 64
44 AppKit 0x00007fff4a13e79d _DPSNextEvent + 1135
45 AppKit 0x00007fff4a13d48b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
46 AppKit 0x00007fff4a1375a8 -[NSApplication run] + 699
47 AppKit 0x00007fff4a126ae8 NSApplicationMain + 777
48 libdyld.dylib 0x00007fff78a9c3d5 start + 1
49 ??? 0x0000000000000001 0x0 + 1
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 com.apple.AppKit 0x00007fff4a542867 -[NSApplication _crashOnException:] + 109
1 com.apple.AppKit 0x00007fff4a23fa84 __65+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayRefresh]_block_invoke + 841
2 com.apple.CoreFoundation 0x00007fff4cba4f28 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
3 com.apple.CoreFoundation 0x00007fff4cba4e5d __CFRunLoopDoObservers + 451
4 com.apple.CoreFoundation 0x00007fff4cb47580 __CFRunLoopRun + 1136
5 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
6 com.apple.HIToolbox 0x00007fff4bda61ab RunCurrentEventLoopInMode + 292
7 com.apple.HIToolbox 0x00007fff4bda5ee5 ReceiveNextEventCommon + 603
8 com.apple.HIToolbox 0x00007fff4bda5c76 _BlockUntilNextEventMatchingListInModeWithFilter + 64
9 com.apple.AppKit 0x00007fff4a13e79d _DPSNextEvent + 1135
10 com.apple.AppKit 0x00007fff4a13d48b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
11 com.apple.AppKit 0x00007fff4a1375a8 -[NSApplication run] + 699
12 com.apple.AppKit 0x00007fff4a126ae8 NSApplicationMain + 777
13 libdyld.dylib 0x00007fff78a9c3d5 start + 1
Thread 1:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 2:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 3:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 4:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 5:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 6:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 7:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 8:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 9:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 10:: Dispatch queue: com.simperium.processor.Tag
0 libsystem_kernel.dylib 0x00007fff78bd39de __ulock_wait + 10
1 libdispatch.dylib 0x00007fff78a4fe19 _dispatch_ulock_wait + 47
2 libdispatch.dylib 0x00007fff78a4fef8 _dispatch_thread_event_wait_slow + 33
3 libdispatch.dylib 0x00007fff78a5b37f __DISPATCH_WAIT_FOR_QUEUE__ + 286
4 libdispatch.dylib 0x00007fff78a5afce _dispatch_sync_f_slow + 171
5 com.apple.CoreData 0x00007fff4c6f6a77 -[NSManagedObjectContext performBlockAndWait:] + 311
6 org.cocoapods.Simperium-OSX 0x000000010c8f7366 -[SPCoreDataStorage childrenContextDidSave:] + 322
7 com.apple.CoreFoundation 0x00007fff4cbaab96 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
8 com.apple.CoreFoundation 0x00007fff4cbaab10 ___CFXRegistrationPost_block_invoke + 63
9 com.apple.CoreFoundation 0x00007fff4cbaaa7a _CFXRegistrationPost + 404
10 com.apple.CoreFoundation 0x00007fff4cbb2f28 ___CFXNotificationPost_block_invoke + 87
11 com.apple.CoreFoundation 0x00007fff4cb1b8b4 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1642
12 com.apple.CoreFoundation 0x00007fff4cb1ac67 _CFXNotificationPost + 732
13 com.apple.Foundation 0x00007fff4eda0aab -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
14 com.apple.CoreData 0x00007fff4c7302d9 -[NSManagedObjectContext(_NSInternalNotificationHandling) _postContextDidSaveNotificationWithUserInfo:] + 1545
15 com.apple.CoreData 0x00007fff4c6e8b96 -[NSManagedObjectContext(_NSInternalAdditions) _didSaveChanges] + 2294
16 com.apple.CoreData 0x00007fff4c6de00d -[NSManagedObjectContext save:] + 4397
17 org.cocoapods.Simperium-OSX 0x000000010c8f6021 -[SPCoreDataStorage save] + 183
18 org.cocoapods.Simperium-OSX 0x000000010c8ec6ef __76-[SPChangeProcessor processRemoteDeleteWithKey:bucket:objectWasFound:error:]_block_invoke + 132
19 org.cocoapods.Simperium-OSX 0x000000010c8f7daa -[SPCoreDataStorage performCriticalBlockAndWait:] + 105
20 org.cocoapods.Simperium-OSX 0x000000010c8ec557 -[SPChangeProcessor processRemoteDeleteWithKey:bucket:objectWasFound:error:] + 376
21 org.cocoapods.Simperium-OSX 0x000000010c8ee660 -[SPChangeProcessor processRemoteChange:bucket:error:] + 1407
22 org.cocoapods.Simperium-OSX 0x000000010c8eeddc -[SPChangeProcessor processRemoteChanges:bucket:successHandler:errorHandler:] + 679
23 org.cocoapods.Simperium-OSX 0x000000010c91b26d -[SPWebSocketChannel processBatchChanges:bucket:] + 655
24 org.cocoapods.Simperium-OSX 0x000000010c91afc8 __49-[SPWebSocketChannel handleRemoteChanges:bucket:]_block_invoke + 351
25 libdispatch.dylib 0x00007fff78a4e5f8 _dispatch_call_block_and_release + 12
26 libdispatch.dylib 0x00007fff78a4f63d _dispatch_client_callout + 8
27 libdispatch.dylib 0x00007fff78a558e0 _dispatch_lane_serial_drain + 602
28 libdispatch.dylib 0x00007fff78a56396 _dispatch_lane_invoke + 385
29 libdispatch.dylib 0x00007fff78a5e6ed _dispatch_workloop_worker_thread + 598
30 libsystem_pthread.dylib 0x00007fff78c8f611 _pthread_wqthread + 421
31 libsystem_pthread.dylib 0x00007fff78c8f3fd start_wqthread + 13
Thread 11:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 12:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 13:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 14:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 15:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 16:: JavaScriptCore bmalloc scavenger
0 libsystem_kernel.dylib 0x00007fff78bd486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff78c9356e _pthread_cond_wait + 722
2 libc++.1.dylib 0x00007fff75cceb31 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 93
3 com.apple.JavaScriptCore 0x00007fff5002c235 std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 117
4 com.apple.JavaScriptCore 0x00007fff5002c0ff std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lock<bmalloc::Mutex>, std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >(std::__1::unique_lock<bmalloc::Mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 95
5 com.apple.JavaScriptCore 0x00007fff5002adc6 bmalloc::Scavenger::threadRunLoop() + 262
6 com.apple.JavaScriptCore 0x00007fff5002a579 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 9
7 com.apple.JavaScriptCore 0x00007fff5002bee7 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (*)(bmalloc::Scavenger*), bmalloc::Scavenger*> >(void*) + 39
8 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 17:: com.apple.coreanimation.render-server
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.QuartzCore 0x00007fff57611b5a CA::Render::Server::server_thread(void*) + 865
3 com.apple.QuartzCore 0x00007fff576117e6 thread_fun(void*) + 25
4 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 18:
0 libsystem_kernel.dylib 0x00007fff78bd4f32 __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff78b60914 nanosleep + 199
2 libsystem_c.dylib 0x00007fff78b60776 sleep + 41
3 org.cocoapods.Sentry 0x000000010c824496 monitorCachedData + 605
4 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 19:: com.squareup.SocketRocket.NetworkThread
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff4cb481ee __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff4cb4775c __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
5 com.apple.Foundation 0x00007fff4edab32f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 org.cocoapods.Simperium-OSX 0x000000010c916a1f -[_SPRRunLoopThread main] + 259
7 com.apple.Foundation 0x00007fff4eda1112 __NSThread__start__ + 1194
8 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 20:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff4cb481ee __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff4cb4775c __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
5 com.apple.CFNetwork 0x00007fff4ba2d380 -[__CoreSchedulingSetRunnable runForever] + 210
6 com.apple.Foundation 0x00007fff4eda1112 __NSThread__start__ + 1194
7 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 21:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff78bd861a __select + 10
1 com.apple.CoreFoundation 0x00007fff4cb75b72 __CFSocketManager + 635
2 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 22:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 23:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.SkyLight 0x00007fff71cb0ee1 CGSSnarfAndDispatchDatagrams + 165
3 com.apple.SkyLight 0x00007fff71f05f2e SLSGetNextEventRecordInternal + 81
4 com.apple.SkyLight 0x00007fff71dbb266 SLEventCreateNextEvent + 136
5 com.apple.HIToolbox 0x00007fff4bdb0162 PullEventsFromWindowServerOnConnection(unsigned int, unsigned char, __CFMachPortBoost*) + 45
6 com.apple.HIToolbox 0x00007fff4bdb00f9 MessageHandler(__CFMachPort*, void*, long, void*) + 51
7 com.apple.CoreFoundation 0x00007fff4cb5fc99 __CFMachPortPerform + 246
8 com.apple.CoreFoundation 0x00007fff4cb5fb97 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
9 com.apple.CoreFoundation 0x00007fff4cb5faf5 __CFRunLoopDoSource1 + 527
10 com.apple.CoreFoundation 0x00007fff4cb47aec __CFRunLoopRun + 2524
11 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
12 com.apple.AppKit 0x00007fff4a1464c2 _NSEventThread + 175
13 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
14 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
15 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x00007fad2610f400 rbx: 0x0000600003fa68e0 rcx: 0x0000000000000000 rdx: 0x0000000000001466
rdi: 0x0000000000000000 rsi: 0x00007ffee3598ea0 rbp: 0x00007ffee3599310 rsp: 0x00007ffee3599300
r8: 0x0000000000000066 r9: 0x0000000000001400 r10: 0x0000000000000066 r11: 0x00007fad26110866
r12: 0x0000600000014f00 r13: 0x00007fad26007048 r14: 0x00007fff772c0680 r15: 0x00007fff4cbb2583
rip: 0x00007fff4a542867 rfl: 0x0000000000010206 cr2: 0x000000010c762d3c
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 6
Binary Images:
0x10c665000 - 0x10c71efff +com.automattic.SimplenoteMac (1.7.0 - 1703) <88D89302-CD4E-3D2E-A8B3-C0CF045081FC> /Applications/Simplenote.app/Contents/MacOS/Simplenote
0x10c778000 - 0x10c788fff +org.cocoapods.AutomatticTracks (0.4.0 - 1) <20093455-F85A-3091-98C1-DA34249294DE> /Applications/Simplenote.app/Contents/Frameworks/AutomatticTracks.framework/Versions/A/AutomatticTracks
0x10c7b0000 - 0x10c7c9ff7 +org.cocoapods.CocoaLumberjack (3.5.3 - 1) <3D105F38-7F61-3260-88B4-9AF5D60EAD43> /Applications/Simplenote.app/Contents/Frameworks/CocoaLumberjack.framework/Versions/A/CocoaLumberjack
0x10c804000 - 0x10c809fff +org.cocoapods.Reachability (3.2.0 - 1) <F539A78A-F9B5-31F4-8A87-3EC2D6DFABBE> /Applications/Simplenote.app/Contents/Frameworks/Reachability.framework/Versions/A/Reachability
0x10c81a000 - 0x10c85aff3 +org.cocoapods.Sentry (4.3.4 - 1) <1E29E053-4B53-3BF4-92AE-2E6162559F79> /Applications/Simplenote.app/Contents/Frameworks/Sentry.framework/Versions/A/Sentry
0x10c8cc000 - 0x10c94cfff +org.cocoapods.Simperium-OSX (0.8.21 - 1) <4B846E55-2CB5-3328-9567-D846712DE3E8> /Applications/Simplenote.app/Contents/Frameworks/Simperium_OSX.framework/Versions/A/Simperium_OSX
0x10e87c000 - 0x10e87f047 libobjc-trampolines.dylib (756.2) <5795A048-3940-3801-90CE-33D1B1AF81F4> /usr/lib/libobjc-trampolines.dylib
0x111000000 - 0x11111bff3 com.apple.AMDRadeonX5000GLDriver (2.11.20 - 2.1.1) <FF64AE9F-2A97-3702-A33F-D3C493A1ABFF> /System/Library/Extensions/AMDRadeonX5000GLDriver.bundle/Contents/MacOS/AMDRadeonX5000GLDriver
0x11666a000 - 0x1166d470f dyld (655.1.1) <DFC3C4AF-6F97-3B34-B18D-7DCB23F2A83A> /usr/lib/dyld
0x7fff4126e000 - 0x7fff415c7fff com.apple.RawCamera.bundle (8.15.0 - 1031.4.4) <AB6E8A8F-0BFE-37EE-A135-44ABA4FCB559> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff4207d000 - 0x7fff42a22ff7 ATIRadeonX5000SCLib.dylib (2.11.20) <58BA8D06-71C8-3446-AC77-8BB724AD25F9> /System/Library/Extensions/AMDRadeonX5000GLDriver.bundle/Contents/MacOS/ATIRadeonX5000SCLib.dylib
0x7fff42a23000 - 0x7fff42b1cff7 com.apple.AMDRadeonX5000MTLDriver (2.11.20 - 2.1.1) <79B3BBF2-C522-347F-98B8-D70B1E43A1AB> /System/Library/Extensions/AMDRadeonX5000MTLDriver.bundle/Contents/MacOS/AMDRadeonX5000MTLDriver
0x7fff452dc000 - 0x7fff460b0ff7 com.apple.driver.AppleIntelKBLGraphicsGLDriver (12.10.12 - 12.1.0) <F966EA02-0252-3B4F-888B-C0FCCA888A76> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver
0x7fff460b1000 - 0x7fff463e3fff com.apple.driver.AppleIntelKBLGraphicsMTLDriver (12.10.12 - 12.1.0) <F44A2087-008C-30CB-9E33-A94DFF197E68> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
0x7fff48b46000 - 0x7fff48d22ffb com.apple.avfoundation (2.0 - 1550.4) <5854207B-6106-3DA4-80B6-36C42D042F26> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff48d23000 - 0x7fff48de8fff com.apple.audio.AVFAudio (1.0 - ???) <D454A339-2FC6-3EF6-992F-D676046612DB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff48ef0000 - 0x7fff48ef0fff com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff48ef1000 - 0x7fff48f07ff7 libCGInterfaces.dylib (506.22) <1B6C92D9-F4B8-37BA-9635-94C4A56098CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff48f08000 - 0x7fff495a1fef com.apple.vImage (8.1 - ???) <53FA3611-894E-3158-A654-FBD2F70998FE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff495a2000 - 0x7fff4981bff3 libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff4981c000 - 0x7fff4988effb libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff4988f000 - 0x7fff49c38ff3 libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff49c39000 - 0x7fff49c4efeb libLinearAlgebra.dylib (1243.200.4) <CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff49c4f000 - 0x7fff49c54ff3 libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff49c55000 - 0x7fff49cd1ff3 libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff49cd2000 - 0x7fff49ce5fe3 libSparseBLAS.dylib (1243.200.4) <E9243341-DB77-37C1-97C5-3DFA00DD70FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff49ce6000 - 0x7fff49ecdff7 libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff49ece000 - 0x7fff49f81ff7 libvMisc.dylib (671.250.4) <D5BA4812-BFFC-3CD0-B382-905CD8555DA6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff49f82000 - 0x7fff49f82fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff49f83000 - 0x7fff49fddfff com.apple.Accounts (113 - 113) <251A1CB1-F972-3F60-8662-85459EAD6318> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff49fe0000 - 0x7fff4a123fff com.apple.AddressBook.framework (11.0 - 1894) <3FFCAE6B-4CD2-3B8D-AE27-0A3693C9470F> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff4a124000 - 0x7fff4aed9ffb com.apple.AppKit (6.9 - 1671.60.107) <2F7E5984-E89A-3451-A3DF-FAAA509CF884> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff4af2b000 - 0x7fff4af2bfff com.apple.ApplicationServices (50.1 - 50.1) <84097DEB-E2FC-3901-8DD7-A670EA2274E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff4af2c000 - 0x7fff4af97fff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff4b030000 - 0x7fff4b147fff libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff4b148000 - 0x7fff4b18afff libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff4b1e4000 - 0x7fff4b216fff libTrueTypeScaler.dylib (228.6.2.3) <7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff4b27b000 - 0x7fff4b27fff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <C0D9E23C-ABA0-39DE-A4EB-5A41C5499056> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff4b31a000 - 0x7fff4b36cff7 com.apple.HIServices (1.22 - 628) <2BE461FF-80B9-30D3-A574-AED5724B1C1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff4b36d000 - 0x7fff4b37cfff com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff4b37d000 - 0x7fff4b3c6ff7 com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff4b3c7000 - 0x7fff4b400ff7 com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff4b401000 - 0x7fff4b40dfff com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <5E7B9BD4-122B-3012-A044-3259C97E7509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff4b40e000 - 0x7fff4b685ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <04F482F1-E1C1-3955-8A6C-8AA152AA06F3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff4b687000 - 0x7fff4b687fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <ABC54269-002D-310D-9654-46CF960F863E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff4b9e0000 - 0x7fff4bd81fff com.apple.CFNetwork (978.0.7 - 978.0.7) <B2133D0D-1399-3F17-80F0-313E3A241C89> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff4bd96000 - 0x7fff4bd96fff com.apple.Carbon (158 - 158) <56AD06AA-7BB4-3F0B-AEF7-9768D0BC1C98> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff4bd97000 - 0x7fff4bd9affb com.apple.CommonPanels (1.2.6 - 98) <1CD6D56D-8EC7-3528-8CBC-FC69533519B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff4bd9b000 - 0x7fff4c092fff com.apple.HIToolbox (2.1.1 - 918.7) <13F69D4C-D19F-3E09-9231-1978D783A556> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff4c093000 - 0x7fff4c096ff3 com.apple.help (1.3.8 - 66) <A08517EB-8958-36C9-AEE0-1A8FEEACBE3F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff4c097000 - 0x7fff4c09cff7 com.apple.ImageCapture (9.0 - 1534.2) <DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff4c09d000 - 0x7fff4c132ff3 com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff4c133000 - 0x7fff4c14bff7 com.apple.openscripting (1.7 - 179.1) <9B8C1ECC-5864-3E21-9149-863E884EA25C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff4c16b000 - 0x7fff4c16cff7 com.apple.print.framework.Print (14.2 - 267.4) <A7A9D2A0-D4E0-35EF-A0F7-50521F707C33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff4c16d000 - 0x7fff4c16fff7 com.apple.securityhi (9.0 - 55006) <05717F77-7A7B-37E6-AB3E-03F063E9095B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff4c170000 - 0x7fff4c176ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff4c298000 - 0x7fff4c298fff com.apple.Cocoa (6.11 - 23) <8D092DD2-0CA4-34C9-872C-8BBFAE1995A4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff4c2a6000 - 0x7fff4c3f5ff7 com.apple.ColorSync (4.13.0 - 3345.6) <31648BB6-7239-3D0E-81B1-BCF51FEF557F> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff4c3f6000 - 0x7fff4c4deff7 com.apple.contacts (1.0 - 2901) <A6734AF0-D8E6-32C7-B283-DF1E7627F0D3> /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
0x7fff4c581000 - 0x7fff4c607fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff4c66b000 - 0x7fff4c695ffb com.apple.CoreBluetooth (1.0 - 1) <A73F1709-DD18-3052-9F22-C0015278834B> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff4c696000 - 0x7fff4ca1bfef com.apple.CoreData (120 - 866.6) <132CB39B-8D58-30FA-B8AD-49BFFF34B293> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff4ca1c000 - 0x7fff4cb0cff7 com.apple.CoreDisplay (101.3 - 110.18) <0EB2A997-FCAD-3D17-B140-9829961E5327> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff4cb0d000 - 0x7fff4cf51fe7 com.apple.CoreFoundation (6.9 - 1575.19) <B2850F42-CE01-3156-B121-FD4777290C8F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff4cf53000 - 0x7fff4d5e2fff com.apple.CoreGraphics (2.0 - 1265.9) <BC95B558-EF77-3A57-A0BC-11606C778991> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff4d5e4000 - 0x7fff4d904fff com.apple.CoreImage (14.4.0 - 750.0.140) <11026E39-D2FF-3CF6-8ACE-7BA293F9853E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff4d905000 - 0x7fff4d97dfff com.apple.corelocation (2245.16.14) <0F59F59B-AC14-3116-83C5-CF7BC57D9EB1> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff4d9d7000 - 0x7fff4dc00fff com.apple.CoreML (1.0 - 1) <9EC1FED2-BA47-307B-A326-43C4D05166E7> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
0x7fff4dc01000 - 0x7fff4dd05fff com.apple.CoreMedia (1.0 - 2290.13) <A739B93D-23C2-3A34-8D61-6AC924B9634F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff4dd06000 - 0x7fff4dd61fff com.apple.CoreMediaIO (900.0 - 5050.1) <63944D63-D138-3774-BAB4-A95679469A43> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff4dd62000 - 0x7fff4dd62fff com.apple.CoreServices (946 - 946) <6EC9F377-EBD8-3358-92D1-6586F6F1E8E9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff4dd63000 - 0x7fff4dddfff7 com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff4dde0000 - 0x7fff4e0b7fff com.apple.CoreServices.CarbonCore (1178.33 - 1178.33) <CB87F0C7-2CD6-3983-8E32-B6A2EC925352> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff4e0b8000 - 0x7fff4e100ff7 com.apple.DictionaryServices (1.2 - 284.16.4) <746EB200-DC51-30AE-9CBC-608A7B4CC8DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff4e101000 - 0x7fff4e109ffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff4e10a000 - 0x7fff4e2bbff7 com.apple.LaunchServices (946 - 946) <A0C91634-9410-38E8-BC11-7A5A369E6BA5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff4e2bc000 - 0x7fff4e35aff7 com.apple.Metadata (10.7.0 - 1191.57) <BFFAED00-2560-318A-BB8F-4E7E5123EC61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff4e35b000 - 0x7fff4e3a5ff7 com.apple.CoreServices.OSServices (946 - 946) <20C4EEF8-D5AC-39A0-9B4A-78F88E3EFBCC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff4e3a6000 - 0x7fff4e40dff7 com.apple.SearchKit (1.4.0 - 1.4.0) <DA08AA6F-A6F1-36C0-87F4-E26294E51A3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff4e40e000 - 0x7fff4e42fff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff4e73a000 - 0x7fff4e89cff3 com.apple.CoreText (352.0 - 584.26.3.2) <59919B0C-CBD5-3877-8D6F-D6048F1E5F42> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff4e89d000 - 0x7fff4e8ddff3 com.apple.CoreVideo (1.8 - 281.4) <10CF8E52-07E3-382B-8091-2CEEEFFA69B4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff4e8de000 - 0x7fff4e96dfff com.apple.framework.CoreWLAN (13.0 - 1375.2) <BF4B29F7-FBC8-3299-98E8-C3F8C04B7C92> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff4eae4000 - 0x7fff4eaefffb com.apple.DirectoryService.Framework (10.14 - 207.200.4) <49B086F4-AFA2-3ABB-8D2E-CE253044C1C0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff4eaf0000 - 0x7fff4eb9efff com.apple.DiscRecording (9.0.3 - 9030.4.5) <D7A28B57-C025-3D44-BB17-82243B7B91BC> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff4ebc4000 - 0x7fff4ebc9ffb com.apple.DiskArbitration (2.7 - 2.7) <F481F2C0-884E-3265-8111-ABBEC93F0920> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff4ed8f000 - 0x7fff4f13cffb com.apple.Foundation (6.9 - 1575.19) <A85BF812-B784-36B9-89BB-E29772B0708C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff4f1ab000 - 0x7fff4f1daffb com.apple.GSS (4.0 - 2.0) <E2B90D08-3857-3155-9FCC-07D778988EC9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff4f2da000 - 0x7fff4f3e4fff com.apple.Bluetooth (6.0.14 - 6.0.14d3) <C2D1A774-2390-363D-8215-BF51FFCB6CCA> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff4f447000 - 0x7fff4f4d6fff com.apple.framework.IOKit (2.0.2 - 1483.260.4) <8A90F547-86EF-3DFB-92FE-0E2C0376DD84> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff4f4d8000 - 0x7fff4f4e7ffb com.apple.IOSurface (255.6.1 - 255.6.1) <85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff4f4e8000 - 0x7fff4f53aff3 com.apple.ImageCaptureCore (1.0 - 1534.2) <27942C51-8108-3ED9-B37E-7C365A31EC2D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff4f53b000 - 0x7fff4f6c6fef com.apple.ImageIO.framework (3.3.0 - 1850.2) <75E46A31-D87D-35CE-86A4-96A50971FDB2> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff4f6c7000 - 0x7fff4f6cbffb libGIF.dylib (1850.2) <4774EBDF-583B-3DDD-A0E1-9F427CB6A074> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff4f6cc000 - 0x7fff4f7a8fef libJP2.dylib (1850.2) <697BB77F-A682-339F-8659-35432962432D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff4f7a9000 - 0x7fff4f7cefeb libJPEG.dylib (1850.2) <171A8AC4-AADA-376F-9F2C-B9C978DB1007> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff4fa91000 - 0x7fff4fab7feb libPng.dylib (1850.2) <FBCEE909-F573-3AD6-A45F-AF32612BF8A2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff4fab8000 - 0x7fff4fabaffb libRadiance.dylib (1850.2) <56907025-D5CE-3A9E-ACCB-A376C2599853> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff4fabb000 - 0x7fff4fb08fe7 libTIFF.dylib (1850.2) <F59557C9-C761-3E6F-85D1-0FBFFD53ED5C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff4fe03000 - 0x7fff50c63fff com.apple.JavaScriptCore (14607 - 14607.3.9) <9B7D9E8B-619D-34A1-8FA9-E23C0EA3CD02> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff50c7b000 - 0x7fff50c94fff com.apple.Kerberos (3.0 - 1) <DB1E0679-37E1-3B93-9789-32F63D660C3B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff50c95000 - 0x7fff50ccaff3 com.apple.LDAPFramework (2.4.28 - 194.5) <95DAD9EE-9B6F-3FF5-A5EF-F6672AD3CC55> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff50f4e000 - 0x7fff50f58fff com.apple.MediaAccessibility (1.0 - 114.4) <76C449C5-DB45-3D7F-BFAD-3DACEF15DA21> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff51008000 - 0x7fff516aefff com.apple.MediaToolbox (1.0 - 2290.13) <71BB5D76-34CA-3A30-AECF-24BE29FCC275> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff516b0000 - 0x7fff51758ff7 com.apple.Metal (162.2 - 162.2) <FFF7DFF3-7C4E-32C6-A0B5-C356079D3B7C> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff5175a000 - 0x7fff51773ff3 com.apple.MetalKit (1.0 - 113) <51CDE966-54A7-3556-971B-1173E9986BB8> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
0x7fff51774000 - 0x7fff51793ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <44CE8362-E972-3697-AD6F-15BC863BAEB8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff51794000 - 0x7fff51810fe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <EE8440DA-66DF-3923-ABBC-E0543211C069> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff51811000 - 0x7fff51838fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <E64450DF-2B96-331E-B7F4-666E00571C70> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff51839000 - 0x7fff51964ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <F2CF26B6-73F1-3644-8FE9-CDB9B2C4501F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff51965000 - 0x7fff5197ffff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B33A35C3-0393-366B-ACFB-F4BB6A5F7B4A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff51980000 - 0x7fff51981ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff52778000 - 0x7fff52784ff7 com.apple.NetFS (6.0 - 4.0) <E917806F-0607-3292-B2D6-A15404D61B99> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff52785000 - 0x7fff528c2ffb com.apple.Network (1.0 - 1) <F46AFEE5-A56E-3BD9-AC07-C5D6334B3572> /System/Library/Frameworks/Network.framework/Versions/A/Network
0x7fff55219000 - 0x7fff55221fe3 libcldcpuengine.dylib (2.11) <AAE49359-EB53-3FD4-ADBF-C60498BD0B34> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff55222000 - 0x7fff55279ff7 com.apple.opencl (2.15.3 - 2.15.3) <056BAD8A-23BC-3F74-9E2C-3AC81E7DEA5A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff5527a000 - 0x7fff55295ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <F03D84EB-49B2-3A00-9127-B9A269824026> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff55296000 - 0x7fff552a1ffb com.apple.OpenDirectory (10.14 - 207.200.4) <A8020CEE-5B78-3581-A735-EA2833683F31> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff55bf1000 - 0x7fff55bf3fff libCVMSPluginSupport.dylib (17.7.3) <8E051EA7-55B6-3DF1-9821-72C391DE953B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff55bf4000 - 0x7fff55bf9ff3 libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff55bfa000 - 0x7fff55bfefff libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff55bff000 - 0x7fff55c07ff7 libGFXShared.dylib (17.7.3) <8C50BF27-B525-3B23-B86C-F444ADF97851> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff55c08000 - 0x7fff55c13fff libGL.dylib (17.7.3) <2AC457EA-1BD3-3C8E-AFAB-7EA6234EB749> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff55c14000 - 0x7fff55c4efef libGLImage.dylib (17.7.3) <AA027AFA-C115-3861-89B2-0AE946838952> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff55c4f000 - 0x7fff55dc1ff7 libGLProgrammability.dylib (17.7.3) <5BB795C6-97AB-37AC-954C-145E3216AC3B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff55dc2000 - 0x7fff55e00fff libGLU.dylib (17.7.3) <CB3B0579-D9A2-3CA5-8942-0C8344FAD054> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff5679d000 - 0x7fff567acffb com.apple.opengl (17.7.3 - 17.7.3) <94B5CF34-5BD6-3652-9A8C-E9C56E0A9FB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff567ad000 - 0x7fff56944ff7 GLEngine (17.7.3) <B2CB8E1E-4AD3-3CE4-ACB0-89A6749603D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fff56945000 - 0x7fff5696eff3 GLRendererFloat (17.7.3) <A656F9C6-AB06-33C6-842A-600CB8B060C6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff56b29000 - 0x7fff56c72ff7 com.apple.QTKit (7.7.3 - 3040) <D42BB4BE-B347-3113-ACA4-3257A5E45F52> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff56c73000 - 0x7fff56ec7fff com.apple.imageKit (3.0 - 1067) <4F398AF4-828E-3FC2-9E3D-4EE3F36F7619> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff56ec8000 - 0x7fff56fb4fff com.apple.PDFKit (1.0 - 745.3) <EF7A5FC1-017A-329E-BDAE-3D136CE28E64> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff56fb5000 - 0x7fff57484ff7 com.apple.QuartzComposer (5.1 - 370) <9C59494E-8D09-359E-B457-AA893520984C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff57485000 - 0x7fff574abff7 com.apple.quartzfilters (1.10.0 - 83.1) <1CABB0FA-A6DB-3DD5-A598-F298F081E04E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff574ac000 - 0x7fff575adff7 com.apple.QuickLookUIFramework (5.0 - 775.6) <5660DDBA-2BE4-310A-9E81-370106EDB21D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff575ae000 - 0x7fff575aefff com.apple.quartzframework (1.5 - 23) <31783652-5E36-3773-8847-9FECFE2487F0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff575af000 - 0x7fff57806ff7 com.apple.QuartzCore (1.11 - 701.14) <33E846BE-1794-3186-9BF2-6ADF62C782A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff57807000 - 0x7fff5785efff com.apple.QuickLookFramework (5.0 - 775.6) <CB74C63F-E223-3783-9021-8E28091BCDA6> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff57a25000 - 0x7fff57a3cff7 com.apple.SafariServices.framework (14607 - 14607.3.9) <96DFC381-5242-3D06-B115-9367C79801C9> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff5803b000 - 0x7fff5833bfff com.apple.security (7.0 - 58286.270.3.0.1) <DF7677A7-9765-3B6A-9D1C-3589145E4B65> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff5833c000 - 0x7fff583c8fff com.apple.securityfoundation (6.0 - 55185.260.1) <1EE899E6-222A-3526-B505-B0D0B6FA042A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff583c9000 - 0x7fff583f9ffb com.apple.securityinterface (10.0 - 55109.200.8) <02B83641-2D21-3DB8-AAB8-6F8AAD0F6264> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff583fa000 - 0x7fff583fefff com.apple.xpc.ServiceManagement (1.0 - 1) <FCF7BABA-DDDD-3770-8DAC-7069850203C2> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff583ff000 - 0x7fff5844fff3 com.apple.sociald.Social (???) <72EA4265-4024-3143-80D2-A0074698A376> /System/Library/Frameworks/Social.framework/Versions/A/Social
0x7fff58797000 - 0x7fff58804fff com.apple.SystemConfiguration (1.17 - 1.17) <30C8327F-3EFF-3520-9C50-016F8B6B954F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff58a63000 - 0x7fff58dc4fff com.apple.VideoToolbox (1.0 - 2290.13) <7FCB2FC0-EFB8-37C2-B0D3-60AE9FDFE230> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff59099000 - 0x7fff596a5ff7 libwebrtc.dylib (7607.3.9) <4D2A43AD-B95E-3CF7-8822-553411D3EF15> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib
0x7fff596a6000 - 0x7fff5b02cff7 com.apple.WebCore (14607 - 14607.3.9) <F50B7FC8-60F1-3FC4-83E1-0065463B27E6> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff5b02d000 - 0x7fff5b21effb com.apple.WebKitLegacy (14607 - 14607.3.9) <59707811-F21F-388C-A801-C51D32E99392> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
0x7fff5b21f000 - 0x7fff5b76fff7 com.apple.WebKit (14607 - 14607.3.9) <AE6029DD-0CED-3FEF-92D5-DB8D4F9757F9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff5ba40000 - 0x7fff5bae5feb com.apple.APFS (1.0 - 1) <2D22485D-552D-3CB6-9FE1-38547597918F> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff5c072000 - 0x7fff5c07cfff com.apple.accessibility.AXCoreUtilities (1.0 - 1) <C97597AF-865F-3A33-A6EB-807EE9881521> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
0x7fff5c24a000 - 0x7fff5c2e5ffb com.apple.accounts.AccountsDaemon (113 - 113) <0B9AA187-F2DE-320C-BBB0-E038E5C1991D> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsDaemon
0x7fff5c2e6000 - 0x7fff5c319ffb com.apple.framework.accountsui (1.0 - 63.6) <C5041BDA-0464-3CEC-B23E-0EA551D57532> /System/Library/PrivateFrameworks/AccountsUI.framework/Versions/A/AccountsUI
0x7fff5c394000 - 0x7fff5c4deff7 com.apple.AddressBook.core (1.0 - 1) <BAA3419D-2C62-3277-980D-11A9C51B1084> /System/Library/PrivateFrameworks/AddressBookCore.framework/Versions/A/AddressBookCore
0x7fff5c4fa000 - 0x7fff5c4fbff7 com.apple.AggregateDictionary (1.0 - 1) <A6AF8AC4-1F25-37C4-9157-A02E9C200926> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff5c8b9000 - 0x7fff5c9fcfff com.apple.AnnotationKit (1.0 - 232.3.30) <A35C5450-FBA1-3E76-9F27-4ED0179AE6A6> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
0x7fff5c9fd000 - 0x7fff5ca18ff7 com.apple.AppContainer (4.0 - 360.270.2) <644409D7-6C7A-336F-BF4F-80E82FB48BE9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff5ca19000 - 0x7fff5ca26fff com.apple.AppSandbox (4.0 - 360.270.2) <175BF1C6-8CB1-3AAA-A752-781E09DE3D8E> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff5cafc000 - 0x7fff5cb28ff7 com.apple.framework.Apple80211 (13.0 - 1380.2) <16F093EF-370B-3B90-8DB4-E94624431D15> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff5cc50000 - 0x7fff5cc5ffc7 com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff5cd5b000 - 0x7fff5cd66fff com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff5cda7000 - 0x7fff5cdf0ff3 com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff5cdf1000 - 0x7fff5ce01fff com.apple.AppleLDAP (10.14 - 46.200.2) <DA9C0E8E-86D6-3CE8-8A12-B9C2254920A8> /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP
0x7fff5d021000 - 0x7fff5d03efff com.apple.aps.framework (4.0 - 4.0) <83FB4BD1-0C45-3CEF-8640-567DA5A300A7> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff5d03f000 - 0x7fff5d043ff7 com.apple.AppleSRP (5.0 - 1) <EDD16B2E-4F35-3E13-B389-CF77B3CAD4EB> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff5d044000 - 0x7fff5d066fff com.apple.applesauce (1.0 - ???) <F49107C7-3C51-3024-8EF1-C57643BE4F3B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff5d126000 - 0x7fff5d129ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <A48BC6D4-224C-3A25-846B-4D06C53568AE> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff5d12a000 - 0x7fff5d17aff7 com.apple.AppleVAFramework (5.1.4 - 5.1.4) <3399D678-8741-3B70-B8D0-7C63C8ACF7DF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff5d1c5000 - 0x7fff5d1d9ffb com.apple.AssertionServices (1.0 - 1) <456E507A-4561-3628-9FBE-173ACE7429D8> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff5d5a8000 - 0x7fff5d694ff7 com.apple.AuthKit (1.0 - 1) <2765ABE9-54F2-3E45-8A93-1261E251B90D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff5d6fe000 - 0x7fff5d702ffb com.apple.AuthenticationServices (12.0 - 1.0) <F33C914E-F815-39BB-89BB-D1A5D3B3EF84> /System/Library/PrivateFrameworks/AuthenticationServices.framework/Versions/A/AuthenticationServices
0x7fff5d856000 - 0x7fff5d85efff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff5d85f000 - 0x7fff5d8f4fff com.apple.backup.framework (1.10.5 - ???) <4EEC51E2-AE4C-340A-B686-901810152C12> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff5d8f5000 - 0x7fff5d962ff3 com.apple.BaseBoard (360.28 - 360.28) <68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff5d96b000 - 0x7fff5d971ffb com.apple.BezelServicesFW (317.5 - 317.5) <25807B30-117A-33D9-93E6-48E8AE90BD63> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff5d9e8000 - 0x7fff5da24ff3 com.apple.bom (14.0 - 197.6) <A99A6F9A-AFDE-3BC6-95CE-AA90B268B805> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff5e0d3000 - 0x7fff5e0ffffb com.apple.CalendarAgentLink (8.0 - 250) <4702E078-86DF-373F-BF2F-AB6230E19010> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
0x7fff5e7c0000 - 0x7fff5e80fff7 com.apple.ChunkingLibrary (201 - 201) <DFE16C42-24E6-386F-AC50-0058F61980A2> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff5f5c0000 - 0x7fff5f5ccff7 com.apple.CommerceCore (1.0 - 708.5) <B5939A65-745F-3AB7-A212-EF140E148F42> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff5f5cd000 - 0x7fff5f5d6ffb com.apple.CommonAuth (4.0 - 2.0) <93335CB6-ABEB-3EC7-A040-8A667F40D5F3> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff5f5ea000 - 0x7fff5f5ffffb com.apple.commonutilities (8.0 - 900) <080E168B-21B7-3CCA-AB84-BB9911D18DAC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff5f8a7000 - 0x7fff5f909ff3 com.apple.AddressBook.ContactsFoundation (8.0 - ???) <F5136318-4F71-37D7-A909-5005C698A354> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff5f90a000 - 0x7fff5f92dff3 com.apple.contacts.ContactsPersistence (1.0 - ???) <4082E8CF-5C89-3DE1-97BF-6434F3E03C16> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
0x7fff5fa6f000 - 0x7fff5fe52fef com.apple.CoreAUC (274.0.0 - 274.0.0) <C71F1581-E73B-3DA0-958B-E912C3FB3F23> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff5fe53000 - 0x7fff5fe81ff7 com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <A04A99B8-DAC5-36FC-BAC7-7431600C1F89> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff5ff17000 - 0x7fff5ff75ffb com.apple.corebrightness (1.0 - 1) <61040CCD-0AFD-389F-87E8-0FD9D8C3BAE1> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff600ac000 - 0x7fff600b5fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <89BDACE6-32AA-3933-BD8C-A44650488873> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff602af000 - 0x7fff602c0ff7 com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff60469000 - 0x7fff60558fff com.apple.CoreHandwriting (161 - 1.2) <7CBB18C3-FE95-3352-9D67-B441E89AD10F> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
0x7fff6072a000 - 0x7fff60740ffb com.apple.CoreMediaAuthoring (2.2 - 959) <86089759-E920-37DB-A3BB-F5621C351E4A> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff6086a000 - 0x7fff608d0ff7 com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff60a37000 - 0x7fff60a3bff7 com.apple.CoreOptimization (1.0 - 1) <1C724E01-E9FA-3AEE-BE4B-C4DB8EC0C812> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
0x7fff60a3c000 - 0x7fff60ac8fff com.apple.CorePDF (4.0 - 414) <E4ECDD15-34C0-30C2-AFA9-27C8EDAC3DB0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff60b7d000 - 0x7fff60b85ff7 com.apple.CorePhoneNumbers (1.0 - 1) <11F97C7E-C183-305F-8E6C-9B374F50E26B> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff60b86000 - 0x7fff60bdcff7 com.apple.CorePrediction (1.0 - 1) <A66C8A6F-C3B2-3547-985D-C62C62F9FA48> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
0x7fff60d01000 - 0x7fff60d32ff3 com.apple.CoreServicesInternal (358 - 358) <DD6EF60D-048F-3186-83DA-EB191EDF48AE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff610f9000 - 0x7fff6117dfff com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff6120d000 - 0x7fff61338ff7 com.apple.coreui (2.1 - 499.10) <A80F4B09-F940-346F-A9DF-4EFADD9220A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff61339000 - 0x7fff614d9fff com.apple.CoreUtils (5.9 - 590.16) <66CC50F7-766D-33E2-A388-4DE22840ADFB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff6152d000 - 0x7fff61590ff7 com.apple.framework.CoreWiFi (13.0 - 1375.2) <CA4B835A-27AC-3FAB-9F44-E48548EA2442> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff61591000 - 0x7fff615a2ff7 com.apple.CrashReporterSupport (10.13 - 938.26) <E93D84A6-891D-38EE-BB4F-E9CD681189B7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff61632000 - 0x7fff61641fff com.apple.framework.DFRFoundation (1.0 - 211.1) <E3F02F2A-2059-39CC-85DA-969676EB88EB> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff61642000 - 0x7fff61646ff7 com.apple.DSExternalDisplay (3.1 - 380) <787B9748-B120-3453-B8FE-61D9E363A9E0> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff61688000 - 0x7fff616c6ff7 com.apple.datadetectors (5.0 - 390.2) <B6DEDE81-832C-3078-ACAF-767F01E9615D> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
0x7fff616c7000 - 0x7fff6173cffb com.apple.datadetectorscore (7.0 - 590.27) <06FB1A07-7AE6-3ADD-8E7E-41955FAB38E8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff61788000 - 0x7fff617c5ff7 com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff617c6000 - 0x7fff61901ff7 com.apple.desktopservices (1.13.5 - ???) <265C0E94-B8BF-3F58-8D68-EA001EEA0B15> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff619ab000 - 0x7fff619acff7 com.apple.diagnosticlogcollection (10.0 - 1000) <3C6F41B0-DD03-373C-B423-63C1FA6174EC> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
0x7fff61b0d000 - 0x7fff61bd3fff com.apple.DiskManagement (12.1 - 1555.270.2) <EB207683-FBD6-3B74-A606-3FE22234372C> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff61bd4000 - 0x7fff61bd8ffb com.apple.DisplayServicesFW (3.1 - 380) <62041594-2A4C-3362-87EE-F8E8C8E5BEEC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff61c81000 - 0x7fff61c84ff3 com.apple.EFILogin (2.0 - 2) <210948F9-FD39-392D-8349-34985B3C751C> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff623a4000 - 0x7fff623b9fff com.apple.Engram (1.0 - 1) <F4A93313-F507-3F9A-AB1C-C18F2779B7CF> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
0x7fff623ba000 - 0x7fff6269cff7 com.apple.vision.EspressoFramework (1.0 - 120) <8B56D943-F87B-3A01-B7A4-19DE3312B61C> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff62848000 - 0x7fff62c63fff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff66517000 - 0x7fff66518fff libmetal_timestamp.dylib (902.3.2) <05389463-AF2E-33E2-A14F-1416E4A30835> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
0x7fff67bac000 - 0x7fff67bb7ff7 libGPUSupportMercury.dylib (17.7.3) <36E3C5B1-15EB-3713-BC3A-31A3B074DD24> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff67bb8000 - 0x7fff67bbdfff com.apple.GPUWrangler (3.50.12 - 3.50.12) <6C820ED9-F306-3978-B5B8-432AD97BBDAF> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff67f4b000 - 0x7fff67f6fff3 com.apple.GenerationalStorage (2.0 - 285.101) <84C2E52C-F2C6-3FF8-87E5-3C88A40D3881> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff67f88000 - 0x7fff68987fff com.apple.GeoServices (1.0 - 1364.26.4.19.6) <041715B5-D82F-31F6-9133-955A7A66025F> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff689c9000 - 0x7fff689d8fff com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff689d9000 - 0x7fff689e6ff7 com.apple.GraphicsServices (1.0 - 1.0) <56646B62-B331-31DC-80EB-7996DCAB6944> /System/Library/PrivateFrameworks/GraphicsServices.framework/Versions/A/GraphicsServices
0x7fff68b3e000 - 0x7fff68bb2ffb com.apple.Heimdal (4.0 - 2.0) <D97FCF19-EAD6-3E2F-BE88-F817E45CAE96> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff69600000 - 0x7fff696f9ff7 com.apple.ids (10.0 - 1000) <E6550D7D-0C40-3E52-8A40-0A40F07E5103> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff696fa000 - 0x7fff697fdfff com.apple.idsfoundation (10.0 - 1000) <CF0CD939-BBA4-36AC-B706-5CA40E8766D9> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff69d7c000 - 0x7fff69dddfff com.apple.imfoundation (10.0 - 1000) <098F3A98-2184-32EF-8EC9-87B892CD85CA> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff69eae000 - 0x7fff69eb7fff com.apple.IOAccelMemoryInfo (1.0 - 1) <EA04DC2A-F0C8-3471-9E59-BE8697050ADF> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
0x7fff69eb8000 - 0x7fff69ebfffb com.apple.IOAccelerator (404.14 - 404.14) <11A50171-C8AE-3BBC-9FB9-2A3313FFBD31> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff69ec3000 - 0x7fff69edbfff com.apple.IOPresentment (1.0 - 42.6) <6DFD9A6E-BF95-3A27-89E7-ACAA9E30D90A> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff6a283000 - 0x7fff6a2b0ff7 com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff6a3da000 - 0x7fff6a3deffb com.apple.InternationalSupport (1.0 - 10.15.6) <6226A905-D055-321D-B665-5B0CC4798A74> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff6a448000 - 0x7fff6a455ffb com.apple.IntlPreferences (2.0 - 227.18) <1B5AFE5D-4D6F-3471-8F4D-256F5068093F> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff6a543000 - 0x7fff6a555ff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <30CFE05C-4108-3879-AFAA-5BB02CBE190B> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff6a570000 - 0x7fff6a64bff7 com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff6a64c000 - 0x7fff6a688ff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff6a68f000 - 0x7fff6a694fff com.apple.LinguisticData (1.0 - 238.25) <F529B961-098C-3E4C-A3E9-9DA9BFA1B3F0> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff6a7e6000 - 0x7fff6a7ffff3 com.apple.LookupFramework (1.2 - 251) <50031B5A-F3D5-39CC-954A-B3AEAF52FB89> /System/Library/PrivateFrameworks/Lookup.framework/Versions/A/Lookup
0x7fff6aeb2000 - 0x7fff6aeb5fff com.apple.Mangrove (1.0 - 25) <537A5B2E-4C30-3CFD-8BDC-79F9A04AC327> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff6af39000 - 0x7fff6af3bff3 com.apple.marco (10.0 - 1000) <608B1000-1427-34B3-96B4-5B6079964E7F> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff6af3c000 - 0x7fff6af62ff3 com.apple.MarkupUI (1.0 - 232.3.30) <C6A452D8-CA97-3044-A025-8ED4B7264FE2> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
0x7fff6afca000 - 0x7fff6affdff7 com.apple.MediaKit (16 - 907) <5EE0E7DA-5ACC-33F3-9BF0-47A448C011A1> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff6b389000 - 0x7fff6b3b1ff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff6b3b2000 - 0x7fff6b43fff7 com.apple.gpusw.MetalTools (1.0 - 1) <CBE2176A-8048-3A9C-AFE4-13973D44C704> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff6b456000 - 0x7fff6b46fffb com.apple.MobileAssets (1.0 - 437.250.3) <8BE5B3A0-8F3A-3FAE-9AFF-32836300183C> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
0x7fff6b5ea000 - 0x7fff6b605ffb com.apple.MobileKeyBag (2.0 - 1.0) <C7C5DD21-66DE-31D1-92D9-BBEEAAE156FB> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff6b618000 - 0x7fff6b68dfff com.apple.Montreal (1.0 - 42.15.9) <17BFD046-4362-3A76-A496-648D00FF3743> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
0x7fff6b68e000 - 0x7fff6b6b8ffb com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <42A23EC9-64A7-31C7-BF33-DF4412ED8A3F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff6b8f4000 - 0x7fff6b8fefff com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff6c01e000 - 0x7fff6c020fff com.apple.OAuth (25 - 25) <64DB58E3-25A4-3C8B-91FB-FACBA01C29B6> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff6c15f000 - 0x7fff6c1b0ff3 com.apple.OTSVG (1.0 - ???) <5BF1A9EB-2694-3267-9514-A4EB3BEF4081> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff6d254000 - 0x7fff6d347fff com.apple.PencilKit (1.0 - 1) <79225726-6980-3680-AC0B-D8C5C5DB2224> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit
0x7fff6d348000 - 0x7fff6d357ff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff6d57e000 - 0x7fff6d57efff com.apple.PhoneNumbers (1.0 - 1) <DBCEDE3B-B681-3F6C-89EC-36E4827A2AF9> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff6ed3a000 - 0x7fff6ed5dffb com.apple.pluginkit.framework (1.0 - 1) <910C3AFE-7C46-3C34-B000-4ED92336B9FD> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
0x7fff6f194000 - 0x7fff6f1e8ffb com.apple.ProtectedCloudStorage (1.0 - 1) <53B3C1F3-BB97-379F-8CBA-8FDCDF085793> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff6f1e9000 - 0x7fff6f207ff7 com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff6f385000 - 0x7fff6f388ff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) <69D0DD00-A3D2-3835-91F0-F33BD9D7D740> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
0x7fff6f389000 - 0x7fff6f39eff3 com.apple.QuickLookThumbnailing (1.0 - 1) <B5E746AE-1DCB-3299-8626-10CCCBC2D5EE> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff6f39f000 - 0x7fff6f3effff com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
0x7fff6f52b000 - 0x7fff6f536fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.261.2) <651F994E-21E1-359B-8FEA-6909CE9AAD56> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff6f549000 - 0x7fff6f56bfff com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff6f56c000 - 0x7fff6f57fff3 com.apple.xpc.RemoteXPC (1.0 - 1336.261.2) <E7B66B18-F5DF-3819-BA47-E35122BA09E8> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
0x7fff702aa000 - 0x7fff702f3fff com.apple.Safari.SafeBrowsing (14607 - 14607.3.9) <F4DA3E55-28AF-3406-8120-9B797197ABED> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
0x7fff70c16000 - 0x7fff70c19ff7 com.apple.SecCodeWrapper (4.0 - 360.270.2) <6B331C0A-1A9D-3039-9FF6-89A49B04F846> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff70cf2000 - 0x7fff70d68ff7 com.apple.ShareKit (577.5 - 577.5) <6563A611-6FA7-34E5-BCB2-3E7ECABBD48B> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
0x7fff70d75000 - 0x7fff70e93fff com.apple.Sharing (1288.62 - 1288.62) <48B1F247-7910-3C16-814C-B99DE231F7F0> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff71ca7000 - 0x7fff71f56fff com.apple.SkyLight (1.600.0 - 340.54) <90EB1C2E-B264-3EC4-AF7F-CDE7E7585746> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff72403000 - 0x7fff72409fff com.apple.sociald.SocialServices (87 - 87) <ED5770CB-2251-3AD2-B52A-7B19B8753F54> /System/Library/PrivateFrameworks/SocialServices.framework/Versions/A/SocialServices
0x7fff726f9000 - 0x7fff72705fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff72da4000 - 0x7fff72de0ff3 com.apple.StreamingZip (1.0 - 1) <046FAD5C-E0C5-3013-B1FE-24C018A0DDCF> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
0x7fff72e56000 - 0x7fff72ee1fc7 com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff733b8000 - 0x7fff733c4fff com.apple.private.SystemPolicy (1.0 - 1) <9CDA85A3-875C-3615-8818-2DC73E9FFE8B> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
0x7fff733c9000 - 0x7fff733d5ffb com.apple.TCC (1.0 - 1) <73CF6FA9-44CE-30C9-887F-235940976585> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff7363b000 - 0x7fff73703ff3 com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff73760000 - 0x7fff7377bfff com.apple.ToneKit (1.0 - 1) <84911F2C-394F-3FFF-8220-B51F581BB8E6> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff7377c000 - 0x7fff737a1ff7 com.apple.ToneLibrary (1.0 - 1) <4D7D03EB-744F-3402-8C3E-B483A74BEF1E> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff737b9000 - 0x7fff737bafff com.apple.TrustEvaluationAgent (2.0 - 31.200.1) <15DF9C73-54E4-3C41-BCF4-378338C55FB4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff737c0000 - 0x7fff73977ffb com.apple.UIFoundation (1.0 - 551.2) <917480B5-14BE-30E0-ABE6-9702336CC35A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff739c5000 - 0x7fff739cbffb com.apple.URLFormatting (59 - 59.46) <8FA3A00C-7BFF-33B9-95EA-A7FC04091D4D> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
0x7fff745f3000 - 0x7fff746ccfff com.apple.ViewBridge (401.1 - 401.1) <18144EC1-5DEF-369C-8EBA-2826E7142784> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff74b0f000 - 0x7fff74d81ffb libAWDSupportFramework.dylib (2131) <AC78D095-4D47-37DF-AE0D-8EEC7C2553F0> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
0x7fff74d82000 - 0x7fff74d93fff libprotobuf-lite.dylib (2131) <297886A7-F889-38AA-B6F6-162598345EC4> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
0x7fff74d94000 - 0x7fff74deefff libprotobuf.dylib (2131) <05141A5F-1870-3AA7-B339-6EB13E375BA4> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
0x7fff74def000 - 0x7fff74e30ff7 com.apple.awd (1.0 - 930.11) <652A1F08-52A3-36CC-8055-EF57143BED76> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
0x7fff74ea4000 - 0x7fff74ea7fff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff752a8000 - 0x7fff752aaffb com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff752ab000 - 0x7fff752c0fff com.apple.login (3.0 - 3.0) <E168F05D-A5DF-3848-8686-DF5015EA4BA4> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
0x7fff752f7000 - 0x7fff75328ffb com.apple.contacts.vCard (1.0 - ???) <651AD944-66CA-3408-818F-484E0F53A1DE> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff754e4000 - 0x7fff754f8ffb libAccessibility.dylib (2402.95) <6BC07631-25B1-3C31-A2CB-E5E477836A5E> /usr/lib/libAccessibility.dylib
0x7fff75574000 - 0x7fff755a8fff libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
0x7fff755ab000 - 0x7fff755b5ff7 libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
0x7fff755b6000 - 0x7fff7563ffff libCoreStorage.dylib (546.50.1) <8E643B27-7986-3351-B37E-038FB6794BF9> /usr/lib/libCoreStorage.dylib
0x7fff75643000 - 0x7fff75644ffb libDiagnosticMessagesClient.dylib (107) <A14D0819-0970-34CD-8680-80E4D7FE8C2C> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff7567b000 - 0x7fff758d2ff3 libFosl_dynamic.dylib (18.3.4) <1B5DD4E2-8AE0-315E-829E-D5BFCD264EA8> /usr/lib/libFosl_dynamic.dylib
0x7fff758f2000 - 0x7fff758f9fff libMatch.1.dylib (31.200.1) <EF8164CB-B599-39D9-9E73-4958A372DC0B> /usr/lib/libMatch.1.dylib
0x7fff75923000 - 0x7fff75942fff libMobileGestalt.dylib (645.270.1) <99A06C8A-97D6-383D-862C-F453BABB48A4> /usr/lib/libMobileGestalt.dylib
0x7fff75943000 - 0x7fff75943fff libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff75a83000 - 0x7fff75a84ffb libSystem.B.dylib (1252.250.1) <B1006948-7AD0-3CA9-81E0-833F4DD6BFB4> /usr/lib/libSystem.B.dylib
0x7fff75a85000 - 0x7fff75affff7 libTelephonyUtilDynamic.dylib (3705) <155194D3-2B24-3A5F-9C04-364E0D583C60> /usr/lib/libTelephonyUtilDynamic.dylib
0x7fff75b00000 - 0x7fff75b01fff libThaiTokenizer.dylib (2.15.1) <ADB37DC3-7D9B-3E73-A72A-BCC3433C937A> /usr/lib/libThaiTokenizer.dylib
0x7fff75b13000 - 0x7fff75b29ffb libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
0x7fff75b2a000 - 0x7fff75b53ffb libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
0x7fff75b54000 - 0x7fff75bd3fff libate.dylib (1.13.8) <92B44EDB-369D-3EE8-AEC5-61F8B9313DBF> /usr/lib/libate.dylib
0x7fff75bd7000 - 0x7fff75bd7ff3 libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
0x7fff75bd8000 - 0x7fff75ca6fff libboringssl.dylib (109.250.2) <8044BBB7-F6E0-36C1-95D1-9C2AB19CF94A> /usr/lib/libboringssl.dylib
0x7fff75ca7000 - 0x7fff75cb7ffb libbsm.0.dylib (39.200.18) <CF381E0B-025B-364F-A83D-2527E03F1AA3> /usr/lib/libbsm.0.dylib
0x7fff75cb8000 - 0x7fff75cc5fff libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
0x7fff75cc6000 - 0x7fff75d19ff7 libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
0x7fff75d1a000 - 0x7fff75d2fff7 libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
0x7fff75d30000 - 0x7fff75d30ff3 libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
0x7fff75d31000 - 0x7fff75d41ffb libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
0x7fff75d42000 - 0x7fff75d5affb libcompression.dylib (52.250.2) <7F4BB18C-1FB4-3825-8D8B-6E6B168774C6> /usr/lib/libcompression.dylib
0x7fff75fcf000 - 0x7fff75fe5fff libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
0x7fff75fe6000 - 0x7fff75fe7ff3 libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff76185000 - 0x7fff7627dff7 libcrypto.35.dylib (22.260.1) <91C3D71A-4D1D-331D-89CC-67863DF10574> /usr/lib/libcrypto.35.dylib
0x7fff76480000 - 0x7fff7648bff7 libcsfde.dylib (546.50.1) <7BAF8FCF-33A1-3C7C-8FEB-2020C8ED6063> /usr/lib/libcsfde.dylib
0x7fff76493000 - 0x7fff764e9ff3 libcups.2.dylib (462.12) <095619DC-9233-3937-9E50-5F10D917A40D> /usr/lib/libcups.2.dylib
0x7fff7661d000 - 0x7fff7661dfff libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
0x7fff7664f000 - 0x7fff76654ff7 libgermantok.dylib (17.15.2) <E5F0F794-FF27-3D64-AE52-C78C6A84DD67> /usr/lib/libgermantok.dylib
0x7fff76655000 - 0x7fff7665aff7 libheimdal-asn1.dylib (520.270.1) <73F60D6F-76F8-35EF-9C86-9A81225EE4BE> /usr/lib/libheimdal-asn1.dylib
0x7fff76685000 - 0x7fff76775fff libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
0x7fff76776000 - 0x7fff769d7ffb libicucore.A.dylib (62141.0.1) <A0D63918-76E9-3C1B-B255-46F4C1DA7FE8> /usr/lib/libicucore.A.dylib
0x7fff76a24000 - 0x7fff76a25fff liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
0x7fff76a26000 - 0x7fff76a3eff3 liblzma.5.dylib (10.200.3) <E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0> /usr/lib/liblzma.5.dylib
0x7fff76a56000 - 0x7fff76afaff7 libmecab.1.0.0.dylib (779.24.1) <A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2> /usr/lib/libmecab.1.0.0.dylib
0x7fff76afb000 - 0x7fff76cfffff libmecabra.dylib (779.24.1) <D71F71E0-30E2-3DB3-B636-7DE13D51FB4B> /usr/lib/libmecabra.dylib
0x7fff76ed7000 - 0x7fff77228ff7 libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
0x7fff772ba000 - 0x7fff77a3ffdf libobjc.A.dylib (756.2) <7C312627-43CB-3234-9324-4DEA92D59F50> /usr/lib/libobjc.A.dylib
0x7fff77a51000 - 0x7fff77a55ffb libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
0x7fff77a58000 - 0x7fff77a8dfff libpcap.A.dylib (79.250.1) <C0893641-7DFF-3A33-BDAE-190FF54837E8> /usr/lib/libpcap.A.dylib
0x7fff77ba6000 - 0x7fff77bbeffb libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
0x7fff77bc0000 - 0x7fff77bfbff3 libsandbox.1.dylib (851.270.1) <04B924EF-2385-34DF-807E-93AAD9EF3AAB> /usr/lib/libsandbox.1.dylib
0x7fff77bfc000 - 0x7fff77c0eff7 libsasl2.2.dylib (211) <10987614-6763-3B5D-9F28-91D121BB4924> /usr/lib/libsasl2.2.dylib
0x7fff77c0f000 - 0x7fff77c10ff7 libspindump.dylib (267.3) <A584E403-8C95-3841-9C16-E22664A5A63F> /usr/lib/libspindump.dylib
0x7fff77c11000 - 0x7fff77deefff libsqlite3.dylib (274.26) <6404BA3B-BCA4-301F-B2FE-8776105A2AA3> /usr/lib/libsqlite3.dylib
0x7fff77f5d000 - 0x7fff77f8dffb libtidy.A.dylib (16.4) <6BDC3816-F222-33B6-848C-D8D5924E8959> /usr/lib/libtidy.A.dylib
0x7fff77fa7000 - 0x7fff78006ffb libusrtcp.dylib (1229.250.15) <36BBD474-FAE5-366F-946D-16C5C4B4A792> /usr/lib/libusrtcp.dylib
0x7fff78007000 - 0x7fff7800aff7 libutil.dylib (51.200.4) <CE9B18C9-66ED-32D4-9D29-01F8FCB467B0> /usr/lib/libutil.dylib
0x7fff7800b000 - 0x7fff78018fff libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
0x7fff7801d000 - 0x7fff780ffff3 libxml2.2.dylib (32.10) <AA4E1B1F-0FDE-3274-9FA5-75446298D1AC> /usr/lib/libxml2.2.dylib
0x7fff78100000 - 0x7fff78128ff3 libxslt.1.dylib (16.5) <E330D3A2-E32B-378A-973E-A8D245C0F712> /usr/lib/libxslt.1.dylib
0x7fff78129000 - 0x7fff7813bff7 libz.1.dylib (70.200.4) <B048FC1F-058F-3A08-A1FE-81D5308CB3E6> /usr/lib/libz.1.dylib
0x7fff781be000 - 0x7fff781d1ff3 libswiftAppKit.dylib (??? - ???) <390B2331-342E-367F-9308-01447A4442E6> /usr/lib/swift/libswiftAppKit.dylib
0x7fff781ea000 - 0x7fff7855bff7 libswiftCore.dylib (5.0 - 1001.8.63.13) <4FE40B7B-1413-3A25-959B-D78B78682D12> /usr/lib/swift/libswiftCore.dylib
0x7fff78562000 - 0x7fff78569ffb libswiftCoreData.dylib (??? - ???) <7D7D21CE-8F68-390F-BE47-2AB1DC0439ED> /usr/lib/swift/libswiftCoreData.dylib
0x7fff7856a000 - 0x7fff7856cff3 libswiftCoreFoundation.dylib (??? - ???) <3192FF82-E322-3B09-805F-6AEB48C00478> /usr/lib/swift/libswiftCoreFoundation.dylib
0x7fff7856d000 - 0x7fff7857bff3 libswiftCoreGraphics.dylib (??? - ???) <FEFE340D-865B-3C8C-AF13-AB1DE8866C01> /usr/lib/swift/libswiftCoreGraphics.dylib
0x7fff7857c000 - 0x7fff7857fffb libswiftCoreImage.dylib (??? - ???) <4AC0B024-190B-31F8-8EC5-C9E2761C580E> /usr/lib/swift/libswiftCoreImage.dylib
0x7fff78592000 - 0x7fff78598ffb libswiftDarwin.dylib (??? - ???) <FD515CE3-A057-36EC-A787-E78F773973F3> /usr/lib/swift/libswiftDarwin.dylib
0x7fff78599000 - 0x7fff785affff libswiftDispatch.dylib (??? - ???) <40AA9542-FE66-37F0-B0BE-70C8D057488C> /usr/lib/swift/libswiftDispatch.dylib
0x7fff785b0000 - 0x7fff78741ff7 libswiftFoundation.dylib (??? - ???) <A24C3092-3B6D-3680-945E-292A0D31436F> /usr/lib/swift/libswiftFoundation.dylib
0x7fff78750000 - 0x7fff78752ff3 libswiftIOKit.dylib (??? - ???) <C7E2E0F9-D04C-348E-A5B6-DD59A9F40BDD> /usr/lib/swift/libswiftIOKit.dylib
0x7fff78760000 - 0x7fff78767fff libswiftMetal.dylib (??? - ???) <03736BFF-B1E4-32FB-B3C3-12FFF7681854> /usr/lib/swift/libswiftMetal.dylib
0x7fff787a9000 - 0x7fff787acff7 libswiftObjectiveC.dylib (??? - ???) <A4201F26-A2B3-3F2A-8B0F-D17F166C26BC> /usr/lib/swift/libswiftObjectiveC.dylib
0x7fff787b7000 - 0x7fff787bcffb libswiftQuartzCore.dylib (??? - ???) <FB83F05B-766E-3211-8CC7-E8B634B34BA0> /usr/lib/swift/libswiftQuartzCore.dylib
0x7fff788f4000 - 0x7fff788f6ffb libswiftXPC.dylib (??? - ???) <61CDCF0E-FFD3-31FD-A6B1-175B06EA6659> /usr/lib/swift/libswiftXPC.dylib
0x7fff7891f000 - 0x7fff78923ff3 libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
0x7fff78924000 - 0x7fff7892eff3 libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
0x7fff7892f000 - 0x7fff78936ff7 libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
0x7fff78937000 - 0x7fff78940ff7 libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
0x7fff78941000 - 0x7fff789c5fc3 libcorecrypto.dylib (602.260.2) <01464D24-570C-3B83-9D18-467769E0FCDD> /usr/lib/system/libcorecrypto.dylib
0x7fff78a4c000 - 0x7fff78a85ff7 libdispatch.dylib (1008.270.1) <97273678-E94C-3C8C-89F6-2E2020F4B43B> /usr/lib/system/libdispatch.dylib
0x7fff78a86000 - 0x7fff78ab2ff7 libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
0x7fff78ab3000 - 0x7fff78ab3ffb libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
0x7fff78ab4000 - 0x7fff78ac0ff3 libkxld.dylib (4903.271.2) <FBF128C8-D3F0-36B6-983A-A63B8A3E0E52> /usr/lib/system/libkxld.dylib
0x7fff78ac1000 - 0x7fff78ac1ff7 liblaunch.dylib (1336.261.2) <2B07E27E-D404-3E98-9D28-BCA641E5C479> /usr/lib/system/liblaunch.dylib
0x7fff78ac2000 - 0x7fff78ac7fff libmacho.dylib (927.0.3) <A377D608-77AB-3F6E-90F0-B4F251A5C12F> /usr/lib/system/libmacho.dylib
0x7fff78ac8000 - 0x7fff78acaffb libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
0x7fff78acb000 - 0x7fff78accff7 libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
0x7fff78acd000 - 0x7fff78ae4ff3 libsystem_asl.dylib (356.200.4) <A62A7249-38B8-33FA-9875-F1852590796C> /usr/lib/system/libsystem_asl.dylib
0x7fff78ae5000 - 0x7fff78ae5ff7 libsystem_blocks.dylib (73) <A453E8EE-860D-3CED-B5DC-BE54E9DB4348> /usr/lib/system/libsystem_blocks.dylib
0x7fff78ae6000 - 0x7fff78b6dfff libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
0x7fff78b6e000 - 0x7fff78b71ffb libsystem_configuration.dylib (963.270.3) <2B4A836D-68A4-33E6-8D48-CD4486B03387> /usr/lib/system/libsystem_configuration.dylib
0x7fff78b72000 - 0x7fff78b75ff7 libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
0x7fff78b76000 - 0x7fff78b7cfff libsystem_darwin.dylib (1272.250.1) <EC9B39A5-9592-3577-8997-7DC721D20D8C> /usr/lib/system/libsystem_darwin.dylib
0x7fff78b7d000 - 0x7fff78b83ff7 libsystem_dnssd.dylib (878.270.2) <E9A5ACCF-E35F-3909-AF0A-2A37CD217276> /usr/lib/system/libsystem_dnssd.dylib
0x7fff78b84000 - 0x7fff78bcfffb libsystem_info.dylib (517.200.9) <D09D5AE0-2FDC-3A6D-93EC-729F931B1457> /usr/lib/system/libsystem_info.dylib
0x7fff78bd0000 - 0x7fff78bf8ff7 libsystem_kernel.dylib (4903.271.2) <EA204E3C-870B-30DD-B4AF-D1BB66420D14> /usr/lib/system/libsystem_kernel.dylib
0x7fff78bf9000 - 0x7fff78c44ff7 libsystem_m.dylib (3158.200.7) <F19B6DB7-014F-3820-831F-389CCDA06EF6> /usr/lib/system/libsystem_m.dylib
0x7fff78c45000 - 0x7fff78c6ffff libsystem_malloc.dylib (166.270.1) <011F3AD0-8E6A-3A89-AE64-6E5F6840F30A> /usr/lib/system/libsystem_malloc.dylib
0x7fff78c70000 - 0x7fff78c7aff7 libsystem_networkextension.dylib (767.250.2) <FF06F13A-AEFE-3A27-A073-910EF78AEA36> /usr/lib/system/libsystem_networkextension.dylib
0x7fff78c7b000 - 0x7fff78c82fff libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
0x7fff78c83000 - 0x7fff78c8cfef libsystem_platform.dylib (177.270.1) <9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C> /usr/lib/system/libsystem_platform.dylib
0x7fff78c8d000 - 0x7fff78c97ff7 libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
0x7fff78c98000 - 0x7fff78c9bff7 libsystem_sandbox.dylib (851.270.1) <9494594B-5199-3186-82AB-5FF8BED6EE16> /usr/lib/system/libsystem_sandbox.dylib
0x7fff78c9c000 - 0x7fff78c9eff3 libsystem_secinit.dylib (30.260.2) <EF1EA47B-7B22-35E8-BD9B-F7003DCB96AE> /usr/lib/system/libsystem_secinit.dylib
0x7fff78c9f000 - 0x7fff78ca6ff3 libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
0x7fff78ca7000 - 0x7fff78cbcfff libsystem_trace.dylib (906.260.1) <FC761C3B-5434-3A52-912D-F1B15FAA8EB2> /usr/lib/system/libsystem_trace.dylib
0x7fff78cbe000 - 0x7fff78cc3ffb libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
0x7fff78cc4000 - 0x7fff78cf3fff libxpc.dylib (1336.261.2) <7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 226890
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=539.3M resident=0K(0%) swapped_out_or_unallocated=539.3M(100%)
Writable regions: Total=2.7G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.7G(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 256K 2
Activity Tracing 256K 1
CG backing stores 4680K 6
CG image 152K 11
CoreAnimation 29.6M 17
CoreGraphics 8K 1
CoreImage 144K 12
CoreServices 164K 1
CoreUI image data 2008K 22
CoreUI image file 440K 9
Foundation 20K 2
JS JIT generated code 1.0G 3
Kernel Alloc Once 8K 1
MALLOC 392.3M 48
MALLOC guard page 48K 8
MALLOC_MEDIUM (reserved) 896.0M 8 reserved VM address space (unallocated)
MALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)
Memory Tag 242 12K 1
SQLite page cache 128K 2
STACK GUARD 56.1M 24
Stack 20.2M 25
Stack Guard 4K 1
VM_ALLOCATE 156K 21
WebKit Malloc 5548K 8
__DATA 83.2M 396
__FONT_DATA 4K 1
__GLSLBUILTINS 5176K 1
__LINKEDIT 223.9M 10
__TEXT 315.4M 390
__UNICODE 564K 1
mapped file 88.6M 34
shared memory 644K 11
=========== ======= =======
TOTAL 3.5G 1079
TOTAL, minus reserved VM space 2.2G 1079
```
### Reproduced
It happens everytime.
***(Optional)*** If applicable, add screenshots, animations, or videos to help illustrate your problem.
***(Required)***
Make|Model|OS Version|App Version
-|-|-|-
Apple|Macbook Pro|10.14.6|1.7
| 1.0 | Simplenote doesn't start on OSX - ### Expected
The simplenote app to start and be usable.
### Observed
I installed the simplenote app from the app store and went to start it and it flashed for a millisecond and then disappeared. After a couple more seconds a box popped up saying that: *Simplenote quit unexpectedly*. The following is the report (I'm not sure if it's helpful):
```
Process: Simplenote [53359]
Path: /Applications/Simplenote.app/Contents/MacOS/Simplenote
Identifier: com.automattic.SimplenoteMac
Version: 1.7.0 (1703)
App Item ID: 692867256
App External ID: 832659887
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Simplenote [53359]
User ID: 501
Date/Time: 2019-09-26 12:32:27.720 -0700
OS Version: Mac OS X 10.14.6 (18G95)
Report Version: 12
Bridge OS Version: 3.6 (16P6571)
Anonymous UUID: 8D13A523-C98A-BB7A-80BF-B678675EE911
Sleep/Wake UUID: D5888492-FB01-4ADB-ABC8-1B9AB1EA227F
Time Awake Since Boot: 270000 seconds
Time Since Wake: 170000 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_INSTRUCTION (SIGILL)
Exception Codes: 0x0000000000000001, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Signal: Illegal instruction: 4
Termination Reason: Namespace SIGNAL, Code 0x4
Terminating Process: exc handler [53359]
Application Specific Information:
Crashing on exception: Invalid parameter not satisfying: aString != nil
Application Specific Backtrace 1:
0 CoreFoundation 0x00007fff4cbfe2fd __exceptionPreprocess + 256
1 libobjc.A.dylib 0x00007fff772cea17 objc_exception_throw + 48
2 CoreFoundation 0x00007fff4cc19016 +[NSException raise:format:arguments:] + 98
3 Foundation 0x00007fff4eeb8791 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 194
4 AppKit 0x00007fff4a1ce71f -[NSCell _objectValue:forString:errorDescription:] + 312
5 AppKit 0x00007fff4a1ce539 -[NSCell setStringValue:] + 40
6 AppKit 0x00007fff4a225e44 -[NSControl setStringValue:] + 135
7 Simplenote 0x000000010c699fa9 Simplenote + 217001
8 AppKit 0x00007fff4a2fb514 -[NSTableView(NSTableViewViewBased) _delegate_viewForTableColumn:row:] + 88
9 AppKit 0x00007fff4a2fb0ca -[NSTableView(NSTableViewViewBased) makeViewForTableColumn:row:] + 91
10 AppKit 0x00007fff4a2fac20 -[NSTableRowData _addViewToRowView:atColumn:row:] + 342
11 AppKit 0x00007fff4a2fa907 -[NSTableRowData _addViewsToRowView:atRow:] + 197
12 AppKit 0x00007fff4a2f85f6 -[NSTableRowData _initializeRowView:atRow:] + 397
13 AppKit 0x00007fff4a2f78d7 -[NSTableRowData _preparedRowViewForRow:storageHandler:] + 154
14 AppKit 0x00007fff4a2f7736 -[NSTableRowData _addRowViewForVisibleRow:withPriorView:] + 295
15 AppKit 0x00007fff4a2f7569 -[NSTableRowData _addRowViewForVisibleRow:withPriorRowIndex:inDictionary:withRowAnimation:] + 401
16 AppKit 0x00007fff4a2e7dd8 -[NSTableRowData _updateVisibleRowEntries] + 1604
17 AppKit 0x00007fff4a2e76ee -[NSTableRowData updateVisibleRowViews] + 291
18 AppKit 0x00007fff4a23927d -[NSTableView layout] + 206
19 AppKit 0x00007fff4a2327a7 _NSViewLayout + 587
20 AppKit 0x00007fff4a232124 -[NSView _layoutSubtreeWithOldSize:] + 452
21 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
22 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
23 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
24 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
25 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
26 AppKit 0x00007fff4a2323a5 -[NSView _layoutSubtreeWithOldSize:] + 1093
27 AppKit 0x00007fff4a22fbc4 -[NSView _layoutSubtreeIfNeededAndAllowTemporaryEngine:] + 1358
28 AppKit 0x00007fff4a22f348 -[NSWindow(NSConstraintBasedLayout) _layoutViewTree] + 148
29 AppKit 0x00007fff4a240ea4 -[NSWindow(NSConstraintBasedLayout) layoutIfNeeded] + 263
30 AppKit 0x00007fff4a245398 -[NSWindow displayIfNeeded] + 177
31 AppKit 0x00007fff4a245240 __NSWindowGetDisplayCycleObserverForDisplay_block_invoke + 684
32 AppKit 0x00007fff4a240334 NSDisplayCycleObserverInvoke + 162
33 AppKit 0x00007fff4a23feb4 NSDisplayCycleFlush + 1030
34 QuartzCore 0x00007fff575b154d _ZN2CA11Transaction19run_commit_handlersE18CATransactionPhase + 49
35 QuartzCore 0x00007fff575b0d26 _ZN2CA11Transaction6commitEv + 212
36 AppKit 0x00007fff4a23f84d __65+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayRefresh]_block_invoke + 274
37 CoreFoundation 0x00007fff4cba4f28 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
38 CoreFoundation 0x00007fff4cba4e5d __CFRunLoopDoObservers + 451
39 CoreFoundation 0x00007fff4cb47580 __CFRunLoopRun + 1136
40 CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
41 HIToolbox 0x00007fff4bda61ab RunCurrentEventLoopInMode + 292
42 HIToolbox 0x00007fff4bda5ee5 ReceiveNextEventCommon + 603
43 HIToolbox 0x00007fff4bda5c76 _BlockUntilNextEventMatchingListInModeWithFilter + 64
44 AppKit 0x00007fff4a13e79d _DPSNextEvent + 1135
45 AppKit 0x00007fff4a13d48b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
46 AppKit 0x00007fff4a1375a8 -[NSApplication run] + 699
47 AppKit 0x00007fff4a126ae8 NSApplicationMain + 777
48 libdyld.dylib 0x00007fff78a9c3d5 start + 1
49 ??? 0x0000000000000001 0x0 + 1
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 com.apple.AppKit 0x00007fff4a542867 -[NSApplication _crashOnException:] + 109
1 com.apple.AppKit 0x00007fff4a23fa84 __65+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayRefresh]_block_invoke + 841
2 com.apple.CoreFoundation 0x00007fff4cba4f28 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
3 com.apple.CoreFoundation 0x00007fff4cba4e5d __CFRunLoopDoObservers + 451
4 com.apple.CoreFoundation 0x00007fff4cb47580 __CFRunLoopRun + 1136
5 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
6 com.apple.HIToolbox 0x00007fff4bda61ab RunCurrentEventLoopInMode + 292
7 com.apple.HIToolbox 0x00007fff4bda5ee5 ReceiveNextEventCommon + 603
8 com.apple.HIToolbox 0x00007fff4bda5c76 _BlockUntilNextEventMatchingListInModeWithFilter + 64
9 com.apple.AppKit 0x00007fff4a13e79d _DPSNextEvent + 1135
10 com.apple.AppKit 0x00007fff4a13d48b -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
11 com.apple.AppKit 0x00007fff4a1375a8 -[NSApplication run] + 699
12 com.apple.AppKit 0x00007fff4a126ae8 NSApplicationMain + 777
13 libdyld.dylib 0x00007fff78a9c3d5 start + 1
Thread 1:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 2:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 3:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 4:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 5:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 6:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 7:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 8:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 9:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 10:: Dispatch queue: com.simperium.processor.Tag
0 libsystem_kernel.dylib 0x00007fff78bd39de __ulock_wait + 10
1 libdispatch.dylib 0x00007fff78a4fe19 _dispatch_ulock_wait + 47
2 libdispatch.dylib 0x00007fff78a4fef8 _dispatch_thread_event_wait_slow + 33
3 libdispatch.dylib 0x00007fff78a5b37f __DISPATCH_WAIT_FOR_QUEUE__ + 286
4 libdispatch.dylib 0x00007fff78a5afce _dispatch_sync_f_slow + 171
5 com.apple.CoreData 0x00007fff4c6f6a77 -[NSManagedObjectContext performBlockAndWait:] + 311
6 org.cocoapods.Simperium-OSX 0x000000010c8f7366 -[SPCoreDataStorage childrenContextDidSave:] + 322
7 com.apple.CoreFoundation 0x00007fff4cbaab96 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
8 com.apple.CoreFoundation 0x00007fff4cbaab10 ___CFXRegistrationPost_block_invoke + 63
9 com.apple.CoreFoundation 0x00007fff4cbaaa7a _CFXRegistrationPost + 404
10 com.apple.CoreFoundation 0x00007fff4cbb2f28 ___CFXNotificationPost_block_invoke + 87
11 com.apple.CoreFoundation 0x00007fff4cb1b8b4 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1642
12 com.apple.CoreFoundation 0x00007fff4cb1ac67 _CFXNotificationPost + 732
13 com.apple.Foundation 0x00007fff4eda0aab -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
14 com.apple.CoreData 0x00007fff4c7302d9 -[NSManagedObjectContext(_NSInternalNotificationHandling) _postContextDidSaveNotificationWithUserInfo:] + 1545
15 com.apple.CoreData 0x00007fff4c6e8b96 -[NSManagedObjectContext(_NSInternalAdditions) _didSaveChanges] + 2294
16 com.apple.CoreData 0x00007fff4c6de00d -[NSManagedObjectContext save:] + 4397
17 org.cocoapods.Simperium-OSX 0x000000010c8f6021 -[SPCoreDataStorage save] + 183
18 org.cocoapods.Simperium-OSX 0x000000010c8ec6ef __76-[SPChangeProcessor processRemoteDeleteWithKey:bucket:objectWasFound:error:]_block_invoke + 132
19 org.cocoapods.Simperium-OSX 0x000000010c8f7daa -[SPCoreDataStorage performCriticalBlockAndWait:] + 105
20 org.cocoapods.Simperium-OSX 0x000000010c8ec557 -[SPChangeProcessor processRemoteDeleteWithKey:bucket:objectWasFound:error:] + 376
21 org.cocoapods.Simperium-OSX 0x000000010c8ee660 -[SPChangeProcessor processRemoteChange:bucket:error:] + 1407
22 org.cocoapods.Simperium-OSX 0x000000010c8eeddc -[SPChangeProcessor processRemoteChanges:bucket:successHandler:errorHandler:] + 679
23 org.cocoapods.Simperium-OSX 0x000000010c91b26d -[SPWebSocketChannel processBatchChanges:bucket:] + 655
24 org.cocoapods.Simperium-OSX 0x000000010c91afc8 __49-[SPWebSocketChannel handleRemoteChanges:bucket:]_block_invoke + 351
25 libdispatch.dylib 0x00007fff78a4e5f8 _dispatch_call_block_and_release + 12
26 libdispatch.dylib 0x00007fff78a4f63d _dispatch_client_callout + 8
27 libdispatch.dylib 0x00007fff78a558e0 _dispatch_lane_serial_drain + 602
28 libdispatch.dylib 0x00007fff78a56396 _dispatch_lane_invoke + 385
29 libdispatch.dylib 0x00007fff78a5e6ed _dispatch_workloop_worker_thread + 598
30 libsystem_pthread.dylib 0x00007fff78c8f611 _pthread_wqthread + 421
31 libsystem_pthread.dylib 0x00007fff78c8f3fd start_wqthread + 13
Thread 11:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 12:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 13:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 14:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 15:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 16:: JavaScriptCore bmalloc scavenger
0 libsystem_kernel.dylib 0x00007fff78bd486a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff78c9356e _pthread_cond_wait + 722
2 libc++.1.dylib 0x00007fff75cceb31 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 93
3 com.apple.JavaScriptCore 0x00007fff5002c235 std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 117
4 com.apple.JavaScriptCore 0x00007fff5002c0ff std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lock<bmalloc::Mutex>, std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >(std::__1::unique_lock<bmalloc::Mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 95
5 com.apple.JavaScriptCore 0x00007fff5002adc6 bmalloc::Scavenger::threadRunLoop() + 262
6 com.apple.JavaScriptCore 0x00007fff5002a579 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 9
7 com.apple.JavaScriptCore 0x00007fff5002bee7 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (*)(bmalloc::Scavenger*), bmalloc::Scavenger*> >(void*) + 39
8 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 17:: com.apple.coreanimation.render-server
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.QuartzCore 0x00007fff57611b5a CA::Render::Server::server_thread(void*) + 865
3 com.apple.QuartzCore 0x00007fff576117e6 thread_fun(void*) + 25
4 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 18:
0 libsystem_kernel.dylib 0x00007fff78bd4f32 __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff78b60914 nanosleep + 199
2 libsystem_c.dylib 0x00007fff78b60776 sleep + 41
3 org.cocoapods.Sentry 0x000000010c824496 monitorCachedData + 605
4 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 19:: com.squareup.SocketRocket.NetworkThread
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff4cb481ee __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff4cb4775c __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
5 com.apple.Foundation 0x00007fff4edab32f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6 org.cocoapods.Simperium-OSX 0x000000010c916a1f -[_SPRRunLoopThread main] + 259
7 com.apple.Foundation 0x00007fff4eda1112 __NSThread__start__ + 1194
8 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 20:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff4cb481ee __CFRunLoopServiceMachPort + 328
3 com.apple.CoreFoundation 0x00007fff4cb4775c __CFRunLoopRun + 1612
4 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
5 com.apple.CFNetwork 0x00007fff4ba2d380 -[__CoreSchedulingSetRunnable runForever] + 210
6 com.apple.Foundation 0x00007fff4eda1112 __NSThread__start__ + 1194
7 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
8 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
9 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 21:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff78bd861a __select + 10
1 com.apple.CoreFoundation 0x00007fff4cb75b72 __CFSocketManager + 635
2 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 22:
0 libsystem_pthread.dylib 0x00007fff78c8f3f0 start_wqthread + 0
Thread 23:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff78bd122a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff78bd176c mach_msg + 60
2 com.apple.SkyLight 0x00007fff71cb0ee1 CGSSnarfAndDispatchDatagrams + 165
3 com.apple.SkyLight 0x00007fff71f05f2e SLSGetNextEventRecordInternal + 81
4 com.apple.SkyLight 0x00007fff71dbb266 SLEventCreateNextEvent + 136
5 com.apple.HIToolbox 0x00007fff4bdb0162 PullEventsFromWindowServerOnConnection(unsigned int, unsigned char, __CFMachPortBoost*) + 45
6 com.apple.HIToolbox 0x00007fff4bdb00f9 MessageHandler(__CFMachPort*, void*, long, void*) + 51
7 com.apple.CoreFoundation 0x00007fff4cb5fc99 __CFMachPortPerform + 246
8 com.apple.CoreFoundation 0x00007fff4cb5fb97 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
9 com.apple.CoreFoundation 0x00007fff4cb5faf5 __CFRunLoopDoSource1 + 527
10 com.apple.CoreFoundation 0x00007fff4cb47aec __CFRunLoopRun + 2524
11 com.apple.CoreFoundation 0x00007fff4cb46ebe CFRunLoopRunSpecific + 455
12 com.apple.AppKit 0x00007fff4a1464c2 _NSEventThread + 175
13 libsystem_pthread.dylib 0x00007fff78c902eb _pthread_body + 126
14 libsystem_pthread.dylib 0x00007fff78c93249 _pthread_start + 66
15 libsystem_pthread.dylib 0x00007fff78c8f40d thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x00007fad2610f400 rbx: 0x0000600003fa68e0 rcx: 0x0000000000000000 rdx: 0x0000000000001466
rdi: 0x0000000000000000 rsi: 0x00007ffee3598ea0 rbp: 0x00007ffee3599310 rsp: 0x00007ffee3599300
r8: 0x0000000000000066 r9: 0x0000000000001400 r10: 0x0000000000000066 r11: 0x00007fad26110866
r12: 0x0000600000014f00 r13: 0x00007fad26007048 r14: 0x00007fff772c0680 r15: 0x00007fff4cbb2583
rip: 0x00007fff4a542867 rfl: 0x0000000000010206 cr2: 0x000000010c762d3c
Logical CPU: 0
Error Code: 0x00000000
Trap Number: 6
Binary Images:
0x10c665000 - 0x10c71efff +com.automattic.SimplenoteMac (1.7.0 - 1703) <88D89302-CD4E-3D2E-A8B3-C0CF045081FC> /Applications/Simplenote.app/Contents/MacOS/Simplenote
0x10c778000 - 0x10c788fff +org.cocoapods.AutomatticTracks (0.4.0 - 1) <20093455-F85A-3091-98C1-DA34249294DE> /Applications/Simplenote.app/Contents/Frameworks/AutomatticTracks.framework/Versions/A/AutomatticTracks
0x10c7b0000 - 0x10c7c9ff7 +org.cocoapods.CocoaLumberjack (3.5.3 - 1) <3D105F38-7F61-3260-88B4-9AF5D60EAD43> /Applications/Simplenote.app/Contents/Frameworks/CocoaLumberjack.framework/Versions/A/CocoaLumberjack
0x10c804000 - 0x10c809fff +org.cocoapods.Reachability (3.2.0 - 1) <F539A78A-F9B5-31F4-8A87-3EC2D6DFABBE> /Applications/Simplenote.app/Contents/Frameworks/Reachability.framework/Versions/A/Reachability
0x10c81a000 - 0x10c85aff3 +org.cocoapods.Sentry (4.3.4 - 1) <1E29E053-4B53-3BF4-92AE-2E6162559F79> /Applications/Simplenote.app/Contents/Frameworks/Sentry.framework/Versions/A/Sentry
0x10c8cc000 - 0x10c94cfff +org.cocoapods.Simperium-OSX (0.8.21 - 1) <4B846E55-2CB5-3328-9567-D846712DE3E8> /Applications/Simplenote.app/Contents/Frameworks/Simperium_OSX.framework/Versions/A/Simperium_OSX
0x10e87c000 - 0x10e87f047 libobjc-trampolines.dylib (756.2) <5795A048-3940-3801-90CE-33D1B1AF81F4> /usr/lib/libobjc-trampolines.dylib
0x111000000 - 0x11111bff3 com.apple.AMDRadeonX5000GLDriver (2.11.20 - 2.1.1) <FF64AE9F-2A97-3702-A33F-D3C493A1ABFF> /System/Library/Extensions/AMDRadeonX5000GLDriver.bundle/Contents/MacOS/AMDRadeonX5000GLDriver
0x11666a000 - 0x1166d470f dyld (655.1.1) <DFC3C4AF-6F97-3B34-B18D-7DCB23F2A83A> /usr/lib/dyld
0x7fff4126e000 - 0x7fff415c7fff com.apple.RawCamera.bundle (8.15.0 - 1031.4.4) <AB6E8A8F-0BFE-37EE-A135-44ABA4FCB559> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff4207d000 - 0x7fff42a22ff7 ATIRadeonX5000SCLib.dylib (2.11.20) <58BA8D06-71C8-3446-AC77-8BB724AD25F9> /System/Library/Extensions/AMDRadeonX5000GLDriver.bundle/Contents/MacOS/ATIRadeonX5000SCLib.dylib
0x7fff42a23000 - 0x7fff42b1cff7 com.apple.AMDRadeonX5000MTLDriver (2.11.20 - 2.1.1) <79B3BBF2-C522-347F-98B8-D70B1E43A1AB> /System/Library/Extensions/AMDRadeonX5000MTLDriver.bundle/Contents/MacOS/AMDRadeonX5000MTLDriver
0x7fff452dc000 - 0x7fff460b0ff7 com.apple.driver.AppleIntelKBLGraphicsGLDriver (12.10.12 - 12.1.0) <F966EA02-0252-3B4F-888B-C0FCCA888A76> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver
0x7fff460b1000 - 0x7fff463e3fff com.apple.driver.AppleIntelKBLGraphicsMTLDriver (12.10.12 - 12.1.0) <F44A2087-008C-30CB-9E33-A94DFF197E68> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
0x7fff48b46000 - 0x7fff48d22ffb com.apple.avfoundation (2.0 - 1550.4) <5854207B-6106-3DA4-80B6-36C42D042F26> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff48d23000 - 0x7fff48de8fff com.apple.audio.AVFAudio (1.0 - ???) <D454A339-2FC6-3EF6-992F-D676046612DB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff48ef0000 - 0x7fff48ef0fff com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff48ef1000 - 0x7fff48f07ff7 libCGInterfaces.dylib (506.22) <1B6C92D9-F4B8-37BA-9635-94C4A56098CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff48f08000 - 0x7fff495a1fef com.apple.vImage (8.1 - ???) <53FA3611-894E-3158-A654-FBD2F70998FE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff495a2000 - 0x7fff4981bff3 libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff4981c000 - 0x7fff4988effb libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff4988f000 - 0x7fff49c38ff3 libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff49c39000 - 0x7fff49c4efeb libLinearAlgebra.dylib (1243.200.4) <CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff49c4f000 - 0x7fff49c54ff3 libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff49c55000 - 0x7fff49cd1ff3 libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff49cd2000 - 0x7fff49ce5fe3 libSparseBLAS.dylib (1243.200.4) <E9243341-DB77-37C1-97C5-3DFA00DD70FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff49ce6000 - 0x7fff49ecdff7 libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff49ece000 - 0x7fff49f81ff7 libvMisc.dylib (671.250.4) <D5BA4812-BFFC-3CD0-B382-905CD8555DA6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff49f82000 - 0x7fff49f82fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff49f83000 - 0x7fff49fddfff com.apple.Accounts (113 - 113) <251A1CB1-F972-3F60-8662-85459EAD6318> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff49fe0000 - 0x7fff4a123fff com.apple.AddressBook.framework (11.0 - 1894) <3FFCAE6B-4CD2-3B8D-AE27-0A3693C9470F> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff4a124000 - 0x7fff4aed9ffb com.apple.AppKit (6.9 - 1671.60.107) <2F7E5984-E89A-3451-A3DF-FAAA509CF884> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff4af2b000 - 0x7fff4af2bfff com.apple.ApplicationServices (50.1 - 50.1) <84097DEB-E2FC-3901-8DD7-A670EA2274E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff4af2c000 - 0x7fff4af97fff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff4b030000 - 0x7fff4b147fff libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff4b148000 - 0x7fff4b18afff libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff4b1e4000 - 0x7fff4b216fff libTrueTypeScaler.dylib (228.6.2.3) <7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff4b27b000 - 0x7fff4b27fff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <C0D9E23C-ABA0-39DE-A4EB-5A41C5499056> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff4b31a000 - 0x7fff4b36cff7 com.apple.HIServices (1.22 - 628) <2BE461FF-80B9-30D3-A574-AED5724B1C1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff4b36d000 - 0x7fff4b37cfff com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff4b37d000 - 0x7fff4b3c6ff7 com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff4b3c7000 - 0x7fff4b400ff7 com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff4b401000 - 0x7fff4b40dfff com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <5E7B9BD4-122B-3012-A044-3259C97E7509> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff4b40e000 - 0x7fff4b685ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <04F482F1-E1C1-3955-8A6C-8AA152AA06F3> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff4b687000 - 0x7fff4b687fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <ABC54269-002D-310D-9654-46CF960F863E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff4b9e0000 - 0x7fff4bd81fff com.apple.CFNetwork (978.0.7 - 978.0.7) <B2133D0D-1399-3F17-80F0-313E3A241C89> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff4bd96000 - 0x7fff4bd96fff com.apple.Carbon (158 - 158) <56AD06AA-7BB4-3F0B-AEF7-9768D0BC1C98> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff4bd97000 - 0x7fff4bd9affb com.apple.CommonPanels (1.2.6 - 98) <1CD6D56D-8EC7-3528-8CBC-FC69533519B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff4bd9b000 - 0x7fff4c092fff com.apple.HIToolbox (2.1.1 - 918.7) <13F69D4C-D19F-3E09-9231-1978D783A556> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff4c093000 - 0x7fff4c096ff3 com.apple.help (1.3.8 - 66) <A08517EB-8958-36C9-AEE0-1A8FEEACBE3F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff4c097000 - 0x7fff4c09cff7 com.apple.ImageCapture (9.0 - 1534.2) <DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff4c09d000 - 0x7fff4c132ff3 com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff4c133000 - 0x7fff4c14bff7 com.apple.openscripting (1.7 - 179.1) <9B8C1ECC-5864-3E21-9149-863E884EA25C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff4c16b000 - 0x7fff4c16cff7 com.apple.print.framework.Print (14.2 - 267.4) <A7A9D2A0-D4E0-35EF-A0F7-50521F707C33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff4c16d000 - 0x7fff4c16fff7 com.apple.securityhi (9.0 - 55006) <05717F77-7A7B-37E6-AB3E-03F063E9095B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff4c170000 - 0x7fff4c176ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff4c298000 - 0x7fff4c298fff com.apple.Cocoa (6.11 - 23) <8D092DD2-0CA4-34C9-872C-8BBFAE1995A4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff4c2a6000 - 0x7fff4c3f5ff7 com.apple.ColorSync (4.13.0 - 3345.6) <31648BB6-7239-3D0E-81B1-BCF51FEF557F> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff4c3f6000 - 0x7fff4c4deff7 com.apple.contacts (1.0 - 2901) <A6734AF0-D8E6-32C7-B283-DF1E7627F0D3> /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
0x7fff4c581000 - 0x7fff4c607fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff4c66b000 - 0x7fff4c695ffb com.apple.CoreBluetooth (1.0 - 1) <A73F1709-DD18-3052-9F22-C0015278834B> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff4c696000 - 0x7fff4ca1bfef com.apple.CoreData (120 - 866.6) <132CB39B-8D58-30FA-B8AD-49BFFF34B293> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff4ca1c000 - 0x7fff4cb0cff7 com.apple.CoreDisplay (101.3 - 110.18) <0EB2A997-FCAD-3D17-B140-9829961E5327> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff4cb0d000 - 0x7fff4cf51fe7 com.apple.CoreFoundation (6.9 - 1575.19) <B2850F42-CE01-3156-B121-FD4777290C8F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff4cf53000 - 0x7fff4d5e2fff com.apple.CoreGraphics (2.0 - 1265.9) <BC95B558-EF77-3A57-A0BC-11606C778991> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff4d5e4000 - 0x7fff4d904fff com.apple.CoreImage (14.4.0 - 750.0.140) <11026E39-D2FF-3CF6-8ACE-7BA293F9853E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff4d905000 - 0x7fff4d97dfff com.apple.corelocation (2245.16.14) <0F59F59B-AC14-3116-83C5-CF7BC57D9EB1> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff4d9d7000 - 0x7fff4dc00fff com.apple.CoreML (1.0 - 1) <9EC1FED2-BA47-307B-A326-43C4D05166E7> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
0x7fff4dc01000 - 0x7fff4dd05fff com.apple.CoreMedia (1.0 - 2290.13) <A739B93D-23C2-3A34-8D61-6AC924B9634F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff4dd06000 - 0x7fff4dd61fff com.apple.CoreMediaIO (900.0 - 5050.1) <63944D63-D138-3774-BAB4-A95679469A43> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff4dd62000 - 0x7fff4dd62fff com.apple.CoreServices (946 - 946) <6EC9F377-EBD8-3358-92D1-6586F6F1E8E9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff4dd63000 - 0x7fff4dddfff7 com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff4dde0000 - 0x7fff4e0b7fff com.apple.CoreServices.CarbonCore (1178.33 - 1178.33) <CB87F0C7-2CD6-3983-8E32-B6A2EC925352> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff4e0b8000 - 0x7fff4e100ff7 com.apple.DictionaryServices (1.2 - 284.16.4) <746EB200-DC51-30AE-9CBC-608A7B4CC8DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff4e101000 - 0x7fff4e109ffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff4e10a000 - 0x7fff4e2bbff7 com.apple.LaunchServices (946 - 946) <A0C91634-9410-38E8-BC11-7A5A369E6BA5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff4e2bc000 - 0x7fff4e35aff7 com.apple.Metadata (10.7.0 - 1191.57) <BFFAED00-2560-318A-BB8F-4E7E5123EC61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff4e35b000 - 0x7fff4e3a5ff7 com.apple.CoreServices.OSServices (946 - 946) <20C4EEF8-D5AC-39A0-9B4A-78F88E3EFBCC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff4e3a6000 - 0x7fff4e40dff7 com.apple.SearchKit (1.4.0 - 1.4.0) <DA08AA6F-A6F1-36C0-87F4-E26294E51A3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff4e40e000 - 0x7fff4e42fff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff4e73a000 - 0x7fff4e89cff3 com.apple.CoreText (352.0 - 584.26.3.2) <59919B0C-CBD5-3877-8D6F-D6048F1E5F42> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff4e89d000 - 0x7fff4e8ddff3 com.apple.CoreVideo (1.8 - 281.4) <10CF8E52-07E3-382B-8091-2CEEEFFA69B4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff4e8de000 - 0x7fff4e96dfff com.apple.framework.CoreWLAN (13.0 - 1375.2) <BF4B29F7-FBC8-3299-98E8-C3F8C04B7C92> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff4eae4000 - 0x7fff4eaefffb com.apple.DirectoryService.Framework (10.14 - 207.200.4) <49B086F4-AFA2-3ABB-8D2E-CE253044C1C0> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff4eaf0000 - 0x7fff4eb9efff com.apple.DiscRecording (9.0.3 - 9030.4.5) <D7A28B57-C025-3D44-BB17-82243B7B91BC> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff4ebc4000 - 0x7fff4ebc9ffb com.apple.DiskArbitration (2.7 - 2.7) <F481F2C0-884E-3265-8111-ABBEC93F0920> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff4ed8f000 - 0x7fff4f13cffb com.apple.Foundation (6.9 - 1575.19) <A85BF812-B784-36B9-89BB-E29772B0708C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff4f1ab000 - 0x7fff4f1daffb com.apple.GSS (4.0 - 2.0) <E2B90D08-3857-3155-9FCC-07D778988EC9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff4f2da000 - 0x7fff4f3e4fff com.apple.Bluetooth (6.0.14 - 6.0.14d3) <C2D1A774-2390-363D-8215-BF51FFCB6CCA> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff4f447000 - 0x7fff4f4d6fff com.apple.framework.IOKit (2.0.2 - 1483.260.4) <8A90F547-86EF-3DFB-92FE-0E2C0376DD84> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff4f4d8000 - 0x7fff4f4e7ffb com.apple.IOSurface (255.6.1 - 255.6.1) <85F85EBB-EA59-3A8B-B3EB-7C20F3CC77AE> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff4f4e8000 - 0x7fff4f53aff3 com.apple.ImageCaptureCore (1.0 - 1534.2) <27942C51-8108-3ED9-B37E-7C365A31EC2D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff4f53b000 - 0x7fff4f6c6fef com.apple.ImageIO.framework (3.3.0 - 1850.2) <75E46A31-D87D-35CE-86A4-96A50971FDB2> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff4f6c7000 - 0x7fff4f6cbffb libGIF.dylib (1850.2) <4774EBDF-583B-3DDD-A0E1-9F427CB6A074> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff4f6cc000 - 0x7fff4f7a8fef libJP2.dylib (1850.2) <697BB77F-A682-339F-8659-35432962432D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff4f7a9000 - 0x7fff4f7cefeb libJPEG.dylib (1850.2) <171A8AC4-AADA-376F-9F2C-B9C978DB1007> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff4fa91000 - 0x7fff4fab7feb libPng.dylib (1850.2) <FBCEE909-F573-3AD6-A45F-AF32612BF8A2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff4fab8000 - 0x7fff4fabaffb libRadiance.dylib (1850.2) <56907025-D5CE-3A9E-ACCB-A376C2599853> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff4fabb000 - 0x7fff4fb08fe7 libTIFF.dylib (1850.2) <F59557C9-C761-3E6F-85D1-0FBFFD53ED5C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff4fe03000 - 0x7fff50c63fff com.apple.JavaScriptCore (14607 - 14607.3.9) <9B7D9E8B-619D-34A1-8FA9-E23C0EA3CD02> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff50c7b000 - 0x7fff50c94fff com.apple.Kerberos (3.0 - 1) <DB1E0679-37E1-3B93-9789-32F63D660C3B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff50c95000 - 0x7fff50ccaff3 com.apple.LDAPFramework (2.4.28 - 194.5) <95DAD9EE-9B6F-3FF5-A5EF-F6672AD3CC55> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff50f4e000 - 0x7fff50f58fff com.apple.MediaAccessibility (1.0 - 114.4) <76C449C5-DB45-3D7F-BFAD-3DACEF15DA21> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff51008000 - 0x7fff516aefff com.apple.MediaToolbox (1.0 - 2290.13) <71BB5D76-34CA-3A30-AECF-24BE29FCC275> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff516b0000 - 0x7fff51758ff7 com.apple.Metal (162.2 - 162.2) <FFF7DFF3-7C4E-32C6-A0B5-C356079D3B7C> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff5175a000 - 0x7fff51773ff3 com.apple.MetalKit (1.0 - 113) <51CDE966-54A7-3556-971B-1173E9986BB8> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
0x7fff51774000 - 0x7fff51793ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <44CE8362-E972-3697-AD6F-15BC863BAEB8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff51794000 - 0x7fff51810fe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <EE8440DA-66DF-3923-ABBC-E0543211C069> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff51811000 - 0x7fff51838fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <E64450DF-2B96-331E-B7F4-666E00571C70> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff51839000 - 0x7fff51964ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <F2CF26B6-73F1-3644-8FE9-CDB9B2C4501F> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff51965000 - 0x7fff5197ffff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <B33A35C3-0393-366B-ACFB-F4BB6A5F7B4A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff51980000 - 0x7fff51981ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <69F14BCF-C5C5-3BF8-9C31-8F87D2D6130A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff52778000 - 0x7fff52784ff7 com.apple.NetFS (6.0 - 4.0) <E917806F-0607-3292-B2D6-A15404D61B99> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff52785000 - 0x7fff528c2ffb com.apple.Network (1.0 - 1) <F46AFEE5-A56E-3BD9-AC07-C5D6334B3572> /System/Library/Frameworks/Network.framework/Versions/A/Network
0x7fff55219000 - 0x7fff55221fe3 libcldcpuengine.dylib (2.11) <AAE49359-EB53-3FD4-ADBF-C60498BD0B34> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff55222000 - 0x7fff55279ff7 com.apple.opencl (2.15.3 - 2.15.3) <056BAD8A-23BC-3F74-9E2C-3AC81E7DEA5A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff5527a000 - 0x7fff55295ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) <F03D84EB-49B2-3A00-9127-B9A269824026> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff55296000 - 0x7fff552a1ffb com.apple.OpenDirectory (10.14 - 207.200.4) <A8020CEE-5B78-3581-A735-EA2833683F31> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff55bf1000 - 0x7fff55bf3fff libCVMSPluginSupport.dylib (17.7.3) <8E051EA7-55B6-3DF1-9821-72C391DE953B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff55bf4000 - 0x7fff55bf9ff3 libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff55bfa000 - 0x7fff55bfefff libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff55bff000 - 0x7fff55c07ff7 libGFXShared.dylib (17.7.3) <8C50BF27-B525-3B23-B86C-F444ADF97851> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff55c08000 - 0x7fff55c13fff libGL.dylib (17.7.3) <2AC457EA-1BD3-3C8E-AFAB-7EA6234EB749> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff55c14000 - 0x7fff55c4efef libGLImage.dylib (17.7.3) <AA027AFA-C115-3861-89B2-0AE946838952> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff55c4f000 - 0x7fff55dc1ff7 libGLProgrammability.dylib (17.7.3) <5BB795C6-97AB-37AC-954C-145E3216AC3B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff55dc2000 - 0x7fff55e00fff libGLU.dylib (17.7.3) <CB3B0579-D9A2-3CA5-8942-0C8344FAD054> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff5679d000 - 0x7fff567acffb com.apple.opengl (17.7.3 - 17.7.3) <94B5CF34-5BD6-3652-9A8C-E9C56E0A9FB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff567ad000 - 0x7fff56944ff7 GLEngine (17.7.3) <B2CB8E1E-4AD3-3CE4-ACB0-89A6749603D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fff56945000 - 0x7fff5696eff3 GLRendererFloat (17.7.3) <A656F9C6-AB06-33C6-842A-600CB8B060C6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff56b29000 - 0x7fff56c72ff7 com.apple.QTKit (7.7.3 - 3040) <D42BB4BE-B347-3113-ACA4-3257A5E45F52> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff56c73000 - 0x7fff56ec7fff com.apple.imageKit (3.0 - 1067) <4F398AF4-828E-3FC2-9E3D-4EE3F36F7619> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff56ec8000 - 0x7fff56fb4fff com.apple.PDFKit (1.0 - 745.3) <EF7A5FC1-017A-329E-BDAE-3D136CE28E64> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff56fb5000 - 0x7fff57484ff7 com.apple.QuartzComposer (5.1 - 370) <9C59494E-8D09-359E-B457-AA893520984C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff57485000 - 0x7fff574abff7 com.apple.quartzfilters (1.10.0 - 83.1) <1CABB0FA-A6DB-3DD5-A598-F298F081E04E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff574ac000 - 0x7fff575adff7 com.apple.QuickLookUIFramework (5.0 - 775.6) <5660DDBA-2BE4-310A-9E81-370106EDB21D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff575ae000 - 0x7fff575aefff com.apple.quartzframework (1.5 - 23) <31783652-5E36-3773-8847-9FECFE2487F0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff575af000 - 0x7fff57806ff7 com.apple.QuartzCore (1.11 - 701.14) <33E846BE-1794-3186-9BF2-6ADF62C782A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff57807000 - 0x7fff5785efff com.apple.QuickLookFramework (5.0 - 775.6) <CB74C63F-E223-3783-9021-8E28091BCDA6> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff57a25000 - 0x7fff57a3cff7 com.apple.SafariServices.framework (14607 - 14607.3.9) <96DFC381-5242-3D06-B115-9367C79801C9> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff5803b000 - 0x7fff5833bfff com.apple.security (7.0 - 58286.270.3.0.1) <DF7677A7-9765-3B6A-9D1C-3589145E4B65> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff5833c000 - 0x7fff583c8fff com.apple.securityfoundation (6.0 - 55185.260.1) <1EE899E6-222A-3526-B505-B0D0B6FA042A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff583c9000 - 0x7fff583f9ffb com.apple.securityinterface (10.0 - 55109.200.8) <02B83641-2D21-3DB8-AAB8-6F8AAD0F6264> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff583fa000 - 0x7fff583fefff com.apple.xpc.ServiceManagement (1.0 - 1) <FCF7BABA-DDDD-3770-8DAC-7069850203C2> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff583ff000 - 0x7fff5844fff3 com.apple.sociald.Social (???) <72EA4265-4024-3143-80D2-A0074698A376> /System/Library/Frameworks/Social.framework/Versions/A/Social
0x7fff58797000 - 0x7fff58804fff com.apple.SystemConfiguration (1.17 - 1.17) <30C8327F-3EFF-3520-9C50-016F8B6B954F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff58a63000 - 0x7fff58dc4fff com.apple.VideoToolbox (1.0 - 2290.13) <7FCB2FC0-EFB8-37C2-B0D3-60AE9FDFE230> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff59099000 - 0x7fff596a5ff7 libwebrtc.dylib (7607.3.9) <4D2A43AD-B95E-3CF7-8822-553411D3EF15> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib
0x7fff596a6000 - 0x7fff5b02cff7 com.apple.WebCore (14607 - 14607.3.9) <F50B7FC8-60F1-3FC4-83E1-0065463B27E6> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff5b02d000 - 0x7fff5b21effb com.apple.WebKitLegacy (14607 - 14607.3.9) <59707811-F21F-388C-A801-C51D32E99392> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
0x7fff5b21f000 - 0x7fff5b76fff7 com.apple.WebKit (14607 - 14607.3.9) <AE6029DD-0CED-3FEF-92D5-DB8D4F9757F9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff5ba40000 - 0x7fff5bae5feb com.apple.APFS (1.0 - 1) <2D22485D-552D-3CB6-9FE1-38547597918F> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff5c072000 - 0x7fff5c07cfff com.apple.accessibility.AXCoreUtilities (1.0 - 1) <C97597AF-865F-3A33-A6EB-807EE9881521> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
0x7fff5c24a000 - 0x7fff5c2e5ffb com.apple.accounts.AccountsDaemon (113 - 113) <0B9AA187-F2DE-320C-BBB0-E038E5C1991D> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsDaemon
0x7fff5c2e6000 - 0x7fff5c319ffb com.apple.framework.accountsui (1.0 - 63.6) <C5041BDA-0464-3CEC-B23E-0EA551D57532> /System/Library/PrivateFrameworks/AccountsUI.framework/Versions/A/AccountsUI
0x7fff5c394000 - 0x7fff5c4deff7 com.apple.AddressBook.core (1.0 - 1) <BAA3419D-2C62-3277-980D-11A9C51B1084> /System/Library/PrivateFrameworks/AddressBookCore.framework/Versions/A/AddressBookCore
0x7fff5c4fa000 - 0x7fff5c4fbff7 com.apple.AggregateDictionary (1.0 - 1) <A6AF8AC4-1F25-37C4-9157-A02E9C200926> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff5c8b9000 - 0x7fff5c9fcfff com.apple.AnnotationKit (1.0 - 232.3.30) <A35C5450-FBA1-3E76-9F27-4ED0179AE6A6> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
0x7fff5c9fd000 - 0x7fff5ca18ff7 com.apple.AppContainer (4.0 - 360.270.2) <644409D7-6C7A-336F-BF4F-80E82FB48BE9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff5ca19000 - 0x7fff5ca26fff com.apple.AppSandbox (4.0 - 360.270.2) <175BF1C6-8CB1-3AAA-A752-781E09DE3D8E> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff5cafc000 - 0x7fff5cb28ff7 com.apple.framework.Apple80211 (13.0 - 1380.2) <16F093EF-370B-3B90-8DB4-E94624431D15> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff5cc50000 - 0x7fff5cc5ffc7 com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff5cd5b000 - 0x7fff5cd66fff com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff5cda7000 - 0x7fff5cdf0ff3 com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff5cdf1000 - 0x7fff5ce01fff com.apple.AppleLDAP (10.14 - 46.200.2) <DA9C0E8E-86D6-3CE8-8A12-B9C2254920A8> /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP
0x7fff5d021000 - 0x7fff5d03efff com.apple.aps.framework (4.0 - 4.0) <83FB4BD1-0C45-3CEF-8640-567DA5A300A7> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff5d03f000 - 0x7fff5d043ff7 com.apple.AppleSRP (5.0 - 1) <EDD16B2E-4F35-3E13-B389-CF77B3CAD4EB> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff5d044000 - 0x7fff5d066fff com.apple.applesauce (1.0 - ???) <F49107C7-3C51-3024-8EF1-C57643BE4F3B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff5d126000 - 0x7fff5d129ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <A48BC6D4-224C-3A25-846B-4D06C53568AE> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff5d12a000 - 0x7fff5d17aff7 com.apple.AppleVAFramework (5.1.4 - 5.1.4) <3399D678-8741-3B70-B8D0-7C63C8ACF7DF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff5d1c5000 - 0x7fff5d1d9ffb com.apple.AssertionServices (1.0 - 1) <456E507A-4561-3628-9FBE-173ACE7429D8> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff5d5a8000 - 0x7fff5d694ff7 com.apple.AuthKit (1.0 - 1) <2765ABE9-54F2-3E45-8A93-1261E251B90D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff5d6fe000 - 0x7fff5d702ffb com.apple.AuthenticationServices (12.0 - 1.0) <F33C914E-F815-39BB-89BB-D1A5D3B3EF84> /System/Library/PrivateFrameworks/AuthenticationServices.framework/Versions/A/AuthenticationServices
0x7fff5d856000 - 0x7fff5d85efff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff5d85f000 - 0x7fff5d8f4fff com.apple.backup.framework (1.10.5 - ???) <4EEC51E2-AE4C-340A-B686-901810152C12> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff5d8f5000 - 0x7fff5d962ff3 com.apple.BaseBoard (360.28 - 360.28) <68FA8044-F3CD-3BC6-9DAB-27DACF52BFC0> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff5d96b000 - 0x7fff5d971ffb com.apple.BezelServicesFW (317.5 - 317.5) <25807B30-117A-33D9-93E6-48E8AE90BD63> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff5d9e8000 - 0x7fff5da24ff3 com.apple.bom (14.0 - 197.6) <A99A6F9A-AFDE-3BC6-95CE-AA90B268B805> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff5e0d3000 - 0x7fff5e0ffffb com.apple.CalendarAgentLink (8.0 - 250) <4702E078-86DF-373F-BF2F-AB6230E19010> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
0x7fff5e7c0000 - 0x7fff5e80fff7 com.apple.ChunkingLibrary (201 - 201) <DFE16C42-24E6-386F-AC50-0058F61980A2> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff5f5c0000 - 0x7fff5f5ccff7 com.apple.CommerceCore (1.0 - 708.5) <B5939A65-745F-3AB7-A212-EF140E148F42> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff5f5cd000 - 0x7fff5f5d6ffb com.apple.CommonAuth (4.0 - 2.0) <93335CB6-ABEB-3EC7-A040-8A667F40D5F3> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff5f5ea000 - 0x7fff5f5ffffb com.apple.commonutilities (8.0 - 900) <080E168B-21B7-3CCA-AB84-BB9911D18DAC> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff5f8a7000 - 0x7fff5f909ff3 com.apple.AddressBook.ContactsFoundation (8.0 - ???) <F5136318-4F71-37D7-A909-5005C698A354> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff5f90a000 - 0x7fff5f92dff3 com.apple.contacts.ContactsPersistence (1.0 - ???) <4082E8CF-5C89-3DE1-97BF-6434F3E03C16> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
0x7fff5fa6f000 - 0x7fff5fe52fef com.apple.CoreAUC (274.0.0 - 274.0.0) <C71F1581-E73B-3DA0-958B-E912C3FB3F23> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff5fe53000 - 0x7fff5fe81ff7 com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <A04A99B8-DAC5-36FC-BAC7-7431600C1F89> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff5ff17000 - 0x7fff5ff75ffb com.apple.corebrightness (1.0 - 1) <61040CCD-0AFD-389F-87E8-0FD9D8C3BAE1> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
0x7fff600ac000 - 0x7fff600b5fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) <89BDACE6-32AA-3933-BD8C-A44650488873> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff602af000 - 0x7fff602c0ff7 com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff60469000 - 0x7fff60558fff com.apple.CoreHandwriting (161 - 1.2) <7CBB18C3-FE95-3352-9D67-B441E89AD10F> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
0x7fff6072a000 - 0x7fff60740ffb com.apple.CoreMediaAuthoring (2.2 - 959) <86089759-E920-37DB-A3BB-F5621C351E4A> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff6086a000 - 0x7fff608d0ff7 com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff60a37000 - 0x7fff60a3bff7 com.apple.CoreOptimization (1.0 - 1) <1C724E01-E9FA-3AEE-BE4B-C4DB8EC0C812> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
0x7fff60a3c000 - 0x7fff60ac8fff com.apple.CorePDF (4.0 - 414) <E4ECDD15-34C0-30C2-AFA9-27C8EDAC3DB0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff60b7d000 - 0x7fff60b85ff7 com.apple.CorePhoneNumbers (1.0 - 1) <11F97C7E-C183-305F-8E6C-9B374F50E26B> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff60b86000 - 0x7fff60bdcff7 com.apple.CorePrediction (1.0 - 1) <A66C8A6F-C3B2-3547-985D-C62C62F9FA48> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
0x7fff60d01000 - 0x7fff60d32ff3 com.apple.CoreServicesInternal (358 - 358) <DD6EF60D-048F-3186-83DA-EB191EDF48AE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff610f9000 - 0x7fff6117dfff com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff6120d000 - 0x7fff61338ff7 com.apple.coreui (2.1 - 499.10) <A80F4B09-F940-346F-A9DF-4EFADD9220A8> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff61339000 - 0x7fff614d9fff com.apple.CoreUtils (5.9 - 590.16) <66CC50F7-766D-33E2-A388-4DE22840ADFB> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff6152d000 - 0x7fff61590ff7 com.apple.framework.CoreWiFi (13.0 - 1375.2) <CA4B835A-27AC-3FAB-9F44-E48548EA2442> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff61591000 - 0x7fff615a2ff7 com.apple.CrashReporterSupport (10.13 - 938.26) <E93D84A6-891D-38EE-BB4F-E9CD681189B7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff61632000 - 0x7fff61641fff com.apple.framework.DFRFoundation (1.0 - 211.1) <E3F02F2A-2059-39CC-85DA-969676EB88EB> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff61642000 - 0x7fff61646ff7 com.apple.DSExternalDisplay (3.1 - 380) <787B9748-B120-3453-B8FE-61D9E363A9E0> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff61688000 - 0x7fff616c6ff7 com.apple.datadetectors (5.0 - 390.2) <B6DEDE81-832C-3078-ACAF-767F01E9615D> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
0x7fff616c7000 - 0x7fff6173cffb com.apple.datadetectorscore (7.0 - 590.27) <06FB1A07-7AE6-3ADD-8E7E-41955FAB38E8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff61788000 - 0x7fff617c5ff7 com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff617c6000 - 0x7fff61901ff7 com.apple.desktopservices (1.13.5 - ???) <265C0E94-B8BF-3F58-8D68-EA001EEA0B15> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff619ab000 - 0x7fff619acff7 com.apple.diagnosticlogcollection (10.0 - 1000) <3C6F41B0-DD03-373C-B423-63C1FA6174EC> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
0x7fff61b0d000 - 0x7fff61bd3fff com.apple.DiskManagement (12.1 - 1555.270.2) <EB207683-FBD6-3B74-A606-3FE22234372C> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff61bd4000 - 0x7fff61bd8ffb com.apple.DisplayServicesFW (3.1 - 380) <62041594-2A4C-3362-87EE-F8E8C8E5BEEC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff61c81000 - 0x7fff61c84ff3 com.apple.EFILogin (2.0 - 2) <210948F9-FD39-392D-8349-34985B3C751C> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff623a4000 - 0x7fff623b9fff com.apple.Engram (1.0 - 1) <F4A93313-F507-3F9A-AB1C-C18F2779B7CF> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
0x7fff623ba000 - 0x7fff6269cff7 com.apple.vision.EspressoFramework (1.0 - 120) <8B56D943-F87B-3A01-B7A4-19DE3312B61C> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff62848000 - 0x7fff62c63fff com.apple.vision.FaceCore (3.3.4 - 3.3.4) <A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff66517000 - 0x7fff66518fff libmetal_timestamp.dylib (902.3.2) <05389463-AF2E-33E2-A14F-1416E4A30835> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
0x7fff67bac000 - 0x7fff67bb7ff7 libGPUSupportMercury.dylib (17.7.3) <36E3C5B1-15EB-3713-BC3A-31A3B074DD24> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff67bb8000 - 0x7fff67bbdfff com.apple.GPUWrangler (3.50.12 - 3.50.12) <6C820ED9-F306-3978-B5B8-432AD97BBDAF> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff67f4b000 - 0x7fff67f6fff3 com.apple.GenerationalStorage (2.0 - 285.101) <84C2E52C-F2C6-3FF8-87E5-3C88A40D3881> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff67f88000 - 0x7fff68987fff com.apple.GeoServices (1.0 - 1364.26.4.19.6) <041715B5-D82F-31F6-9133-955A7A66025F> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff689c9000 - 0x7fff689d8fff com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff689d9000 - 0x7fff689e6ff7 com.apple.GraphicsServices (1.0 - 1.0) <56646B62-B331-31DC-80EB-7996DCAB6944> /System/Library/PrivateFrameworks/GraphicsServices.framework/Versions/A/GraphicsServices
0x7fff68b3e000 - 0x7fff68bb2ffb com.apple.Heimdal (4.0 - 2.0) <D97FCF19-EAD6-3E2F-BE88-F817E45CAE96> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff69600000 - 0x7fff696f9ff7 com.apple.ids (10.0 - 1000) <E6550D7D-0C40-3E52-8A40-0A40F07E5103> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff696fa000 - 0x7fff697fdfff com.apple.idsfoundation (10.0 - 1000) <CF0CD939-BBA4-36AC-B706-5CA40E8766D9> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff69d7c000 - 0x7fff69dddfff com.apple.imfoundation (10.0 - 1000) <098F3A98-2184-32EF-8EC9-87B892CD85CA> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff69eae000 - 0x7fff69eb7fff com.apple.IOAccelMemoryInfo (1.0 - 1) <EA04DC2A-F0C8-3471-9E59-BE8697050ADF> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
0x7fff69eb8000 - 0x7fff69ebfffb com.apple.IOAccelerator (404.14 - 404.14) <11A50171-C8AE-3BBC-9FB9-2A3313FFBD31> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff69ec3000 - 0x7fff69edbfff com.apple.IOPresentment (1.0 - 42.6) <6DFD9A6E-BF95-3A27-89E7-ACAA9E30D90A> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff6a283000 - 0x7fff6a2b0ff7 com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff6a3da000 - 0x7fff6a3deffb com.apple.InternationalSupport (1.0 - 10.15.6) <6226A905-D055-321D-B665-5B0CC4798A74> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff6a448000 - 0x7fff6a455ffb com.apple.IntlPreferences (2.0 - 227.18) <1B5AFE5D-4D6F-3471-8F4D-256F5068093F> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff6a543000 - 0x7fff6a555ff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <30CFE05C-4108-3879-AFAA-5BB02CBE190B> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff6a570000 - 0x7fff6a64bff7 com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff6a64c000 - 0x7fff6a688ff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff6a68f000 - 0x7fff6a694fff com.apple.LinguisticData (1.0 - 238.25) <F529B961-098C-3E4C-A3E9-9DA9BFA1B3F0> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff6a7e6000 - 0x7fff6a7ffff3 com.apple.LookupFramework (1.2 - 251) <50031B5A-F3D5-39CC-954A-B3AEAF52FB89> /System/Library/PrivateFrameworks/Lookup.framework/Versions/A/Lookup
0x7fff6aeb2000 - 0x7fff6aeb5fff com.apple.Mangrove (1.0 - 25) <537A5B2E-4C30-3CFD-8BDC-79F9A04AC327> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff6af39000 - 0x7fff6af3bff3 com.apple.marco (10.0 - 1000) <608B1000-1427-34B3-96B4-5B6079964E7F> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff6af3c000 - 0x7fff6af62ff3 com.apple.MarkupUI (1.0 - 232.3.30) <C6A452D8-CA97-3044-A025-8ED4B7264FE2> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
0x7fff6afca000 - 0x7fff6affdff7 com.apple.MediaKit (16 - 907) <5EE0E7DA-5ACC-33F3-9BF0-47A448C011A1> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff6b389000 - 0x7fff6b3b1ff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff6b3b2000 - 0x7fff6b43fff7 com.apple.gpusw.MetalTools (1.0 - 1) <CBE2176A-8048-3A9C-AFE4-13973D44C704> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff6b456000 - 0x7fff6b46fffb com.apple.MobileAssets (1.0 - 437.250.3) <8BE5B3A0-8F3A-3FAE-9AFF-32836300183C> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
0x7fff6b5ea000 - 0x7fff6b605ffb com.apple.MobileKeyBag (2.0 - 1.0) <C7C5DD21-66DE-31D1-92D9-BBEEAAE156FB> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff6b618000 - 0x7fff6b68dfff com.apple.Montreal (1.0 - 42.15.9) <17BFD046-4362-3A76-A496-648D00FF3743> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
0x7fff6b68e000 - 0x7fff6b6b8ffb com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <42A23EC9-64A7-31C7-BF33-DF4412ED8A3F> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff6b8f4000 - 0x7fff6b8fefff com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff6c01e000 - 0x7fff6c020fff com.apple.OAuth (25 - 25) <64DB58E3-25A4-3C8B-91FB-FACBA01C29B6> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
0x7fff6c15f000 - 0x7fff6c1b0ff3 com.apple.OTSVG (1.0 - ???) <5BF1A9EB-2694-3267-9514-A4EB3BEF4081> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff6d254000 - 0x7fff6d347fff com.apple.PencilKit (1.0 - 1) <79225726-6980-3680-AC0B-D8C5C5DB2224> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit
0x7fff6d348000 - 0x7fff6d357ff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff6d57e000 - 0x7fff6d57efff com.apple.PhoneNumbers (1.0 - 1) <DBCEDE3B-B681-3F6C-89EC-36E4827A2AF9> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff6ed3a000 - 0x7fff6ed5dffb com.apple.pluginkit.framework (1.0 - 1) <910C3AFE-7C46-3C34-B000-4ED92336B9FD> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
0x7fff6f194000 - 0x7fff6f1e8ffb com.apple.ProtectedCloudStorage (1.0 - 1) <53B3C1F3-BB97-379F-8CBA-8FDCDF085793> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff6f1e9000 - 0x7fff6f207ff7 com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff6f385000 - 0x7fff6f388ff3 com.apple.QuickLookNonBaseSystem (1.0 - 1) <69D0DD00-A3D2-3835-91F0-F33BD9D7D740> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
0x7fff6f389000 - 0x7fff6f39eff3 com.apple.QuickLookThumbnailing (1.0 - 1) <B5E746AE-1DCB-3299-8626-10CCCBC2D5EE> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff6f39f000 - 0x7fff6f3effff com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
0x7fff6f52b000 - 0x7fff6f536fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.261.2) <651F994E-21E1-359B-8FEA-6909CE9AAD56> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff6f549000 - 0x7fff6f56bfff com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff6f56c000 - 0x7fff6f57fff3 com.apple.xpc.RemoteXPC (1.0 - 1336.261.2) <E7B66B18-F5DF-3819-BA47-E35122BA09E8> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
0x7fff702aa000 - 0x7fff702f3fff com.apple.Safari.SafeBrowsing (14607 - 14607.3.9) <F4DA3E55-28AF-3406-8120-9B797197ABED> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
0x7fff70c16000 - 0x7fff70c19ff7 com.apple.SecCodeWrapper (4.0 - 360.270.2) <6B331C0A-1A9D-3039-9FF6-89A49B04F846> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff70cf2000 - 0x7fff70d68ff7 com.apple.ShareKit (577.5 - 577.5) <6563A611-6FA7-34E5-BCB2-3E7ECABBD48B> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
0x7fff70d75000 - 0x7fff70e93fff com.apple.Sharing (1288.62 - 1288.62) <48B1F247-7910-3C16-814C-B99DE231F7F0> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff71ca7000 - 0x7fff71f56fff com.apple.SkyLight (1.600.0 - 340.54) <90EB1C2E-B264-3EC4-AF7F-CDE7E7585746> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff72403000 - 0x7fff72409fff com.apple.sociald.SocialServices (87 - 87) <ED5770CB-2251-3AD2-B52A-7B19B8753F54> /System/Library/PrivateFrameworks/SocialServices.framework/Versions/A/SocialServices
0x7fff726f9000 - 0x7fff72705fff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff72da4000 - 0x7fff72de0ff3 com.apple.StreamingZip (1.0 - 1) <046FAD5C-E0C5-3013-B1FE-24C018A0DDCF> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
0x7fff72e56000 - 0x7fff72ee1fc7 com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff733b8000 - 0x7fff733c4fff com.apple.private.SystemPolicy (1.0 - 1) <9CDA85A3-875C-3615-8818-2DC73E9FFE8B> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
0x7fff733c9000 - 0x7fff733d5ffb com.apple.TCC (1.0 - 1) <73CF6FA9-44CE-30C9-887F-235940976585> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff7363b000 - 0x7fff73703ff3 com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff73760000 - 0x7fff7377bfff com.apple.ToneKit (1.0 - 1) <84911F2C-394F-3FFF-8220-B51F581BB8E6> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff7377c000 - 0x7fff737a1ff7 com.apple.ToneLibrary (1.0 - 1) <4D7D03EB-744F-3402-8C3E-B483A74BEF1E> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff737b9000 - 0x7fff737bafff com.apple.TrustEvaluationAgent (2.0 - 31.200.1) <15DF9C73-54E4-3C41-BCF4-378338C55FB4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff737c0000 - 0x7fff73977ffb com.apple.UIFoundation (1.0 - 551.2) <917480B5-14BE-30E0-ABE6-9702336CC35A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff739c5000 - 0x7fff739cbffb com.apple.URLFormatting (59 - 59.46) <8FA3A00C-7BFF-33B9-95EA-A7FC04091D4D> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
0x7fff745f3000 - 0x7fff746ccfff com.apple.ViewBridge (401.1 - 401.1) <18144EC1-5DEF-369C-8EBA-2826E7142784> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff74b0f000 - 0x7fff74d81ffb libAWDSupportFramework.dylib (2131) <AC78D095-4D47-37DF-AE0D-8EEC7C2553F0> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
0x7fff74d82000 - 0x7fff74d93fff libprotobuf-lite.dylib (2131) <297886A7-F889-38AA-B6F6-162598345EC4> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
0x7fff74d94000 - 0x7fff74deefff libprotobuf.dylib (2131) <05141A5F-1870-3AA7-B339-6EB13E375BA4> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
0x7fff74def000 - 0x7fff74e30ff7 com.apple.awd (1.0 - 930.11) <652A1F08-52A3-36CC-8055-EF57143BED76> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
0x7fff74ea4000 - 0x7fff74ea7fff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff752a8000 - 0x7fff752aaffb com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff752ab000 - 0x7fff752c0fff com.apple.login (3.0 - 3.0) <E168F05D-A5DF-3848-8686-DF5015EA4BA4> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
0x7fff752f7000 - 0x7fff75328ffb com.apple.contacts.vCard (1.0 - ???) <651AD944-66CA-3408-818F-484E0F53A1DE> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff754e4000 - 0x7fff754f8ffb libAccessibility.dylib (2402.95) <6BC07631-25B1-3C31-A2CB-E5E477836A5E> /usr/lib/libAccessibility.dylib
0x7fff75574000 - 0x7fff755a8fff libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
0x7fff755ab000 - 0x7fff755b5ff7 libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
0x7fff755b6000 - 0x7fff7563ffff libCoreStorage.dylib (546.50.1) <8E643B27-7986-3351-B37E-038FB6794BF9> /usr/lib/libCoreStorage.dylib
0x7fff75643000 - 0x7fff75644ffb libDiagnosticMessagesClient.dylib (107) <A14D0819-0970-34CD-8680-80E4D7FE8C2C> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff7567b000 - 0x7fff758d2ff3 libFosl_dynamic.dylib (18.3.4) <1B5DD4E2-8AE0-315E-829E-D5BFCD264EA8> /usr/lib/libFosl_dynamic.dylib
0x7fff758f2000 - 0x7fff758f9fff libMatch.1.dylib (31.200.1) <EF8164CB-B599-39D9-9E73-4958A372DC0B> /usr/lib/libMatch.1.dylib
0x7fff75923000 - 0x7fff75942fff libMobileGestalt.dylib (645.270.1) <99A06C8A-97D6-383D-862C-F453BABB48A4> /usr/lib/libMobileGestalt.dylib
0x7fff75943000 - 0x7fff75943fff libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff75a83000 - 0x7fff75a84ffb libSystem.B.dylib (1252.250.1) <B1006948-7AD0-3CA9-81E0-833F4DD6BFB4> /usr/lib/libSystem.B.dylib
0x7fff75a85000 - 0x7fff75affff7 libTelephonyUtilDynamic.dylib (3705) <155194D3-2B24-3A5F-9C04-364E0D583C60> /usr/lib/libTelephonyUtilDynamic.dylib
0x7fff75b00000 - 0x7fff75b01fff libThaiTokenizer.dylib (2.15.1) <ADB37DC3-7D9B-3E73-A72A-BCC3433C937A> /usr/lib/libThaiTokenizer.dylib
0x7fff75b13000 - 0x7fff75b29ffb libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
0x7fff75b2a000 - 0x7fff75b53ffb libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
0x7fff75b54000 - 0x7fff75bd3fff libate.dylib (1.13.8) <92B44EDB-369D-3EE8-AEC5-61F8B9313DBF> /usr/lib/libate.dylib
0x7fff75bd7000 - 0x7fff75bd7ff3 libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
0x7fff75bd8000 - 0x7fff75ca6fff libboringssl.dylib (109.250.2) <8044BBB7-F6E0-36C1-95D1-9C2AB19CF94A> /usr/lib/libboringssl.dylib
0x7fff75ca7000 - 0x7fff75cb7ffb libbsm.0.dylib (39.200.18) <CF381E0B-025B-364F-A83D-2527E03F1AA3> /usr/lib/libbsm.0.dylib
0x7fff75cb8000 - 0x7fff75cc5fff libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
0x7fff75cc6000 - 0x7fff75d19ff7 libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
0x7fff75d1a000 - 0x7fff75d2fff7 libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
0x7fff75d30000 - 0x7fff75d30ff3 libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
0x7fff75d31000 - 0x7fff75d41ffb libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
0x7fff75d42000 - 0x7fff75d5affb libcompression.dylib (52.250.2) <7F4BB18C-1FB4-3825-8D8B-6E6B168774C6> /usr/lib/libcompression.dylib
0x7fff75fcf000 - 0x7fff75fe5fff libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
0x7fff75fe6000 - 0x7fff75fe7ff3 libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff76185000 - 0x7fff7627dff7 libcrypto.35.dylib (22.260.1) <91C3D71A-4D1D-331D-89CC-67863DF10574> /usr/lib/libcrypto.35.dylib
0x7fff76480000 - 0x7fff7648bff7 libcsfde.dylib (546.50.1) <7BAF8FCF-33A1-3C7C-8FEB-2020C8ED6063> /usr/lib/libcsfde.dylib
0x7fff76493000 - 0x7fff764e9ff3 libcups.2.dylib (462.12) <095619DC-9233-3937-9E50-5F10D917A40D> /usr/lib/libcups.2.dylib
0x7fff7661d000 - 0x7fff7661dfff libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
0x7fff7664f000 - 0x7fff76654ff7 libgermantok.dylib (17.15.2) <E5F0F794-FF27-3D64-AE52-C78C6A84DD67> /usr/lib/libgermantok.dylib
0x7fff76655000 - 0x7fff7665aff7 libheimdal-asn1.dylib (520.270.1) <73F60D6F-76F8-35EF-9C86-9A81225EE4BE> /usr/lib/libheimdal-asn1.dylib
0x7fff76685000 - 0x7fff76775fff libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
0x7fff76776000 - 0x7fff769d7ffb libicucore.A.dylib (62141.0.1) <A0D63918-76E9-3C1B-B255-46F4C1DA7FE8> /usr/lib/libicucore.A.dylib
0x7fff76a24000 - 0x7fff76a25fff liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
0x7fff76a26000 - 0x7fff76a3eff3 liblzma.5.dylib (10.200.3) <E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0> /usr/lib/liblzma.5.dylib
0x7fff76a56000 - 0x7fff76afaff7 libmecab.1.0.0.dylib (779.24.1) <A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2> /usr/lib/libmecab.1.0.0.dylib
0x7fff76afb000 - 0x7fff76cfffff libmecabra.dylib (779.24.1) <D71F71E0-30E2-3DB3-B636-7DE13D51FB4B> /usr/lib/libmecabra.dylib
0x7fff76ed7000 - 0x7fff77228ff7 libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
0x7fff772ba000 - 0x7fff77a3ffdf libobjc.A.dylib (756.2) <7C312627-43CB-3234-9324-4DEA92D59F50> /usr/lib/libobjc.A.dylib
0x7fff77a51000 - 0x7fff77a55ffb libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
0x7fff77a58000 - 0x7fff77a8dfff libpcap.A.dylib (79.250.1) <C0893641-7DFF-3A33-BDAE-190FF54837E8> /usr/lib/libpcap.A.dylib
0x7fff77ba6000 - 0x7fff77bbeffb libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
0x7fff77bc0000 - 0x7fff77bfbff3 libsandbox.1.dylib (851.270.1) <04B924EF-2385-34DF-807E-93AAD9EF3AAB> /usr/lib/libsandbox.1.dylib
0x7fff77bfc000 - 0x7fff77c0eff7 libsasl2.2.dylib (211) <10987614-6763-3B5D-9F28-91D121BB4924> /usr/lib/libsasl2.2.dylib
0x7fff77c0f000 - 0x7fff77c10ff7 libspindump.dylib (267.3) <A584E403-8C95-3841-9C16-E22664A5A63F> /usr/lib/libspindump.dylib
0x7fff77c11000 - 0x7fff77deefff libsqlite3.dylib (274.26) <6404BA3B-BCA4-301F-B2FE-8776105A2AA3> /usr/lib/libsqlite3.dylib
0x7fff77f5d000 - 0x7fff77f8dffb libtidy.A.dylib (16.4) <6BDC3816-F222-33B6-848C-D8D5924E8959> /usr/lib/libtidy.A.dylib
0x7fff77fa7000 - 0x7fff78006ffb libusrtcp.dylib (1229.250.15) <36BBD474-FAE5-366F-946D-16C5C4B4A792> /usr/lib/libusrtcp.dylib
0x7fff78007000 - 0x7fff7800aff7 libutil.dylib (51.200.4) <CE9B18C9-66ED-32D4-9D29-01F8FCB467B0> /usr/lib/libutil.dylib
0x7fff7800b000 - 0x7fff78018fff libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
0x7fff7801d000 - 0x7fff780ffff3 libxml2.2.dylib (32.10) <AA4E1B1F-0FDE-3274-9FA5-75446298D1AC> /usr/lib/libxml2.2.dylib
0x7fff78100000 - 0x7fff78128ff3 libxslt.1.dylib (16.5) <E330D3A2-E32B-378A-973E-A8D245C0F712> /usr/lib/libxslt.1.dylib
0x7fff78129000 - 0x7fff7813bff7 libz.1.dylib (70.200.4) <B048FC1F-058F-3A08-A1FE-81D5308CB3E6> /usr/lib/libz.1.dylib
0x7fff781be000 - 0x7fff781d1ff3 libswiftAppKit.dylib (??? - ???) <390B2331-342E-367F-9308-01447A4442E6> /usr/lib/swift/libswiftAppKit.dylib
0x7fff781ea000 - 0x7fff7855bff7 libswiftCore.dylib (5.0 - 1001.8.63.13) <4FE40B7B-1413-3A25-959B-D78B78682D12> /usr/lib/swift/libswiftCore.dylib
0x7fff78562000 - 0x7fff78569ffb libswiftCoreData.dylib (??? - ???) <7D7D21CE-8F68-390F-BE47-2AB1DC0439ED> /usr/lib/swift/libswiftCoreData.dylib
0x7fff7856a000 - 0x7fff7856cff3 libswiftCoreFoundation.dylib (??? - ???) <3192FF82-E322-3B09-805F-6AEB48C00478> /usr/lib/swift/libswiftCoreFoundation.dylib
0x7fff7856d000 - 0x7fff7857bff3 libswiftCoreGraphics.dylib (??? - ???) <FEFE340D-865B-3C8C-AF13-AB1DE8866C01> /usr/lib/swift/libswiftCoreGraphics.dylib
0x7fff7857c000 - 0x7fff7857fffb libswiftCoreImage.dylib (??? - ???) <4AC0B024-190B-31F8-8EC5-C9E2761C580E> /usr/lib/swift/libswiftCoreImage.dylib
0x7fff78592000 - 0x7fff78598ffb libswiftDarwin.dylib (??? - ???) <FD515CE3-A057-36EC-A787-E78F773973F3> /usr/lib/swift/libswiftDarwin.dylib
0x7fff78599000 - 0x7fff785affff libswiftDispatch.dylib (??? - ???) <40AA9542-FE66-37F0-B0BE-70C8D057488C> /usr/lib/swift/libswiftDispatch.dylib
0x7fff785b0000 - 0x7fff78741ff7 libswiftFoundation.dylib (??? - ???) <A24C3092-3B6D-3680-945E-292A0D31436F> /usr/lib/swift/libswiftFoundation.dylib
0x7fff78750000 - 0x7fff78752ff3 libswiftIOKit.dylib (??? - ???) <C7E2E0F9-D04C-348E-A5B6-DD59A9F40BDD> /usr/lib/swift/libswiftIOKit.dylib
0x7fff78760000 - 0x7fff78767fff libswiftMetal.dylib (??? - ???) <03736BFF-B1E4-32FB-B3C3-12FFF7681854> /usr/lib/swift/libswiftMetal.dylib
0x7fff787a9000 - 0x7fff787acff7 libswiftObjectiveC.dylib (??? - ???) <A4201F26-A2B3-3F2A-8B0F-D17F166C26BC> /usr/lib/swift/libswiftObjectiveC.dylib
0x7fff787b7000 - 0x7fff787bcffb libswiftQuartzCore.dylib (??? - ???) <FB83F05B-766E-3211-8CC7-E8B634B34BA0> /usr/lib/swift/libswiftQuartzCore.dylib
0x7fff788f4000 - 0x7fff788f6ffb libswiftXPC.dylib (??? - ???) <61CDCF0E-FFD3-31FD-A6B1-175B06EA6659> /usr/lib/swift/libswiftXPC.dylib
0x7fff7891f000 - 0x7fff78923ff3 libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
0x7fff78924000 - 0x7fff7892eff3 libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
0x7fff7892f000 - 0x7fff78936ff7 libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
0x7fff78937000 - 0x7fff78940ff7 libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
0x7fff78941000 - 0x7fff789c5fc3 libcorecrypto.dylib (602.260.2) <01464D24-570C-3B83-9D18-467769E0FCDD> /usr/lib/system/libcorecrypto.dylib
0x7fff78a4c000 - 0x7fff78a85ff7 libdispatch.dylib (1008.270.1) <97273678-E94C-3C8C-89F6-2E2020F4B43B> /usr/lib/system/libdispatch.dylib
0x7fff78a86000 - 0x7fff78ab2ff7 libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
0x7fff78ab3000 - 0x7fff78ab3ffb libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
0x7fff78ab4000 - 0x7fff78ac0ff3 libkxld.dylib (4903.271.2) <FBF128C8-D3F0-36B6-983A-A63B8A3E0E52> /usr/lib/system/libkxld.dylib
0x7fff78ac1000 - 0x7fff78ac1ff7 liblaunch.dylib (1336.261.2) <2B07E27E-D404-3E98-9D28-BCA641E5C479> /usr/lib/system/liblaunch.dylib
0x7fff78ac2000 - 0x7fff78ac7fff libmacho.dylib (927.0.3) <A377D608-77AB-3F6E-90F0-B4F251A5C12F> /usr/lib/system/libmacho.dylib
0x7fff78ac8000 - 0x7fff78acaffb libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
0x7fff78acb000 - 0x7fff78accff7 libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
0x7fff78acd000 - 0x7fff78ae4ff3 libsystem_asl.dylib (356.200.4) <A62A7249-38B8-33FA-9875-F1852590796C> /usr/lib/system/libsystem_asl.dylib
0x7fff78ae5000 - 0x7fff78ae5ff7 libsystem_blocks.dylib (73) <A453E8EE-860D-3CED-B5DC-BE54E9DB4348> /usr/lib/system/libsystem_blocks.dylib
0x7fff78ae6000 - 0x7fff78b6dfff libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
0x7fff78b6e000 - 0x7fff78b71ffb libsystem_configuration.dylib (963.270.3) <2B4A836D-68A4-33E6-8D48-CD4486B03387> /usr/lib/system/libsystem_configuration.dylib
0x7fff78b72000 - 0x7fff78b75ff7 libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
0x7fff78b76000 - 0x7fff78b7cfff libsystem_darwin.dylib (1272.250.1) <EC9B39A5-9592-3577-8997-7DC721D20D8C> /usr/lib/system/libsystem_darwin.dylib
0x7fff78b7d000 - 0x7fff78b83ff7 libsystem_dnssd.dylib (878.270.2) <E9A5ACCF-E35F-3909-AF0A-2A37CD217276> /usr/lib/system/libsystem_dnssd.dylib
0x7fff78b84000 - 0x7fff78bcfffb libsystem_info.dylib (517.200.9) <D09D5AE0-2FDC-3A6D-93EC-729F931B1457> /usr/lib/system/libsystem_info.dylib
0x7fff78bd0000 - 0x7fff78bf8ff7 libsystem_kernel.dylib (4903.271.2) <EA204E3C-870B-30DD-B4AF-D1BB66420D14> /usr/lib/system/libsystem_kernel.dylib
0x7fff78bf9000 - 0x7fff78c44ff7 libsystem_m.dylib (3158.200.7) <F19B6DB7-014F-3820-831F-389CCDA06EF6> /usr/lib/system/libsystem_m.dylib
0x7fff78c45000 - 0x7fff78c6ffff libsystem_malloc.dylib (166.270.1) <011F3AD0-8E6A-3A89-AE64-6E5F6840F30A> /usr/lib/system/libsystem_malloc.dylib
0x7fff78c70000 - 0x7fff78c7aff7 libsystem_networkextension.dylib (767.250.2) <FF06F13A-AEFE-3A27-A073-910EF78AEA36> /usr/lib/system/libsystem_networkextension.dylib
0x7fff78c7b000 - 0x7fff78c82fff libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
0x7fff78c83000 - 0x7fff78c8cfef libsystem_platform.dylib (177.270.1) <9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C> /usr/lib/system/libsystem_platform.dylib
0x7fff78c8d000 - 0x7fff78c97ff7 libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
0x7fff78c98000 - 0x7fff78c9bff7 libsystem_sandbox.dylib (851.270.1) <9494594B-5199-3186-82AB-5FF8BED6EE16> /usr/lib/system/libsystem_sandbox.dylib
0x7fff78c9c000 - 0x7fff78c9eff3 libsystem_secinit.dylib (30.260.2) <EF1EA47B-7B22-35E8-BD9B-F7003DCB96AE> /usr/lib/system/libsystem_secinit.dylib
0x7fff78c9f000 - 0x7fff78ca6ff3 libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
0x7fff78ca7000 - 0x7fff78cbcfff libsystem_trace.dylib (906.260.1) <FC761C3B-5434-3A52-912D-F1B15FAA8EB2> /usr/lib/system/libsystem_trace.dylib
0x7fff78cbe000 - 0x7fff78cc3ffb libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
0x7fff78cc4000 - 0x7fff78cf3fff libxpc.dylib (1336.261.2) <7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4> /usr/lib/system/libxpc.dylib
External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 226890
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=539.3M resident=0K(0%) swapped_out_or_unallocated=539.3M(100%)
Writable regions: Total=2.7G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.7G(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 256K 2
Activity Tracing 256K 1
CG backing stores 4680K 6
CG image 152K 11
CoreAnimation 29.6M 17
CoreGraphics 8K 1
CoreImage 144K 12
CoreServices 164K 1
CoreUI image data 2008K 22
CoreUI image file 440K 9
Foundation 20K 2
JS JIT generated code 1.0G 3
Kernel Alloc Once 8K 1
MALLOC 392.3M 48
MALLOC guard page 48K 8
MALLOC_MEDIUM (reserved) 896.0M 8 reserved VM address space (unallocated)
MALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated)
Memory Tag 242 12K 1
SQLite page cache 128K 2
STACK GUARD 56.1M 24
Stack 20.2M 25
Stack Guard 4K 1
VM_ALLOCATE 156K 21
WebKit Malloc 5548K 8
__DATA 83.2M 396
__FONT_DATA 4K 1
__GLSLBUILTINS 5176K 1
__LINKEDIT 223.9M 10
__TEXT 315.4M 390
__UNICODE 564K 1
mapped file 88.6M 34
shared memory 644K 11
=========== ======= =======
TOTAL 3.5G 1079
TOTAL, minus reserved VM space 2.2G 1079
```
### Reproduced
It happens everytime.
***(Optional)*** If applicable, add screenshots, animations, or videos to help illustrate your problem.
***(Required)***
Make|Model|OS Version|App Version
-|-|-|-
Apple|Macbook Pro|10.14.6|1.7
| priority | simplenote doesn t start on osx expected the simplenote app to start and be usable observed i installed the simplenote app from the app store and went to start it and it flashed for a millisecond and then disappeared after a couple more seconds a box popped up saying that simplenote quit unexpectedly the following is the report i m not sure if it s helpful process simplenote path applications simplenote app contents macos simplenote identifier com automattic simplenotemac version app item id app external id code type native parent process responsible simplenote user id date time os version mac os x report version bridge os version anonymous uuid sleep wake uuid time awake since boot seconds time since wake seconds system integrity protection enabled crashed thread dispatch queue com apple main thread exception type exc bad instruction sigill exception codes exception note exc corpse notify termination signal illegal instruction termination reason namespace signal code terminating process exc handler application specific information crashing on exception invalid parameter not satisfying astring nil application specific backtrace corefoundation exceptionpreprocess libobjc a dylib objc exception throw corefoundation foundation appkit appkit appkit simplenote simplenote appkit appkit appkit appkit appkit appkit appkit appkit appkit appkit appkit appkit nsviewlayout appkit appkit appkit appkit appkit appkit appkit appkit appkit appkit appkit appkit nswindowgetdisplaycycleobserverfordisplay block invoke appkit nsdisplaycycleobserverinvoke appkit nsdisplaycycleflush quartzcore commit quartzcore appkit block invoke corefoundation cfrunloop is calling out to an observer callback function corefoundation cfrunloopdoobservers corefoundation cfrunlooprun corefoundation cfrunlooprunspecific hitoolbox runcurrenteventloopinmode hitoolbox receivenexteventcommon hitoolbox blockuntilnexteventmatchinglistinmodewithfilter appkit dpsnextevent appkit appkit appkit nsapplicationmain libdyld dylib start thread crashed dispatch queue com apple main thread com apple appkit com apple appkit block invoke com apple corefoundation cfrunloop is calling out to an observer callback function com apple corefoundation cfrunloopdoobservers com apple corefoundation cfrunlooprun com apple corefoundation cfrunlooprunspecific com apple hitoolbox runcurrenteventloopinmode com apple hitoolbox receivenexteventcommon com apple hitoolbox blockuntilnexteventmatchinglistinmodewithfilter com apple appkit dpsnextevent com apple appkit com apple appkit com apple appkit nsapplicationmain libdyld dylib start thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread dispatch queue com simperium processor tag libsystem kernel dylib ulock wait libdispatch dylib dispatch ulock wait libdispatch dylib dispatch thread event wait slow libdispatch dylib dispatch wait for queue libdispatch dylib dispatch sync f slow com apple coredata org cocoapods simperium osx com apple corefoundation cfnotificationcenter is calling out to an observer com apple corefoundation cfxregistrationpost block invoke com apple corefoundation cfxregistrationpost com apple corefoundation cfxnotificationpost block invoke com apple corefoundation com apple corefoundation cfxnotificationpost com apple foundation com apple coredata com apple coredata com apple coredata org cocoapods simperium osx org cocoapods simperium osx block invoke org cocoapods simperium osx org cocoapods simperium osx org cocoapods simperium osx org cocoapods simperium osx org cocoapods simperium osx org cocoapods simperium osx block invoke libdispatch dylib dispatch call block and release libdispatch dylib dispatch client callout libdispatch dylib dispatch lane serial drain libdispatch dylib dispatch lane invoke libdispatch dylib dispatch workloop worker thread libsystem pthread dylib pthread wqthread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread libsystem pthread dylib start wqthread thread javascriptcore bmalloc scavenger libsystem kernel dylib psynch cvwait libsystem pthread dylib pthread cond wait libc dylib std condition variable do timed wait std unique lock std chrono time point com apple javascriptcore std cv status std condition variable wait until std unique lock std chrono time point const com apple javascriptcore std cv status std condition variable any wait until std chrono steady clock std chrono duration std unique lock std chrono time point const com apple javascriptcore bmalloc scavenger threadrunloop com apple javascriptcore bmalloc scavenger threadentrypoint bmalloc scavenger com apple javascriptcore void std thread proxy void bmalloc scavenger bmalloc scavenger void libsystem pthread dylib pthread body libsystem pthread dylib pthread start libsystem pthread dylib thread start thread com apple coreanimation render server libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple quartzcore ca render server server thread void com apple quartzcore thread fun void libsystem pthread dylib pthread body libsystem pthread dylib pthread start libsystem pthread dylib thread start thread libsystem kernel dylib semwait signal libsystem c dylib nanosleep libsystem c dylib sleep org cocoapods sentry monitorcacheddata libsystem pthread dylib pthread body libsystem pthread dylib pthread start libsystem pthread dylib thread start thread com squareup socketrocket networkthread libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple corefoundation cfrunloopservicemachport com apple corefoundation cfrunlooprun com apple corefoundation cfrunlooprunspecific com apple foundation org cocoapods simperium osx com apple foundation nsthread start libsystem pthread dylib pthread body libsystem pthread dylib pthread start libsystem pthread dylib thread start thread com apple nsurlconnectionloader libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple corefoundation cfrunloopservicemachport com apple corefoundation cfrunlooprun com apple corefoundation cfrunlooprunspecific com apple cfnetwork com apple foundation nsthread start libsystem pthread dylib pthread body libsystem pthread dylib pthread start libsystem pthread dylib thread start thread com apple cfsocket private libsystem kernel dylib select com apple corefoundation cfsocketmanager libsystem pthread dylib pthread body libsystem pthread dylib pthread start libsystem pthread dylib thread start thread libsystem pthread dylib start wqthread thread com apple nseventthread libsystem kernel dylib mach msg trap libsystem kernel dylib mach msg com apple skylight cgssnarfanddispatchdatagrams com apple skylight slsgetnexteventrecordinternal com apple skylight sleventcreatenextevent com apple hitoolbox pulleventsfromwindowserveronconnection unsigned int unsigned char cfmachportboost com apple hitoolbox messagehandler cfmachport void long void com apple corefoundation cfmachportperform com apple corefoundation cfrunloop is calling out to a perform function com apple corefoundation com apple corefoundation cfrunlooprun com apple corefoundation cfrunlooprunspecific com apple appkit nseventthread libsystem pthread dylib pthread body libsystem pthread dylib pthread start libsystem pthread dylib thread start thread crashed with thread state bit rax rbx rcx rdx rdi rsi rbp rsp rip rfl logical cpu error code trap number binary images com automattic simplenotemac applications simplenote app contents macos simplenote org cocoapods automattictracks applications simplenote app contents frameworks automattictracks framework versions a automattictracks org cocoapods cocoalumberjack applications simplenote app contents frameworks cocoalumberjack framework versions a cocoalumberjack org cocoapods reachability applications simplenote app contents frameworks reachability framework versions a reachability org cocoapods sentry applications simplenote app contents frameworks sentry framework versions a sentry org cocoapods simperium osx applications simplenote app contents frameworks simperium osx framework versions a simperium osx libobjc trampolines dylib usr lib libobjc trampolines dylib com apple system library extensions bundle contents macos dyld usr lib dyld com apple rawcamera bundle system library coreservices rawcamera bundle contents macos rawcamera dylib system library extensions bundle contents macos dylib com apple system library extensions bundle contents macos com apple driver appleintelkblgraphicsgldriver system library extensions appleintelkblgraphicsgldriver bundle contents macos appleintelkblgraphicsgldriver com apple driver appleintelkblgraphicsmtldriver system library extensions appleintelkblgraphicsmtldriver bundle contents macos appleintelkblgraphicsmtldriver com apple avfoundation system library frameworks avfoundation framework versions a avfoundation com apple audio avfaudio system library frameworks avfoundation framework versions a frameworks avfaudio framework versions a avfaudio com apple accelerate accelerate system library frameworks accelerate framework versions a accelerate libcginterfaces dylib system library frameworks accelerate framework versions a frameworks vimage framework versions a libraries libcginterfaces dylib com apple vimage system library frameworks accelerate framework versions a frameworks vimage framework versions a vimage libblas dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libblas dylib libbnns dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libbnns dylib liblapack dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a liblapack dylib liblinearalgebra dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a liblinearalgebra dylib libquadrature dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libquadrature dylib libsparse dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libsparse dylib libsparseblas dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libsparseblas dylib libvdsp dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libvdsp dylib libvmisc dylib system library frameworks accelerate framework versions a frameworks veclib framework versions a libvmisc dylib com apple accelerate veclib veclib system library frameworks accelerate framework versions a frameworks veclib framework versions a veclib com apple accounts system library frameworks accounts framework versions a accounts com apple addressbook framework system library frameworks addressbook framework versions a addressbook com apple appkit system library frameworks appkit framework versions c appkit com apple applicationservices system library frameworks applicationservices framework versions a applicationservices com apple applicationservices ats system library frameworks applicationservices framework versions a frameworks ats framework versions a ats libfontparser dylib system library frameworks applicationservices framework versions a frameworks ats framework versions a resources libfontparser dylib libfontregistry dylib system library frameworks applicationservices framework versions a frameworks ats framework versions a resources libfontregistry dylib libtruetypescaler dylib system library frameworks applicationservices framework versions a frameworks ats framework versions a resources libtruetypescaler dylib com apple colorsynclegacy system library frameworks applicationservices framework versions a frameworks colorsynclegacy framework versions a colorsynclegacy com apple hiservices system library frameworks applicationservices framework versions a frameworks hiservices framework versions a hiservices com apple langanalysis system library frameworks applicationservices framework versions a frameworks langanalysis framework versions a langanalysis com apple print framework printcore system library frameworks applicationservices framework versions a frameworks printcore framework versions a printcore com apple qd system library frameworks applicationservices framework versions a frameworks qd framework versions a qd com apple speech synthesis framework system library frameworks applicationservices framework versions a frameworks speechsynthesis framework versions a speechsynthesis com apple audio toolbox audiotoolbox system library frameworks audiotoolbox framework versions a audiotoolbox com apple audio units audiounit system library frameworks audiounit framework versions a audiounit com apple cfnetwork system library frameworks cfnetwork framework versions a cfnetwork com apple carbon system library frameworks carbon framework versions a carbon com apple commonpanels system library frameworks carbon framework versions a frameworks commonpanels framework versions a commonpanels com apple hitoolbox system library frameworks carbon framework versions a frameworks hitoolbox framework versions a hitoolbox com apple help system library frameworks carbon framework versions a frameworks help framework versions a help com apple imagecapture system library frameworks carbon framework versions a frameworks imagecapture framework versions a imagecapture com apple ink framework system library frameworks carbon framework versions a frameworks ink framework versions a ink com apple openscripting system library frameworks carbon framework versions a frameworks openscripting framework versions a openscripting com apple print framework print system library frameworks carbon framework versions a frameworks print framework versions a print com apple securityhi system library frameworks carbon framework versions a frameworks securityhi framework versions a securityhi com apple speech recognition framework system library frameworks carbon framework versions a frameworks speechrecognition framework versions a speechrecognition com apple cocoa system library frameworks cocoa framework versions a cocoa com apple colorsync system library frameworks colorsync framework versions a colorsync com apple contacts system library frameworks contacts framework versions a contacts com apple audio coreaudio system library frameworks coreaudio framework versions a coreaudio com apple corebluetooth system library frameworks corebluetooth framework versions a corebluetooth com apple coredata system library frameworks coredata framework versions a coredata com apple coredisplay system library frameworks coredisplay framework versions a coredisplay com apple corefoundation system library frameworks corefoundation framework versions a corefoundation com apple coregraphics system library frameworks coregraphics framework versions a coregraphics com apple coreimage system library frameworks coreimage framework versions a coreimage com apple corelocation system library frameworks corelocation framework versions a corelocation com apple coreml system library frameworks coreml framework versions a coreml com apple coremedia system library frameworks coremedia framework versions a coremedia com apple coremediaio system library frameworks coremediaio framework versions a coremediaio com apple coreservices system library frameworks coreservices framework versions a coreservices com apple ae system library frameworks coreservices framework versions a frameworks ae framework versions a ae com apple coreservices carboncore system library frameworks coreservices framework versions a frameworks carboncore framework versions a carboncore com apple dictionaryservices system library frameworks coreservices framework versions a frameworks dictionaryservices framework versions a dictionaryservices com apple coreservices fsevents system library frameworks coreservices framework versions a frameworks fsevents framework versions a fsevents com apple launchservices system library frameworks coreservices framework versions a frameworks launchservices framework versions a launchservices com apple metadata system library frameworks coreservices framework versions a frameworks metadata framework versions a metadata com apple coreservices osservices system library frameworks coreservices framework versions a frameworks osservices framework versions a osservices com apple searchkit system library frameworks coreservices framework versions a frameworks searchkit framework versions a searchkit com apple coreservices sharedfilelist system library frameworks coreservices framework versions a frameworks sharedfilelist framework versions a sharedfilelist com apple coretext system library frameworks coretext framework versions a coretext com apple corevideo system library frameworks corevideo framework versions a corevideo com apple framework corewlan system library frameworks corewlan framework versions a corewlan com apple directoryservice framework system library frameworks directoryservice framework versions a directoryservice com apple discrecording system library frameworks discrecording framework versions a discrecording com apple diskarbitration system library frameworks diskarbitration framework versions a diskarbitration com apple foundation system library frameworks foundation framework versions c foundation com apple gss system library frameworks gss framework versions a gss com apple bluetooth system library frameworks iobluetooth framework versions a iobluetooth com apple framework iokit system library frameworks iokit framework versions a iokit com apple iosurface system library frameworks iosurface framework versions a iosurface com apple imagecapturecore system library frameworks imagecapturecore framework versions a imagecapturecore com apple imageio framework system library frameworks imageio framework versions a imageio libgif dylib system library frameworks imageio framework versions a resources libgif dylib dylib system library frameworks imageio framework versions a resources dylib libjpeg dylib system library frameworks imageio framework versions a resources libjpeg dylib libpng dylib system library frameworks imageio framework versions a resources libpng dylib libradiance dylib system library frameworks imageio framework versions a resources libradiance dylib libtiff dylib system library frameworks imageio framework versions a resources libtiff dylib com apple javascriptcore system library frameworks javascriptcore framework versions a javascriptcore com apple kerberos system library frameworks kerberos framework versions a kerberos com apple ldapframework system library frameworks ldap framework versions a ldap com apple mediaaccessibility system library frameworks mediaaccessibility framework versions a mediaaccessibility com apple mediatoolbox system library frameworks mediatoolbox framework versions a mediatoolbox com apple metal system library frameworks metal framework versions a metal com apple metalkit system library frameworks metalkit framework versions a metalkit com apple metalperformanceshaders mpscore system library frameworks metalperformanceshaders framework frameworks mpscore framework versions a mpscore com apple metalperformanceshaders mpsimage system library frameworks metalperformanceshaders framework frameworks mpsimage framework versions a mpsimage com apple metalperformanceshaders mpsmatrix system library frameworks metalperformanceshaders framework frameworks mpsmatrix framework versions a mpsmatrix com apple metalperformanceshaders mpsneuralnetwork system library frameworks metalperformanceshaders framework frameworks mpsneuralnetwork framework versions a mpsneuralnetwork com apple metalperformanceshaders mpsrayintersector system library frameworks metalperformanceshaders framework frameworks mpsrayintersector framework versions a mpsrayintersector com apple metalperformanceshaders metalperformanceshaders system library frameworks metalperformanceshaders framework versions a metalperformanceshaders com apple netfs system library frameworks netfs framework versions a netfs com apple network system library frameworks network framework versions a network libcldcpuengine dylib system library frameworks opencl framework versions a libraries libcldcpuengine dylib com apple opencl system library frameworks opencl framework versions a opencl com apple cfopendirectory system library frameworks opendirectory framework versions a frameworks cfopendirectory framework versions a cfopendirectory com apple opendirectory system library frameworks opendirectory framework versions a opendirectory libcvmspluginsupport dylib system library frameworks opengl framework versions a libraries libcvmspluginsupport dylib libcorefscache dylib system library frameworks opengl framework versions a libraries libcorefscache dylib libcorevmclient dylib system library frameworks opengl framework versions a libraries libcorevmclient dylib libgfxshared dylib system library frameworks opengl framework versions a libraries libgfxshared dylib libgl dylib system library frameworks opengl framework versions a libraries libgl dylib libglimage dylib system library frameworks opengl framework versions a libraries libglimage dylib libglprogrammability dylib system library frameworks opengl framework versions a libraries libglprogrammability dylib libglu dylib system library frameworks opengl framework versions a libraries libglu dylib com apple opengl system library frameworks opengl framework versions a opengl glengine system library frameworks opengl framework versions a resources glengine bundle glengine glrendererfloat system library frameworks opengl framework versions a resources glrendererfloat bundle glrendererfloat com apple qtkit system library frameworks qtkit framework versions a qtkit com apple imagekit system library frameworks quartz framework versions a frameworks imagekit framework versions a imagekit com apple pdfkit system library frameworks quartz framework versions a frameworks pdfkit framework versions a pdfkit com apple quartzcomposer system library frameworks quartz framework versions a frameworks quartzcomposer framework versions a quartzcomposer com apple quartzfilters system library frameworks quartz framework versions a frameworks quartzfilters framework versions a quartzfilters com apple quicklookuiframework system library frameworks quartz framework versions a frameworks quicklookui framework versions a quicklookui com apple quartzframework system library frameworks quartz framework versions a quartz com apple quartzcore system library frameworks quartzcore framework versions a quartzcore com apple quicklookframework system library frameworks quicklook framework versions a quicklook com apple safariservices framework system library frameworks safariservices framework versions a safariservices com apple security system library frameworks security framework versions a security com apple securityfoundation system library frameworks securityfoundation framework versions a securityfoundation com apple securityinterface system library frameworks securityinterface framework versions a securityinterface com apple xpc servicemanagement system library frameworks servicemanagement framework versions a servicemanagement com apple sociald social system library frameworks social framework versions a social com apple systemconfiguration system library frameworks systemconfiguration framework versions a systemconfiguration com apple videotoolbox system library frameworks videotoolbox framework versions a videotoolbox libwebrtc dylib system library frameworks webkit framework versions a frameworks webcore framework versions a frameworks libwebrtc dylib com apple webcore system library frameworks webkit framework versions a frameworks webcore framework versions a webcore com apple webkitlegacy system library frameworks webkit framework versions a frameworks webkitlegacy framework versions a webkitlegacy com apple webkit system library frameworks webkit framework versions a webkit com apple apfs system library privateframeworks apfs framework versions a apfs com apple accessibility axcoreutilities system library privateframeworks axcoreutilities framework versions a axcoreutilities com apple accounts accountsdaemon system library privateframeworks accountsdaemon framework versions a accountsdaemon com apple framework accountsui system library privateframeworks accountsui framework versions a accountsui com apple addressbook core system library privateframeworks addressbookcore framework versions a addressbookcore com apple aggregatedictionary system library privateframeworks aggregatedictionary framework versions a aggregatedictionary com apple annotationkit system library privateframeworks annotationkit framework versions a annotationkit com apple appcontainer system library privateframeworks appcontainer framework versions a appcontainer com apple appsandbox system library privateframeworks appsandbox framework versions a appsandbox com apple framework system library privateframeworks framework versions a com apple applefscompression system library privateframeworks applefscompression framework versions a applefscompression com apple appleidauthsupport system library privateframeworks appleidauthsupport framework versions a appleidauthsupport com apple applejpeg system library privateframeworks applejpeg framework versions a applejpeg com apple appleldap system library privateframeworks appleldap framework versions a appleldap com apple aps framework system library privateframeworks applepushservice framework versions a applepushservice com apple applesrp system library privateframeworks applesrp framework versions a applesrp com apple applesauce system library privateframeworks applesauce framework versions a applesauce com apple applesysteminfo system library privateframeworks applesysteminfo framework versions a applesysteminfo com apple applevaframework system library privateframeworks appleva framework versions a appleva com apple assertionservices system library privateframeworks assertionservices framework versions a assertionservices com apple authkit system library privateframeworks authkit framework versions a authkit com apple authenticationservices system library privateframeworks authenticationservices framework versions a authenticationservices com apple coreservices backgroundtaskmanagement system library privateframeworks backgroundtaskmanagement framework versions a backgroundtaskmanagement com apple backup framework system library privateframeworks backup framework versions a backup com apple baseboard system library privateframeworks baseboard framework versions a baseboard com apple bezelservicesfw system library privateframeworks bezelservices framework versions a bezelservices com apple bom system library privateframeworks bom framework versions a bom com apple calendaragentlink system library privateframeworks calendaragentlink framework versions a calendaragentlink com apple chunkinglibrary system library privateframeworks chunkinglibrary framework versions a chunkinglibrary com apple commercecore system library privateframeworks commercekit framework versions a frameworks commercecore framework versions a commercecore com apple commonauth system library privateframeworks commonauth framework versions a commonauth com apple commonutilities system library privateframeworks commonutilities framework versions a commonutilities com apple addressbook contactsfoundation system library privateframeworks contactsfoundation framework versions a contactsfoundation com apple contacts contactspersistence system library privateframeworks contactspersistence framework versions a contactspersistence com apple coreauc system library privateframeworks coreauc framework versions a coreauc com apple coreavchd system library privateframeworks coreavchd framework versions a coreavchd com apple corebrightness system library privateframeworks corebrightness framework versions a corebrightness com apple frameworks coredaemon system library privateframeworks coredaemon framework versions b coredaemon com apple coreemoji system library privateframeworks coreemoji framework versions a coreemoji com apple corehandwriting system library privateframeworks corehandwriting framework versions a corehandwriting com apple coremediaauthoring system library privateframeworks coremediaauthoring framework versions a coremediaauthoring com apple corenlp system library privateframeworks corenlp framework versions a corenlp com apple coreoptimization system library privateframeworks coreoptimization framework versions a coreoptimization com apple corepdf system library privateframeworks corepdf framework versions a corepdf com apple corephonenumbers system library privateframeworks corephonenumbers framework versions a corephonenumbers com apple coreprediction system library privateframeworks coreprediction framework versions a coreprediction com apple coreservicesinternal system library privateframeworks coreservicesinternal framework versions a coreservicesinternal com apple coresymbolication system library privateframeworks coresymbolication framework versions a coresymbolication com apple coreui system library privateframeworks coreui framework versions a coreui com apple coreutils system library privateframeworks coreutils framework versions a coreutils com apple framework corewifi system library privateframeworks corewifi framework versions a corewifi com apple crashreportersupport system library privateframeworks crashreportersupport framework versions a crashreportersupport com apple framework dfrfoundation system library privateframeworks dfrfoundation framework versions a dfrfoundation com apple dsexternaldisplay system library privateframeworks dsexternaldisplay framework versions a dsexternaldisplay com apple datadetectors system library privateframeworks datadetectors framework versions a datadetectors com apple datadetectorscore system library privateframeworks datadetectorscore framework versions a datadetectorscore com apple debugsymbols system library privateframeworks debugsymbols framework versions a debugsymbols com apple desktopservices system library privateframeworks desktopservicespriv framework versions a desktopservicespriv com apple diagnosticlogcollection system library privateframeworks diagnosticlogcollection framework versions a diagnosticlogcollection com apple diskmanagement system library privateframeworks diskmanagement framework versions a diskmanagement com apple displayservicesfw system library privateframeworks displayservices framework versions a displayservices com apple efilogin system library privateframeworks efilogin framework versions a efilogin com apple engram system library privateframeworks engram framework versions a engram com apple vision espressoframework system library privateframeworks espresso framework versions a espresso com apple vision facecore system library privateframeworks facecore framework versions a facecore libmetal timestamp dylib system library privateframeworks gpucompiler framework versions libraries libmetal timestamp dylib libgpusupportmercury dylib system library privateframeworks gpusupport framework versions a libraries libgpusupportmercury dylib com apple gpuwrangler system library privateframeworks gpuwrangler framework versions a gpuwrangler com apple generationalstorage system library privateframeworks generationalstorage framework versions a generationalstorage com apple geoservices system library privateframeworks geoservices framework versions a geoservices com apple graphvisualizer system library privateframeworks graphvisualizer framework versions a graphvisualizer com apple graphicsservices system library privateframeworks graphicsservices framework versions a graphicsservices com apple heimdal system library privateframeworks heimdal framework versions a heimdal com apple ids system library privateframeworks ids framework versions a ids com apple idsfoundation system library privateframeworks idsfoundation framework versions a idsfoundation com apple imfoundation system library privateframeworks imfoundation framework versions a imfoundation com apple ioaccelmemoryinfo system library privateframeworks ioaccelmemoryinfo framework versions a ioaccelmemoryinfo com apple ioaccelerator system library privateframeworks ioaccelerator framework versions a ioaccelerator com apple iopresentment system library privateframeworks iopresentment framework versions a iopresentment com apple iconservices system library privateframeworks iconservices framework versions a iconservices com apple internationalsupport system library privateframeworks internationalsupport framework versions a internationalsupport com apple intlpreferences system library privateframeworks intlpreferences framework versions a intlpreferences com apple security keychaincircle keychaincircle system library privateframeworks keychaincircle framework versions a keychaincircle com apple languagemodeling system library privateframeworks languagemodeling framework versions a languagemodeling com apple lexicon framework system library privateframeworks lexicon framework versions a lexicon com apple linguisticdata system library privateframeworks linguisticdata framework versions a linguisticdata com apple lookupframework system library privateframeworks lookup framework versions a lookup com apple mangrove system library privateframeworks mangrove framework versions a mangrove com apple marco system library privateframeworks marco framework versions a marco com apple markupui system library privateframeworks markupui framework versions a markupui com apple mediakit system library privateframeworks mediakit framework versions a mediakit com apple spotlight metadata utilities system library privateframeworks metadatautilities framework versions a metadatautilities com apple gpusw metaltools system library privateframeworks metaltools framework versions a metaltools com apple mobileassets system library privateframeworks mobileasset framework versions a mobileasset com apple mobilekeybag system library privateframeworks mobilekeybag framework versions a mobilekeybag com apple montreal system library privateframeworks montreal framework versions a montreal com apple multitouchsupport framework system library privateframeworks multitouchsupport framework versions a multitouchsupport com apple netauth system library privateframeworks netauth framework versions a netauth com apple oauth system library privateframeworks oauth framework versions a oauth com apple otsvg system library privateframeworks otsvg framework versions a otsvg com apple pencilkit system library privateframeworks pencilkit framework versions a pencilkit com apple performanceanalysis system library privateframeworks performanceanalysis framework versions a performanceanalysis com apple phonenumbers system library privateframeworks phonenumbers framework versions a phonenumbers com apple pluginkit framework system library privateframeworks pluginkit framework versions a pluginkit com apple protectedcloudstorage system library privateframeworks protectedcloudstorage framework versions a protectedcloudstorage com apple protocolbuffer system library privateframeworks protocolbuffer framework versions a protocolbuffer com apple quicklooknonbasesystem system library privateframeworks quicklooknonbasesystem framework versions a quicklooknonbasesystem com apple quicklookthumbnailing system library privateframeworks quicklookthumbnailing framework versions a quicklookthumbnailing com apple rockit system library privateframeworks rockit framework versions a rockit com apple xpc remoteservicediscovery system library privateframeworks remoteservicediscovery framework versions a remoteservicediscovery com apple remoteviewservices system library privateframeworks remoteviewservices framework versions a remoteviewservices com apple xpc remotexpc system library privateframeworks remotexpc framework versions a remotexpc com apple safari safebrowsing system library privateframeworks safarisafebrowsing framework versions a safarisafebrowsing com apple seccodewrapper system library privateframeworks seccodewrapper framework versions a seccodewrapper com apple sharekit system library privateframeworks sharekit framework versions a sharekit com apple sharing system library privateframeworks sharing framework versions a sharing com apple skylight system library privateframeworks skylight framework versions a skylight com apple sociald socialservices system library privateframeworks socialservices framework versions a socialservices com apple speechrecognitioncore system library privateframeworks speechrecognitioncore framework versions a speechrecognitioncore com apple streamingzip system library privateframeworks streamingzip framework versions a streamingzip com apple symbolication system library privateframeworks symbolication framework versions a symbolication com apple private systempolicy system library privateframeworks systempolicy framework versions a systempolicy com apple tcc system library privateframeworks tcc framework versions a tcc com apple textureio system library privateframeworks textureio framework versions a textureio com apple tonekit system library privateframeworks tonekit framework versions a tonekit com apple tonelibrary system library privateframeworks tonelibrary framework versions a tonelibrary com apple trustevaluationagent system library privateframeworks trustevaluationagent framework versions a trustevaluationagent com apple uifoundation system library privateframeworks uifoundation framework versions a uifoundation com apple urlformatting system library privateframeworks urlformatting framework versions a urlformatting com apple viewbridge system library privateframeworks viewbridge framework versions a viewbridge libawdsupportframework dylib system library privateframeworks wirelessdiagnostics framework versions a libraries libawdsupportframework dylib libprotobuf lite dylib system library privateframeworks wirelessdiagnostics framework versions a libraries libprotobuf lite dylib libprotobuf dylib system library privateframeworks wirelessdiagnostics framework versions a libraries libprotobuf dylib com apple awd system library privateframeworks wirelessdiagnostics framework versions a wirelessdiagnostics com apple dt xcttargetbootstrap system library privateframeworks xcttargetbootstrap framework versions a xcttargetbootstrap com apple loginsupport system library privateframeworks login framework versions a frameworks loginsupport framework versions a loginsupport com apple login system library privateframeworks login framework versions a login com apple contacts vcard system library privateframeworks vcard framework versions a vcard libaccessibility dylib usr lib libaccessibility dylib libcrfsuite dylib usr lib libcrfsuite dylib libchinesetokenizer dylib usr lib libchinesetokenizer dylib libcorestorage dylib usr lib libcorestorage dylib libdiagnosticmessagesclient dylib usr lib libdiagnosticmessagesclient dylib libfosl dynamic dylib usr lib libfosl dynamic dylib libmatch dylib usr lib libmatch dylib libmobilegestalt dylib usr lib libmobilegestalt dylib libopenscriptingutil dylib usr lib libopenscriptingutil dylib libsystem b dylib usr lib libsystem b dylib libtelephonyutildynamic dylib usr lib libtelephonyutildynamic dylib libthaitokenizer dylib usr lib libthaitokenizer dylib libapple dylib usr lib libapple dylib libarchive dylib usr lib libarchive dylib libate dylib usr lib libate dylib libauto dylib usr lib libauto dylib libboringssl dylib usr lib libboringssl dylib libbsm dylib usr lib libbsm dylib dylib usr lib dylib libc dylib usr lib libc dylib libc abi dylib usr lib libc abi dylib libcharset dylib usr lib libcharset dylib libcmph dylib usr lib libcmph dylib libcompression dylib usr lib libcompression dylib libcoretls dylib usr lib libcoretls dylib libcoretls cfhelpers dylib usr lib libcoretls cfhelpers dylib libcrypto dylib usr lib libcrypto dylib libcsfde dylib usr lib libcsfde dylib libcups dylib usr lib libcups dylib libenergytrace dylib usr lib libenergytrace dylib libgermantok dylib usr lib libgermantok dylib libheimdal dylib usr lib libheimdal dylib libiconv dylib usr lib libiconv dylib libicucore a dylib usr lib libicucore a dylib liblangid dylib usr lib liblangid dylib liblzma dylib usr lib liblzma dylib libmecab dylib usr lib libmecab dylib libmecabra dylib usr lib libmecabra dylib libnetwork dylib usr lib libnetwork dylib libobjc a dylib usr lib libobjc a dylib libpam dylib usr lib libpam dylib libpcap a dylib usr lib libpcap a dylib libresolv dylib usr lib libresolv dylib libsandbox dylib usr lib libsandbox dylib dylib usr lib dylib libspindump dylib usr lib libspindump dylib dylib usr lib dylib libtidy a dylib usr lib libtidy a dylib libusrtcp dylib usr lib libusrtcp dylib libutil dylib usr lib libutil dylib libxar dylib usr lib libxar dylib dylib usr lib dylib libxslt dylib usr lib libxslt dylib libz dylib usr lib libz dylib libswiftappkit dylib usr lib swift libswiftappkit dylib libswiftcore dylib usr lib swift libswiftcore dylib libswiftcoredata dylib usr lib swift libswiftcoredata dylib libswiftcorefoundation dylib usr lib swift libswiftcorefoundation dylib libswiftcoregraphics dylib usr lib swift libswiftcoregraphics dylib libswiftcoreimage dylib usr lib swift libswiftcoreimage dylib libswiftdarwin dylib usr lib swift libswiftdarwin dylib libswiftdispatch dylib usr lib swift libswiftdispatch dylib libswiftfoundation dylib usr lib swift libswiftfoundation dylib libswiftiokit dylib usr lib swift libswiftiokit dylib libswiftmetal dylib usr lib swift libswiftmetal dylib libswiftobjectivec dylib usr lib swift libswiftobjectivec dylib libswiftquartzcore dylib usr lib swift libswiftquartzcore dylib libswiftxpc dylib usr lib swift libswiftxpc dylib libcache dylib usr lib system libcache dylib libcommoncrypto dylib usr lib system libcommoncrypto dylib libcompiler rt dylib usr lib system libcompiler rt dylib libcopyfile dylib usr lib system libcopyfile dylib libcorecrypto dylib usr lib system libcorecrypto dylib libdispatch dylib usr lib system libdispatch dylib libdyld dylib usr lib system libdyld dylib libkeymgr dylib usr lib system libkeymgr dylib libkxld dylib usr lib system libkxld dylib liblaunch dylib usr lib system liblaunch dylib libmacho dylib usr lib system libmacho dylib libquarantine dylib usr lib system libquarantine dylib libremovefile dylib usr lib system libremovefile dylib libsystem asl dylib usr lib system libsystem asl dylib libsystem blocks dylib usr lib system libsystem blocks dylib libsystem c dylib usr lib system libsystem c dylib libsystem configuration dylib usr lib system libsystem configuration dylib libsystem coreservices dylib usr lib system libsystem coreservices dylib libsystem darwin dylib usr lib system libsystem darwin dylib libsystem dnssd dylib usr lib system libsystem dnssd dylib libsystem info dylib usr lib system libsystem info dylib libsystem kernel dylib usr lib system libsystem kernel dylib libsystem m dylib usr lib system libsystem m dylib libsystem malloc dylib usr lib system libsystem malloc dylib libsystem networkextension dylib usr lib system libsystem networkextension dylib libsystem notify dylib usr lib system libsystem notify dylib libsystem platform dylib usr lib system libsystem platform dylib libsystem pthread dylib usr lib system libsystem pthread dylib libsystem sandbox dylib usr lib system libsystem sandbox dylib libsystem secinit dylib usr lib system libsystem secinit dylib libsystem symptoms dylib usr lib system libsystem symptoms dylib libsystem trace dylib usr lib system libsystem trace dylib libunwind dylib usr lib system libunwind dylib libxpc dylib usr lib system libxpc dylib external modification summary calls made by other processes targeting this process task for pid thread create thread set state calls made by this process task for pid thread create thread set state calls made by all processes on this machine task for pid thread create thread set state vm region summary readonly portion of libraries total resident swapped out or unallocated writable regions total written resident swapped out unallocated virtual region region type size count non coalesced accelerate framework activity tracing cg backing stores cg image coreanimation coregraphics coreimage coreservices coreui image data coreui image file foundation js jit generated code kernel alloc once malloc malloc guard page malloc medium reserved reserved vm address space unallocated malloc nano reserved reserved vm address space unallocated memory tag sqlite page cache stack guard stack stack guard vm allocate webkit malloc data font data glslbuiltins linkedit text unicode mapped file shared memory total total minus reserved vm space reproduced it happens everytime optional if applicable add screenshots animations or videos to help illustrate your problem required make model os version app version apple macbook pro | 1 |
242,845 | 7,849,316,224 | IssuesEvent | 2018-06-20 02:49:09 | ballerina-platform/ballerina-lang | https://api.github.com/repos/ballerina-platform/ballerina-lang | closed | High CPU usage when switching from Design view to source view. | Imported On Hold Priority/High Severity/Major Type/Bug component/Composer | <a href="https://github.com/yasassri"><img src="https://avatars1.githubusercontent.com/u/7681361?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [yasassri](https://github.com/yasassri)**
_Tuesday Oct 17, 2017 at 00:18 GMT_
_Originally opened as https://github.com/ballerina-lang/composer/issues/3872_
----
I created the following set of services,
import ballerina.net.http;
```
@http:configuration {basePath:"/echo",
port:8286
}
service<http> echo {
@http:resourceConfig {
methods:["POST","GET"],
path:"/"
}
resource echo (http:Request req, http:Response res) {
string payload = req.getStringPayload();
res.setStringPayload(payload);
res.send();
}
resource echo2 (http:Request req,http:Response res) {
}
resource echo3 (http:Request req,http:Response res) {
}
resource echo4 (http:Request req,http:Response res) {
}
resource echo5 (http:Request req,http:Response res) {
}
resource echo6 (http:Request req,http:Response res) {
}
resource echo7 (http:Request req,http:Response res) {
}
resource echo8 (http:Request req,http:Response res) {
}
resource echo9 (http:Request req,http:Response res) {
}
resource echo10 (http:Request req,http:Response res) {
}
}
@http:configuration {
}
service<http> service1 {
resource echo1 (http:Request req,http:Response res) {
}
resource echo2 (http:Request req,http:Response res) {
}
resource echo3 (http:Request req,http:Response res) {
}
}
```
When I swich from the Design view to source view the CPU usage goes up, around 80-100%.
| 1.0 | High CPU usage when switching from Design view to source view. - <a href="https://github.com/yasassri"><img src="https://avatars1.githubusercontent.com/u/7681361?v=4" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [yasassri](https://github.com/yasassri)**
_Tuesday Oct 17, 2017 at 00:18 GMT_
_Originally opened as https://github.com/ballerina-lang/composer/issues/3872_
----
I created the following set of services,
import ballerina.net.http;
```
@http:configuration {basePath:"/echo",
port:8286
}
service<http> echo {
@http:resourceConfig {
methods:["POST","GET"],
path:"/"
}
resource echo (http:Request req, http:Response res) {
string payload = req.getStringPayload();
res.setStringPayload(payload);
res.send();
}
resource echo2 (http:Request req,http:Response res) {
}
resource echo3 (http:Request req,http:Response res) {
}
resource echo4 (http:Request req,http:Response res) {
}
resource echo5 (http:Request req,http:Response res) {
}
resource echo6 (http:Request req,http:Response res) {
}
resource echo7 (http:Request req,http:Response res) {
}
resource echo8 (http:Request req,http:Response res) {
}
resource echo9 (http:Request req,http:Response res) {
}
resource echo10 (http:Request req,http:Response res) {
}
}
@http:configuration {
}
service<http> service1 {
resource echo1 (http:Request req,http:Response res) {
}
resource echo2 (http:Request req,http:Response res) {
}
resource echo3 (http:Request req,http:Response res) {
}
}
```
When I swich from the Design view to source view the CPU usage goes up, around 80-100%.
| priority | high cpu usage when switching from design view to source view issue by tuesday oct at gmt originally opened as i created the following set of services import ballerina net http http configuration basepath echo port service echo http resourceconfig methods path resource echo http request req http response res string payload req getstringpayload res setstringpayload payload res send resource http request req http response res resource http request req http response res resource http request req http response res resource http request req http response res resource http request req http response res resource http request req http response res resource http request req http response res resource http request req http response res resource http request req http response res http configuration service resource http request req http response res resource http request req http response res resource http request req http response res when i swich from the design view to source view the cpu usage goes up around | 1 |
159,222 | 6,042,222,386 | IssuesEvent | 2017-06-11 10:48:06 | datproject/dat-desktop | https://api.github.com/repos/datproject/dat-desktop | opened | Add throttle setting | Priority: High Status: In Progress Type: Enhancement | For long running syncing, you might now want Dat to take over your whole bandwidth | 1.0 | Add throttle setting - For long running syncing, you might now want Dat to take over your whole bandwidth | priority | add throttle setting for long running syncing you might now want dat to take over your whole bandwidth | 1 |
72,999 | 3,398,525,392 | IssuesEvent | 2015-12-02 04:36:16 | YetiForceCompany/YetiForceCRM | https://api.github.com/repos/YetiForceCompany/YetiForceCRM | closed | [BUG] Error on related tab in sQuotes | Label::Core Priority::#3 High Type::Bug | only on **periodically orders** tab

```
{"success":false,"error":{"code":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'u_yf_recurring_info.date_start' in 'field list'","message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'u_yf_recurring_info.date_start' in 'field list'"}}
#0 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/database/PearDatabase.php(310): PDO->query('SELECT DISTINCT...')
#1 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/database/PearDatabase.php(335): PearDatabase->query('SELECT DISTINCT...', false, '')
#2 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/models/RelationListView.php(261): PearDatabase->pquery('SELECT DISTINCT...', Array)
#3 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/views/RelatedList.php(49): Vtiger_RelationListView_Model->getEntries(Object(Vtiger_Paging_Model))
#4 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/views/Detail.php(414): Vtiger_RelatedList_View->process(Object(Vtiger_Request))
#5 [internal function]: Vtiger_Detail_View->showRelatedList(Object(Vtiger_Request))
#6 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/runtime/Controller.php(84): call_user_func_array(Array, Array)
#7 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/views/Detail.php(155): Vtiger_Controller->invokeExposedMethod('showRelatedList', Object(Vtiger_Request))
#8 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/main/WebUI.php(225): Vtiger_Detail_View->process(Object(Vtiger_Request))
#9 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/index.php(25): Vtiger_WebUI->process(Object(Vtiger_Request))
#10 {main}
``` | 1.0 | [BUG] Error on related tab in sQuotes - only on **periodically orders** tab

```
{"success":false,"error":{"code":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'u_yf_recurring_info.date_start' in 'field list'","message":"SQLSTATE[42S22]: Column not found: 1054 Unknown column 'u_yf_recurring_info.date_start' in 'field list'"}}
#0 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/database/PearDatabase.php(310): PDO->query('SELECT DISTINCT...')
#1 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/database/PearDatabase.php(335): PearDatabase->query('SELECT DISTINCT...', false, '')
#2 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/models/RelationListView.php(261): PearDatabase->pquery('SELECT DISTINCT...', Array)
#3 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/views/RelatedList.php(49): Vtiger_RelationListView_Model->getEntries(Object(Vtiger_Paging_Model))
#4 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/views/Detail.php(414): Vtiger_RelatedList_View->process(Object(Vtiger_Request))
#5 [internal function]: Vtiger_Detail_View->showRelatedList(Object(Vtiger_Request))
#6 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/runtime/Controller.php(84): call_user_func_array(Array, Array)
#7 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/modules/Vtiger/views/Detail.php(155): Vtiger_Controller->invokeExposedMethod('showRelatedList', Object(Vtiger_Request))
#8 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/include/main/WebUI.php(225): Vtiger_Detail_View->process(Object(Vtiger_Request))
#9 /home/yetiforce1/domains/gitdeveloper.yetiforce.com/public_html/index.php(25): Vtiger_WebUI->process(Object(Vtiger_Request))
#10 {main}
``` | priority | error on related tab in squotes only on periodically orders tab success false error code sqlstate column not found unknown column u yf recurring info date start in field list message sqlstate column not found unknown column u yf recurring info date start in field list home domains gitdeveloper yetiforce com public html include database peardatabase php pdo query select distinct home domains gitdeveloper yetiforce com public html include database peardatabase php peardatabase query select distinct false home domains gitdeveloper yetiforce com public html modules vtiger models relationlistview php peardatabase pquery select distinct array home domains gitdeveloper yetiforce com public html modules vtiger views relatedlist php vtiger relationlistview model getentries object vtiger paging model home domains gitdeveloper yetiforce com public html modules vtiger views detail php vtiger relatedlist view process object vtiger request vtiger detail view showrelatedlist object vtiger request home domains gitdeveloper yetiforce com public html include runtime controller php call user func array array array home domains gitdeveloper yetiforce com public html modules vtiger views detail php vtiger controller invokeexposedmethod showrelatedlist object vtiger request home domains gitdeveloper yetiforce com public html include main webui php vtiger detail view process object vtiger request home domains gitdeveloper yetiforce com public html index php vtiger webui process object vtiger request main | 1 |
697,675 | 23,948,476,344 | IssuesEvent | 2022-09-12 09:26:34 | dmwm/CRABServer | https://api.github.com/repos/dmwm/CRABServer | closed | Base TW, Publisher and REST on WMCore 2.1.2 | Priority: High OPERATION | As the title suggests, we should base our services on the new WMCore release 2.1.2 | 1.0 | Base TW, Publisher and REST on WMCore 2.1.2 - As the title suggests, we should base our services on the new WMCore release 2.1.2 | priority | base tw publisher and rest on wmcore as the title suggests we should base our services on the new wmcore release | 1 |
804,787 | 29,501,298,865 | IssuesEvent | 2023-06-02 22:13:13 | osulp/Scholars-Archive | https://api.github.com/repos/osulp/Scholars-Archive | reopened | Add summary report to fixity check job | Enhancement Reporting/Statistics Priority: High | ### Descriptive summary
With #2373 fixed, fixity checks are running again. Now we need a way to report out to Cara & Sarah how many passed/failed. By default Hyrax sends out an email to the depositor for every file set that fails. That can be a lot of spam and it goes to the users, not us.
Before the job runs, we should ensure that no emails can go out (possibly be an env var, though I don't know of a case where we might want them to go out).
After the job runs, we should query `ChecksumAuditLog` for some information and send it to `scholarsarchive@oregonstate.edu`.
### Expected behavior
The `scholars_archive:fixity` rake task includes the following:
- [ ] Prevent emails for the fixity checks
- [ ] Enables a final email after all checks are ran
- [ ] Sends an email to `scholarsarchive@oregonstate.edu` with the following information
- [ ] Start time
- [ ] End time
- [ ] Count of File Sets checked
- [ ] Count of File Sets passed
- [ ] Count of File Sets failed
- [ ] IDs of File Sets failed
These stats should only be from `ChecksumAuditLog` that were created by the latest run. Easiest would be to do `where` queries against the start time.
### Actual behavior
Fixity checks are ran and `ChecksumeAuditLog` entries are created in the DB, no reports
### Steps to reproduce the behavior
`rake scholars_archive:fixity`
### Related work
#2373
#2414
| 1.0 | Add summary report to fixity check job - ### Descriptive summary
With #2373 fixed, fixity checks are running again. Now we need a way to report out to Cara & Sarah how many passed/failed. By default Hyrax sends out an email to the depositor for every file set that fails. That can be a lot of spam and it goes to the users, not us.
Before the job runs, we should ensure that no emails can go out (possibly be an env var, though I don't know of a case where we might want them to go out).
After the job runs, we should query `ChecksumAuditLog` for some information and send it to `scholarsarchive@oregonstate.edu`.
### Expected behavior
The `scholars_archive:fixity` rake task includes the following:
- [ ] Prevent emails for the fixity checks
- [ ] Enables a final email after all checks are ran
- [ ] Sends an email to `scholarsarchive@oregonstate.edu` with the following information
- [ ] Start time
- [ ] End time
- [ ] Count of File Sets checked
- [ ] Count of File Sets passed
- [ ] Count of File Sets failed
- [ ] IDs of File Sets failed
These stats should only be from `ChecksumAuditLog` that were created by the latest run. Easiest would be to do `where` queries against the start time.
### Actual behavior
Fixity checks are ran and `ChecksumeAuditLog` entries are created in the DB, no reports
### Steps to reproduce the behavior
`rake scholars_archive:fixity`
### Related work
#2373
#2414
| priority | add summary report to fixity check job descriptive summary with fixed fixity checks are running again now we need a way to report out to cara sarah how many passed failed by default hyrax sends out an email to the depositor for every file set that fails that can be a lot of spam and it goes to the users not us before the job runs we should ensure that no emails can go out possibly be an env var though i don t know of a case where we might want them to go out after the job runs we should query checksumauditlog for some information and send it to scholarsarchive oregonstate edu expected behavior the scholars archive fixity rake task includes the following prevent emails for the fixity checks enables a final email after all checks are ran sends an email to scholarsarchive oregonstate edu with the following information start time end time count of file sets checked count of file sets passed count of file sets failed ids of file sets failed these stats should only be from checksumauditlog that were created by the latest run easiest would be to do where queries against the start time actual behavior fixity checks are ran and checksumeauditlog entries are created in the db no reports steps to reproduce the behavior rake scholars archive fixity related work | 1 |
243,642 | 7,860,309,071 | IssuesEvent | 2018-06-21 19:30:19 | GratefulGarmentProject/StockAid | https://api.github.com/repos/GratefulGarmentProject/StockAid | closed | Printing of T-bars with quantity page | Priority - High in progress | Print all bin T-bars with quantity page.
Allow printing a page of just a blank table for quantities.
Include a couple extra rows at the bottom of the quantity page. | 1.0 | Printing of T-bars with quantity page - Print all bin T-bars with quantity page.
Allow printing a page of just a blank table for quantities.
Include a couple extra rows at the bottom of the quantity page. | priority | printing of t bars with quantity page print all bin t bars with quantity page allow printing a page of just a blank table for quantities include a couple extra rows at the bottom of the quantity page | 1 |
558,127 | 16,526,927,070 | IssuesEvent | 2021-05-26 21:29:17 | MelbourneDeveloper/RestClient.Net | https://api.github.com/repos/MelbourneDeveloper/RestClient.Net | closed | Per Call Timeout | High Priority | Add an optional parameter to the extension methods, and fire out a cancellation when timed out?
https://thomaslevesque.com/2018/02/25/better-timeout-handling-with-httpclient/ | 1.0 | Per Call Timeout - Add an optional parameter to the extension methods, and fire out a cancellation when timed out?
https://thomaslevesque.com/2018/02/25/better-timeout-handling-with-httpclient/ | priority | per call timeout add an optional parameter to the extension methods and fire out a cancellation when timed out | 1 |
267,341 | 8,387,957,740 | IssuesEvent | 2018-10-09 03:31:30 | turtl/tracker | https://api.github.com/repos/turtl/tracker | opened | Classig (v0.6) logins not always working on v0.7 client | priority:high project:core project:server status:unverified type:bug | I'm not able to verify this yet. Might have something to do with a space in the password? Need to run some tests here. | 1.0 | Classig (v0.6) logins not always working on v0.7 client - I'm not able to verify this yet. Might have something to do with a space in the password? Need to run some tests here. | priority | classig logins not always working on client i m not able to verify this yet might have something to do with a space in the password need to run some tests here | 1 |
164,413 | 6,225,884,646 | IssuesEvent | 2017-07-10 17:11:42 | python/mypy | https://api.github.com/repos/python/mypy | opened | Infinite recursion with recursive TypedDict | crash priority-0-high topic-typed-dict | Mypy crashes with `RecursionError` when I type check this program:
```py
from mypy_extensions import TypedDict
A = TypedDict('A', {'a': 'A'})
a: A
```
Output:
```py
t2.py:3: error: Invalid type "t2.A"
Traceback (most recent call last):
File "/Users/jukka/src/mypy/scripts/mypy", line 6, in <module>
main(__file__)
File "/Users/jukka/src/mypy/mypy/main.py", line 50, in main
res = type_check_only(sources, bin_dir, options)
File "/Users/jukka/src/mypy/mypy/main.py", line 97, in type_check_only
options=options)
File "/Users/jukka/src/mypy/mypy/build.py", line 196, in build
graph = dispatch(sources, manager)
File "/Users/jukka/src/mypy/mypy/build.py", line 1769, in dispatch
process_graph(graph, manager)
File "/Users/jukka/src/mypy/mypy/build.py", line 2012, in process_graph
process_stale_scc(graph, scc, manager)
File "/Users/jukka/src/mypy/mypy/build.py", line 2107, in process_stale_scc
graph[id].semantic_analysis()
File "/Users/jukka/src/mypy/mypy/build.py", line 1664, in semantic_analysis
self.manager.semantic_analyzer.visit_file(self.tree, self.xpath, self.options, patches)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 295, in visit_file
self.accept(d)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 3636, in accept
node.accept(self)
File "/Users/jukka/src/mypy/mypy/nodes.py", line 859, in accept
return visitor.visit_assignment_stmt(self)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 1567, in visit_assignment_stmt
s.type = self.anal_type(s.type, allow_tuple_literal=allow_tuple_literal)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 1555, in anal_type
return t.accept(a)
File "/Users/jukka/src/mypy/mypy/types.py", line 189, in accept
return visitor.visit_unbound_type(self)
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 292, in visit_unbound_type
return td.copy_modified(item_types=self.anal_array(list(td.items.values())),
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 520, in anal_array
res.append(self.anal_type(t, nested))
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 527, in anal_type
return t.accept(self)
File "/Users/jukka/src/mypy/mypy/types.py", line 189, in accept
return visitor.visit_unbound_type(self)
...
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 152, in visit_unbound_type
sym = self.lookup(t.name, t)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 3436, in lookup_qualified
return self.lookup(name, ctx)
RecursionError: maximum recursion depth exceeded
```
``` | 1.0 | Infinite recursion with recursive TypedDict - Mypy crashes with `RecursionError` when I type check this program:
```py
from mypy_extensions import TypedDict
A = TypedDict('A', {'a': 'A'})
a: A
```
Output:
```py
t2.py:3: error: Invalid type "t2.A"
Traceback (most recent call last):
File "/Users/jukka/src/mypy/scripts/mypy", line 6, in <module>
main(__file__)
File "/Users/jukka/src/mypy/mypy/main.py", line 50, in main
res = type_check_only(sources, bin_dir, options)
File "/Users/jukka/src/mypy/mypy/main.py", line 97, in type_check_only
options=options)
File "/Users/jukka/src/mypy/mypy/build.py", line 196, in build
graph = dispatch(sources, manager)
File "/Users/jukka/src/mypy/mypy/build.py", line 1769, in dispatch
process_graph(graph, manager)
File "/Users/jukka/src/mypy/mypy/build.py", line 2012, in process_graph
process_stale_scc(graph, scc, manager)
File "/Users/jukka/src/mypy/mypy/build.py", line 2107, in process_stale_scc
graph[id].semantic_analysis()
File "/Users/jukka/src/mypy/mypy/build.py", line 1664, in semantic_analysis
self.manager.semantic_analyzer.visit_file(self.tree, self.xpath, self.options, patches)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 295, in visit_file
self.accept(d)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 3636, in accept
node.accept(self)
File "/Users/jukka/src/mypy/mypy/nodes.py", line 859, in accept
return visitor.visit_assignment_stmt(self)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 1567, in visit_assignment_stmt
s.type = self.anal_type(s.type, allow_tuple_literal=allow_tuple_literal)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 1555, in anal_type
return t.accept(a)
File "/Users/jukka/src/mypy/mypy/types.py", line 189, in accept
return visitor.visit_unbound_type(self)
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 292, in visit_unbound_type
return td.copy_modified(item_types=self.anal_array(list(td.items.values())),
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 520, in anal_array
res.append(self.anal_type(t, nested))
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 527, in anal_type
return t.accept(self)
File "/Users/jukka/src/mypy/mypy/types.py", line 189, in accept
return visitor.visit_unbound_type(self)
...
File "/Users/jukka/src/mypy/mypy/typeanal.py", line 152, in visit_unbound_type
sym = self.lookup(t.name, t)
File "/Users/jukka/src/mypy/mypy/semanal.py", line 3436, in lookup_qualified
return self.lookup(name, ctx)
RecursionError: maximum recursion depth exceeded
```
``` | priority | infinite recursion with recursive typeddict mypy crashes with recursionerror when i type check this program py from mypy extensions import typeddict a typeddict a a a a a output py py error invalid type a traceback most recent call last file users jukka src mypy scripts mypy line in main file file users jukka src mypy mypy main py line in main res type check only sources bin dir options file users jukka src mypy mypy main py line in type check only options options file users jukka src mypy mypy build py line in build graph dispatch sources manager file users jukka src mypy mypy build py line in dispatch process graph graph manager file users jukka src mypy mypy build py line in process graph process stale scc graph scc manager file users jukka src mypy mypy build py line in process stale scc graph semantic analysis file users jukka src mypy mypy build py line in semantic analysis self manager semantic analyzer visit file self tree self xpath self options patches file users jukka src mypy mypy semanal py line in visit file self accept d file users jukka src mypy mypy semanal py line in accept node accept self file users jukka src mypy mypy nodes py line in accept return visitor visit assignment stmt self file users jukka src mypy mypy semanal py line in visit assignment stmt s type self anal type s type allow tuple literal allow tuple literal file users jukka src mypy mypy semanal py line in anal type return t accept a file users jukka src mypy mypy types py line in accept return visitor visit unbound type self file users jukka src mypy mypy typeanal py line in visit unbound type return td copy modified item types self anal array list td items values file users jukka src mypy mypy typeanal py line in anal array res append self anal type t nested file users jukka src mypy mypy typeanal py line in anal type return t accept self file users jukka src mypy mypy types py line in accept return visitor visit unbound type self file users jukka src mypy mypy typeanal py line in visit unbound type sym self lookup t name t file users jukka src mypy mypy semanal py line in lookup qualified return self lookup name ctx recursionerror maximum recursion depth exceeded | 1 |
1,889 | 2,521,186,482 | IssuesEvent | 2015-01-19 12:28:42 | nlbdev/nordic-epub3-dtbook-migrator | https://api.github.com/repos/nlbdev/nordic-epub3-dtbook-migrator | closed | nav.xhtml: navigation document (title page) | 2 - High priority question | (moved here from daisy/pipeline-issues#439)
submitted by @dtbook
[nordic_nav_references_1] The text for the heading in the navigation document ("Titlepage") should match the headline in the content document ("Varm tass i mörkret" at DTB15689-2-titlepage.xhtml#level1_2)_(Technofunda_Partha) | 1.0 | nav.xhtml: navigation document (title page) - (moved here from daisy/pipeline-issues#439)
submitted by @dtbook
[nordic_nav_references_1] The text for the heading in the navigation document ("Titlepage") should match the headline in the content document ("Varm tass i mörkret" at DTB15689-2-titlepage.xhtml#level1_2)_(Technofunda_Partha) | priority | nav xhtml navigation document title page moved here from daisy pipeline issues submitted by dtbook the text for the heading in the navigation document titlepage should match the headline in the content document varm tass i mörkret at titlepage xhtml technofunda partha | 1 |
690,425 | 23,659,149,479 | IssuesEvent | 2022-08-26 14:02:32 | dnd-side-project/dnd-7th-4-backend | https://api.github.com/repos/dnd-side-project/dnd-7th-4-backend | closed | [Setting] gunicorn timeout 시간 설정 | Type: Setting Priority-High Type: Docs | gunicorn default time: 30 -> 120s 로 늘리기
`command: gunicorn dnd_7th_4_backend.wsgi:application --bind 0.0.0.0:8000 --timeout=120` | 1.0 | [Setting] gunicorn timeout 시간 설정 - gunicorn default time: 30 -> 120s 로 늘리기
`command: gunicorn dnd_7th_4_backend.wsgi:application --bind 0.0.0.0:8000 --timeout=120` | priority | gunicorn timeout 시간 설정 gunicorn default time 로 늘리기 command gunicorn dnd backend wsgi application bind timeout | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.