You are not logged in.

#1 2021-08-26 14:37:01

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

xorg with amd APU and NVIDIA GPU

Hello

I have an ASUS laptop with an amd APU and an NVIDIA RTX 3080 GPU. The laptop has two usb c ports connected to the NVIDIA gpu for displayport output. The APU is connected to the internal screen. When configuring xorg.conf in `/etc/X11/xorg.conf`, I add two devices and three screens. Every Screen section has the right device included (see below), but when launching xorg it always only enbles the APU and doesn't output to the external displays. When I change xorg to only contain the nvidia gpu, but still enable the internal screen. It only shows the two external monitors and the internal one freezes.

`/etc/X11/xorg.conf`

# This is a xorg.conf file I am still working on
# Its purpose is to work with external monitors connected to the NVIDIA GPU and the AMD GPU
# So far it has been one of the two, either the internal display (AMD GPU) and not able to enable the external monitors or the external monitors (NVIDIA GPU) and then able to enable the internal display with arandr (this does not work when the external displays are not plugged in

# -- Main Server Layout -------------------------------------------------------
Section "ServerLayout"
    Identifier      "main"
    Screen          0   "Screen0"
    Screen          1   "Screen1"
    Screen          2   "Screen2"
    InputDevice     "Keyboard0"     "CoreKeyboard"
    InputDevice     "Mouse0"        "CorePointer"
EndSection

# -- Screen -------------------------------------------------------------------
Section "Screen"
   Identifier       "Screen0"
   Device           "Device0"
   Monitor          "Monitor0"
EndSection

Section "Screen"
   Identifier       "Screen1"
   Device           "Device1"
   Monitor          "Monitor1"
EndSection

Section "Screen"
   Identifier       "Screen2"
   Device           "Device1"
   Monitor          "Monitor2"
EndSection

# -- Input --------------------------------------------------------------------
Section "InputDevice"
    Identifier      "Keyboard0"
    Driver          "kbd"
EndSection

Section "InputDevice"
    Identifier      "Mouse0"
    Driver          "mouse"
EndSection

# -- Video Device -------------------------------------------------------------
Section "Device"
    Identifier      "Device0"
    Driver          "amdgpu"
EndSection

Section "Device"
    Identifier      "Device1"
    Driver          "nvidia"
EndSection

# -- Monitor ------------------------------------------------------------------
Section "Monitor"
    Identifier      "Monitor0"
EndSection

Section "Monitor"
    Identifier      "Monitor1"
EndSection

Section "Monitor"
    Identifier      "Monitor2"
EndSection

Can anyone help me. I want to use the three monitors at the same time. Is this posible? In windows it works perfectly.

Thanks in advance

Offline

#2 2021-08-26 19:47:33

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,094

Re: xorg with amd APU and NVIDIA GPU

A xorg "screen" is not a physical screen and making distinct screens will completely disjoint the three and not allow windows/programs to be normally shared between the three.

I suggest you don't unnecessary overengineer this. To make the monitors available you can follow https://wiki.archlinux.org/title/PRIME#Reverse_PRIME

Offline

#3 2021-08-27 09:06:07

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

V1del wrote:

A xorg "screen" is not a physical screen and making distinct screens will completely disjoint the three and not allow windows/programs to be normally shared between the three.

I suggest you don't unnecessary overengineer this. To make the monitors available you can follow https://wiki.archlinux.org/title/PRIME#Reverse_PRIME

I tried this and it went back to what I was stuck with a couple of days ago. The primary display works and when I type 'xrandr' it gives the outputs it is supposed to give (see below), however when I type 'xrandr --output ... --auto it always saids 'xrandr: Configure crtc X failed'
I have been looking this problem up for the last couple of days but none of the solutions posted worked for me.

Output of xrandr:

Screen 0: minimum 320 x 200, current 2560 x 1440, maximum 16384 x 16384
eDP connected primary 2560x1440+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
   2560x1440    165.00*+  60.00 +
   1920x1200    165.00  
   1920x1080    165.00  
   1600x1200    165.00  
   1680x1050    165.00  
   1280x1024    165.00  
   1440x900     165.00  
   1280x800     165.00  
   1280x720     165.00  
   1024x768     165.00  
   800x600      165.00  
   640x480      165.00  
HDMI-A-0 disconnected (normal left inverted right x axis y axis)
DP-1-0 connected (normal left inverted right x axis y axis)
   2560x1440     59.95 +
   1920x1080     60.00    59.94    50.00  
   1680x1050     59.95  
   1440x900      59.89  
   1280x1440     59.91  
   1280x1024     75.02    60.02  
   1280x960      60.00  
   1280x720      60.00    59.94    50.00  
   1024x768      75.03    70.07    60.00  
   800x600       75.00    72.19    60.32    56.25  
   720x576       50.00  
   720x480       59.94  
   640x480       75.00    72.81    59.94    59.93  
DP-1-1 disconnected (normal left inverted right x axis y axis)
DP-1-2 connected (normal left inverted right x axis y axis)
   2560x1440    144.00 + 120.00    99.90    59.95  
   1920x1080     74.91    60.00    59.94    50.00  
   1680x1050     59.95  
   1600x900      60.00  
   1280x1024     75.02    60.02  
   1280x800      59.81  
   1280x720      60.00    59.94    50.00  
   1152x864      59.96  
   1024x768      75.03    60.00  
   800x600       75.00    60.32  
   720x480       59.94  
   640x480       75.00    59.94    59.93  
DP-1-3 disconnected (normal left inverted right x axis y axis)

Last edited by ExellentCoin (2021-08-27 09:07:14)

Offline

#4 2021-08-27 09:48:47

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,094

Re: xorg with amd APU and NVIDIA GPU

Did you run the corresponding --setprovideroutputsource command before attempting --auto ? That's important to properly hook things up.

Last edited by V1del (2021-08-27 09:49:01)

Offline

#5 2021-08-27 11:53:03

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

V1del wrote:

Did you run the corresponding --setprovideroutputsource command before attempting --auto ? That's important to properly hook things up.

I did yes (I think). The "tutorial" on the wiki was for an intel amd hybrid system. so this is my xorg.conf and the xrandr command.

`/etc/X11/xorg.conf`:

Section "ServerLayout"
        Identifier "layout"
        Screen 0 "amdgpu"
        Inactive "nvidia"
        Option "AllowNVIDIAGPUScreens"
EndSection

Section "Device"
        Identifier "nvidia"
        Driver "nvidia"
EndSection

Section "Screen"
        Identifier "nvidia"
        Device "nvidia"
EndSection

Section "Device"
        Identifier "amdgpu"
        Driver "amdgpu"
        BusID "PCI:7:0:0"
EndSection

Section "Screen"
        Identifier "amdgpu"
        Device "amdgpu"
EndSection

The xrandr command:

xrandr --setprovideroutpusource NVIDIA-G0 "Unknown AMD Radeon GPU @ pci:0000:07:00.0"

So this did not work for me.

Offline

#6 2021-08-27 12:00:56

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

I have now found a workaround.

I completely deleted the contents of the xorg.conf file and used the command

sudo nvidia-xconfig

It generated the code to work with the external monitors, but it does not show the internal display in xrandr. I then added the amdgpu device in the xorg.conf but added no screens or monitors, etc. Then when I use xrandr it lists the internal screen and when I enable it it works.
The next problem I then have, is that when I boot without the external displays connected and type startx, it just goes to a black screen. So in the .xinitrc file I added (see below)

`/etc/X11/xorg.conf`:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 470.63.01

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Device"
    Identifier    "Device1"
    Driver        "amdgpu"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

My .xinitrc now contains this a workaround for the last problem:

xrandr --output eDP-1-0 --primary --auto
xrandr --output DP-0 --off --output DP-1 --off --output DP-2 --off --output DP-3 --off

Can anyone tell me why this works and maybe how to make this more fluent so that I don't have to add these lines to .xinitrc

However, when using this workound the compositor does not work for some reason.

[ 08/27/2021 14:08:14.706 vsync_init ERROR ] No supported vsync method found for this backend
[ 08/27/2021 14:08:14.706 session_init FATAL ERROR ] Failed to initialize the backend

Last edited by ExellentCoin (2021-08-27 12:09:39)

Offline

#7 2021-08-30 07:43:41

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

So I switched from xmonad to gnome for a couple of weeks and with this workaround, scrolling, moving windows, going to the applications menu, swithing workspaces, ... is  very laggy. This isn't the case when just running on the amdgpu, but then I can't use the external monitors.

Offline

#8 2021-08-30 18:24:57

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,097

Re: xorg with amd APU and NVIDIA GPU

Output of "glxinfo"?

Offline

#9 2021-08-30 18:29:45

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

There you go. Output of glxinfo:

name of display: :0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
server glx extensions:
    GLX_ARB_context_flush_control, GLX_ARB_create_context, 
    GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 
    GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 
    GLX_EXT_import_context, GLX_EXT_libglvnd, GLX_EXT_no_config_context, 
    GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
    GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, GLX_SGIS_multisample, 
    GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, 
    GLX_SGI_make_current_read
client glx vendor string: Mesa Project and SGI
client glx version string: 1.4
client glx extensions:
    GLX_ARB_context_flush_control, GLX_ARB_create_context, 
    GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 
    GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float, 
    GLX_ARB_framebuffer_sRGB, GLX_ARB_get_proc_address, GLX_ARB_multisample, 
    GLX_ATI_pixel_format_float, GLX_EXT_buffer_age, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 
    GLX_EXT_import_context, GLX_EXT_no_config_context, GLX_EXT_swap_control, 
    GLX_EXT_swap_control_tear, GLX_EXT_texture_from_pixmap, 
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_INTEL_swap_event, 
    GLX_MESA_copy_sub_buffer, GLX_MESA_multithread_makecurrent, 
    GLX_MESA_query_renderer, GLX_MESA_swap_control, GLX_NV_float_buffer, 
    GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGIS_multisample, 
    GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, 
    GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync
GLX version: 1.4
GLX extensions:
    GLX_ARB_context_flush_control, GLX_ARB_create_context, 
    GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile, 
    GLX_ARB_fbconfig_float, GLX_ARB_framebuffer_sRGB, 
    GLX_ARB_get_proc_address, GLX_ARB_multisample, 
    GLX_EXT_create_context_es2_profile, GLX_EXT_create_context_es_profile, 
    GLX_EXT_fbconfig_packed_float, GLX_EXT_framebuffer_sRGB, 
    GLX_EXT_import_context, GLX_EXT_no_config_context, 
    GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
    GLX_MESA_copy_sub_buffer, GLX_MESA_query_renderer, GLX_OML_swap_method, 
    GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, 
    GLX_SGIX_visual_select_group, GLX_SGI_make_current_read
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: Mesa/X.org (0xffffffff)
    Device: llvmpipe (LLVM 12.0.1, 256 bits) (0xffffffff)
    Version: 21.2.1
    Accelerated: no
    Video memory: 15402MB
    Unified memory: no
    Preferred profile: core (0x1)
    Max core profile version: 4.5
    Max compat profile version: 3.1
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.2
OpenGL vendor string: Mesa/X.org
OpenGL renderer string: llvmpipe (LLVM 12.0.1, 256 bits)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 21.2.1
OpenGL core profile shading language version string: 4.50
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
    GL_3DFX_texture_compression_FXT1, GL_AMD_conservative_depth, 
    GL_AMD_draw_buffers_blend, GL_AMD_gpu_shader_int64, 
    GL_AMD_multi_draw_indirect, GL_AMD_query_buffer_object, 
    GL_AMD_seamless_cubemap_per_texture, GL_AMD_shader_stencil_export, 
    GL_AMD_shader_trinary_minmax, GL_AMD_texture_texture4, 
    GL_AMD_vertex_shader_layer, GL_AMD_vertex_shader_viewport_index, 
    GL_ANGLE_texture_compression_dxt3, GL_ANGLE_texture_compression_dxt5, 
    GL_ARB_ES2_compatibility, GL_ARB_ES3_1_compatibility, 
    GL_ARB_ES3_2_compatibility, GL_ARB_ES3_compatibility, 
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended, 
    GL_ARB_buffer_storage, GL_ARB_clear_buffer_object, GL_ARB_clear_texture, 
    GL_ARB_clip_control, GL_ARB_compressed_texture_pixel_storage, 
    GL_ARB_compute_shader, GL_ARB_conditional_render_inverted, 
    GL_ARB_conservative_depth, GL_ARB_copy_buffer, GL_ARB_copy_image, 
    GL_ARB_cull_distance, GL_ARB_debug_output, GL_ARB_depth_buffer_float, 
    GL_ARB_depth_clamp, GL_ARB_derivative_control, GL_ARB_direct_state_access, 
    GL_ARB_draw_buffers, GL_ARB_draw_buffers_blend, 
    GL_ARB_draw_elements_base_vertex, GL_ARB_draw_indirect, 
    GL_ARB_draw_instanced, GL_ARB_enhanced_layouts, 
    GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, 
    GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, 
    GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, 
    GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, 
    GL_ARB_get_program_binary, GL_ARB_get_texture_sub_image, GL_ARB_gl_spirv, 
    GL_ARB_gpu_shader5, GL_ARB_gpu_shader_fp64, GL_ARB_gpu_shader_int64, 
    GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, 
    GL_ARB_indirect_parameters, GL_ARB_instanced_arrays, 
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2, 
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment, 
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multi_draw_indirect, 
    GL_ARB_occlusion_query2, GL_ARB_parallel_shader_compile, 
    GL_ARB_pipeline_statistics_query, GL_ARB_pixel_buffer_object, 
    GL_ARB_point_sprite, GL_ARB_polygon_offset_clamp, 
    GL_ARB_post_depth_coverage, GL_ARB_program_interface_query, 
    GL_ARB_provoking_vertex, GL_ARB_query_buffer_object, 
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, 
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, 
    GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, 
    GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, 
    GL_ARB_shader_bit_encoding, GL_ARB_shader_draw_parameters, 
    GL_ARB_shader_group_vote, GL_ARB_shader_image_load_store, 
    GL_ARB_shader_image_size, GL_ARB_shader_objects, GL_ARB_shader_precision, 
    GL_ARB_shader_stencil_export, GL_ARB_shader_storage_buffer_object, 
    GL_ARB_shader_subroutine, GL_ARB_shader_texture_image_samples, 
    GL_ARB_shader_texture_lod, GL_ARB_shader_viewport_layer_array, 
    GL_ARB_shading_language_420pack, GL_ARB_shading_language_include, 
    GL_ARB_shading_language_packing, GL_ARB_spirv_extensions, 
    GL_ARB_stencil_texturing, GL_ARB_sync, GL_ARB_tessellation_shader, 
    GL_ARB_texture_barrier, GL_ARB_texture_buffer_object, 
    GL_ARB_texture_buffer_object_rgb32, GL_ARB_texture_buffer_range, 
    GL_ARB_texture_compression_bptc, GL_ARB_texture_compression_rgtc, 
    GL_ARB_texture_cube_map_array, GL_ARB_texture_filter_minmax, 
    GL_ARB_texture_float, GL_ARB_texture_gather, 
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_multisample, 
    GL_ARB_texture_non_power_of_two, GL_ARB_texture_query_levels, 
    GL_ARB_texture_query_lod, GL_ARB_texture_rectangle, GL_ARB_texture_rg, 
    GL_ARB_texture_rgb10_a2ui, GL_ARB_texture_stencil8, 
    GL_ARB_texture_storage, GL_ARB_texture_storage_multisample, 
    GL_ARB_texture_swizzle, GL_ARB_texture_view, GL_ARB_timer_query, 
    GL_ARB_transform_feedback2, GL_ARB_transform_feedback3, 
    GL_ARB_transform_feedback_instanced, 
    GL_ARB_transform_feedback_overflow_query, GL_ARB_uniform_buffer_object, 
    GL_ARB_vertex_array_bgra, GL_ARB_vertex_array_object, 
    GL_ARB_vertex_attrib_64bit, GL_ARB_vertex_attrib_binding, 
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_shader, 
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev, 
    GL_ARB_viewport_array, GL_ATI_blend_equation_separate, 
    GL_ATI_texture_float, GL_ATI_texture_mirror_once, 
    GL_EXT_EGL_image_storage, GL_EXT_EGL_sync, GL_EXT_abgr, 
    GL_EXT_blend_equation_separate, GL_EXT_draw_buffers2, 
    GL_EXT_draw_instanced, GL_EXT_framebuffer_blit, 
    GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_multisample_blit_scaled, 
    GL_EXT_framebuffer_object, GL_EXT_framebuffer_sRGB, 
    GL_EXT_packed_depth_stencil, GL_EXT_packed_float, 
    GL_EXT_pixel_buffer_object, GL_EXT_polygon_offset_clamp, 
    GL_EXT_provoking_vertex, GL_EXT_shader_framebuffer_fetch_non_coherent, 
    GL_EXT_shader_integer_mix, GL_EXT_texture_array, 
    GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_rgtc, 
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_filter_minmax, 
    GL_EXT_texture_integer, GL_EXT_texture_mirror_clamp, GL_EXT_texture_sRGB, 
    GL_EXT_texture_sRGB_R8, GL_EXT_texture_sRGB_decode, 
    GL_EXT_texture_shadow_lod, GL_EXT_texture_shared_exponent, 
    GL_EXT_texture_snorm, GL_EXT_texture_swizzle, GL_EXT_timer_query, 
    GL_EXT_transform_feedback, GL_EXT_vertex_array_bgra, 
    GL_EXT_vertex_attrib_64bit, GL_IBM_multimode_draw_arrays, 
    GL_KHR_blend_equation_advanced, GL_KHR_context_flush_control, 
    GL_KHR_debug, GL_KHR_no_error, GL_KHR_parallel_shader_compile, 
    GL_KHR_robust_buffer_access_behavior, GL_KHR_robustness, 
    GL_KHR_texture_compression_astc_ldr, 
    GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_framebuffer_flip_y, 
    GL_MESA_pack_invert, GL_MESA_shader_integer_functions, 
    GL_MESA_texture_signed_rgba, GL_MESA_ycbcr_texture, 
    GL_NV_conditional_render, GL_NV_copy_image, GL_NV_depth_clamp, 
    GL_NV_packed_depth_stencil, GL_NV_texture_barrier, GL_OES_EGL_image, 
    GL_S3_s3tc

OpenGL version string: 3.1 Mesa 21.2.1
OpenGL shading language version string: 1.40
OpenGL context flags: (none)
OpenGL extensions:
    GL_3DFX_texture_compression_FXT1, GL_AMD_conservative_depth, 
    GL_AMD_draw_buffers_blend, GL_AMD_multi_draw_indirect, 
    GL_AMD_query_buffer_object, GL_AMD_seamless_cubemap_per_texture, 
    GL_AMD_shader_stencil_export, GL_AMD_shader_trinary_minmax, 
    GL_AMD_texture_texture4, GL_ANGLE_texture_compression_dxt3, 
    GL_ANGLE_texture_compression_dxt5, GL_APPLE_packed_pixels, 
    GL_ARB_ES2_compatibility, GL_ARB_ES3_compatibility, 
    GL_ARB_arrays_of_arrays, GL_ARB_base_instance, GL_ARB_blend_func_extended, 
    GL_ARB_buffer_storage, GL_ARB_clear_buffer_object, GL_ARB_clear_texture, 
    GL_ARB_clip_control, GL_ARB_color_buffer_float, GL_ARB_compatibility, 
    GL_ARB_compressed_texture_pixel_storage, GL_ARB_compute_shader, 
    GL_ARB_conditional_render_inverted, GL_ARB_conservative_depth, 
    GL_ARB_copy_buffer, GL_ARB_copy_image, GL_ARB_cull_distance, 
    GL_ARB_debug_output, GL_ARB_depth_buffer_float, GL_ARB_depth_clamp, 
    GL_ARB_depth_texture, GL_ARB_derivative_control, 
    GL_ARB_direct_state_access, GL_ARB_draw_buffers, 
    GL_ARB_draw_buffers_blend, GL_ARB_draw_elements_base_vertex, 
    GL_ARB_draw_indirect, GL_ARB_draw_instanced, GL_ARB_enhanced_layouts, 
    GL_ARB_explicit_attrib_location, GL_ARB_explicit_uniform_location, 
    GL_ARB_fragment_coord_conventions, GL_ARB_fragment_layer_viewport, 
    GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, 
    GL_ARB_fragment_shader, GL_ARB_framebuffer_no_attachments, 
    GL_ARB_framebuffer_object, GL_ARB_framebuffer_sRGB, 
    GL_ARB_get_program_binary, GL_ARB_get_texture_sub_image, GL_ARB_gl_spirv, 
    GL_ARB_half_float_pixel, GL_ARB_half_float_vertex, 
    GL_ARB_indirect_parameters, GL_ARB_instanced_arrays, 
    GL_ARB_internalformat_query, GL_ARB_internalformat_query2, 
    GL_ARB_invalidate_subdata, GL_ARB_map_buffer_alignment, 
    GL_ARB_map_buffer_range, GL_ARB_multi_bind, GL_ARB_multi_draw_indirect, 
    GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_occlusion_query, 
    GL_ARB_occlusion_query2, GL_ARB_parallel_shader_compile, 
    GL_ARB_pipeline_statistics_query, GL_ARB_pixel_buffer_object, 
    GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_polygon_offset_clamp, 
    GL_ARB_post_depth_coverage, GL_ARB_program_interface_query, 
    GL_ARB_provoking_vertex, GL_ARB_query_buffer_object, 
    GL_ARB_robust_buffer_access_behavior, GL_ARB_robustness, 
    GL_ARB_sample_shading, GL_ARB_sampler_objects, GL_ARB_seamless_cube_map, 
    GL_ARB_seamless_cubemap_per_texture, GL_ARB_separate_shader_objects, 
    GL_ARB_shader_atomic_counter_ops, GL_ARB_shader_atomic_counters, 
    GL_ARB_shader_bit_encoding, GL_ARB_shader_draw_parameters, 
    GL_ARB_shader_group_vote, GL_ARB_shader_image_load_store, 
    GL_ARB_shader_image_size, GL_ARB_shader_objects, 
    GL_ARB_shader_stencil_export, GL_ARB_shader_storage_buffer_object, 
    GL_ARB_shader_subroutine, GL_ARB_shader_texture_image_samples, 
    GL_ARB_shader_texture_lod, GL_ARB_shading_language_100, 
    GL_ARB_shading_language_420pack, GL_ARB_shading_language_include, 
    GL_ARB_shading_language_packing, GL_ARB_shadow, GL_ARB_spirv_extensions, 
    GL_ARB_stencil_texturing, GL_ARB_sync, GL_ARB_texture_barrier, 
    GL_ARB_texture_border_clamp, GL_ARB_texture_buffer_object, 
    GL_ARB_texture_buffer_object_rgb32, GL_ARB_texture_buffer_range, 
    GL_ARB_texture_compression, GL_ARB_texture_compression_bptc, 
    GL_ARB_texture_compression_rgtc, GL_ARB_texture_cube_map, 
    GL_ARB_texture_cube_map_array, GL_ARB_texture_env_add, 
    GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, 
    GL_ARB_texture_env_dot3, GL_ARB_texture_filter_minmax, 
    GL_ARB_texture_float, GL_ARB_texture_gather, 
    GL_ARB_texture_mirror_clamp_to_edge, GL_ARB_texture_mirrored_repeat, 
    GL_ARB_texture_multisample, GL_ARB_texture_non_power_of_two, 
    GL_ARB_texture_query_levels, GL_ARB_texture_query_lod, 
    GL_ARB_texture_rectangle, GL_ARB_texture_rg, GL_ARB_texture_rgb10_a2ui, 
    GL_ARB_texture_stencil8, GL_ARB_texture_storage, 
    GL_ARB_texture_storage_multisample, GL_ARB_texture_swizzle, 
    GL_ARB_texture_view, GL_ARB_timer_query, GL_ARB_transform_feedback2, 
    GL_ARB_transform_feedback3, GL_ARB_transform_feedback_instanced, 
    GL_ARB_transform_feedback_overflow_query, GL_ARB_transpose_matrix, 
    GL_ARB_uniform_buffer_object, GL_ARB_vertex_array_bgra, 
    GL_ARB_vertex_array_object, GL_ARB_vertex_attrib_binding, 
    GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader, 
    GL_ARB_vertex_type_10f_11f_11f_rev, GL_ARB_vertex_type_2_10_10_10_rev, 
    GL_ARB_viewport_array, GL_ARB_window_pos, GL_ATI_blend_equation_separate, 
    GL_ATI_draw_buffers, GL_ATI_fragment_shader, GL_ATI_separate_stencil, 
    GL_ATI_texture_compression_3dc, GL_ATI_texture_env_combine3, 
    GL_ATI_texture_float, GL_ATI_texture_mirror_once, 
    GL_EXT_EGL_image_storage, GL_EXT_EGL_sync, GL_EXT_abgr, GL_EXT_bgra, 
    GL_EXT_blend_color, GL_EXT_blend_equation_separate, 
    GL_EXT_blend_func_separate, GL_EXT_blend_minmax, GL_EXT_blend_subtract, 
    GL_EXT_compiled_vertex_array, GL_EXT_copy_texture, 
    GL_EXT_direct_state_access, GL_EXT_draw_buffers2, GL_EXT_draw_instanced, 
    GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_framebuffer_blit, 
    GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_multisample_blit_scaled, 
    GL_EXT_framebuffer_object, GL_EXT_framebuffer_sRGB, 
    GL_EXT_gpu_program_parameters, GL_EXT_gpu_shader4, 
    GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, 
    GL_EXT_packed_float, GL_EXT_packed_pixels, GL_EXT_pixel_buffer_object, 
    GL_EXT_point_parameters, GL_EXT_polygon_offset_clamp, 
    GL_EXT_provoking_vertex, GL_EXT_rescale_normal, GL_EXT_secondary_color, 
    GL_EXT_separate_specular_color, 
    GL_EXT_shader_framebuffer_fetch_non_coherent, GL_EXT_shader_integer_mix, 
    GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, 
    GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, 
    GL_EXT_texture_array, GL_EXT_texture_buffer_object, 
    GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_latc, 
    GL_EXT_texture_compression_rgtc, GL_EXT_texture_compression_s3tc, 
    GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp, 
    GL_EXT_texture_env_add, GL_EXT_texture_env_combine, 
    GL_EXT_texture_env_dot3, GL_EXT_texture_filter_minmax, 
    GL_EXT_texture_integer, GL_EXT_texture_lod_bias, 
    GL_EXT_texture_mirror_clamp, GL_EXT_texture_object, 
    GL_EXT_texture_rectangle, GL_EXT_texture_sRGB, GL_EXT_texture_sRGB_R8, 
    GL_EXT_texture_sRGB_decode, GL_EXT_texture_shadow_lod, 
    GL_EXT_texture_shared_exponent, GL_EXT_texture_snorm, 
    GL_EXT_texture_swizzle, GL_EXT_timer_query, GL_EXT_transform_feedback, 
    GL_EXT_vertex_array, GL_EXT_vertex_array_bgra, 
    GL_IBM_multimode_draw_arrays, GL_IBM_rasterpos_clip, 
    GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, 
    GL_KHR_blend_equation_advanced, GL_KHR_context_flush_control, 
    GL_KHR_debug, GL_KHR_no_error, GL_KHR_parallel_shader_compile, 
    GL_KHR_robust_buffer_access_behavior, GL_KHR_robustness, 
    GL_KHR_texture_compression_astc_ldr, 
    GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_pack_invert, 
    GL_MESA_shader_integer_functions, GL_MESA_texture_signed_rgba, 
    GL_MESA_window_pos, GL_MESA_ycbcr_texture, GL_NV_blend_square, 
    GL_NV_conditional_render, GL_NV_copy_depth_to_color, GL_NV_copy_image, 
    GL_NV_depth_clamp, GL_NV_fog_distance, GL_NV_half_float, 
    GL_NV_light_max_exponent, GL_NV_packed_depth_stencil, 
    GL_NV_primitive_restart, GL_NV_texgen_reflection, GL_NV_texture_barrier, 
    GL_NV_texture_env_combine4, GL_NV_texture_rectangle, GL_OES_EGL_image, 
    GL_OES_read_format, GL_S3_s3tc, GL_SGIS_generate_mipmap, 
    GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp, 
    GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays

