Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support the sensors system on macOS #960

Closed
srmainwaring opened this issue Aug 9, 2021 · 6 comments
Closed

Support the sensors system on macOS #960

srmainwaring opened this issue Aug 9, 2021 · 6 comments
Labels
enhancement New feature or request help wanted We accept pull requests! macOS macOS support

Comments

@srmainwaring
Copy link
Contributor

srmainwaring commented Aug 9, 2021

Desired behavior

Would like the sensors system plugin to run on macOS using the ogre2 render engine.

In the following we'll use the camera_sensor.sdf world as an example, but the discussion applies to any model loading the sensor system plugin with the SDF element:

    <plugin
      filename="ignition-gazebo-sensors-system"
      name="ignition::gazebo::systems::Sensors">
      <render_engine>ogre2</render_engine>
    </plugin>

If you run the following command on Ignition Ediface you'll most likely see a crash on macOS:

# Run the camera sensor example (assuming the current working directory is the colcon workspace)
ign gazebo -v 4 -s src/ign-gazebo/examples/worlds/camera_sensor.sdf

By including additional exception handling in Ogre2 we see that the reason is that the Sensors class is trying to create a new render window on a render thread. The requested operation is not allowed in the Cocoa window system, where there are some restrictions that require the initialisation of NSWindow and manipulation NSView to occur on the main thread. A full stack trace is included below in the Additional context section.

The new feature then is the ability to have some of the initialisation of the sensor system occur on the main thread before control is ceded to the render thread.

Alternatives considered

Modify the Ogre2 CocoaWindow class to support creating windows on secondary threads. The Apple developer guide has this document on Thread Safety. It suggests that a NSWindow can be created on a secondary thread (but is not generally thread-safe). However all operations on a NSView must occur on the main thread. Ogre makes use of both objects.

The function call raising the exception in Ogre is:

// https://github.com/OGRECave/ogre-next/blob/master/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm#L646-L649
        mWindow = [[OgreGL3PlusWindow alloc] initWithContentRect:windowRect
                                              styleMask:isFullscreen() ? NSBorderlessWindowMask : NSResizableWindowMask|NSTitledWindowMask
                                                backing:NSBackingStoreBuffered
                                                  defer:YES];

OgreGL3PlusWindow is a NSWindow, so the initialisation of a NSWindow is failing in this case contrary to the comments in the Apple developer guide, and it's not clear that there is an alternative way to initialise a new window for the case at hand.

Implementation suggestion

The challenge is that the initialisation of the render system in Sensors is deferred and occurs in:

https://github.com/ignitionrobotics/ign-gazebo/blob/9fbb9b988c20711fcff706fb14d034516e027e6b/src/systems/sensors/Sensors.cc#L180-L206

which is already running on a render thread.

It is ultimately triggered by this->dataPtr->doInit being set to true in:

https://github.com/ignitionrobotics/ign-gazebo/blob/9fbb9b988c20711fcff706fb14d034516e027e6b/src/systems/sensors/Sensors.cc#L427-L451

which in turn is called from a worker thread in the SimulationRunner.

A suggestion that would keep deferred initialisation and avoid blocking in the main thread is to provide another system interface, say ISystemInit that the SimulationRunner would guarantee to call on the main thread after the system was configured.

I'm happy to attempt to implement and test this proposal but wanted to sound out the development team on the design in case there are major issues with what is being suggested.

Update

Since SimulationRunner::UpdateSystems calls the ISystemPreUpdate and ISystemUpdate interfaces from the main thread we could initialise the render engine from Sensors::Update or subclass Sensors from ISystemPreUpdate then use Sensors::PreUpdate rather than introduce a new interface.

Additional context

This is the camera_sensors.sdf example running on macOS with the sensor system plugin disabled:

camera_sensor2

This is the log output from the server process with the plugin enabled. The code is from the ign-gazebo5 branch modified to support macOS with additional error reporting enabled in ign-rendering5 and ogre-next2.1:

ign gazebo -v 4 -s src/ign-gazebo/examples/worlds/camera_sensor.sdf


