Logic and Bidule (rewire mode)

I'm reorganizing my orchestral template and I have an issue with Logic 9.1.5 (32 bit) and Bidule 64 bit (rewire mode).
The problem is I can't have Logic display Kontakt patch names in my multi-instrument midi tracks in the arrange....
I have to manually write the name of the patches (for example Trumpet Legato) but if then I change the patch in Kontakt the old name remains active...
I don't know if this is normal or not in the rewire protocol, what I can say is that before using Bidule I created multi-instruments in the environment cabled to my Kontakt instances and then in the individual midi tracks in the arrange I had automatically the right patch names displayed.
Any workarounds for this issue?
Thank you

First, may I suggest that it's time for you to crack the manual, do some reading and experimenting to see how far you get on your own. Seriously. Even if people reply here with specific answers to your questions, there's nothing like trying to figure it out for yourself and, especially if you're successful, you will really know how it works because you followed your own path to make it happen.
What you're asking for is help with a complicated setup, so, really, seriously, start doing some experimenting on your own and see how far you get.
Still, I'll give you a little head start... just a little...
How would i make sure logic knows which soft sampler/synth from which controller.<<</div>
As you might know, there are usually multiple ways to do any one thing within Logic. This is one such case.
You have several controllers, so it would be easy enough to program each of them to transmit on a specific MIDI channel. Then, you program the MIDI channels of your various plugs so that they only respond to the controller you want it to.
Another approach is to take advantage of the Physical Input object. This is a representation of your MIDI interface, and each numbered 'port' on the object represents the actual number of the MIDI input on the interface. So if your Axiom's MIDI out is connected to your interface's input #3, the MIDI data for the Axiom shows up at the Physical Input object's number-3 port. Then, say, you want to play plug-in XYZ from the Axiom. In this case, you cable Physical Input's port #3 directly to the audio instrument that's hosting that plug. Then there is no way that any of your other controllers will possibly be able to play XYZ.
This is just scratching the surface, but I hope it helps. Still, I'm serious -- crack the manual and start experimenting on your own. It'll not only help you learn what you need to do, but it will familiarize yourself with the terms above plus what other people might chime in with.