OpenGL ES profile version string: OpenGL ES 3.2 Mesa 21.2.1
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:
    GL_ANDROID_extension_pack_es31a, GL_ANGLE_pack_reverse_row_order, 
    GL_ANGLE_texture_compression_dxt3, GL_ANGLE_texture_compression_dxt5, 
    GL_APPLE_texture_max_level, GL_EXT_EGL_image_storage, 
    GL_EXT_base_instance, GL_EXT_blend_func_extended, GL_EXT_blend_minmax, 
    GL_EXT_buffer_storage, GL_EXT_clip_control, GL_EXT_clip_cull_distance, 
    GL_EXT_color_buffer_float, GL_EXT_color_buffer_half_float, 
    GL_EXT_compressed_ETC1_RGB8_sub_texture, GL_EXT_copy_image, 
    GL_EXT_depth_clamp, GL_EXT_discard_framebuffer, 
    GL_EXT_disjoint_timer_query, GL_EXT_draw_buffers, 
    GL_EXT_draw_buffers_indexed, GL_EXT_draw_elements_base_vertex, 
    GL_EXT_draw_instanced, GL_EXT_float_blend, GL_EXT_frag_depth, 
    GL_EXT_geometry_point_size, GL_EXT_geometry_shader, GL_EXT_gpu_shader5, 
    GL_EXT_map_buffer_range, GL_EXT_multi_draw_arrays, 
    GL_EXT_occlusion_query_boolean, GL_EXT_polygon_offset_clamp, 
    GL_EXT_primitive_bounding_box, GL_EXT_read_format_bgra, 
    GL_EXT_render_snorm, GL_EXT_robustness, GL_EXT_sRGB_write_control, 
    GL_EXT_separate_shader_objects, 
    GL_EXT_shader_framebuffer_fetch_non_coherent, GL_EXT_shader_group_vote, 
    GL_EXT_shader_implicit_conversions, GL_EXT_shader_integer_mix, 
    GL_EXT_shader_io_blocks, GL_EXT_tessellation_point_size, 
    GL_EXT_tessellation_shader, GL_EXT_texture_border_clamp, 
    GL_EXT_texture_buffer, GL_EXT_texture_compression_bptc, 
    GL_EXT_texture_compression_dxt1, GL_EXT_texture_compression_rgtc, 
    GL_EXT_texture_compression_s3tc, GL_EXT_texture_compression_s3tc_srgb, 
    GL_EXT_texture_cube_map_array, GL_EXT_texture_filter_minmax, 
    GL_EXT_texture_format_BGRA8888, GL_EXT_texture_norm16, 
    GL_EXT_texture_query_lod, GL_EXT_texture_rg, GL_EXT_texture_sRGB_R8, 
    GL_EXT_texture_sRGB_RG8, GL_EXT_texture_sRGB_decode, 
    GL_EXT_texture_shadow_lod, GL_EXT_texture_type_2_10_10_10_REV, 
    GL_EXT_texture_view, GL_EXT_unpack_subimage, 
    GL_KHR_blend_equation_advanced, GL_KHR_context_flush_control, 
    GL_KHR_debug, GL_KHR_no_error, GL_KHR_parallel_shader_compile, 
    GL_KHR_robust_buffer_access_behavior, GL_KHR_robustness, 
    GL_KHR_texture_compression_astc_ldr, 
    GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_bgra, 
    GL_MESA_framebuffer_flip_y, GL_MESA_shader_integer_functions, 
    GL_NV_conditional_render, GL_NV_draw_buffers, GL_NV_fbo_color_attachments, 
    GL_NV_image_formats, GL_NV_pixel_buffer_object, GL_NV_read_buffer, 
    GL_NV_read_depth, GL_NV_read_depth_stencil, GL_NV_read_stencil, 
    GL_OES_EGL_image, GL_OES_EGL_image_external, 
    GL_OES_EGL_image_external_essl3, GL_OES_EGL_sync, 
    GL_OES_compressed_ETC1_RGB8_texture, GL_OES_copy_image, GL_OES_depth24, 
    GL_OES_depth_texture, GL_OES_depth_texture_cube_map, 
    GL_OES_draw_buffers_indexed, GL_OES_draw_elements_base_vertex, 
    GL_OES_element_index_uint, GL_OES_fbo_render_mipmap, 
    GL_OES_geometry_point_size, GL_OES_geometry_shader, 
    GL_OES_get_program_binary, GL_OES_gpu_shader5, GL_OES_mapbuffer, 
    GL_OES_packed_depth_stencil, GL_OES_primitive_bounding_box, 
    GL_OES_required_internalformat, GL_OES_rgb8_rgba8, GL_OES_sample_shading, 
    GL_OES_sample_variables, GL_OES_shader_image_atomic, 
    GL_OES_shader_io_blocks, GL_OES_shader_multisample_interpolation, 
    GL_OES_standard_derivatives, GL_OES_stencil8, GL_OES_surfaceless_context, 
    GL_OES_tessellation_point_size, GL_OES_tessellation_shader, 
    GL_OES_texture_3D, GL_OES_texture_border_clamp, GL_OES_texture_buffer, 
    GL_OES_texture_cube_map_array, GL_OES_texture_float, 
    GL_OES_texture_float_linear, GL_OES_texture_half_float, 
    GL_OES_texture_half_float_linear, GL_OES_texture_npot, 
    GL_OES_texture_stencil8, GL_OES_texture_storage_multisample_2d_array, 
    GL_OES_texture_view, GL_OES_vertex_array_object, GL_OES_vertex_half_float, 
    GL_OES_viewport_array

390 GLX Visuals
    visual  x   bf lv rg d st  colorbuffer  sr ax dp st accumbuffer  ms  cav
  id dep cl sp  sz l  ci b ro  r  g  b  a F gb bf th cl  r  g  b  a ns b eat
----------------------------------------------------------------------------
0x021 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x022 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x024 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x025 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x026 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x027 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x028 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x029 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x02a 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x02b 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x02c 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x02d 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x02e 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x02f 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x030 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x031 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x032 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x033 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x034 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x035 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x036 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x037 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x038 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x039 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x03a 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x03b 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x03c 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x03d 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x03e 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x03f 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x040 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x041 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x042 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x043 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x044 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x045 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x046 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x047 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x048 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x049 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x04a 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x04b 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x04c 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x04d 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x04e 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x04f 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x050 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x051 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x052 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x053 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x054 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x055 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x056 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x057 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x058 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x059 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x05a 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x05b 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x05c 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x05d 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x05e 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x05f 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x060 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x061 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x062 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x063 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x064 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x065 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x066 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x067 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x068 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x069 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x06a 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x06b 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x06c 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x06d 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x06e 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x06f 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x070 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x071 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x072 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x073 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x074 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x075 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x076 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x077 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x078 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x079 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x53f 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x540 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x541 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x542 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x543 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x544 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x545 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x546 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x547 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x548 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x549 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x54a 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x54b 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x54c 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x54d 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x54e 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x54f 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x550 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x551 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x552 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x553 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x554 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x555 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x556 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x557 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x558 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x559 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x55a 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x55b 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x55c 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x55d 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x55e 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x55f 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x560 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x561 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x562 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x563 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x564 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x565 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x566 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x567 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x568 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x569 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x56a 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x56b 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x56c 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x56d 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x56e 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x56f 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x570 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x571 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x572 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x573 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x574 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x575 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x576 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x577 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x578 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x579 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x57a 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x57b 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x57c 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x57d 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x57e 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x57f 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x580 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x581 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x582 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x583 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x584 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x585 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x586 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x587 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x588 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x589 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x58a 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x58b 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x58c 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x58d 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x58e 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x58f 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x590 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x591 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x592 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x593 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x594 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x595 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x596 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x597 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x598 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x599 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x59a 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x59b 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x59c 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x59d 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x59e 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x59f 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x5a0 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x5a1 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x5a2 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x5a3 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x5a4 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x5a5 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x5a6 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x5a7 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x5a8 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x5a9 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x5aa 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x5ab 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x5ac 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x5ad 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x5ae 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x5af 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x5b0 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x5b1 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x5b2 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x5b3 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x5b4 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x5b5 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x5b6 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x5b7 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x5b8 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x5b9 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x5ba 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x5bb 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x5bc 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x5bd 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x5be 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x5bf 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x5c0 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x5c1 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x5c2 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x5c3 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x5c4 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x5c5 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x5c6 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x5c7 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x5c8 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x5c9 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x5ca 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x5cb 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x5cc 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x5cd 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x5ce 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x5cf 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x5d0 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x5d1 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x5d2 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x5d3 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x5d4 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x5d5 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x5d6 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x5d7 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x5d8 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x5d9 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x5da 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x5db 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x5dc 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x5dd 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x5de 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x5df 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x5e0 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x5e1 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x5e2 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x5e3 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x5e4 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x5e5 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x5e6 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x5e7 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x5e8 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x5e9 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x5ea 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x5eb 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x5ec 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x5ed 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x5ee 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x5ef 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x5f0 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x5f1 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x5f2 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x5f3 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x5f4 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x5f5 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x5f6 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x5f7 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x5f8 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x5f9 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x5fa 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x5fb 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x5fc 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x5fd 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x5fe 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x5ff 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x600 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x601 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x602 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x603 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x604 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x605 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x606 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x607 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x608 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x609 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x60a 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x60b 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x60c 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x60d 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x60e 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x60f 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x610 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x611 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x612 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x613 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x614 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x615 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x616 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x617 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x618 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x619 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x61a 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x61b 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x61c 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x61d 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x61e 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x61f 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x620 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x621 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x622 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x623 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x624 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x625 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x626 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x627 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x628 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x629 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x62a 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x62b 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x62c 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x62d 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x62e 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x62f 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x630 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x631 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x632 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x633 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x634 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x635 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x636 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x637 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x638 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x639 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x63a 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x63b 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x63c 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x63d 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x63e 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x63f 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x640 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x641 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x642 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x643 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x644 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x645 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x646 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x647 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x648 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x649 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x64a 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x023 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x07a 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x07b 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x07c 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x64b 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x64c 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x64d 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x64e 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x64f 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x650 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x651 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x652 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x653 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x654 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x655 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x656 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x657 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x658 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x659 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x65a 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x65b 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x65c 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x65d 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x65e 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x65f 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x660 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x661 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x662 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x663 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x664 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x665 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x666 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x667 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x668 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None

840 GLXFBConfigs:
    visual  x   bf lv rg d st  colorbuffer  sr ax dp st accumbuffer  ms  cav
  id dep cl sp  sz l  ci b ro  r  g  b  a F gb bf th cl  r  g  b  a ns b eat
----------------------------------------------------------------------------
0x1f7  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x1f8  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x1f9  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x1fa  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x1fb  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x1fc  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x1fd  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x1fe  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x1ff  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x200  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x201  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x202  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x203  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x204  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x205  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x206  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x207  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x208  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x209  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x20a  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x20b  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x20c  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x20d  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x20e  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x20f  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x210  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x211  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x212  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x213  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x214  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x215  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x216  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x217  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x218  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x219  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x21a  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x21b  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x21c  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x21d  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x21e  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x21f  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x220  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x221  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x222  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x223  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x224  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x225  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x226  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x227  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x228  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x229  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x22a  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x22b  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x22c  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x22d  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x22e  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x22f  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x230  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x231  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x232  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x233  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x234  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x235  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x236  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x237  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x238  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x239  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x23a  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x23b  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x23c  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x23d  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x23e  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x23f  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x240  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x241  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x242  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x243  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x244  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x245  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x246  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x247  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x248  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x249  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x24a  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x24b  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x24c  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x24d  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x24e  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x24f  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x250  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x251  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x252  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x253  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x254  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x255  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x256  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x257  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x258  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x259  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x25a  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x25b  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x25c  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x25d  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x25e  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x25f  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x260  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x261  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x262  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x263  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x264  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x265  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x266  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x267  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x268  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x269  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x26a  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x26b  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x26c  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x26d  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x26e  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x26f  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x270  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x271  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x272  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x273  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x274  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x275  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x276  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x277  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x278  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x279  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x27a  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x27b  0 tc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x27c  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x27d  0 tc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x27e  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x27f  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x280  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x281  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x282  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x283  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x284  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x285  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x286  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x287  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x288  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x289  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x28a  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x28b  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x28c  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x28d  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x28e  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x28f  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x290  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x291  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x292  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x293  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x294  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x295  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x296  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x297  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x298  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x299  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x29a  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x29b  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x29c  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x29d  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x29e  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x29f  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x2a0  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x2a1  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x2a2  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x2a3  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x2a4  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x2a5  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x2a6  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x2a7  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x2a8  0 tc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x2a9  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x2aa  0 tc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x2ab 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x2ac 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x2ad 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x2ae 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x2af 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x2b0 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x2b1 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x2b2 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x2b3 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x2b4 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x2b5 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x2b6 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x2b7 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x2b8 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x2b9 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x2ba 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x2bb 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x2bc 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x2bd 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x2be 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x2bf 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x2c0 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x2c1 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x2c2 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x2c3 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x2c4 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x2c5 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x2c6 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x2c7 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x2c8 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x2c9 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x2ca 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x2cb 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x2cc 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x2cd 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x2ce 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x2cf 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x2d0 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x2d1 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x2d2 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x2d3 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x2d4 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x2d5 24 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x2d6 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x2d7 24 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x2d8 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x2d9 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x2da 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x2db 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x2dc 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x2dd 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x2de 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x2df 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x2e0 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x2e1 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x2e2 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x2e3 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x2e4 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x2e5 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x2e6 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x2e7 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x2e8 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x2e9 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x2ea 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x2eb 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x2ec 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x2ed 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x2ee 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x2ef 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x2f0 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x2f1 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x2f2 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x2f3 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x2f4 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x2f5 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x2f6 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x2f7 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x2f8 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x2f9 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x2fa 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x2fb 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x2fc 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x2fd 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x2fe 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x2ff 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x300 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x301 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x302 24 tc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x303 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x304 24 tc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x305 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x306 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x307 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x308 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x309 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x30a 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x30b 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x30c 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x30d 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x30e 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x30f 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x310 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x311 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x312 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x313 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x314 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x315 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x316 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x317 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x318 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x319 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x31a 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x31b 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x31c 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x31d 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x31e 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x31f 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x320 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x321 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x322 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x323 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x324 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x325 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x326 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x327 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x328 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x329 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x32a 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x32b 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x32c 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x32d 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x32e 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x32f 24 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x330 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x331 24 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x332 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x333 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x334 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x335 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x336 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x337 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x338 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x339 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x33a 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x33b 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x33c 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x33d 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x33e 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x33f 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x340 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x341 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x342 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x343 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x344 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x345 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x346 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x347 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x348 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x349 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x34a 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x34b 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x34c 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x34d 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x34e 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x34f 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x350 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x351 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x352 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x353 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x354 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x355 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x356 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x357 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x358 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x359 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x35a 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x35b 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x35c 24 tc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x35d 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x35e 24 tc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x35f  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x360  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x361  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x362  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x363  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x364  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x365  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 16  0  0  0  0  0  0 0 None
0x366  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x367  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  0 0 None
0x368  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x369  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  0 0 None
0x36a  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x36b  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 24  0  0  0  0  0  0 0 None
0x36c  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x36d  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  0 0 None
0x36e  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x36f  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  0 0 None
0x370  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x371  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x372  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x373  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x374  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x375  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x376  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x377  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 32  0  0  0  0  0  0 0 None
0x378  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x379  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  0 0 None
0x37a  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x37b  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  0 0 None
0x37c  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x37d  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x37e  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x37f  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x380  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 16  0  0  0  0  0  4 1 None
0x381  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  4 1 None
0x382  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  4 1 None
0x383  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 24  0  0  0  0  0  4 1 None
0x384  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  4 1 None
0x385  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  4 1 None
0x386  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x387  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x388  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x389  0 tc  0  16  0 r  . .   5  6  5  0 .  .  0 32  0  0  0  0  0  4 1 None
0x38a  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  4 1 None
0x38b  0 tc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  4 1 None
0x38c  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x38d  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x38e  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x38f  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x390  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x391  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x392  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x393  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x394  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x395  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x396  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x397  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x398  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x399  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x39a  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x39b  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x39c  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x39d  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x39e  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x39f  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3a0  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x3a1  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3a2  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x3a3  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3a4  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x3a5  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x3a6  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x3a7  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x3a8  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x3a9  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x3aa  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x3ab  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x3ac  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x3ad  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x3ae  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x3af  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x3b0  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x3b1  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x3b2  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x3b3  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x3b4  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x3b5  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x3b6  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x3b7  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x3b8  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x3b9  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x3ba  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x3bb  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x3bc  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x3bd  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x3be  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x3bf  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x3c0  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x3c1  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x3c2  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x3c3  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x3c4  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x3c5  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x3c6  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x3c7  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x3c8  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x3c9  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x3ca  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x3cb  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x3cc  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3cd  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x3ce  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3cf  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x3d0  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3d1  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x3d2  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x3d3  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x3d4  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x3d5  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x3d6  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x3d7  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x3d8  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x3d9  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x3da  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x3db  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x3dc  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x3dd  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x3de  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x3df  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x3e0  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x3e1  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x3e2  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x3e3  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x3e4  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x3e5  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x3e6  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x3e7  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x3e8  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x3e9  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x3ea  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  0 0 None
0x3eb  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0 16 16 16 16  0 0 Slow
0x3ec  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x3ed  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x3ee  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x3ef  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x3f0  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  0 0 None
0x3f1  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0 16 16 16 16  0 0 Slow
0x3f2  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x3f3  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x3f4  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x3f5  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x3f6  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  0 0 None
0x3f7  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0 16 16 16 16  0 0 Slow
0x3f8  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x3f9  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3fa  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x3fb  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3fc  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  0 0 None
0x3fd  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8 16 16 16 16  0 0 Slow
0x3fe  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x3ff  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x400  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x401  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x402  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  0 0 None
0x403  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0 16 16 16 16  0 0 Slow
0x404  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x405  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x406  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0  0  0  0  0  0  0  4 1 None
0x407  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x408  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x409  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 16  0  0  0  0  0  4 1 None
0x40a  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x40b  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x40c  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  0  0  0  0  0  4 1 None
0x40d  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x40e  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x40f  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 24  8  0  0  0  0  4 1 None
0x410  0 dc  0  32  0 r  . .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x411  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x412  0 dc  0  32  0 r  y .  10 10 10  2 .  .  0 32  0  0  0  0  0  4 1 None
0x413  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x414  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x415  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x416  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x417  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  0 0 None
0x418  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x419  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x41a  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x41b  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x41c  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x41d  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  0 0 None
0x41e  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x41f  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x420  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x421  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x422  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x423  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  0 0 None
0x424  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x425  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x426  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x427  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x428  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x429  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  0 0 None
0x42a  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x42b  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x42c  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x42d  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x42e  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x42f  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  0 0 None
0x430  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x431  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x432  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x433  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0  0  0  0  0  0  0  4 1 None
0x434  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x435  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x436  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 16  0  0  0  0  0  4 1 None
0x437  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x438  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x439  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  0  0  0  0  0  4 1 None
0x43a  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x43b  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x43c  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 24  8  0  0  0  0  4 1 None
0x43d  0 dc  0  30  0 r  . .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x43e  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x43f  0 dc  0  30  0 r  y .  10 10 10  0 .  .  0 32  0  0  0  0  0  4 1 None
0x440 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x441 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x442 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x443 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x444 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x445 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0 16 16 16 16  0 0 Slow
0x446 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x447 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x448 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x449 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x44a 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x44b 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0 16 16 16 16  0 0 Slow
0x44c 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x44d 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x44e 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x44f 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x450 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x451 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0 16 16 16 16  0 0 Slow
0x452 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x453 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x454 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x455 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x456 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x457 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8 16 16 16 16  0 0 Slow
0x458 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x459 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x45a 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x45b 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x45c 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x45d 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0 16 16 16 16  0 0 Slow
0x45e 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x45f 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x460 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  4 1 None
0x461 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x462 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x463 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  4 1 None
0x464 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x465 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x466 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  4 1 None
0x467 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x468 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x469 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  4 1 None
0x46a 24 dc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x46b 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x46c 24 dc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  4 1 None
0x46d 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x46e 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x46f 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x470 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x471 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  0 0 None
0x472 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x473 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x474 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x475 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x476 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x477 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  0 0 None
0x478 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x479 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x47a 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x47b 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x47c 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x47d 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  0 0 None
0x47e 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x47f 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x480 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x481 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x482 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x483 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  0 0 None
0x484 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x485 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x486 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x487 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x488 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x489 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  0 0 None
0x48a 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x48b 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x48c 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x48d 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0  0  0  0  0  0  0  4 1 None
0x48e 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x48f 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x490 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 16  0  0  0  0  0  4 1 None
0x491 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x492 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x493 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  0  0  0  0  0  4 1 None
0x494 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x495 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x496 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 24  8  0  0  0  0  4 1 None
0x497 24 dc  0  24  0 r  . .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x498 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x499 24 dc  0  24  0 r  y .   8  8  8  0 .  .  0 32  0  0  0  0  0  4 1 None
0x49a 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x49b 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x49c 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x49d 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x49e 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x49f 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0 16 16 16 16  0 0 Slow
0x4a0 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x4a1 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x4a2 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x4a3 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x4a4 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x4a5 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0 16 16 16 16  0 0 Slow
0x4a6 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x4a7 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x4a8 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x4a9 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x4aa 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x4ab 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0 16 16 16 16  0 0 Slow
0x4ac 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x4ad 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x4ae 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x4af 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x4b0 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x4b1 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8 16 16 16 16  0 0 Slow
0x4b2 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x4b3 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x4b4 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x4b5 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x4b6 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x4b7 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0 16 16 16 16  0 0 Slow
0x4b8 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x4b9 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x4ba 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  4 1 None
0x4bb 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x4bc 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x4bd 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  4 1 None
0x4be 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x4bf 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x4c0 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  4 1 None
0x4c1 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x4c2 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x4c3 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  4 1 None
0x4c4 24 dc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x4c5 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x4c6 24 dc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  4 1 None
0x4c7 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x4c8 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x4c9 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x4ca 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x4cb 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  0 0 None
0x4cc 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0 16 16 16 16  0 0 Slow
0x4cd 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x4ce 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x4cf 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x4d0 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x4d1 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  0 0 None
0x4d2 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0 16 16 16 16  0 0 Slow
0x4d3 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x4d4 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x4d5 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x4d6 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x4d7 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  0 0 None
0x4d8 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0 16 16 16 16  0 0 Slow
0x4d9 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x4da 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x4db 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x4dc 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x4dd 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  0 0 None
0x4de 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8 16 16 16 16  0 0 Slow
0x4df 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x4e0 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x4e1 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x4e2 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x4e3 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  0 0 None
0x4e4 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0 16 16 16 16  0 0 Slow
0x4e5 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x4e6 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x4e7 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0  0  0  0  0  0  0  4 1 None
0x4e8 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x4e9 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x4ea 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 16  0  0  0  0  0  4 1 None
0x4eb 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x4ec 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x4ed 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  0  0  0  0  0  4 1 None
0x4ee 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x4ef 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x4f0 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 24  8  0  0  0  0  4 1 None
0x4f1 24 dc  0  24  0 r  . .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x4f2 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x4f3 24 dc  0  24  0 r  y .   8  8  8  0 .  s  0 32  0  0  0  0  0  4 1 None
0x4f4  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x4f5  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x4f6  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x4f7  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x4f8  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  0 0 None
0x4f9  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0 16 16 16 16  0 0 Slow
0x4fa  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 16  0  0  0  0  0  0 0 None
0x4fb  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x4fc  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  0 0 None
0x4fd  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x4fe  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  0 0 None
0x4ff  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0 16 16 16 16  0 0 Slow
0x500  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 24  0  0  0  0  0  0 0 None
0x501  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x502  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  0 0 None
0x503  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x504  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  0 0 None
0x505  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0 16 16 16 16  0 0 Slow
0x506  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x507  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x508  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x509  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x50a  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  0 0 None
0x50b  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8 16 16 16 16  0 0 Slow
0x50c  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 32  0  0  0  0  0  0 0 None
0x50d  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x50e  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  0 0 None
0x50f  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x510  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  0 0 None
0x511  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0 16 16 16 16  0 0 Slow
0x512  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x513  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x514  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0  0  0  0  0  0  0  4 1 None
0x515  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 16  0  0  0  0  0  4 1 None
0x516  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  4 1 None
0x517  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 16  0  0  0  0  0  4 1 None
0x518  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 24  0  0  0  0  0  4 1 None
0x519  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  4 1 None
0x51a  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  0  0  0  0  0  4 1 None
0x51b  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x51c  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x51d  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 24  8  0  0  0  0  4 1 None
0x51e  0 dc  0  16  0 r  . .   5  6  5  0 .  .  0 32  0  0  0  0  0  4 1 None
0x51f  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  4 1 None
0x520  0 dc  0  16  0 r  y .   5  6  5  0 .  .  0 32  0  0  0  0  0  4 1 None
0x521 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x522 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x523 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0  0  0  0  0  0  0  0 0 None
0x524 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x525 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x526 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 16  0  0  0  0  0  0 0 None
0x527 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x528 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x529 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  0  0  0  0  0  0 0 None
0x52a 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x52b 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x52c 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 24  8  0  0  0  0  0 0 None
0x52d 32 tc  0  32  0 r  . .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x52e 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x52f 32 tc  0  32  0 r  y .   8  8  8  8 .  .  0 32  0  0  0  0  0  0 0 None
0x530 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x531 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x532 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0  0  0  0  0  0  0  0 0 None
0x533 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x534 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x535 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 16  0  0  0  0  0  0 0 None
0x536 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x537 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x538 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  0  0  0  0  0  0 0 None
0x539 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x53a 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x53b 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 24  8  0  0  0  0  0 0 None
0x53c 32 tc  0  32  0 r  . .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x53d 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None
0x53e 32 tc  0  32  0 r  y .   8  8  8  8 .  s  0 32  0  0  0  0  0  0 0 None