[Msg] Ignition Gazebo Server v5.1.0
Current host address: 192.168.1.31
Process UUID: 4a76bb85-47f1-4f68-ad64-c65904ad641e
Bind at: [udp://239.255.0.7:10317] for msg discovery
Bind at: [udp://239.255.0.7:10318] for srv discovery
Bind at: [tcp://192.168.1.31:53198] for pub/sub
Bind at: [tcp://192.168.1.31:53200] for srv. calls
Identity for receiving srv. requests: [bfb3d822-2170-4158-8cb6-361a278ef020]
Identity for receiving srv. responses: [b93f7dab-a78f-4a28-8a68-719f9487ba6d]
[Msg] Loading SDF world file[/Volumes/MacPro2_DV1/Code/robotics/gazebo/ign_ediface_ws/src/ign-gazebo/examples/worlds/camera_sensor.sdf].


[Dbg] [EntityComponentManager.cc:697] Using components of type [2251689575469537287] / [ign_gazebo_components.World].
[Dbg] [EntityComponentManager.cc:697] Using components of type [13994732549916512682] / [ign_gazebo_components.Name].
[Dbg] [EntityComponentManager.cc:697] Using components of type [12592746352568925681] / [ign_gazebo_components.Gravity].
[Dbg] [EntityComponentManager.cc:697] Using components of type [2188341333082264598] / [ign_gazebo_components.Physics].
[Dbg] [EntityComponentManager.cc:697] Using components of type [13224937992534617849] / [ign_gazebo_components.MagneticField].
[Dbg] [EntityComponentManager.cc:697] Using components of type [3630648173860223239] / [ign_gazebo_components.PhysicsEnginePlugin].
[Dbg] [EntityComponentManager.cc:697] Using components of type [17459188283658606303] / [ign_gazebo_components.RenderEngineServerPlugin].
[Dbg] [EntityComponentManager.cc:697] Using components of type [8705992680619689917] / [ign_gazebo_components.RenderEngineGuiPlugin].
[Dbg] [EntityComponentManager.cc:697] Using components of type [8753193699724811771] / [ign_gazebo_components.Wind].
[Dbg] [EntityComponentManager.cc:697] Using components of type [12173050716021724529] / [ign_gazebo_components.WorldLinearVelocity].
[Dbg] [EntityComponentManager.cc:697] Using components of type [15943768124495574352] / [ign_gazebo_components.WorldLinearVelocitySeed].
[Dbg] [EntityComponentManager.cc:697] Using components of type [3297509811873971798] / [ign_gazebo_components.ParentEntity].
[Dbg] [EntityComponentManager.cc:697] Using components of type [17100615127981600159] / [ign_gazebo_components.Scene].
[Dbg] [EntityComponentManager.cc:697] Using components of type [17605309075052480649] / [ign_gazebo_components.Atmosphere].
[Dbg] [EntityComponentManager.cc:697] Using components of type [8064491505919932473] / [ign_gazebo_components.Level].
[Dbg] [EntityComponentManager.cc:697] Using components of type [2668898242563798256] / [ign_gazebo_components.DefaultLevel].
[Dbg] [EntityComponentManager.cc:697] Using components of type [11371360182141354106] / [ign_gazebo_components.LevelEntityNames].
[Dbg] [Physics.cc:687] Loaded [ignition::physics::dartsim::Plugin] from library [/usr/local/Cellar/ignition-physics4/4.2.0/lib/ign-physics-4/engine-plugins/libignition-physics-dartsim-plugin.dylib]
[Dbg] [SimulationRunner.cc:875] Loaded system [ignition::gazebo::systems::Physics] for entity [1]
[Dbg] [Sensors.cc:371] Configuring Sensors system
[Dbg] [Sensors.cc:301] SensorsPrivate::Run
[Dbg] [SimulationRunner.cc:875] Loaded system [ignition::gazebo::systems::Sensors] for entity [1]
[Dbg] [Sensors.cc:281] SensorsPrivate::RenderThread started
[Dbg] [Sensors.cc:184] Waiting for init
[Msg] Create service on [/world/camera_sensor/create]
[Msg] Remove service on [/world/camera_sensor/remove]
[Msg] Pose service on [/world/camera_sensor/set_pose]
[Msg] Light configuration service on [/world/camera_sensor/light_config]
[Msg] Physics service on [/world/camera_sensor/set_physics]
[Msg] Enable collision service on [/world/camera_sensor/enable_collision]
[Msg] Disable collision service on [/world/camera_sensor/disable_collision]
[Dbg] [SimulationRunner.cc:875] Loaded system [ignition::gazebo::systems::UserCommands] for entity [1]
[Dbg] [SimulationRunner.cc:875] Loaded system [ignition::gazebo::systems::SceneBroadcaster] for entity [1]
[Dbg] [EntityComponentManager.cc:697] Using components of type [4981278897826323946] / [ign_gazebo_components.WorldSdf].
[Dbg] [EntityComponentManager.cc:697] Using components of type [6687176221774458630] / [ign_gazebo_components.Model].
[Dbg] [EntityComponentManager.cc:697] Using components of type [6612894081701502240] / [ign_gazebo_components.Pose].
[Dbg] [EntityComponentManager.cc:697] Using components of type [8546580419506082455] / [ign_gazebo_components.Static].
[Dbg] [EntityComponentManager.cc:697] Using components of type [9712747055438129860] / [ign_gazebo_components.WindMode].
[Dbg] [EntityComponentManager.cc:697] Using components of type [5661073481138181711] / [ign_gazebo_components.SelfCollide].
[Dbg] [EntityComponentManager.cc:697] Using components of type [11683062252779233161] / [ign_gazebo_components.SourceFilePath].
[Dbg] [EntityComponentManager.cc:697] Using components of type [5081358965268446661] / [ign_gazebo_components.Link].
[Dbg] [EntityComponentManager.cc:697] Using components of type [8112400427272910195] / [ign_gazebo_components.Inertial].
[Dbg] [EntityComponentManager.cc:697] Using components of type [16454635107327670381] / [ign_gazebo_components.Visual].
[Dbg] [EntityComponentManager.cc:697] Using components of type [13011964647677164955] / [ign_gazebo_components.CastShadows].
[Dbg] [EntityComponentManager.cc:697] Using components of type [13440282432131634483] / [ign_gazebo_components.Transparency].
[Dbg] [EntityComponentManager.cc:697] Using components of type [5453622280849253520] / [ign_gazebo_components.VisibilityFlags].
[Dbg] [EntityComponentManager.cc:697] Using components of type [17121648710877364109] / [ign_gazebo_components.Geometry].
[Dbg] [EntityComponentManager.cc:697] Using components of type [9853217982010720764] / [ign_gazebo_components.Material].
[Dbg] [EntityComponentManager.cc:697] Using components of type [17938588655714334139] / [ign_gazebo_components.Collision].
[Dbg] [EntityComponentManager.cc:697] Using components of type [9225962031573086509] / [ign_gazebo_components.CollisionElement].
[Dbg] [EntityComponentManager.cc:697] Using components of type [10522242218202596205] / [ign_gazebo_components.CanonicalLink].
[Dbg] [EntityComponentManager.cc:697] Using components of type [17053779755061317520] / [ign_gazebo_components.ModelCanonicalLink].
[Dbg] [EntityComponentManager.cc:697] Using components of type [11536476718181283925] / [ign_gazebo_components.ModelSdf].
[Dbg] [EntityComponentManager.cc:697] Using components of type [273039548655896271] / [ign_gazebo_components.Sensor].
[Dbg] [EntityComponentManager.cc:697] Using components of type [14624144930658477562] / [ign_gazebo_components.Camera].
[Dbg] [EntityComponentManager.cc:697] Using components of type [3866641186784191835] / [ign_gazebo_components.Light].
[Dbg] [EntityComponentManager.cc:697] Using components of type [9912133897551038435] / [ign_gazebo_components.LightType].
[Msg] Loaded level [3]
[Msg] Serving world controls on [/world/camera_sensor/control] and [/world/camera_sensor/playback/control]
[Msg] Serving GUI information on [/world/camera_sensor/gui/info]
[Msg] World [camera_sensor] initialized with [1ms] physics profile.
[Msg] Serving world SDF generation service on [/world/camera_sensor/generate_world_sdf]
[Msg] Serving world names on [/gazebo/worlds]
[Msg] Resource path add service on [/gazebo/resource_paths/add].
[Msg] Resource path get service on [/gazebo/resource_paths/get].
[Msg] Resource paths published on [/gazebo/resource_paths].
[Msg] Found no publishers on /stats, adding root stats topic
[Msg] Found no publishers on /clock, adding root clock topic
[Dbg] [SimulationRunner.cc:514] Creating PostUpdate worker threads: 3
[Dbg] [SimulationRunner.cc:527] Creating postupdate worker thread (0)
[Dbg] [SimulationRunner.cc:527] Creating postupdate worker thread (1)
[Dbg] [EntityComponentManager.cc:697] Using components of type [7381306350865462520] / [ign_gazebo_components.PhysicsCollisionDetector].
[Dbg] [EntityComponentManager.cc:697] Using components of type [4906787361437880049] / [ign_gazebo_components.PhysicsSolver].
[Dbg] [Sensors.cc:447] Initialization needed
[Dbg] [Sensors.cc:196] Initializing render context
[Msg] Loading plugin [ignition-rendering-ogre2]
[Msg] Serving scene information on [/world/camera_sensor/scene/info]
[Msg] Serving graph information on [/world/camera_sensor/scene/graph]
[Msg] Serving full state on [/world/camera_sensor/state]
[Msg] Serving full state (async) on [/world/camera_sensor/state_async]
[Msg] Publishing scene information on [/world/camera_sensor/scene/info]
[Msg] Publishing entity deletions on [/world/camera_sensor/scene/deletion]
[Msg] Publishing state changes on [/world/camera_sensor/state]
[Msg] Publishing pose messages on [/world/camera_sensor/pose/info]
[Msg] Publishing dynamic pose messages on [/world/camera_sensor/dynamic_pose/info]
[Dbg] [Sensors.cc:447] Initialization needed
Creating resource group General
Creating resource group Internal
Creating resource group Autodetect
SceneManagerFactory for type 'DefaultSceneManager' registered.
Registering ResourceManager for type Material
Registering ResourceManager for type Mesh
Registering ResourceManager for type Mesh2
Registering ResourceManager for type OldSkeleton
MovableObjectFactory for type 'ParticleSystem' registered.
ArchiveFactory for archive type FileSystem registered.
ArchiveFactory for archive type Zip registered.
ArchiveFactory for archive type EmbeddedZip registered.
DDS codec registering
FreeImage version: 3.18.0
This program uses FreeImage, a free, open source image library supporting all common bitmap formats. See http://freeimage.sourceforge.net for details
Supported formats: bmp,ico,jpg,jif,jpeg,jpe,jng,koa,iff,lbm,mng,pbm,pbm,pcd,pcx,pgm,pgm,png,ppm,ppm,ras,tga,targa,tif,tiff,wap,wbmp,wbm,psd,psb,cut,xbm,xpm,gif,hdr,g3,sgi,rgb,rgba,bw,exr,j2k,j2c,jp2,pfm,pct,pict,pic,3fr,arw,bay,bmq,cap,cine,cr2,crw,cs1,dc2,dcr,drf,dsc,dng,erf,fff,ia,iiq,k25,kc2,kdc,mdc,mef,mos,mrw,nef,nrw,orf,pef,ptx,pxn,qtk,raf,raw,rdc,rw2,rwl,rwz,sr2,srf,srw,sti,x3f,webp,jxr,wdp,hdp
ETC codec registering
OITD codec registering
Registering ResourceManager for type HighLevelGpuProgram
MovableObjectFactory for type 'Decal' registered.
MovableObjectFactory for type 'Entity' registered.
MovableObjectFactory for type 'Item' registered.
MovableObjectFactory for type 'Light' registered.
MovableObjectFactory for type 'BillboardSet' registered.
MovableObjectFactory for type 'ManualObject2' registered.
MovableObjectFactory for type 'BillboardChain' registered.
MovableObjectFactory for type 'RibbonTrail' registered.
MovableObjectFactory for type 'WireAabb' registered.
*-*-* OGRE Initialising
*-*-* Version 2.1.2 (Baldur)
OverlayElementFactory for type Panel registered.
OverlayElementFactory for type BorderPanel registered.
OverlayElementFactory for type TextArea registered.
Registering ResourceManager for type Font
Loading library /usr/local/opt/ogre2.1/lib/OGRE-2.1/OGRE/RenderSystem_GL3Plus.dylib
Installing plugin: GL 3+ RenderSystem
OpenGL 3+ Rendering Subsystem created.
Plugin successfully installed
Loading library /usr/local/opt/ogre2.1/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.dylib
Installing plugin: ParticleFX
Particle Emitter Type 'Point' registered
Particle Emitter Type 'Box' registered
Particle Emitter Type 'Ellipsoid' registered
Particle Emitter Type 'Cylinder' registered
Particle Emitter Type 'Ring' registered
Particle Emitter Type 'HollowEllipsoid' registered
Particle Affector Type 'LinearForce' registered
Particle Affector Type 'ColourFader' registered
Particle Affector Type 'ColourFader2' registered
Particle Affector Type 'ColourImage' registered
Particle Affector Type 'ColourInterpolator' registered
Particle Affector Type 'Scaler' registered
Particle Affector Type 'Rotator' registered
Particle Affector Type 'DirectionRandomiser' registered
Particle Affector Type 'DeflectorPlane' registered
Plugin successfully installed
CPU Identifier & Features
-------------------------
 *   CPU ID: GenuineIntel: Intel(R) Xeon(R) W-3245 CPU @ 3.20GHz
 *   Logical cores: 32
 *      SSE: yes
 *     SSE2: yes
 *     SSE3: yes
 *      MMX: yes
 *   MMXEXT: yes
 *    3DNOW: no
 * 3DNOWEXT: no
 *     CMOV: yes
 *      TSC: yes
 *      FPU: yes
 *      PRO: yes
 *       HT: no
-------------------------
***********************************************
***  Starting Mac OS X OpenGL 3+ Subsystem  ***
***********************************************
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
GL3PlusRenderSystem::_createRenderWindow "OgreWindow(0)_0", 1x1 windowed  miscParams: FSAA=0 border=none contentScalingFactor=1.000000 externalWindowHandle=0 gamma=true macAPI=cocoa macAPICocoaUseNSView=true stereoMode=Frame Sequential 
Creating a Cocoa Compatible Render System
[Err] [Ogre2RenderEngine.cc:777]  Unable to create the rendering window: OGRE EXCEPTION(3:RenderingAPIException): Failed to create window : NSWindow drag regions should only be invalidated on the Main Thread! in CocoaWindow::createNewWindow at /Users/rhys/Code/ogre/ogre-next2.1/RenderSystems/GL3Plus/src/windowing/OSX/OgreOSXCocoaWindow.mm (line 705)
[Err] [Ogre2RenderEngine.cc:785] Unable to create the rendering window after [11] attempts.
[Err] [Ogre2RenderEngine.cc:714] Failed to create dummy render window.
Added resource location '/usr/local/Cellar/ignition-rendering5/5.1.0/share/ignition/ignition-rendering5/ogre2/media' of type 'FileSystem' to resource group 'General'
Added resource location '/usr/local/Cellar/ignition-rendering5/5.1.0/share/ignition/ignition-rendering5/ogre2/media/materials/programs' of type 'FileSystem' to resource group 'General'
Added resource location '/usr/local/Cellar/ignition-rendering5/5.1.0/share/ignition/ignition-rendering5/ogre2/media/materials/scripts' of type 'FileSystem' to resource group 'General'
Added resource location '/usr/local/Cellar/ignition-rendering5/5.1.0/share/ignition/ignition-rendering5/ogre2/media/materials/textures' of type 'FileSystem' to resource group 'General'
Added resource location '/usr/local/Cellar/ignition-rendering5/5.1.0/share/ignition/ignition-rendering5/ogre2/media/2.0/scripts/Compositors' of type 'FileSystem' to resource group 'General'
Added resource location '/usr/local/Cellar/ignition-rendering5/5.1.0/share/ignition/ignition-rendering5/ogre2/media/2.0/scripts/materials/Common' of type 'FileSystem' to resource group 'General'
Added resource location '/usr/local/Cellar/ignition-rendering5/5.1.0/share/ignition/ignition-rendering5/ogre2/media/2.0/scripts/materials/Common/GLSL' of type 'FileSystem' to resource group 'General'
[BUG] Segmentation fault at 0x00000000000001d8
ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [x86_64-darwin19]

-- Crash Report log information --------------------------------------------
   See Crash Report log file under the one of following:                    
     * ~/Library/Logs/DiagnosticReports                                     
     * /Library/Logs/DiagnosticReports                                      
   for more details.                                                        
Don't forget to include the above Crash Report log file in bug reports.     

-- Machine register context ------------------------------------------------
 rax: 0x0000000000000000 rbx: 0x00007fb411923cd8 rcx: 0x000000012eb15c20
 rdx: 0x0000000000000001 rdi: 0x00007fb411923cd8 rsi: 0x00007fb3f10a5e00
 rbp: 0x0000700004eb3970 rsp: 0x0000700004eb3960  r8: 0x000000000000581a
  r9: 0x0000000000000001 r10: 0x0000000000000001 r11: 0x000000012e3dcbf0
 r12: 0x00007fb411923a10 r13: 0x00007fb3e0c56f20 r14: 0x00007fb3f10a5e00
 r15: 0x00007fb3f10a5e00 rip: 0x000000012e3dcc3a rfl: 0x0000000000010246

-- C level backtrace information -------------------------------------------
/usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib(rb_vm_bugreport+0x23d) [0x10c57b1f3]
/usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib(0x10c42363d) [0x10c42363d]
/usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib(0x10c505e84) [0x10c505e84]
/usr/lib/system/libsystem_platform.dylib(_sigtramp+0x1d) [0x7fff20522d7d]
/usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib(_ZN4Ogre15ConstBufferPool19_changeRenderSystemEPNS_12RenderSystemE+0x4a) [0x12e3dcc3a]
/usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsUnlit.2.1.2.dylib(_ZN4Ogre9HlmsUnlit19_changeRenderSystemEPNS_12RenderSystemE+0x3b) [0x12eb15c5b]
/usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib(_ZN8ignition9rendering2v517Ogre2RenderEngine15CreateResourcesEv+0xd8b) [0x12e110b3b]
/usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib(_ZN8ignition9rendering2v517Ogre2RenderEngine11LoadAttemptEv+0xa0) [0x12e10e6e0]
/usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib(_ZN8ignition9rendering2v517Ogre2RenderEngine8LoadImplERKNSt3__13mapINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESA_NS3_4lessISA_EENS8_INS3_4pairIKSA_SA_EEEEEE+0x1c2) [0x12e10e2d2]
/usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib(_ZN8ignition9rendering2v516BaseRenderEngine4LoadERKNSt3__13mapINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESA_NS3_4lessISA_EENS8_INS3_4pairIKSA_SA_EEEEEE+0xe5) [0x12dd52d55]
/usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib(_ZN8ignition9rendering26RenderEngineManagerPrivate6EngineE10EngineInfoRKNSt3__13mapINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEESA_NS3_4lessISA_EENS8_INS3_4pairIKSA_SA_EEEEEERSE_+0xc4) [0x12dd420e4]
/usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib(_ZN8ignition9rendering2v519RenderEngineManager6EngineERKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKNS3_3mapIS9_S9_NS3_4lessIS9_EENS7_INS3_4pairISA_S9_EEEEEESB_+0x9c) [0x12dd41f9c]
/usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-rendering.5.1.0.dylib(_ZN8ignition6gazebo2v510RenderUtil4InitEv+0x176) [0x12d9523d6]
/usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib(_ZN8ignition6gazebo2v57systems14SensorsPrivate11WaitForInitEv+0x2ef) [0x12d8855ef]
/usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib(_ZN8ignition6gazebo2v57systems14SensorsPrivate12RenderThreadEv+0xdb) [0x12d88614b]
/usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib(_ZNSt3__1L14__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEMN8ignition6gazebo2v57systems14SensorsPrivateEFvvEPSB_EEEEEPvSG_+0x3e) [0x12d8a3f6e]
/usr/lib/system/libsystem_pthread.dylib(_pthread_start+0xe0) [0x7fff204dd8fc]

-- Other runtime information -----------------------------------------------

* Loaded script: /usr/local/bin/ign

* Loaded features:

    0 enumerator.so
    1 thread.rb
    2 rational.so
    3 complex.so
    4 ruby2_keywords.rb
    5 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
    6 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/trans/transdb.bundle
    7 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/rbconfig.rb
    8 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/compatibility.rb
    9 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/defaults.rb
   10 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/deprecate.rb
   11 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/errors.rb
   12 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/exceptions.rb
   13 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/defaults/operating_system.rb
   14 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/basic_specification.rb
   15 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/stub_specification.rb
   16 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/text.rb
   17 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/user_interaction.rb
   18 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/specification_policy.rb
   19 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/util/list.rb
   20 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/platform.rb
   21 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/version.rb
   22 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/requirement.rb
   23 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/specification.rb
   24 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/util.rb
   25 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/dependency.rb
   26 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/core_ext/kernel_gem.rb
   27 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/monitor.bundle
   28 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/monitor.rb
   29 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/core_ext/kernel_require.rb
   30 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/core_ext/kernel_warn.rb
   31 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems.rb
   32 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/rubygems/path_support.rb
   33 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/version.rb
   34 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/core_ext/name_error.rb
   35 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/levenshtein.rb
   36 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/jaro_winkler.rb
   37 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checker.rb
   38 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checkers/name_error_checkers/class_name_checker.rb
   39 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checkers/name_error_checkers/variable_name_checker.rb
   40 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checkers/name_error_checkers.rb
   41 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checkers/method_name_checker.rb
   42 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checkers/key_error_checker.rb
   43 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checkers/null_checker.rb
   44 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/tree_spell_checker.rb
   45 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/spell_checkers/require_path_checker.rb
   46 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean/formatters/plain_formatter.rb
   47 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/did_you_mean.rb
   48 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/optparse.rb
   49 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/versions.rb
   50 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/exception.rb
   51 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/syntax_error.rb
   52 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/psych.bundle
   53 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/stringio.bundle
   54 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/omap.rb
   55 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/set.rb
   56 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/class_loader.rb
   57 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/strscan.bundle
   58 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/scalar_scanner.rb
   59 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes/node.rb
   60 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes/stream.rb
   61 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes/document.rb
   62 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes/sequence.rb
   63 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes/scalar.rb
   64 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes/mapping.rb
   65 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes/alias.rb
   66 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/nodes.rb
   67 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/streaming.rb
   68 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/visitors/visitor.rb
   69 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/visitors/to_ruby.rb
   70 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/visitors/emitter.rb
   71 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/handler.rb
   72 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/tree_builder.rb
   73 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/visitors/yaml_tree.rb
   74 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/json/ruby_events.rb
   75 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/visitors/json_tree.rb
   76 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/visitors/depth_first.rb
   77 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/visitors.rb
   78 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/parser.rb
   79 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/coder.rb
   80 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/core_ext.rb
   81 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/stream.rb
   82 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/json/yaml_events.rb
   83 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/json/tree_builder.rb
   84 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/json/stream.rb
   85 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych/handlers/document_stream.rb
   86 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/forwardable/impl.rb
   87 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/forwardable.rb
   88 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/psych.rb
   89 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/yaml.rb
   90 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/fiddle.bundle
   91 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/closure.rb
   92 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/function.rb
   93 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/version.rb
   94 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle.rb
   95 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/value.rb
   96 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/pack.rb
   97 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/struct.rb
   98 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/cparser.rb
   99 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/fiddle/import.rb
  100 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/cgi/escape.bundle
  101 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/cgi/util.rb
  102 /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/erb.rb
  103 /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ruby/ignition/cmdgazebo5.rb

* Process memory map:

10c3ae000-10c3b2000 r-x /usr/local/Cellar/ruby/3.0.1/bin/ruby
10c3b2000-10c3b6000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
10c3b6000-10c3ba000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
10c3ba000-10c3bb000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
10c3bb000-10c3be000 r-- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c3be000-10c3c0000 rw- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c3c0000-10c3c1000 r-- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c3c1000-10c62d000 r-x /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c62d000-10c635000 r-- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c635000-10c639000 rw- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c639000-10c649000 rw- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c649000-10c6a6000 r-- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
10c6a6000-10c6a9000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6a9000-10c6aa000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6aa000-10c6ae000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6ae000-10c6af000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6af000-10c6c4000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6c4000-10c6c5000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6c5000-10c6c6000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6c6000-10c6db000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6db000-10c6dc000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6dc000-10c6dd000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6dd000-10c6f2000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6f2000-10c6f3000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6f3000-10c6f4000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6f4000-10c6f5000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c6f5000-10c735000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c735000-10c736000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c736000-10c7d7000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c7d7000-10c7d8000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c7d8000-10c879000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c879000-10c87a000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c87a000-10c91b000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c91b000-10c91c000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c91c000-10c9bd000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c9bd000-10c9be000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10c9be000-10ca5f000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10ca5f000-10ca60000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10ca60000-10cb01000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cb01000-10cb02000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cb02000-10cba3000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cba3000-10cba4000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cba4000-10cc45000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cc45000-10cc46000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cc46000-10cce7000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cce7000-10cce8000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cce8000-10cd89000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cd89000-10cd8a000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cd8a000-10ce2b000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10ce2b000-10ce2c000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10ce2c000-10cecd000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cecd000-10cece000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cece000-10cf6f000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cf6f000-10cf70000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10cf70000-10d011000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d011000-10d012000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d012000-10d0b3000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d0b3000-10d0b4000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d0b4000-10d155000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d155000-10d156000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d156000-10d1f7000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d1f7000-10d1f8000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d1f8000-10d299000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d299000-10d29a000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d29a000-10d33b000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d33b000-10d33c000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d33c000-10d3dd000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d3dd000-10d3de000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d3de000-10d47f000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d47f000-10d480000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d480000-10d521000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d521000-10d522000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d522000-10d5c3000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d5c3000-10d5c4000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d5c4000-10d665000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d665000-10d666000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d666000-10d707000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d707000-10d708000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d708000-10d7a9000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d7a9000-10d7aa000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d7aa000-10d84b000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d84b000-10d84c000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d84c000-10d8ed000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d8ed000-10d8ee000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d8ee000-10d98f000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d98f000-10d990000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10d990000-10da31000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10da31000-10da32000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10da32000-10dad3000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10dad3000-10dad4000 --- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10dad4000-10db75000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10db75000-10db79000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10db79000-10db7d000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10db7d000-10db81000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10db81000-10db82000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/encdb.bundle
10db82000-10db85000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/trans/transdb.bundle
10db85000-10db89000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/trans/transdb.bundle
10db89000-10db8d000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/trans/transdb.bundle
10db8d000-10db91000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/trans/transdb.bundle
10db91000-10db92000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/enc/trans/transdb.bundle
10db92000-10db95000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/monitor.bundle
10db95000-10db99000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/monitor.bundle
10db99000-10db9d000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/monitor.bundle
10db9d000-10dba1000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/monitor.bundle
10dba1000-10dba2000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/monitor.bundle
10dba2000-10dba5000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/psych.bundle
10dba5000-10dba9000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/psych.bundle
10dba9000-10dbad000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/psych.bundle
10dbad000-10dbb1000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/psych.bundle
10dbb1000-10dbb4000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/psych.bundle
10dbb4000-10dbb5000 rw- /usr/local/Cellar/libyaml/0.2.5/lib/libyaml-0.2.dylib
10dbb5000-10dbcd000 r-x /usr/local/Cellar/libyaml/0.2.5/lib/libyaml-0.2.dylib
10dbcd000-10dbce000 r-- /usr/local/Cellar/libyaml/0.2.5/lib/libyaml-0.2.dylib
10dbce000-10dbcf000 rw- /usr/local/Cellar/libyaml/0.2.5/lib/libyaml-0.2.dylib
10dbcf000-10dbd3000 r-- /usr/local/Cellar/libyaml/0.2.5/lib/libyaml-0.2.dylib
10dbd3000-10dbdb000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/stringio.bundle
10dbdb000-10dbdf000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/stringio.bundle
10dbdf000-10dbe3000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/stringio.bundle
10dbe3000-10dbe6000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/stringio.bundle
10dbe6000-10dbe7000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/strscan.bundle
10dbe7000-10dbeb000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/strscan.bundle
10dbeb000-10dbef000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/strscan.bundle
10dbef000-10dbf3000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/strscan.bundle
10dbf3000-10dbf5000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/strscan.bundle
10dbf5000-10dbf7000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/fiddle.bundle
10dbf7000-10dbff000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/fiddle.bundle
10dbff000-10dc03000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/fiddle.bundle
10dc03000-10dc07000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/fiddle.bundle
10dc07000-10dc0b000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/fiddle.bundle
10dc0b000-10dc0f000 r-x /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/cgi/escape.bundle
10dc0f000-10dc13000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/cgi/escape.bundle
10dc13000-10dc17000 rw- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/cgi/escape.bundle
10dc17000-10dc18000 r-- /usr/local/Cellar/ruby/3.0.1/lib/ruby/3.0.0/x86_64-darwin19/cgi/escape.bundle
10dc18000-10dc1b000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-ign.5.1.0.dylib
10dc1b000-10dc5f000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-ign.5.1.0.dylib
10dc5f000-10dc63000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-ign.5.1.0.dylib
10dc63000-10dc67000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-ign.5.1.0.dylib
10dc67000-10dcd6000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-ign.5.1.0.dylib
10dcd6000-10dcd7000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-gui.5.1.0.dylib
10dcd7000-10decf000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-gui.5.1.0.dylib
10decf000-10dedf000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-gui.5.1.0.dylib
10dedf000-10dee3000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-gui.5.1.0.dylib
10dee3000-10e133000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-gui.5.1.0.dylib
10e133000-10e29f000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5.5.1.0.dylib
10e29f000-10e2af000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5.5.1.0.dylib
10e2af000-10e2b3000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5.5.1.0.dylib
10e2b3000-10e2b7000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5.5.1.0.dylib
10e2b7000-10e597000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5.5.1.0.dylib
10e597000-10e5ff000 r-x /usr/local/Cellar/ignition-fuel-tools6/6.0.0/lib/libignition-fuel_tools6.6.0.0.dylib
10e5ff000-10e603000 r-- /usr/local/Cellar/ignition-fuel-tools6/6.0.0/lib/libignition-fuel_tools6.6.0.0.dylib
10e603000-10e607000 rw- /usr/local/Cellar/ignition-fuel-tools6/6.0.0/lib/libignition-fuel_tools6.6.0.0.dylib
10e607000-10e652000 r-- /usr/local/Cellar/ignition-fuel-tools6/6.0.0/lib/libignition-fuel_tools6.6.0.0.dylib
10e652000-10e653000 rw- /usr/local/Cellar/sdformat11/11.2.0/lib/libsdformat11.11.2.2.dylib
10e653000-10e85f000 r-x /usr/local/Cellar/sdformat11/11.2.0/lib/libsdformat11.11.2.2.dylib
10e85f000-10e863000 r-- /usr/local/Cellar/sdformat11/11.2.0/lib/libsdformat11.11.2.2.dylib
10e863000-10e867000 rw- /usr/local/Cellar/sdformat11/11.2.0/lib/libsdformat11.11.2.2.dylib
10e867000-10ea00000 r-- /usr/local/Cellar/sdformat11/11.2.0/lib/libsdformat11.11.2.2.dylib
10ea00000-10ea03000 rw- /usr/local/Cellar/ignition-gui5/5.2.0/lib/libignition-gui5.5.2.0.dylib
10ea03000-10ea53000 r-x /usr/local/Cellar/ignition-gui5/5.2.0/lib/libignition-gui5.5.2.0.dylib
10ea53000-10ea57000 r-- /usr/local/Cellar/ignition-gui5/5.2.0/lib/libignition-gui5.5.2.0.dylib
10ea57000-10ea5b000 rw- /usr/local/Cellar/ignition-gui5/5.2.0/lib/libignition-gui5.5.2.0.dylib
10ea5b000-10ea9f000 r-- /usr/local/Cellar/ignition-gui5/5.2.0/lib/libignition-gui5.5.2.0.dylib
10ea9f000-10eaaf000 r-x /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-profiler.4.2.0.dylib
10eaaf000-10eab3000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-profiler.4.2.0.dylib
10eab3000-10eab7000 rw- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-profiler.4.2.0.dylib
10eab7000-10eabd000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-profiler.4.2.0.dylib
10eabd000-10eabf000 rw- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-events.4.2.0.dylib
10eabf000-10eacf000 r-x /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-events.4.2.0.dylib
10eacf000-10ead3000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-events.4.2.0.dylib
10ead3000-10ead7000 rw- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-events.4.2.0.dylib
10ead7000-10eae8000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-events.4.2.0.dylib
10eae8000-10eaeb000 rw- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-av.4.2.0.dylib
10eaeb000-10eafb000 r-x /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-av.4.2.0.dylib
10eafb000-10eaff000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-av.4.2.0.dylib
10eaff000-10eb03000 rw- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-av.4.2.0.dylib
10eb03000-10eb0d000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-av.4.2.0.dylib
10eb0d000-10eb0f000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswscale.5.9.100.dylib
10eb0f000-10eb8b000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libswscale.5.9.100.dylib
10eb8b000-10eb8f000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswscale.5.9.100.dylib
10eb8f000-10eb93000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswscale.5.9.100.dylib
10eb93000-10eb9b000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswscale.5.9.100.dylib
10eb9b000-10eb9d000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswscale.5.9.100.dylib
10eb9d000-10ebbd000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libavdevice.58.13.100.dylib
10ebbd000-10ebc1000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavdevice.58.13.100.dylib
10ebc1000-10ebc5000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavdevice.58.13.100.dylib
10ebc5000-10ebcb000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavdevice.58.13.100.dylib
10ebcb000-10ed6b000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libavformat.58.76.100.dylib
10ed6b000-10ed8b000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavformat.58.76.100.dylib
10ed8b000-10eda3000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavformat.58.76.100.dylib
10eda3000-10edb8000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavformat.58.76.100.dylib
10edb8000-10edc8000 r-x /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1-loader.1.2.0.dylib
10edc8000-10edcc000 r-- /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1-loader.1.2.0.dylib
10edcc000-10edd0000 rw- /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1-loader.1.2.0.dylib
10edd0000-10ede0000 r-- /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1-loader.1.2.0.dylib
10ede0000-10ede4000 r-- /usr/lib/dyld
10ede4000-10ede5000 rw- /usr/lib/dyld
10ede5000-10ee81000 r-x /usr/lib/dyld
10ee81000-10ee89000 r-- /usr/lib/dyld
10ee89000-10ee8d000 rw- /usr/lib/dyld
10ee8d000-10eec1000 rw- /usr/lib/dyld
10eec1000-10eef9000 r-- /usr/lib/dyld
10eef9000-10eefd000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavcodec.58.134.100.dylib
10eefd000-10fb45000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libavcodec.58.134.100.dylib
10fb45000-10fb89000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavcodec.58.134.100.dylib
10fb89000-10fbb5000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavcodec.58.134.100.dylib
10fbb5000-1101f9000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavcodec.58.134.100.dylib
1101f9000-110219000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavcodec.58.134.100.dylib
110219000-110269000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libavutil.56.70.100.dylib
110269000-110275000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavutil.56.70.100.dylib
110275000-110279000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavutil.56.70.100.dylib
110279000-110485000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavutil.56.70.100.dylib
110485000-11048f000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavutil.56.70.100.dylib
11048f000-11052f000 r-x /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-graphics.4.2.0.dylib
11052f000-110533000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-graphics.4.2.0.dylib
110533000-110537000 rw- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-graphics.4.2.0.dylib
110537000-1105bb000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4-graphics.4.2.0.dylib
1105bb000-1105fb000 r-x /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4.4.2.0.dylib
1105fb000-1105ff000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4.4.2.0.dylib
1105ff000-110603000 rw- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4.4.2.0.dylib
110603000-110648000 r-- /usr/local/Cellar/ignition-common4/4.2.0/lib/libignition-common4.4.2.0.dylib
110648000-11064b000 rw- /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1.1.2.0.dylib
11064b000-110653000 r-x /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1.1.2.0.dylib
110653000-110657000 r-- /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1.1.2.0.dylib
110657000-11065b000 rw- /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1.1.2.0.dylib
11065b000-110663000 r-- /usr/local/Cellar/ignition-plugin1/1.2.0/lib/libignition-plugin1.1.2.0.dylib
110663000-11069b000 r-x /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10-log.10.0.0.dylib
11069b000-11069f000 r-- /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10-log.10.0.0.dylib
11069f000-1106a3000 rw- /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10-log.10.0.0.dylib
1106a3000-1106eb000 r-- /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10-log.10.0.0.dylib
1106eb000-110707000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtQuickControls2.framework/Versions/5/QtQuickControls2
110707000-11070b000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtQuickControls2.framework/Versions/5/QtQuickControls2
11070b000-11071f000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtQuickControls2.framework/Versions/5/QtQuickControls2
11071f000-110a63000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtQuick.framework/Versions/5/QtQuick
110a63000-110abf000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtQuick.framework/Versions/5/QtQuick
110abf000-110b95000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtQuick.framework/Versions/5/QtQuick
110b95000-110bf1000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtQmlModels.framework/Versions/5/QtQmlModels
110bf1000-110bf9000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtQmlModels.framework/Versions/5/QtQmlModels
110bf9000-110c10000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtQmlModels.framework/Versions/5/QtQmlModels
110c10000-110f6c000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtQml.framework/Versions/5/QtQml
110f6c000-110f9c000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtQml.framework/Versions/5/QtQml
110f9c000-111016000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtQml.framework/Versions/5/QtQml
111016000-11112a000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtNetwork.framework/Versions/5/QtNetwork
11112a000-11113e000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtNetwork.framework/Versions/5/QtNetwork
11113e000-111176000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtNetwork.framework/Versions/5/QtNetwork
111176000-111182000 r-x /usr/local/Cellar/tinyxml2/9.0.0/lib/libtinyxml2.9.0.0.dylib
111182000-111186000 r-- /usr/local/Cellar/tinyxml2/9.0.0/lib/libtinyxml2.9.0.0.dylib
111186000-11118a000 rw- /usr/local/Cellar/tinyxml2/9.0.0/lib/libtinyxml2.9.0.0.dylib
11118a000-111192000 r-- /usr/local/Cellar/tinyxml2/9.0.0/lib/libtinyxml2.9.0.0.dylib
111192000-1111ea000 r-x /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10.10.0.0.dylib
1111ea000-1111ee000 r-- /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10.10.0.0.dylib
1111ee000-1111f2000 rw- /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10.10.0.0.dylib
1111f2000-11125e000 r-- /usr/local/Cellar/ignition-transport10/10.0.0/lib/libignition-transport10.10.0.0.dylib
11125e000-1113b2000 r-x /usr/local/Cellar/ignition-msgs7/7.1.0/lib/libignition-msgs7.7.1.0.dylib
1113b2000-1113c6000 r-- /usr/local/Cellar/ignition-msgs7/7.1.0/lib/libignition-msgs7.7.1.0.dylib
1113c6000-1113d2000 rw- /usr/local/Cellar/ignition-msgs7/7.1.0/lib/libignition-msgs7.7.1.0.dylib
1113d2000-111629000 r-- /usr/local/Cellar/ignition-msgs7/7.1.0/lib/libignition-msgs7.7.1.0.dylib
111629000-11162a000 rw- /usr/local/Cellar/protobuf/3.17.3/lib/libprotobuf.28.dylib
11162a000-11176a000 r-x /usr/local/Cellar/protobuf/3.17.3/lib/libprotobuf.28.dylib
11176a000-111772000 r-- /usr/local/Cellar/protobuf/3.17.3/lib/libprotobuf.28.dylib
111772000-111776000 rw- /usr/local/Cellar/protobuf/3.17.3/lib/libprotobuf.28.dylib
111776000-11186f000 r-- /usr/local/Cellar/protobuf/3.17.3/lib/libprotobuf.28.dylib
11186f000-111872000 rw- /usr/local/Cellar/ignition-math6/6.8.0/lib/libignition-math6.6.8.0.dylib
111872000-1118b2000 r-x /usr/local/Cellar/ignition-math6/6.8.0/lib/libignition-math6.6.8.0.dylib
1118b2000-1118b6000 r-- /usr/local/Cellar/ignition-math6/6.8.0/lib/libignition-math6.6.8.0.dylib
1118b6000-1118ba000 rw- /usr/local/Cellar/ignition-math6/6.8.0/lib/libignition-math6.6.8.0.dylib
1118ba000-11190c000 r-- /usr/local/Cellar/ignition-math6/6.8.0/lib/libignition-math6.6.8.0.dylib
11190c000-11190e000 rw- /usr/local/Cellar/ignition-utils1/1.0.0/lib/libignition-utils1.1.0.0.dylib
11190e000-111912000 r-x /usr/local/Cellar/ignition-utils1/1.0.0/lib/libignition-utils1.1.0.0.dylib
111912000-111913000 r-- /usr/local/Cellar/ignition-utils1/1.0.0/lib/libignition-utils1.1.0.0.dylib
111913000-111916000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtWidgets.framework/Versions/5/QtWidgets
111916000-111d62000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtWidgets.framework/Versions/5/QtWidgets
111d62000-111db6000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtWidgets.framework/Versions/5/QtWidgets
111db6000-111ec7000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtWidgets.framework/Versions/5/QtWidgets
111ec7000-1123b3000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtGui.framework/Versions/5/QtGui
1123b3000-1123e3000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtGui.framework/Versions/5/QtGui
1123e3000-1123eb000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtGui.framework/Versions/5/QtGui
1123eb000-1124ce000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtGui.framework/Versions/5/QtGui
1124ce000-112a12000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtCore.framework/Versions/5/QtCore
112a12000-112a42000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtCore.framework/Versions/5/QtCore
112a42000-112a46000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtCore.framework/Versions/5/QtCore
112a46000-112adc000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtCore.framework/Versions/5/QtCore
112adc000-112b08000 r-x /usr/local/Cellar/jsoncpp/1.9.4_1/lib/libjsoncpp.24.dylib
112b08000-112b0c000 r-- /usr/local/Cellar/jsoncpp/1.9.4_1/lib/libjsoncpp.24.dylib
112b0c000-112b10000 rw- /usr/local/Cellar/jsoncpp/1.9.4_1/lib/libjsoncpp.24.dylib
112b10000-112b22000 r-- /usr/local/Cellar/jsoncpp/1.9.4_1/lib/libjsoncpp.24.dylib
112b22000-112b24000 rw- /usr/local/Cellar/libzip/1.7.3/lib/libzip.5.3.dylib
112b24000-112b35000 r-x /usr/local/Cellar/libzip/1.7.3/lib/libzip.5.3.dylib
112b35000-112b36000 r-- /usr/local/Cellar/libzip/1.7.3/lib/libzip.5.3.dylib
112b36000-112b37000 rw- /usr/local/Cellar/libzip/1.7.3/lib/libzip.5.3.dylib
112b37000-112b3c000 r-- /usr/local/Cellar/libzip/1.7.3/lib/libzip.5.3.dylib
112b3c000-112bf8000 r-x /usr/local/Cellar/qt/5.15.2/lib/QtQuickTemplates2.framework/Versions/5/QtQuickTemplates2
112bf8000-112c1c000 rw- /usr/local/Cellar/qt/5.15.2/lib/QtQuickTemplates2.framework/Versions/5/QtQuickTemplates2
112c1c000-112c81000 r-- /usr/local/Cellar/qt/5.15.2/lib/QtQuickTemplates2.framework/Versions/5/QtQuickTemplates2
112c81000-112cc1000 r-x /usr/local/Cellar/gts/0.7.6_2/lib/libgts-0.7.5.0.1.dylib
112cc1000-112cc2000 r-- /usr/local/Cellar/gts/0.7.6_2/lib/libgts-0.7.5.0.1.dylib
112cc2000-112cc3000 rw- /usr/local/Cellar/gts/0.7.6_2/lib/libgts-0.7.5.0.1.dylib
112cc3000-112cd1000 r-- /usr/local/Cellar/gts/0.7.6_2/lib/libgts-0.7.5.0.1.dylib
112cd1000-1131d5000 r-x /usr/local/Cellar/freeimage/3.18.0/lib/libfreeimage.3.18.0.dylib
1131d5000-1131ed000 r-- /usr/local/Cellar/freeimage/3.18.0/lib/libfreeimage.3.18.0.dylib
1131ed000-11323d000 rw- /usr/local/Cellar/freeimage/3.18.0/lib/libfreeimage.3.18.0.dylib
11323d000-113241000 rw- /usr/local/Cellar/freeimage/3.18.0/lib/libfreeimage.3.18.0.dylib
113241000-1132d7000 r-- /usr/local/Cellar/freeimage/3.18.0/lib/libfreeimage.3.18.0.dylib
1132d7000-1132d9000 rw- /usr/local/Cellar/glib/2.68.3/lib/libgthread-2.0.0.dylib
1132d9000-1132dd000 r-x /usr/local/Cellar/glib/2.68.3/lib/libgthread-2.0.0.dylib
1132dd000-1132e1000 r-- /usr/local/Cellar/glib/2.68.3/lib/libgthread-2.0.0.dylib
1132e1000-1132e5000 rw- /usr/local/Cellar/glib/2.68.3/lib/libgthread-2.0.0.dylib
1132e5000-1132e6000 r-- /usr/local/Cellar/glib/2.68.3/lib/libgthread-2.0.0.dylib
1132e6000-1132e9000 rw- /usr/local/Cellar/glib/2.68.3/lib/libgmodule-2.0.0.dylib
1132e9000-1132ed000 r-x /usr/local/Cellar/glib/2.68.3/lib/libgmodule-2.0.0.dylib
1132ed000-1132f1000 r-- /usr/local/Cellar/glib/2.68.3/lib/libgmodule-2.0.0.dylib
1132f1000-1132f5000 rw- /usr/local/Cellar/glib/2.68.3/lib/libgmodule-2.0.0.dylib
1132f5000-1132f6000 r-- /usr/local/Cellar/glib/2.68.3/lib/libgmodule-2.0.0.dylib
1132f6000-1132f9000 rw- /usr/local/Cellar/glib/2.68.3/lib/libglib-2.0.0.dylib
1132f9000-113405000 r-x /usr/local/Cellar/glib/2.68.3/lib/libglib-2.0.0.dylib
113405000-113409000 r-- /usr/local/Cellar/glib/2.68.3/lib/libglib-2.0.0.dylib
113409000-11340d000 rw- /usr/local/Cellar/glib/2.68.3/lib/libglib-2.0.0.dylib
11340d000-113431000 r-- /usr/local/Cellar/glib/2.68.3/lib/libglib-2.0.0.dylib
113431000-11343b000 r-x /usr/local/Cellar/gettext/0.21/lib/libintl.8.dylib
11343b000-11343c000 r-- /usr/local/Cellar/gettext/0.21/lib/libintl.8.dylib
11343c000-11343d000 rw- /usr/local/Cellar/gettext/0.21/lib/libintl.8.dylib
11343d000-11343e000 rw- /usr/local/Cellar/gettext/0.21/lib/libintl.8.dylib
11343e000-113441000 r-- /usr/local/Cellar/gettext/0.21/lib/libintl.8.dylib
113441000-1134ad000 r-x /usr/local/Cellar/pcre/8.45/lib/libpcre.1.dylib
1134ad000-1134b1000 r-- /usr/local/Cellar/pcre/8.45/lib/libpcre.1.dylib
1134b1000-1134b5000 rw- /usr/local/Cellar/pcre/8.45/lib/libpcre.1.dylib
1134b5000-1134b8000 r-- /usr/local/Cellar/pcre/8.45/lib/libpcre.1.dylib
1134b8000-1134b9000 rw- /usr/local/Cellar/zeromq/4.3.4/lib/libzmq.5.dylib
1134b9000-113515000 r-x /usr/local/Cellar/zeromq/4.3.4/lib/libzmq.5.dylib
113515000-11351d000 r-- /usr/local/Cellar/zeromq/4.3.4/lib/libzmq.5.dylib
11351d000-113521000 rw- /usr/local/Cellar/zeromq/4.3.4/lib/libzmq.5.dylib
113521000-113553000 r-- /usr/local/Cellar/zeromq/4.3.4/lib/libzmq.5.dylib
113553000-113555000 rw- /usr/local/Cellar/libsodium/1.0.18_1/lib/libsodium.23.dylib
113555000-113595000 r-x /usr/local/Cellar/libsodium/1.0.18_1/lib/libsodium.23.dylib
113595000-113596000 r-- /usr/local/Cellar/libsodium/1.0.18_1/lib/libsodium.23.dylib
113596000-113597000 rw- /usr/local/Cellar/libsodium/1.0.18_1/lib/libsodium.23.dylib
113597000-1135a6000 r-- /usr/local/Cellar/libsodium/1.0.18_1/lib/libsodium.23.dylib
1135a6000-1135ae000 r-x /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_sensor.1.0.dylib
1135ae000-1135b2000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_sensor.1.0.dylib
1135b2000-1135b6000 rw- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_sensor.1.0.dylib
1135b6000-1135ba000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_sensor.1.0.dylib
1135ba000-1135c2000 r-x /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model_state.1.0.dylib
1135c2000-1135c6000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model_state.1.0.dylib
1135c6000-1135ca000 rw- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model_state.1.0.dylib
1135ca000-1135cf000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model_state.1.0.dylib
1135cf000-1135d2000 rw- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model.1.0.dylib
1135d2000-1135ea000 r-x /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model.1.0.dylib
1135ea000-1135ee000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model.1.0.dylib
1135ee000-1135f2000 rw- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model.1.0.dylib
1135f2000-113602000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_model.1.0.dylib
113602000-11361a000 r-x /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_world.1.0.dylib
11361a000-11361e000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_world.1.0.dylib
11361e000-113622000 rw- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_world.1.0.dylib
113622000-113632000 r-- /usr/local/Cellar/urdfdom/1.0.4_2/lib/liburdfdom_world.1.0.dylib
113632000-113635000 r-x /usr/local/Cellar/console_bridge/1.0.1/lib/libconsole_bridge.1.0.dylib
113635000-113636000 r-- /usr/local/Cellar/console_bridge/1.0.1/lib/libconsole_bridge.1.0.dylib
113636000-113637000 rw- /usr/local/Cellar/console_bridge/1.0.1/lib/libconsole_bridge.1.0.dylib
113637000-113639000 r-- /usr/local/Cellar/console_bridge/1.0.1/lib/libconsole_bridge.1.0.dylib
113639000-113645000 r-x /usr/local/Cellar/tinyxml/2.6.2/lib/libtinyxml.dylib
113645000-113649000 r-- /usr/local/Cellar/tinyxml/2.6.2/lib/libtinyxml.dylib
113649000-11364d000 rw- /usr/local/Cellar/tinyxml/2.6.2/lib/libtinyxml.dylib
11364d000-113655000 r-- /usr/local/Cellar/tinyxml/2.6.2/lib/libtinyxml.dylib
113655000-11388d000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libavfilter.7.110.100.dylib
11388d000-113901000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavfilter.7.110.100.dylib
113901000-113911000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavfilter.7.110.100.dylib
113911000-113915000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavfilter.7.110.100.dylib
113915000-11392a000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavfilter.7.110.100.dylib
11392a000-11394a000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libpostproc.55.9.100.dylib
11394a000-11394e000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libpostproc.55.9.100.dylib
11394e000-113952000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libpostproc.55.9.100.dylib
113952000-113953000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libpostproc.55.9.100.dylib
113953000-11396b000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libswresample.3.9.100.dylib
11396b000-11396f000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswresample.3.9.100.dylib
11396f000-113973000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswresample.3.9.100.dylib
113973000-113975000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libswresample.3.9.100.dylib
113975000-113991000 r-x /usr/local/Cellar/ffmpeg/4.4_2/lib/libavresample.4.0.0.dylib
113991000-113995000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavresample.4.0.0.dylib
113995000-113999000 rw- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavresample.4.0.0.dylib
113999000-11399b000 r-- /usr/local/Cellar/ffmpeg/4.4_2/lib/libavresample.4.0.0.dylib
11399b000-1139af000 r-x /usr/local/Cellar/libxcb/1.14_1/lib/libxcb.1.1.0.dylib
1139af000-1139b3000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb.1.1.0.dylib
1139b3000-1139b7000 rw- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb.1.1.0.dylib
1139b7000-1139c6000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb.1.1.0.dylib
1139c6000-1139c7000 rw- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shm.0.0.0.dylib
1139c7000-1139cb000 r-x /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shm.0.0.0.dylib
1139cb000-1139cf000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shm.0.0.0.dylib
1139cf000-1139d3000 rw- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shm.0.0.0.dylib
1139d3000-1139d4000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shm.0.0.0.dylib
1139d4000-1139d7000 rw- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shape.0.0.0.dylib
1139d7000-1139db000 r-x /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shape.0.0.0.dylib
1139db000-1139df000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shape.0.0.0.dylib
1139df000-1139e3000 rw- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shape.0.0.0.dylib
1139e3000-1139e4000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-shape.0.0.0.dylib
1139e4000-1139e7000 rw- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-xfixes.0.0.0.dylib
1139e7000-1139eb000 r-x /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-xfixes.0.0.0.dylib
1139eb000-1139ef000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-xfixes.0.0.0.dylib
1139ef000-1139f3000 rw- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-xfixes.0.0.0.dylib
1139f3000-1139f7000 r-- /usr/local/Cellar/libxcb/1.14_1/lib/libxcb-xfixes.0.0.0.dylib
1139f7000-113af3000 r-x /usr/local/Cellar/sdl2/2.0.14_1/lib/libSDL2-2.0.0.dylib
113af3000-113af7000 r-- /usr/local/Cellar/sdl2/2.0.14_1/lib/libSDL2-2.0.0.dylib
113af7000-113b03000 rw- /usr/local/Cellar/sdl2/2.0.14_1/lib/libSDL2-2.0.0.dylib
113b03000-113b3c000 r-- /usr/local/Cellar/sdl2/2.0.14_1/lib/libSDL2-2.0.0.dylib
113b3c000-113b3f000 rw- /usr/local/Cellar/rubberband/1.9.2/lib/librubberband.2.dylib
113b3f000-113b6b000 r-x /usr/local/Cellar/rubberband/1.9.2/lib/librubberband.2.dylib
113b6b000-113b6f000 r-- /usr/local/Cellar/rubberband/1.9.2/lib/librubberband.2.dylib
113b6f000-113b73000 rw- /usr/local/Cellar/rubberband/1.9.2/lib/librubberband.2.dylib
113b73000-113b82000 r-- /usr/local/Cellar/rubberband/1.9.2/lib/librubberband.2.dylib
113b82000-113b83000 rw- /usr/local/Cellar/libsamplerate/0.1.9_1/lib/libsamplerate.0.dylib
113b83000-113ced000 r-x /usr/local/Cellar/libsamplerate/0.1.9_1/lib/libsamplerate.0.dylib
113ced000-113cee000 r-- /usr/local/Cellar/libsamplerate/0.1.9_1/lib/libsamplerate.0.dylib
113cee000-113cef000 rw- /usr/local/Cellar/libsamplerate/0.1.9_1/lib/libsamplerate.0.dylib
113cef000-113cf0000 r-- /usr/local/Cellar/libsamplerate/0.1.9_1/lib/libsamplerate.0.dylib
113cf0000-113ec3000 r-x /usr/local/Cellar/tesseract/4.1.1/lib/libtesseract.4.dylib
113ec3000-113ec7000 r-- /usr/local/Cellar/tesseract/4.1.1/lib/libtesseract.4.dylib
113ec7000-113ec8000 rw- /usr/local/Cellar/tesseract/4.1.1/lib/libtesseract.4.dylib
113ec8000-113ecb000 rw- /usr/local/Cellar/tesseract/4.1.1/lib/libtesseract.4.dylib
113ecb000-113f6e000 r-- /usr/local/Cellar/tesseract/4.1.1/lib/libtesseract.4.dylib
113f6e000-113f9a000 r-x /usr/local/Cellar/libass/0.15.1/lib/libass.9.dylib
113f9a000-113f9e000 r-- /usr/local/Cellar/libass/0.15.1/lib/libass.9.dylib
113f9e000-113fa2000 rw- /usr/local/Cellar/libass/0.15.1/lib/libass.9.dylib
113fa2000-113fac000 r-- /usr/local/Cellar/libass/0.15.1/lib/libass.9.dylib
113fac000-113fae000 rw- /usr/local/Cellar/libvidstab/1.1.0/lib/libvidstab.1.1.dylib
113fae000-113fb8000 r-x /usr/local/Cellar/libvidstab/1.1.0/lib/libvidstab.1.1.dylib
113fb8000-113fb9000 r-- /usr/local/Cellar/libvidstab/1.1.0/lib/libvidstab.1.1.dylib
113fb9000-113fba000 rw- /usr/local/Cellar/libvidstab/1.1.0/lib/libvidstab.1.1.dylib
113fba000-113fbd000 r-- /usr/local/Cellar/libvidstab/1.1.0/lib/libvidstab.1.1.dylib
113fbd000-11405f000 r-x /usr/local/Cellar/zimg/3.0.1/lib/libzimg.2.dylib
11405f000-114063000 r-- /usr/local/Cellar/zimg/3.0.1/lib/libzimg.2.dylib
114063000-114064000 rw- /usr/local/Cellar/zimg/3.0.1/lib/libzimg.2.dylib
114064000-114092000 r-- /usr/local/Cellar/zimg/3.0.1/lib/libzimg.2.dylib
114092000-1140c2000 r-x /usr/local/Cellar/fontconfig/2.13.1/lib/libfontconfig.1.dylib
1140c2000-1140c4000 r-- /usr/local/Cellar/fontconfig/2.13.1/lib/libfontconfig.1.dylib
1140c4000-1140c5000 rw- /usr/local/Cellar/fontconfig/2.13.1/lib/libfontconfig.1.dylib
1140c5000-1140cf000 r-- /usr/local/Cellar/fontconfig/2.13.1/lib/libfontconfig.1.dylib
1140cf000-11414f000 r-x /usr/local/Cellar/freetype/2.10.4/lib/libfreetype.6.dylib
11414f000-114157000 r-- /usr/local/Cellar/freetype/2.10.4/lib/libfreetype.6.dylib
114157000-11415b000 rw- /usr/local/Cellar/freetype/2.10.4/lib/libfreetype.6.dylib
11415b000-11416d000 r-- /usr/local/Cellar/freetype/2.10.4/lib/libfreetype.6.dylib
11416d000-11416f000 rw- /usr/local/Cellar/libbluray/1.3.0/lib/libbluray.2.dylib
11416f000-1141a7000 r-x /usr/local/Cellar/libbluray/1.3.0/lib/libbluray.2.dylib
1141a7000-1141ab000 r-- /usr/local/Cellar/libbluray/1.3.0/lib/libbluray.2.dylib
1141ab000-1141af000 rw- /usr/local/Cellar/libbluray/1.3.0/lib/libbluray.2.dylib
1141af000-1141b7000 r-- /usr/local/Cellar/libbluray/1.3.0/lib/libbluray.2.dylib
1141b7000-1142ff000 r-x /usr/local/Cellar/gnutls/3.6.16/lib/libgnutls.30.dylib
1142ff000-11430f000 r-- /usr/local/Cellar/gnutls/3.6.16/lib/libgnutls.30.dylib
11430f000-114313000 rw- /usr/local/Cellar/gnutls/3.6.16/lib/libgnutls.30.dylib
114313000-114317000 rw- /usr/local/Cellar/gnutls/3.6.16/lib/libgnutls.30.dylib
114317000-11434e000 r-- /usr/local/Cellar/gnutls/3.6.16/lib/libgnutls.30.dylib
11434e000-11434f000 rw- /usr/local/Cellar/srt/1.4.3/lib/libsrt.1.4.3.dylib
11434f000-1143bb000 r-x /usr/local/Cellar/srt/1.4.3/lib/libsrt.1.4.3.dylib
1143bb000-1143bf000 r-- /usr/local/Cellar/srt/1.4.3/lib/libsrt.1.4.3.dylib
1143bf000-1143c3000 rw- /usr/local/Cellar/srt/1.4.3/lib/libsrt.1.4.3.dylib
1143c3000-1143ed000 r-- /usr/local/Cellar/srt/1.4.3/lib/libsrt.1.4.3.dylib
1143ed000-1143ef000 rw- /usr/local/Cellar/webp/1.2.0/lib/libwebpmux.3.dylib
1143ef000-1143f7000 r-x /usr/local/Cellar/webp/1.2.0/lib/libwebpmux.3.dylib
1143f7000-1143fb000 r-- /usr/local/Cellar/webp/1.2.0/lib/libwebpmux.3.dylib
1143fb000-1143ff000 rw- /usr/local/Cellar/webp/1.2.0/lib/libwebpmux.3.dylib
1143ff000-114401000 r-- /usr/local/Cellar/webp/1.2.0/lib/libwebpmux.3.dylib
114401000-114403000 rw- /usr/local/Cellar/webp/1.2.0/lib/libwebp.7.dylib
114403000-114457000 r-x /usr/local/Cellar/webp/1.2.0/lib/libwebp.7.dylib
114457000-11445b000 r-- /usr/local/Cellar/webp/1.2.0/lib/libwebp.7.dylib
11445b000-11445f000 rw- /usr/local/Cellar/webp/1.2.0/lib/libwebp.7.dylib
11445f000-11446a000 r-- /usr/local/Cellar/webp/1.2.0/lib/libwebp.7.dylib
11446a000-11446b000 rw- /usr/local/Cellar/xz/5.2.5/lib/liblzma.5.dylib
11446b000-114487000 r-x /usr/local/Cellar/xz/5.2.5/lib/liblzma.5.dylib
114487000-114488000 r-- /usr/local/Cellar/xz/5.2.5/lib/liblzma.5.dylib
114488000-114489000 rw- /usr/local/Cellar/xz/5.2.5/lib/liblzma.5.dylib
114489000-11448d000 r-- /usr/local/Cellar/xz/5.2.5/lib/liblzma.5.dylib
11448d000-1145bd000 r-x /usr/local/Cellar/dav1d/0.9.0/lib/libdav1d.5.dylib
1145bd000-1145c1000 r-- /usr/local/Cellar/dav1d/0.9.0/lib/libdav1d.5.dylib
1145c1000-1145c5000 rw- /usr/local/Cellar/dav1d/0.9.0/lib/libdav1d.5.dylib
1145c5000-114605000 rw- /usr/local/Cellar/dav1d/0.9.0/lib/libdav1d.5.dylib
114605000-114665000 r-- /usr/local/Cellar/dav1d/0.9.0/lib/libdav1d.5.dylib
114665000-114676000 r-x /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrwb.0.dylib
114676000-114677000 r-- /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrwb.0.dylib
114677000-114678000 rw- /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrwb.0.dylib
114678000-11467a000 r-- /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrwb.0.dylib
11467a000-114682000 r-x /usr/local/Cellar/snappy/1.1.9/lib/libsnappy.1.1.9.dylib
114682000-114686000 r-- /usr/local/Cellar/snappy/1.1.9/lib/libsnappy.1.1.9.dylib
114686000-11468a000 rw- /usr/local/Cellar/snappy/1.1.9/lib/libsnappy.1.1.9.dylib
11468a000-11468d000 r-- /usr/local/Cellar/snappy/1.1.9/lib/libsnappy.1.1.9.dylib
11468d000-11468e000 rw- /usr/local/Cellar/aom/3.1.1/lib/libaom.3.1.1.dylib
11468e000-114afa000 r-x /usr/local/Cellar/aom/3.1.1/lib/libaom.3.1.1.dylib
114afa000-114b0e000 r-- /usr/local/Cellar/aom/3.1.1/lib/libaom.3.1.1.dylib
114b0e000-114b12000 rw- /usr/local/Cellar/aom/3.1.1/lib/libaom.3.1.1.dylib
114b12000-114b5e000 rw- /usr/local/Cellar/aom/3.1.1/lib/libaom.3.1.1.dylib
114b5e000-114bd6000 r-- /usr/local/Cellar/aom/3.1.1/lib/libaom.3.1.1.dylib
114bd6000-114c0e000 r-x /usr/local/Cellar/lame/3.100/lib/libmp3lame.0.dylib
114c0e000-114c0f000 r-- /usr/local/Cellar/lame/3.100/lib/libmp3lame.0.dylib
114c0f000-114c10000 rw- /usr/local/Cellar/lame/3.100/lib/libmp3lame.0.dylib
114c10000-114c3d000 rw- /usr/local/Cellar/lame/3.100/lib/libmp3lame.0.dylib
114c3d000-114c47000 r-- /usr/local/Cellar/lame/3.100/lib/libmp3lame.0.dylib
114c47000-114c69000 r-x /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrnb.0.dylib
114c69000-114c6a000 r-- /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrnb.0.dylib
114c6a000-114c6b000 rw- /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrnb.0.dylib
114c6b000-114c6e000 r-- /usr/local/Cellar/opencore-amr/0.1.5/lib/libopencore-amrnb.0.dylib
114c6e000-114cae000 r-x /usr/local/Cellar/openjpeg/2.4.0/lib/libopenjp2.2.4.0.dylib
114cae000-114cb2000 r-- /usr/local/Cellar/openjpeg/2.4.0/lib/libopenjp2.2.4.0.dylib
114cb2000-114cb6000 rw- /usr/local/Cellar/openjpeg/2.4.0/lib/libopenjp2.2.4.0.dylib
114cb6000-114cbd000 r-- /usr/local/Cellar/openjpeg/2.4.0/lib/libopenjp2.2.4.0.dylib
114cbd000-114cbe000 rw- /usr/local/Cellar/opus/1.3.1/lib/libopus.0.dylib
114cbe000-114d07000 r-x /usr/local/Cellar/opus/1.3.1/lib/libopus.0.dylib
114d07000-114d08000 r-- /usr/local/Cellar/opus/1.3.1/lib/libopus.0.dylib
114d08000-114d09000 rw- /usr/local/Cellar/opus/1.3.1/lib/libopus.0.dylib
114d09000-114d0f000 r-- /usr/local/Cellar/opus/1.3.1/lib/libopus.0.dylib
114d0f000-114f03000 r-x /usr/local/Cellar/rav1e/0.4.1_1/lib/librav1e.0.4.1.dylib
114f03000-114f1f000 r-- /usr/local/Cellar/rav1e/0.4.1_1/lib/librav1e.0.4.1.dylib
114f1f000-114f23000 rw- /usr/local/Cellar/rav1e/0.4.1_1/lib/librav1e.0.4.1.dylib
114f23000-11509c000 r-- /usr/local/Cellar/rav1e/0.4.1_1/lib/librav1e.0.4.1.dylib
11509c000-11509f000 rw- /usr/local/Cellar/speex/1.2.0/lib/libspeex.1.dylib
11509f000-1150b1000 r-x /usr/local/Cellar/speex/1.2.0/lib/libspeex.1.dylib
1150b1000-1150b2000 r-- /usr/local/Cellar/speex/1.2.0/lib/libspeex.1.dylib
1150b2000-1150b3000 rw- /usr/local/Cellar/speex/1.2.0/lib/libspeex.1.dylib
1150b3000-1150b6000 r-- /usr/local/Cellar/speex/1.2.0/lib/libspeex.1.dylib
1150b6000-1150de000 r-x /usr/local/Cellar/theora/1.1.1/lib/libtheoraenc.1.dylib
1150de000-1150df000 r-- /usr/local/Cellar/theora/1.1.1/lib/libtheoraenc.1.dylib
1150df000-1150e0000 rw- /usr/local/Cellar/theora/1.1.1/lib/libtheoraenc.1.dylib
1150e0000-1150e3000 r-- /usr/local/Cellar/theora/1.1.1/lib/libtheoraenc.1.dylib
1150e3000-1150ef000 r-x /usr/local/Cellar/theora/1.1.1/lib/libtheoradec.1.dylib
1150ef000-1150f0000 r-- /usr/local/Cellar/theora/1.1.1/lib/libtheoradec.1.dylib
1150f0000-1150f1000 rw- /usr/local/Cellar/theora/1.1.1/lib/libtheoradec.1.dylib
1150f1000-1150f3000 r-- /usr/local/Cellar/theora/1.1.1/lib/libtheoradec.1.dylib
1150f3000-1150fb000 r-x /usr/local/Cellar/libogg/1.3.5/lib/libogg.0.dylib
1150fb000-1150ff000 r-- /usr/local/Cellar/libogg/1.3.5/lib/libogg.0.dylib
1150ff000-115103000 rw- /usr/local/Cellar/libogg/1.3.5/lib/libogg.0.dylib
115103000-115105000 r-- /usr/local/Cellar/libogg/1.3.5/lib/libogg.0.dylib
115105000-115107000 rw- /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbis.0.dylib
115107000-11512a000 r-x /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbis.0.dylib
11512a000-11512b000 r-- /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbis.0.dylib
11512b000-11512c000 rw- /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbis.0.dylib
11512c000-11512f000 r-- /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbis.0.dylib
11512f000-1151a7000 r-x /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbisenc.2.dylib
1151a7000-1151be000 r-- /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbisenc.2.dylib
1151be000-1151bf000 rw- /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbisenc.2.dylib
1151bf000-1151d8000 r-- /usr/local/Cellar/libvorbis/1.3.7/lib/libvorbisenc.2.dylib
1151d8000-115370000 r-x /usr/local/Cellar/x264/r3060/lib/libx264.163.dylib
115370000-115374000 r-- /usr/local/Cellar/x264/r3060/lib/libx264.163.dylib
115374000-115378000 rw- /usr/local/Cellar/x264/r3060/lib/libx264.163.dylib
115378000-115470000 rw- /usr/local/Cellar/x264/r3060/lib/libx264.163.dylib
115470000-115474000 r-- /usr/local/Cellar/x264/r3060/lib/libx264.163.dylib
115474000-116314000 r-x /usr/local/Cellar/x265/3.5/lib/libx265.199.dylib
116314000-116318000 r-- /usr/local/Cellar/x265/3.5/lib/libx265.199.dylib
116318000-11631c000 rw- /usr/local/Cellar/x265/3.5/lib/libx265.199.dylib
11631c000-11632c000 rw- /usr/local/Cellar/x265/3.5/lib/libx265.199.dylib
11632c000-11651c000 r-- /usr/local/Cellar/x265/3.5/lib/libx265.199.dylib
11651c000-116542000 r-x /usr/local/Cellar/libsoxr/0.1.3/lib/libsoxr.0.1.2.dylib
116542000-116544000 r-- /usr/local/Cellar/libsoxr/0.1.3/lib/libsoxr.0.1.2.dylib
116544000-116545000 rw- /usr/local/Cellar/libsoxr/0.1.3/lib/libsoxr.0.1.2.dylib
116545000-11657a000 rw- /usr/local/Cellar/libsoxr/0.1.3/lib/libsoxr.0.1.2.dylib
11657a000-11657d000 r-- /usr/local/Cellar/libsoxr/0.1.3/lib/libsoxr.0.1.2.dylib
11657d000-1165a0000 r-x /usr/local/Cellar/libpng/1.6.37/lib/libpng16.16.dylib
1165a0000-1165a1000 r-- /usr/local/Cellar/libpng/1.6.37/lib/libpng16.16.dylib
1165a1000-1165a2000 rw- /usr/local/Cellar/libpng/1.6.37/lib/libpng16.16.dylib
1165a2000-1165a9000 r-- /usr/local/Cellar/libpng/1.6.37/lib/libpng16.16.dylib
1165a9000-11664d000 r-x /usr/local/Cellar/p11-kit/0.24.0/lib/libp11-kit.0.dylib
11664d000-116659000 r-- /usr/local/Cellar/p11-kit/0.24.0/lib/libp11-kit.0.dylib
116659000-116665000 rw- /usr/local/Cellar/p11-kit/0.24.0/lib/libp11-kit.0.dylib
116665000-11669d000 r-- /usr/local/Cellar/p11-kit/0.24.0/lib/libp11-kit.0.dylib
11669d000-1166bd000 r-x /usr/local/Cellar/libidn2/2.3.1/lib/libidn2.0.dylib
1166bd000-1166c1000 r-- /usr/local/Cellar/libidn2/2.3.1/lib/libidn2.0.dylib
1166c1000-1166c5000 rw- /usr/local/Cellar/libidn2/2.3.1/lib/libidn2.0.dylib
1166c5000-1166c7000 r-- /usr/local/Cellar/libidn2/2.3.1/lib/libidn2.0.dylib
1166c7000-1166c9000 rw- /usr/local/Cellar/libunistring/0.9.10/lib/libunistring.2.dylib
1166c9000-11682c000 r-x /usr/local/Cellar/libunistring/0.9.10/lib/libunistring.2.dylib
11682c000-11682f000 r-- /usr/local/Cellar/libunistring/0.9.10/lib/libunistring.2.dylib
11682f000-116830000 rw- /usr/local/Cellar/libunistring/0.9.10/lib/libunistring.2.dylib
116830000-11683f000 r-- /usr/local/Cellar/libunistring/0.9.10/lib/libunistring.2.dylib
11683f000-11684f000 r-x /usr/local/Cellar/libtasn1/4.17.0/lib/libtasn1.6.dylib
11684f000-116853000 r-- /usr/local/Cellar/libtasn1/4.17.0/lib/libtasn1.6.dylib
116853000-116857000 rw- /usr/local/Cellar/libtasn1/4.17.0/lib/libtasn1.6.dylib
116857000-116859000 r-- /usr/local/Cellar/libtasn1/4.17.0/lib/libtasn1.6.dylib
116859000-11685b000 rw- /usr/local/Cellar/nettle/3.7.3/lib/libnettle.8.4.dylib
11685b000-11688b000 r-x /usr/local/Cellar/nettle/3.7.3/lib/libnettle.8.4.dylib
11688b000-11688f000 r-- /usr/local/Cellar/nettle/3.7.3/lib/libnettle.8.4.dylib
11688f000-116893000 rw- /usr/local/Cellar/nettle/3.7.3/lib/libnettle.8.4.dylib
116893000-11689e000 r-- /usr/local/Cellar/nettle/3.7.3/lib/libnettle.8.4.dylib
11689e000-11689f000 rw- /usr/local/Cellar/nettle/3.7.3/lib/libhogweed.6.4.dylib
11689f000-1168d7000 r-x /usr/local/Cellar/nettle/3.7.3/lib/libhogweed.6.4.dylib
1168d7000-1168db000 r-- /usr/local/Cellar/nettle/3.7.3/lib/libhogweed.6.4.dylib
1168db000-1168df000 rw- /usr/local/Cellar/nettle/3.7.3/lib/libhogweed.6.4.dylib
1168df000-1168e8000 r-- /usr/local/Cellar/nettle/3.7.3/lib/libhogweed.6.4.dylib
1168e8000-1168eb000 rw- /usr/local/Cellar/gmp/6.2.1/lib/libgmp.10.dylib
1168eb000-116947000 r-x /usr/local/Cellar/gmp/6.2.1/lib/libgmp.10.dylib
116947000-11694b000 r-- /usr/local/Cellar/gmp/6.2.1/lib/libgmp.10.dylib
11694b000-11694f000 rw- /usr/local/Cellar/gmp/6.2.1/lib/libgmp.10.dylib
11694f000-116959000 r-- /usr/local/Cellar/gmp/6.2.1/lib/libgmp.10.dylib
116959000-11695b000 rw- /usr/local/Cellar/libffi/3.3_3/lib/libffi.7.dylib
11695b000-116963000 r-x /usr/local/Cellar/libffi/3.3_3/lib/libffi.7.dylib
116963000-116967000 r-- /usr/local/Cellar/libffi/3.3_3/lib/libffi.7.dylib
116967000-11696b000 rw- /usr/local/Cellar/libffi/3.3_3/lib/libffi.7.dylib
11696b000-11696d000 r-- /usr/local/Cellar/libffi/3.3_3/lib/libffi.7.dylib
11696d000-11696f000 rw- /usr/local/Cellar/[email protected]/1.1.1k/lib/libssl.1.1.dylib
11696f000-1169bf000 r-x /usr/local/Cellar/[email protected]/1.1.1k/lib/libssl.1.1.dylib
1169bf000-1169c7000 r-- /usr/local/Cellar/[email protected]/1.1.1k/lib/libssl.1.1.dylib
1169c7000-1169cf000 rw- /usr/local/Cellar/[email protected]/1.1.1k/lib/libssl.1.1.dylib
1169cf000-1169ea000 r-- /usr/local/Cellar/[email protected]/1.1.1k/lib/libssl.1.1.dylib
1169ea000-1169eb000 rw- /usr/local/Cellar/[email protected]/1.1.1k/lib/libcrypto.1.1.dylib
1169eb000-116bab000 r-x /usr/local/Cellar/[email protected]/1.1.1k/lib/libcrypto.1.1.dylib
116bab000-116bd7000 r-- /usr/local/Cellar/[email protected]/1.1.1k/lib/libcrypto.1.1.dylib
116bd7000-116bdb000 rw- /usr/local/Cellar/[email protected]/1.1.1k/lib/libcrypto.1.1.dylib
116bdb000-116bdf000 rw- /usr/local/Cellar/[email protected]/1.1.1k/lib/libcrypto.1.1.dylib
116bdf000-116c42000 r-- /usr/local/Cellar/[email protected]/1.1.1k/lib/libcrypto.1.1.dylib
116c42000-116c43000 rw- /usr/local/Cellar/leptonica/1.81.1/lib/liblept.5.dylib
116c43000-116e07000 r-x /usr/local/Cellar/leptonica/1.81.1/lib/liblept.5.dylib
116e07000-116e0b000 r-- /usr/local/Cellar/leptonica/1.81.1/lib/liblept.5.dylib
116e0b000-116e13000 rw- /usr/local/Cellar/leptonica/1.81.1/lib/liblept.5.dylib
116e13000-116e5e000 r-- /usr/local/Cellar/leptonica/1.81.1/lib/liblept.5.dylib
116e5e000-116e5f000 rw- /usr/local/Cellar/jpeg/9d/lib/libjpeg.9.dylib
116e5f000-116e8e000 r-x /usr/local/Cellar/jpeg/9d/lib/libjpeg.9.dylib
116e8e000-116e8f000 r-- /usr/local/Cellar/jpeg/9d/lib/libjpeg.9.dylib
116e8f000-116e90000 rw- /usr/local/Cellar/jpeg/9d/lib/libjpeg.9.dylib
116e90000-116e95000 r-- /usr/local/Cellar/jpeg/9d/lib/libjpeg.9.dylib
116e95000-116e9a000 r-x /usr/local/Cellar/giflib/5.2.1/lib/libgif.7.2.0.dylib
116e9a000-116e9b000 r-- /usr/local/Cellar/giflib/5.2.1/lib/libgif.7.2.0.dylib
116e9b000-116e9c000 rw- /usr/local/Cellar/giflib/5.2.1/lib/libgif.7.2.0.dylib
116e9c000-116e9e000 r-- /usr/local/Cellar/giflib/5.2.1/lib/libgif.7.2.0.dylib
116e9e000-116efe000 r-x /usr/local/Cellar/libtiff/4.3.0/lib/libtiff.5.dylib
116efe000-116f02000 r-- /usr/local/Cellar/libtiff/4.3.0/lib/libtiff.5.dylib
116f02000-116f06000 rw- /usr/local/Cellar/libtiff/4.3.0/lib/libtiff.5.dylib
116f06000-116f13000 r-- /usr/local/Cellar/libtiff/4.3.0/lib/libtiff.5.dylib
116f13000-116f16000 rw- /usr/local/Cellar/fribidi/1.0.10/lib/libfribidi.0.dylib
116f16000-116f2f000 r-x /usr/local/Cellar/fribidi/1.0.10/lib/libfribidi.0.dylib
116f2f000-116f30000 r-- /usr/local/Cellar/fribidi/1.0.10/lib/libfribidi.0.dylib
116f30000-116f31000 rw- /usr/local/Cellar/fribidi/1.0.10/lib/libfribidi.0.dylib
116f31000-116f33000 r-- /usr/local/Cellar/fribidi/1.0.10/lib/libfribidi.0.dylib
116f33000-11700f000 r-x /usr/local/Cellar/harfbuzz/2.8.1/lib/libharfbuzz.0.dylib
11700f000-117013000 r-- /usr/local/Cellar/harfbuzz/2.8.1/lib/libharfbuzz.0.dylib
117013000-117017000 rw- /usr/local/Cellar/harfbuzz/2.8.1/lib/libharfbuzz.0.dylib
117017000-117042000 r-- /usr/local/Cellar/harfbuzz/2.8.1/lib/libharfbuzz.0.dylib
117042000-117043000 rw- /usr/local/Cellar/graphite2/1.3.14/lib/libgraphite2.3.2.1.dylib
117043000-117059000 r-x /usr/local/Cellar/graphite2/1.3.14/lib/libgraphite2.3.2.1.dylib
117059000-11705a000 r-- /usr/local/Cellar/graphite2/1.3.14/lib/libgraphite2.3.2.1.dylib
11705a000-11705b000 rw- /usr/local/Cellar/graphite2/1.3.14/lib/libgraphite2.3.2.1.dylib
11705b000-117061000 r-- /usr/local/Cellar/graphite2/1.3.14/lib/libgraphite2.3.2.1.dylib
117061000-117065000 r-x /usr/local/Cellar/libxau/1.0.9/lib/libXau.6.dylib
117065000-117069000 r-- /usr/local/Cellar/libxau/1.0.9/lib/libXau.6.dylib
117069000-11706d000 rw- /usr/local/Cellar/libxau/1.0.9/lib/libXau.6.dylib
11706d000-11706e000 r-- /usr/local/Cellar/libxau/1.0.9/lib/libXau.6.dylib
11706e000-117071000 rw- /usr/local/Cellar/libxdmcp/1.1.3/lib/libXdmcp.6.dylib
117071000-117075000 r-x /usr/local/Cellar/libxdmcp/1.1.3/lib/libXdmcp.6.dylib
117075000-117079000 r-- /usr/local/Cellar/libxdmcp/1.1.3/lib/libXdmcp.6.dylib
117079000-11707d000 rw- /usr/local/Cellar/libxdmcp/1.1.3/lib/libXdmcp.6.dylib
11707d000-11707e000 r-- /usr/local/Cellar/libxdmcp/1.1.3/lib/libXdmcp.6.dylib
11707e000-117081000 rw- /Library/Preferences/Logging/.plist-cache.sAwFd8yK
117081000-11708a000 r-- /Library/Preferences/Logging/.plist-cache.sAwFd8yK
11708a000-11708e000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-physics-system.5.1.0.dylib
11708e000-117182000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-physics-system.5.1.0.dylib
117182000-117196000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-physics-system.5.1.0.dylib
117196000-11719a000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-physics-system.5.1.0.dylib
11719a000-11744c000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-physics-system.5.1.0.dylib
11744c000-11744e000 rw- /usr/local/Cellar/ignition-physics4/4.2.0/lib/libignition-physics4.4.2.0.dylib
11744e000-117456000 r-x /usr/local/Cellar/ignition-physics4/4.2.0/lib/libignition-physics4.4.2.0.dylib
117456000-11745a000 r-- /usr/local/Cellar/ignition-physics4/4.2.0/lib/libignition-physics4.4.2.0.dylib
11745a000-11745e000 rw- /usr/local/Cellar/ignition-physics4/4.2.0/lib/libignition-physics4.4.2.0.dylib
11745e000-117464000 r-- /usr/local/Cellar/ignition-physics4/4.2.0/lib/libignition-physics4.4.2.0.dylib
117464000-117466000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-bullet.6.10.0.dylib
117466000-11747a000 r-x /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-bullet.6.10.0.dylib
11747a000-11747e000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-bullet.6.10.0.dylib
11747e000-11748e000 r-- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-bullet.6.10.0.dylib
11748e000-1174ee000 r-x /usr/local/Cellar/bullet/3.17/lib/libBulletDynamics.3.17.dylib
1174ee000-1174f2000 r-- /usr/local/Cellar/bullet/3.17/lib/libBulletDynamics.3.17.dylib
1174f2000-1174f6000 rw- /usr/local/Cellar/bullet/3.17/lib/libBulletDynamics.3.17.dylib
1174f6000-11751e000 r-- /usr/local/Cellar/bullet/3.17/lib/libBulletDynamics.3.17.dylib
11751e000-117586000 r-x /usr/local/Cellar/bullet/3.17/lib/libBulletCollision.3.17.dylib
117586000-11758e000 r-- /usr/local/Cellar/bullet/3.17/lib/libBulletCollision.3.17.dylib
11758e000-117592000 rw- /usr/local/Cellar/bullet/3.17/lib/libBulletCollision.3.17.dylib
117592000-1175d1000 r-- /usr/local/Cellar/bullet/3.17/lib/libBulletCollision.3.17.dylib
1175d1000-1175d2000 rw- /usr/local/Cellar/bullet/3.17/lib/libLinearMath.3.17.dylib
1175d2000-1175ea000 r-x /usr/local/Cellar/bullet/3.17/lib/libLinearMath.3.17.dylib
1175ea000-1175ee000 r-- /usr/local/Cellar/bullet/3.17/lib/libLinearMath.3.17.dylib
1175ee000-1175f6000 rw- /usr/local/Cellar/bullet/3.17/lib/libLinearMath.3.17.dylib
1175f6000-1175fb000 r-- /usr/local/Cellar/bullet/3.17/lib/libLinearMath.3.17.dylib
1175fb000-1175fe000 rw- /usr/local/Cellar/bullet/3.17/lib/libBulletSoftBody.3.17.dylib
1175fe000-11764e000 r-x /usr/local/Cellar/bullet/3.17/lib/libBulletSoftBody.3.17.dylib
11764e000-117652000 r-- /usr/local/Cellar/bullet/3.17/lib/libBulletSoftBody.3.17.dylib
117652000-117656000 rw- /usr/local/Cellar/bullet/3.17/lib/libBulletSoftBody.3.17.dylib
117656000-11767d000 r-- /usr/local/Cellar/bullet/3.17/lib/libBulletSoftBody.3.17.dylib
11767d000-11767e000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-ode.6.10.0.dylib
11767e000-11768a000 r-x /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-ode.6.10.0.dylib
11768a000-11768e000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-ode.6.10.0.dylib
11768e000-11769b000 r-- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-collision-ode.6.10.0.dylib
11769b000-11769e000 rw- /usr/local/Cellar/ode/0.16.2/lib/libode.8.dylib
11769e000-117766000 r-x /usr/local/Cellar/ode/0.16.2/lib/libode.8.dylib
117766000-11776a000 r-- /usr/local/Cellar/ode/0.16.2/lib/libode.8.dylib
11776a000-11776e000 rw- /usr/local/Cellar/ode/0.16.2/lib/libode.8.dylib
11776e000-117776000 rw- /usr/local/Cellar/ode/0.16.2/lib/libode.8.dylib
117776000-1177bd000 r-- /usr/local/Cellar/ode/0.16.2/lib/libode.8.dylib
1177bd000-1177be000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils-urdf.6.10.0.dylib
1177be000-1177d6000 r-x /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils-urdf.6.10.0.dylib
1177d6000-1177da000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils-urdf.6.10.0.dylib
1177da000-1177f3000 r-- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils-urdf.6.10.0.dylib
1177f3000-1177f6000 rw- /usr/local/Cellar/boost/1.76.0/lib/libboost_system-mt.dylib
1177f6000-1177fa000 r-x /usr/local/Cellar/boost/1.76.0/lib/libboost_system-mt.dylib
1177fa000-1177fb000 r-- /usr/local/Cellar/boost/1.76.0/lib/libboost_system-mt.dylib
1177fb000-1177fe000 rw- /usr/share/icu/icudt66l.dat
1177fe000-1177ff000 r-- /usr/share/icu/icudt66l.dat
1177ff000-117800000 r-- /usr/share/icu/icudt66l.dat
117800000-11f800000 rw- /usr/share/icu/icudt66l.dat
11f800000-127800000 rw- /usr/share/icu/icudt66l.dat
127800000-129650000 r-- /usr/share/icu/icudt66l.dat
129650000-129738000 r-x /usr/local/Cellar/ignition-physics4/4.2.0/lib/ign-physics-4/engine-plugins/libignition-physics4-dartsim-plugin.4.2.0.dylib
129738000-129758000 r-- /usr/local/Cellar/ignition-physics4/4.2.0/lib/ign-physics-4/engine-plugins/libignition-physics4-dartsim-plugin.4.2.0.dylib
129758000-12975c000 rw- /usr/local/Cellar/ignition-physics4/4.2.0/lib/ign-physics-4/engine-plugins/libignition-physics4-dartsim-plugin.4.2.0.dylib
12975c000-129fa1000 r-- /usr/local/Cellar/ignition-physics4/4.2.0/lib/ign-physics-4/engine-plugins/libignition-physics4-dartsim-plugin.4.2.0.dylib
129fa1000-129fa4000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils.6.10.0.dylib
129fa4000-12a004000 r-x /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils.6.10.0.dylib
12a004000-12a008000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils.6.10.0.dylib
12a008000-12a04f000 r-- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-utils.6.10.0.dylib
12a04f000-12a050000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart.6.10.0.dylib
12a050000-12a244000 r-x /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart.6.10.0.dylib
12a244000-12a2b0000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart.6.10.0.dylib
12a2b0000-12a534000 r-- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart.6.10.0.dylib
12a534000-12a53c000 r-x /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-external-odelcpsolver.6.10.0.dylib
12a53c000-12a540000 rw- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-external-odelcpsolver.6.10.0.dylib
12a540000-12a543000 r-- /usr/local/Cellar/[email protected]/6.10.0~20210610~175596b511adb55d831c0c3401ef50e2cb96a6f3/lib/libdart-external-odelcpsolver.6.10.0.dylib
12a543000-12a544000 rw- /usr/local/Cellar/libccd/2.1_1/lib/libccd.2.0.dylib
12a544000-12a54c000 r-x /usr/local/Cellar/libccd/2.1_1/lib/libccd.2.0.dylib
12a54c000-12a550000 r-- /usr/local/Cellar/libccd/2.1_1/lib/libccd.2.0.dylib
12a550000-12a554000 rw- /usr/local/Cellar/libccd/2.1_1/lib/libccd.2.0.dylib
12a554000-12a555000 r-- /usr/local/Cellar/libccd/2.1_1/lib/libccd.2.0.dylib
12a555000-12a558000 rw- /usr/local/Cellar/fcl/0.6.1/lib/libfcl.0.6.1.dylib
12a558000-12a900000 r-x /usr/local/Cellar/fcl/0.6.1/lib/libfcl.0.6.1.dylib
12a900000-12a93c000 r-- /usr/local/Cellar/fcl/0.6.1/lib/libfcl.0.6.1.dylib
12a93c000-12a944000 rw- /usr/local/Cellar/fcl/0.6.1/lib/libfcl.0.6.1.dylib
12a944000-12ac57000 r-- /usr/local/Cellar/fcl/0.6.1/lib/libfcl.0.6.1.dylib
12ac57000-12ac58000 rw- /usr/local/Cellar/assimp/5.0.1/lib/libassimp.5.0.0.dylib
12ac58000-12b24c000 r-x /usr/local/Cellar/assimp/5.0.1/lib/libassimp.5.0.0.dylib
12b24c000-12b3b4000 r-- /usr/local/Cellar/assimp/5.0.1/lib/libassimp.5.0.0.dylib
12b3b4000-12b3b8000 rw- /usr/local/Cellar/assimp/5.0.1/lib/libassimp.5.0.0.dylib
12b3b8000-12b3bc000 rw- /usr/local/Cellar/assimp/5.0.1/lib/libassimp.5.0.0.dylib
12b3bc000-12b7ce000 r-- /usr/local/Cellar/assimp/5.0.1/lib/libassimp.5.0.0.dylib
12b7ce000-12b7d0000 rw- /usr/local/Cellar/boost/1.76.0/lib/libboost_filesystem-mt.dylib
12b7d0000-12b7e4000 r-x /usr/local/Cellar/boost/1.76.0/lib/libboost_filesystem-mt.dylib
12b7e4000-12b7e8000 r-- /usr/local/Cellar/boost/1.76.0/lib/libboost_filesystem-mt.dylib
12b7e8000-12b7ec000 rw- /usr/local/Cellar/boost/1.76.0/lib/libboost_filesystem-mt.dylib
12b7ec000-12b7fd000 r-- /usr/local/Cellar/boost/1.76.0/lib/libboost_filesystem-mt.dylib
12b7fd000-12b800000 rw- /usr/local/Cellar/octomap/1.9.7/lib/liboctomap.1.9.7.dylib
12b800000-12b824000 r-x /usr/local/Cellar/octomap/1.9.7/lib/liboctomap.1.9.7.dylib
12b824000-12b828000 r-- /usr/local/Cellar/octomap/1.9.7/lib/liboctomap.1.9.7.dylib
12b828000-12b82c000 rw- /usr/local/Cellar/octomap/1.9.7/lib/liboctomap.1.9.7.dylib
12b82c000-12b845000 r-- /usr/local/Cellar/octomap/1.9.7/lib/liboctomap.1.9.7.dylib
12b845000-12b848000 rw- /usr/local/Cellar/octomap/1.9.7/lib/liboctomath.1.9.7.dylib
12b848000-12b84c000 r-x /usr/local/Cellar/octomap/1.9.7/lib/liboctomath.1.9.7.dylib
12b84c000-12b850000 r-- /usr/local/Cellar/octomap/1.9.7/lib/liboctomath.1.9.7.dylib
12b850000-12b854000 rw- /usr/local/Cellar/octomap/1.9.7/lib/liboctomath.1.9.7.dylib
12b854000-12b857000 r-- /usr/local/Cellar/octomap/1.9.7/lib/liboctomath.1.9.7.dylib
12b857000-12b858000 rw- /usr/local/Cellar/boost/1.76.0/lib/libboost_regex-mt.dylib
12b858000-12b89c000 r-x /usr/local/Cellar/boost/1.76.0/lib/libboost_regex-mt.dylib
12b89c000-12b8a0000 r-- /usr/local/Cellar/boost/1.76.0/lib/libboost_regex-mt.dylib
12b8a0000-12b8a4000 rw- /usr/local/Cellar/boost/1.76.0/lib/libboost_regex-mt.dylib
12b8a4000-12b8ca000 r-- /usr/local/Cellar/boost/1.76.0/lib/libboost_regex-mt.dylib
12b8ca000-12b8cc000 rw- /usr/local/Cellar/icu4c/69.1/lib/libicudata.69.1.dylib
12b8cc000-12d424000 r-x /usr/local/Cellar/icu4c/69.1/lib/libicudata.69.1.dylib
12d424000-12d425000 r-- /usr/local/Cellar/icu4c/69.1/lib/libicudata.69.1.dylib
12d425000-12d428000 rw- /usr/local/Cellar/icu4c/69.1/lib/libicui18n.69.1.dylib
12d428000-12d5b0000 r-x /usr/local/Cellar/icu4c/69.1/lib/libicui18n.69.1.dylib
12d5b0000-12d5c0000 r-- /usr/local/Cellar/icu4c/69.1/lib/libicui18n.69.1.dylib
12d5c0000-12d5c4000 rw- /usr/local/Cellar/icu4c/69.1/lib/libicui18n.69.1.dylib
12d5c4000-12d6c2000 r-- /usr/local/Cellar/icu4c/69.1/lib/libicui18n.69.1.dylib
12d6c2000-12d6c4000 rw- /usr/local/Cellar/icu4c/69.1/lib/libicuuc.69.1.dylib
12d6c4000-12d7e4000 r-x /usr/local/Cellar/icu4c/69.1/lib/libicuuc.69.1.dylib
12d7e4000-12d7f8000 r-- /usr/local/Cellar/icu4c/69.1/lib/libicuuc.69.1.dylib
12d7f8000-12d7fc000 rw- /usr/local/Cellar/icu4c/69.1/lib/libicuuc.69.1.dylib
12d7fc000-12d85f000 r-- /usr/local/Cellar/icu4c/69.1/lib/libicuuc.69.1.dylib
12d85f000-12d860000 rw- /usr/local/Cellar/assimp/5.0.1/lib/libIrrXML.dylib
12d860000-12d868000 r-x /usr/local/Cellar/assimp/5.0.1/lib/libIrrXML.dylib
12d868000-12d86c000 r-- /usr/local/Cellar/assimp/5.0.1/lib/libIrrXML.dylib
12d86c000-12d870000 rw- /usr/local/Cellar/assimp/5.0.1/lib/libIrrXML.dylib
12d870000-12d875000 r-- /usr/local/Cellar/assimp/5.0.1/lib/libIrrXML.dylib
12d875000-12d878000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib
12d878000-12d8b0000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib
12d8b0000-12d8b4000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib
12d8b4000-12d8b8000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib
12d8b8000-12d927000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib
12d927000-12d928000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-rendering.5.1.0.dylib
12d928000-12d9d0000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-rendering.5.1.0.dylib
12d9d0000-12d9d8000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-rendering.5.1.0.dylib
12d9d8000-12d9dc000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-rendering.5.1.0.dylib
12d9dc000-12db76000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-rendering.5.1.0.dylib
12db76000-12db78000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-gpu_lidar.5.0.0.dylib
12db78000-12db90000 r-x /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-gpu_lidar.5.0.0.dylib
12db90000-12db94000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-gpu_lidar.5.0.0.dylib
12db94000-12db98000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-gpu_lidar.5.0.0.dylib
12db98000-12dbb4000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-gpu_lidar.5.0.0.dylib
12dbb4000-12dbd0000 r-x /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-depth_camera.5.0.0.dylib
12dbd0000-12dbd4000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-depth_camera.5.0.0.dylib
12dbd4000-12dbd8000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-depth_camera.5.0.0.dylib
12dbd8000-12dbfc000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-depth_camera.5.0.0.dylib
12dbfc000-12dc18000 r-x /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-thermal_camera.5.0.0.dylib
12dc18000-12dc1c000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-thermal_camera.5.0.0.dylib
12dc1c000-12dc20000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-thermal_camera.5.0.0.dylib
12dc20000-12dc43000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-thermal_camera.5.0.0.dylib
12dc43000-12dc44000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-camera.5.0.0.dylib
12dc44000-12dc60000 r-x /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-camera.5.0.0.dylib
12dc60000-12dc64000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-camera.5.0.0.dylib
12dc64000-12dc68000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-camera.5.0.0.dylib
12dc68000-12dc89000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-camera.5.0.0.dylib
12dc89000-12dc8c000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-rendering.5.0.0.dylib
12dc8c000-12dca4000 r-x /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-rendering.5.0.0.dylib
12dca4000-12dca8000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-rendering.5.0.0.dylib
12dca8000-12dcac000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-rendering.5.0.0.dylib
12dcac000-12dcc7000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-rendering.5.0.0.dylib
12dcc7000-12dcc8000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5.5.0.0.dylib
12dcc8000-12dcec000 r-x /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5.5.0.0.dylib
12dcec000-12dcf0000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5.5.0.0.dylib
12dcf0000-12dcf4000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5.5.0.0.dylib
12dcf4000-12dd27000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5.5.0.0.dylib
12dd27000-12dd28000 rw- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib
12dd28000-12dd70000 r-x /usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib
12dd70000-12dd78000 r-- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib
12dd78000-12dd7c000 rw- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib
12dd7c000-12ddf9000 r-- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib
12ddf9000-12ddfc000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-lidar.5.0.0.dylib
12ddfc000-12de14000 r-x /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-lidar.5.0.0.dylib
12de14000-12de18000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-lidar.5.0.0.dylib
12de18000-12de1c000 rw- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-lidar.5.0.0.dylib
12de1c000-12de34000 r-- /usr/local/Cellar/ignition-sensors5/5.0.0/lib/libignition-sensors5-lidar.5.0.0.dylib
12de34000-12de88000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-user-commands-system.5.1.0.dylib
12de88000-12de8c000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-user-commands-system.5.1.0.dylib
12de8c000-12de90000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-user-commands-system.5.1.0.dylib
12de90000-12df3e000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-user-commands-system.5.1.0.dylib
12df3e000-12df40000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-scene-broadcaster-system.5.1.0.dylib
12df40000-12df9c000 r-x /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-scene-broadcaster-system.5.1.0.dylib
12df9c000-12dfa0000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-scene-broadcaster-system.5.1.0.dylib
12dfa0000-12dfa4000 rw- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-scene-broadcaster-system.5.1.0.dylib
12dfa4000-12e081000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-scene-broadcaster-system.5.1.0.dylib
12e081000-12e084000 rw- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib
12e084000-12e164000 r-x /usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib
12e164000-12e210000 r-- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib
12e210000-12e214000 rw- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib
12e214000-12e3a5000 r-- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib
12e3a5000-12e3a8000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib
12e3a8000-12e728000 r-x /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib
12e728000-12e740000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib
12e740000-12e748000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib
12e748000-12e750000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib
12e750000-12ea97000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib
12ea97000-12ea98000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsPbs.2.1.2.dylib
12ea98000-12ead4000 r-x /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsPbs.2.1.2.dylib
12ead4000-12ead8000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsPbs.2.1.2.dylib
12ead8000-12eadc000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsPbs.2.1.2.dylib
12eadc000-12eb09000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsPbs.2.1.2.dylib
12eb09000-12eb0c000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsUnlit.2.1.2.dylib
12eb0c000-12eb24000 r-x /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsUnlit.2.1.2.dylib
12eb24000-12eb28000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsUnlit.2.1.2.dylib
12eb28000-12eb2c000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsUnlit.2.1.2.dylib
12eb2c000-12eb42000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsUnlit.2.1.2.dylib
12eb42000-12eb44000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreOverlay.2.1.2.dylib
12eb44000-12eb6c000 r-x /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreOverlay.2.1.2.dylib
12eb6c000-12eb70000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreOverlay.2.1.2.dylib
12eb70000-12eb74000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreOverlay.2.1.2.dylib
12eb74000-12ebb5000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreOverlay.2.1.2.dylib
12ebb5000-12ebb8000 rw- /usr/local/Cellar/libzzip/0.13.72_1/lib/libzzip-0.13.0.72.dylib
12ebb8000-12ebbc000 r-x /usr/local/Cellar/libzzip/0.13.72_1/lib/libzzip-0.13.0.72.dylib
12ebbc000-12ebc0000 r-- /usr/local/Cellar/libzzip/0.13.72_1/lib/libzzip-0.13.0.72.dylib
12ebc0000-12ebc4000 rw- /usr/local/Cellar/libzzip/0.13.72_1/lib/libzzip-0.13.0.72.dylib
12ebc4000-12ebc6000 r-- /usr/local/Cellar/libzzip/0.13.72_1/lib/libzzip-0.13.0.72.dylib
12ebc6000-12ebc8000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/RenderSystem_GL3Plus.2.1.2.dylib
12ebc8000-12ec30000 r-x /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/RenderSystem_GL3Plus.2.1.2.dylib
12ec30000-12ec38000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/RenderSystem_GL3Plus.2.1.2.dylib
12ec38000-12ec3c000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/RenderSystem_GL3Plus.2.1.2.dylib
12ec3c000-12ecc5000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/RenderSystem_GL3Plus.2.1.2.dylib
12ecc5000-12ecc8000 rw- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ecc8000-12ecc9000 rw- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ecc9000-12eccc000 r-- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12eccc000-12eccf000 r-- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12eccf000-12ecd1000 r-- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ecd1000-12ecd2000 rw- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ecd2000-12ed52000 r-- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ed52000-12ed53000 r-- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ed53000-12ed5b000 r-- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ed5b000-12ed96000 r-- /private/var/db/timezone/tz/2021a.1.0/icutz/icutz44l.dat
12ed96000-12eda5000 r-- /private/var/db/analyticsd/events.whitelist
12eda5000-12edb4000 r-- /private/var/db/analyticsd/events.whitelist
12edb4000-12edc6000 r-- /private/var/db/analyticsd/events.whitelist
12edc6000-12edc7000 r-- /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
12edc7000-12ef1b000 r-x /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
12ef1b000-12ef23000 r-- /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
12ef23000-12ef27000 rw- /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
12ef27000-12ef33000 rw- /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
12ef33000-12ef96000 r-- /System/Library/Extensions/AMDRadeonX6000GLDriver.bundle/Contents/MacOS/AMDRadeonX6000GLDriver
12ef96000-12ef97000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.2.1.2.dylib
12ef97000-12ef98000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.2.1.2.dylib
12ef98000-12ef99000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.2.1.2.dylib
12ef99000-12efad000 r-x /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.2.1.2.dylib
12efad000-12efb1000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.2.1.2.dylib
12efb1000-12efb5000 rw- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.2.1.2.dylib
12efb5000-12efe0000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/OGRE-2.1/OGRE/Plugin_ParticleFX.2.1.2.dylib
12efe0000-12efe1000 rw- /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/SystemAppearance.car
12efe1000-12f003000 r-- /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/SystemAppearance.car
12f003000-12f619000 r-- /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/Aqua.car
12f619000-12f7f6000 r-- /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/FauxVibrantLight.car
12f7f6000-12fc7d000 r-- /System/Library/CoreServices/SystemAppearance.bundle/Contents/Resources/VibrantLight.car
12fc7d000-12fc85000 rw- /usr/lib/libobjc-trampolines.dylib
12fc85000-12fc86000 r-- /usr/lib/libobjc-trampolines.dylib
12fc86000-12fc87000 rw- /usr/lib/libobjc-trampolines.dylib
12fc87000-12fc89000 r-- /usr/lib/libobjc-trampolines.dylib
12fc89000-12fc8a000 rw- /usr/lib/libobjc-trampolines.dylib
12fc8a000-12fcaa000 rw- /usr/lib/libobjc-trampolines.dylib
12fcaa000-12fcab000 rw- /usr/lib/libobjc-trampolines.dylib
12fcab000-12fcbb000 r-x /usr/lib/libobjc-trampolines.dylib
12fcbb000-12fcbd000 r-- /usr/lib/libobjc-trampolines.dylib
12fcbd000-12fcc3000 rw- /usr/lib/libobjc-trampolines.dylib
12fcc3000-12fcc7000 rw- /usr/lib/libobjc-trampolines.dylib
12fcc7000-12fcd7000 r-x /usr/lib/libobjc-trampolines.dylib
12fcd7000-12fcd8000 r-- /System/Library/Fonts/SFNS.ttf
12fcd8000-12fcdc000 rw- /System/Library/Fonts/SFNS.ttf
12fcdc000-12fcdd000 --- /System/Library/Fonts/SFNS.ttf
12fcdd000-12fcf2000 rw- /System/Library/Fonts/SFNS.ttf
12fcf2000-12fcf3000 --- /System/Library/Fonts/SFNS.ttf
12fcf3000-12fcf4000 --- /System/Library/Fonts/SFNS.ttf
12fcf4000-12fd09000 rw- /System/Library/Fonts/SFNS.ttf
12fd09000-12fd0a000 --- /System/Library/Fonts/SFNS.ttf
12fd0a000-12fd0b000 --- /System/Library/Fonts/SFNS.ttf
12fd0b000-12fd20000 rw- /System/Library/Fonts/SFNS.ttf
12fd20000-12fd21000 --- /System/Library/Fonts/SFNS.ttf
12fd21000-130508000 r-- /System/Library/Fonts/SFNS.ttf
130508000-130510000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130510000-130511000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130511000-130512000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130512000-130514000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130514000-130515000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130515000-130535000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130535000-130536000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130536000-13053e000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13053e000-13053f000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13053f000-130540000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130540000-130542000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130542000-130543000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130543000-130563000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130563000-130564000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130564000-13056c000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13056c000-13056d000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13056d000-13056e000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13056e000-130570000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130570000-130571000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130571000-130591000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130591000-130592000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130592000-13059a000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13059a000-13059b000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13059b000-13059c000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13059c000-13059e000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13059e000-13059f000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13059f000-1305bf000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305bf000-1305c0000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305c0000-1305c8000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305c8000-1305c9000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305c9000-1305ca000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305ca000-1305cc000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305cc000-1305cd000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305cd000-1305ed000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305ed000-1305ee000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305ee000-1305f6000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305f6000-1305f7000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305f7000-1305f8000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305f8000-1305fa000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305fa000-1305fb000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1305fb000-13061b000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13061b000-13061c000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13061c000-130624000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130624000-130625000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130625000-130626000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130626000-130628000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130628000-130629000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130629000-130649000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130649000-13064a000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
13064a000-130652000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130652000-130653000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130653000-130654000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130654000-130656000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130656000-130657000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130657000-130677000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130677000-130678000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130678000-130680000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130680000-130681000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130681000-130682000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130682000-130684000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130684000-130685000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
130685000-1306a5000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1306a5000-1306a6000 rw- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1306a6000-1306b3000 r-- /usr/local/Cellar/ruby/3.0.1/bin/ruby
1306b3000-130988000 r-- /usr/local/Cellar/ruby/3.0.1/lib/libruby.3.0.dylib
130988000-1309f2000 r-- /usr/lib/system/libsystem_platform.dylib
1309f2000-1310d9000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreMain.2.1.2.dylib
1310d9000-13110f000 r-- /usr/local/Cellar/ogre2.1/2.1.2/lib/libOgreHlmsUnlit.2.1.2.dylib
13110f000-131430000 r-- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/ign-rendering-5/engine-plugins/libignition-rendering5-ogre2.5.1.0.dylib
131430000-131501000 r-- /usr/local/Cellar/ignition-rendering5/5.1.0/lib/libignition-rendering5.5.1.0.dylib
131501000-13174f000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/libignition-gazebo5-rendering.5.1.0.dylib
13174f000-1317fe000 r-- /usr/local/Cellar/ignition-gazebo5/5.1.0/lib/ign-gazebo-5/plugins/libignition-gazebo5-sensors-system.5.1.0.dylib
7000028d8000-7000028d9000 ---
7000028d9000-70000295b000 rw-
70000295b000-70000295c000 ---
70000295c000-7000029de000 rw-
7000029de000-7000029df000 ---
7000029df000-700002a61000 rw-
700002a61000-700002a62000 ---
700002a62000-700002ae4000 rw-
700002ae4000-700002ae5000 ---
700002ae5000-700002b67000 rw-
700002b67000-700002b68000 ---
700002b68000-700002bea000 rw-
700002bea000-700002beb000 ---
700002beb000-700002c6d000 rw-
700002c6d000-700002c6e000 ---
700002c6e000-700002cf0000 rw-
700002cf0000-700002cf1000 ---
700002cf1000-700002d73000 rw-
700002d73000-700002d74000 ---
700002d74000-700002df6000 rw-
700002df6000-700002df7000 ---
700002df7000-700002e79000 rw-
700002e79000-700002e7a000 ---
700002e7a000-700002efc000 rw-
700002efc000-700002efd000 ---
700002efd000-700002f7f000 rw-
700002f7f000-700002f80000 ---
700002f80000-700003002000 rw-
700003002000-700003003000 ---
700003003000-700003085000 rw-
700003085000-700003086000 ---
700003086000-700003108000 rw-
700003108000-700003109000 ---
700003109000-70000318b000 rw-
70000318b000-70000318c000 ---
70000318c000-70000320e000 rw-
70000320e000-70000320f000 ---
70000320f000-700003291000 rw-
700003291000-700003292000 ---
700003292000-700003314000 rw-
700003314000-700003315000 ---
700003315000-700003397000 rw-
700003397000-700003398000 ---
700003398000-70000341a000 rw-
70000341a000-70000341b000 ---
70000341b000-70000349d000 rw-
70000349d000-70000349e000 ---
70000349e000-700003520000 rw-
700003520000-700003521000 ---
700003521000-7000035a3000 rw-
7000035a3000-7000035a4000 ---
7000035a4000-700003626000 rw-
700003626000-700003627000 ---
700003627000-7000036a9000 rw-
7000036a9000-7000036aa000 ---
7000036aa000-70000372c000 rw-
70000372c000-70000372d000 ---
70000372d000-7000037af000 rw-
7000037af000-7000037b0000 ---
7000037b0000-700003832000 rw-
700003832000-700003833000 ---
700003833000-7000038b5000 rw-
7000038b5000-7000038b6000 ---
7000038b6000-700003938000 rw-
700003938000-700003939000 ---
700003939000-7000039bb000 rw-
7000039bb000-7000039bc000 ---
7000039bc000-700003a3e000 rw-
700003a3e000-700003a3f000 ---
700003a3f000-700003ac1000 rw-
700003ac1000-700003ac2000 ---
700003ac2000-700003b44000 rw-
700003b44000-700003b45000 ---
700003b45000-700003bc7000 rw-
700003bc7000-700003bc8000 ---
700003bc8000-700003c4a000 rw-
700003c4a000-700003c4b000 ---
700003c4b000-700003ccd000 rw-
700003ccd000-700003cce000 ---
700003cce000-700003d50000 rw-
700003d50000-700003d51000 ---
700003d51000-700003dd3000 rw-
700003dd3000-700003dd4000 ---
700003dd4000-700003e56000 rw-
700003e56000-700003e57000 ---
700003e57000-700003ed9000 rw-
700003ed9000-700003eda000 ---
700003eda000-700003f5c000 rw-
700003f5c000-700003f5d000 ---
700003f5d000-700003fdf000 rw-
700003fdf000-700003fe0000 ---
700003fe0000-700004062000 rw-
700004062000-700004063000 ---
700004063000-7000040e5000 rw-
7000040e5000-7000040e6000 ---
7000040e6000-700004168000 rw-
700004168000-700004169000 ---
700004169000-7000041eb000 rw-
7000041eb000-7000041ec000 ---
7000041ec000-70000426e000 rw-
70000426e000-70000426f000 ---
70000426f000-7000042f1000 rw-
7000042f1000-7000042f2000 ---
7000042f2000-700004374000 rw-
700004374000-700004375000 ---
700004375000-7000043f7000 rw-
7000043f7000-7000043f8000 ---
7000043f8000-70000447a000 rw-
70000447a000-70000447b000 ---
70000447b000-7000044fd000 rw-
7000044fd000-7000044fe000 ---
7000044fe000-700004580000 rw-
700004580000-700004581000 ---
700004581000-700004603000 rw-
700004603000-700004604000 ---
700004604000-700004686000 rw-
700004686000-700004687000 ---
700004687000-700004709000 rw-
700004709000-70000470a000 ---
70000470a000-70000478c000 rw-
70000478c000-70000478d000 ---
70000478d000-70000480f000 rw-
70000480f000-700004810000 ---
700004810000-700004892000 rw-
700004892000-700004893000 ---
700004893000-700004915000 rw-
700004915000-700004916000 ---
700004916000-700004998000 rw-
700004998000-700004999000 ---
700004999000-700004a1b000 rw-
700004a1b000-700004a1c000 ---
700004a1c000-700004a9e000 rw-
700004a9e000-700004a9f000 ---
700004a9f000-700004b21000 rw-
700004b21000-700004b22000 ---
700004b22000-700004ba4000 rw-
700004ba4000-700004ba5000 ---
700004ba5000-700004c27000 rw-
700004c27000-700004c28000 ---
700004c28000-700004caa000 rw-
700004caa000-700004cab000 ---
700004cab000-700004d2d000 rw-
700004d2d000-700004d2e000 ---
700004d2e000-700004db0000 rw-
700004db0000-700004db1000 ---
700004db1000-700004e33000 rw-
700004e33000-700004e34000 ---
700004e34000-700004eb6000 rw-
700004eb6000-700004eb7000 ---
700004eb7000-700004f39000 rw-
700004f39000-700004f3a000 ---
700004f3a000-700004fbc000 rw-
700004fbc000-700004fbd000 ---
700004fbd000-70000503f000 rw-
7fb3c0c00000-7fb3c0d00000 rw-
7fb3c0d00000-7fb3c0e00000 rw-
7fb3c0e00000-7fb3c0f00000 rw-
7fb3c1000000-7fb3c1800000 rw-
7fb3c8000000-7fb3c8800000 rw-
7fb3c8800000-7fb3c9000000 rw-
7fb3c9000000-7fb3c9800000 rw-
7fb3c9800000-7fb3ca000000 rw-
7fb3ca000000-7fb3ca800000 rw-
7fb3ca800000-7fb3cb000000 rw-
7fb3cb000000-7fb3cb800000 rw-
7fb3cb800000-7fb3cc000000 rw-
7fb3cc000000-7fb3cc800000 rw-
7fb3cc800000-7fb3cd000000 rw-
7fb3cd000000-7fb3cd800000 rw-
7fb3cd800000-7fb3ce000000 rw-
7fb3ce000000-7fb3ce800000 rw-
7fb3ce800000-7fb3cf000000 rw-
7fb3cf000000-7fb3cf800000 rw-
7fb3cf800000-7fb3d0000000 rw-
7fb3d0c00000-7fb3d0d00000 rw-
7fb3d0d00000-7fb3d0e00000 rw-
7fb3d0e00000-7fb3d0f00000 rw-
7fb3d0f00000-7fb3d1000000 rw-
7fb3d1000000-7fb3d1100000 rw-
7fb3d1100000-7fb3d1200000 rw-
7fb3d1800000-7fb3d2000000 rw-
7fb3d8000000-7fb3d8800000 rw-
7fb3d8800000-7fb3d9000000 rw-
7fb3d9000000-7fb3d9800000 rw-
7fb3d9800000-7fb3da000000 rw-
7fb3da000000-7fb3da800000 rw-
7fb3da800000-7fb3db000000 rw-
7fb3db000000-7fb3db800000 rw-
7fb3db800000-7fb3dc000000 rw-
7fb3dc000000-7fb3dc800000 rw-
7fb3dc800000-7fb3dd000000 rw-
7fb3dd000000-7fb3dd800000 rw-
7fb3dd800000-7fb3de000000 rw-
7fb3de000000-7fb3de800000 rw-
7fb3de800000-7fb3df000000 rw-
7fb3df000000-7fb3df800000 rw-
7fb3df800000-7fb3e0000000 rw-
7fb3e0c00000-7fb3e0d00000 rw-
7fb3e0d00000-7fb3e0e00000 rw-
7fb3e0e00000-7fb3e0f00000 rw-
7fb3e0f00000-7fb3e1000000 rw-
7fb3e1000000-7fb3e1100000 rw-
7fb3e1100000-7fb3e1200000 rw-
7fb3e1200000-7fb3e1300000 rw-
7fb3e1300000-7fb3e1400000 rw-
7fb3e1400000-7fb3e1500000 rw-
7fb3e1500000-7fb3e1600000 rw-
7fb3e1600000-7fb3e1700000 rw-
7fb3e1700000-7fb3e1800000 rw-
7fb3e1800000-7fb3e1900000 rw-
7fb3e1900000-7fb3e1a00000 rw-
7fb3e1a00000-7fb3e1b00000 rw-
7fb3e1b00000-7fb3e1c00000 rw-
7fb3e1c00000-7fb3e1d00000 rw-
7fb3e1d00000-7fb3e1e00000 rw-
7fb3e1e00000-7fb3e1f00000 rw-
7fb3e1f00000-7fb3e2000000 rw-
7fb3e2000000-7fb3e2100000 rw-
7fb3e2100000-7fb3e2200000 rw-
7fb3e2200000-7fb3e2300000 rw-
7fb3e2300000-7fb3e2400000 rw-
7fb3e2400000-7fb3e2500000 rw-
7fb3e2500000-7fb3e2600000 rw-
7fb3e2600000-7fb3e2700000 rw-
7fb3e2700000-7fb3e2800000 rw-
7fb3e2800000-7fb3e2900000 rw-
7fb3e2900000-7fb3e2a00000 rw-
7fb3e2a00000-7fb3e2b00000 rw-
7fb3e2b00000-7fb3e2c00000 rw-
7fb3e2c00000-7fb3e2d00000 rw-
7fb3e2d00000-7fb3e2e00000 rw-
7fb3e2e00000-7fb3e2f00000 rw-
7fb3e2f00000-7fb3e3000000 rw-
7fb3e3000000-7fb3e3800000 rw-
7fb3e3800000-7fb3e3900000 rw-
7fb3e4000000-7fb3e4800000 rw-
7fb3e4800000-7fb3e5000000 rw-
7fb3e8000000-7fb3e8800000 rw-
7fb3e8800000-7fb3e9000000 rw-
7fb3e9000000-7fb3e9800000 rw-
7fb3e9800000-7fb3ea000000 rw-
7fb3ea000000-7fb3ea800000 rw-
7fb3ea800000-7fb3eb000000 rw-
7fb3eb000000-7fb3eb800000 rw-
7fb3eb800000-7fb3ec000000 rw-
7fb3ec000000-7fb3ec800000 rw-
7fb3ec800000-7fb3ed000000 rw-
7fb3ed000000-7fb3ed800000 rw-
7fb3ed800000-7fb3ee000000 rw-
7fb3ee000000-7fb3ee800000 rw-
7fb3ee800000-7fb3ef000000 rw-
7fb3ef000000-7fb3ef800000 rw-
7fb3ef800000-7fb3f0000000 rw-
7fb3f0c00000-7fb3f0d00000 rw-
7fb3f0d00000-7fb3f0e00000 rw-
7fb3f1000000-7fb3f1800000 rw-
7fb3f1800000-7fb3f2000000 rw-
7fb3f2000000-7fb3f2800000 rw-
7fb3f8000000-7fb3f8800000 rw-
7fb3f8800000-7fb3f9000000 rw-
7fb3f9000000-7fb3f9800000 rw-
7fb3f9800000-7fb3fa000000 rw-
7fb3fa000000-7fb3fa800000 rw-
7fb3fa800000-7fb3fb000000 rw-
7fb3fb000000-7fb3fb800000 rw-
7fb3fb800000-7fb3fc000000 rw-
7fb3fc000000-7fb3fc800000 rw-
7fb3fc800000-7fb3fd000000 rw-
7fb3fd000000-7fb3fd800000 rw-
7fb3fd800000-7fb3fe000000 rw-
7fb3fe000000-7fb3fe800000 rw-
7fb3fe800000-7fb3ff000000 rw-
7fb3ff000000-7fb3ff800000 rw-
7fb3ff800000-7fb400000000 rw-
7fb400000000-7fb400800000 rw-
7fb400800000-7fb401000000 rw-
7fb401000000-7fb401800000 rw-
7fb401800000-7fb402000000 rw-
7fb402000000-7fb402800000 rw-
7fb402800000-7fb403000000 rw-
7fb403000000-7fb403800000 rw-
7fb403800000-7fb404000000 rw-
7fb404000000-7fb404800000 rw-
7fb404800000-7fb405000000 rw-
7fb405000000-7fb405800000 rw-
7fb405800000-7fb406000000 rw-
7fb406000000-7fb406800000 rw-
7fb406800000-7fb407000000 rw-
7fb407000000-7fb407800000 rw-
7fb407800000-7fb408000000 rw-
7fb408000000-7fb408800000 rw-
7fb408800000-7fb409000000 rw-
7fb409000000-7fb409800000 rw-
7fb409800000-7fb40a000000 rw-
7fb40a000000-7fb40a800000 rw-
7fb40a800000-7fb40b000000 rw-
7fb40b000000-7fb40b800000 rw-
7fb40b800000-7fb40c000000 rw-
7fb40c000000-7fb40c800000 rw-
7fb40c800000-7fb40d000000 rw-
7fb40d000000-7fb40d800000 rw-
7fb40d800000-7fb40e000000 rw-
7fb40e000000-7fb40e800000 rw-
7fb40e800000-7fb40f000000 rw-
7fb40f000000-7fb40f800000 rw-
7fb40f800000-7fb410000000 rw-
7fb410c00000-7fb410d00000 rw-
7fb410d00000-7fb410e00000 rw-
7fb410e00000-7fb410f00000 rw-
7fb410f00000-7fb410f01000 rw-
7fb411000000-7fb411800000 rw-
7fb411800000-7fb412000000 rw-
7fb412000000-7fb414000000 rw-
7fb414000000-7fb414100000 rw-
7fb414800000-7fb415000000 rw-
7fb418000000-7fb418800000 rw-
7fb418800000-7fb419000000 rw-
7fb419000000-7fb419800000 rw-
7fb419800000-7fb41a000000 rw-
7fb41a000000-7fb41a800000 rw-
7fb41a800000-7fb41b000000 rw-
7fb41b000000-7fb41b800000 rw-
7fb41b800000-7fb41c000000 rw-
7fb41c000000-7fb41c800000 rw-
7fb41c800000-7fb41d000000 rw-
7fb41d000000-7fb41d800000 rw-
7fb41d800000-7fb41e000000 rw-
7fb41e000000-7fb41e800000 rw-
7fb41e800000-7fb41f000000 rw-
7fb41f000000-7fb41f800000 rw-
7fb41f800000-7fb420000000 rw-
7ffedf852000-7ffee3052000 ---
7ffee3052000-7ffee3852000 rw-
7fff00000000-7fff80000000 r--
7fff80000000-7fff801cf000 r--
7fff801cf000-7fff80200000 rw-
7fff80200000-7fff80400000 rw-
7fff80400000-7fff80600000 rw-
7fff80600000-7fff80800000 rw-
7fff80800000-7fff80a00000 rw-
7fff80a00000-7fff80c00000 rw-
7fff80c00000-7fff80e00000 rw-
7fff80e00000-7fff81000000 rw-
7fff81000000-7fff81200000 rw-
7fff81200000-7fff81400000 rw-
7fff81400000-7fff81600000 r--
7fff81600000-7fff81800000 rw-
7fff81800000-7fff81c00000 r--
7fff81c00000-7fff81e00000 rw-
7fff81e00000-7fff82600000 r--
7fff82600000-7fff82800000 rw-
7fff82800000-7fff85600000 r--
7fff85600000-7fff85800000 rw-
7fff85800000-7fff85a00000 rw-
7fff85a00000-7fff85c00000 r--
7fff85c00000-7fff85e00000 rw-
7fff85e00000-7fff86000000 rw-
7fff86000000-7fff8e000000 r--
7fff8e000000-7fff8e200000 rw-
7fff8e200000-7fffc0000000 r--
7fffc0000000-7fffffe00000 r--
7fffffe00000-7fffffe01000 r--
7fffffe94000-7fffffe95000 r-x
[IMPORTANT]
Don't forget to include the Crash Report log file under
DiagnosticReports directory in bug reports.

zsh: abort      ign gazebo -v 4 -s src/ign-gazebo/examples/worlds/camera_sensor.sdf
@srmainwaring srmainwaring added the enhancement New feature or request label Aug 9, 2021
@osrf-triage osrf-triage added this to Inbox in Core development Aug 9, 2021
@chapulina chapulina removed this from Inbox in Core development Aug 9, 2021
@chapulina chapulina added macOS macOS support help wanted We accept pull requests! labels Aug 9, 2021
@srmainwaring
Copy link
Contributor Author

srmainwaring commented Aug 9, 2021

This branch (https://github.com/srmainwaring/ign-gazebo/tree/feature/ign-gazebo5-macos) contains proof of concept changes to support the sensors system plugin and GUI rendering on macOS.

There is some platform / render engine specific code dealing with OpenGL contexts that needs to be moved elsewhere but the changes illustrate the proposed approach and does render a camera view in the image display (but still seems quite fragile as seemingly minor change to a SDF file will cause a crash).

camera_sensor4

@iche033
Copy link
Contributor

iche033 commented Aug 9, 2021

Nice!

A suggestion that would keep deferred initialisation and avoid blocking in the main thread is to provide another system interface, say ISystemInit that the SimulationRunner would guarantee to call on the main thread after the system was configured.

Another option is to use event callbacks. The SimulationRunner would emit this new init event on the main thread. Here's an example of connecting to an event.

It looks like all your changes are done on top of Edifice so the the advantage of adding a new event is that it should not break ABI.

@srmainwaring
Copy link
Contributor Author

srmainwaring commented Aug 10, 2021

Thanks, I'll look into the events callback example. I wound up using Sensors::Update to initialise the RenderUtil instance which does not break the ABI either. That should be safe as it's also on the main thread and should not conflict with access to shared resources (i.e. the initialized flag) from the Sensors::PostUpdate worker threads.

The main thing that I'm not sure how to handle cleanly is the management the OpenGL context. This is first created on the main thread (by Ogre2 in this case). I capture the context in SensorsPrivate then deactivate it after this->dataPtr->renderUtil.Init() on the main thread and then set the context as current on the render thread in the remainder of the initialisation sequence which happens once the condition variable in SensorsPrivate::WaitForInit is released. In my example I'm using the Apple CGL calls directly which is clearly a no-go for general release.

I think what may be required is something like Qt's moveToThread on RenderUtil which delegates to the render engine implementation so this can be carried out in a platform and render engine independent way.

@johntron
Copy link

I found this while trying to understand if there's any way I can get Ignition Gazebo running (via #44). It looks like there's still something to be sorted out, but regardless, thank you so much for your contributions! Ignition looks like a really great step into the future, and you're helping make robotics more accessible to folks like me. 🎖

@srmainwaring
Copy link
Contributor Author

I found this while trying to understand if there's any way I can get Ignition Gazebo running (via #44). It looks like there's still something to be sorted out, but regardless, thank you so much for your contributions! Ignition looks like a really great step into the future, and you're helping make robotics more accessible to folks like me. 🎖

@johntron thanks for the feedback! If you're interested in getting Gazebo running on macOS and are prepared to have a go at building from development forks there are some details in this issue gazebosim/gz-gui#314 on what's required. I plan to submit the prototype branches as PR's once I've cleaned them up and their dependencies have been merged. In the meanwhile if you need any help let me know - I'd appreciate any additional feedback from other macOS users while drafting the PR on how well these changes work and what can be improved.

@scpeters
Copy link
Member

fixed by #1225

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted We accept pull requests! macOS macOS support
Projects
None yet
Development

No branches or pull requests

5 participants