Similar Messages

  • Is anyone using logic and reason rewired on a macbook pro?

    when cycling, either logic or reason loopes back a moment too early and cuts the end of the loop.
    anyone able to reproduce this?
    17" 2.16 MacBook Pro   Mac OS X (10.4.6)  

    nobody has this problem, or an answer?

  • Logic and Reason (via Rewire) - no sound?

    hey there,
    I've just linked up Logic and Reason, via ReWire, and although they seem to be working visually, there is no sound.
    Do I need a separate track set up so I can hear it?
    I dont understand!

    http://discussions.apple.com/thread.jspa?messageID=5861224&#5861224
    I'm going to try this... See if it works on your end as well!

  • "Multiple Tempo Events Detected" -- Propblem with Logic and Reason

    I have just migrated from a MacBookProp to a MacPro. All seems well except for the rewiring of Reason. When I rewire, I get the error message in Logic "Multiple Tempo Events Selected" asking if I want to review the list. Since no song is open in Reason, this would appear to be some kind of glitch. Also, there is a huige amount of latency between Reason and Logic. When I have just Reason open, there is no latency at all when I play. the same in Logic when I create a software instrument. But in rewire mode, it is about half a second! Any advice and help would be appreciated.

    Update on this: the tempo issue was relegated to one project where there was a tempo change within Logic, so I apologize. But I still have a tremendous amount of latency between the two programs.

  • Logic and Reason. Is this the only way?

    I have managed to rewire Reason 3 to Logic Pro 7.2 thanks to frequent popsicle's video. I can record and playback with no problems. Except that in order to control volume/pan in the arrange window I have to have 2 tracks for each instrument. One for the midi to Reason and one for the aux that the instrument is patched to. I can control the volume/pan of the aux track but not the midi which makes sense but why do I need both to get sound? This is mostly just inconvenient but surely it should be possible to have just one reason track in arrange that acts just like one of Logic's internal instruments?

    I still find Reason to be a very useful set of
    virtual instruments. There's a ton of good stuff in
    there. I've hardly ever used the Reason sequencer,
    but the instruments, processors and Combinator are
    great.
    For sure. The combinator is perhaps the nicest thing to happen to Reason. You can really do some cool things with it.
    Recently, I've become a bit annoyed that Rewire doesn't allow the slave to send midi to the master. I find this makes using Live (in rewire mode) completely worthless. I've been moving to a LogicRMXReaktor setup, so Reason has lost it's usefulness to me.
    I've recently been using it again in ProTools - loved
    it, so simple . But now I've (again) gotten rid of
    ProTools, so it's time for me to learn how to get it
    working in Logic in a way which suits my style.
    Note: Using the combinator can really mess up a Logic Reason template (due to Logic's particular way of implementing Rewire). In the internal rewire object, the BUS 'system' is a bit unfriendly. I've never understood why there is a need to have BUS7. BUS6 should show all your device in your Reason rack (not just the first 16).
    Dual 1.8Ghz G5 PB G4 1Ghz LP7.1.1 RME FF800   Mac OS X (10.4.8)   Reaktor 5.1 Reason 3.0.5 Live 5.0.2 Battery 2.1.5 Recycle 2.1 DFH 1.5.3

  • Logical standby in noarchive mode

    Hello,
    does anybody know if it is possible to run a logical standby (10gR2) in noarchivelog mode?
    For my understanding it should be possible, why not... But I can't find a piece of documentation which prove this.
    Thanks in advance,
    Boris...

    I also was curious if setting up a Logical Standby in noarchivelog mode was possible. It looks like it is...
    We use this simply as a reporting copy of our data. Our analysts do not change any of this data. They just need it to be fairly current (~3 days). At this point, there isn't any need to generate archivelogs so we want to disable the feature to minimize our maintenance and our storage requirements.
    STANDBY DB:
    SQL> select log_mode, open_mode from v$database;
    LOG_MODE     OPEN_MODE
    ARCHIVELOG   READ WRITE
    SQL> ALTER DATABASE STOP LOGICAL STANDBY APPLY;
    Database altered.
    SQL> shutdown immediate;
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup mount;
    ORACLE instance started.
    Database mounted.
    SQL>  alter database noarchivelog;
    Database altered.
    SQL> alter database open;
    Database altered.
    SQL> ALTER DATABASE START LOGICAL STANDBY APPLY IMMEDIATE;
    Database altered.Then I created an object on the production server:
    SQL> create table testuser.noarchivelog_testing as select * from dba_objects;
    Table created.
    SQL> alter system switch logfile;
    System altered.
    Mon Jun 22 11:13:26 2009
    Beginning log switch checkpoint up to RBA [0xe6.2.10], SCN: 1031235046
    Mon Jun 22 11:13:26 2009Now I see it on the standby:
    Mon Jun 22 11:13:43 2009
    RFS LogMiner: RFS id [25920] assigned as thread [1] PING handler
    RFS[1]: Archived Log: '/oracle/LH1/oraarch/LH1arch_1_229_680639127.arc'
    Mon Jun 22 11:13:46 2009
    RFS LogMiner: Registered logfile [/oracle/LH1/oraarch/LH1arch_1_229_680639127.arc] to LogMiner session id [1]
    Mon Jun 22 11:13:48 2009
    LOGSTDBY status: ORA-16204: DDL successfully applied
    Mon Jun 22 11:13:51 2009
    LOGMINER: End mining logfile: /oracle/LH1/oraarch/LH1arch_1_229_680639127.arc
    SQL> select count(*) from testuser.noarchivelog_testing;
      COUNT(*)
         24444

  • Template UI Logic and backingbean

    Hi,
    I'm new to adf and i'm trying to build a sample project with jDevelopper 11.1.2.1.0 for my company to know if we can switch to it.
    I've go a use case to implement but i've got some issues to understand how i can do it.
    I must create a view with :
    1) a top zone with a toolbar (and other stuff)
    2) a center zone with a panel tabbed
    2.a) In the first tab, a bounded table with some columns
    2.b) In the second tab a splitter
    2.b.i ) In the first facet of the splitter a second bounded table with some other columns (but linked to the same iterator)
    2.b.ii) In the second facet of the splitter a form (to edit the data)
    3) a bottom zone with a statut toolbar.
    I've created my toolbar with a declarative component following the adf corner [079. Strategy for implementing global buttons in a page template|http://www.oracle.com/technetwork/developer-tools/adf/learnmore/79-global-template-button-strategy-360139.pdf], my toolbar have 5 buttons (create, edit, save, cancel and delete).
    I then created a template for placing panel, and table splitter ui components with a backingbean used for binding the ui components (in backingbean scope, its' important cause the template could be on the same page with nested template tag)
    I've created a taskflow following the adf corner [007.How to cancel an edit form, undoing changes with ADFm savepoints|http://www.oracle.com/technetwork/developer-tools/adf/learnmore/007-cancelform-savepoint-169126.pdf] for the edit form
    I created a page that inherits my template, placed the declarative component toolbar at the top, placed the two bounded datatable in the facets of the template, and finally created a normal region calling the taskflow.
    When i click on the create button, the template backing bean receive the "event" and handle it, changing a task flow parameter.... (updating the region)
    My taskflow update and show me the create form... no problem....
    But if the user is on the first tab, he sees nothing. So i would like to change the disclosed property of the showDetailItems of the panelTabbed.
    I then created a variable in the pageDef of the template that would store a boolean value if the page is in EditMode or not. (create and edit is edit mode. save, cancel and delete is not)
    I created a contextual event to listen when that variable change, like that a datacontrol from a bean with a single public method could handle that change :
    onIsEditModeChanged(boolean newValue){
     getGUI().swicthShowDetailItem(newValue);
    }The method try to get the backingbean of the template (with a el expression), and then call a updatePanel(Boolean newValue) for changing the disclosed property of the showDetailItems :
    public BackingBeanTemplate001 getGUI()
     FacesContext context = FacesContext.getCurrentInstance();
     ELContext eLContext = context.getELContext();
     ExpressionFactory expressionFactory = context.getApplication().getExpressionFactory();
     ValueExpression createValueExpression =
     expressionFactory.createValueExpression(eLContext, "#{backingBeanScope.backingBeanTemplate001}", BackingBeanTemplate001.class);
     return (BackingBeanTemplate001)createValueExpression.getValue(eLContext);
    public void swicthShowDetailItem(Boolean newValue) {
     if (newValue) {
      if(!showDetail2.isDisclosed()){
       showDetaill1.setDisclosed(false);
       showDetaill2.setDisclosed(true);
    }Here's my issue :
    When the onIsEditModeChanged method is called the backingbean of the template doesn't exist in the context.
    So adf create a new instance of it but doesn't fill the ui component references of the page so i can't change the properties cause i get a NPE.
    of course showDetail2 and showDetail1 have their binding property set :
    <af:showDetailItem text="showDetail1" id="pt_sdi1" stretchChildren="first" binding="#{backingBeanScope.backingBeanTemplate001.showDetail1}">
    And
    <af:showDetailItem text="showDetail2" id="pt_sdi1" stretchChildren="first" binding="#{backingBeanScope.backingBeanTemplate001.showDetail2}">the backingBeanScope.backingBeanTemplate001 is referenced in adfc-config.xml :
    <managed-bean id="__5">
         <managed-bean-name>backingBeanTemplate001</managed-bean-name>
         <managed-bean-class>org.darkink.test.backingbean.template.BackingBeanTemplate001</managed-bean-class>
         <managed-bean-scope>backingBean</managed-bean-scope>
    </managed-bean>If i put a button IN the template that change my attribut value :
    public void switchAction(ActionEvent actionEvent) {
             BindingContext bindingContext = BindingContext.getCurrent();
             DCBindingContainer bindingContainer = (DCBindingContainer)bindingContext.getCurrentBindingsEntry();
             AttributeBinding binding = (AttributeBinding)bindingContainer.getControlBinding("isEditModeAttr");
             binding.setInputValue(true);
    }I dont have the NPE, at the "JSF Invoke Application" the bean already exists in the context (it is created at the "JSF Restore View") and all the ui component are NOT null.
    BUT if a place my button in the page that inherits the template and i call that method :
    public void switchAction(ActionEvent actionEvent) {
             BindingContext bindingContext = BindingContext.getCurrent();
             DCBindingContainer bindingContainer = (DCBindingContainer)bindingContext.getCurrentBindingsEntry();
             DCBindingContainer bcPtb1 = (DCBindingContainer)bindingContainer.get("ptb1");
             AttributeBinding binding = (AttributeBinding)bcPtb1 .getControlBinding("isEditModeAttr");
             binding.setInputValue(true);
    }everything works the same BUT at the "JSF Invoke Application" the bean doesn't exist in the context (so adf create it, BUT doesn't fill the ui component bindings).
    The strange thing is that at the "JSF Restore View" the backingbean is well created and filled with the ref of the ui components....
    So here's my questions :
    1) Why there is a difference when my button is on the template and when it's on the page ??? (with the backingbean)
    2) Why the backingbean is not fully created (only the constructor is called and not the ui components bindings)
    3) How can i realise my use case ?
    4) Is there another method to implement UI Logic with template ?
    5) Is there a better way to do this ?
    6) How to get the context of the template ?
    Thanks a lot for all of you who had the patience to read all of this, i know it's a lot
    but i didn't know how to explain my problem without all thoses explanations.
    I've read all the adf corner and all the given pdf books on the site (that i've found) trying to search for a solution and
    didn't find one. So please don't tell me read the books, or the solution is already documented...
    It would be a lot more helpfull to explain me why it's not working or why what a did is not a good solution.
    Sorry for my poor english too.
    Thanks a lot....
    Angle
    P.S 1:
    In the swicthShowDetailItem method i've tried to change for using this :
    if (newValue) {
     RichShowDetailItem c = (RichShowDetailItem)getComponent("pt1:pt_pt1:pt_sdi2");
     if (!c.isDisclosed()) {
        ((RichShowDetailItem)getComponent("pt1:pt_pt1:pt_sdi1")).setDisclosed(false);
        c.setDisclosed(true);
    }It's working... but ugly and not efficient... so for me it's not a good answer....
    P.S 2:
    Another solution that i've found is that i could create an hidden button on the template
    that call the change event and in the page create a button that queue a click event
    on that button but for me it's not a solution.
    P.S 3:
    I dont like a JavaScript solution neither. for me, if a can bind my ui components to a backingbean
    i want to be able to use them !!!
    Edited by: 915518 on 19 févr. 2012 12:04
    Edited by: 915518 on 19 févr. 2012 12:10

    Hi,
    There will not any performance issue as such as all the code will be executed by the same Dialog workprocess in the application server.
    But it is alwys good to keep you flow logic and application logic seperated, so flow logic just calls the methods and the methods are in a different component like a static method of a class or function module in a function group.
    Best thing is Function Group as you can have screens in a Function pool.
    Regards,
    Sesh

  • Kontakt 4 Crashes logic 9 in 64bit mode in Yosemite - Please help

    Hi,
    this is my first post into the apple community forums as I am in serious need of help as I am an audio professional and this problem has the potential to ruin my life.
    I recently upgraded my OS to Yosemite and now when I try to open my Logic pro 9 project files they pretty much crash instantly in 64 bit mode because of a problem with loading Kontakt.4.  I seem to be able to open some projects in 32 bit mode, so I feel there might be a problem with the stability of the audio bridge but I can't find anything about it online as no one else seems to have had this specific problem.  Kontakt.4 also seems to have a problem opening independently
    I've pasted an example of one of the crash reports so that hopefully some wise community member may be able to garner some insight into what the problem may be.  I've tried rescanning the audio units in 32bit and 64 bit mode but that has had no effect.  If anyone has any suggestions I will be eternally grateful, thank you.
    Process:               Logic Pro [2693]
    Path:                  /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:            com.apple.logic.pro
    Version:               9.1.8 (1700.67)
    Build Info:            Logic-17006700~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Logic Pro [2693]
    User ID:               501
    PlugIn Path:             /Library/Audio/Plug-Ins/Components/Kontakt 4.component/Contents/MacOS/Kontakt 4
    PlugIn Identifier:       Kontakt 4.MusicDevice.component
    PlugIn Version:          4.1.1.3832 (4.1.1, Copyright © 2009 Native Instruments)
    Date/Time:             2015-03-24 00:41:08.533 +0000
    OS Version:            Mac OS X 10.10.2 (14C1514)
    Report Version:        11
    Anonymous UUID:        AD54FC22-3B9E-262B-7B3A-C1EF36D8FE8A
    Time Awake Since Boot: 35000 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    *** error for object 0x6000000100d0: Invalid pointer dequeued from free list
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff97aaf286 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff9103fb53 abort + 129
    2   com.apple.logic.pro           0x00000001003b3226 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98486
    3   libsystem_platform.dylib       0x00007fff99447f1a _sigtramp + 26
    4   libsystem_kernel.dylib         0x00007fff97aaf286 __pthread_kill + 10
    5   libsystem_c.dylib             0x00007fff9103fb53 abort + 129
    6   libsystem_malloc.dylib         0x00007fff9224cf3c nanozone_error + 524
    7   libsystem_malloc.dylib         0x00007fff9223aa5c _nano_malloc_check_clear + 370
    8   libsystem_malloc.dylib         0x00007fff9223a8cc nano_malloc + 35
    9   libsystem_malloc.dylib         0x00007fff9223a877 malloc_zone_malloc + 71
    10  libsystem_malloc.dylib         0x00007fff92239395 malloc + 42
    11  Kontakt 4.MusicDevice.component 0x00000001205f8cc2 fftwf_malloc_plain + 18
    12  Kontakt 4.MusicDevice.component 0x00000001205fef79 fftwf_mkstride + 25
    13  Kontakt 4.MusicDevice.component 0x000000012063dd30 mkplan + 240
    14  Kontakt 4.MusicDevice.component 0x00000001205fd3a0 mkplan + 1152
    15  Kontakt 4.MusicDevice.component 0x00000001205fbf67 fftwf_mkplan_d + 23
    16  Kontakt 4.MusicDevice.component 0x000000012063af4f mkcldw + 1231
    17  Kontakt 4.MusicDevice.component 0x000000012063b843 mkplan + 467
    18  Kontakt 4.MusicDevice.component 0x00000001205fd3a0 mkplan + 1152
    19  Kontakt 4.MusicDevice.component 0x00000001205fbf67 fftwf_mkplan_d + 23
    20  Kontakt 4.MusicDevice.component 0x00000001206473ce mkplan + 430
    21  Kontakt 4.MusicDevice.component 0x00000001205fd3a0 mkplan + 1152
    22  Kontakt 4.MusicDevice.component 0x00000001206c89b6 mkplan + 102
    23  Kontakt 4.MusicDevice.component 0x00000001206c8c17 fftwf_mkapiplan + 295
    24  Kontakt 4.MusicDevice.component 0x00000001206c9666 fftwf_plan_many_dft_c2r + 374
    25  Kontakt 4.MusicDevice.component 0x0000000120893f7d BFFTW_Engine::Initialize() + 461
    26  Kontakt 4.MusicDevice.component 0x000000012088a401 BEngine::BEngine() + 17265
    27  Kontakt 4.MusicDevice.component 0x0000000120b2705c BInstrument::BInstrument(NI::AB::InterfaceBase*) + 28
    28  Kontakt 4.MusicDevice.component 0x0000000120144b70 NI::AU::App<NI::NGL::App, BInstrument, BPlugin>::onEvent(unsigned int, NI::UIA::EventData*) + 160
    29  Kontakt 4.MusicDevice.component 0x00000001203dc6fe NI::UIA::Application::onWndEvent(unsigned int, NI::UIA::EventData*, NI::UIA::Application::WndEventExtra const&) + 62
    30  Kontakt 4.MusicDevice.component 0x00000001203dc97e NI::UIA::Application::sendEvent(unsigned int, NI::UIA::EventData*) + 46
    31  Kontakt 4.MusicDevice.component 0x0000000120149427 NIAudioUnitSynthEntry + 215
    32  com.apple.CoreServices.CarbonCore 0x00007fff9a8cdf06 CallComponentOpen + 46
    33  com.apple.CoreServices.CarbonCore 0x00007fff9a84b4de OpenAComponent + 430
    34  com.apple.logic.pro           0x000000010053f77a std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 370394
    35  com.apple.music.apps.MAAudioEngine 0x00000001030a5ed8 MD::NewPlug(CPlugIn**, short, long, long, long) + 360
    36  com.apple.logic.pro           0x0000000100133d50 std::vector<CVirtualTrack, std::allocator<CVirtualTrack> >::operator=(std::vector<CVirtualTrack, std::allocator<CVirtualTrack> > const&) + 176288
    37  com.apple.logic.pro           0x000000010005d8d8 GetChannelIDForIndex(TAudioBusFormat, int) + 17544
    38  com.apple.logic.pro           0x000000010005ec2d GetChannelIDForIndex(TAudioBusFormat, int) + 22493
    39  com.apple.logic.pro           0x000000010006198e GetChannelIDForIndex(TAudioBusFormat, int) + 34110
    40  com.apple.logic.pro           0x000000010005377c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 105084
    41  com.apple.logic.pro           0x0000000100848900 std::list<TGInstID, std::allocator<TGInstID> >::remove(TGInstID const&) + 66864
    42  com.apple.logic.pro           0x0000000100031953 DummyConnection::DummyConnection() + 28497
    43  com.apple.logic.pro           0x00000001001baed9 std::vector<TTempoWarpMerge, std::allocator<TTempoWarpMerge> >::reserve(unsigned long) + 212329
    44  com.apple.logic.pro           0x0000000100270b38 std::vector<CONTEXTMENUITEM, std::allocator<CONTEXTMENUITEM> >::_M_insert_aux(__gnu_cxx::__normal_iterator<CONTEXTMENUITEM*, std::vector<CONTEXTMENUITEM, std::allocator<CONTEXTMENUITEM> > >, CONTEXTMENUITEM const&) + 18072
    45  com.apple.logic.pro           0x00000001005c99cc std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 333804
    46  com.apple.logic.pro           0x00000001005a187f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 169631
    47  com.apple.logic.pro           0x00000001005a3bda std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 178682
    48  com.apple.AppKit               0x00007fff8d88a7df -[NSDocument readFromURL:ofType:error:] + 621
    49  com.apple.logic.pro           0x00000001005a2f9a std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 175546
    50  com.apple.AppKit               0x00007fff8d6ee38c -[NSDocument _initWithContentsOfURL:ofType:error:] + 171
    51  com.apple.AppKit               0x00007fff8d6ee056 -[NSDocument initWithContentsOfURL:ofType:error:] + 230
    52  com.apple.AppKit               0x00007fff8d8cc089 -[NSDocumentController makeDocumentWithContentsOfURL:ofType:error:] + 627
    53  com.apple.logic.pro           0x00000001006a8d7e std::_Rb_tree<TPureClock, std::pair<TPureClock const, EuControlSwitch*>, std::_Select1st<std::pair<TPureClock const, EuControlSwitch*> >, std::less<TPureClock>, std::allocator<std::pair<TPureClock const, EuControlSwitch*> > >::insert_unique(std::pair<TPureClock const, EuControlSwitch*> const&) + 132286
    54  com.apple.AppKit               0x00007fff8d8da926 -[NSDocumentController(NSDeprecated) openDocumentWithContentsOfURL:display:error:] + 829
    55  com.apple.logic.pro           0x00000001005c3546 std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 308070
    56  com.apple.Foundation           0x00007fff8fff3cdc __NSThreadPerformPerform + 293
    57  com.apple.CoreFoundation       0x00007fff975ce681 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    58  com.apple.CoreFoundation       0x00007fff975c080d __CFRunLoopDoSources0 + 269
    59  com.apple.CoreFoundation       0x00007fff975bfe3f __CFRunLoopRun + 927
    60  com.apple.CoreFoundation       0x00007fff975bf858 CFRunLoopRunSpecific + 296
    61  com.apple.HIToolbox           0x00007fff91258aef RunCurrentEventLoopInMode + 235
    62  com.apple.HIToolbox           0x00007fff9125876e ReceiveNextEventCommon + 179
    63  com.apple.HIToolbox           0x00007fff912586ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    64  com.apple.AppKit               0x00007fff8d46ef81 _DPSNextEvent + 964
    65  com.apple.AppKit               0x00007fff8d46e730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    66  com.apple.AppKit               0x00007fff8d462593 -[NSApplication run] + 594
    67  com.apple.prokit               0x000000010120ba21 NSProApplicationMain + 295
    68  com.apple.logic.pro           0x000000010002aa58 DummyConnection::DummyConnection() + 86
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff97ab0232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8b4b2a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 3:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff97aaa4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff97aa964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff975c0b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff975bfffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff975bf858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff98229c80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff8fff690a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff97aaf3fa __select + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff97aaf136 __psynch_cvwait + 10
    1   com.apple.music.apps.MAAudioEngine 0x00000001030adcd0 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    2   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff97aaa4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff97aa964f mach_msg + 55
    2   com.apple.audio.midi.CoreMIDI 0x0000000101683dbb XServerMachPort::ReceiveMessage(int&, void*, int&) + 125
    3   com.apple.audio.midi.CoreMIDI 0x000000010169f76e MIDIProcess::RunMIDIInThread() + 112
    4   com.apple.audio.midi.CoreMIDI 0x0000000101684e5a XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI 0x0000000101684a8b CAPThread::Entry(CAPThread*) + 109
    6   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff97aaf136 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff9a8a19a7 TSWaitOnConditionTimedRelative + 147
    2   com.apple.CoreServices.CarbonCore 0x00007fff9a8a1582 TSWaitOnSemaphoreCommon + 403
    3   com.apple.CoreServices.CarbonCore 0x00007fff9a88312e TimerThread + 87
    4   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff97aaa4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff97aa964f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff975c0b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff975bfffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff975bf858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff8d5d233b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff97aaf94a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ef6b40d start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff97aaf48a __semwait_signal + 10
    1   com.apple.music.apps.MACore   0x00000001015d5219 getPkgVersion + 73
    2   com.apple.logic.pro           0x0000000100923e14 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 82484
    3   com.apple.logic.pro           0x00000001009246f9 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 84761
    4   com.apple.logic.pro           0x0000000100925061 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 87169
    5   com.apple.logic.pro           0x0000000100925342 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 87906
    6   com.apple.logic.pro           0x00000001009252df std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 87807
    7   com.apple.logic.pro           0x0000000100925b3b std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 89947
    8   com.apple.logic.pro           0x0000000100928f54 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 103284
    9   com.apple.Foundation           0x00007fff8fff690a __NSThread__main__ + 1345
    10  libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    11  libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    12  libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff97aaa51a semaphore_wait_trap + 10
    1   Kontakt 4.MusicDevice.component 0x0000000120cd24ca SerialJobBGThread::run() + 250
    2   Kontakt 4.MusicDevice.component 0x0000000120393d59 NI::GP::Thread::execute(void*) + 73
    3   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff97aaa51a semaphore_wait_trap + 10
    1   Kontakt 4.MusicDevice.component 0x000000012094c228 BEngine::AuxProcessThreadProc(int) + 72
    2   Kontakt 4.MusicDevice.component 0x0000000120393d59 NI::GP::Thread::execute(void*) + 73
    3   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff97aaa51a semaphore_wait_trap + 10
    1   Kontakt 4.MusicDevice.component 0x00000001208e9fc9 BEngine::SetEngineParThreadProc() + 377
    2   Kontakt 4.MusicDevice.component 0x0000000120393d59 NI::GP::Thread::execute(void*) + 73
    3   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff97aaa51a semaphore_wait_trap + 10
    1   Kontakt 4.MusicDevice.component 0x0000000120957aff BStreamingEngine::run() + 1535
    2   Kontakt 4.MusicDevice.component 0x0000000120393d59 NI::GP::Thread::execute(void*) + 73
    3   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff97ab0682 read + 10
    1   com.apple.Foundation           0x00007fff90000f2f -[NSConcreteFileHandle readDataOfLength:] + 487
    2   com.apple.music.apps.MACore   0x00000001015d50a5 getPkgInfo + 357
    3   com.apple.music.apps.MACore   0x00000001015d5197 getPkgInfo + 599
    4   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib         0x00007fff97aaf48a __semwait_signal + 10
    1   com.apple.Foundation           0x00007fff9001ff9e +[NSThread sleepForTimeInterval:] + 154
    2   com.apple.logic.pro           0x000000010082af76 std::vector<MidiRegion, std::allocator<MidiRegion> >::_M_insert_aux(__gnu_cxx::__normal_iterator<MidiRegion*, std::vector<MidiRegion, std::allocator<MidiRegion> > >, MidiRegion const&) + 381414
    3   com.apple.Foundation           0x00007fff8fff690a __NSThread__main__ + 1345
    4   libsystem_pthread.dylib       0x00007fff8ef6d268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8ef6d1e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8ef6b41d thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5fbfbcf8  rdx: 0x0000000000000000
      rdi: 0x000000000000130f  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfbd20  rsp: 0x00007fff5fbfbcf8
       r8: 0x0000000000000300   r9: 0xbaddc0dedeadbead  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5fbfbdef  r13: 0x00007fff5fbfbd70  r14: 0x00007fff7bf04300  r15: 0x0000600000192d70
      rip: 0x00007fff97aaf286  rfl: 0x0000000000000206  cr2: 0x00007f85dbd85008
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x100000000 -        0x100c18fef  com.apple.logic.pro (9.1.8 - 1700.67) <5CBBDF7C-6505-0A14-61F1-483839F57524> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
           0x101086000 -        0x1010a4fef  com.apple.XSKey (1.0.0 - 52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
           0x1010b6000 -        0x1010f0ff7  com.apple.music.apps.MAAudioUnitSupport (9.1.8 - 233.53) <B5939861-E5F9-3218-0989-4ED074B1323D> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
           0x101113000 -        0x101141ff7  com.apple.musicaudiodataservices (1.1 - 251.4) <93B2F8C3-E091-C1CA-8932-91840CC968BC> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
           0x101153000 -        0x1011b6ff7  com.apple.music.apps.MALoopManagement (9.1.8 - 219.66) <FE447B07-89A4-E025-DFB8-4C71A0EFEBF0> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
           0x1011ed000 -        0x101404fff  com.apple.prokit (7.4.1 - 1963) <5AE4B128-B573-36E0-8453-80294246CDAB> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x101596000 -        0x10162cfe7  com.apple.music.apps.MACore (9.1.8 - 477.58) <3E8020EA-9B42-63A5-613D-FD2D7675546F> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x101676000 -        0x1016adfff  com.apple.audio.midi.CoreMIDI (1.10 - 88) <8803C090-9288-3128-B0FF-9CBA810660DC> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x1016d4000 -        0x101732fef  com.apple.music.apps.MAHarmony (9.1.8 - 199.72) <EE991E63-1236-765D-3C95-4AE3494B295C> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x10175a000 -        0x101b9bfff  com.apple.music.apps.MAPlugInGUI (9.1.8 - 424.79) <6FEA2031-69A3-9209-54EF-36BA3DAD1883> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x101e5f000 -        0x101f3bfff  com.apple.music.apps.OMF (9.1.8 - 109.7) <F72235D0-517D-CCCB-3B91-78396786EB34> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
           0x101f5a000 -        0x10258afef  com.apple.music.apps.MADSP (9.1.8 - 588.98) <D794D156-112C-29E3-EB9D-62604A9807DE> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x102de8000 -        0x102e0dff7  com.apple.music.apps.LogicFileBrowser (9.1.8 - 1700.67) <8E130979-83FB-56BD-DE18-A723A94B7530> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
           0x102e20000 -        0x102e9efff  com.apple.music.apps.LogicLoopBrowser (9.1.8 - 1700.67) <47AF47CE-F6A1-E025-96FA-5C30EAFA13BC> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
           0x102ecd000 -        0x102ef1ff7  com.apple.music.apps.MAApogeeSupport (9.1.8 - 313.26) <6384895C-60D4-CE0B-0E86-673A20A34D36> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
           0x102eff000 -        0x102f04fff  com.apple.music.apps.MAResources (9.1.8 - 212.66) <0E66AB42-6F37-9AE7-8766-264DAE455688> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
           0x102f07000 -        0x102f2eff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <B355479D-7CBE-3142-80EA-4FD3CCCC56FE> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x102f48000 -        0x102f5bff7  com.apple.AERegistration (1.2 - 401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
           0x102f74000 -        0x102f81fff  com.apple.music.apps.MAUnitTest (9.1.8 - 97.27) <8AF973F8-CBB2-931B-6BFC-D4BCB8A434F6> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
           0x102f8a000 -        0x103045fe7  com.apple.music.apps.MAFiles (9.1.8 - 144.87) <F9F3C7E2-46F5-0EC3-7297-096AEB83BFD6> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x10307e000 -        0x1030fafe7  com.apple.music.apps.MAAudioEngine (9.1.8 - 158.42) <6944C1FC-7ACD-53A2-5095-E017C39D8CBA> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
           0x10316e000 -        0x103179fff  com.apple.music.apps.MAToolKit (9.1.8 - 359.28) <B9729EDA-E5DB-C831-E473-EED9C906AAA0> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
           0x103180000 -        0x10318eff7  com.apple.music.apps.MAVideo (9.1.8 - 12.70) <19D30553-8BFE-4F8C-D13E-0D3139AAC22B> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
           0x103196000 -        0x103244fec  com.apple.MobileMe (9 - 1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
           0x103789000 -        0x1037a2ff7  com.apple.prokit.LionPanels (7.4.1 - 1963) <CEF1E6E9-6F50-3C23-BEB4-C5BD03B6AD81> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
           0x10dcab000 -        0x10dd57fff  ColorSyncDeprecated.dylib (442) <478F3331-E7E2-36BF-9C4D-A86D8F542225> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10dd9e000 -        0x10dda9fff  com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <0F591FCC-FDC6-369C-881C-A17A8F3B7338> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
           0x10f265000 -        0x10f269fff  com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25) <D7562B22-F5ED-3FD6-894E-4F4876DE14FF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10f85e000 -        0x10f85efff +cl_kernels (???) <A16233C2-8F1E-4EB2-9461-33AE70DFADA1> cl_kernels
           0x10f86d000 -        0x10f86dff5 +cl_kernels (???) <9FD3E271-CAFB-4A12-9B24-EDEB94D20FBC> cl_kernels
           0x10f86f000 -        0x10f955fef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x10fae6000 -        0x10fae8ff7  com.apple.textencoding.unicode (2.7 - 2.7) <A5C5993B-30AA-39C7-B3B5-D34FAE232712> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10faf1000 -        0x10faf9ff7  com.apple.proapps.mrcheckpro (1.4 - 397) <9B320059-8D28-D7DA-8CD4-B42796969065> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
           0x10fb04000 -        0x10fb11fff  libGPUSupport.dylib (11.1.1) <D5C9D4DB-666E-3279-872F-C1A46A675E7C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10fbee000 -        0x10fbf0ff7  com.apple.music.apps.anvil.resources (9.1.8 - 280.4) <F74756AB-FAB6-3914-5F1C-04FCB54C350A> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
           0x10fbf5000 -        0x10fbf7ff7  com.apple.music.apps.common.resources (9.1.8 - 280.4) <9FC76C8D-3763-4E4A-DB35-391B07A6FFA8> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
           0x10fbfc000 -        0x10fbfeff7  com.apple.music.apps.ebp.resources (9.1.8 - 280.4) <2DEA037D-ABCE-771A-618B-091741F6CA7B> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
           0x10fc03000 -        0x10fc05ff7  com.apple.music.apps.efx.resources (9.1.8 - 280.4) <EB5DB45A-C432-2C90-C708-27D5F5EC236A> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
           0x10fc0a000 -        0x10fc0cff7  com.apple.music.apps.egt.resources (9.1.8 - 280.4) <FAB354A9-88A1-619A-1ECA-A351EADB5A2E> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
           0x10fc11000 -        0x10fc13ff7  com.apple.music.apps.emx.resources (9.1.8 - 280.4) <19FD59CE-314B-6B4B-CEE8-C7BF9DF7F4EB> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
           0x10fc18000 -        0x10fc1aff7  com.apple.music.apps.es1.resources (9.1.8 - 280.4) <4BD052E1-1BD4-3C73-93D6-D63493167CB6> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
           0x10fc1f000 -        0x10fc21ff7  com.apple.music.apps.es2.resources (9.1.8 - 280.4) <31CBF3C9-AD64-1A86-1F99-D362B594F840> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
           0x1123e2000 -        0x1123e4ff7  com.apple.music.apps.esp.resources (9.1.8 - 280.4) <0EA44B59-2772-F013-CF49-B66EE4C77EEB> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
           0x1123e9000 -        0x1123ebff7  com.apple.music.apps.evb3.resources (9.1.8 - 280.4) <F0F73B5A-E44A-FF5C-4C54-0F5B677BFB18> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
           0x1123f0000 -        0x1123f2ff7  com.apple.music.apps.evd6.resources (9.1.8 - 280.4) <45B1F3EB-45CB-418F-A408-C42F7F93802A> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
           0x1123f7000 -        0x1123f9ff7  com.apple.music.apps.evoc.resources (9.1.8 - 280.4) <91478393-E7C9-5292-FCA9-83559B588E6E> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
           0x112700000 -        0x112702ff7  com.apple.music.apps.evp88.resources (9.1.8 - 280.4) <9FAC293E-E8B9-C2D9-F102-D5BFC0AA1DC5> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
           0x112707000 -        0x112709ff7  com.apple.music.apps.exs24.resources (9.1.8 - 280.4) <E79F0236-D02B-D3E7-B929-701CEDE000F6> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
           0x11270e000 -        0x112710ff7  com.apple.music.apps.guitaramp.resources (9.1.8 - 280.4) <73AC87D5-215E-2FAC-05A2-28A7E9574F5C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
           0x112715000 -        0x112717ff7  com.apple.music.apps.guitarcontrols.resources (9.1.8 - 280.4) <B005E199-DCEE-5935-8E34-48FA59352663> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
           0x11271c000 -        0x11271eff7  com.apple.music.apps.mutapdel.resources (9.1.8 - 280.4) <392017D1-219B-4AA4-71CF-BAAC4D574FE1> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
           0x112723000 -        0x112725ff7  com.apple.music.apps.pedalboard.resources (9.1.8 - 280.4) <F95D6A0D-0179-F17B-59A5-B3B0007E426D> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
           0x11272a000 -        0x11272cff7  com.apple.music.apps.revolver.resources (9.1.8 - 280.4) <77102719-1007-5153-B8B3-9EC9FAC4C0BD> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
           0x112731000 -        0x112733ff7  com.apple.music.apps.sphere.resources (9.1.8 - 280.4) <3579177A-C2D5-E746-2E48-29F69B7ACDC0> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
           0x12011a000 -        0x1215d9fff +Kontakt 4.MusicDevice.component (4.1.1.3832 - 4.1.1, Copyright © 2009 Native Instruments) <DC490700-7925-4961-60AA-50D1F04621CB> /Library/Audio/Plug-Ins/Components/Kontakt 4.component/Contents/MacOS/Kontakt 4
           0x122f0a000 -        0x1231f7ff7 +de.native-instruments.kconvert.macho.bundle (2.1.0.0 - 2.1.0.0) <854442B6-97E0-F2E9-CB4B-743EA662BFF0> /Library/Application Support/Native Instruments/*/kconvert.bundle/Contents/MacOS/kconvert
        0x123480000000 -     0x123480275ff7  com.apple.ATIRadeonX2000GLDriver (10.0.19 - 10.0.0) <779BB31F-9138-3756-93AE-5420EA3C1C80> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
        0x7fff65799000 -     0x7fff657cf837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff8b4ae000 -     0x7fff8b4d8ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8b4d9000 -     0x7fff8b4f7ff7  com.apple.addressbook.vCard (9.0 - 1563) <370F3435-855E-3C60-9CC9-B3F24AC1AF97> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff8b4f8000 -     0x7fff8b564fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8b565000 -     0x7fff8b7cdff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b7ce000 -     0x7fff8b863ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8b864000 -     0x7fff8b86ffff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8b870000 -     0x7fff8b90efff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8b90f000 -     0x7fff8b910fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b911000 -     0x7fff8b96cfff  libTIFF.dylib (1232) <29A5C7F7-D50B-35B3-8FA2-A55A47E497A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8bad9000 -     0x7fff8bc16fff  com.apple.ImageIO.framework (3.3.0 - 1232) <D7AF3CD2-FAB2-3798-9C26-914886852DCD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8bc17000 -     0x7fff8bc2eff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8bc2f000 -     0x7fff8bc69ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8bd3d000 -     0x7fff8bd41fff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8be5b000 -     0x7fff8be5ffff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8be60000 -     0x7fff8be8bfff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8c715000 -     0x7fff8c7f5fff  com.apple.QuickLookUIFramework (5.0 - 675.13) <A4B5E57E-F363-3C63-8861-4DCEAC3FB23B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8c8d5000 -     0x7fff8c8d8ff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff8c91d000 -     0x7fff8caccfff  GLEngine (11.1.1) <72892F1E-5ED5-3733-BE77-FC37CF69D801> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8cacd000 -     0x7fff8cad1ff7  libGIF.dylib (1232) <061D5354-FE4F-3C7E-B563-99DC0198062D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8cad2000 -     0x7fff8cad8ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff8cad9000 -     0x7fff8cd54ff7  com.apple.CoreData (111 - 526.1) <DC4F037B-B7F4-381A-B939-4414489D76BF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8cdb5000 -     0x7fff8cdfeff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8cdff000 -     0x7fff8ce27ffb  libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8ce28000 -     0x7fff8ce28fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8ce29000 -     0x7fff8ce2aff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8ce2b000 -     0x7fff8ce57fff  libsandbox.1.dylib (358.1.1) <BA84BDAF-2C59-3CED-8970-9FB029BD7442> /usr/lib/libsandbox.1.dylib
        0x7fff8ce58000 -     0x7fff8ce63fff  com.apple.AppSandbox (4.0 - 238.10.1) <4C171026-DC9A-3CEE-AB42-110859674F61> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8ce64000 -     0x7fff8ce65fff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
        0x7fff8ce66000 -     0x7fff8cea6ff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8cea7000 -     0x7fff8ceb7ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8cee9000 -     0x7fff8cef6fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8cf6b000 -     0x7fff8d0afff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8d0b0000 -     0x7fff8d21bff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8d21c000 -     0x7fff8d292fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff8d2e0000 -     0x7fff8d2e2ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff8d2e3000 -     0x7fff8d441ffb  com.apple.avfoundation (2.0 - 889.102) <7D2E62AF-CDEA-394C-84B2-656629F00197> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8d44b000 -     0x7fff8df95ff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8df96000 -     0x7fff8dfb7fff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8dfb8000 -     0x7fff8dff0fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8e288000 -     0x7fff8e288fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8e32c000 -     0x7fff8e331ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8e332000 -     0x7fff8e364ff7  libTrueTypeScaler.dylib (134.1) <A08BF497-9A47-3B67-A5EB-2208C58486A5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8e365000 -     0x7fff8e370ff7  libcsfde.dylib (471.10.6) <E1BF5816-3CE6-30CE-B3EE-F68CB6BA1378> /usr/lib/libcsfde.dylib
        0x7fff8e371000 -     0x7fff8e378fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8e379000 -     0x7fff8e387ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff8e3c2000 -     0x7fff8e3faffb  libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
        0x7fff8e3fb000 -     0x7fff8e44aff7  libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
        0x7fff8e44b000 -     0x7fff8e45afff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8e45b000 -     0x7fff8e46fff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8e470000 -     0x7fff8e4b0ff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff8e4c6000 -     0x7fff8e5aafff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8e5b8000 -     0x7fff8e626ffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8e627000 -     0x7fff8e629fff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8e63f000 -     0x7fff8e678fff  com.apple.AirPlaySupport (2.0 - 215.15) <C36CC8AF-27CC-3B18-9C3C-3F845B35FDEC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8e679000 -     0x7fff8e7a1ff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8e834000 -     0x7fff8e885ff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <56AA4060-63DF-3DF0-AB8A-880D0DD6F075> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8e886000 -     0x7fff8e888fff  libRadiance.dylib (1232) <E670DDEF-60F8-3AEB-B6A2-B20A1340634C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8e889000 -     0x7fff8e8b9ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8e8ba000 -     0x7fff8e8e2fff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
        0x7fff8e9ad000 -     0x7fff8ea36fff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8ea79000 -     0x7fff8eb87fff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8eb88000 -     0x7fff8edf2fff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8edf3000 -     0x7fff8edf7fff  com.apple.LoginUICore (3.0 - 3.0) <035C8626-9E66-3E3F-9976-BA4BCD9646F3> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8ef6a000 -     0x7fff8ef73fff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8ef9d000 -     0x7fff8ef9dfff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8ef9e000 -     0x7fff8efa5ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8efa6000 -     0x7fff8efcefff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff8f0b3000 -     0x7fff8f0c7ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8f184000 -     0x7fff8f1b6ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8f1d0000 -     0x7fff8f1d2fff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8f1d3000 -     0x7fff8f247fff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8f248000 -     0x7fff8f2c5ff7  com.apple.iLifeMediaBrowser (2.9.0 - 675) <2E008E85-B3EA-391C-9D79-6275AC70EDDB> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8f2c7000 -     0x7fff8f2ceff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8f2cf000 -     0x7fff8f2d5fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8f2d6000 -     0x7fff8f706fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8f735000 -     0x7fff8f759ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8f75a000 -     0x7fff8f81dff7  libvMisc.dylib (516) <A84F3A3B-D349-3FBC-B5A6-E0F572734073> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8f81e000 -     0x7fff8f8b4ffb  com.apple.CoreMedia (1.0 - 1562.107) <FE18102D-8D7A-3500-A400-747AA8C0B3D0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8f8b5000 -     0x7fff8f904ff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8f905000 -     0x7fff8f959fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8f962000 -     0x7fff8fa01df7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff8fd59000 -     0x7fff8fd60fff  libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8fd6e000 -     0x7fff8fd6fff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8fdaa000 -     0x7fff8fe22fff  com.apple.AVKit (1.1 - 214.9) <A7052EED-5EE4-3543-99D1-9C8A425E4068> /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
        0x7fff8fe23000 -     0x7fff8fe5efff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8feb8000 -     0x7fff8febdff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8febe000 -     0x7fff8fec0fff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8fefe000 -     0x7fff8ff2dfff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8ff2e000 -     0x7fff8ff33ffb  libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
        0x7fff8ff34000 -     0x7fff8ff4eff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff8ff52000 -     0x7fff8ff8dfff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8ff8e000 -     0x7fff902bcfff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3A

    Does Kontakt.4 still have problems with stability in LPX in Yosemite?  I read people were having similar trouble with Kon5 crashing their projects in LPX.
    Yes. Even the last version of K4 that was released... still has issues under Yosemite...
    The latest version of K5 however, seems to be quite stable... under Yosemite

  • Using Automator or Applescript to switch between 32 and 64-bit modes

    I'd like to use applescript or automator to create something that would switch logic in and out of 64-bit mode (yes, I'm lazy). I've been fooling around with automator to no avail...anyone have any solutions?
    Thanks in advance.

    As a Launchbar devotee, it's pretty easy for me - to run Logic I hit command-space (to activate Launchbar) then "l" (lower case L) to select Logic and return to run it.
    If I wanted to change mode I do command-space (activate Launchbar) l (to select Logic) then command-I to do a get info, untick the box and go.
    None of this tedious open finder windows and locate the application bundle etc... I do a huge amount via Launchbar, it's about the quickest most efficient way of doing many things.
    Not sure about Applescripts, my guess is it would be quite clunky and slower than the way I do it...

  • [svn:fx-4.0.0] 13428: Add mask and advanced blend mode support to SpriteVisualElement

    Revision: 13428
    Revision: 13428
    Author:   [email protected]
    Date:     2010-01-11 15:16:16 -0800 (Mon, 11 Jan 2010)
    Log Message:
    Add mask and advanced blend mode support to SpriteVisualElement
    SDK-24949 - Can't apply hue blend mode to FXG instance
    Copied blendMode and mask logic from GroupBase.
    QE notes: Add tests to SVE
    Doc notes: Update docs to mention mask and blendMode support
    Bugs: SDK-24949
    Reviewer: Pete, Ryan
    Tests run: checkintests, FXG
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24949
        http://bugs.adobe.com/jira/browse/SDK-24949
    Modified Paths:
        flex/sdk/branches/4.0.0/frameworks/projects/spark/src/spark/core/SpriteVisualElement.as

    Hi Mathais,
    I assume you have installed the OPC enum services in the same machine where xMII UDS is running.
    Also make sure that the browsing mode is set to true in the OPC Server.
    We had the same issue...and were receiving the same error...but once we changed teh Browing mode at teh OPC server to true, tag quesries started working....
    Hope it helps...
    Pramod

  • OK, What's Wrong Here--Logic and Reason

    OK, before anyone goes off on me about this post, I have searched the topics in this forum and followed all the advice for hooking up Rewire applications (and the manual is absolutely useless on this, I might add). However, after creating two separate audio objects in the Environment (L and R Rewire channels) and assigning them to their own Bus, (see below)I still can't here any sound. I get to see the faders gleefully bouncing up and down as if they're saying "You can't hear me, You Can't hear me". Is there something in Logic 7.1 that's not covered in these posts about Rewiring or have I just missed something? Here's what I've done which I got from another post on this topic:
    Environment Window
    In the Middle section of the parameters on the Left select Create
    Name it Rewire
    Under that windows "New" pull down (Top Left), pull down to Audio Object
    In the "Channel" pop up (Left, bottom section) select>Rewire (Left, right, 3,4... What ever you want.
    Double Click the Audio Object to expand it
    Pan Left or right, or whatever you need.
    Rename if you wish
    Do the same for the other stereo side. Now's the fun part. Assign these stereo pairs to a bus (above the fader, the default is "Out 1-2")
    Go to the Mixer window
    Double click the Bus you assigned, this puts it in the arrange window
    Arrange window
    Name the Bus "Rewire" or "ReDrum" or something great like that.
    Been there. done that but still no sound. Thanks, as always, for your help.

    On a side note everyone, does anyone have trouble with Reason and Logic looping together? Everytime I try to get a Reason song to loop with Logic it might loop once or twice (or not at all) but Reason will eventually lock up and its playback marker will stick on it's right loop marker and I'll hear no sound from Reason as Logic just keeps on looping. Then, if I let Logic keep playing, Reason might sync-up and start looping with Logic again or more often it doesn't. Could take 5 to 10 times around before it catches again, if at all.
    I thought these types of issues were a thing of the past with modern software?
    What's the deal?
    Noah

  • No Audio in rewire mode

    I'm running logic 7.1.1 and have just updated reason to 3.0.5. When i run reason as a rewire in logic everything syncs ok but i don't get any audio signal from reason ?. If i'm running ableton in logic as a rewire the audio is fine. can anyone help....

    Maybe this will help.
    http://thelocalhost.googlepages.com/settingupreasonwithlogic
    http://thelocalhost.googlepages.com/reasontips
    Dual 1.8Ghz G5 PB G4 1Ghz LP7.1.1 RME FF800   Mac OS X (10.4.8)   Reaktor 5.1.1 Reason 3.0.5 Live 5.0.2 Battery 3.0.1 Recycle 2.1 DFH 1.5.3

  • Hi need help! 2.2 or 2.4? Logic and maybe some video, I like GLOSSY!

    First off, I like the glossy and for video, crucial stuff, I could always get a 30" or whatever MATTE display for that down the road, but right now I can not seem to find any BENCHMARKS on 2.2 vs 2.4 for say LOGIC and how many more plug-ins you would get or not get.
    Right now on a Mac Pro (work) and was wondering if anyone knew where I could find such an article that compared the two for audio and or video use and how much of a gain would you get with the extra 200 which is really equal in old school to about 350 more megahertz and the extra 128MB of VIDEO.
    If someone could please explain as I plan on ordering one sometime next week.
    Thanks.
    P.S. Is it really a desk top replacement? Can it do the job with or without the added 7200 RPM drive? Is the USB or FIREWIRE 800 HD's fast enough to stream say orchestral samples without choking?
    In order of priority:
    a) Rock and Roll (Analog, Vocals, guitar (but plug in), bass, then plug ins for drum machines, still not sure on whether to go LOGIC or LE (I know, its a huge rip off (LE from Digi), but I like their Digi Strike - am hoping that Logic 8 and Groove Agent 3 will solve some of this.
    Lastly, how many displays can you drive from a MBP? Can you drive two? Do you think that will be a feature to come, or should I just get a Mac Pro and say the heck with it at home!
    Thanks!

    You will likely not find benchmarks for Logic as the HD and other internal components will play a huge roll in the performance you get from the applications and various plug-ins. Plug-ins put different strains on your processor, depending on the level of processing each plug-in requires.
    No, the MacBook Pro isn't a desktop replacement when it's being used for audio recording and mixing, especially when you compare it to a Mac Pro. No way will it beat out a maxed out eight-core Mac Pro. You'll get night and day performance differences in these two machines.
    It sounds like you'll be working with 4 tracks of stereo .. or possibly 10 mono tracks? If you state specifics about your method of recording and play-back and what audio interface you intend to use, we'll have a better idea of exactly how many tracks and plug-ins you actually intend/need to use simultaneously. Also, which plug-ins are you intending on using per channel? Are you going to utilize sends for global FX or rather, assigning fx to each and every channel separately?
    As to the external displays you intend on using, will one not be enough? You can attach up to a 30" cinema display if you buy the 256mb upgrade option (NVidia 8600m GT) using dual display mode to assign separate windows to each display.
    As to the difference you'll see by utilizing that upgrade, check this link out: http://www.apple.com/macbookpro/graphics.html
    My purchase advice is this if you MUST purchase a MacBook:
    2.4 MacBook Pro
    2GB of RAM
    7200rpm Internal 160GB HD Option
    Logic Express 7 (if you haven't used logic, there is a big, not huge learning curve - be warned) It's incredibly powerful.
    You said LE is a rip off? Of what? Pro Tools HD - yes, Logic 7? No. These two applications couldn't be more different. Logic is a sequencer/audio recorder and mixer/midi recorder with a fully customizable mixing environment and Pro Tools is the industry standard for audio editing, recording and mixing digital audio. Logic allows you to use stereo tracks and Pro Tools uses mono (split-stereo) tracks like you'll see in every professional recording studio.
    Go with Pro Tools LE if you think you'll be using mostly audio recordings versus utilizing midi-styled sequencing of audio units instruments. The MIDI and virtual instrument implementation within Logic is far superior to Pro Tools in my opinion.
    If you're looking for a great virtual rock-n-roll drummer plug-in, you'd be doing yourself a disservice by overlooking Quantum Leap Ministry of Rock. This plug-in also features guitar and bass instruments sure to please any rocker. For orchestral samples, try Quantum Leap Symphonic Orchestra plug-ins.
    What's your budget for this recording rig you're planning on putting together? Also, what are you planning on monitoring your output with? ADAM S2.5A studio monitors? Genelec 8050A monitors? Mackie HR824 mk2s?
    What are you using for a DAC? The Benchmark DAC-1?
    More details please...

  • Logic and Miroslav Philharmonik Issue

    Hi folks,
    I recently started using Philharmonik and have been having a little bit of trouble. I'm not sure where the issue lies.
    Basically, I have an instance of Philharmonik setup with 4 patches across 4 different midi channels. That way I don't load an instance of Philharmonik for each instrument. What started happening though, is that some of the patches stop playing. I can see that they're being triggered, but no sound comes out.
    I have been using Philharmonik on a multi-out with each channel playing out of a different aux strip in the mixer.
    Three out of four patches will play fine, but one of the three needs to be reloaded frequently to work.
    Initially I was worried I was setting up each patch with too high a polyphony setting (though I don't know if that matters) so I lowered it to closely match the highest number of notes that might be triggered simultaneously for each patch. It didn't change the fact that sometimes, one of the patches just won't play.
    I'm not sure I described the issue well enough.
    The setup is a an old Mac Pro (Quad 2.66) with 6GB of ram on Logic 9.1 and 10.5.8. I don't have any hiccup or sound issues and my ram isn't maxed out with the project in question. In fact, the total RAM allocation of the patches from Philharmonik is under 200MB.
    Thanks so much for your time!

    Hi Yoink,
    I'm glad you got to the bottom of it.
    I thought I would say hi b/c I too use Logic and Miroslav. I've been looking around for people who are using these programs together in case anybody has general tips about setting up a decent "virtual orchestra"
    More specifically, I'm wondering if you know anything about Rewire and Notion SLE. I'm a bit lost.
    Thanks.

  • Logic and Reason.

    Need to take a track that's coming from Reason via Rewire into Logic and export it as an audio track. Not sure how?

    NENA 77 wrote:
    Need to take a track that's coming from Reason via Rewire into Logic and export it as an audio track.
    Two methods:
    1. Solo the Reason Rewire Aux channel in Logic and bounce, after that import the audio to an Audio track (can use offline bounce in this method).
    2. Set the "Output Select" of the Reason Aux to any Bus (Bus 10 in the example picture below). This will create a new Aux (2 in the pic) - you can mute it or set to "No Output". Go to an Audio track and set its Input to "Bus 10". Now you can use the monitor "I" of the audio track or arm the "R" and hit record in Logic which will record the Reason on to the Audio track in real time.
    !http://img227.imageshack.us/img227/1341/rewaudio.gif!
    !http://img59.imageshack.us/img59/4967/aglogo45.gif!

Maybe you are looking for

  • [SOLVED] Xorg doesn't start after upgrade to 1.17.1

    Archlinux i686 Intel Core 2 Duo 6600 01:00.0 VGA compatible controller: NVIDIA Corporation G71 [GeForce 7900 GT/GTO] (rev a1) After following upgrades: [2015-02-26 03:27] [PACMAN] Running 'pacman -S mesa mesa-demos mesa-libgl' [2015-02-26 03:27] [ALP

  • Mac Mini fusion drive churning/thrashing

    My new Mac mini, while running quietly for several weeks, now has a fusion drive that is churning/thrashing continuously. It's not Time Machine.  It's not Splotligh.  It's not anything that reigsters in the Activity Monitor.  Disk Utility checks out.

  • How to install Leopard when disc drive is broken

    Because the inbuilt CD/DVD drive has broken I use an external disk drive via USB (a LaCie d2). The Leopard install disc reads perfectly well from the LaCie drive (as you would expect) but when (at the very beginning of the install process) it prompts

  • How do I get Flash working under 'Standard User' (IE9, Windows 7 x64)?

    I have a very irritating problem that I can't find anyone to help me  with. In Internet Explorer 8 (and now IE9), I can view flash videos fine (Youtube, Hulu, etc).  However,  when it comes to embedded youtube flash videos on various websites, all I

  • How to haveour own titles/captions in selection screen & in column headings

    we have SAP B1 2005 A, MS SQL 2005 though i am new to MSSQL/T-SQL programming, purely through lot of trials & errors i have learnt & managed to develop many reports/queries ! but, i am facing some problems : how to have our own captions/title for the