Last edited by ExellentCoin (2021-08-30 19:02:21)

Offline

#10 2021-08-31 11:08:37

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 14,873

Re: xorg with amd APU and NVIDIA GPU

Extended renderer info (GLX_MESA_query_renderer):
    Vendor: Mesa/X.org (0xffffffff)
    Device: llvmpipe (LLVM 12.0.1, 256 bits) (0xffffffff)
    Version: 21.2.1
    Accelerated: no

Your system is using software rendering.
Are you still using the config posted in #6 ?

Looking at the rest of this thread I think there's a chance your hardware doesn't work well together .

What model is your asus laptop and is it running latest firmware ?

Was the nvidia 3080 included when you bought it or added later ?

post the output of

$ lscpu

Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

#11 2021-08-31 11:28:34

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

Lone_Wolf wrote:
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: Mesa/X.org (0xffffffff)
    Device: llvmpipe (LLVM 12.0.1, 256 bits) (0xffffffff)
    Version: 21.2.1
    Accelerated: no

Your system is using software rendering.
Are you still using the config posted in #6 ?

Looking at the rest of this thread I think there's a chance your hardware doesn't work well together .

What model is your asus laptop and is it running latest firmware ?

Was the nvidia 3080 included when you bought it or added later ?

post the output of

$ lscpu

So I don't know what software rendering means, but my xorg.conf is what I described in the workaround (see below for copy). Yes that's what I figured, it is a new ASUS  ROG zephyrus MT7921. It is running on the latest kernel, simply because the lts kernel doesn't support the right modules for the wifi card. and yes it is the standard model, I only added an m.2 nvme ssd for linux.
I don't really know what i did or why it works and I figured it is some kind of reverse prime (the compositors are not working except in gnome for some reason, but then again it is laggy (laggyness is not the case in i3 or xmonad))... Other problems I am facing is that when it suspends, everything suspends even the keyboard and the power-button. nothing works except sometimes a small white underscore on the screen.

Output of `/etc/X11/xorg.conf`:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 470.63.01

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Device"
    Identifier    "Device1"
    Driver        "amdgpu"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Output of `lscpu`:

Architecture:                    x86_64
CPU op-mode(s):                  32-bit, 64-bit
Address sizes:                   48 bits physical, 48 bits virtual
Byte Order:                      Little Endian
CPU(s):                          16
On-line CPU(s) list:             0-15
Vendor ID:                       AuthenticAMD
Model name:                      AMD Ryzen 9 5900HS with Radeon Graphics
CPU family:                      25
Model:                           80
Thread(s) per core:              2
Core(s) per socket:              8
Socket(s):                       1
Stepping:                        0
Frequency boost:                 enabled
CPU max MHz:                     3300.0000
CPU min MHz:                     1200.0000
BogoMIPS:                        6590.17
Flags:                           fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm
Virtualization:                  AMD-V
L1d cache:                       256 KiB (8 instances)
L1i cache:                       256 KiB (8 instances)
L2 cache:                        4 MiB (8 instances)
L3 cache:                        16 MiB (1 instance)
NUMA node(s):                    1
NUMA node0 CPU(s):               0-15
Vulnerability Itlb multihit:     Not affected
Vulnerability L1tf:              Not affected
Vulnerability Mds:               Not affected
Vulnerability Meltdown:          Not affected
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
Vulnerability Spectre v1:        Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnerability Spectre v2:        Mitigation; Full AMD retpoline, IBPB conditional, IBRS_FW, STIBP always-on, RSB filling
Vulnerability Srbds:             Not affected
Vulnerability Tsx async abort:   Not affected

When I supply no xorg.conf, all the outputs are showing up via the amd gpu, but when I try to enable any of the outputs it gives me a

xrandr: crtc X failed

Last edited by ExellentCoin (2021-08-31 11:30:43)

Offline

#12 2021-08-31 11:46:16

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 14,873

Re: xorg with amd APU and NVIDIA GPU

ExellentCoin wrote:

So I don't know what software rendering means

software rendering means that the processor does the graphics work, not the videocard.
On modern processors this can work surprisingly well, but not for graphics heavy applications like gnome (or many games).

ExellentCoin wrote:

it is a new ASUS  ROG zephyrus MT7921

MT7921 appears to be the designation of the wifi chip, I need the model name used by asus for the laptop .

Last edited by Lone_Wolf (2021-08-31 11:47:37)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

#13 2021-08-31 12:03:10

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

MT7921 appears to be the designation of the wifi chip, I need the model name used by asus for the laptop .

Ok sorry. Here you go:

ASUS Rog Zephyrus GA503QS-HQ019T

software rendering means that the processor does the graphics work, not the videocard.
On modern processors this can work surprisingly well, but not for graphics heavy applications like gnome (or many games).

Is there a way to disable thi then, or is it not recommended?

Last edited by ExellentCoin (2021-08-31 12:05:01)

Offline

#14 2021-08-31 12:44:45

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,094

Re: xorg with amd APU and NVIDIA GPU

What is the situation if you remove that configuration and don't try to explicitly create one? Post a Xorg.0.log and a glxinfo -B and nvidia-smi from such a run.

Last edited by V1del (2021-08-31 12:45:52)

Offline

#15 2021-08-31 12:50:47

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

V1del wrote:

What is the situation if you remove that configuration and don't try to explicitly create one? Post a Xorg.0.log and a glxinfo -B and nvidia-smi from such a run.

Okay hold on...

Offline

#16 2021-08-31 12:52:04

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 14,873

Re: xorg with amd APU and NVIDIA GPU

https://rog.asus.com/laptops/rog-zephyr … pdesk_bios indicates latest firmware version is 410 from 2021/06/09 .

Verify if your laptop has that version , if not I hope you can still use windows to update the firmware .


optimus / hybrid graphics setups distinguish between a primary and secondary card.
The primary card can access it's own outputs and use special techniques to access outputs of the secondary card.
Secondary card can only render things and use the outputs of the primary card.


There are basically 2 ways to for the primary card to use outputs of the secondary card : reverse prime and prime synchronization .
For amd + nvidia combo reverse prime has just been introduced in the 470 driver series.

I suggest to try PRIME_synchronization  first as it is a lot more flexible.

Poist the things v1del asked for and add

$ xrandr --prop

(also without xorg conf files)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

#17 2021-08-31 13:03:38

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

So I was wrong that without an xorg.conf that it shows up the ports. It doesn't the degault config the laptop had did tho, but I don't have it anymore.

What is the situation if you remove that configuration and don't try to explicitly create one? Post a Xorg.0.log and a glxinfo -B and nvidia-smi from such a run.

/var/log/Xorg.0.log:

[    51.992] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[    51.992] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[    51.992] Build Operating System: Linux Archlinux
[    51.993] Current Operating System: Linux talos 5.13.13-arch1-1 #1 SMP PREEMPT Thu, 26 Aug 2021 19:14:36 +0000 x86_64
[    51.993] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=169522c6-57a4-4116-ae26-0d8017e9b4d5 rw cryptdevice=UUID=7555b0a1-7cfe-4ecd-afa9-5bfdd162a403:cryptroot root=/dev/mapper/cryptroot resume=/dev/mapper/cryptswap nouveau.modset=0 loglevel=3 quiet acpi_enforce_resources=lax
[    51.993] Build Date: 04 August 2021  08:13:54AM
[    51.993]  
[    51.993] Current version of pixman: 0.40.0
[    51.993] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    51.993] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    51.993] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug 31 14:53:11 2021
[    51.995] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    51.995] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    51.996] (==) No Layout section.  Using the first Screen section.
[    51.996] (==) No screen section available. Using defaults.
[    51.996] (**) |-->Screen "Default Screen Section" (0)
[    51.996] (**) |   |-->Monitor "<default monitor>"
[    51.996] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    51.996] (==) Automatically adding devices
[    51.996] (==) Automatically enabling devices
[    51.996] (==) Automatically adding GPU devices
[    51.996] (==) Automatically binding GPU devices
[    51.996] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    51.996] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    51.996] 	Entry deleted from font path.
[    51.997] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    51.997] 	Entry deleted from font path.
[    51.997] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    51.997] 	Entry deleted from font path.
[    51.998] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    51.998] (==) ModulePath set to "/usr/lib/xorg/modules"
[    51.998] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    51.998] (II) Module ABI versions:
[    51.998] 	X.Org ANSI C Emulation: 0.4
[    51.998] 	X.Org Video Driver: 24.1
[    51.998] 	X.Org XInput driver : 24.1
[    51.998] 	X.Org Server Extension : 10.0
[    51.998] (++) using VT number 1

[    51.999] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    51.999] (II) xfree86: Adding drm device (/dev/dri/card1)
[    52.000] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 10 paused 0
[    52.000] (II) xfree86: Adding drm device (/dev/dri/card0)
[    52.001] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[    52.004] (--) PCI: (1@0:0:0) 10de:249c:1043:1622 rev 161, Mem @ 0xfb000000/16777216, 0xf800000000/17179869184, 0xfc00000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[    52.004] (--) PCI:*(7@0:0:0) 1002:1638:1043:1622 rev 196, Mem @ 0xfc10000000/268435456, 0xfc20000000/2097152, 0xfc500000/524288, I/O @ 0x0000c000/256
[    52.004] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    52.004] (II) LoadModule: "glx"
[    52.005] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    52.009] (II) Module glx: vendor="X.Org Foundation"
[    52.009] 	compiled for 1.20.13, module version = 1.0.0
[    52.009] 	ABI class: X.Org Server Extension, version 10.0
[    52.009] (==) Matched ati as autoconfigured driver 0
[    52.009] (==) Matched nouveau as autoconfigured driver 1
[    52.009] (==) Matched nv as autoconfigured driver 2
[    52.009] (==) Matched modesetting as autoconfigured driver 3
[    52.009] (==) Matched fbdev as autoconfigured driver 4
[    52.009] (==) Matched vesa as autoconfigured driver 5
[    52.009] (==) Assigned the driver to the xf86ConfigLayout
[    52.009] (II) LoadModule: "ati"
[    52.010] (WW) Warning, couldn't open module ati
[    52.010] (EE) Failed to load module "ati" (module does not exist, 0)
[    52.010] (II) LoadModule: "nouveau"
[    52.010] (WW) Warning, couldn't open module nouveau
[    52.010] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    52.010] (II) LoadModule: "nv"
[    52.010] (WW) Warning, couldn't open module nv
[    52.010] (EE) Failed to load module "nv" (module does not exist, 0)
[    52.010] (II) LoadModule: "modesetting"
[    52.010] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    52.011] (II) Module modesetting: vendor="X.Org Foundation"
[    52.011] 	compiled for 1.20.13, module version = 1.20.13
[    52.011] 	Module class: X.Org Video Driver
[    52.011] 	ABI class: X.Org Video Driver, version 24.1
[    52.011] (II) LoadModule: "fbdev"
[    52.011] (WW) Warning, couldn't open module fbdev
[    52.011] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    52.011] (II) LoadModule: "vesa"
[    52.011] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    52.012] (II) Module vesa: vendor="X.Org Foundation"
[    52.012] 	compiled for 1.20.9, module version = 2.5.0
[    52.012] 	Module class: X.Org Video Driver
[    52.012] 	ABI class: X.Org Video Driver, version 24.1
[    52.012] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    52.012] (II) VESA: driver for VESA chipsets: vesa
[    52.012] (II) modeset(0): using drv /dev/dri/card0
[    52.012] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    52.012] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    52.012] (==) modeset(0): RGB weight 888
[    52.012] (==) modeset(0): Default visual is TrueColor
[    52.012] (II) Loading sub module "glamoregl"
[    52.012] (II) LoadModule: "glamoregl"
[    52.012] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    52.015] (II) Module glamoregl: vendor="X.Org Foundation"
[    52.015] 	compiled for 1.20.13, module version = 1.0.1
[    52.015] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    52.163] (II) modeset(0): glamor X acceleration enabled on AMD RENOIR (DRM 3.41.0, 5.13.13-arch1-1, LLVM 12.0.1)
[    52.163] (II) modeset(0): glamor initialized
[    52.165] (II) modeset(0): Output eDP-1 has no monitor section
[    52.165] (II) modeset(0): Output HDMI-1 has no monitor section
[    52.167] (II) modeset(0): EDID for output eDP-1
[    52.167] (II) modeset(0): Manufacturer: BOE  Model: 973  Serial#: 0
[    52.167] (II) modeset(0): Year: 2021  Week: 10
[    52.167] (II) modeset(0): EDID Version: 1.4
[    52.167] (II) modeset(0): Digital Display Input
[    52.167] (II) modeset(0): 8 bits per channel
[    52.167] (II) modeset(0): Digital interface is DisplayPort
[    52.167] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    52.167] (II) modeset(0): Gamma: 2.20
[    52.167] (II) modeset(0): No DPMS capabilities specified
[    52.167] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[    52.167] (II) modeset(0): First detailed timing is preferred mode
[    52.167] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[    52.167] (II) modeset(0): Display is continuous-frequency
[    52.167] (II) modeset(0): redX: 0.680 redY: 0.320   greenX: 0.265 greenY: 0.690
[    52.167] (II) modeset(0): blueX: 0.150 blueY: 0.060   whiteX: 0.313 whiteY: 0.329
[    52.167] (II) modeset(0): Manufacturer's mask: 0
[    52.167] (II) modeset(0): Supported detailed timing:
[    52.167] (II) modeset(0): clock: 256.1 MHz   Image Size:  344 x 194 mm
[    52.167] (II) modeset(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2736 h_border: 0
[    52.167] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1449 v_blanking: 1560 v_border: 0
[    52.167] (II) modeset(0): Ranges: V min: 48 V max: 165 Hz, H min: 257 H max: 257 kHz, PixClock max 705 MHz
[    52.167] (II) modeset(0):  BOE CQ
[    52.167] (II) modeset(0):  NE156QHM-NY1
[    52.167] (II) modeset(0): Number of EDID sections to follow: 1
[    52.167] (II) modeset(0): EDID (in hex):
[    52.167] (II) modeset(0): 	00ffffffffffff0009e5730900000000
[    52.167] (II) modeset(0): 	0a1f0104a5221378030f95ae5243b026
[    52.167] (II) modeset(0): 	0f505400000001010101010101010101
[    52.167] (II) modeset(0): 	010101010101096400b0a0a078503020
[    52.167] (II) modeset(0): 	360058c210000018000000fd0c30a502
[    52.167] (II) modeset(0): 	0246010a202020202020000000fe0042
[    52.167] (II) modeset(0): 	4f452043510a202020202020000000fe
[    52.167] (II) modeset(0): 	004e4531353651484d2d4e59310a0144
[    52.167] (II) modeset(0): 	701379000003011419130184ff09af00
[    52.167] (II) modeset(0): 	2f001f009f0577000200050000000000
[    52.167] (II) modeset(0): 	00000000000000000000000000000000
[    52.167] (II) modeset(0): 	00000000000000000000000000000000
[    52.167] (II) modeset(0): 	00000000000000000000000000000000
[    52.167] (II) modeset(0): 	00000000000000000000000000000000
[    52.167] (II) modeset(0): 	00000000000000000000000000000000
[    52.167] (II) modeset(0): 	00000000000000000000000000008490
[    52.167] (II) modeset(0): Printing probed modes for output eDP-1
[    52.167] (II) modeset(0): Modeline "2560x1440"x165.0  704.26  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (257.4 kHz eP)
[    52.167] (II) modeset(0): Modeline "2560x1440"x60.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    52.167] (II) modeset(0): Modeline "2560x1440"x60.0  638.25  2560 2780 3064 3568  1440 1441 1444 1491 doublescan -hsync +vsync (178.9 kHz d)
[    52.167] (II) modeset(0): Modeline "2560x1440"x60.0  469.12  2560 2584 2600 2640  1440 1441 1444 1481 doublescan +hsync -vsync (177.7 kHz d)
[    52.167] (II) modeset(0): Modeline "2560x1440"x60.0  312.25  2560 2752 3024 3488  1440 1443 1448 1493 -hsync +vsync (89.5 kHz d)
[    52.167] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1440"x85.0  341.35  1920 2072 2288 2656  1440 1441 1444 1512 -hsync +vsync (128.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1440"x75.0  297.00  1920 2064 2288 2640  1440 1441 1444 1500 -hsync +vsync (112.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1856x1392"x75.0  288.00  1856 1984 2208 2560  1392 1393 1396 1500 -hsync +vsync (112.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1856x1392"x60.0  218.30  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.4 kHz d)
[    52.167] (II) modeset(0): Modeline "1792x1344"x75.0  261.00  1792 1888 2104 2456  1344 1345 1348 1417 -hsync +vsync (106.3 kHz d)
[    52.167] (II) modeset(0): Modeline "1792x1344"x60.0  204.80  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.7 kHz d)
[    52.167] (II) modeset(0): Modeline "2048x1152"x60.0  406.50  2048 2220 2444 2840  1152 1153 1156 1193 doublescan -hsync +vsync (143.1 kHz d)
[    52.167] (II) modeset(0): Modeline "2048x1152"x60.0  302.50  2048 2072 2088 2128  1152 1153 1156 1185 doublescan +hsync -vsync (142.2 kHz d)
[    52.167] (II) modeset(0): Modeline "2048x1152"x59.9  197.00  2048 2184 2400 2752  1152 1155 1160 1195 -hsync +vsync (71.6 kHz d)
[    52.167] (II) modeset(0): Modeline "2048x1152"x59.9  156.75  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (71.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1200"x165.0  704.26  1920 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1200"x60.0  154.00  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1080"x165.0  704.26  1920 2608 2640 2736  1080 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1920x1080"x60.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1080"x60.0  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[    52.167] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x1200"x165.0  704.26  1600 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1600x1200"x85.0  229.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (106.2 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x1200"x75.0  202.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (93.8 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x1200"x70.0  189.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (87.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x1200"x65.0  175.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (81.2 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1680x1050"x165.0  704.26  1680 2608 2640 2736  1050 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[    52.167] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[    52.167] (II) modeset(0): Modeline "1400x1050"x74.8  155.80  1400 1464 1784 1912  1050 1052 1064 1090 +hsync +vsync (81.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x900"x60.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x900"x59.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x1024"x165.0  704.26  1280 2608 2640 2736  1024 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1280x1024"x85.0  157.50  1280 1344 1504 1728  1024 1025 1028 1072 +hsync +vsync (91.1 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1440x900"x165.0  704.26  1440 2608 2640 2736  900 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x960"x85.0  148.50  1280 1344 1504 1728  960 961 964 1011 +hsync +vsync (85.9 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1440x810"x60.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[    52.167] (II) modeset(0): Modeline "1440x810"x60.0  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[    52.167] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[    52.167] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x800"x165.0  704.26  1280 2608 2640 2736  800 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1280x800"x60.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x800"x60.0  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[    52.167] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x720"x165.0  704.26  1280 2608 2640 2736  720 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1280x720"x60.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x720"x60.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[    52.167] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768"x165.0  704.26  1024 2608 2640 2736  768 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "1024x768"x85.0  194.02  1024 1108 1220 1416  768 768 770 806 doublescan -hsync +vsync (137.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768"x75.0  170.24  1024 1108 1220 1416  768 768 770 801 doublescan -hsync +vsync (120.2 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768"x60.0  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768"x85.0   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync (68.7 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x768i"x87.0   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync (35.5 kHz d)
[    52.167] (II) modeset(0): Modeline "960x720"x85.0  170.68  960 1036 1144 1328  720 720 722 756 doublescan -hsync +vsync (128.5 kHz d)
[    52.167] (II) modeset(0): Modeline "960x720"x75.0  148.50  960 1032 1144 1320  720 720 722 750 doublescan -hsync +vsync (112.5 kHz d)
[    52.167] (II) modeset(0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    52.167] (II) modeset(0): Modeline "928x696"x75.0  144.00  928 992 1104 1280  696 696 698 750 doublescan -hsync +vsync (112.5 kHz d)
[    52.167] (II) modeset(0): Modeline "928x696"x60.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    52.167] (II) modeset(0): Modeline "896x672"x75.0  130.50  896 944 1052 1228  672 672 674 708 doublescan -hsync +vsync (106.3 kHz d)
[    52.167] (II) modeset(0): Modeline "896x672"x60.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x576"x60.0   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x576"x60.0   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[    52.167] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[    52.167] (II) modeset(0): Modeline "960x600"x59.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[    52.167] (II) modeset(0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    52.167] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz d)
[    52.167] (II) modeset(0): Modeline "960x540"x60.0   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[    52.167] (II) modeset(0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[    52.167] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[    52.167] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[    52.167] (II) modeset(0): Modeline "800x600"x165.0  704.26  800 2608 2640 2736  600 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.167] (II) modeset(0): Modeline "800x600"x85.0  114.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (106.2 kHz d)
[    52.167] (II) modeset(0): Modeline "800x600"x75.0  101.25  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (93.8 kHz d)
[    52.167] (II) modeset(0): Modeline "800x600"x70.0   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (87.5 kHz d)
[    52.167] (II) modeset(0): Modeline "800x600"x65.0   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (81.2 kHz d)
[    52.167] (II) modeset(0): Modeline "800x600"x60.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    52.167] (II) modeset(0): Modeline "800x600"x85.1   56.30  800 832 896 1048  600 601 604 631 +hsync +vsync (53.7 kHz d)
[    52.168] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz d)
[    52.168] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz d)
[    52.168] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    52.168] (II) modeset(0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[    52.168] (II) modeset(0): Modeline "840x525"x59.9   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[    52.168] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[    52.168] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[    52.168] (II) modeset(0): Modeline "700x525"x74.8   77.90  700 732 892 956  525 526 532 545 doublescan +hsync +vsync (81.5 kHz d)
[    52.168] (II) modeset(0): Modeline "700x525"x60.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    52.168] (II) modeset(0): Modeline "800x450"x59.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[    52.168] (II) modeset(0): Modeline "800x450"x59.8   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[    52.168] (II) modeset(0): Modeline "640x512"x85.0   78.75  640 672 752 864  512 512 514 536 doublescan +hsync +vsync (91.1 kHz d)
[    52.168] (II) modeset(0): Modeline "640x512"x75.0   67.50  640 648 720 844  512 512 514 533 doublescan +hsync +vsync (80.0 kHz d)
[    52.168] (II) modeset(0): Modeline "640x512"x60.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    52.168] (II) modeset(0): Modeline "700x450"x60.0   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[    52.168] (II) modeset(0): Modeline "700x450"x59.9   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[    52.168] (II) modeset(0): Modeline "640x480"x165.0  704.26  640 2608 2640 2736  480 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    52.168] (II) modeset(0): Modeline "640x480"x85.1   74.25  640 672 752 864  480 480 482 505 doublescan +hsync +vsync (85.9 kHz d)
[    52.168] (II) modeset(0): Modeline "640x480"x60.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    52.168] (II) modeset(0): Modeline "640x480"x85.0   36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz d)
[    52.168] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz d)
[    52.168] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    52.168] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[    52.168] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[    52.168] (II) modeset(0): Modeline "720x400"x85.0   35.50  720 756 828 936  400 401 404 446 -hsync +vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "684x384"x59.9   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[    52.168] (II) modeset(0): Modeline "684x384"x59.9   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[    52.168] (II) modeset(0): Modeline "640x400"x59.9   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[    52.168] (II) modeset(0): Modeline "640x400"x60.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[    52.168] (II) modeset(0): Modeline "640x400"x85.1   31.50  640 672 736 832  400 401 404 445 -hsync +vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "576x432"x75.0   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync (67.5 kHz d)
[    52.168] (II) modeset(0): Modeline "640x360"x59.9   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[    52.168] (II) modeset(0): Modeline "640x360"x59.8   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[    52.168] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[    52.168] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[    52.168] (II) modeset(0): Modeline "640x350"x85.1   31.50  640 672 736 832  350 382 385 445 +hsync -vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "512x384"x85.0   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync (68.7 kHz d)
[    52.168] (II) modeset(0): Modeline "512x384"x75.0   39.38  512 520 568 656  384 384 386 400 doublescan +hsync +vsync (60.0 kHz d)
[    52.168] (II) modeset(0): Modeline "512x384"x70.1   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync (56.5 kHz d)
[    52.168] (II) modeset(0): Modeline "512x384"x60.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    52.168] (II) modeset(0): Modeline "512x384i"x87.1   22.45  512 516 604 632  384 384 388 408 interlace doublescan +hsync +vsync (35.5 kHz d)
[    52.168] (II) modeset(0): Modeline "512x288"x60.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[    52.168] (II) modeset(0): Modeline "512x288"x59.9   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    52.168] (II) modeset(0): Modeline "416x312"x74.7   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync (49.7 kHz d)
[    52.168] (II) modeset(0): Modeline "480x270"x59.6   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[    52.168] (II) modeset(0): Modeline "480x270"x59.8   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[    52.168] (II) modeset(0): Modeline "400x300"x85.3   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync (53.7 kHz d)
[    52.168] (II) modeset(0): Modeline "400x300"x72.2   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync (48.1 kHz d)
[    52.168] (II) modeset(0): Modeline "400x300"x75.1   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync (46.9 kHz d)
[    52.168] (II) modeset(0): Modeline "400x300"x60.3   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "400x300"x56.3   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    52.168] (II) modeset(0): Modeline "432x243"x59.9   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[    52.168] (II) modeset(0): Modeline "432x243"x59.6   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[    52.168] (II) modeset(0): Modeline "320x240"x85.2   18.00  320 348 376 416  240 240 242 254 doublescan -hsync -vsync (43.3 kHz d)
[    52.168] (II) modeset(0): Modeline "320x240"x72.8   15.75  320 332 352 416  240 244 246 260 doublescan -hsync -vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "320x240"x75.0   15.75  320 328 360 420  240 240 242 250 doublescan -hsync -vsync (37.5 kHz d)
[    52.168] (II) modeset(0): Modeline "320x240"x60.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    52.168] (II) modeset(0): Modeline "360x202"x59.5   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[    52.168] (II) modeset(0): Modeline "360x202"x59.1   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    52.168] (II) modeset(0): Modeline "360x200"x85.0   17.75  360 378 414 468  200 200 202 223 doublescan -hsync +vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "320x200"x85.3   15.75  320 336 368 416  200 200 202 222 doublescan -hsync +vsync (37.9 kHz d)
[    52.168] (II) modeset(0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    52.168] (II) modeset(0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    52.168] (II) modeset(0): Modeline "320x175"x85.3   15.75  320 336 368 416  175 191 192 222 doublescan +hsync -vsync (37.9 kHz d)
[    52.168] (II) modeset(0): EDID for output HDMI-1
[    52.168] (II) modeset(0): Output eDP-1 connected
[    52.168] (II) modeset(0): Output HDMI-1 disconnected
[    52.168] (II) modeset(0): Using exact sizes for initial modes
[    52.168] (II) modeset(0): Output eDP-1 using initial mode 2560x1440 +0+0
[    52.168] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    52.168] (==) modeset(0): DPI set to (96, 96)
[    52.168] (II) Loading sub module "fb"
[    52.168] (II) LoadModule: "fb"
[    52.168] (II) Loading /usr/lib/xorg/modules/libfb.so
[    52.168] (II) Module fb: vendor="X.Org Foundation"
[    52.168] 	compiled for 1.20.13, module version = 1.0.0
[    52.168] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    52.168] (II) UnloadModule: "vesa"
[    52.168] (II) Unloading vesa
[    52.265] (==) modeset(0): Backing store enabled
[    52.266] (==) modeset(0): Silken mouse disabled
[    52.266] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    52.266] (==) modeset(0): DPMS enabled
[    52.266] (II) modeset(0): [DRI2] Setup complete
[    52.266] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[    52.266] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[    52.266] (II) Initializing extension Generic Event Extension
[    52.266] (II) Initializing extension SHAPE
[    52.266] (II) Initializing extension MIT-SHM
[    52.266] (II) Initializing extension XInputExtension
[    52.266] (II) Initializing extension XTEST
[    52.266] (II) Initializing extension BIG-REQUESTS
[    52.266] (II) Initializing extension SYNC
[    52.266] (II) Initializing extension XKEYBOARD
[    52.266] (II) Initializing extension XC-MISC
[    52.266] (II) Initializing extension SECURITY
[    52.266] (II) Initializing extension XFIXES
[    52.266] (II) Initializing extension RENDER
[    52.267] (II) Initializing extension RANDR
[    52.267] (II) Initializing extension COMPOSITE
[    52.267] (II) Initializing extension DAMAGE
[    52.267] (II) Initializing extension MIT-SCREEN-SAVER
[    52.267] (II) Initializing extension DOUBLE-BUFFER
[    52.267] (II) Initializing extension RECORD
[    52.267] (II) Initializing extension DPMS
[    52.267] (II) Initializing extension Present
[    52.267] (II) Initializing extension DRI3
[    52.267] (II) Initializing extension X-Resource
[    52.267] (II) Initializing extension XVideo
[    52.267] (II) Initializing extension XVideo-MotionCompensation
[    52.267] (II) Initializing extension GLX
[    52.270] (II) AIGLX: Loaded and initialized radeonsi
[    52.270] (II) GLX: Initialized DRI2 GL provider for screen 0
[    52.270] (II) Initializing extension XFree86-VidModeExtension
[    52.270] (II) Initializing extension XFree86-DGA
[    52.270] (II) Initializing extension XFree86-DRI
[    52.270] (II) Initializing extension DRI2
[    52.270] (II) modeset(0): Damage tracking initialized
[    52.270] (II) modeset(0): Setting screen physical size to 677 x 381
[    52.323] (II) config/udev: Adding input device Asus Wireless Radio Control (/dev/input/event6)
[    52.323] (**) Asus Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[    52.323] (II) LoadModule: "libinput"
[    52.323] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    52.325] (II) Module libinput: vendor="X.Org Foundation"
[    52.325] 	compiled for 1.20.11, module version = 1.1.0
[    52.325] 	Module class: X.Org XInput Driver
[    52.325] 	ABI class: X.Org XInput driver, version 24.1
[    52.325] (II) Using input driver 'libinput' for 'Asus Wireless Radio Control'
[    52.325] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 22 paused 0
[    52.325] (**) Asus Wireless Radio Control: always reports core events
[    52.325] (**) Option "Device" "/dev/input/event6"
[    52.326] (**) Option "_source" "server/udev"
[    52.330] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[    52.331] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[    52.331] (II) event6  - Asus Wireless Radio Control: device removed
[    52.331] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input11/event6"
[    52.331] (II) XINPUT: Adding extended input device "Asus Wireless Radio Control" (type: KEYBOARD, id 6)
[    52.331] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[    52.331] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[    52.331] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[    52.331] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    52.331] (II) Using input driver 'libinput' for 'Video Bus'
[    52.332] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 25 paused 0
[    52.332] (**) Video Bus: always reports core events
[    52.332] (**) Option "Device" "/dev/input/event3"
[    52.332] (**) Option "_source" "server/udev"
[    52.333] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    52.333] (II) event3  - Video Bus: device is a keyboard
[    52.333] (II) event3  - Video Bus: device removed
[    52.333] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input3/event3"
[    52.333] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    52.333] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    52.333] (II) event3  - Video Bus: device is a keyboard
[    52.334] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    52.334] (II) No input driver specified, ignoring this device.
[    52.334] (II) This device may have been added with another device file.
[    52.334] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    52.334] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    52.334] (II) Using input driver 'libinput' for 'Power Button'
[    52.335] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 26 paused 0
[    52.335] (**) Power Button: always reports core events
[    52.335] (**) Option "Device" "/dev/input/event1"
[    52.335] (**) Option "_source" "server/udev"
[    52.335] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    52.335] (II) event1  - Power Button: device is a keyboard
[    52.335] (II) event1  - Power Button: device removed
[    52.335] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    52.336] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    52.336] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    52.336] (II) event1  - Power Button: device is a keyboard
[    52.336] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[    52.336] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    52.336] (II) Using input driver 'libinput' for 'Sleep Button'
[    52.337] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 27 paused 0
[    52.337] (**) Sleep Button: always reports core events
[    52.337] (**) Option "Device" "/dev/input/event2"
[    52.337] (**) Option "_source" "server/udev"
[    52.337] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    52.337] (II) event2  - Sleep Button: device is a keyboard
[    52.337] (II) event2  - Sleep Button: device removed
[    52.337] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[    52.337] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    52.338] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    52.338] (II) event2  - Sleep Button: device is a keyboard
[    52.338] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[    52.338] (II) No input driver specified, ignoring this device.
[    52.338] (II) This device may have been added with another device file.
[    52.338] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[    52.338] (II) No input driver specified, ignoring this device.
[    52.338] (II) This device may have been added with another device file.
[    52.338] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[    52.338] (II) No input driver specified, ignoring this device.
[    52.338] (II) This device may have been added with another device file.
[    52.338] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[    52.338] (II) No input driver specified, ignoring this device.
[    52.338] (II) This device may have been added with another device file.
[    52.339] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event16)
[    52.339] (II) No input driver specified, ignoring this device.
[    52.339] (II) This device may have been added with another device file.
[    52.339] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event11)
[    52.339] (II) No input driver specified, ignoring this device.
[    52.339] (II) This device may have been added with another device file.
[    52.339] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event4)
[    52.339] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[    52.339] (II) Using input driver 'libinput' for 'Asus Keyboard'
[    52.340] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 28 paused 0
[    52.340] (**) Asus Keyboard: always reports core events
[    52.340] (**) Option "Device" "/dev/input/event4"
[    52.340] (**) Option "_source" "server/udev"
[    52.341] (II) event4  - Asus Keyboard: is tagged by udev as: Keyboard
[    52.341] (II) event4  - Asus Keyboard: device is a keyboard
[    52.341] (II) event4  - Asus Keyboard: device removed
[    52.341] (II) libinput: Asus Keyboard: needs a virtual subdevice
[    52.341] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.0/0003:0B05:19B6.0001/input/input9/event4"
[    52.341] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: MOUSE, id 10)
[    52.341] (**) Option "AccelerationScheme" "none"
[    52.341] (**) Asus Keyboard: (accel) selected scheme none/0
[    52.341] (**) Asus Keyboard: (accel) acceleration factor: 2.000
[    52.341] (**) Asus Keyboard: (accel) acceleration threshold: 4
[    52.342] (II) event4  - Asus Keyboard: is tagged by udev as: Keyboard
[    52.342] (II) event4  - Asus Keyboard: device is a keyboard
[    52.342] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event5)
[    52.342] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[    52.342] (II) Using input driver 'libinput' for 'Asus Keyboard'
[    52.343] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 29 paused 0
[    52.343] (**) Asus Keyboard: always reports core events
[    52.343] (**) Option "Device" "/dev/input/event5"
[    52.343] (**) Option "_source" "server/udev"
[    52.344] (II) event5  - Asus Keyboard: is tagged by udev as: Keyboard
[    52.344] (II) event5  - Asus Keyboard: device is a keyboard
[    52.344] (II) event5  - Asus Keyboard: device removed
[    52.344] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.2/0003:0B05:19B6.0003/input/input10/event5"
[    52.344] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 11)
[    52.345] (II) event5  - Asus Keyboard: is tagged by udev as: Keyboard
[    52.345] (II) event5  - Asus Keyboard: device is a keyboard
[    52.345] (II) config/udev: Adding input device HD-Audio Generic Mic (/dev/input/event17)
[    52.345] (II) No input driver specified, ignoring this device.
[    52.345] (II) This device may have been added with another device file.
[    52.345] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event18)
[    52.345] (II) No input driver specified, ignoring this device.
[    52.345] (II) This device may have been added with another device file.
[    52.345] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Mouse (/dev/input/event8)
[    52.345] (**) ASUE1209:00 04F3:319F Mouse: Applying InputClass "libinput pointer catchall"
[    52.345] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Mouse'
[    52.346] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 30 paused 0
[    52.346] (**) ASUE1209:00 04F3:319F Mouse: always reports core events
[    52.346] (**) Option "Device" "/dev/input/event8"
[    52.346] (**) Option "_source" "server/udev"
[    52.347] (II) event8  - ASUE1209:00 04F3:319F Mouse: is tagged by udev as: Mouse Pointingstick
[    52.347] (II) event8  - ASUE1209:00 04F3:319F Mouse: device is a pointer
[    52.347] (II) event8  - ASUE1209:00 04F3:319F Mouse: device removed
[    52.347] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1209:00/0018:04F3:319F.0004/input/input24/event8"
[    52.347] (II) XINPUT: Adding extended input device "ASUE1209:00 04F3:319F Mouse" (type: MOUSE, id 12)
[    52.347] (**) Option "AccelerationScheme" "none"
[    52.347] (**) ASUE1209:00 04F3:319F Mouse: (accel) selected scheme none/0
[    52.347] (**) ASUE1209:00 04F3:319F Mouse: (accel) acceleration factor: 2.000
[    52.347] (**) ASUE1209:00 04F3:319F Mouse: (accel) acceleration threshold: 4
[    52.348] (II) event8  - ASUE1209:00 04F3:319F Mouse: is tagged by udev as: Mouse Pointingstick
[    52.348] (II) event8  - ASUE1209:00 04F3:319F Mouse: device is a pointer
[    52.348] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Mouse (/dev/input/mouse0)
[    52.348] (II) No input driver specified, ignoring this device.
[    52.348] (II) This device may have been added with another device file.
[    52.349] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Touchpad (/dev/input/event9)
[    52.349] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "libinput touchpad catchall"
[    52.349] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "touchpad"
[    52.349] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Touchpad'
[    52.350] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 31 paused 0
[    52.350] (**) ASUE1209:00 04F3:319F Touchpad: always reports core events
[    52.350] (**) Option "Device" "/dev/input/event9"
[    52.350] (**) Option "_source" "server/udev"
[    52.350] (II) event9  - ASUE1209:00 04F3:319F Touchpad: is tagged by udev as: Touchpad
[    52.351] (II) event9  - ASUE1209:00 04F3:319F Touchpad: device is a touchpad
[    52.352] (II) event9  - ASUE1209:00 04F3:319F Touchpad: device removed
[    52.352] (**) Option "Tapping" "on"
[    52.352] (**) Option "NaturalScrolling" "on"
[    52.352] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1209:00/0018:04F3:319F.0004/input/input25/event9"
[    52.352] (II) XINPUT: Adding extended input device "ASUE1209:00 04F3:319F Touchpad" (type: TOUCHPAD, id 13)
[    52.355] (**) Option "AccelerationScheme" "none"
[    52.355] (**) ASUE1209:00 04F3:319F Touchpad: (accel) selected scheme none/0
[    52.355] (**) ASUE1209:00 04F3:319F Touchpad: (accel) acceleration factor: 2.000
[    52.355] (**) ASUE1209:00 04F3:319F Touchpad: (accel) acceleration threshold: 4
[    52.356] (II) event9  - ASUE1209:00 04F3:319F Touchpad: is tagged by udev as: Touchpad
[    52.357] (II) event9  - ASUE1209:00 04F3:319F Touchpad: device is a touchpad
[    52.358] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Touchpad (/dev/input/mouse1)
[    52.358] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "touchpad"
[    52.358] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Touchpad'
[    52.358] (**) ASUE1209:00 04F3:319F Touchpad: always reports core events
[    52.358] (**) Option "Device" "/dev/input/mouse1"
[    52.358] (**) Option "_source" "server/udev"
[    52.409] (II) mouse1  - not using input device '/dev/input/mouse1'.
[    52.410] (EE) libinput: ASUE1209:00 04F3:319F Touchpad: Failed to create a device for /dev/input/mouse1
[    52.410] (EE) PreInit returned 2 for "ASUE1209:00 04F3:319F Touchpad"
[    52.410] (II) UnloadModule: "libinput"
[    52.410] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event10)
[    52.410] (**) Asus WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    52.410] (II) Using input driver 'libinput' for 'Asus WMI hotkeys'
[    52.412] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 32 paused 0
[    52.412] (**) Asus WMI hotkeys: always reports core events
[    52.412] (**) Option "Device" "/dev/input/event10"
[    52.412] (**) Option "_source" "server/udev"
[    52.414] (II) event10 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    52.414] (II) event10 - Asus WMI hotkeys: device is a keyboard
[    52.414] (II) event10 - Asus WMI hotkeys: device removed
[    52.414] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input15/event10"
[    52.414] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 14)
[    52.416] (II) event10 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    52.416] (II) event10 - Asus WMI hotkeys: device is a keyboard
[    52.417] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[    52.417] (II) No input driver specified, ignoring this device.
[    52.417] (II) This device may have been added with another device file.
[    52.424] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[    52.424] (II) Using input driver 'libinput' for 'Asus Keyboard'
[    52.424] (II) systemd-logind: returning pre-existing fd for /dev/input/event4 13:68
[    52.424] (**) Asus Keyboard: always reports core events
[    52.424] (**) Option "Device" "/dev/input/event4"
[    52.424] (**) Option "_source" "_driver/libinput"
[    52.424] (II) libinput: Asus Keyboard: is a virtual subdevice
[    52.424] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.0/0003:0B05:19B6.0001/input/input9/event4"
[    52.424] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 15)
[    52.962] (II) modeset(0): EDID vendor "BOE", prod id 2419
[    52.962] (II) modeset(0): Using EDID range info for horizontal sync
[    52.962] (II) modeset(0): Using EDID range info for vertical refresh
[    52.962] (II) modeset(0): Printing DDC gathered Modelines:
[    52.962] (II) modeset(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    75.978] (II) modeset(0): EDID vendor "BOE", prod id 2419
[    75.979] (II) modeset(0): Using hsync ranges from config file
[    75.979] (II) modeset(0): Using vrefresh ranges from config file
[    75.979] (II) modeset(0): Printing DDC gathered Modelines:
[    75.979] (II) modeset(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    79.136] (II) modeset(0): EDID vendor "BOE", prod id 2419
[    79.136] (II) modeset(0): Using hsync ranges from config file
[    79.136] (II) modeset(0): Using vrefresh ranges from config file
[    79.136] (II) modeset(0): Printing DDC gathered Modelines:
[    79.136] (II) modeset(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    95.148] (II) modeset(0): EDID vendor "BOE", prod id 2419
[    95.148] (II) modeset(0): Using hsync ranges from config file
[    95.148] (II) modeset(0): Using vrefresh ranges from config file
[    95.148] (II) modeset(0): Printing DDC gathered Modelines:
[    95.148] (II) modeset(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   247.025] (EE) event5  - Asus Keyboard: client bug: event processing lagging behind by 32ms, your system is too slow
[   266.615] (EE) event5  - Asus Keyboard: client bug: event processing lagging behind by 19ms, your system is too slow
[   309.740] (EE) event5  - Asus Keyboard: client bug: event processing lagging behind by 30ms, your system is too slow

glxinfo -B:

name of display: :0
display: :0  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: AMD (0x1002)
    Device: AMD RENOIR (DRM 3.41.0, 5.13.13-arch1-1, LLVM 12.0.1) (0x1638)
    Version: 21.2.1
    Accelerated: yes
    Video memory: 512MB
    Unified memory: no
    Preferred profile: core (0x1)
    Max core profile version: 4.6
    Max compat profile version: 4.6
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.2
Memory info (GL_ATI_meminfo):
    VBO free memory - total: 254 MB, largest block: 254 MB
    VBO free aux. memory - total: 2813 MB, largest block: 2813 MB
    Texture free memory - total: 254 MB, largest block: 254 MB
    Texture free aux. memory - total: 2813 MB, largest block: 2813 MB
    Renderbuffer free memory - total: 254 MB, largest block: 254 MB
    Renderbuffer free aux. memory - total: 2813 MB, largest block: 2813 MB
Memory info (GL_NVX_gpu_memory_info):
    Dedicated video memory: 512 MB
    Total available memory: 3584 MB
    Currently available dedicated video memory: 254 MB
OpenGL vendor string: AMD
OpenGL renderer string: AMD RENOIR (DRM 3.41.0, 5.13.13-arch1-1, LLVM 12.0.1)
OpenGL core profile version string: 4.6 (Core Profile) Mesa 21.2.1
OpenGL core profile shading language version string: 4.60
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 4.6 (Compatibility Profile) Mesa 21.2.1
OpenGL shading language version string: 4.60
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile

OpenGL ES profile version string: OpenGL ES 3.2 Mesa 21.2.1
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20

nvidia-smi:

Tue Aug 31 14:59:58 2021       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 470.63.01    Driver Version: 470.63.01    CUDA Version: 11.4     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  NVIDIA GeForce ...  Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   55C    P0    26W /  N/A |      0MiB /  7982MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

Poist the things v1del asked for and add $ xrandr --prop (also without xorg conf files)

I did try different crtcs, but that didn't help.

is there a way to get the default config back?

xrandr --prop:

Screen 0: minimum 320 x 200, current 2560 x 1440, maximum 16384 x 16384
eDP-1 connected primary 2560x1440+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
	EDID: 
		00ffffffffffff0009e5730900000000
		0a1f0104a5221378030f95ae5243b026
		0f505400000001010101010101010101
		010101010101096400b0a0a078503020
		360058c210000018000000fd0c30a502
		0246010a202020202020000000fe0042
		4f452043510a202020202020000000fe
		004e4531353651484d2d4e59310a0144
		701379000003011419130184ff09af00
		2f001f009f0577000200050000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000008490
	HDCP Content Type: HDCP Type0 
		supported: HDCP Type0, HDCP Type1
	Content Protection: Undesired 
		supported: Undesired, Desired, Enabled
	vrr_capable: 1 
		range: (0, 1)
	abm level: 0 
		range: (0, 4)
	max bpc: 16 
		range: (8, 16)
	underscan vborder: 0 
		range: (0, 128)
	underscan hborder: 0 
		range: (0, 128)
	underscan: off 
		supported: off, on, auto
	scaling mode: None 
		supported: None, Full, Center, Full aspect
	link-status: Good 
		supported: Good, Bad
	CONNECTOR_ID: 78 
		supported: 78
	non-desktop: 0 
		range: (0, 1)
   2560x1440    165.00*+  60.00 +  59.99    59.99    59.96    59.95  
   1920x1440     85.00    75.00    60.00  
   1856x1392     75.00    60.01  
   1792x1344     75.00    60.01  
   2048x1152     59.99    59.98    59.90    59.91  
   1920x1200    165.00    59.88    59.95  
   1920x1080    165.00    60.01    59.97    59.96    59.93  
   1600x1200    165.00    85.00    75.00    70.00    65.00    60.00  
   1680x1050    165.00    59.95    59.88  
   1400x1050     74.76    59.98  
   1600x900      59.99    59.94    59.95    59.82  
   1280x1024    165.00    85.02    75.02    60.02  
   1440x900     165.00  
   1400x900      59.96    59.88  
   1280x960      85.00    60.00  
   1440x810      60.00    59.97  
   1368x768      59.88    59.85  
   1280x800     165.00    59.99    59.97    59.81    59.91  
   1152x864      75.00  
   1280x720     165.00    60.00    59.99    59.86    59.74  
   1024x768     165.00    85.00    75.05    60.04    85.00    75.03    70.07    60.00  
   1024x768i     86.96  
   960x720       85.00    75.00    60.00  
   928x696       75.00    60.05  
   896x672       75.05    60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   832x624       74.55  
   960x540       59.96    59.99    59.63    59.82  
   800x600      165.00    85.00    75.00    70.00    65.00    60.00    85.14    72.19    75.00    60.32    56.25  
   840x525       60.01    59.88  
   864x486       59.92    59.57  
   700x525       74.76    59.98  
   800x450       59.95    59.82  
   640x512       85.02    75.02    60.02  
   700x450       59.96    59.88  
   640x480      165.00    85.09    60.00    85.01    72.81    75.00    59.94  
   720x405       59.51    58.99  
   720x400       85.04  
   684x384       59.88    59.85  
   640x400       59.88    59.98    85.08  
   576x432       75.00  
   640x360       59.86    59.83    59.84    59.32  
   640x350       85.08  
   512x384       85.00    75.03    70.07    60.00  
   512x384i      87.06  
   512x288       60.00    59.92  
   416x312       74.66  
   480x270       59.63    59.82  
   400x300       85.27    72.19    75.12    60.32    56.34  
   432x243       59.92    59.57  
   320x240       85.18    72.81    75.00    60.05  
   360x202       59.51    59.13  
   360x200       85.04  
   320x200       85.27  
   320x180       59.84    59.32  
   320x175       85.27  
HDMI-1 disconnected (normal left inverted right x axis y axis)
	HDCP Content Type: HDCP Type0 
		supported: HDCP Type0, HDCP Type1
	Content Protection: Undesired 
		supported: Undesired, Desired, Enabled
	vrr_capable: 0 
		range: (0, 1)
	max bpc: 8 
		range: (8, 16)
	underscan vborder: 0 
		range: (0, 128)
	underscan hborder: 0 
		range: (0, 128)
	underscan: off 
		supported: off, on, auto
	scaling mode: None 
		supported: None, Full, Center, Full aspect
	link-status: Good 
		supported: Good, Bad
	CONNECTOR_ID: 85 
		supported: 85
	non-desktop: 0 
		range: (0, 1)

Offline

#18 2021-08-31 13:34:16

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 14,873

Re: xorg with amd APU and NVIDIA GPU

Creating a config from scratch tends to be best method to get everything right.

X doesn't seem to load the nvidia modules .

configure early KMS  for both amd and nvidia .
regenerate initramfs and reboot .
Also install xf86-video-amdgpu .

Post fresh xorg log and nvidia-smi output.


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

#19 2021-08-31 13:50:20

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

Creating a config from scratch tends to be best method to get everything right.

Ok, I find this a bit difficult, but I will try. I find that there is not a good wiki for this.

configure early KMS  for both amd and nvidia. regenerate initramfs and reboot . Also install xf86-video-amdgpu .

There you go. I haven't made an xorg.conf just yet.

/var/log/Xorg.0.log:

[    26.679] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[    26.680] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[    26.680] Build Operating System: Linux Archlinux
[    26.680] Current Operating System: Linux talos 5.13.13-arch1-1 #1 SMP PREEMPT Thu, 26 Aug 2021 19:14:36 +0000 x86_64
[    26.680] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=169522c6-57a4-4116-ae26-0d8017e9b4d5 rw cryptdevice=UUID=7555b0a1-7cfe-4ecd-afa9-5bfdd162a403:cryptroot root=/dev/mapper/cryptroot resume=/dev/mapper/cryptswap nouveau.modset=0 loglevel=3 quiet acpi_enforce_resources=lax
[    26.680] Build Date: 04 August 2021  08:13:54AM
[    26.680]  
[    26.680] Current version of pixman: 0.40.0
[    26.680] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    26.680] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    26.680] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug 31 15:52:19 2021
[    26.683] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    26.683] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    26.684] (==) No Layout section.  Using the first Screen section.
[    26.684] (==) No screen section available. Using defaults.
[    26.684] (**) |-->Screen "Default Screen Section" (0)
[    26.684] (**) |   |-->Monitor "<default monitor>"
[    26.684] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    26.684] (==) Automatically adding devices
[    26.684] (==) Automatically enabling devices
[    26.684] (==) Automatically adding GPU devices
[    26.684] (==) Automatically binding GPU devices
[    26.684] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    26.684] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    26.684] 	Entry deleted from font path.
[    26.685] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    26.685] 	Entry deleted from font path.
[    26.685] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    26.685] 	Entry deleted from font path.
[    26.687] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    26.687] (==) ModulePath set to "/usr/lib/xorg/modules"
[    26.687] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    26.687] (II) Module ABI versions:
[    26.687] 	X.Org ANSI C Emulation: 0.4
[    26.687] 	X.Org Video Driver: 24.1
[    26.687] 	X.Org XInput driver : 24.1
[    26.687] 	X.Org Server Extension : 10.0
[    26.688] (++) using VT number 1

[    26.690] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    26.691] (II) xfree86: Adding drm device (/dev/dri/card1)
[    26.692] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 10 paused 0
[    26.692] (II) xfree86: Adding drm device (/dev/dri/card0)
[    26.693] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[    26.988] (--) PCI: (1@0:0:0) 10de:249c:1043:1622 rev 161, Mem @ 0xfb000000/16777216, 0xf800000000/17179869184, 0xfc00000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[    26.988] (--) PCI:*(7@0:0:0) 1002:1638:1043:1622 rev 196, Mem @ 0xfc10000000/268435456, 0xfc20000000/2097152, 0xfc500000/524288, I/O @ 0x0000c000/256
[    26.988] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    26.988] (II) LoadModule: "glx"
[    26.992] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    26.998] (II) Module glx: vendor="X.Org Foundation"
[    26.998] 	compiled for 1.20.13, module version = 1.0.0
[    26.998] 	ABI class: X.Org Server Extension, version 10.0
[    26.998] (II) Applying OutputClass "AMDgpu" to /dev/dri/card0
[    26.998] 	loading driver: amdgpu
[    26.998] (==) Matched amdgpu as autoconfigured driver 0
[    26.998] (==) Matched ati as autoconfigured driver 1
[    26.998] (==) Matched nouveau as autoconfigured driver 2
[    26.998] (==) Matched nv as autoconfigured driver 3
[    26.998] (==) Matched modesetting as autoconfigured driver 4
[    26.998] (==) Matched fbdev as autoconfigured driver 5
[    26.998] (==) Matched vesa as autoconfigured driver 6
[    26.998] (==) Assigned the driver to the xf86ConfigLayout
[    26.998] (II) LoadModule: "amdgpu"
[    26.998] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[    27.001] (II) Module amdgpu: vendor="X.Org Foundation"
[    27.001] 	compiled for 1.20.13, module version = 21.0.0
[    27.001] 	Module class: X.Org Video Driver
[    27.001] 	ABI class: X.Org Video Driver, version 24.1
[    27.001] (II) LoadModule: "ati"
[    27.001] (WW) Warning, couldn't open module ati
[    27.001] (EE) Failed to load module "ati" (module does not exist, 0)
[    27.001] (II) LoadModule: "nouveau"
[    27.001] (WW) Warning, couldn't open module nouveau
[    27.001] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    27.001] (II) LoadModule: "nv"
[    27.001] (WW) Warning, couldn't open module nv
[    27.001] (EE) Failed to load module "nv" (module does not exist, 0)
[    27.001] (II) LoadModule: "modesetting"
[    27.001] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    27.002] (II) Module modesetting: vendor="X.Org Foundation"
[    27.002] 	compiled for 1.20.13, module version = 1.20.13
[    27.002] 	Module class: X.Org Video Driver
[    27.002] 	ABI class: X.Org Video Driver, version 24.1
[    27.002] (II) LoadModule: "fbdev"
[    27.002] (WW) Warning, couldn't open module fbdev
[    27.002] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    27.002] (II) LoadModule: "vesa"
[    27.002] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    27.003] (II) Module vesa: vendor="X.Org Foundation"
[    27.003] 	compiled for 1.20.9, module version = 2.5.0
[    27.003] 	Module class: X.Org Video Driver
[    27.003] 	ABI class: X.Org Video Driver, version 24.1
[    27.003] (II) AMDGPU: Driver for AMD Radeon:
	All GPUs supported by the amdgpu kernel driver
[    27.003] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    27.003] (II) VESA: driver for VESA chipsets: vesa
[    27.008] (WW) Falling back to old probe method for modesetting
[    27.008] (II) AMDGPU(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    27.008] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32
[    27.008] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    27.008] (==) AMDGPU(0): Default visual is TrueColor
[    27.008] (==) AMDGPU(0): RGB weight 888
[    27.008] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)
[    27.008] (--) AMDGPU(0): Chipset: "Unknown AMD Radeon GPU" (ChipID = 0x1638)
[    27.008] (II) Loading sub module "fb"
[    27.008] (II) LoadModule: "fb"
[    27.009] (II) Loading /usr/lib/xorg/modules/libfb.so
[    27.010] (II) Module fb: vendor="X.Org Foundation"
[    27.010] 	compiled for 1.20.13, module version = 1.0.0
[    27.010] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    27.010] (II) Loading sub module "dri2"
[    27.010] (II) LoadModule: "dri2"
[    27.010] (II) Module "dri2" already built-in
[    27.170] (II) Loading sub module "glamoregl"
[    27.170] (II) LoadModule: "glamoregl"
[    27.170] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    27.175] (II) Module glamoregl: vendor="X.Org Foundation"
[    27.175] 	compiled for 1.20.13, module version = 1.0.1
[    27.175] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    27.218] (II) AMDGPU(0): glamor X acceleration enabled on AMD RENOIR (DRM 3.41.0, 5.13.13-arch1-1, LLVM 12.0.1)
[    27.218] (II) AMDGPU(0): glamor detected, initialising EGL layer.
[    27.218] (==) AMDGPU(0): TearFree property default: auto
[    27.218] (==) AMDGPU(0): VariableRefresh: disabled
[    27.218] (II) AMDGPU(0): KMS Pageflipping: enabled
[    27.220] (II) AMDGPU(0): Output eDP has no monitor section
[    27.220] (II) AMDGPU(0): Output HDMI-A-0 has no monitor section
[    27.223] (II) AMDGPU(0): EDID for output eDP
[    27.223] (II) AMDGPU(0): Manufacturer: BOE  Model: 973  Serial#: 0
[    27.223] (II) AMDGPU(0): Year: 2021  Week: 10
[    27.223] (II) AMDGPU(0): EDID Version: 1.4
[    27.223] (II) AMDGPU(0): Digital Display Input
[    27.223] (II) AMDGPU(0): 8 bits per channel
[    27.223] (II) AMDGPU(0): Digital interface is DisplayPort
[    27.223] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    27.223] (II) AMDGPU(0): Gamma: 2.20
[    27.224] (II) AMDGPU(0): No DPMS capabilities specified
[    27.224] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 
[    27.224] (II) AMDGPU(0): First detailed timing is preferred mode
[    27.224] (II) AMDGPU(0): Preferred mode is native pixel format and refresh rate
[    27.224] (II) AMDGPU(0): Display is continuous-frequency
[    27.224] (II) AMDGPU(0): redX: 0.680 redY: 0.320   greenX: 0.265 greenY: 0.690
[    27.224] (II) AMDGPU(0): blueX: 0.150 blueY: 0.060   whiteX: 0.313 whiteY: 0.329
[    27.224] (II) AMDGPU(0): Manufacturer's mask: 0
[    27.224] (II) AMDGPU(0): Supported detailed timing:
[    27.224] (II) AMDGPU(0): clock: 256.1 MHz   Image Size:  344 x 194 mm
[    27.224] (II) AMDGPU(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2736 h_border: 0
[    27.224] (II) AMDGPU(0): v_active: 1440  v_sync: 1443  v_sync_end 1449 v_blanking: 1560 v_border: 0
[    27.224] (II) AMDGPU(0): Ranges: V min: 48 V max: 165 Hz, H min: 257 H max: 257 kHz, PixClock max 705 MHz
[    27.224] (II) AMDGPU(0):  BOE CQ
[    27.224] (II) AMDGPU(0):  NE156QHM-NY1
[    27.224] (II) AMDGPU(0): Number of EDID sections to follow: 1
[    27.224] (II) AMDGPU(0): EDID (in hex):
[    27.224] (II) AMDGPU(0): 	00ffffffffffff0009e5730900000000
[    27.224] (II) AMDGPU(0): 	0a1f0104a5221378030f95ae5243b026
[    27.224] (II) AMDGPU(0): 	0f505400000001010101010101010101
[    27.224] (II) AMDGPU(0): 	010101010101096400b0a0a078503020
[    27.224] (II) AMDGPU(0): 	360058c210000018000000fd0c30a502
[    27.224] (II) AMDGPU(0): 	0246010a202020202020000000fe0042
[    27.224] (II) AMDGPU(0): 	4f452043510a202020202020000000fe
[    27.224] (II) AMDGPU(0): 	004e4531353651484d2d4e59310a0144
[    27.224] (II) AMDGPU(0): 	701379000003011419130184ff09af00
[    27.224] (II) AMDGPU(0): 	2f001f009f0577000200050000000000
[    27.224] (II) AMDGPU(0): 	00000000000000000000000000000000
[    27.224] (II) AMDGPU(0): 	00000000000000000000000000000000
[    27.224] (II) AMDGPU(0): 	00000000000000000000000000000000
[    27.224] (II) AMDGPU(0): 	00000000000000000000000000000000
[    27.224] (II) AMDGPU(0): 	00000000000000000000000000000000
[    27.224] (II) AMDGPU(0): 	00000000000000000000000000008490
[    27.224] (II) AMDGPU(0): Printing probed modes for output eDP
[    27.224] (II) AMDGPU(0): Modeline "2560x1440"x165.0  704.26  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (257.4 kHz eP)
[    27.224] (II) AMDGPU(0): Modeline "2560x1440"x60.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    27.224] (II) AMDGPU(0): Modeline "1920x1200"x165.0  704.26  1920 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1920x1080"x165.0  704.26  1920 2608 2640 2736  1080 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1600x1200"x165.0  704.26  1600 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1680x1050"x165.0  704.26  1680 2608 2640 2736  1050 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1280x1024"x165.0  704.26  1280 2608 2640 2736  1024 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1440x900"x165.0  704.26  1440 2608 2640 2736  900 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1280x800"x165.0  704.26  1280 2608 2640 2736  800 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1280x720"x165.0  704.26  1280 2608 2640 2736  720 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "1024x768"x165.0  704.26  1024 2608 2640 2736  768 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "800x600"x165.0  704.26  800 2608 2640 2736  600 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): Modeline "640x480"x165.0  704.26  640 2608 2640 2736  480 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[    27.224] (II) AMDGPU(0): EDID for output HDMI-A-0
[    27.224] (II) AMDGPU(0): Output eDP connected
[    27.224] (II) AMDGPU(0): Output HDMI-A-0 disconnected
[    27.224] (II) AMDGPU(0): Using exact sizes for initial modes
[    27.224] (II) AMDGPU(0): Output eDP using initial mode 2560x1440 +0+0
[    27.224] (II) AMDGPU(0): mem size init: gart size :bf6ce000 vram size: s:1d906000 visible:1d906000
[    27.224] (==) AMDGPU(0): DPI set to (96, 96)
[    27.224] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)
[    27.224] (II) Loading sub module "ramdac"
[    27.224] (II) LoadModule: "ramdac"
[    27.224] (II) Module "ramdac" already built-in
[    27.224] (II) UnloadModule: "vesa"
[    27.224] (II) Unloading vesa
[    27.224] (II) AMDGPU(0): [DRI2] Setup complete
[    27.224] (II) AMDGPU(0): [DRI2]   DRI driver: radeonsi
[    27.224] (II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi
[    27.341] (II) AMDGPU(0): Front buffer pitch: 10240 bytes
[    27.344] (II) AMDGPU(0): SYNC extension fences enabled
[    27.344] (II) AMDGPU(0): Present extension enabled
[    27.344] (==) AMDGPU(0): DRI3 enabled
[    27.344] (==) AMDGPU(0): Backing store enabled
[    27.344] (II) AMDGPU(0): Direct rendering enabled
[    27.407] (II) AMDGPU(0): Use GLAMOR acceleration.
[    27.407] (II) AMDGPU(0): Acceleration enabled
[    27.407] (==) AMDGPU(0): DPMS enabled
[    27.407] (==) AMDGPU(0): Silken mouse disabled
[    27.407] (II) AMDGPU(0): Set up textured video (glamor)
[    27.416] (II) Initializing extension Generic Event Extension
[    27.416] (II) Initializing extension SHAPE
[    27.416] (II) Initializing extension MIT-SHM
[    27.416] (II) Initializing extension XInputExtension
[    27.416] (II) Initializing extension XTEST
[    27.416] (II) Initializing extension BIG-REQUESTS
[    27.416] (II) Initializing extension SYNC
[    27.416] (II) Initializing extension XKEYBOARD
[    27.416] (II) Initializing extension XC-MISC
[    27.416] (II) Initializing extension SECURITY
[    27.416] (II) Initializing extension XFIXES
[    27.416] (II) Initializing extension RENDER
[    27.416] (II) Initializing extension RANDR
[    27.416] (II) Initializing extension COMPOSITE
[    27.416] (II) Initializing extension DAMAGE
[    27.416] (II) Initializing extension MIT-SCREEN-SAVER
[    27.416] (II) Initializing extension DOUBLE-BUFFER
[    27.416] (II) Initializing extension RECORD
[    27.416] (II) Initializing extension DPMS
[    27.416] (II) Initializing extension Present
[    27.416] (II) Initializing extension DRI3
[    27.416] (II) Initializing extension X-Resource
[    27.416] (II) Initializing extension XVideo
[    27.416] (II) Initializing extension XVideo-MotionCompensation
[    27.416] (II) Initializing extension GLX
[    27.420] (II) AIGLX: Loaded and initialized radeonsi
[    27.420] (II) GLX: Initialized DRI2 GL provider for screen 0
[    27.420] (II) Initializing extension XFree86-VidModeExtension
[    27.420] (II) Initializing extension XFree86-DGA
[    27.420] (II) Initializing extension XFree86-DRI
[    27.420] (II) Initializing extension DRI2
[    27.421] (II) AMDGPU(0): Setting screen physical size to 677 x 381
[    27.538] (II) config/udev: Adding input device Asus Wireless Radio Control (/dev/input/event6)
[    27.538] (**) Asus Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[    27.538] (II) LoadModule: "libinput"
[    27.538] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    27.541] (II) Module libinput: vendor="X.Org Foundation"
[    27.541] 	compiled for 1.20.11, module version = 1.1.0
[    27.541] 	Module class: X.Org XInput Driver
[    27.541] 	ABI class: X.Org XInput driver, version 24.1
[    27.541] (II) Using input driver 'libinput' for 'Asus Wireless Radio Control'
[    27.542] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 23 paused 0
[    27.542] (**) Asus Wireless Radio Control: always reports core events
[    27.542] (**) Option "Device" "/dev/input/event6"
[    27.543] (**) Option "_source" "server/udev"
[    27.550] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[    27.550] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[    27.550] (II) event6  - Asus Wireless Radio Control: device removed
[    27.550] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input11/event6"
[    27.550] (II) XINPUT: Adding extended input device "Asus Wireless Radio Control" (type: KEYBOARD, id 6)
[    27.550] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[    27.550] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[    27.550] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[    27.550] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    27.550] (II) Using input driver 'libinput' for 'Video Bus'
[    27.552] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 26 paused 0
[    27.552] (**) Video Bus: always reports core events
[    27.552] (**) Option "Device" "/dev/input/event3"
[    27.552] (**) Option "_source" "server/udev"
[    27.552] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    27.553] (II) event3  - Video Bus: device is a keyboard
[    27.553] (II) event3  - Video Bus: device removed
[    27.553] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input3/event3"
[    27.553] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    27.553] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    27.553] (II) event3  - Video Bus: device is a keyboard
[    27.554] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    27.554] (II) No input driver specified, ignoring this device.
[    27.554] (II) This device may have been added with another device file.
[    27.554] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    27.554] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    27.554] (II) Using input driver 'libinput' for 'Power Button'
[    27.555] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 27 paused 0
[    27.555] (**) Power Button: always reports core events
[    27.555] (**) Option "Device" "/dev/input/event1"
[    27.555] (**) Option "_source" "server/udev"
[    27.555] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    27.555] (II) event1  - Power Button: device is a keyboard
[    27.556] (II) event1  - Power Button: device removed
[    27.556] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    27.556] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    27.556] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    27.556] (II) event1  - Power Button: device is a keyboard
[    27.556] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[    27.556] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    27.556] (II) Using input driver 'libinput' for 'Sleep Button'
[    27.558] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 28 paused 0
[    27.558] (**) Sleep Button: always reports core events
[    27.558] (**) Option "Device" "/dev/input/event2"
[    27.558] (**) Option "_source" "server/udev"
[    27.558] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    27.558] (II) event2  - Sleep Button: device is a keyboard
[    27.558] (II) event2  - Sleep Button: device removed
[    27.558] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[    27.558] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    27.559] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    27.559] (II) event2  - Sleep Button: device is a keyboard
[    27.559] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[    27.559] (II) No input driver specified, ignoring this device.
[    27.559] (II) This device may have been added with another device file.
[    27.559] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[    27.559] (II) No input driver specified, ignoring this device.
[    27.559] (II) This device may have been added with another device file.
[    27.560] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[    27.560] (II) No input driver specified, ignoring this device.
[    27.560] (II) This device may have been added with another device file.
[    27.560] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[    27.560] (II) No input driver specified, ignoring this device.
[    27.560] (II) This device may have been added with another device file.
[    27.560] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event16)
[    27.560] (II) No input driver specified, ignoring this device.
[    27.560] (II) This device may have been added with another device file.
[    27.560] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event11)
[    27.560] (II) No input driver specified, ignoring this device.
[    27.560] (II) This device may have been added with another device file.
[    27.560] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event4)
[    27.560] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[    27.560] (II) Using input driver 'libinput' for 'Asus Keyboard'
[    27.562] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 29 paused 0
[    27.562] (**) Asus Keyboard: always reports core events
[    27.562] (**) Option "Device" "/dev/input/event4"
[    27.562] (**) Option "_source" "server/udev"
[    27.563] (II) event4  - Asus Keyboard: is tagged by udev as: Keyboard
[    27.563] (II) event4  - Asus Keyboard: device is a keyboard
[    27.563] (II) event4  - Asus Keyboard: device removed
[    27.563] (II) libinput: Asus Keyboard: needs a virtual subdevice
[    27.563] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.0/0003:0B05:19B6.0001/input/input9/event4"
[    27.563] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: MOUSE, id 10)
[    27.563] (**) Option "AccelerationScheme" "none"
[    27.563] (**) Asus Keyboard: (accel) selected scheme none/0
[    27.563] (**) Asus Keyboard: (accel) acceleration factor: 2.000
[    27.563] (**) Asus Keyboard: (accel) acceleration threshold: 4
[    27.563] (II) event4  - Asus Keyboard: is tagged by udev as: Keyboard
[    27.564] (II) event4  - Asus Keyboard: device is a keyboard
[    27.564] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event5)
[    27.564] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[    27.564] (II) Using input driver 'libinput' for 'Asus Keyboard'
[    27.565] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 30 paused 0
[    27.565] (**) Asus Keyboard: always reports core events
[    27.565] (**) Option "Device" "/dev/input/event5"
[    27.565] (**) Option "_source" "server/udev"
[    27.566] (II) event5  - Asus Keyboard: is tagged by udev as: Keyboard
[    27.566] (II) event5  - Asus Keyboard: device is a keyboard
[    27.567] (II) event5  - Asus Keyboard: device removed
[    27.567] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.2/0003:0B05:19B6.0003/input/input10/event5"
[    27.567] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 11)
[    27.567] (II) event5  - Asus Keyboard: is tagged by udev as: Keyboard
[    27.567] (II) event5  - Asus Keyboard: device is a keyboard
[    27.568] (II) config/udev: Adding input device HD-Audio Generic Mic (/dev/input/event17)
[    27.568] (II) No input driver specified, ignoring this device.
[    27.568] (II) This device may have been added with another device file.
[    27.568] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event18)
[    27.568] (II) No input driver specified, ignoring this device.
[    27.568] (II) This device may have been added with another device file.
[    27.568] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Mouse (/dev/input/event8)
[    27.568] (**) ASUE1209:00 04F3:319F Mouse: Applying InputClass "libinput pointer catchall"
[    27.568] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Mouse'
[    27.570] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 31 paused 0
[    27.570] (**) ASUE1209:00 04F3:319F Mouse: always reports core events
[    27.570] (**) Option "Device" "/dev/input/event8"
[    27.570] (**) Option "_source" "server/udev"
[    27.570] (II) event8  - ASUE1209:00 04F3:319F Mouse: is tagged by udev as: Mouse Pointingstick
[    27.570] (II) event8  - ASUE1209:00 04F3:319F Mouse: device is a pointer
[    27.571] (II) event8  - ASUE1209:00 04F3:319F Mouse: device removed
[    27.571] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1209:00/0018:04F3:319F.0004/input/input16/event8"
[    27.571] (II) XINPUT: Adding extended input device "ASUE1209:00 04F3:319F Mouse" (type: MOUSE, id 12)
[    27.571] (**) Option "AccelerationScheme" "none"
[    27.571] (**) ASUE1209:00 04F3:319F Mouse: (accel) selected scheme none/0
[    27.571] (**) ASUE1209:00 04F3:319F Mouse: (accel) acceleration factor: 2.000
[    27.571] (**) ASUE1209:00 04F3:319F Mouse: (accel) acceleration threshold: 4
[    27.571] (II) event8  - ASUE1209:00 04F3:319F Mouse: is tagged by udev as: Mouse Pointingstick
[    27.571] (II) event8  - ASUE1209:00 04F3:319F Mouse: device is a pointer
[    27.572] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Mouse (/dev/input/mouse0)
[    27.572] (II) No input driver specified, ignoring this device.
[    27.572] (II) This device may have been added with another device file.
[    27.572] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Touchpad (/dev/input/event9)
[    27.572] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "libinput touchpad catchall"
[    27.572] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "touchpad"
[    27.572] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Touchpad'
[    27.574] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 32 paused 0
[    27.574] (**) ASUE1209:00 04F3:319F Touchpad: always reports core events
[    27.574] (**) Option "Device" "/dev/input/event9"
[    27.574] (**) Option "_source" "server/udev"
[    27.574] (II) event9  - ASUE1209:00 04F3:319F Touchpad: is tagged by udev as: Touchpad
[    27.575] (II) event9  - ASUE1209:00 04F3:319F Touchpad: device is a touchpad
[    27.575] (II) event9  - ASUE1209:00 04F3:319F Touchpad: device removed
[    27.575] (**) Option "Tapping" "on"
[    27.575] (**) Option "NaturalScrolling" "on"
[    27.575] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1209:00/0018:04F3:319F.0004/input/input17/event9"
[    27.575] (II) XINPUT: Adding extended input device "ASUE1209:00 04F3:319F Touchpad" (type: TOUCHPAD, id 13)
[    27.576] (**) Option "AccelerationScheme" "none"
[    27.576] (**) ASUE1209:00 04F3:319F Touchpad: (accel) selected scheme none/0
[    27.576] (**) ASUE1209:00 04F3:319F Touchpad: (accel) acceleration factor: 2.000
[    27.576] (**) ASUE1209:00 04F3:319F Touchpad: (accel) acceleration threshold: 4
[    27.576] (II) event9  - ASUE1209:00 04F3:319F Touchpad: is tagged by udev as: Touchpad
[    27.577] (II) event9  - ASUE1209:00 04F3:319F Touchpad: device is a touchpad
[    27.578] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Touchpad (/dev/input/mouse1)
[    27.578] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "touchpad"
[    27.578] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Touchpad'
[    27.578] (**) ASUE1209:00 04F3:319F Touchpad: always reports core events
[    27.578] (**) Option "Device" "/dev/input/mouse1"
[    27.578] (**) Option "_source" "server/udev"
[    27.651] (II) mouse1  - not using input device '/dev/input/mouse1'.
[    27.651] (EE) libinput: ASUE1209:00 04F3:319F Touchpad: Failed to create a device for /dev/input/mouse1
[    27.651] (EE) PreInit returned 2 for "ASUE1209:00 04F3:319F Touchpad"
[    27.651] (II) UnloadModule: "libinput"
[    27.652] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event10)
[    27.652] (**) Asus WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    27.652] (II) Using input driver 'libinput' for 'Asus WMI hotkeys'
[    27.654] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 33 paused 0
[    27.654] (**) Asus WMI hotkeys: always reports core events
[    27.654] (**) Option "Device" "/dev/input/event10"
[    27.654] (**) Option "_source" "server/udev"
[    27.655] (II) event10 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    27.655] (II) event10 - Asus WMI hotkeys: device is a keyboard
[    27.656] (II) event10 - Asus WMI hotkeys: device removed
[    27.656] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input15/event10"
[    27.656] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 14)
[    27.657] (II) event10 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    27.657] (II) event10 - Asus WMI hotkeys: device is a keyboard
[    27.659] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[    27.659] (II) No input driver specified, ignoring this device.
[    27.659] (II) This device may have been added with another device file.
[    27.668] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[    27.668] (II) Using input driver 'libinput' for 'Asus Keyboard'
[    27.668] (II) systemd-logind: returning pre-existing fd for /dev/input/event4 13:68
[    27.668] (**) Asus Keyboard: always reports core events
[    27.668] (**) Option "Device" "/dev/input/event4"
[    27.668] (**) Option "_source" "_driver/libinput"
[    27.668] (II) libinput: Asus Keyboard: is a virtual subdevice
[    27.668] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.0/0003:0B05:19B6.0001/input/input9/event4"
[    27.668] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 15)
[    28.345] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[    28.345] (II) AMDGPU(0): Using EDID range info for horizontal sync
[    28.345] (II) AMDGPU(0): Using EDID range info for vertical refresh
[    28.345] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    28.345] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    30.437] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[    30.437] (II) AMDGPU(0): Using hsync ranges from config file
[    30.437] (II) AMDGPU(0): Using vrefresh ranges from config file
[    30.437] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    30.437] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    41.253] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[    41.253] (II) AMDGPU(0): Using hsync ranges from config file
[    41.253] (II) AMDGPU(0): Using vrefresh ranges from config file
[    41.253] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    41.253] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[    86.430] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[    86.430] (II) AMDGPU(0): Using hsync ranges from config file
[    86.430] (II) AMDGPU(0): Using vrefresh ranges from config file
[    86.430] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    86.431] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   148.495] (EE) event9  - ASUE1209:00 04F3:319F Touchpad: client bug: event processing lagging behind by 26ms, your system is too slow
[   248.125] (EE) event5  - Asus Keyboard: client bug: event processing lagging behind by 22ms, your system is too slow

nvidia-smi:

Tue Aug 31 15:55:28 2021       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 470.63.01    Driver Version: 470.63.01    CUDA Version: 11.4     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  NVIDIA GeForce ...  Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   47C    P3    24W /  N/A |      0MiB /  7982MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

Last edited by ExellentCoin (2021-08-31 13:56:37)

Offline

#20 2021-08-31 14:07:59

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

Lone_Wolf wrote:

Creating a config from scratch tends to be best method to get everything right.

Would this be good to start with?

`/etc/X11/xorg.conf`:

Section "ServerLayout"
    Identifier  "Layout0"
    Screen      0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0"    "CorePointer"
EndSection

Section "Device"
    Identifier  "Device0"
    Driver      "amdgpu"
EndSection

Section "Device"
    Identifier  "Device1"
    Driver      "nvidia"
EndSection

Section "Screen"
    Identifier  "Screen0"
    Device      "Device0"
EndSection

Offline

#21 2021-08-31 14:22:04

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,094

Re: xorg with amd APU and NVIDIA GPU

There's no attempt made at loading the nvidia modules at all which is something that should happen if you do not have any other configuration. Is nvidia-utils installed? Just to check what is around

ls -l /etc/X11 /etc/X11/xorg.conf.d /usr/share/X11 /usr/share/X11/xorg.conf.d

Offline

#22 2021-08-31 14:26:52

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 14,873

Re: xorg with amd APU and NVIDIA GPU

ExellentCoin wrote:
Lone_Wolf wrote:

    Creating a config from scratch tends to be best method to get everything right.

Would this be good to start with?

I should rephrase that :

Configuring X is easiest when using autodetection and only adding *.conf files for stuff X autodetection gets wrong.

back to issue :
X still doesn't load nvidia, we may need to investigate what happens before X starts.

post lspci -k output .
As root , full dmesg and SYSTEMD_LESS=FRXMK journalctl -b output .

dmesg and journal are probably large, consider using  a pastebin service


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

#23 2021-08-31 14:32:15

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

Okay, so the config now shows all the outputs, but still gives the crtc error.

Section "ServerLayout"
    Identifier  "Layout0"
    Screen      0 "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0"    "CorePointer"
EndSection

Section "Device"
    Identifier  "Device0"
    Driver      "amdgpu"
EndSection

Section "Device"
    Identifier  "Device1"
    Driver      "nvidia"
EndSection

Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
EndSection

Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection

Section "Monitor"
    Identifier  "Monitor0"
EndSection

Section "Screen"
    Identifier  "Screen0"
    Device      "Device0"
EndSection

Xorg.0.log:

[   391.595] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[   391.602] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[   391.614] Build Operating System: Linux Archlinux
[   391.615] Current Operating System: Linux talos 5.13.13-arch1-1 #1 SMP PREEMPT Thu, 26 Aug 2021 19:14:36 +0000 x86_64
[   391.615] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=169522c6-57a4-4116-ae26-0d8017e9b4d5 rw cryptdevice=UUID=7555b0a1-7cfe-4ecd-afa9-5bfdd162a403:cryptroot root=/dev/mapper/cryptroot resume=/dev/mapper/cryptswap nouveau.modset=0 loglevel=3 quiet acpi_enforce_resources=lax
[   391.620] Build Date: 04 August 2021  08:13:54AM
[   391.621]  
[   391.622] Current version of pixman: 0.40.0
[   391.625] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   391.625] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   391.630] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug 31 16:26:45 2021
[   391.631] (==) Using config file: "/etc/X11/xorg.conf"
[   391.632] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   391.634] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   391.634] (==) ServerLayout "Layout0"
[   391.634] (**) |-->Screen "Screen0" (0)
[   391.634] (**) |   |-->Monitor "<default monitor>"
[   391.634] (**) |   |-->Device "Device0"
[   391.634] (**) |   |-->GPUDevice "Device1"
[   391.634] (==) No monitor specified for screen "Screen0".
	Using a default monitor configuration.
[   391.634] (**) |-->Input Device "Keyboard0"
[   391.634] (**) |-->Input Device "Mouse0"
[   391.634] (==) Automatically adding devices
[   391.634] (==) Automatically enabling devices
[   391.634] (==) Automatically adding GPU devices
[   391.634] (==) Automatically binding GPU devices
[   391.634] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   391.634] (WW) The directory "/usr/share/fonts/misc" does not exist.
[   391.634] 	Entry deleted from font path.
[   391.634] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[   391.634] 	Entry deleted from font path.
[   391.634] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[   391.634] 	Entry deleted from font path.
[   391.634] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[   391.634] (==) ModulePath set to "/usr/lib/xorg/modules"
[   391.634] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[   391.634] (WW) Disabling Keyboard0
[   391.634] (WW) Disabling Mouse0
[   391.634] (II) Module ABI versions:
[   391.634] 	X.Org ANSI C Emulation: 0.4
[   391.634] 	X.Org Video Driver: 24.1
[   391.634] 	X.Org XInput driver : 24.1
[   391.634] 	X.Org Server Extension : 10.0
[   391.635] (++) using VT number 1

[   391.639] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[   391.640] (II) xfree86: Adding drm device (/dev/dri/card1)
[   391.642] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 10 paused 0
[   391.642] (II) xfree86: Adding drm device (/dev/dri/card0)
[   391.644] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[   391.942] (--) PCI: (1@0:0:0) 10de:249c:1043:1622 rev 161, Mem @ 0xfb000000/16777216, 0xf800000000/17179869184, 0xfc00000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[   391.942] (--) PCI:*(7@0:0:0) 1002:1638:1043:1622 rev 196, Mem @ 0xfc10000000/268435456, 0xfc20000000/2097152, 0xfc500000/524288, I/O @ 0x0000c000/256
[   391.942] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   391.942] (II) LoadModule: "glx"
[   391.942] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   391.943] (II) Module glx: vendor="X.Org Foundation"
[   391.943] 	compiled for 1.20.13, module version = 1.0.0
[   391.943] 	ABI class: X.Org Server Extension, version 10.0
[   391.943] (II) LoadModule: "amdgpu"
[   391.943] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[   391.943] (II) Module amdgpu: vendor="X.Org Foundation"
[   391.943] 	compiled for 1.20.13, module version = 21.0.0
[   391.943] 	Module class: X.Org Video Driver
[   391.943] 	ABI class: X.Org Video Driver, version 24.1
[   391.943] (II) LoadModule: "nvidia"
[   391.943] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[   391.943] (II) Module nvidia: vendor="NVIDIA Corporation"
[   391.943] 	compiled for 1.6.99.901, module version = 1.0.0
[   391.943] 	Module class: X.Org Video Driver
[   391.943] (II) AMDGPU: Driver for AMD Radeon:
	All GPUs supported by the amdgpu kernel driver
[   391.943] (II) NVIDIA dlloader X Driver  470.63.01  Tue Aug  3 20:37:27 UTC 2021
[   391.943] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   391.946] (II) systemd-logind: releasing fd for 226:1
[   391.946] (II) Loading sub module "fb"
[   391.946] (II) LoadModule: "fb"
[   391.946] (II) Loading /usr/lib/xorg/modules/libfb.so
[   391.947] (II) Module fb: vendor="X.Org Foundation"
[   391.947] 	compiled for 1.20.13, module version = 1.0.0
[   391.947] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   391.947] (II) Loading sub module "wfb"
[   391.947] (II) LoadModule: "wfb"
[   391.947] (II) Loading /usr/lib/xorg/modules/libwfb.so
[   391.947] (II) Module wfb: vendor="X.Org Foundation"
[   391.947] 	compiled for 1.20.13, module version = 1.0.0
[   391.947] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   391.947] (II) Loading sub module "ramdac"
[   391.947] (II) LoadModule: "ramdac"
[   391.947] (II) Module "ramdac" already built-in
[   391.947] (II) AMDGPU(0): Creating default Display subsection in Screen section
	"Screen0" for depth/fbbpp 24/32
[   391.947] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32
[   391.947] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[   391.947] (==) AMDGPU(0): Default visual is TrueColor
[   391.947] (==) AMDGPU(0): RGB weight 888
[   391.947] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)
[   391.947] (--) AMDGPU(0): Chipset: "Unknown AMD Radeon GPU" (ChipID = 0x1638)
[   391.947] (II) Loading sub module "fb"
[   391.947] (II) LoadModule: "fb"
[   391.947] (II) Loading /usr/lib/xorg/modules/libfb.so
[   391.947] (II) Module fb: vendor="X.Org Foundation"
[   391.947] 	compiled for 1.20.13, module version = 1.0.0
[   391.947] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   391.947] (II) Loading sub module "dri2"
[   391.947] (II) LoadModule: "dri2"
[   391.947] (II) Module "dri2" already built-in
[   391.996] (II) Loading sub module "glamoregl"
[   391.996] (II) LoadModule: "glamoregl"
[   391.996] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[   391.998] (II) Module glamoregl: vendor="X.Org Foundation"
[   391.998] 	compiled for 1.20.13, module version = 1.0.1
[   391.998] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   392.005] (II) AMDGPU(0): glamor X acceleration enabled on AMD RENOIR (DRM 3.41.0, 5.13.13-arch1-1, LLVM 12.0.1)
[   392.005] (II) AMDGPU(0): glamor detected, initialising EGL layer.
[   392.005] (==) AMDGPU(0): TearFree property default: auto
[   392.005] (==) AMDGPU(0): VariableRefresh: disabled
[   392.005] (II) AMDGPU(0): KMS Pageflipping: enabled
[   392.007] (II) AMDGPU(0): Output eDP has no monitor section
[   392.007] (II) AMDGPU(0): Output HDMI-A-0 has no monitor section
[   392.013] (II) AMDGPU(0): EDID for output eDP
[   392.013] (II) AMDGPU(0): Manufacturer: BOE  Model: 973  Serial#: 0
[   392.013] (II) AMDGPU(0): Year: 2021  Week: 10
[   392.013] (II) AMDGPU(0): EDID Version: 1.4
[   392.013] (II) AMDGPU(0): Digital Display Input
[   392.013] (II) AMDGPU(0): 8 bits per channel
[   392.013] (II) AMDGPU(0): Digital interface is DisplayPort
[   392.013] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[   392.013] (II) AMDGPU(0): Gamma: 2.20
[   392.013] (II) AMDGPU(0): No DPMS capabilities specified
[   392.013] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 
[   392.013] (II) AMDGPU(0): First detailed timing is preferred mode
[   392.013] (II) AMDGPU(0): Preferred mode is native pixel format and refresh rate
[   392.013] (II) AMDGPU(0): Display is continuous-frequency
[   392.013] (II) AMDGPU(0): redX: 0.680 redY: 0.320   greenX: 0.265 greenY: 0.690
[   392.013] (II) AMDGPU(0): blueX: 0.150 blueY: 0.060   whiteX: 0.313 whiteY: 0.329
[   392.013] (II) AMDGPU(0): Manufacturer's mask: 0
[   392.013] (II) AMDGPU(0): Supported detailed timing:
[   392.013] (II) AMDGPU(0): clock: 256.1 MHz   Image Size:  344 x 194 mm
[   392.013] (II) AMDGPU(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2736 h_border: 0
[   392.013] (II) AMDGPU(0): v_active: 1440  v_sync: 1443  v_sync_end 1449 v_blanking: 1560 v_border: 0
[   392.013] (II) AMDGPU(0): Ranges: V min: 48 V max: 165 Hz, H min: 257 H max: 257 kHz, PixClock max 705 MHz
[   392.013] (II) AMDGPU(0):  BOE CQ
[   392.013] (II) AMDGPU(0):  NE156QHM-NY1
[   392.013] (II) AMDGPU(0): Number of EDID sections to follow: 1
[   392.013] (II) AMDGPU(0): EDID (in hex):
[   392.013] (II) AMDGPU(0): 	00ffffffffffff0009e5730900000000
[   392.013] (II) AMDGPU(0): 	0a1f0104a5221378030f95ae5243b026
[   392.013] (II) AMDGPU(0): 	0f505400000001010101010101010101
[   392.013] (II) AMDGPU(0): 	010101010101096400b0a0a078503020
[   392.013] (II) AMDGPU(0): 	360058c210000018000000fd0c30a502
[   392.013] (II) AMDGPU(0): 	0246010a202020202020000000fe0042
[   392.013] (II) AMDGPU(0): 	4f452043510a202020202020000000fe
[   392.013] (II) AMDGPU(0): 	004e4531353651484d2d4e59310a0144
[   392.013] (II) AMDGPU(0): 	701379000003011419130184ff09af00
[   392.013] (II) AMDGPU(0): 	2f001f009f0577000200050000000000
[   392.013] (II) AMDGPU(0): 	00000000000000000000000000000000
[   392.013] (II) AMDGPU(0): 	00000000000000000000000000000000
[   392.013] (II) AMDGPU(0): 	00000000000000000000000000000000
[   392.013] (II) AMDGPU(0): 	00000000000000000000000000000000
[   392.013] (II) AMDGPU(0): 	00000000000000000000000000000000
[   392.013] (II) AMDGPU(0): 	00000000000000000000000000008490
[   392.013] (II) AMDGPU(0): Printing probed modes for output eDP
[   392.013] (II) AMDGPU(0): Modeline "2560x1440"x165.0  704.26  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (257.4 kHz eP)
[   392.013] (II) AMDGPU(0): Modeline "2560x1440"x60.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   392.013] (II) AMDGPU(0): Modeline "1920x1200"x165.0  704.26  1920 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1920x1080"x165.0  704.26  1920 2608 2640 2736  1080 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1600x1200"x165.0  704.26  1600 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1680x1050"x165.0  704.26  1680 2608 2640 2736  1050 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1280x1024"x165.0  704.26  1280 2608 2640 2736  1024 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1440x900"x165.0  704.26  1440 2608 2640 2736  900 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1280x800"x165.0  704.26  1280 2608 2640 2736  800 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1280x720"x165.0  704.26  1280 2608 2640 2736  720 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "1024x768"x165.0  704.26  1024 2608 2640 2736  768 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "800x600"x165.0  704.26  800 2608 2640 2736  600 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): Modeline "640x480"x165.0  704.26  640 2608 2640 2736  480 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[   392.013] (II) AMDGPU(0): EDID for output HDMI-A-0
[   392.013] (II) AMDGPU(0): Output eDP connected
[   392.013] (II) AMDGPU(0): Output HDMI-A-0 disconnected
[   392.013] (II) AMDGPU(0): Using exact sizes for initial modes
[   392.013] (II) AMDGPU(0): Output eDP using initial mode 2560x1440 +0+0
[   392.013] (II) AMDGPU(0): mem size init: gart size :bf6ce000 vram size: s:1d906000 visible:1d906000
[   392.013] (==) AMDGPU(0): DPI set to (96, 96)
[   392.013] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)
[   392.013] (II) Loading sub module "ramdac"
[   392.013] (II) LoadModule: "ramdac"
[   392.013] (II) Module "ramdac" already built-in
[   392.013] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[   392.013] (==) NVIDIA(G0): RGB weight 888
[   392.013] (==) NVIDIA(G0): Default visual is TrueColor
[   392.013] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[   392.013] (**) NVIDIA(G0): Enabling 2D acceleration
[   392.014] (II) Loading sub module "glxserver_nvidia"
[   392.014] (II) LoadModule: "glxserver_nvidia"
[   392.014] (WW) Warning, couldn't open module glxserver_nvidia
[   392.014] (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module does not exist, 0)
[   392.014] (EE) NVIDIA(G0): Failed to initialize the GLX module; please check in your X
[   392.014] (EE) NVIDIA(G0):     log file that the GLX module has been loaded in your X
[   392.014] (EE) NVIDIA(G0):     server, and that the module is the NVIDIA GLX module.  If
[   392.014] (EE) NVIDIA(G0):     you continue to encounter problems, Please try
[   392.014] (EE) NVIDIA(G0):     reinstalling the NVIDIA driver.
[   392.014] (II) NVIDIA: The X server does not support PRIME Render Offload.
[   393.016] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[   393.016] (--) NVIDIA(0):     DFP-0
[   393.016] (--) NVIDIA(0):     DFP-1
[   393.016] (--) NVIDIA(0):     DFP-2 (boot)
[   393.016] (--) NVIDIA(0):     DFP-3
[   393.016] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce RTX 3080 Laptop GPU (GA104-A) at
[   393.016] (II) NVIDIA(G0):     PCI:1:0:0 (GPU-0)
[   393.016] (--) NVIDIA(G0): Memory: 8388608 kBytes
[   393.016] (--) NVIDIA(G0): VideoBIOS: 94.04.3f.00.d6
[   393.016] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[   393.016] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   393.016] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   393.016] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   393.016] (--) NVIDIA(GPU-0): 
[   393.018] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   393.018] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   393.018] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   393.018] (--) NVIDIA(GPU-0): 
[   393.019] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   393.019] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   393.019] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   393.019] (--) NVIDIA(GPU-0): 
[   393.021] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   393.021] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   393.021] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   393.021] (--) NVIDIA(GPU-0): 
[   393.105] (II) NVIDIA(G0): Validated MetaModes:
[   393.105] (II) NVIDIA(G0):     "NULL"
[   393.105] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[   393.170] (WW) NVIDIA(G0): Cannot find size of first mode for LG Electronics 27GL850
[   393.170] (WW) NVIDIA(G0):     (DFP-2); cannot compute DPI from LG Electronics 27GL850
[   393.170] (WW) NVIDIA(G0):     (DFP-2)'s EDID.
[   393.170] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[   393.171] (II) AMDGPU(0): [DRI2] Setup complete
[   393.171] (II) AMDGPU(0): [DRI2]   DRI driver: radeonsi
[   393.171] (II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi
[   393.200] (II) AMDGPU(0): Front buffer pitch: 10240 bytes
[   393.200] (II) AMDGPU(0): SYNC extension fences enabled
[   393.200] (II) AMDGPU(0): Present extension enabled
[   393.200] (==) AMDGPU(0): DRI3 enabled
[   393.200] (==) AMDGPU(0): Backing store enabled
[   393.200] (II) AMDGPU(0): Direct rendering enabled
[   393.215] (II) AMDGPU(0): Use GLAMOR acceleration.
[   393.215] (II) AMDGPU(0): Acceleration enabled
[   393.215] (==) AMDGPU(0): DPMS enabled
[   393.215] (==) AMDGPU(0): Silken mouse disabled
[   393.215] (II) AMDGPU(0): Set up textured video (glamor)
[   393.223] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[   393.223] (II) NVIDIA:     access.
[   393.232] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[   393.232] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[   393.232] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[   393.232] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[   393.232] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[   393.232] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[   393.232] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[   393.232] (II) NVIDIA(G0):     Config Options in the README.
[   393.245] (II) NVIDIA(G0): Setting mode "NULL"
[   393.279] (==) NVIDIA(G0): Disabling shared memory pixmaps
[   393.280] (==) NVIDIA(G0): Backing store enabled
[   393.280] (==) NVIDIA(G0): Silken mouse disabled
[   393.280] (==) NVIDIA(G0): DPMS enabled
[   393.280] (II) Loading sub module "dri2"
[   393.280] (II) LoadModule: "dri2"
[   393.280] (II) Module "dri2" already built-in
[   393.280] (II) NVIDIA(G0): [DRI2] Setup complete
[   393.280] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[   393.280] (II) Initializing extension Generic Event Extension
[   393.280] (II) Initializing extension SHAPE
[   393.280] (II) Initializing extension MIT-SHM
[   393.280] (II) Initializing extension XInputExtension
[   393.280] (II) Initializing extension XTEST
[   393.280] (II) Initializing extension BIG-REQUESTS
[   393.280] (II) Initializing extension SYNC
[   393.280] (II) Initializing extension XKEYBOARD
[   393.280] (II) Initializing extension XC-MISC
[   393.280] (II) Initializing extension SECURITY
[   393.280] (II) Initializing extension XFIXES
[   393.280] (II) Initializing extension RENDER
[   393.280] (II) Initializing extension RANDR
[   393.280] (II) Initializing extension COMPOSITE
[   393.280] (II) Initializing extension DAMAGE
[   393.280] (II) Initializing extension MIT-SCREEN-SAVER
[   393.280] (II) Initializing extension DOUBLE-BUFFER
[   393.280] (II) Initializing extension RECORD
[   393.280] (II) Initializing extension DPMS
[   393.280] (II) Initializing extension Present
[   393.280] (II) Initializing extension DRI3
[   393.280] (II) Initializing extension X-Resource
[   393.280] (II) Initializing extension XVideo
[   393.280] (II) Initializing extension XVideo-MotionCompensation
[   393.280] (II) Initializing extension GLX
[   393.283] (II) AIGLX: Loaded and initialized radeonsi
[   393.283] (II) GLX: Initialized DRI2 GL provider for screen 0
[   393.283] (II) Initializing extension XFree86-VidModeExtension
[   393.283] (II) Initializing extension XFree86-DGA
[   393.283] (II) Initializing extension XFree86-DRI
[   393.283] (II) Initializing extension DRI2
[   393.283] (II) Initializing extension NV-GLX
[   393.283] (II) Initializing extension NV-CONTROL
[   393.284] (II) AMDGPU(0): Setting screen physical size to 677 x 381
[   393.392] (II) config/udev: Adding input device Asus Wireless Radio Control (/dev/input/event6)
[   393.392] (**) Asus Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[   393.392] (II) LoadModule: "libinput"
[   393.392] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[   393.394] (II) Module libinput: vendor="X.Org Foundation"
[   393.395] 	compiled for 1.20.11, module version = 1.1.0
[   393.395] 	Module class: X.Org XInput Driver
[   393.395] 	ABI class: X.Org XInput driver, version 24.1
[   393.395] (II) Using input driver 'libinput' for 'Asus Wireless Radio Control'
[   393.396] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 36 paused 0
[   393.396] (**) Asus Wireless Radio Control: always reports core events
[   393.396] (**) Option "Device" "/dev/input/event6"
[   393.396] (**) Option "_source" "server/udev"
[   393.398] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[   393.399] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[   393.399] (II) event6  - Asus Wireless Radio Control: device removed
[   393.399] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input11/event6"
[   393.399] (II) XINPUT: Adding extended input device "Asus Wireless Radio Control" (type: KEYBOARD, id 6)
[   393.400] (II) event6  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[   393.401] (II) event6  - Asus Wireless Radio Control: device is a keyboard
[   393.402] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[   393.402] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[   393.402] (II) Using input driver 'libinput' for 'Video Bus'
[   393.403] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 39 paused 0
[   393.403] (**) Video Bus: always reports core events
[   393.403] (**) Option "Device" "/dev/input/event3"
[   393.403] (**) Option "_source" "server/udev"
[   393.405] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[   393.406] (II) event3  - Video Bus: device is a keyboard
[   393.406] (II) event3  - Video Bus: device removed
[   393.406] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input3/event3"
[   393.406] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[   393.408] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[   393.408] (II) event3  - Video Bus: device is a keyboard
[   393.409] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[   393.409] (II) No input driver specified, ignoring this device.
[   393.409] (II) This device may have been added with another device file.
[   393.409] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[   393.410] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   393.410] (II) Using input driver 'libinput' for 'Power Button'
[   393.411] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 40 paused 0
[   393.411] (**) Power Button: always reports core events
[   393.411] (**) Option "Device" "/dev/input/event1"
[   393.411] (**) Option "_source" "server/udev"
[   393.413] (II) event1  - Power Button: is tagged by udev as: Keyboard
[   393.413] (II) event1  - Power Button: device is a keyboard
[   393.413] (II) event1  - Power Button: device removed
[   393.413] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[   393.413] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[   393.415] (II) event1  - Power Button: is tagged by udev as: Keyboard
[   393.415] (II) event1  - Power Button: device is a keyboard
[   393.416] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[   393.416] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[   393.416] (II) Using input driver 'libinput' for 'Sleep Button'
[   393.417] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 41 paused 0
[   393.417] (**) Sleep Button: always reports core events
[   393.418] (**) Option "Device" "/dev/input/event2"
[   393.418] (**) Option "_source" "server/udev"
[   393.420] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[   393.420] (II) event2  - Sleep Button: device is a keyboard
[   393.420] (II) event2  - Sleep Button: device removed
[   393.420] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[   393.420] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[   393.421] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[   393.421] (II) event2  - Sleep Button: device is a keyboard
[   393.422] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[   393.422] (II) No input driver specified, ignoring this device.
[   393.422] (II) This device may have been added with another device file.
[   393.422] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[   393.422] (II) No input driver specified, ignoring this device.
[   393.422] (II) This device may have been added with another device file.
[   393.422] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[   393.422] (II) No input driver specified, ignoring this device.
[   393.422] (II) This device may have been added with another device file.
[   393.422] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[   393.422] (II) No input driver specified, ignoring this device.
[   393.422] (II) This device may have been added with another device file.
[   393.422] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event16)
[   393.422] (II) No input driver specified, ignoring this device.
[   393.422] (II) This device may have been added with another device file.
[   393.423] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event11)
[   393.423] (II) No input driver specified, ignoring this device.
[   393.423] (II) This device may have been added with another device file.
[   393.424] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event4)
[   393.424] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[   393.424] (II) Using input driver 'libinput' for 'Asus Keyboard'
[   393.425] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 42 paused 0
[   393.425] (**) Asus Keyboard: always reports core events
[   393.425] (**) Option "Device" "/dev/input/event4"
[   393.425] (**) Option "_source" "server/udev"
[   393.427] (II) event4  - Asus Keyboard: is tagged by udev as: Keyboard
[   393.427] (II) event4  - Asus Keyboard: device is a keyboard
[   393.427] (II) event4  - Asus Keyboard: device removed
[   393.427] (II) libinput: Asus Keyboard: needs a virtual subdevice
[   393.427] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.0/0003:0B05:19B6.0001/input/input9/event4"
[   393.427] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: MOUSE, id 10)
[   393.427] (**) Option "AccelerationScheme" "none"
[   393.427] (**) Asus Keyboard: (accel) selected scheme none/0
[   393.427] (**) Asus Keyboard: (accel) acceleration factor: 2.000
[   393.427] (**) Asus Keyboard: (accel) acceleration threshold: 4
[   393.430] (II) event4  - Asus Keyboard: is tagged by udev as: Keyboard
[   393.430] (II) event4  - Asus Keyboard: device is a keyboard
[   393.431] (II) config/udev: Adding input device Asus Keyboard (/dev/input/event5)
[   393.431] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[   393.431] (II) Using input driver 'libinput' for 'Asus Keyboard'
[   393.433] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 43 paused 0
[   393.433] (**) Asus Keyboard: always reports core events
[   393.433] (**) Option "Device" "/dev/input/event5"
[   393.433] (**) Option "_source" "server/udev"
[   393.436] (II) event5  - Asus Keyboard: is tagged by udev as: Keyboard
[   393.436] (II) event5  - Asus Keyboard: device is a keyboard
[   393.437] (II) event5  - Asus Keyboard: device removed
[   393.437] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.2/0003:0B05:19B6.0003/input/input10/event5"
[   393.437] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 11)
[   393.438] (II) event5  - Asus Keyboard: is tagged by udev as: Keyboard
[   393.438] (II) event5  - Asus Keyboard: device is a keyboard
[   393.440] (II) config/udev: Adding input device HD-Audio Generic Mic (/dev/input/event17)
[   393.440] (II) No input driver specified, ignoring this device.
[   393.440] (II) This device may have been added with another device file.
[   393.440] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event18)
[   393.440] (II) No input driver specified, ignoring this device.
[   393.440] (II) This device may have been added with another device file.
[   393.441] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Mouse (/dev/input/event9)
[   393.441] (**) ASUE1209:00 04F3:319F Mouse: Applying InputClass "libinput pointer catchall"
[   393.441] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Mouse'
[   393.443] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 44 paused 0
[   393.443] (**) ASUE1209:00 04F3:319F Mouse: always reports core events
[   393.443] (**) Option "Device" "/dev/input/event9"
[   393.443] (**) Option "_source" "server/udev"
[   393.445] (II) event9  - ASUE1209:00 04F3:319F Mouse: is tagged by udev as: Mouse Pointingstick
[   393.445] (II) event9  - ASUE1209:00 04F3:319F Mouse: device is a pointer
[   393.447] (II) event9  - ASUE1209:00 04F3:319F Mouse: device removed
[   393.447] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1209:00/0018:04F3:319F.0004/input/input16/event9"
[   393.447] (II) XINPUT: Adding extended input device "ASUE1209:00 04F3:319F Mouse" (type: MOUSE, id 12)
[   393.447] (**) Option "AccelerationScheme" "none"
[   393.447] (**) ASUE1209:00 04F3:319F Mouse: (accel) selected scheme none/0
[   393.447] (**) ASUE1209:00 04F3:319F Mouse: (accel) acceleration factor: 2.000
[   393.447] (**) ASUE1209:00 04F3:319F Mouse: (accel) acceleration threshold: 4
[   393.449] (II) event9  - ASUE1209:00 04F3:319F Mouse: is tagged by udev as: Mouse Pointingstick
[   393.450] (II) event9  - ASUE1209:00 04F3:319F Mouse: device is a pointer
[   393.452] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Mouse (/dev/input/mouse0)
[   393.452] (II) No input driver specified, ignoring this device.
[   393.452] (II) This device may have been added with another device file.
[   393.453] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Touchpad (/dev/input/event10)
[   393.453] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "libinput touchpad catchall"
[   393.453] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "touchpad"
[   393.453] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Touchpad'
[   393.454] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 45 paused 0
[   393.455] (**) ASUE1209:00 04F3:319F Touchpad: always reports core events
[   393.455] (**) Option "Device" "/dev/input/event10"
[   393.455] (**) Option "_source" "server/udev"
[   393.455] (II) event10 - ASUE1209:00 04F3:319F Touchpad: is tagged by udev as: Touchpad
[   393.456] (II) event10 - ASUE1209:00 04F3:319F Touchpad: device is a touchpad
[   393.456] (II) event10 - ASUE1209:00 04F3:319F Touchpad: device removed
[   393.456] (**) Option "Tapping" "on"
[   393.456] (**) Option "NaturalScrolling" "on"
[   393.456] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1209:00/0018:04F3:319F.0004/input/input17/event10"
[   393.456] (II) XINPUT: Adding extended input device "ASUE1209:00 04F3:319F Touchpad" (type: TOUCHPAD, id 13)
[   393.457] (**) Option "AccelerationScheme" "none"
[   393.457] (**) ASUE1209:00 04F3:319F Touchpad: (accel) selected scheme none/0
[   393.457] (**) ASUE1209:00 04F3:319F Touchpad: (accel) acceleration factor: 2.000
[   393.457] (**) ASUE1209:00 04F3:319F Touchpad: (accel) acceleration threshold: 4
[   393.457] (II) event10 - ASUE1209:00 04F3:319F Touchpad: is tagged by udev as: Touchpad
[   393.458] (II) event10 - ASUE1209:00 04F3:319F Touchpad: device is a touchpad
[   393.459] (II) config/udev: Adding input device ASUE1209:00 04F3:319F Touchpad (/dev/input/mouse1)
[   393.459] (**) ASUE1209:00 04F3:319F Touchpad: Applying InputClass "touchpad"
[   393.459] (II) Using input driver 'libinput' for 'ASUE1209:00 04F3:319F Touchpad'
[   393.459] (**) ASUE1209:00 04F3:319F Touchpad: always reports core events
[   393.459] (**) Option "Device" "/dev/input/mouse1"
[   393.459] (**) Option "_source" "server/udev"
[   393.516] (II) mouse1  - not using input device '/dev/input/mouse1'.
[   393.516] (EE) libinput: ASUE1209:00 04F3:319F Touchpad: Failed to create a device for /dev/input/mouse1
[   393.516] (EE) PreInit returned 2 for "ASUE1209:00 04F3:319F Touchpad"
[   393.516] (II) UnloadModule: "libinput"
[   393.517] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event8)
[   393.517] (**) Asus WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[   393.517] (II) Using input driver 'libinput' for 'Asus WMI hotkeys'
[   393.518] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 46 paused 0
[   393.518] (**) Asus WMI hotkeys: always reports core events
[   393.518] (**) Option "Device" "/dev/input/event8"
[   393.518] (**) Option "_source" "server/udev"
[   393.519] (II) event8  - Asus WMI hotkeys: is tagged by udev as: Keyboard
[   393.519] (II) event8  - Asus WMI hotkeys: device is a keyboard
[   393.519] (II) event8  - Asus WMI hotkeys: device removed
[   393.519] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input13/event8"
[   393.519] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 14)
[   393.520] (II) event8  - Asus WMI hotkeys: is tagged by udev as: Keyboard
[   393.520] (II) event8  - Asus WMI hotkeys: device is a keyboard
[   393.520] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[   393.520] (II) No input driver specified, ignoring this device.
[   393.520] (II) This device may have been added with another device file.
[   393.529] (**) Asus Keyboard: Applying InputClass "libinput keyboard catchall"
[   393.529] (II) Using input driver 'libinput' for 'Asus Keyboard'
[   393.529] (II) systemd-logind: returning pre-existing fd for /dev/input/event4 13:68
[   393.529] (**) Asus Keyboard: always reports core events
[   393.529] (**) Option "Device" "/dev/input/event4"
[   393.529] (**) Option "_source" "_driver/libinput"
[   393.529] (II) libinput: Asus Keyboard: is a virtual subdevice
[   393.530] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:07:00.3/usb1/1-3/1-3:1.0/0003:0B05:19B6.0001/input/input9/event4"
[   393.530] (II) XINPUT: Adding extended input device "Asus Keyboard" (type: KEYBOARD, id 15)
[   393.531] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   393.531] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   393.531] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   393.531] (--) NVIDIA(GPU-0): 
[   393.531] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   393.531] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   393.531] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   393.531] (--) NVIDIA(GPU-0): 
[   393.898] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   393.898] (II) AMDGPU(0): Using EDID range info for horizontal sync
[   393.898] (II) AMDGPU(0): Using EDID range info for vertical refresh
[   393.898] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   393.898] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   393.900] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   393.900] (II) AMDGPU(0): Using hsync ranges from config file
[   393.900] (II) AMDGPU(0): Using vrefresh ranges from config file
[   393.900] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   393.900] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   393.901] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   393.901] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   393.901] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   393.901] (--) NVIDIA(GPU-0): 
[   393.903] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   393.903] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   393.903] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   393.903] (--) NVIDIA(GPU-0): 
[   393.903] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   393.903] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   393.903] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   393.904] (--) NVIDIA(GPU-0): 
[   393.906] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   393.906] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   393.906] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   393.906] (--) NVIDIA(GPU-0): 
[   393.958] (II) AMDGPU(0): Allocate new frame buffer 5120x1440
[   393.958] (II) AMDGPU(0):  => pitch 20480 bytes
[   393.970] randr: failed to create shared pixmap
[   393.971] (EE) NVIDIA(G0): Failed to configure Reverse PRIME on output DP-1-2.
[   394.634] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   394.634] (II) AMDGPU(0): Using hsync ranges from config file
[   394.634] (II) AMDGPU(0): Using vrefresh ranges from config file
[   394.634] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   394.634] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   394.637] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   394.637] (II) AMDGPU(0): Using hsync ranges from config file
[   394.637] (II) AMDGPU(0): Using vrefresh ranges from config file
[   394.637] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   394.637] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   394.637] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   394.637] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   394.637] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   394.637] (--) NVIDIA(GPU-0): 
[   394.639] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   394.639] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   394.639] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   394.639] (--) NVIDIA(GPU-0): 
[   394.640] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   394.640] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   394.640] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   394.640] (--) NVIDIA(GPU-0): 
[   394.642] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   394.642] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   394.642] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   394.642] (--) NVIDIA(GPU-0): 
[   395.403] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   395.403] (II) AMDGPU(0): Using hsync ranges from config file
[   395.403] (II) AMDGPU(0): Using vrefresh ranges from config file
[   395.403] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   395.403] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   395.405] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   395.405] (II) AMDGPU(0): Using hsync ranges from config file
[   395.405] (II) AMDGPU(0): Using vrefresh ranges from config file
[   395.405] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   395.405] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   395.406] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   395.406] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   395.406] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   395.406] (--) NVIDIA(GPU-0): 
[   395.408] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   395.408] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   395.408] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   395.408] (--) NVIDIA(GPU-0): 
[   395.409] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   395.409] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   395.409] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   395.409] (--) NVIDIA(GPU-0): 
[   395.411] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   395.411] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   395.411] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   395.411] (--) NVIDIA(GPU-0): 
[   406.763] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   406.763] (II) AMDGPU(0): Using hsync ranges from config file
[   406.763] (II) AMDGPU(0): Using vrefresh ranges from config file
[   406.763] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   406.763] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   406.766] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   406.766] (II) AMDGPU(0): Using hsync ranges from config file
[   406.766] (II) AMDGPU(0): Using vrefresh ranges from config file
[   406.766] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   406.766] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   406.766] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   406.766] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   406.766] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   406.766] (--) NVIDIA(GPU-0): 
[   406.769] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   406.769] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   406.769] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   406.769] (--) NVIDIA(GPU-0): 
[   406.769] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   406.769] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   406.769] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   406.769] (--) NVIDIA(GPU-0): 
[   406.772] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   406.772] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   406.772] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   406.772] (--) NVIDIA(GPU-0): 
[   413.920] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   413.920] (II) AMDGPU(0): Using hsync ranges from config file
[   413.920] (II) AMDGPU(0): Using vrefresh ranges from config file
[   413.920] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   413.921] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   413.923] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   413.923] (II) AMDGPU(0): Using hsync ranges from config file
[   413.923] (II) AMDGPU(0): Using vrefresh ranges from config file
[   413.923] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   413.923] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.218] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   415.219] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   415.219] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   415.219] (--) NVIDIA(GPU-0): 
[   415.221] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   415.221] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   415.221] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   415.221] (--) NVIDIA(GPU-0): 
[   415.221] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   415.221] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   415.221] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   415.221] (--) NVIDIA(GPU-0): 
[   415.223] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   415.223] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   415.223] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   415.223] (--) NVIDIA(GPU-0): 
[   415.223] (EE) client bug: timer event10 keyboard: scheduled expiry is in the past (-367ms), your system is too slow
[   415.242] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.242] (II) AMDGPU(0): Using hsync ranges from config file
[   415.242] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.242] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.242] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.243] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.243] (II) AMDGPU(0): Using hsync ranges from config file
[   415.243] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.243] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.243] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.244] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   415.244] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   415.244] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   415.244] (--) NVIDIA(GPU-0): 
[   415.246] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   415.246] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   415.246] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   415.246] (--) NVIDIA(GPU-0): 
[   415.246] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   415.246] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   415.246] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   415.246] (--) NVIDIA(GPU-0): 
[   415.248] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   415.248] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   415.248] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   415.248] (--) NVIDIA(GPU-0): 
[   415.262] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.262] (II) AMDGPU(0): Using hsync ranges from config file
[   415.262] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.262] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.262] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.264] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.264] (II) AMDGPU(0): Using hsync ranges from config file
[   415.264] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.264] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.264] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.264] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   415.264] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   415.264] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   415.264] (--) NVIDIA(GPU-0): 
[   415.267] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   415.267] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   415.267] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   415.267] (--) NVIDIA(GPU-0): 
[   415.267] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   415.267] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   415.267] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   415.267] (--) NVIDIA(GPU-0): 
[   415.269] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   415.269] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   415.269] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   415.269] (--) NVIDIA(GPU-0): 
[   415.280] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.280] (II) AMDGPU(0): Using hsync ranges from config file
[   415.280] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.280] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.280] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.282] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.282] (II) AMDGPU(0): Using hsync ranges from config file
[   415.282] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.282] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.282] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.283] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   415.283] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   415.283] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   415.283] (--) NVIDIA(GPU-0): 
[   415.285] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   415.285] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   415.285] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   415.285] (--) NVIDIA(GPU-0): 
[   415.285] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   415.285] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   415.285] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   415.285] (--) NVIDIA(GPU-0): 
[   415.287] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   415.287] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   415.287] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   415.287] (--) NVIDIA(GPU-0): 
[   415.301] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.301] (II) AMDGPU(0): Using hsync ranges from config file
[   415.301] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.301] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.301] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.302] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   415.303] (II) AMDGPU(0): Using hsync ranges from config file
[   415.303] (II) AMDGPU(0): Using vrefresh ranges from config file
[   415.303] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   415.303] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   415.303] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   415.303] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   415.303] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   415.303] (--) NVIDIA(GPU-0): 
[   415.305] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   415.305] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   415.305] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   415.305] (--) NVIDIA(GPU-0): 
[   415.305] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   415.305] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   415.305] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   415.305] (--) NVIDIA(GPU-0): 
[   415.307] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   415.307] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   415.307] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   415.307] (--) NVIDIA(GPU-0): 
[   416.732] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   416.732] (II) AMDGPU(0): Using hsync ranges from config file
[   416.732] (II) AMDGPU(0): Using vrefresh ranges from config file
[   416.732] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   416.732] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   416.735] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   416.735] (II) AMDGPU(0): Using hsync ranges from config file
[   416.735] (II) AMDGPU(0): Using vrefresh ranges from config file
[   416.735] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   416.735] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   416.735] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   416.735] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   416.735] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   416.735] (--) NVIDIA(GPU-0): 
[   416.738] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   416.738] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   416.738] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   416.738] (--) NVIDIA(GPU-0): 
[   416.738] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   416.738] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   416.738] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   416.738] (--) NVIDIA(GPU-0): 
[   416.740] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   416.740] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   416.740] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   416.740] (--) NVIDIA(GPU-0): 
[   417.194] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   417.194] (II) AMDGPU(0): Using hsync ranges from config file
[   417.194] (II) AMDGPU(0): Using vrefresh ranges from config file
[   417.194] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   417.194] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   417.196] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   417.196] (II) AMDGPU(0): Using hsync ranges from config file
[   417.196] (II) AMDGPU(0): Using vrefresh ranges from config file
[   417.196] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   417.196] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   417.197] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   417.197] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   417.197] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   417.197] (--) NVIDIA(GPU-0): 
[   417.199] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   417.199] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   417.199] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   417.199] (--) NVIDIA(GPU-0): 
[   417.200] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   417.200] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   417.200] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   417.200] (--) NVIDIA(GPU-0): 
[   417.202] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   417.202] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   417.202] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   417.202] (--) NVIDIA(GPU-0): 
[   418.770] (EE) event5  - Asus Keyboard: client bug: event processing lagging behind by 17ms, your system is too slow
[   419.237] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   419.237] (II) AMDGPU(0): Using hsync ranges from config file
[   419.237] (II) AMDGPU(0): Using vrefresh ranges from config file
[   419.237] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   419.237] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   419.239] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   419.239] (II) AMDGPU(0): Using hsync ranges from config file
[   419.239] (II) AMDGPU(0): Using vrefresh ranges from config file
[   419.239] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   419.239] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   419.239] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   419.239] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   419.239] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   419.239] (--) NVIDIA(GPU-0): 
[   419.241] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   419.241] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   419.241] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   419.241] (--) NVIDIA(GPU-0): 
[   419.241] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   419.241] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   419.241] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   419.241] (--) NVIDIA(GPU-0): 
[   419.243] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   419.243] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   419.243] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   419.243] (--) NVIDIA(GPU-0): 
[   421.210] (II) AMDGPU(0): Allocate new frame buffer 2560x1440
[   421.210] (II) AMDGPU(0):  => pitch 10240 bytes
[   421.230] randr: failed to create shared pixmap
[   421.230] (EE) NVIDIA(G0): Failed to configure Reverse PRIME on output DP-1-2.
[   421.444] (EE) AMDGPU(0): drmmode_do_crtc_dpms cannot get last vblank counter
[   421.445] (II) AMDGPU(0): Allocate new frame buffer 5120x1440
[   421.445] (II) AMDGPU(0):  => pitch 20480 bytes
[   422.121] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   422.121] (II) AMDGPU(0): Using hsync ranges from config file
[   422.121] (II) AMDGPU(0): Using vrefresh ranges from config file
[   422.121] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   422.121] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   422.123] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   422.124] (II) AMDGPU(0): Using hsync ranges from config file
[   422.124] (II) AMDGPU(0): Using vrefresh ranges from config file
[   422.124] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   422.124] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   422.124] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   422.124] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   422.124] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   422.124] (--) NVIDIA(GPU-0): 
[   422.126] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   422.126] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   422.126] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   422.126] (--) NVIDIA(GPU-0): 
[   422.126] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   422.126] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   422.126] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   422.126] (--) NVIDIA(GPU-0): 
[   422.129] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   422.129] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   422.129] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   422.129] (--) NVIDIA(GPU-0): 
[   422.204] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   422.204] (II) AMDGPU(0): Using hsync ranges from config file
[   422.204] (II) AMDGPU(0): Using vrefresh ranges from config file
[   422.204] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   422.204] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   422.206] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   422.206] (II) AMDGPU(0): Using hsync ranges from config file
[   422.206] (II) AMDGPU(0): Using vrefresh ranges from config file
[   422.206] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   422.206] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   422.206] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   422.206] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   422.206] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   422.206] (--) NVIDIA(GPU-0): 
[   422.208] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   422.208] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   422.208] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   422.208] (--) NVIDIA(GPU-0): 
[   422.209] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   422.209] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   422.209] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   422.209] (--) NVIDIA(GPU-0): 
[   422.211] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   422.211] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   422.211] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   422.211] (--) NVIDIA(GPU-0): 
[   462.163] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   462.163] (II) AMDGPU(0): Using hsync ranges from config file
[   462.163] (II) AMDGPU(0): Using vrefresh ranges from config file
[   462.163] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   462.163] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   462.165] (II) AMDGPU(0): EDID vendor "BOE", prod id 2419
[   462.165] (II) AMDGPU(0): Using hsync ranges from config file
[   462.165] (II) AMDGPU(0): Using vrefresh ranges from config file
[   462.165] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   462.165] (II) AMDGPU(0): Modeline "2560x1440"x0.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (93.6 kHz eP)
[   463.457] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): connected
[   463.457] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): Internal DisplayPort
[   463.457] (--) NVIDIA(GPU-0): AOC Q2790 (DFP-0): 2670.0 MHz maximum pixel clock
[   463.457] (--) NVIDIA(GPU-0): 
[   463.459] (--) NVIDIA(GPU-0): DFP-1: disconnected
[   463.459] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[   463.459] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[   463.459] (--) NVIDIA(GPU-0): 
[   463.460] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): connected
[   463.460] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): Internal DisplayPort
[   463.460] (--) NVIDIA(GPU-0): LG Electronics 27GL850 (DFP-2): 2670.0 MHz maximum pixel clock
[   463.460] (--) NVIDIA(GPU-0): 
[   463.462] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   463.462] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   463.462] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   463.462] (--) NVIDIA(GPU-0): 
[   463.463] (EE) client bug: timer event10 tap: scheduled expiry is in the past (-680ms), your system is too slow
[   476.410] (EE) event10 - ASUE1209:00 04F3:319F Touchpad: client bug: event processing lagging behind by 42ms, your system is too slow

xrandr --props:

Screen 0: minimum 320 x 200, current 5120 x 1440, maximum 16384 x 16384
eDP connected primary 2560x1440+0+0 (normal left inverted right x axis y axis) 344mm x 194mm
	_MUTTER_PRESENTATION_OUTPUT: 0 
	EDID: 
		00ffffffffffff0009e5730900000000
		0a1f0104a5221378030f95ae5243b026
		0f505400000001010101010101010101
		010101010101096400b0a0a078503020
		360058c210000018000000fd0c30a502
		0246010a202020202020000000fe0042
		4f452043510a202020202020000000fe
		004e4531353651484d2d4e59310a0144
		701379000003011419130184ff09af00
		2f001f009f0577000200050000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000000000
		00000000000000000000000000008490
	GAMMA_LUT_SIZE: 4096 
		range: (0, -1)
	DEGAMMA_LUT_SIZE: 4096 
		range: (0, -1)
	GAMMA_LUT: 0 
		range: (0, 65535)
	CTM: -782825737 0 762862495 0 6982911 -2147483648 140776173 0 -138731716 0 5593175 0 73689603 0 312275000 0 
		-373986527 0 
	DEGAMMA_LUT: 0 
		range: (0, 65535)
	TearFree: auto 
		supported: off, on, auto
	HDCP Content Type: HDCP Type0 
		supported: HDCP Type0, HDCP Type1
	Content Protection: Undesired 
		supported: Undesired, Desired, Enabled
	vrr_capable: 1 
		range: (0, 1)
	abm level: 0 
		range: (0, 4)
	max bpc: 16 
		range: (8, 16)
	underscan vborder: 0 
		range: (0, 128)
	underscan hborder: 0 
		range: (0, 128)
	underscan: off 
		supported: off, on, auto
	scaling mode: None 
		supported: None, Full, Center, Full aspect
	link-status: Good 
		supported: Good, Bad
	CONNECTOR_ID: 78 
		supported: 78
	non-desktop: 0 
		range: (0, 1)
   2560x1440    165.00*+  60.00 +
   1920x1200    165.00  
   1920x1080    165.00  
   1600x1200    165.00  
   1680x1050    165.00  
   1280x1024    165.00  
   1440x900     165.00  
   1280x800     165.00  
   1280x720     165.00  
   1024x768     165.00  
   800x600      165.00  
   640x480      165.00  
HDMI-A-0 disconnected (normal left inverted right x axis y axis)
	GAMMA_LUT_SIZE: 4096 
		range: (0, -1)
	DEGAMMA_LUT_SIZE: 4096 
		range: (0, -1)
	GAMMA_LUT: 0 
		range: (0, 65535)
	CTM: 0 
	DEGAMMA_LUT: 0 
		range: (0, 65535)
	TearFree: auto 
		supported: off, on, auto
	HDCP Content Type: HDCP Type0 
		supported: HDCP Type0, HDCP Type1
	Content Protection: Undesired 
		supported: Undesired, Desired, Enabled
	vrr_capable: 0 
		range: (0, 1)
	max bpc: 8 
		range: (8, 16)
	underscan vborder: 0 
		range: (0, 128)
	underscan hborder: 0 
		range: (0, 128)
	underscan: off 
		supported: off, on, auto
	scaling mode: None 
		supported: None, Full, Center, Full aspect
	link-status: Good 
		supported: Good, Bad
	CONNECTOR_ID: 85 
		supported: 85
	non-desktop: 0 
		range: (0, 1)
DP-1-0 connected (normal left inverted right x axis y axis)
	PRIME Synchronization: 1 
		supported: 0, 1
	CTM: 433666379 1 419048924 -2147483648 54082201 -2147483648 7141306 0 -14345676 0 16222292 0 53685592 0 162647284 0 
		-203991084 0 
	CscMatrix: 65536 0 0 0 0 65536 0 0 0 0 65536 0 
	EDID: 
		00ffffffffffff0005e39027ae0e0000
		251c0104a53c22783a4815a756529c27
		0f5054bfef00d1c0b300950081808140
		81c001010101565e00a0a0a029503020
		350055502100001e000000fd00324c1e
		631e010a202020202020000000fc0051
		323739300a20202020202020000000ff
		0047514d4a3948413030333735380174
		02031ef14b0103051404131f12021190
		230907078301000065030c001000023a
		801871382d40582c450055502100001e
		011d007251d01e206e28550055502100
		001e8c0ad08a20e02d10103e96005550
		210000188c0ad090204031200c405500
		555021000018f03c00d051a035506088
		3a0055502100001c0000000000000077
	BorderDimensions: 4 
		supported: 4
	Border: 0 0 0 0 
		range: (0, 65535)
	SignalFormat: DisplayPort 
		supported: DisplayPort
	ConnectorType: DisplayPort 
	ConnectorNumber: 1 
	_ConnectorLocation: 1 
	non-desktop: 0 
		supported: 0, 1
   2560x1440     59.95 +
   1920x1080     60.00    59.94    50.00  
   1680x1050     59.95  
   1440x900      59.89  
   1280x1440     59.91  
   1280x1024     75.02    60.02  
   1280x960      60.00  
   1280x720      60.00    59.94    50.00  
   1024x768      75.03    70.07    60.00  
   800x600       75.00    72.19    60.32    56.25  
   720x576       50.00  
   720x480       59.94  
   640x480       75.00    72.81    59.94    59.93  
DP-1-1 disconnected (normal left inverted right x axis y axis)
	PRIME Synchronization: 1 
		supported: 0, 1
	CTM: 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 
		0 1 
	CscMatrix: 65536 0 0 0 0 65536 0 0 0 0 65536 0 
	BorderDimensions: 4 
		supported: 4
	Border: 0 0 0 0 
		range: (0, 65535)
	SignalFormat: TMDS 
		supported: TMDS
	ConnectorType: DisplayPort 
	ConnectorNumber: 1 
	_ConnectorLocation: 1 
	non-desktop: 0 
		supported: 0, 1
DP-1-2 connected (normal left inverted right x axis y axis)
	_MUTTER_PRESENTATION_OUTPUT: 0 
	PRIME Synchronization: 1 
		supported: 0, 1
	CTM: -736389297 0 721690354 0 12728759 -2147483648 199763384 0 -215100469 0 22385491 0 53582027 0 214177178 0 
		-255464369 0 
	CscMatrix: 65536 0 0 0 0 65536 0 0 0 0 65536 0 
	EDID: 
		00ffffffffffff001e6d7f5b57570600
		041e0104b53c22789f8cb5af4f43ab26
		0e5054254b007140818081c0a9c0b300
		d1c08100d1cf28de0050a0a038500830
		080455502100001a000000fd003090e6
		e63c010a202020202020000000fc0032
		37474c3835300a2020202020000000ff
		003030344e544e4843373537350a0164
		02031a7123090607e305c000e6060501
		60592846100403011f13565e00a0a0a0
		29503020350055502100001a909b0050
		a0a046500820880c555021000000b8bc
		0050a0a055500838f80c55502100001a
		00000000000000000000000000000000
		00000000000000000000000000000000
		0000000000000000000000000000001a
	BorderDimensions: 4 
		supported: 4
	Border: 0 0 0 0 
		range: (0, 65535)
	SignalFormat: DisplayPort 
		supported: DisplayPort
	ConnectorType: DisplayPort 
	ConnectorNumber: 0 
	_ConnectorLocation: 0 
	non-desktop: 0 
		supported: 0, 1
   2560x1440    144.00 + 120.00    99.90    59.95  
   1920x1080     74.91    60.00    59.94    50.00  
   1680x1050     59.95  
   1600x900      60.00  
   1280x1024     75.02    60.02  
   1280x800      59.81  
   1280x720      60.00    59.94    50.00  
   1152x864      59.96  
   1024x768      75.03    60.00  
   800x600       75.00    60.32  
   720x480       59.94  
   640x480       75.00    59.94    59.93  
DP-1-3 disconnected (normal left inverted right x axis y axis)
	PRIME Synchronization: 1 
		supported: 0, 1
	CTM: 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 
		0 1 
	CscMatrix: 65536 0 0 0 0 65536 0 0 0 0 65536 0 
	BorderDimensions: 4 
		supported: 4
	Border: 0 0 0 0 
		range: (0, 65535)
	SignalFormat: TMDS 
		supported: TMDS
	ConnectorType: DisplayPort 
	ConnectorNumber: 0 
	_ConnectorLocation: 0 
	non-desktop: 0 
		supported: 0, 1

nvidia-smi:

Tue Aug 31 16:32:08 2021       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 470.63.01    Driver Version: 470.63.01    CUDA Version: 11.4     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  NVIDIA GeForce ...  Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   49C    P3    20W /  N/A |      5MiB /  7982MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|    0   N/A  N/A      3124      G   /usr/lib/Xorg                       4MiB |
+-----------------------------------------------------------------------------+

Now that early KMS works, I think it does load the nvidia module.

Last edited by ExellentCoin (2021-08-31 14:33:31)

Offline

#24 2021-08-31 14:36:49

ExellentCoin
Member
Registered: 2021-07-17
Posts: 38

Re: xorg with amd APU and NVIDIA GPU

V1del wrote:

There's no attempt made at loading the nvidia modules at all which is something that should happen if you do not have any other configuration. Is nvidia-utils installed? Just to check what is around

ls -l /etc/X11 /etc/X11/xorg.conf.d /usr/share/X11 /usr/share/X11/xorg.conf.d

nvidia-utils was installed.

Output of

ls -l /etc/X11 /etc/X11/xorg.conf.d /usr/share/X11 /usr/share/X11/xorg.conf.d
/etc/X11:
total 24
drwxr-xr-x 3 root root 4096 Jul 25 15:13 xinit
-rw-r--r-- 1 root root  638 Aug 31 16:24 xorg.conf
-rw-r--r-- 1 root root 1115 Aug 31 14:51 xorg.conf.bac
-rw-r--r-- 1 root root    0 Aug 27 11:47 xorg.conf.backup
drwxr-xr-x 2 root root 4096 Aug 26 15:28 xorg.conf.d
-rw-r--r-- 1 root root    0 Aug 27 11:47 xorg.conf.nvidia-xconfig-original
-rw-r--r-- 1 root root 1989 Aug 26 15:50 xorg.conf.wip
drwxr-xr-x 2 root root 4096 Aug 29 17:37 Xsession.d

/etc/X11/xorg.conf.d:
total 4
-rw-r--r-- 1 root root 681 Aug 26 15:28 40-libinput.conf

/usr/share/X11:
total 68
drwxr-xr-x  2 root root  4096 Aug 30 13:56 app-defaults
drwxr-xr-x 64 root root  4096 Aug 22 17:17 locale
-rw-r--r--  1 root root  1723 Jun  7 07:31 Xcms.txt
-rw-r--r--  1 root root 42077 Jun  7 07:31 XErrorDB
drwxr-xr-x  8 root root  4096 Jul 25 15:13 xkb
drwxr-xr-x  2 root root  4096 Aug 31 16:34 xorg.conf.d
drwxr-xr-x  2 root root  4096 Aug 26 15:24 xorg.conf.d.bac

/usr/share/X11/xorg.conf.d:
total 16
-rw-r--r-- 1 root root   92 Jul 30 22:06 10-amdgpu.conf
-rw-r--r-- 1 root root  227 Aug 10 23:06 10-nvidia-drm-outputclass.conf
-rw-r--r-- 1 root root 1350 Aug  4 10:13 10-quirks.conf
-rw-r--r-- 1 root root 1429 Jun 24 07:34 40-libinput.conf

Offline

#25 2021-08-31 14:39:26

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 14,873

Re: xorg with amd APU and NVIDIA GPU

[   392.013] (**) NVIDIA(G0): Enabling 2D acceleration
[   392.014] (II) Loading sub module "glxserver_nvidia"
[   392.014] (II) LoadModule: "glxserver_nvidia"
[   392.014] (WW) Warning, couldn't open module glxserver_nvidia
[   392.014] (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module does not exist, 0)
[   392.014] (EE) NVIDIA(G0): Failed to initialize the GLX module; please check in your X
[   392.014] (EE) NVIDIA(G0):     log file that the GLX module has been loaded in your X
[   392.014] (EE) NVIDIA(G0):     server, and that the module is the NVIDIA GLX module.  If
[   392.014] (EE) NVIDIA(G0):     you continue to encounter problems, Please try
[   392.014] (EE) NVIDIA(G0):     reinstalling the NVIDIA driver.
[   392.014] (II) NVIDIA: The X server does not support PRIME Render Offload.

Forcing the nvidia driver to be loaded through an xorg.conf is not enough to get it working correctly .

Please post the outputs asked for in #22

Last edited by Lone_Wolf (2021-08-31 14:39:47)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Offline

Board footer

Powered by FluxBB