diff --git a/blender/io_scene_emf/__init__.py b/blender/io_scene_emf/__init__.py index a41166a..3589674 100644 --- a/blender/io_scene_emf/__init__.py +++ b/blender/io_scene_emf/__init__.py @@ -84,7 +84,7 @@ class ExportEMF(bpy.types.Operator, ExportHelper): use_selection = BoolProperty( name="Selection Only", description="Export selected objects only", - default=True, + default=False, ) # generate binary file use_binary = BoolProperty( diff --git a/blender/io_scene_emf/exportEmf.py b/blender/io_scene_emf/exportEmf.py index 1cec20e..7d8b37b 100644 --- a/blender/io_scene_emf/exportEmf.py +++ b/blender/io_scene_emf/exportEmf.py @@ -1,9 +1,12 @@ import bpy -bpy.ops.wm.open_mainfile(filepath="/home/heero/dev/workspace-game/atriasoft/ege/blender/io_scene_emf/../../samples/resources/emf/tree1.blend") - -bpy.ops.export_scene.emf(filepath="/home/heero/dev/workspace-game/atriasoft/ege/blender/io_scene_emf/../../samples/resources/emf/tree1.emf") +#bpy.ops.wm.open_mainfile(filepath="/home/heero/dev/workspace-game/atriasoft/ege/blender/io_scene_emf/../../samples/resources/emf/tree1.blend") +#bpy.ops.export_scene.emf(filepath="/home/heero/dev/workspace-game/atriasoft/ege/samples/resources/emf/tree1.emf") #bpy.ops.wm.open_mainfile(filepath="/home/heero/dev/workspace-game/atriasoft/ewol/resources/resources/ewol/theme/shape/Entry.blend") - #bpy.ops.export_scene.emf(filepath="/home/heero/dev/workspace-game/atriasoft/ewol/resources/resources/ewol/theme/shape/Entry.emf") +#bpy.ops.export_scene.emf(filepath="/home/heero/dev/workspace-game/atriasoft/ege/samples/resources/emf/Entry.emf") + + +bpy.ops.wm.open_mainfile(filepath="/home/heero/dev/workspace-game/model/tower.blend") +bpy.ops.export_scene.emf(filepath="/home/heero/dev/workspace-game/atriasoft/ege/samples/resources/emf/tower.emf") diff --git a/blender/io_scene_emf/export_emf.py b/blender/io_scene_emf/export_emf.py index ddf183e..dbdb49e 100644 --- a/blender/io_scene_emf/export_emf.py +++ b/blender/io_scene_emf/export_emf.py @@ -59,7 +59,7 @@ def out_quaternion( q ): return "%g %g %g %g" % ( q.x, q.y, q.z, q.w ) -def get_physics_shape(obj, mainObjScale): +def get_physics_shape(obj): shape = "" props = { } name = obj.name.lower() @@ -73,7 +73,7 @@ def get_physics_shape(obj, mainObjScale): # SPHERE elif name.startswith('sph'): shape = "Sphere" - props["radius"] = obj.scale.x * mainObjScale.x + props["radius"] = obj.scale.x # CONE elif name.startswith('cone'): shape = "Cone" @@ -116,21 +116,21 @@ def get_physics_shape(obj, mainObjScale): return (shape, props) -def write_collision_shape(object, file, mainObjScale, offset): +def write_collision_shape(objects, file, offset): fw = file.write - if len(getChildren(object))==0: + if len(objects)==0: # no phisical shape ... return string_offset = "" for iii in range(offset): string_offset += "\t" fw(string_offset + 'Physics:\n') - for subObj in getChildren(object): + for subObj in objects: print(" element='" + subObj.name + "' type '" + str(subObj.type) + "'") if subObj.type != 'MESH' \ and subObj.type != 'EMPTY': continue - (shape, props) = get_physics_shape(subObj, mainObjScale) + (shape, props) = get_physics_shape(subObj) if shape=="": print("error of shape detection type ..."); continue @@ -179,7 +179,11 @@ def write_mtl(scene, file, filepath, path_mode, copy_set, mtl_dict): #print(" mat: "); #for elem in dir(mat): # print(" - " + elem); - fw('Materials:%s\n' % mtl_mat_name) # Define a new material: matname_imgname + if mtl_mat_name.lower().startswith("palette_"): + fw('# Just for information:\nPalettes:%s\n' % mtl_mat_name[8:]) # Define a new material: matname_imgname + else: + fw('Materials:%s\n' % mtl_mat_name) # Define a new material: matname_imgname + mat_wrap = node_shader_utils.PrincipledBSDFWrapper(mat) if mat else None if mat_wrap: @@ -256,9 +260,9 @@ def write_mtl(scene, file, filepath, path_mode, copy_set, mtl_dict): if tex_wrap.scale != Vector((1.0, 1.0, 1.0)): options.append('-s %.6f %.6f %.6f' % tex_wrap.scale[:]) if options: - fw('%s %s %s\n' % (key, " ".join(options), repr(filepath)[1:-1])) + fw('\t%s %s %s\n' % (key, " ".join(options), repr(filepath)[1:-1])) else: - fw('%s %s\n' % (key, repr(filepath)[1:-1])) + fw('\t%s %s\n' % (key, repr(filepath)[1:-1])) else: # Write a dummy material here? @@ -295,7 +299,7 @@ def write_mesh(scene, file, object, mtl_dict): print(object.name + 'is not a mesh type - ignoring type=' + object.type) fw('# can not export:"%s":type="%s"\n' % (object.name, str(object.type))) return - #print("name:'%s'" % object.name) + print("generate Object name:'%s'" % object.name) #for plop in object.child: # print(" child:'%s'" % plop.name) # ignore dupli children @@ -330,8 +334,10 @@ def write_mesh(scene, file, object, mtl_dict): mesh_triangulate(me) # calculated normals: me.calc_normals() + #print("nb UB layers: " + str(len(me.uv_layers)) + " " + str(dir(me.uv_layers))); # export UV mapping: faceuv = len(me.uv_layers) > 0 + # TODO: This does not work with V facing ==> need to rework it ... designed for Low poly then we use Palette if faceuv: uv_texture = me.uv_layers.active.data[:] uv_layer = me.uv_layers.active.data[:] @@ -353,13 +359,27 @@ def write_mesh(scene, file, object, mtl_dict): material_names = [name_compat(None)] # Sort by Material, then images # so we dont over context switch in the obj file. - if faceuv: - face_index_pairs.sort(key=lambda a: (a[0].material_index, hash(uv_texture[a[1]].image), a[0].use_smooth)) - elif len(materials) > 1: - face_index_pairs.sort(key=lambda a: (a[0].material_index, a[0].use_smooth)) + if False: + if len(materials) > 1: + if smooth_groups: + sort_func = lambda a: (a[0].material_index, + smooth_groups[a[1]] if a[0].use_smooth else False) + else: + sort_func = lambda a: (a[0].material_index, + a[0].use_smooth) + else: + # no materials + if smooth_groups: + sort_func = lambda a: smooth_groups[a[1] if a[0].use_smooth else False] + else: + sort_func = lambda a: a[0].use_smooth + face_index_pairs.sort(key=sort_func) + del sort_func else: - # no materials - face_index_pairs.sort(key=lambda a: a[0].use_smooth) + face_index_pairs.sort(key=lambda a: (a[0].material_index)) + + + # Set the default mat to no material and no image. contextMat = 0, 0 # Can never be this, so we will label a new material the first chance we get. contextSmooth = None # Will either be true or false, set bad to force initialization switch. @@ -440,13 +460,21 @@ def write_mesh(scene, file, object, mtl_dict): ########################################################### fw('\tFace:%d' % len(face_index_pairs)) for f, f_index in face_index_pairs: + f_image = None f_smooth = f.use_smooth f_mat = min(f.material_index, len(materials) - 1) - if faceuv: + tmp_faceuv = faceuv + if tmp_faceuv: tface = uv_texture[f_index] - f_image = tface.image + #print("mesh_uvloop:" + str(dir(tface.uv))) + if 'image' in dir(uv_texture[f_index]): + f_image = tface.image + else: + # TODO: remove export of UV when no UV needed... + #tmp_faceuv = False + pass # MAKE KEY - if faceuv and f_image: # Object is always true. + if tmp_faceuv and f_image: # Object is always true. key = material_names[f_mat], f_image.name else: key = material_names[f_mat], None # No image, use None instead. @@ -481,10 +509,10 @@ def write_mesh(scene, file, object, mtl_dict): mat_data = mtl_dict[key] = mtl_name, materials[f_mat], f_image mtl_rev_dict[mtl_name] = key # set the use of a material: - fw("\n\t\t%s\n\t\t\t" % mat_data[0]) # can be mat_image or (null) + fw("\n\t\t%s\n\t\t\t" % mat_data[0].replace("palette_", "palette:")) # can be mat_image or (null) contextMat = key f_v = [(vi, me_verts[v_idx]) for vi, v_idx in enumerate(f.vertices)] - if faceuv: + if tmp_faceuv: # export the normals: if f_smooth: # Smoothed, use vertex normals for vi, v in f_v: @@ -546,7 +574,7 @@ def write_mesh(scene, file, object, mtl_dict): " @brief Basic write function. The context and options must be already set. """ def write_file(filepath, - objects, + collection, scene, EXPORT_PATH_MODE='AUTO', EXPORT_BINARY_MODE=False, @@ -592,25 +620,18 @@ def write_file(filepath, print("nb_total_physic: " + str(nb_total_physic)) """ + print("Find Mesh in collection: '" + str(collection.name) + "'") # Get all meshes - for ob_main in objects: + for ob_main in collection.objects: if ob_main.type == 'MESH': write_mesh(scene, file, ob_main, mtl_dict) - elif ob_main.type == 'EMPTY': - for sub_obj in getChildren(ob_main): - print(" child:'" + str(sub_obj.name) + "' type=" + sub_obj.type) - if sub_obj.type == 'MESH': - write_mesh(scene, file, sub_obj, mtl_dict) - elif sub_obj.type == 'EMPTY' \ - and sub_obj.name.lower().startswith("physic"): - print(" child:'" + str(sub_obj.name) + "' type=" + sub_obj.type) - ##################################################################### - ## Save collision shapes (for one all): - ##################################################################### - write_collision_shape(sub_obj, file, sub_obj.scale, 0) - else: - print(" child:'" + str(sub_obj.name) + "' type=" + sub_obj.type + " not parsed ...") - + + print("Find Physics in collection: '" + str(collection.name) + "'") + for col in collection.children: + print(" - name: " + str(col.name) + "/" + str(col.name_full) ) + if col.name.lower().startswith("physic"): + write_collision_shape(col.objects, file, 0) + ##################################################################### ## Now we have all our materials, save them in the material section ##################################################################### @@ -653,14 +674,27 @@ def _write(context, scene.frame_set(frame, subframe=0.0) # get only the object that are selected or all... if EXPORT_SEL_ONLY: - objects = context.selected_objects + collection = bpy.context.collection else: - objects = scene.objects + print("collection auto detect 'root': ") + collection = scene.collection + if collection.name != "root": + for col in collection.children: + if col.name == "root": + collection = col + break + if collection.name != "root": + raise "Can not detect collition 'root'" + + #print("* collection name: " + str(collection.name) + "/" + str(collection.name_full) ) + print("============================================================================================"); + draw_tree(scene.collection, 0, collection); + print("============================================================================================"); full_path = ''.join(context_name) write_file(full_path, - objects, + collection, scene, EXPORT_PATH_MODE, EXPORT_BINARY_MODE, @@ -669,6 +703,24 @@ def _write(context, + +## +## Display all the element in the collection tree (for help debug exporting) +## +def draw_tree(collection, offset, export_collection): + string_offset = "" + for iii in range(offset): + string_offset += "\t" + if export_collection == collection: + print(string_offset + "- collection: '" + str(collection.name) + "' !!!! exported node !!!!") + else: + print(string_offset + "- collection: '" + str(collection.name) + "'") + for col in collection.children: + draw_tree(col, offset+1, export_collection); + if 'objects' in dir(collection): + for obj in collection.objects: + print(string_offset + "\t- objects: '" + str(obj.name) + "' type '" + str(obj.type) + "'") + """ " @brief Save the current element in the file requested. " diff --git a/blender/io_scene_obj/export_obj.py b/blender/io_scene_obj/export_obj.py index 50cec83..f8ea8ec 100644 --- a/blender/io_scene_obj/export_obj.py +++ b/blender/io_scene_obj/export_obj.py @@ -460,9 +460,7 @@ def write_file(filepath, objects, depsgraph, scene, if faceuv: # in case removing some of these dont get defined. uv = f_index = uv_index = uv_key = uv_val = uv_ls = None - uv_face_mapping = [None] * len(face_index_pairs) - uv_dict = {} uv_get = uv_dict.get for f, f_index in face_index_pairs: @@ -471,21 +469,17 @@ def write_file(filepath, objects, depsgraph, scene, uv = uv_layer[l_index].uv # include the vertex index in the key so we don't share UV's between vertices, # allowed by the OBJ spec but can cause issues for other importers, see: T47010. - # this works too, shared UV's for all verts #~ uv_key = veckey2d(uv) uv_key = loops[l_index].vertex_index, veckey2d(uv) - uv_val = uv_get(uv_key) if uv_val is None: uv_val = uv_dict[uv_key] = uv_unique_count fw('vt %.6f %.6f\n' % uv[:]) uv_unique_count += 1 uv_ls.append(uv_val) - del uv_dict, uv, f_index, uv_index, uv_ls, uv_get, uv_key, uv_val # Only need uv_unique_count and uv_face_mapping - subprogress2.step() # NORMAL, Smooth/Non smoothed. diff --git a/samples/hs_err_pid14064.log b/samples/hs_err_pid14064.log new file mode 100644 index 0000000..f92315b --- /dev/null +++ b/samples/hs_err_pid14064.log @@ -0,0 +1,1618 @@ +# +# A fatal error has been detected by the Java Runtime Environment: +# +# SIGSEGV (0xb) at pc=0x00007faf8cf8d687, pid=14064, tid=14109 +# +# JRE version: OpenJDK Runtime Environment (15.0.2+7) (build 15.0.2+7) +# Java VM: OpenJDK 64-Bit Server VM (15.0.2+7, mixed mode, tiered, compressed oops, g1 gc, linux-amd64) +# Problematic frame: +# C [libc.so.6+0x164687] __memmove_avx_unaligned_erms+0x187 +# +# Core dump will be written. Default location: Core dumps may be processed with "/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h" (or dumping to /home/heero/dev/WORKSPACE-game/jatria-soft/ege/samples/core.14064) +# +# If you would like to submit a bug report, please visit: +# https://bugreport.java.com/bugreport/crash.jsp +# The crash happened outside the Java Virtual Machine in native code. +# See problematic frame for where to report the bug. +# + +--------------- S U M M A R Y ------------ + +Command Line: -XX:+ShowCodeDetailsInExceptionMessages -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:41625 -javaagent:/home/heero/.local/application/eclipse.app/eclipse/configuration/org.eclipse.osgi/216/0/.cp/lib/javaagent-shaded.jar -Dfile.encoding=UTF-8 --module-path=/home/heero/dev/WORKSPACE-game/jatria-soft/ege/samples/bin:/home/heero/dev/WORKSPACE-game/jatria-soft/ege/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/ewol/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/io-gami/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/png-encoder/out/eclipse:/home/heero/dev/WORKSPACE-game/jatria-soft/egami/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/etk/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/etk/lib/spotbugs-annotations-4.2.2.jar:/home/heero/dev/WORKSPACE-game/scenarium/scenarium-logger/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/png-decoder/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/esvg/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/exml/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/ejson/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl3-awt-0.1.7.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/pngdecoder.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-assimp.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-assimp-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-glfw.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-glfw-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-jawt.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-opengl.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-stb.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-stb-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-opengl-natives-linux.jar:--enable-preview -Djdk.module.main=sample.atriasoft.ege sample.atriasoft.ege/sample.atriasoft.ege.loxelEngine.MainLoxelEngine + +Host: AMD Ryzen 5 3600 6-Core Processor, 12 cores, 15G, Arch Linux +Time: Sun May 23 18:10:37 2021 CEST elapsed time: 2.546310 seconds (0d 0h 0m 2s) + +--------------- T H R E A D --------------- + +Current thread (0x00007faf8475c1b0): JavaThread "AWT-EventQueue-0" [_thread_in_native, id=14109, stack(0x00007faf0dda0000,0x00007faf0dea1000)] + +Stack: [0x00007faf0dda0000,0x00007faf0dea1000], sp=0x00007faf0de9ea08, free space=1018k +Native frames: (J=compiled Java code, A=aot compiled Java code, j=interpreted, Vv=VM code, C=native code) +C [libc.so.6+0x164687] __memmove_avx_unaligned_erms+0x187 + +Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) +J 2130 org.lwjgl.opengl.GL11C.nglDrawElements(IIIJ)V org.lwjgl.opengl (0 bytes) @ 0x00007faf74759872 [0x00007faf74759820+0x0000000000000052] +J 2133 c1 org.lwjgl.opengl.GL11C.glDrawElements(IIIJ)V org.lwjgl.opengl (8 bytes) @ 0x00007faf6d4b6e14 [0x00007faf6d4b6da0+0x0000000000000074] +J 2067 c1 org.lwjgl.opengl.GL11.glDrawElements(IIIJ)V org.lwjgl.opengl (8 bytes) @ 0x00007faf6d48cd94 [0x00007faf6d48cd20+0x0000000000000074] +J 2129 c1 org.atriasoft.gale.backend3d.OpenGL.drawElements(Lorg/atriasoft/gale/backend3d/OpenGL$RenderMode;I)V org.atriasoft.gale (39 bytes) @ 0x00007faf6d4b5f5c [0x00007faf6d4b5c80+0x00000000000002dc] +J 2174 c1 org.atriasoft.gale.resource.ResourceVirtualArrayObject.render(Lorg/atriasoft/gale/backend3d/OpenGL$RenderMode;)V org.atriasoft.gale (32 bytes) @ 0x00007faf6d4d24bc [0x00007faf6d4d2120+0x000000000000039c] +J 2332 c1 org.atriasoft.ege.components.ComponentStaticMesh.render()V org.atriasoft.ege (16 bytes) @ 0x00007faf6d530f0c [0x00007faf6d530d40+0x00000000000001cc] +j org.atriasoft.ege.components.ComponentRenderTexturedMaterialsStaticMesh.render()V+405 org.atriasoft.ege +j org.atriasoft.ege.engines.EngineRender.render(JLorg/atriasoft/ege/camera/Camera;)V+26 org.atriasoft.ege +j org.atriasoft.ege.Environement.render(JLjava/lang/String;)V+77 org.atriasoft.ege +j sample.atriasoft.ege.loxelEngine.LoxelApplication.onDraw(Lorg/atriasoft/gale/context/GaleContext;)V+94 sample.atriasoft.ege +j org.atriasoft.gale.context.GaleContext.operatingSystemDraw(Z)Z+241 org.atriasoft.gale +j org.atriasoft.gale.context.LWJG_AWT.ContextLWJGLAWT$1.paintGL()V+104 org.atriasoft.gale +j org.lwjgl.opengl.awt.AWTGLCanvas.render()V+21 lwjgl3.awt@0.1.7 +j org.atriasoft.gale.context.LWJG_AWT.ContextLWJGLAWT$2.run()V+25 org.atriasoft.gale +j java.awt.event.InvocationEvent.dispatch()V+47 java.desktop@15.0.2 +j java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+21 java.desktop@15.0.2 +j java.awt.EventQueue$4.run()Ljava/lang/Void;+32 java.desktop@15.0.2 +j java.awt.EventQueue$4.run()Ljava/lang/Object;+1 java.desktop@15.0.2 +J 1173 c1 java.security.AccessController.executePrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/lang/Class;)Ljava/lang/Object; java.base@15.0.2 (65 bytes) @ 0x00007faf6d2f192c [0x00007faf6d2f17c0+0x000000000000016c] +j java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+13 java.base@15.0.2 +j java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;+18 java.base@15.0.2 +j java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+46 java.desktop@15.0.2 +j java.awt.EventDispatchThread.pumpOneEventForFilters(I)V+78 java.desktop@15.0.2 +j java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V+35 java.desktop@15.0.2 +j java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11 java.desktop@15.0.2 +j java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4 java.desktop@15.0.2 +j java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3 java.desktop@15.0.2 +j java.awt.EventDispatchThread.run()V+9 java.desktop@15.0.2 +v ~StubRoutines::call_stub + +siginfo: si_signo: 11 (SIGSEGV), si_code: 2 (SEGV_ACCERR), si_addr: 0x00007faed4ede540 + +Register to memory mapping: + +RAX=0x00007fae8c823c9c points into unknown readable memory: 75 00 59 05 +RBX=0x00007faed4d5c894 points into unknown readable memory: 00 00 20 04 +RCX=0x0000000000000004 is an unknown value +RDX=0x0000000000001410 is an unknown value +RSP=0x00007faf0de9ea08 is pointing into the stack for thread: 0x00007faf8475c1b0 +RBP=0x00007faed41b5a80 points into unknown readable memory: 0x0000000100000000 | 00 00 00 00 01 00 00 00 +RSI=0x00007faed4edd150 points into unknown readable memory: 0xc1a00000c1a00000 | 00 00 a0 c1 00 00 a0 c1 +RDI=0x00007fae8c823c9c points into unknown readable memory: 75 00 59 05 +R8 =0x0000000000100000 is an unknown value +R9 =0x00007faf0de9ea80 is pointing into the stack for thread: 0x00007faf8475c1b0 +R10=0x00007fae00000001 is an unknown value +R11=0x0000000000001410 is an unknown value +R12=0x00007faed4d5c994 points into unknown readable memory: 0c 00 00 00 +R13=0x00007faed41b5a80 points into unknown readable memory: 0x0000000100000000 | 00 00 00 00 01 00 00 00 +R14=0x0 is NULL +R15=0x0000000000001410 is an unknown value + + +Registers: +RAX=0x00007fae8c823c9c, RBX=0x00007faed4d5c894, RCX=0x0000000000000004, RDX=0x0000000000001410 +RSP=0x00007faf0de9ea08, RBP=0x00007faed41b5a80, RSI=0x00007faed4edd150, RDI=0x00007fae8c823c9c +R8 =0x0000000000100000, R9 =0x00007faf0de9ea80, R10=0x00007fae00000001, R11=0x0000000000001410 +R12=0x00007faed4d5c994, R13=0x00007faed41b5a80, R14=0x0000000000000000, R15=0x0000000000001410 +RIP=0x00007faf8cf8d687, EFLAGS=0x0000000000010283, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 + TRAPNO=0x000000000000000e + +Top of Stack: (sp=0x00007faf0de9ea08) +0x00007faf0de9ea08: 00007faed2deadab 00007faed41b4110 +0x00007faf0de9ea18: 00007faed427da40 00007faed4d5c8ac +0x00007faf0de9ea28: 00000001d2deabbb 00007fae000001ac +0x00007faf0de9ea38: 00007faed4edd150 00007fae00000000 + +Instructions: (pc=0x00007faf8cf8d687) +0x00007faf8cf8d587: 6f 06 c5 fa 6f 4c 16 f0 c5 fa 7f 07 c5 fa 7f 4c +0x00007faf8cf8d597: 17 f0 c3 48 8b 4c 16 f8 48 8b 36 48 89 4c 17 f8 +0x00007faf8cf8d5a7: 48 89 37 c3 8b 4c 16 fc 8b 36 89 4c 17 fc 89 37 +0x00007faf8cf8d5b7: c3 0f b7 4c 16 fe 0f b7 36 66 89 4c 17 fe 66 89 +0x00007faf8cf8d5c7: 37 c3 48 3b 15 90 cb 05 00 0f 87 59 ff ff ff 48 +0x00007faf8cf8d5d7: 81 fa 00 01 00 00 0f 87 91 00 00 00 48 81 fa 80 +0x00007faf8cf8d5e7: 00 00 00 72 5a c5 fe 6f 06 c5 fe 6f 4e 20 c5 fe +0x00007faf8cf8d5f7: 6f 56 40 c5 fe 6f 5e 60 c5 fe 6f 64 16 e0 c5 fe +0x00007faf8cf8d607: 6f 6c 16 c0 c5 fe 6f 74 16 a0 c5 fe 6f 7c 16 80 +0x00007faf8cf8d617: c5 fe 7f 07 c5 fe 7f 4f 20 c5 fe 7f 57 40 c5 fe +0x00007faf8cf8d627: 7f 5f 60 c5 fe 7f 64 17 e0 c5 fe 7f 6c 17 c0 c5 +0x00007faf8cf8d637: fe 7f 74 17 a0 c5 fe 7f 7c 17 80 c5 f8 77 c3 c5 +0x00007faf8cf8d647: fe 6f 06 c5 fe 6f 4e 20 c5 fe 6f 54 16 e0 c5 fe +0x00007faf8cf8d657: 6f 5c 16 c0 c5 fe 7f 07 c5 fe 7f 4f 20 c5 fe 7f +0x00007faf8cf8d667: 54 17 e0 c5 fe 7f 5c 17 c0 c5 f8 77 c3 48 39 f7 +0x00007faf8cf8d677: 0f 87 ab 00 00 00 0f 84 e5 fe ff ff c5 fe 6f 26 +0x00007faf8cf8d687: c5 fe 6f 6c 16 e0 c5 fe 6f 74 16 c0 c5 fe 6f 7c +0x00007faf8cf8d697: 16 a0 c5 7e 6f 44 16 80 49 89 fb 48 8d 4c 17 e0 +0x00007faf8cf8d6a7: 49 89 f8 49 83 e0 1f 49 83 e8 20 4c 29 c6 4c 29 +0x00007faf8cf8d6b7: c7 4c 01 c2 48 3b 15 16 07 06 00 0f 87 07 01 00 +0x00007faf8cf8d6c7: 00 c5 fe 6f 06 c5 fe 6f 4e 20 c5 fe 6f 56 40 c5 +0x00007faf8cf8d6d7: fe 6f 5e 60 48 81 c6 80 00 00 00 48 81 ea 80 00 +0x00007faf8cf8d6e7: 00 00 c5 fd 7f 07 c5 fd 7f 4f 20 c5 fd 7f 57 40 +0x00007faf8cf8d6f7: c5 fd 7f 5f 60 48 81 c7 80 00 00 00 48 81 fa 80 +0x00007faf8cf8d707: 00 00 00 77 bc c5 fe 7f 29 c5 fe 7f 71 e0 c5 fe +0x00007faf8cf8d717: 7f 79 c0 c5 7e 7f 41 a0 c4 c1 7e 7f 23 c5 f8 77 +0x00007faf8cf8d727: c3 c5 fe 6f 26 c5 fe 6f 6e 20 c5 fe 6f 76 40 c5 +0x00007faf8cf8d737: fe 6f 7e 60 c5 7e 6f 44 16 e0 4c 8d 5c 17 e0 48 +0x00007faf8cf8d747: 8d 4c 16 e0 4d 89 d9 4d 89 d8 49 83 e0 1f 4c 29 +0x00007faf8cf8d757: c1 4d 29 c1 4c 29 c2 48 3b 15 73 06 06 00 0f 87 +0x00007faf8cf8d767: f0 00 00 00 c5 fe 6f 01 c5 fe 6f 49 e0 c5 fe 6f +0x00007faf8cf8d777: 51 c0 c5 fe 6f 59 a0 48 81 e9 80 00 00 00 48 81 + + +Stack slot to memory mapping: +stack at sp + 0 slots: 0x00007faed2deadab: in /usr/lib/dri/radeonsi_dri.so at 0x00007faed279c000 +stack at sp + 1 slots: 0x00007faed41b4110 points into unknown readable memory: 0x00007faed4184670 | 70 46 18 d4 ae 7f 00 00 +stack at sp + 2 slots: 0x00007faed427da40 points into unknown readable memory: 0x00007faed41b7440 | 40 74 1b d4 ae 7f 00 00 +stack at sp + 3 slots: 0x00007faed4d5c8ac points into unknown readable memory: 00 00 00 00 +stack at sp + 4 slots: 0x00000001d2deabbb is an unknown value +stack at sp + 5 slots: 0x00007fae000001ac is an unknown value +stack at sp + 6 slots: 0x00007faed4edd150 points into unknown readable memory: 0xc1a00000c1a00000 | 00 00 a0 c1 00 00 a0 c1 +stack at sp + 7 slots: 0x00007fae00000000 is an unknown value + + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x00007faf202e7d90, length=18, elements={ +0x00007faf8420c7a0, 0x00007faf84214140, 0x00007faf8422b030, 0x00007faf8422c740, +0x00007faf8422e3a0, 0x00007faf8422fbd0, 0x00007faf84231280, 0x00007faf8430ba00, +0x00007faf8443c5e0, 0x00007faf8443fe60, 0x00007faf18001100, 0x00007faf844c5790, +0x00007faf8466ff10, 0x00007faf845b9080, 0x00007faf8477a080, 0x00007faf8475c1b0, +0x00007faf84762290, 0x00007faf84019760 +} + +Java Threads: ( => current thread ) + 0x00007faf8420c7a0 JavaThread "Reference Handler" daemon [_thread_blocked, id=14078, stack(0x00007faf880ac000,0x00007faf881ad000)] + 0x00007faf84214140 JavaThread "Finalizer" daemon [_thread_blocked, id=14079, stack(0x00007faf64567000,0x00007faf64668000)] + 0x00007faf8422b030 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=14080, stack(0x00007faf64130000,0x00007faf64231000)] + 0x00007faf8422c740 JavaThread "Service Thread" daemon [_thread_blocked, id=14081, stack(0x00007faf6402f000,0x00007faf64130000)] + 0x00007faf8422e3a0 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=14082, stack(0x00007faf55eff000,0x00007faf56000000)] + 0x00007faf8422fbd0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=14083, stack(0x00007faf55dfe000,0x00007faf55eff000)] + 0x00007faf84231280 JavaThread "Sweeper thread" daemon [_thread_blocked, id=14084, stack(0x00007faf55cfd000,0x00007faf55dfe000)] + 0x00007faf8430ba00 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=14085, stack(0x00007faf55bfc000,0x00007faf55cfd000)] + 0x00007faf8443c5e0 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=14089, stack(0x00007faf558f9000,0x00007faf559fa000)] + 0x00007faf8443fe60 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=14092, stack(0x00007faf557f8000,0x00007faf558f9000)] + 0x00007faf18001100 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=14093, stack(0x00007faf556f7000,0x00007faf557f8000)] + 0x00007faf844c5790 JavaThread "Notification Thread" daemon [_thread_blocked, id=14096, stack(0x00007faf553f3000,0x00007faf554f4000)] + 0x00007faf8466ff10 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=14101, stack(0x00007faf542ab000,0x00007faf543ac000)] + 0x00007faf845b9080 JavaThread "AWT-XAWT" daemon [_thread_blocked, id=14102, stack(0x00007faf541aa000,0x00007faf542ab000)] + 0x00007faf8477a080 JavaThread "AWT-Shutdown" [_thread_blocked, id=14108, stack(0x00007faf0dea1000,0x00007faf0dfa2000)] +=>0x00007faf8475c1b0 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=14109, stack(0x00007faf0dda0000,0x00007faf0dea1000)] + 0x00007faf84762290 JavaThread "Galethread 2" [_thread_blocked, id=14110, stack(0x00007faf0dc9f000,0x00007faf0dda0000)] + 0x00007faf84019760 JavaThread "DestroyJavaVM" [_thread_blocked, id=14071, stack(0x00007faf8b762000,0x00007faf8b863000)] + +Other Threads: + 0x00007faf841f8df0 VMThread "VM Thread" [stack: 0x00007faf881af000,0x00007faf882af000] [id=14077] + 0x00007faf844c7560 WatcherThread [stack: 0x00007faf552f3000,0x00007faf553f3000] [id=14097] + 0x00007faf8406a6b0 GCTaskThread "GC Thread#0" [stack: 0x00007faf891e0000,0x00007faf892e0000] [id=14072] + 0x00007faf4c0010f0 GCTaskThread "GC Thread#1" [stack: 0x00007faf540aa000,0x00007faf541aa000] [id=14103] + 0x00007faf4c001e90 GCTaskThread "GC Thread#2" [stack: 0x00007faf0e6fd000,0x00007faf0e7fd000] [id=14104] + 0x00007faf4c002c60 GCTaskThread "GC Thread#3" [stack: 0x00007faf0e5fb000,0x00007faf0e6fb000] [id=14105] + 0x00007faf4c003a30 GCTaskThread "GC Thread#4" [stack: 0x00007faf0e4f9000,0x00007faf0e5f9000] [id=14106] + 0x00007faf4c004800 GCTaskThread "GC Thread#5" [stack: 0x00007faf0e3f7000,0x00007faf0e4f7000] [id=14107] + 0x00007faf4c0088d0 GCTaskThread "GC Thread#6" [stack: 0x00007faec80f6000,0x00007faec81f6000] [id=14130] + 0x00007faf4c009280 GCTaskThread "GC Thread#7" [stack: 0x00007faeb00f8000,0x00007faeb01f8000] [id=14131] + 0x00007faf8407ba90 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007faf890de000,0x00007faf891de000] [id=14073] + 0x00007faf8407cd20 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007faf88fdc000,0x00007faf890dc000] [id=14074] + 0x00007faf58000e80 ConcurrentGCThread "G1 Conc#1" [stack: 0x00007fae8defc000,0x00007fae8dffc000] [id=14132] + 0x00007faf58001c60 ConcurrentGCThread "G1 Conc#2" [stack: 0x00007fae8ddfa000,0x00007fae8defa000] [id=14133] + 0x00007faf8413c820 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007faf884d0000,0x00007faf885d0000] [id=14075] + 0x00007faf8413da30 ConcurrentGCThread "G1 Young RemSet Sampling" [stack: 0x00007faf883ce000,0x00007faf884ce000] [id=14076] + +Threads with active compile tasks: + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap address: 0x0000000705a00000, size: 4006 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 +CDS disabled. +Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, size: 1073741824 +Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000 + +GC Precious Log: + CPUs: 12 total, 12 available + Memory: 16017M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (Zero based) + Heap Region Size: 2M + Heap Min Capacity: 8M + Heap Initial Capacity: 252M + Heap Max Capacity: 4006M + Pre-touch: Disabled + Parallel Workers: 10 + Concurrent Workers: 3 + Concurrent Refinement Workers: 10 + Periodic GC: Disabled + +Heap: + garbage-first heap total 24576K, used 14336K [0x0000000705a00000, 0x0000000800000000) + region size 2048K, 7 young (14336K), 2 survivors (4096K) + Metaspace used 24637K, capacity 24916K, committed 25392K, reserved 1073152K + class space used 2047K, capacity 2162K, committed 2176K, reserved 1048576K + +Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) +| 0|0x0000000705a00000, 0x0000000705c00000, 0x0000000705c00000|100%|HS| |TAMS 0x0000000705a00000, 0x0000000705a00000| Complete +| 1|0x0000000705c00000, 0x0000000705c00000, 0x0000000705e00000| 0%| F| |TAMS 0x0000000705c00000, 0x0000000705c00000| Untracked +| 2|0x0000000705e00000, 0x0000000705e00000, 0x0000000706000000| 0%| F| |TAMS 0x0000000705e00000, 0x0000000705e00000| Untracked +| 3|0x0000000706000000, 0x0000000706000000, 0x0000000706200000| 0%| F| |TAMS 0x0000000706000000, 0x0000000706000000| Untracked +| 4|0x0000000706200000, 0x0000000706200000, 0x0000000706400000| 0%| F| |TAMS 0x0000000706200000, 0x0000000706200000| Untracked +| 5|0x0000000706400000, 0x00000007065ee260, 0x0000000706600000| 96%| E| |TAMS 0x0000000706400000, 0x0000000706400000| Complete +| 6|0x0000000706600000, 0x0000000706800000, 0x0000000706800000|100%| E|CS|TAMS 0x0000000706600000, 0x0000000706600000| Complete +| 7|0x0000000706800000, 0x0000000706a00000, 0x0000000706a00000|100%| S|CS|TAMS 0x0000000706800000, 0x0000000706800000| Complete +| 8|0x0000000706a00000, 0x0000000706c00000, 0x0000000706c00000|100%| S|CS|TAMS 0x0000000706a00000, 0x0000000706a00000| Complete +| 109|0x0000000713400000, 0x0000000713600000, 0x0000000713600000|100%| E|CS|TAMS 0x0000000713400000, 0x0000000713400000| Complete +| 110|0x0000000713600000, 0x0000000713800000, 0x0000000713800000|100%| E|CS|TAMS 0x0000000713600000, 0x0000000713600000| Complete +| 125|0x0000000715400000, 0x0000000715600000, 0x0000000715600000|100%| E|CS|TAMS 0x0000000715400000, 0x0000000715400000| Complete + +Card table byte_map: [0x00007faf89b35000,0x00007faf8a308000] _byte_map_base: 0x00007faf86308000 + +Marking Bits (Prev, Next): (CMBitMap*) 0x00007faf8406b490, (CMBitMap*) 0x00007faf8406b450 + Prev Bits: [0x00007faf64e6a000, 0x00007faf68d02000) + Next Bits: [0x00007faf68d02000, 0x00007faf6cb9a000) + +Polling page: 0x00007faf8d014000 + +Metaspace: + +Usage: + Non-class: 22.22 MB capacity, 22.06 MB (>99%) used, 129.16 KB ( <1%) free+waste, 35.19 KB ( <1%) overhead. + Class: 2.11 MB capacity, 2.00 MB ( 95%) used, 102.24 KB ( 5%) free+waste, 11.81 KB ( <1%) overhead. + Both: 24.33 MB capacity, 24.06 MB ( 99%) used, 231.41 KB ( <1%) free+waste, 47.00 KB ( <1%) overhead. + +Virtual space: + Non-class space: 24.00 MB reserved, 22.67 MB ( 94%) committed + Class space: 1.00 GB reserved, 2.12 MB ( <1%) committed + Both: 1.02 GB reserved, 24.80 MB ( 2%) committed + +Chunk freelists: + Non-Class: 286.00 KB + Class: 14.00 KB + Both: 300.00 KB + +MaxMetaspaceSize: 17179869184.00 GB +CompressedClassSpaceSize: 1.00 GB + +CodeHeap 'non-profiled nmethods': size=120028Kb used=1062Kb max_used=1062Kb free=118965Kb + bounds [0x00007faf74663000, 0x00007faf748d3000, 0x00007faf7bb9a000] +CodeHeap 'profiled nmethods': size=120028Kb used=4215Kb max_used=4215Kb free=115812Kb + bounds [0x00007faf6d12c000, 0x00007faf6d54c000, 0x00007faf74663000] +CodeHeap 'non-nmethods': size=5704Kb used=1793Kb max_used=1840Kb free=3910Kb + bounds [0x00007faf6cb9a000, 0x00007faf6ce0a000, 0x00007faf6d12c000] + total_blobs=3516 nmethods=2359 adapters=1070 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 2.473 Thread 0x00007faf8422fbd0 2351 3 sun.awt.X11.XMotionEvent::get_y_root (20 bytes) +Event: 2.474 Thread 0x00007faf8422fbd0 nmethod 2351 0x00007faf6d53aa10 code [0x00007faf6d53abe0, 0x00007faf6d53af40] +Event: 2.506 Thread 0x00007faf8422fbd0 2352 3 java.text.Format:: (5 bytes) +Event: 2.506 Thread 0x00007faf8422fbd0 nmethod 2352 0x00007faf6d53b110 code [0x00007faf6d53b2a0, 0x00007faf6d53b3f0] +Event: 2.506 Thread 0x00007faf8422fbd0 2353 3 sun.util.locale.provider.DecimalFormatSymbolsProviderImpl::getInstance (21 bytes) +Event: 2.506 Thread 0x00007faf8422fbd0 nmethod 2353 0x00007faf6d53b490 code [0x00007faf6d53b660, 0x00007faf6d53b9f0] +Event: 2.506 Thread 0x00007faf8422fbd0 2354 3 java.text.DecimalFormatSymbols:: (15 bytes) +Event: 2.506 Thread 0x00007faf8422fbd0 nmethod 2354 0x00007faf6d53bb90 code [0x00007faf6d53bd40, 0x00007faf6d53bee0] +Event: 2.506 Thread 0x00007faf8422fbd0 2355 3 java.text.DecimalFormatSymbols::initialize (330 bytes) +Event: 2.512 Thread 0x00007faf8422fbd0 nmethod 2355 0x00007faf6d53bf90 code [0x00007faf6d53c740, 0x00007faf6d540ee0] +Event: 2.512 Thread 0x00007faf8422fbd0 2356 3 sun.util.locale.provider.CalendarDataUtility::findRegionOverride (108 bytes) +Event: 2.514 Thread 0x00007faf8422fbd0 nmethod 2356 0x00007faf6d542810 code [0x00007faf6d542c80, 0x00007faf6d544a30] +Event: 2.514 Thread 0x00007faf8422fbd0 2357 3 sun.util.locale.provider.JRELocaleProviderAdapter::getLocaleResources (51 bytes) +Event: 2.514 Thread 0x00007faf8422fbd0 nmethod 2357 0x00007faf6d545590 code [0x00007faf6d545780, 0x00007faf6d545d40] +Event: 2.514 Thread 0x00007faf8422fbd0 2358 3 java.text.DecimalFormat::checkAndSetFastPathStatus (156 bytes) +Event: 2.514 Thread 0x00007faf8422fbd0 nmethod 2358 0x00007faf6d545f90 code [0x00007faf6d546140, 0x00007faf6d5466e0] +Event: 2.514 Thread 0x00007faf8422fbd0 2359 3 java.text.DecimalFormat::resetFastPathData (433 bytes) +Event: 2.517 Thread 0x00007faf8422fbd0 nmethod 2359 0x00007faf6d546790 code [0x00007faf6d546c20, 0x00007faf6d548fc0] +Event: 2.517 Thread 0x00007faf8422fbd0 2360 1 org.atriasoft.ephysics.body.RigidBody::getAngularVelocity (5 bytes) +Event: 2.517 Thread 0x00007faf8422fbd0 nmethod 2360 0x00007faf7476c690 code [0x00007faf7476c820, 0x00007faf7476c8d0] + +GC Heap History (6 events): +Event: 0.439 GC heap before +{Heap before GC invocations=0 (full 0): + garbage-first heap total 258048K, used 22528K [0x0000000705a00000, 0x0000000800000000) + region size 2048K, 11 young (22528K), 0 survivors (0K) + Metaspace used 15587K, capacity 15774K, committed 15872K, reserved 1062912K + class space used 1457K, capacity 1521K, committed 1536K, reserved 1048576K +} +Event: 0.442 GC heap after +{Heap after GC invocations=1 (full 0): + garbage-first heap total 258048K, used 2690K [0x0000000705a00000, 0x0000000800000000) + region size 2048K, 2 young (4096K), 2 survivors (4096K) + Metaspace used 15587K, capacity 15774K, committed 15872K, reserved 1062912K + class space used 1457K, capacity 1521K, committed 1536K, reserved 1048576K +} +Event: 0.642 GC heap before +{Heap before GC invocations=1 (full 0): + garbage-first heap total 258048K, used 25218K [0x0000000705a00000, 0x0000000800000000) + region size 2048K, 15 young (30720K), 2 survivors (4096K) + Metaspace used 20708K, capacity 20892K, committed 21296K, reserved 1069056K + class space used 1752K, capacity 1824K, committed 1920K, reserved 1048576K +} +Event: 0.645 GC heap after +{Heap after GC invocations=2 (full 0): + garbage-first heap total 258048K, used 3652K [0x0000000705a00000, 0x0000000800000000) + region size 2048K, 2 young (4096K), 2 survivors (4096K) + Metaspace used 20708K, capacity 20892K, committed 21296K, reserved 1069056K + class space used 1752K, capacity 1824K, committed 1920K, reserved 1048576K +} +Event: 0.813 GC heap before +{Heap before GC invocations=3 (full 0): + garbage-first heap total 20480K, used 20036K [0x0000000705a00000, 0x0000000800000000) + region size 2048K, 10 young (20480K), 2 survivors (4096K) + Metaspace used 23554K, capacity 23790K, committed 24368K, reserved 1071104K + class space used 1981K, capacity 2064K, committed 2176K, reserved 1048576K +} +Event: 0.817 GC heap after +{Heap after GC invocations=4 (full 0): + garbage-first heap total 24576K, used 4096K [0x0000000705a00000, 0x0000000800000000) + region size 2048K, 2 young (4096K), 2 survivors (4096K) + Metaspace used 23554K, capacity 23790K, committed 24368K, reserved 1071104K + class space used 1981K, capacity 2064K, committed 2176K, reserved 1048576K +} + +Deoptimization events (20 events): +Event: 0.873 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf6d41929c sp=0x00007faf0de9ecd0 +Event: 0.873 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe7f2b sp=0x00007faf0de9e1a8 mode 1 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf6d3eb71c sp=0x00007faf0de9eaa0 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe7f2b sp=0x00007faf0de9df78 mode 1 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf6d1950a4 sp=0x00007faf0de9eb10 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe7f2b sp=0x00007faf0de9dfe8 mode 1 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf6d187284 sp=0x00007faf0de9ebe0 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe7f2b sp=0x00007faf0de9e0c0 mode 1 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf6d17d154 sp=0x00007faf0de9ec60 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe7f2b sp=0x00007faf0de9e130 mode 1 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf6d41929c sp=0x00007faf0de9ecd0 +Event: 0.874 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe7f2b sp=0x00007faf0de9e1a8 mode 1 +Event: 1.016 Thread 0x00007faf8475c1b0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007faf7466a95c relative=0x000000000000005c +Event: 1.016 Thread 0x00007faf8475c1b0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007faf7466a95c method=java.lang.String.isLatin1()Z @ 10 c2 +Event: 1.016 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf7466a95c sp=0x00007faf0de9ea50 +Event: 1.016 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe8125 sp=0x00007faf0de9ea10 mode 2 +Event: 1.017 Thread 0x00007faf8475c1b0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007faf746725c4 relative=0x0000000000000044 +Event: 1.017 Thread 0x00007faf8475c1b0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007faf746725c4 method=java.lang.CharacterData.of(I)Ljava/lang/CharacterData; @ 4 c2 +Event: 1.017 Thread 0x00007faf8475c1b0 DEOPT PACKING pc=0x00007faf746725c4 sp=0x00007faf0de9e580 +Event: 1.017 Thread 0x00007faf8475c1b0 DEOPT UNPACKING pc=0x00007faf6cbe8125 sp=0x00007faf0de9e540 mode 2 + +Classes unloaded (0 events): +No events + +Classes redefined (0 events): +No events + +Internal exceptions (20 events): +Event: 0.698 Thread 0x00007faf8475c1b0 Exception (0x00000007065507b0) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.698 Thread 0x00007faf8475c1b0 Exception (0x0000000706551178) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.698 Thread 0x00007faf8475c1b0 Exception (0x0000000706551da8) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.733 Thread 0x00007faf8475c1b0 Exception (0x0000000706575fb8) +thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 781] +Event: 0.734 Thread 0x00007faf84762290 Exception (0x0000000706315a98) +thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 781] +Event: 0.756 Thread 0x00007faf8475c1b0 Exception (0x00000007065a1868) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.767 Thread 0x00007faf8475c1b0 Exception (0x0000000705f1af00) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.779 Thread 0x00007faf84762290 Exception (0x0000000705ca3c30) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.801 Thread 0x00007faf84762290 Exception (0x0000000705aacaf8) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.806 Thread 0x00007faf8475c1b0 Exception (0x0000000705d50e20) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.807 Thread 0x00007faf8475c1b0 Exception (0x0000000705d69758) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.811 Thread 0x00007faf84762290 Exception (0x0000000705af49d8) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.823 Thread 0x00007faf84762290 Exception (0x000000071546f5d8) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.831 Thread 0x00007faf84762290 Exception (0x00000007154c83f0) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.834 Thread 0x00007faf84762290 Exception (0x00000007154ffbb8) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.837 Thread 0x00007faf84762290 Exception (0x000000071553a3a0) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.855 Thread 0x00007faf8475c1b0 Exception (0x00000007154249b0) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.856 Thread 0x00007faf8475c1b0 Exception (0x000000071369b248) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.873 Thread 0x00007faf8475c1b0 Exception (0x00000007137beb90) +thrown [src/hotspot/share/prims/jni.cpp, line 578] +Event: 0.874 Thread 0x00007faf8475c1b0 Exception (0x00000007137d8150) +thrown [src/hotspot/share/prims/jni.cpp, line 578] + +Events (20 events): +Event: 1.089 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 1.173 Thread 0x00007faf340fcbc0 Thread exited: 0x00007faf340fcbc0 +Event: 1.178 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 1.372 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 1.372 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 1.572 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 1.573 Loaded shared library /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +Event: 1.677 loading class jdk/internal/access/foreign/MemorySegmentProxy +Event: 1.677 loading class jdk/internal/access/foreign/MemorySegmentProxy done +Event: 1.677 loading class sun/awt/X11/XMotionEvent +Event: 1.678 loading class sun/awt/X11/XMotionEvent done +Event: 1.922 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 1.922 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 2.017 Executing VM operation: HandshakeAllThreads +Event: 2.017 Executing VM operation: HandshakeAllThreads done +Event: 2.055 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 2.089 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 2.089 Loaded shared library /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +Event: 2.456 Loaded shared library /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +Event: 2.456 Loaded shared library /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so + + +Dynamic libraries: +705a00000-706c00000 rw-p 00000000 00:00 0 +706c00000-713400000 ---p 00000000 00:00 0 +713400000-713800000 rw-p 00000000 00:00 0 +713800000-715400000 ---p 00000000 00:00 0 +715400000-715600000 rw-p 00000000 00:00 0 +715600000-800000000 ---p 00000000 00:00 0 +800000000-800220000 rw-p 00000000 00:00 0 +800220000-840000000 ---p 00000000 00:00 0 +558bcf7a6000-558bcf7a7000 r--p 00000000 103:03 3408574 /usr/lib/jvm/java-15-openjdk/bin/java +558bcf7a7000-558bcf7a8000 r-xp 00001000 103:03 3408574 /usr/lib/jvm/java-15-openjdk/bin/java +558bcf7a8000-558bcf7a9000 r--p 00002000 103:03 3408574 /usr/lib/jvm/java-15-openjdk/bin/java +558bcf7a9000-558bcf7aa000 r--p 00002000 103:03 3408574 /usr/lib/jvm/java-15-openjdk/bin/java +558bcf7aa000-558bcf7ab000 rw-p 00003000 103:03 3408574 /usr/lib/jvm/java-15-openjdk/bin/java +558bcf988000-558bcf9a9000 rw-p 00000000 00:00 0 [heap] +7fae60000000-7fae60021000 rw-p 00000000 00:00 0 +7fae60021000-7fae64000000 ---p 00000000 00:00 0 +7fae64000000-7fae64021000 rw-p 00000000 00:00 0 +7fae64021000-7fae68000000 ---p 00000000 00:00 0 +7fae68000000-7fae68021000 rw-p 00000000 00:00 0 +7fae68021000-7fae6c000000 ---p 00000000 00:00 0 +7fae6c000000-7fae6c021000 rw-p 00000000 00:00 0 +7fae6c021000-7fae70000000 ---p 00000000 00:00 0 +7fae70000000-7fae70021000 rw-p 00000000 00:00 0 +7fae70021000-7fae74000000 ---p 00000000 00:00 0 +7fae74000000-7fae74021000 rw-p 00000000 00:00 0 +7fae74021000-7fae78000000 ---p 00000000 00:00 0 +7fae78000000-7fae78021000 rw-p 00000000 00:00 0 +7fae78021000-7fae7c000000 ---p 00000000 00:00 0 +7fae7c000000-7fae7c021000 rw-p 00000000 00:00 0 +7fae7c021000-7fae80000000 ---p 00000000 00:00 0 +7fae80000000-7fae80232000 rw-p 00000000 00:00 0 +7fae80232000-7fae84000000 ---p 00000000 00:00 0 +7fae877ff000-7fae87800000 ---p 00000000 00:00 0 +7fae87800000-7fae88000000 rw-p 00000000 00:00 0 +7fae88000000-7fae88071000 rw-p 00000000 00:00 0 +7fae88071000-7fae8c000000 ---p 00000000 00:00 0 +7fae8c2cc000-7fae8c3cc000 rw-s 1213c4000 00:05 577 /dev/dri/card0 +7fae8c3cc000-7fae8c48c000 rw-p 00000000 00:00 0 +7fae8c48c000-7fae8c5cc000 ---p 00000000 00:00 0 +7fae8c5cc000-7fae8c7cc000 rw-s 117d81000 00:05 577 /dev/dri/card0 +7fae8c7cc000-7fae8c8cc000 rw-s 1234d1000 00:05 577 /dev/dri/card0 +7fae8c8cc000-7fae8cacc000 rw-p 00000000 00:00 0 +7fae8cacf000-7fae8cad4000 r--p 00000000 103:03 537447 /usr/lib/libgpg-error.so.0.32.0 +7fae8cad4000-7fae8cae9000 r-xp 00005000 103:03 537447 /usr/lib/libgpg-error.so.0.32.0 +7fae8cae9000-7fae8caf3000 r--p 0001a000 103:03 537447 /usr/lib/libgpg-error.so.0.32.0 +7fae8caf3000-7fae8caf4000 ---p 00024000 103:03 537447 /usr/lib/libgpg-error.so.0.32.0 +7fae8caf4000-7fae8caf5000 r--p 00024000 103:03 537447 /usr/lib/libgpg-error.so.0.32.0 +7fae8caf5000-7fae8caf6000 rw-p 00025000 103:03 537447 /usr/lib/libgpg-error.so.0.32.0 +7fae8caf6000-7fae8cb05000 r--p 00000000 103:03 537475 /usr/lib/libgcrypt.so.20.3.2 +7fae8cb05000-7fae8cbdc000 r-xp 0000f000 103:03 537475 /usr/lib/libgcrypt.so.20.3.2 +7fae8cbdc000-7fae8cc1d000 r--p 000e6000 103:03 537475 /usr/lib/libgcrypt.so.20.3.2 +7fae8cc1d000-7fae8cc1e000 ---p 00127000 103:03 537475 /usr/lib/libgcrypt.so.20.3.2 +7fae8cc1e000-7fae8cc21000 r--p 00127000 103:03 537475 /usr/lib/libgcrypt.so.20.3.2 +7fae8cc21000-7fae8cc27000 rw-p 0012a000 103:03 537475 /usr/lib/libgcrypt.so.20.3.2 +7fae8cc27000-7fae8cc28000 rw-p 00000000 00:00 0 +7fae8cc28000-7fae8cc2b000 r--p 00000000 103:03 537489 /usr/lib/liblz4.so.1.9.3 +7fae8cc2b000-7fae8cc46000 r-xp 00003000 103:03 537489 /usr/lib/liblz4.so.1.9.3 +7fae8cc46000-7fae8cc49000 r--p 0001e000 103:03 537489 /usr/lib/liblz4.so.1.9.3 +7fae8cc49000-7fae8cc4a000 r--p 00020000 103:03 537489 /usr/lib/liblz4.so.1.9.3 +7fae8cc4a000-7fae8cc4b000 rw-p 00021000 103:03 537489 /usr/lib/liblz4.so.1.9.3 +7fae8cc4b000-7fae8cc5e000 r--p 00000000 103:03 574621 /usr/lib/libsystemd.so.0.31.0 +7fae8cc5e000-7fae8ccd7000 r-xp 00013000 103:03 574621 /usr/lib/libsystemd.so.0.31.0 +7fae8ccd7000-7fae8ccfe000 r--p 0008c000 103:03 574621 /usr/lib/libsystemd.so.0.31.0 +7fae8ccfe000-7fae8cd02000 r--p 000b2000 103:03 574621 /usr/lib/libsystemd.so.0.31.0 +7fae8cd02000-7fae8cd03000 rw-p 000b6000 103:03 574621 /usr/lib/libsystemd.so.0.31.0 +7fae8cd03000-7fae8cd04000 rw-p 00000000 00:00 0 +7fae8cd04000-7fae8cd15000 r--p 00000000 103:03 557128 /usr/lib/libatspi.so.0.0.1 +7fae8cd15000-7fae8cd2c000 r-xp 00011000 103:03 557128 /usr/lib/libatspi.so.0.0.1 +7fae8cd2c000-7fae8cd3a000 r--p 00028000 103:03 557128 /usr/lib/libatspi.so.0.0.1 +7fae8cd3a000-7fae8cd3e000 r--p 00035000 103:03 557128 /usr/lib/libatspi.so.0.0.1 +7fae8cd3e000-7fae8cd3f000 rw-p 00039000 103:03 557128 /usr/lib/libatspi.so.0.0.1 +7fae8cd3f000-7fae8cd4d000 r--p 00000000 103:03 538366 /usr/lib/libdbus-1.so.3.19.13 +7fae8cd4d000-7fae8cd7c000 r-xp 0000e000 103:03 538366 /usr/lib/libdbus-1.so.3.19.13 +7fae8cd7c000-7fae8cd91000 r--p 0003d000 103:03 538366 /usr/lib/libdbus-1.so.3.19.13 +7fae8cd91000-7fae8cd93000 r--p 00051000 103:03 538366 /usr/lib/libdbus-1.so.3.19.13 +7fae8cd93000-7fae8cd94000 rw-p 00053000 103:03 538366 /usr/lib/libdbus-1.so.3.19.13 +7fae8cd94000-7fae8cd9e000 r--p 00000000 103:03 554497 /usr/lib/libtiff.so.5.6.0 +7fae8cd9e000-7fae8cdef000 r-xp 0000a000 103:03 554497 /usr/lib/libtiff.so.5.6.0 +7fae8cdef000-7fae8ce1f000 r--p 0005b000 103:03 554497 /usr/lib/libtiff.so.5.6.0 +7fae8ce1f000-7fae8ce20000 ---p 0008b000 103:03 554497 /usr/lib/libtiff.so.5.6.0 +7fae8ce20000-7fae8ce24000 r--p 0008b000 103:03 554497 /usr/lib/libtiff.so.5.6.0 +7fae8ce24000-7fae8ce28000 rw-p 0008f000 103:03 554497 /usr/lib/libtiff.so.5.6.0 +7fae8ce28000-7fae8ce33000 r--p 00000000 103:03 554409 /usr/lib/libpixman-1.so.0.40.0 +7fae8ce33000-7fae8ceb5000 r-xp 0000b000 103:03 554409 /usr/lib/libpixman-1.so.0.40.0 +7fae8ceb5000-7fae8cec7000 r--p 0008d000 103:03 554409 /usr/lib/libpixman-1.so.0.40.0 +7fae8cec7000-7fae8cecf000 r--p 0009e000 103:03 554409 /usr/lib/libpixman-1.so.0.40.0 +7fae8cecf000-7fae8ced0000 rw-p 000a6000 103:03 554409 /usr/lib/libpixman-1.so.0.40.0 +7fae8ced0000-7fae8cf2e000 r--p 00000000 103:03 571364 /usr/lib/libepoxy.so.0.0.0 +7fae8cf2e000-7fae8cf95000 r-xp 0005e000 103:03 571364 /usr/lib/libepoxy.so.0.0.0 +7fae8cf95000-7fae8cff2000 r--p 000c5000 103:03 571364 /usr/lib/libepoxy.so.0.0.0 +7fae8cff2000-7fae8cffa000 r--p 00121000 103:03 571364 /usr/lib/libepoxy.so.0.0.0 +7fae8cffa000-7fae8d001000 rw-p 00129000 103:03 571364 /usr/lib/libepoxy.so.0.0.0 +7fae8d001000-7fae8d013000 r--p 00000000 103:03 554438 /usr/lib/libcairo.so.2.11704.0 +7fae8d013000-7fae8d0e5000 r-xp 00012000 103:03 554438 /usr/lib/libcairo.so.2.11704.0 +7fae8d0e5000-7fae8d11a000 r--p 000e4000 103:03 554438 /usr/lib/libcairo.so.2.11704.0 +7fae8d11a000-7fae8d11e000 r--p 00118000 103:03 554438 /usr/lib/libcairo.so.2.11704.0 +7fae8d11e000-7fae8d11f000 rw-p 0011c000 103:03 554438 /usr/lib/libcairo.so.2.11704.0 +7fae8d11f000-7fae8d120000 rw-p 00000000 00:00 0 +7fae8d120000-7fae8d14b000 r--p 00000000 103:03 557354 /usr/lib/libgdk-3.so.0.2404.24 +7fae8d14b000-7fae8d1d9000 r-xp 0002b000 103:03 557354 /usr/lib/libgdk-3.so.0.2404.24 +7fae8d1d9000-7fae8d225000 r--p 000b9000 103:03 557354 /usr/lib/libgdk-3.so.0.2404.24 +7fae8d225000-7fae8d22e000 r--p 00104000 103:03 557354 /usr/lib/libgdk-3.so.0.2404.24 +7fae8d22e000-7fae8d230000 rw-p 0010d000 103:03 557354 /usr/lib/libgdk-3.so.0.2404.24 +7fae8d230000-7fae8d231000 rw-p 00000000 00:00 0 +7fae8d231000-7fae8d2b5000 r--p 00000000 103:03 557359 /usr/lib/libgtk-3.so.0.2404.24 +7fae8d2b5000-7fae8d692000 r-xp 00084000 103:03 557359 /usr/lib/libgtk-3.so.0.2404.24 +7fae8d692000-7fae8da1c000 r--p 00461000 103:03 557359 /usr/lib/libgtk-3.so.0.2404.24 +7fae8da1c000-7fae8da1d000 ---p 007eb000 103:03 557359 /usr/lib/libgtk-3.so.0.2404.24 +7fae8da1d000-7fae8da2d000 r--p 007eb000 103:03 557359 /usr/lib/libgtk-3.so.0.2404.24 +7fae8da2d000-7fae8da2f000 rw-p 007fb000 103:03 557359 /usr/lib/libgtk-3.so.0.2404.24 +7fae8da2f000-7fae8da34000 rw-p 00000000 00:00 0 +7fae8ddf8000-7fae8ddf9000 ---p 00000000 00:00 0 +7fae8ddf9000-7fae8defa000 rw-p 00000000 00:00 0 +7fae8defa000-7fae8defb000 ---p 00000000 00:00 0 +7fae8defb000-7fae8dffc000 rw-p 00000000 00:00 0 +7fae8dffc000-7fae8dffd000 ---p 00000000 00:00 0 +7fae8dffd000-7fae8e7fd000 rw-p 00000000 00:00 0 +7fae8e7fd000-7fae8e7fe000 ---p 00000000 00:00 0 +7fae8e7fe000-7fae8effe000 rw-p 00000000 00:00 0 +7fae8effe000-7fae8efff000 ---p 00000000 00:00 0 +7fae8efff000-7fae8f7ff000 rw-p 00000000 00:00 0 +7fae8f7ff000-7fae8f800000 ---p 00000000 00:00 0 +7fae8f800000-7fae90000000 rw-p 00000000 00:00 0 +7fae90000000-7fae90071000 rw-p 00000000 00:00 0 +7fae90071000-7fae94000000 ---p 00000000 00:00 0 +7fae94000000-7fae94071000 rw-p 00000000 00:00 0 +7fae94071000-7fae98000000 ---p 00000000 00:00 0 +7fae98000000-7fae98076000 rw-p 00000000 00:00 0 +7fae98076000-7fae9c000000 ---p 00000000 00:00 0 +7fae9c000000-7fae9c071000 rw-p 00000000 00:00 0 +7fae9c071000-7faea0000000 ---p 00000000 00:00 0 +7faea0000000-7faea0074000 rw-p 00000000 00:00 0 +7faea0074000-7faea4000000 ---p 00000000 00:00 0 +7faea4000000-7faea407f000 rw-p 00000000 00:00 0 +7faea407f000-7faea8000000 ---p 00000000 00:00 0 +7faea8000000-7faea8070000 rw-p 00000000 00:00 0 +7faea8070000-7faeac000000 ---p 00000000 00:00 0 +7faeac000000-7faeac087000 rw-p 00000000 00:00 0 +7faeac087000-7faeb0000000 ---p 00000000 00:00 0 +7faeb001a000-7faeb001e000 r--p 00000000 103:03 554450 /usr/lib/libjpeg.so.8.2.2 +7faeb001e000-7faeb0061000 r-xp 00004000 103:03 554450 /usr/lib/libjpeg.so.8.2.2 +7faeb0061000-7faeb009b000 r--p 00047000 103:03 554450 /usr/lib/libjpeg.so.8.2.2 +7faeb009b000-7faeb009c000 ---p 00081000 103:03 554450 /usr/lib/libjpeg.so.8.2.2 +7faeb009c000-7faeb009d000 r--p 00081000 103:03 554450 /usr/lib/libjpeg.so.8.2.2 +7faeb009d000-7faeb009e000 rw-p 00082000 103:03 554450 /usr/lib/libjpeg.so.8.2.2 +7faeb009e000-7faeb00a4000 r--p 00000000 103:03 550902 /usr/lib/libxcb-render.so.0.0.0 +7faeb00a4000-7faeb00a9000 r-xp 00006000 103:03 550902 /usr/lib/libxcb-render.so.0.0.0 +7faeb00a9000-7faeb00ab000 r--p 0000b000 103:03 550902 /usr/lib/libxcb-render.so.0.0.0 +7faeb00ab000-7faeb00ac000 ---p 0000d000 103:03 550902 /usr/lib/libxcb-render.so.0.0.0 +7faeb00ac000-7faeb00ad000 r--p 0000d000 103:03 550902 /usr/lib/libxcb-render.so.0.0.0 +7faeb00ad000-7faeb00ae000 rw-p 0000e000 103:03 550902 /usr/lib/libxcb-render.so.0.0.0 +7faeb00ae000-7faeb00b3000 r--p 00000000 103:03 574793 /usr/lib/libxkbcommon.so.0.0.0 +7faeb00b3000-7faeb00d2000 r-xp 00005000 103:03 574793 /usr/lib/libxkbcommon.so.0.0.0 +7faeb00d2000-7faeb00f3000 r--p 00024000 103:03 574793 /usr/lib/libxkbcommon.so.0.0.0 +7faeb00f3000-7faeb00f5000 r--p 00044000 103:03 574793 /usr/lib/libxkbcommon.so.0.0.0 +7faeb00f5000-7faeb00f6000 rw-p 00046000 103:03 574793 /usr/lib/libxkbcommon.so.0.0.0 +7faeb00f6000-7faeb00f7000 ---p 00000000 00:00 0 +7faeb00f7000-7faeb03e4000 rw-p 00000000 00:00 0 +7faeb03e4000-7faeb03f8000 ---p 00000000 00:00 0 +7faeb03f9000-7faeb07f9000 rw-s 12c575000 00:05 577 /dev/dri/card0 +7faeb07f9000-7faeb07fa000 ---p 00000000 00:00 0 +7faeb07fa000-7faeb0ffa000 rw-p 00000000 00:00 0 +7faeb0ffa000-7faeb0ffb000 ---p 00000000 00:00 0 +7faeb0ffb000-7faeb17fb000 rw-p 00000000 00:00 0 +7faeb17fb000-7faeb17fc000 ---p 00000000 00:00 0 +7faeb17fc000-7faeb1ffc000 rw-p 00000000 00:00 0 +7faeb1ffc000-7faeb1ffd000 ---p 00000000 00:00 0 +7faeb1ffd000-7faeb27fd000 rw-p 00000000 00:00 0 +7faeb27fd000-7faeb27fe000 ---p 00000000 00:00 0 +7faeb27fe000-7faeb2ffe000 rw-p 00000000 00:00 0 +7faeb2ffe000-7faeb2fff000 ---p 00000000 00:00 0 +7faeb2fff000-7faeb37ff000 rw-p 00000000 00:00 0 +7faeb37ff000-7faeb3800000 ---p 00000000 00:00 0 +7faeb3800000-7faeb4000000 rw-p 00000000 00:00 0 +7faeb4000000-7faeb4021000 rw-p 00000000 00:00 0 +7faeb4021000-7faeb8000000 ---p 00000000 00:00 0 +7faeb8000000-7faeb8021000 rw-p 00000000 00:00 0 +7faeb8021000-7faebc000000 ---p 00000000 00:00 0 +7faebc000000-7faebc021000 rw-p 00000000 00:00 0 +7faebc021000-7faec0000000 ---p 00000000 00:00 0 +7faec0000000-7faec0021000 rw-p 00000000 00:00 0 +7faec0021000-7faec4000000 ---p 00000000 00:00 0 +7faec4000000-7faec4021000 rw-p 00000000 00:00 0 +7faec4021000-7faec8000000 ---p 00000000 00:00 0 +7faec8002000-7faec8004000 r--p 00000000 103:03 554810 /usr/lib/libdatrie.so.1.4.0 +7faec8004000-7faec8008000 r-xp 00002000 103:03 554810 /usr/lib/libdatrie.so.1.4.0 +7faec8008000-7faec800a000 r--p 00006000 103:03 554810 /usr/lib/libdatrie.so.1.4.0 +7faec800a000-7faec800b000 r--p 00007000 103:03 554810 /usr/lib/libdatrie.so.1.4.0 +7faec800b000-7faec800c000 rw-p 00008000 103:03 554810 /usr/lib/libdatrie.so.1.4.0 +7faec800c000-7faec800e000 r--p 00000000 103:03 554815 /usr/lib/libthai.so.0.3.1 +7faec800e000-7faec8012000 r-xp 00002000 103:03 554815 /usr/lib/libthai.so.0.3.1 +7faec8012000-7faec8015000 r--p 00006000 103:03 554815 /usr/lib/libthai.so.0.3.1 +7faec8015000-7faec8016000 r--p 00008000 103:03 554815 /usr/lib/libthai.so.0.3.1 +7faec8016000-7faec8017000 rw-p 00009000 103:03 554815 /usr/lib/libthai.so.0.3.1 +7faec8017000-7faec8018000 r--p 00000000 103:03 557792 /usr/lib/libXdamage.so.1.1.0 +7faec8018000-7faec8019000 r-xp 00001000 103:03 557792 /usr/lib/libXdamage.so.1.1.0 +7faec8019000-7faec801a000 r--p 00002000 103:03 557792 /usr/lib/libXdamage.so.1.1.0 +7faec801a000-7faec801b000 r--p 00002000 103:03 557792 /usr/lib/libXdamage.so.1.1.0 +7faec801b000-7faec801c000 rw-p 00003000 103:03 557792 /usr/lib/libXdamage.so.1.1.0 +7faec801c000-7faec801d000 r--p 00000000 103:03 541058 /usr/lib/libwayland-cursor.so.0.0.0 +7faec801d000-7faec801f000 r-xp 00001000 103:03 541058 /usr/lib/libwayland-cursor.so.0.0.0 +7faec801f000-7faec8020000 r--p 00003000 103:03 541058 /usr/lib/libwayland-cursor.so.0.0.0 +7faec8020000-7faec8021000 r--p 00003000 103:03 541058 /usr/lib/libwayland-cursor.so.0.0.0 +7faec8021000-7faec8025000 rw-p 00004000 103:03 541058 /usr/lib/libwayland-cursor.so.0.0.0 +7faec8025000-7faec802b000 r--p 00000000 103:03 540934 /usr/lib/libwayland-client.so.0.3.0 +7faec802b000-7faec8031000 r-xp 00006000 103:03 540934 /usr/lib/libwayland-client.so.0.3.0 +7faec8031000-7faec8034000 r--p 0000c000 103:03 540934 /usr/lib/libwayland-client.so.0.3.0 +7faec8034000-7faec8036000 r--p 0000e000 103:03 540934 /usr/lib/libwayland-client.so.0.3.0 +7faec8036000-7faec8037000 rw-p 00010000 103:03 540934 /usr/lib/libwayland-client.so.0.3.0 +7faec8037000-7faec803e000 r--p 00000000 103:03 571395 /usr/lib/libcloudproviders.so.0.3.1 +7faec803e000-7faec8047000 r-xp 00007000 103:03 571395 /usr/lib/libcloudproviders.so.0.3.1 +7faec8047000-7faec804c000 r--p 00010000 103:03 571395 /usr/lib/libcloudproviders.so.0.3.1 +7faec804c000-7faec804d000 ---p 00015000 103:03 571395 /usr/lib/libcloudproviders.so.0.3.1 +7faec804d000-7faec804e000 r--p 00015000 103:03 571395 /usr/lib/libcloudproviders.so.0.3.1 +7faec804e000-7faec804f000 rw-p 00016000 103:03 571395 /usr/lib/libcloudproviders.so.0.3.1 +7faec804f000-7faec805b000 r--p 00000000 103:03 571372 /usr/lib/libatk-bridge-2.0.so.0.0.0 +7faec805b000-7faec8072000 r-xp 0000c000 103:03 571372 /usr/lib/libatk-bridge-2.0.so.0.0.0 +7faec8072000-7faec8081000 r--p 00023000 103:03 571372 /usr/lib/libatk-bridge-2.0.so.0.0.0 +7faec8081000-7faec8083000 r--p 00031000 103:03 571372 /usr/lib/libatk-bridge-2.0.so.0.0.0 +7faec8083000-7faec8085000 rw-p 00033000 103:03 571372 /usr/lib/libatk-bridge-2.0.so.0.0.0 +7faec8085000-7faec8090000 r--p 00000000 103:03 555472 /usr/lib/libatk-1.0.so.0.23609.1 +7faec8090000-7faec809e000 r-xp 0000b000 103:03 555472 /usr/lib/libatk-1.0.so.0.23609.1 +7faec809e000-7faec80aa000 r--p 00019000 103:03 555472 /usr/lib/libatk-1.0.so.0.23609.1 +7faec80aa000-7faec80ad000 r--p 00024000 103:03 555472 /usr/lib/libatk-1.0.so.0.23609.1 +7faec80ad000-7faec80ae000 rw-p 00027000 103:03 555472 /usr/lib/libatk-1.0.so.0.23609.1 +7faec80ae000-7faec80b7000 r--p 00000000 103:03 554663 /usr/lib/libgdk_pixbuf-2.0.so.0.4200.6 +7faec80b7000-7faec80e0000 r-xp 00009000 103:03 554663 /usr/lib/libgdk_pixbuf-2.0.so.0.4200.6 +7faec80e0000-7faec80f1000 r--p 00032000 103:03 554663 /usr/lib/libgdk_pixbuf-2.0.so.0.4200.6 +7faec80f1000-7faec80f3000 r--p 00042000 103:03 554663 /usr/lib/libgdk_pixbuf-2.0.so.0.4200.6 +7faec80f3000-7faec80f4000 rw-p 00044000 103:03 554663 /usr/lib/libgdk_pixbuf-2.0.so.0.4200.6 +7faec80f4000-7faec80f5000 ---p 00000000 00:00 0 +7faec80f5000-7faec81f6000 rw-p 00000000 00:00 0 +7faec81f6000-7faec81f7000 ---p 00000000 00:00 0 +7faec81f7000-7faec89f7000 rw-p 00000000 00:00 0 +7faec89f7000-7faec89f8000 ---p 00000000 00:00 0 +7faec89f8000-7faec91f8000 rw-p 00000000 00:00 0 +7faec91f8000-7faec91f9000 ---p 00000000 00:00 0 +7faec91f9000-7faec99f9000 rw-p 00000000 00:00 0 +7faec99f9000-7faec99fa000 ---p 00000000 00:00 0 +7faec99fa000-7faeca1fa000 rw-p 00000000 00:00 0 +7faeca1fa000-7faeca1fb000 ---p 00000000 00:00 0 +7faeca1fb000-7faeca9fb000 rw-p 00000000 00:00 0 +7faeca9fb000-7faeca9fc000 ---p 00000000 00:00 0 +7faeca9fc000-7faecb1fc000 rw-p 00000000 00:00 0 +7faecb1fc000-7faeccd3c000 r--p 00000000 103:03 541187 /usr/lib/libicudata.so.68.2 +7faeccd3c000-7faeccd3d000 r--p 01b3f000 103:03 541187 /usr/lib/libicudata.so.68.2 +7faeccd3d000-7faecd595000 r--p 00000000 103:03 546521 /usr/lib/libLLVM-11.so +7faecd595000-7faed06f4000 r-xp 00858000 103:03 546521 /usr/lib/libLLVM-11.so +7faed06f4000-7faed22dd000 r--p 039b7000 103:03 546521 /usr/lib/libLLVM-11.so +7faed22dd000-7faed2724000 r--p 0559f000 103:03 546521 /usr/lib/libLLVM-11.so +7faed2724000-7faed272e000 rw-p 059e6000 103:03 546521 /usr/lib/libLLVM-11.so +7faed272e000-7faed279c000 rw-p 00000000 00:00 0 +7faed279c000-7faed28b1000 r--p 00000000 103:03 792646 /usr/lib/dri/radeonsi_dri.so +7faed28b1000-7faed37f9000 r-xp 00115000 103:03 792646 /usr/lib/dri/radeonsi_dri.so +7faed37f9000-7faed3c39000 r--p 0105d000 103:03 792646 /usr/lib/dri/radeonsi_dri.so +7faed3c39000-7faed3d36000 r--p 0149c000 103:03 792646 /usr/lib/dri/radeonsi_dri.so +7faed3d36000-7faed3dcb000 rw-p 01599000 103:03 792646 /usr/lib/dri/radeonsi_dri.so +7faed3dcb000-7faed4000000 rw-p 00000000 00:00 0 +7faed4000000-7faed4f3d000 rw-p 00000000 00:00 0 +7faed4f3d000-7faed8000000 ---p 00000000 00:00 0 +7faed8000000-7faed8239000 rw-p 00000000 00:00 0 +7faed8239000-7faedc000000 ---p 00000000 00:00 0 +7faedc000000-7faedc021000 rw-p 00000000 00:00 0 +7faedc021000-7faee0000000 ---p 00000000 00:00 0 +7faee0000000-7faee0021000 rw-p 00000000 00:00 0 +7faee0021000-7faee4000000 ---p 00000000 00:00 0 +7faee4000000-7faee4021000 rw-p 00000000 00:00 0 +7faee4021000-7faee8000000 ---p 00000000 00:00 0 +7faee8000000-7faee8021000 rw-p 00000000 00:00 0 +7faee8021000-7faeec000000 ---p 00000000 00:00 0 +7faeec000000-7faeec021000 rw-p 00000000 00:00 0 +7faeec021000-7faef0000000 ---p 00000000 00:00 0 +7faef0000000-7faef0021000 rw-p 00000000 00:00 0 +7faef0021000-7faef4000000 ---p 00000000 00:00 0 +7faef4000000-7faef4021000 rw-p 00000000 00:00 0 +7faef4021000-7faef8000000 ---p 00000000 00:00 0 +7faef8000000-7faef8021000 rw-p 00000000 00:00 0 +7faef8021000-7faefc000000 ---p 00000000 00:00 0 +7faefc000000-7faefc021000 rw-p 00000000 00:00 0 +7faefc021000-7faf00000000 ---p 00000000 00:00 0 +7faf00000000-7faf00021000 rw-p 00000000 00:00 0 +7faf00021000-7faf04000000 ---p 00000000 00:00 0 +7faf04000000-7faf04021000 rw-p 00000000 00:00 0 +7faf04021000-7faf08000000 ---p 00000000 00:00 0 +7faf08000000-7faf08021000 rw-p 00000000 00:00 0 +7faf08021000-7faf0c000000 ---p 00000000 00:00 0 +7faf0c002000-7faf0c003000 r--p 00000000 103:03 541118 /usr/lib/libwayland-egl.so.1.0.0 +7faf0c003000-7faf0c004000 r-xp 00001000 103:03 541118 /usr/lib/libwayland-egl.so.1.0.0 +7faf0c004000-7faf0c005000 r--p 00002000 103:03 541118 /usr/lib/libwayland-egl.so.1.0.0 +7faf0c005000-7faf0c006000 r--p 00002000 103:03 541118 /usr/lib/libwayland-egl.so.1.0.0 +7faf0c006000-7faf0c007000 rw-p 00003000 103:03 541118 /usr/lib/libwayland-egl.so.1.0.0 +7faf0c007000-7faf0c00b000 r--p 00000000 103:03 554428 /usr/lib/libcairo-gobject.so.2.11704.0 +7faf0c00b000-7faf0c00d000 r-xp 00004000 103:03 554428 /usr/lib/libcairo-gobject.so.2.11704.0 +7faf0c00d000-7faf0c00f000 r--p 00006000 103:03 554428 /usr/lib/libcairo-gobject.so.2.11704.0 +7faf0c00f000-7faf0c010000 ---p 00008000 103:03 554428 /usr/lib/libcairo-gobject.so.2.11704.0 +7faf0c010000-7faf0c012000 r--p 00008000 103:03 554428 /usr/lib/libcairo-gobject.so.2.11704.0 +7faf0c012000-7faf0c013000 rw-p 0000a000 103:03 554428 /usr/lib/libcairo-gobject.so.2.11704.0 +7faf0c013000-7faf0c015000 r--p 00000000 103:03 569579 /usr/lib/libfribidi.so.0.4.0 +7faf0c015000-7faf0c01a000 r-xp 00002000 103:03 569579 /usr/lib/libfribidi.so.0.4.0 +7faf0c01a000-7faf0c030000 r--p 00007000 103:03 569579 /usr/lib/libfribidi.so.0.4.0 +7faf0c030000-7faf0c031000 r--p 0001c000 103:03 569579 /usr/lib/libfribidi.so.0.4.0 +7faf0c031000-7faf0c032000 rw-p 0001d000 103:03 569579 /usr/lib/libfribidi.so.0.4.0 +7faf0c032000-7faf0c03a000 r--p 00000000 103:03 554178 /usr/lib/libfontconfig.so.1.12.0 +7faf0c03a000-7faf0c066000 r-xp 00008000 103:03 554178 /usr/lib/libfontconfig.so.1.12.0 +7faf0c066000-7faf0c07d000 r--p 00034000 103:03 554178 /usr/lib/libfontconfig.so.1.12.0 +7faf0c07d000-7faf0c07e000 ---p 0004b000 103:03 554178 /usr/lib/libfontconfig.so.1.12.0 +7faf0c07e000-7faf0c080000 r--p 0004b000 103:03 554178 /usr/lib/libfontconfig.so.1.12.0 +7faf0c080000-7faf0c081000 rw-p 0004d000 103:03 554178 /usr/lib/libfontconfig.so.1.12.0 +7faf0c081000-7faf0c088000 r--p 00000000 103:03 574727 /usr/lib/libpangoft2-1.0.so.0.4800.4 +7faf0c088000-7faf0c093000 r-xp 00007000 103:03 574727 /usr/lib/libpangoft2-1.0.so.0.4800.4 +7faf0c093000-7faf0c097000 r--p 00012000 103:03 574727 /usr/lib/libpangoft2-1.0.so.0.4800.4 +7faf0c097000-7faf0c098000 ---p 00016000 103:03 574727 /usr/lib/libpangoft2-1.0.so.0.4800.4 +7faf0c098000-7faf0c099000 r--p 00016000 103:03 574727 /usr/lib/libpangoft2-1.0.so.0.4800.4 +7faf0c099000-7faf0c09a000 rw-p 00017000 103:03 574727 /usr/lib/libpangoft2-1.0.so.0.4800.4 +7faf0c09a000-7faf0c0a9000 r--p 00000000 103:03 569598 /usr/lib/libpango-1.0.so.0.4800.4 +7faf0c0a9000-7faf0c0d0000 r-xp 0000f000 103:03 569598 /usr/lib/libpango-1.0.so.0.4800.4 +7faf0c0d0000-7faf0c0e7000 r--p 00036000 103:03 569598 /usr/lib/libpango-1.0.so.0.4800.4 +7faf0c0e7000-7faf0c0e8000 ---p 0004d000 103:03 569598 /usr/lib/libpango-1.0.so.0.4800.4 +7faf0c0e8000-7faf0c0eb000 r--p 0004d000 103:03 569598 /usr/lib/libpango-1.0.so.0.4800.4 +7faf0c0eb000-7faf0c0ec000 rw-p 00050000 103:03 569598 /usr/lib/libpango-1.0.so.0.4800.4 +7faf0c0ec000-7faf0c0f1000 r--p 00000000 103:03 574724 /usr/lib/libpangocairo-1.0.so.0.4800.4 +7faf0c0f1000-7faf0c0f8000 r-xp 00005000 103:03 574724 /usr/lib/libpangocairo-1.0.so.0.4800.4 +7faf0c0f8000-7faf0c0fa000 r--p 0000c000 103:03 574724 /usr/lib/libpangocairo-1.0.so.0.4800.4 +7faf0c0fa000-7faf0c0fb000 ---p 0000e000 103:03 574724 /usr/lib/libpangocairo-1.0.so.0.4800.4 +7faf0c0fb000-7faf0c0fc000 r--p 0000e000 103:03 574724 /usr/lib/libpangocairo-1.0.so.0.4800.4 +7faf0c0fc000-7faf0c0fd000 rw-p 0000f000 103:03 574724 /usr/lib/libpangocairo-1.0.so.0.4800.4 +7faf0c0fd000-7faf0c2fd000 rw-s 12cc05000 00:05 577 /dev/dri/card0 +7faf0c2fd000-7faf0c4fd000 rw-s 125f65000 00:05 577 /dev/dri/card0 +7faf0c4fd000-7faf0c6fd000 rw-s 10a0e8000 00:05 577 /dev/dri/card0 +7faf0c6fd000-7faf0c83e000 rw-s 00000000 103:04 11405080 /home/heero/.cache/mesa_shader_cache/index +7faf0c83e000-7faf0c83f000 ---p 00000000 00:00 0 +7faf0c83f000-7faf0d03f000 rw-p 00000000 00:00 0 +7faf0d03f000-7faf0d042000 r--p 00000000 103:03 537520 /usr/lib/liblzma.so.5.2.5 +7faf0d042000-7faf0d059000 r-xp 00003000 103:03 537520 /usr/lib/liblzma.so.5.2.5 +7faf0d059000-7faf0d064000 r--p 0001a000 103:03 537520 /usr/lib/liblzma.so.5.2.5 +7faf0d064000-7faf0d065000 ---p 00025000 103:03 537520 /usr/lib/liblzma.so.5.2.5 +7faf0d065000-7faf0d066000 r--p 00025000 103:03 537520 /usr/lib/liblzma.so.5.2.5 +7faf0d066000-7faf0d067000 rw-p 00026000 103:03 537520 /usr/lib/liblzma.so.5.2.5 +7faf0d067000-7faf0d0cc000 r--p 00000000 103:03 541206 /usr/lib/libicuuc.so.68.2 +7faf0d0cc000-7faf0d1b8000 r-xp 00065000 103:03 541206 /usr/lib/libicuuc.so.68.2 +7faf0d1b8000-7faf0d240000 r--p 00151000 103:03 541206 /usr/lib/libicuuc.so.68.2 +7faf0d240000-7faf0d253000 r--p 001d8000 103:03 541206 /usr/lib/libicuuc.so.68.2 +7faf0d253000-7faf0d254000 rw-p 001eb000 103:03 541206 /usr/lib/libicuuc.so.68.2 +7faf0d254000-7faf0d256000 rw-p 00000000 00:00 0 +7faf0d256000-7faf0d284000 r--p 00000000 103:03 541224 /usr/lib/libxml2.so.2.9.10 +7faf0d284000-7faf0d36d000 r-xp 0002e000 103:03 541224 /usr/lib/libxml2.so.2.9.10 +7faf0d36d000-7faf0d3b8000 r--p 00117000 103:03 541224 /usr/lib/libxml2.so.2.9.10 +7faf0d3b8000-7faf0d3c1000 r--p 00161000 103:03 541224 /usr/lib/libxml2.so.2.9.10 +7faf0d3c1000-7faf0d3c2000 rw-p 0016a000 103:03 541224 /usr/lib/libxml2.so.2.9.10 +7faf0d3c2000-7faf0d3c4000 rw-p 00000000 00:00 0 +7faf0d3c4000-7faf0d3db000 r--p 00000000 103:03 528557 /usr/lib/libncursesw.so.6.2 +7faf0d3db000-7faf0d417000 r-xp 00017000 103:03 528557 /usr/lib/libncursesw.so.6.2 +7faf0d417000-7faf0d42f000 r--p 00053000 103:03 528557 /usr/lib/libncursesw.so.6.2 +7faf0d42f000-7faf0d434000 r--p 0006a000 103:03 528557 /usr/lib/libncursesw.so.6.2 +7faf0d434000-7faf0d435000 rw-p 0006f000 103:03 528557 /usr/lib/libncursesw.so.6.2 +7faf0d435000-7faf0d43e000 r--p 00000000 103:03 556853 /usr/lib/libedit.so.0.0.64 +7faf0d43e000-7faf0d45b000 r-xp 00009000 103:03 556853 /usr/lib/libedit.so.0.0.64 +7faf0d45b000-7faf0d469000 r--p 00026000 103:03 556853 /usr/lib/libedit.so.0.0.64 +7faf0d469000-7faf0d46a000 ---p 00034000 103:03 556853 /usr/lib/libedit.so.0.0.64 +7faf0d46a000-7faf0d46c000 r--p 00034000 103:03 556853 /usr/lib/libedit.so.0.0.64 +7faf0d46c000-7faf0d46d000 rw-p 00036000 103:03 556853 /usr/lib/libedit.so.0.0.64 +7faf0d46d000-7faf0d470000 rw-p 00000000 00:00 0 +7faf0d470000-7faf0d485000 r--p 00000000 103:03 574661 /usr/lib/libvulkan.so.1.2.172 +7faf0d485000-7faf0d4b7000 r-xp 00015000 103:03 574661 /usr/lib/libvulkan.so.1.2.172 +7faf0d4b7000-7faf0d4cb000 r--p 00047000 103:03 574661 /usr/lib/libvulkan.so.1.2.172 +7faf0d4cb000-7faf0d4cc000 ---p 0005b000 103:03 574661 /usr/lib/libvulkan.so.1.2.172 +7faf0d4cc000-7faf0d4cf000 r--p 0005b000 103:03 574661 /usr/lib/libvulkan.so.1.2.172 +7faf0d4cf000-7faf0d4d0000 rw-p 0005e000 103:03 574661 /usr/lib/libvulkan.so.1.2.172 +7faf0d4d0000-7faf0d4d2000 r--p 00000000 103:03 556707 /usr/lib/libdrm_nouveau.so.2.0.0 +7faf0d4d2000-7faf0d4d6000 r-xp 00002000 103:03 556707 /usr/lib/libdrm_nouveau.so.2.0.0 +7faf0d4d6000-7faf0d4d8000 r--p 00006000 103:03 556707 /usr/lib/libdrm_nouveau.so.2.0.0 +7faf0d4d8000-7faf0d4d9000 r--p 00007000 103:03 556707 /usr/lib/libdrm_nouveau.so.2.0.0 +7faf0d4d9000-7faf0d4da000 rw-p 00008000 103:03 556707 /usr/lib/libdrm_nouveau.so.2.0.0 +7faf0d4da000-7faf0d4dd000 r--p 00000000 103:03 556679 /usr/lib/libdrm_amdgpu.so.1.0.0 +7faf0d4dd000-7faf0d4e2000 r-xp 00003000 103:03 556679 /usr/lib/libdrm_amdgpu.so.1.0.0 +7faf0d4e2000-7faf0d4e4000 r--p 00008000 103:03 556679 /usr/lib/libdrm_amdgpu.so.1.0.0 +7faf0d4e4000-7faf0d4e5000 r--p 00009000 103:03 556679 /usr/lib/libdrm_amdgpu.so.1.0.0 +7faf0d4e5000-7faf0d4e6000 rw-p 0000a000 103:03 556679 /usr/lib/libdrm_amdgpu.so.1.0.0 +7faf0d4e6000-7faf0d4e9000 r--p 00000000 103:03 539095 /usr/lib/libelf-0.183.so +7faf0d4e9000-7faf0d4f9000 r-xp 00003000 103:03 539095 /usr/lib/libelf-0.183.so +7faf0d4f9000-7faf0d4fd000 r--p 00013000 103:03 539095 /usr/lib/libelf-0.183.so +7faf0d4fd000-7faf0d4fe000 ---p 00017000 103:03 539095 /usr/lib/libelf-0.183.so +7faf0d4fe000-7faf0d4ff000 r--p 00017000 103:03 539095 /usr/lib/libelf-0.183.so +7faf0d4ff000-7faf0d500000 rw-p 00018000 103:03 539095 /usr/lib/libelf-0.183.so +7faf0d500000-7faf0d502000 r--p 00000000 103:03 562932 /usr/lib/libdrm_radeon.so.1.0.1 +7faf0d502000-7faf0d509000 r-xp 00002000 103:03 562932 /usr/lib/libdrm_radeon.so.1.0.1 +7faf0d509000-7faf0d50d000 r--p 00009000 103:03 562932 /usr/lib/libdrm_radeon.so.1.0.1 +7faf0d50d000-7faf0d50e000 r--p 0000c000 103:03 562932 /usr/lib/libdrm_radeon.so.1.0.1 +7faf0d50e000-7faf0d50f000 rw-p 0000d000 103:03 562932 /usr/lib/libdrm_radeon.so.1.0.1 +7faf0d50f000-7faf0d512000 r--p 00000000 103:03 556918 /usr/lib/libsensors.so.5.0.0 +7faf0d512000-7faf0d519000 r-xp 00003000 103:03 556918 /usr/lib/libsensors.so.5.0.0 +7faf0d519000-7faf0d51e000 r--p 0000a000 103:03 556918 /usr/lib/libsensors.so.5.0.0 +7faf0d51e000-7faf0d51f000 r--p 0000e000 103:03 556918 /usr/lib/libsensors.so.5.0.0 +7faf0d51f000-7faf0d520000 rw-p 0000f000 103:03 556918 /usr/lib/libsensors.so.5.0.0 +7faf0d520000-7faf0d525000 r--p 00000000 103:03 541657 /usr/lib/libzstd.so.1.4.9 +7faf0d525000-7faf0d5e5000 r-xp 00005000 103:03 541657 /usr/lib/libzstd.so.1.4.9 +7faf0d5e5000-7faf0d5f8000 r--p 000c5000 103:03 541657 /usr/lib/libzstd.so.1.4.9 +7faf0d5f8000-7faf0d5f9000 r--p 000d7000 103:03 541657 /usr/lib/libzstd.so.1.4.9 +7faf0d5f9000-7faf0d5fa000 rw-p 000d8000 103:03 541657 /usr/lib/libzstd.so.1.4.9 +7faf0d5fa000-7faf0d5fd000 r--p 00000000 103:03 550926 /usr/lib/libxcb-xfixes.so.0.0.0 +7faf0d5fd000-7faf0d600000 r-xp 00003000 103:03 550926 /usr/lib/libxcb-xfixes.so.0.0.0 +7faf0d600000-7faf0d601000 r--p 00006000 103:03 550926 /usr/lib/libxcb-xfixes.so.0.0.0 +7faf0d601000-7faf0d602000 ---p 00007000 103:03 550926 /usr/lib/libxcb-xfixes.so.0.0.0 +7faf0d602000-7faf0d603000 r--p 00007000 103:03 550926 /usr/lib/libxcb-xfixes.so.0.0.0 +7faf0d603000-7faf0d604000 rw-p 00008000 103:03 550926 /usr/lib/libxcb-xfixes.so.0.0.0 +7faf0d604000-7faf0d605000 r--p 00000000 103:03 556772 /usr/lib/libxshmfence.so.1.0.0 +7faf0d605000-7faf0d606000 r-xp 00001000 103:03 556772 /usr/lib/libxshmfence.so.1.0.0 +7faf0d606000-7faf0d607000 r--p 00002000 103:03 556772 /usr/lib/libxshmfence.so.1.0.0 +7faf0d607000-7faf0d608000 r--p 00002000 103:03 556772 /usr/lib/libxshmfence.so.1.0.0 +7faf0d608000-7faf0d609000 rw-p 00003000 103:03 556772 /usr/lib/libxshmfence.so.1.0.0 +7faf0d609000-7faf0d60c000 r--p 00000000 103:03 550919 /usr/lib/libxcb-sync.so.1.0.0 +7faf0d60c000-7faf0d60f000 r-xp 00003000 103:03 550919 /usr/lib/libxcb-sync.so.1.0.0 +7faf0d60f000-7faf0d610000 r--p 00006000 103:03 550919 /usr/lib/libxcb-sync.so.1.0.0 +7faf0d610000-7faf0d611000 ---p 00007000 103:03 550919 /usr/lib/libxcb-sync.so.1.0.0 +7faf0d611000-7faf0d612000 r--p 00007000 103:03 550919 /usr/lib/libxcb-sync.so.1.0.0 +7faf0d612000-7faf0d613000 rw-p 00008000 103:03 550919 /usr/lib/libxcb-sync.so.1.0.0 +7faf0d613000-7faf0d614000 r--p 00000000 103:03 550891 /usr/lib/libxcb-present.so.0.0.0 +7faf0d614000-7faf0d615000 r-xp 00001000 103:03 550891 /usr/lib/libxcb-present.so.0.0.0 +7faf0d615000-7faf0d616000 r--p 00002000 103:03 550891 /usr/lib/libxcb-present.so.0.0.0 +7faf0d616000-7faf0d617000 r--p 00002000 103:03 550891 /usr/lib/libxcb-present.so.0.0.0 +7faf0d617000-7faf0d618000 rw-p 00003000 103:03 550891 /usr/lib/libxcb-present.so.0.0.0 +7faf0d618000-7faf0d61a000 r--p 00000000 103:03 550885 /usr/lib/libxcb-dri3.so.0.0.0 +7faf0d61a000-7faf0d61b000 r-xp 00002000 103:03 550885 /usr/lib/libxcb-dri3.so.0.0.0 +7faf0d61b000-7faf0d61c000 r--p 00003000 103:03 550885 /usr/lib/libxcb-dri3.so.0.0.0 +7faf0d61c000-7faf0d61d000 r--p 00003000 103:03 550885 /usr/lib/libxcb-dri3.so.0.0.0 +7faf0d61d000-7faf0d61e000 rw-p 00004000 103:03 550885 /usr/lib/libxcb-dri3.so.0.0.0 +7faf0d61e000-7faf0d622000 r--p 00000000 103:03 564906 /usr/lib/libexpat.so.1.7.0 +7faf0d622000-7faf0d63f000 r-xp 00004000 103:03 564906 /usr/lib/libexpat.so.1.7.0 +7faf0d63f000-7faf0d649000 r--p 00021000 103:03 564906 /usr/lib/libexpat.so.1.7.0 +7faf0d649000-7faf0d64a000 ---p 0002b000 103:03 564906 /usr/lib/libexpat.so.1.7.0 +7faf0d64a000-7faf0d64c000 r--p 0002b000 103:03 564906 /usr/lib/libexpat.so.1.7.0 +7faf0d64c000-7faf0d64d000 rw-p 0002d000 103:03 564906 /usr/lib/libexpat.so.1.7.0 +7faf0d64d000-7faf0d64e000 r--p 00000000 103:03 550916 /usr/lib/libxcb-shm.so.0.0.0 +7faf0d64e000-7faf0d64f000 r-xp 00001000 103:03 550916 /usr/lib/libxcb-shm.so.0.0.0 +7faf0d64f000-7faf0d650000 r--p 00002000 103:03 550916 /usr/lib/libxcb-shm.so.0.0.0 +7faf0d650000-7faf0d651000 r--p 00002000 103:03 550916 /usr/lib/libxcb-shm.so.0.0.0 +7faf0d651000-7faf0d652000 rw-p 00003000 103:03 550916 /usr/lib/libxcb-shm.so.0.0.0 +7faf0d652000-7faf0d653000 r--p 00000000 103:03 556746 /usr/lib/libXxf86vm.so.1.0.0 +7faf0d653000-7faf0d656000 r-xp 00001000 103:03 556746 /usr/lib/libXxf86vm.so.1.0.0 +7faf0d656000-7faf0d657000 r--p 00004000 103:03 556746 /usr/lib/libXxf86vm.so.1.0.0 +7faf0d657000-7faf0d658000 r--p 00004000 103:03 556746 /usr/lib/libXxf86vm.so.1.0.0 +7faf0d658000-7faf0d659000 rw-p 00005000 103:03 556746 /usr/lib/libXxf86vm.so.1.0.0 +7faf0d659000-7faf0d665000 r--p 00000000 103:03 550888 /usr/lib/libxcb-glx.so.0.0.0 +7faf0d665000-7faf0d66e000 r-xp 0000c000 103:03 550888 /usr/lib/libxcb-glx.so.0.0.0 +7faf0d66e000-7faf0d673000 r--p 00015000 103:03 550888 /usr/lib/libxcb-glx.so.0.0.0 +7faf0d673000-7faf0d674000 ---p 0001a000 103:03 550888 /usr/lib/libxcb-glx.so.0.0.0 +7faf0d674000-7faf0d676000 r--p 0001a000 103:03 550888 /usr/lib/libxcb-glx.so.0.0.0 +7faf0d676000-7faf0d677000 rw-p 0001c000 103:03 550888 /usr/lib/libxcb-glx.so.0.0.0 +7faf0d677000-7faf0d67c000 r--p 00000000 103:03 556676 /usr/lib/libdrm.so.2.4.0 +7faf0d67c000-7faf0d686000 r-xp 00005000 103:03 556676 /usr/lib/libdrm.so.2.4.0 +7faf0d686000-7faf0d68a000 r--p 0000f000 103:03 556676 /usr/lib/libdrm.so.2.4.0 +7faf0d68a000-7faf0d68b000 r--p 00012000 103:03 556676 /usr/lib/libdrm.so.2.4.0 +7faf0d68b000-7faf0d68c000 rw-p 00013000 103:03 556676 /usr/lib/libdrm.so.2.4.0 +7faf0d68c000-7faf0d6a5000 r--p 00000000 103:03 553841 /usr/lib/libGLX_mesa.so.0.0.0 +7faf0d6a5000-7faf0d6ea000 r-xp 00019000 103:03 553841 /usr/lib/libGLX_mesa.so.0.0.0 +7faf0d6ea000-7faf0d701000 r--p 0005e000 103:03 553841 /usr/lib/libGLX_mesa.so.0.0.0 +7faf0d701000-7faf0d702000 ---p 00075000 103:03 553841 /usr/lib/libGLX_mesa.so.0.0.0 +7faf0d702000-7faf0d705000 r--p 00075000 103:03 553841 /usr/lib/libGLX_mesa.so.0.0.0 +7faf0d705000-7faf0d706000 rw-p 00078000 103:03 553841 /usr/lib/libGLX_mesa.so.0.0.0 +7faf0d706000-7faf0d746000 r--p 00000000 103:03 557909 /usr/lib/libGLdispatch.so.0.0.0 +7faf0d746000-7faf0d784000 r-xp 00040000 103:03 557909 /usr/lib/libGLdispatch.so.0.0.0 +7faf0d784000-7faf0d797000 r--p 0007e000 103:03 557909 /usr/lib/libGLdispatch.so.0.0.0 +7faf0d797000-7faf0d798000 ---p 00091000 103:03 557909 /usr/lib/libGLdispatch.so.0.0.0 +7faf0d798000-7faf0d7b4000 r--p 00091000 103:03 557909 /usr/lib/libGLdispatch.so.0.0.0 +7faf0d7b4000-7faf0d7b5000 rw-p 000ad000 103:03 557909 /usr/lib/libGLdispatch.so.0.0.0 +7faf0d7b5000-7faf0d7bd000 rw-p 00000000 00:00 0 +7faf0d7bd000-7faf0d7ff000 r--p 00000000 103:03 556981 /usr/lib/libGL.so.1.7.0 +7faf0d7ff000-7faf0d81e000 r-xp 00042000 103:03 556981 /usr/lib/libGL.so.1.7.0 +7faf0d81e000-7faf0d833000 r--p 00061000 103:03 556981 /usr/lib/libGL.so.1.7.0 +7faf0d833000-7faf0d841000 r--p 00075000 103:03 556981 /usr/lib/libGL.so.1.7.0 +7faf0d841000-7faf0d842000 rw-p 00083000 103:03 556981 /usr/lib/libGL.so.1.7.0 +7faf0d842000-7faf0d843000 rw-p 00000000 00:00 0 +7faf0d843000-7faf0d89b000 r-xp 00000000 00:24 172 /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +7faf0d89b000-7faf0da9a000 ---p 00058000 00:24 172 /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +7faf0da9a000-7faf0da9b000 r--p 00057000 00:24 172 /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +7faf0da9b000-7faf0da9c000 rw-p 00058000 00:24 172 /tmp/lwjglheero/3.2.3-build-13/liblwjgl_opengl.so +7faf0da9c000-7faf0dc9c000 rw-p 00000000 00:00 0 +7faf0dc9f000-7faf0dca3000 ---p 00000000 00:00 0 +7faf0dca3000-7faf0dda0000 rw-p 00000000 00:00 0 +7faf0dda0000-7faf0dda4000 ---p 00000000 00:00 0 +7faf0dda4000-7faf0dea1000 rw-p 00000000 00:00 0 +7faf0dea1000-7faf0dea5000 ---p 00000000 00:00 0 +7faf0dea5000-7faf0dfa2000 rw-p 00000000 00:00 0 +7faf0dfa2000-7faf0dff3000 r-xp 00000000 00:24 171 /tmp/lwjglheero/3.2.3-build-13/liblwjgl.so +7faf0dff3000-7faf0e1f2000 ---p 00051000 00:24 171 /tmp/lwjglheero/3.2.3-build-13/liblwjgl.so +7faf0e1f2000-7faf0e1f3000 r--p 00050000 00:24 171 /tmp/lwjglheero/3.2.3-build-13/liblwjgl.so +7faf0e1f3000-7faf0e1f4000 rw-p 00051000 00:24 171 /tmp/lwjglheero/3.2.3-build-13/liblwjgl.so +7faf0e1f4000-7faf0e3f4000 rw-p 00000000 00:00 0 +7faf0e3f5000-7faf0e3f6000 ---p 00000000 00:00 0 +7faf0e3f6000-7faf0e4f7000 rw-p 00000000 00:00 0 +7faf0e4f7000-7faf0e4f8000 ---p 00000000 00:00 0 +7faf0e4f8000-7faf0e5f9000 rw-p 00000000 00:00 0 +7faf0e5f9000-7faf0e5fa000 ---p 00000000 00:00 0 +7faf0e5fa000-7faf0e6fb000 rw-p 00000000 00:00 0 +7faf0e6fb000-7faf0e6fc000 ---p 00000000 00:00 0 +7faf0e6fc000-7faf0e7fd000 rw-p 00000000 00:00 0 +7faf0e7fd000-7faf0e7fe000 ---p 00000000 00:00 0 +7faf0e7fe000-7faf0effe000 rw-p 00000000 00:00 0 +7faf0effe000-7faf0efff000 ---p 00000000 00:00 0 +7faf0efff000-7faf0f7ff000 rw-p 00000000 00:00 0 +7faf0f7ff000-7faf0f800000 ---p 00000000 00:00 0 +7faf0f800000-7faf10000000 rw-p 00000000 00:00 0 +7faf10000000-7faf10021000 rw-p 00000000 00:00 0 +7faf10021000-7faf14000000 ---p 00000000 00:00 0 +7faf14000000-7faf14021000 rw-p 00000000 00:00 0 +7faf14021000-7faf18000000 ---p 00000000 00:00 0 +7faf18000000-7faf18021000 rw-p 00000000 00:00 0 +7faf18021000-7faf1c000000 ---p 00000000 00:00 0 +7faf1c000000-7faf1c021000 rw-p 00000000 00:00 0 +7faf1c021000-7faf20000000 ---p 00000000 00:00 0 +7faf20000000-7faf20978000 rw-p 00000000 00:00 0 +7faf20978000-7faf24000000 ---p 00000000 00:00 0 +7faf24000000-7faf24915000 rw-p 00000000 00:00 0 +7faf24915000-7faf28000000 ---p 00000000 00:00 0 +7faf28000000-7faf28021000 rw-p 00000000 00:00 0 +7faf28021000-7faf2c000000 ---p 00000000 00:00 0 +7faf2c000000-7faf2c021000 rw-p 00000000 00:00 0 +7faf2c021000-7faf30000000 ---p 00000000 00:00 0 +7faf30000000-7faf30e1f000 rw-p 00000000 00:00 0 +7faf30e1f000-7faf34000000 ---p 00000000 00:00 0 +7faf34000000-7faf34666000 rw-p 00000000 00:00 0 +7faf34666000-7faf38000000 ---p 00000000 00:00 0 +7faf38000000-7faf38021000 rw-p 00000000 00:00 0 +7faf38021000-7faf3c000000 ---p 00000000 00:00 0 +7faf3c000000-7faf3c021000 rw-p 00000000 00:00 0 +7faf3c021000-7faf40000000 ---p 00000000 00:00 0 +7faf40000000-7faf40021000 rw-p 00000000 00:00 0 +7faf40021000-7faf44000000 ---p 00000000 00:00 0 +7faf44000000-7faf44021000 rw-p 00000000 00:00 0 +7faf44021000-7faf48000000 ---p 00000000 00:00 0 +7faf48000000-7faf48021000 rw-p 00000000 00:00 0 +7faf48021000-7faf4c000000 ---p 00000000 00:00 0 +7faf4c000000-7faf4c021000 rw-p 00000000 00:00 0 +7faf4c021000-7faf50000000 ---p 00000000 00:00 0 +7faf50000000-7faf50021000 rw-p 00000000 00:00 0 +7faf50021000-7faf54000000 ---p 00000000 00:00 0 +7faf54001000-7faf54003000 r--p 00000000 103:03 550882 /usr/lib/libxcb-dri2.so.0.0.0 +7faf54003000-7faf54005000 r-xp 00002000 103:03 550882 /usr/lib/libxcb-dri2.so.0.0.0 +7faf54005000-7faf54006000 r--p 00004000 103:03 550882 /usr/lib/libxcb-dri2.so.0.0.0 +7faf54006000-7faf54007000 r--p 00004000 103:03 550882 /usr/lib/libxcb-dri2.so.0.0.0 +7faf54007000-7faf54008000 rw-p 00005000 103:03 550882 /usr/lib/libxcb-dri2.so.0.0.0 +7faf54008000-7faf54009000 r--p 00000000 103:03 548550 /usr/lib/libX11-xcb.so.1.0.0 +7faf54009000-7faf5400a000 r-xp 00001000 103:03 548550 /usr/lib/libX11-xcb.so.1.0.0 +7faf5400a000-7faf5400b000 r--p 00002000 103:03 548550 /usr/lib/libX11-xcb.so.1.0.0 +7faf5400b000-7faf5400c000 r--p 00002000 103:03 548550 /usr/lib/libX11-xcb.so.1.0.0 +7faf5400c000-7faf5400d000 rw-p 00003000 103:03 548550 /usr/lib/libX11-xcb.so.1.0.0 +7faf5400d000-7faf54019000 r--p 00000000 103:03 562137 /usr/lib/libglapi.so.0.0.0 +7faf54019000-7faf54027000 r-xp 0000c000 103:03 562137 /usr/lib/libglapi.so.0.0.0 +7faf54027000-7faf54040000 r--p 0001a000 103:03 562137 /usr/lib/libglapi.so.0.0.0 +7faf54040000-7faf54041000 ---p 00033000 103:03 562137 /usr/lib/libglapi.so.0.0.0 +7faf54041000-7faf54045000 r--p 00033000 103:03 562137 /usr/lib/libglapi.so.0.0.0 +7faf54045000-7faf54046000 rw-p 00037000 103:03 562137 /usr/lib/libglapi.so.0.0.0 +7faf54046000-7faf54047000 rw-p 00000000 00:00 0 +7faf54047000-7faf5404a000 r--p 00000000 103:03 557905 /usr/lib/libGLX.so.0.0.0 +7faf5404a000-7faf54064000 r-xp 00003000 103:03 557905 /usr/lib/libGLX.so.0.0.0 +7faf54064000-7faf54067000 r--p 0001d000 103:03 557905 /usr/lib/libGLX.so.0.0.0 +7faf54067000-7faf54068000 ---p 00020000 103:03 557905 /usr/lib/libGLX.so.0.0.0 +7faf54068000-7faf54069000 r--p 00020000 103:03 557905 /usr/lib/libGLX.so.0.0.0 +7faf54069000-7faf5406a000 rw-p 00021000 103:03 557905 /usr/lib/libGLX.so.0.0.0 +7faf5406a000-7faf5407a000 rw-p 00000000 00:00 0 +7faf5407a000-7faf5407b000 r--p 00000000 103:03 555660 /usr/lib/libXcomposite.so.1.0.0 +7faf5407b000-7faf5407c000 r-xp 00001000 103:03 555660 /usr/lib/libXcomposite.so.1.0.0 +7faf5407c000-7faf5407d000 r--p 00002000 103:03 555660 /usr/lib/libXcomposite.so.1.0.0 +7faf5407d000-7faf5407e000 r--p 00002000 103:03 555660 /usr/lib/libXcomposite.so.1.0.0 +7faf5407e000-7faf5407f000 rw-p 00003000 103:03 555660 /usr/lib/libXcomposite.so.1.0.0 +7faf540a8000-7faf540a9000 ---p 00000000 00:00 0 +7faf540a9000-7faf541aa000 rw-p 00000000 00:00 0 +7faf541aa000-7faf541ae000 ---p 00000000 00:00 0 +7faf541ae000-7faf542ab000 rw-p 00000000 00:00 0 +7faf542ab000-7faf542af000 ---p 00000000 00:00 0 +7faf542af000-7faf545ac000 rw-p 00000000 00:00 0 +7faf545af000-7faf545b6000 r--p 00000000 103:03 557605 /usr/lib/libxfconf-0.so.3.0.0 +7faf545b6000-7faf545c1000 r-xp 00007000 103:03 557605 /usr/lib/libxfconf-0.so.3.0.0 +7faf545c1000-7faf545c7000 r--p 00012000 103:03 557605 /usr/lib/libxfconf-0.so.3.0.0 +7faf545c7000-7faf545c9000 r--p 00017000 103:03 557605 /usr/lib/libxfconf-0.so.3.0.0 +7faf545c9000-7faf545ca000 rw-p 00019000 103:03 557605 /usr/lib/libxfconf-0.so.3.0.0 +7faf545ca000-7faf545cb000 r--p 00000000 103:03 3412782 /usr/lib/jvm/java-15-openjdk/lib/libjawt.so +7faf545cb000-7faf545cc000 r-xp 00001000 103:03 3412782 /usr/lib/jvm/java-15-openjdk/lib/libjawt.so +7faf545cc000-7faf545cd000 r--p 00002000 103:03 3412782 /usr/lib/jvm/java-15-openjdk/lib/libjawt.so +7faf545cd000-7faf545ce000 r--p 00002000 103:03 3412782 /usr/lib/jvm/java-15-openjdk/lib/libjawt.so +7faf545ce000-7faf545cf000 rw-p 00003000 103:03 3412782 /usr/lib/jvm/java-15-openjdk/lib/libjawt.so +7faf545cf000-7faf545d1000 r--p 00000000 103:03 555514 /usr/lib/libXfixes.so.3.1.0 +7faf545d1000-7faf545d4000 r-xp 00002000 103:03 555514 /usr/lib/libXfixes.so.3.1.0 +7faf545d4000-7faf545d5000 r--p 00005000 103:03 555514 /usr/lib/libXfixes.so.3.1.0 +7faf545d5000-7faf545d6000 ---p 00006000 103:03 555514 /usr/lib/libXfixes.so.3.1.0 +7faf545d6000-7faf545d7000 r--p 00006000 103:03 555514 /usr/lib/libXfixes.so.3.1.0 +7faf545d7000-7faf545d8000 rw-p 00007000 103:03 555514 /usr/lib/libXfixes.so.3.1.0 +7faf545d8000-7faf545db000 r--p 00000000 103:03 555518 /usr/lib/libXcursor.so.1.0.2 +7faf545db000-7faf545e0000 r-xp 00003000 103:03 555518 /usr/lib/libXcursor.so.1.0.2 +7faf545e0000-7faf545e2000 r--p 00008000 103:03 555518 /usr/lib/libXcursor.so.1.0.2 +7faf545e2000-7faf545e3000 r--p 00009000 103:03 555518 /usr/lib/libXcursor.so.1.0.2 +7faf545e3000-7faf545e4000 rw-p 0000a000 103:03 555518 /usr/lib/libXcursor.so.1.0.2 +7faf545e4000-7faf545e8000 r--p 00000000 103:03 791741 /usr/lib/gio/modules/libdconfsettings.so +7faf545e8000-7faf545ee000 r-xp 00004000 103:03 791741 /usr/lib/gio/modules/libdconfsettings.so +7faf545ee000-7faf545f1000 r--p 0000a000 103:03 791741 /usr/lib/gio/modules/libdconfsettings.so +7faf545f1000-7faf545f2000 r--p 0000c000 103:03 791741 /usr/lib/gio/modules/libdconfsettings.so +7faf545f2000-7faf545f3000 rw-p 0000d000 103:03 791741 /usr/lib/gio/modules/libdconfsettings.so +7faf545f3000-7faf545f6000 r--p 00000000 103:03 791414 /usr/lib/gio/modules/libxfconfgsettingsbackend.so +7faf545f6000-7faf545f9000 r-xp 00003000 103:03 791414 /usr/lib/gio/modules/libxfconfgsettingsbackend.so +7faf545f9000-7faf545fa000 r--p 00006000 103:03 791414 /usr/lib/gio/modules/libxfconfgsettingsbackend.so +7faf545fa000-7faf545fb000 ---p 00007000 103:03 791414 /usr/lib/gio/modules/libxfconfgsettingsbackend.so +7faf545fb000-7faf545fc000 r--p 00007000 103:03 791414 /usr/lib/gio/modules/libxfconfgsettingsbackend.so +7faf545fc000-7faf545fd000 rw-p 00008000 103:03 791414 /usr/lib/gio/modules/libxfconfgsettingsbackend.so +7faf545fd000-7faf54606000 r--p 00000000 103:03 560647 /usr/lib/libblkid.so.1.1.0 +7faf54606000-7faf54638000 r-xp 00009000 103:03 560647 /usr/lib/libblkid.so.1.1.0 +7faf54638000-7faf54648000 r--p 0003b000 103:03 560647 /usr/lib/libblkid.so.1.1.0 +7faf54648000-7faf54649000 ---p 0004b000 103:03 560647 /usr/lib/libblkid.so.1.1.0 +7faf54649000-7faf5464d000 r--p 0004b000 103:03 560647 /usr/lib/libblkid.so.1.1.0 +7faf5464d000-7faf5464e000 rw-p 0004f000 103:03 560647 /usr/lib/libblkid.so.1.1.0 +7faf5464e000-7faf54650000 r--p 00000000 103:03 527743 /usr/lib/libffi.so.7.1.0 +7faf54650000-7faf54656000 r-xp 00002000 103:03 527743 /usr/lib/libffi.so.7.1.0 +7faf54656000-7faf54658000 r--p 00008000 103:03 527743 /usr/lib/libffi.so.7.1.0 +7faf54658000-7faf54659000 r--p 00009000 103:03 527743 /usr/lib/libffi.so.7.1.0 +7faf54659000-7faf5465a000 rw-p 0000a000 103:03 527743 /usr/lib/libffi.so.7.1.0 +7faf5465a000-7faf5465e000 r--p 00000000 103:03 527823 /usr/lib/libresolv-2.33.so +7faf5465e000-7faf5466c000 r-xp 00004000 103:03 527823 /usr/lib/libresolv-2.33.so +7faf5466c000-7faf5466f000 r--p 00012000 103:03 527823 /usr/lib/libresolv-2.33.so +7faf5466f000-7faf54670000 ---p 00015000 103:03 527823 /usr/lib/libresolv-2.33.so +7faf54670000-7faf54671000 r--p 00015000 103:03 527823 /usr/lib/libresolv-2.33.so +7faf54671000-7faf54672000 rw-p 00016000 103:03 527823 /usr/lib/libresolv-2.33.so +7faf54672000-7faf54674000 rw-p 00000000 00:00 0 +7faf54674000-7faf54680000 r--p 00000000 103:03 560879 /usr/lib/libmount.so.1.1.0 +7faf54680000-7faf546bc000 r-xp 0000c000 103:03 560879 /usr/lib/libmount.so.1.1.0 +7faf546bc000-7faf546ce000 r--p 00048000 103:03 560879 /usr/lib/libmount.so.1.1.0 +7faf546ce000-7faf546cf000 ---p 0005a000 103:03 560879 /usr/lib/libmount.so.1.1.0 +7faf546cf000-7faf546d1000 r--p 0005a000 103:03 560879 /usr/lib/libmount.so.1.1.0 +7faf546d1000-7faf546d2000 rw-p 0005c000 103:03 560879 /usr/lib/libmount.so.1.1.0 +7faf546d2000-7faf546d3000 r--p 00000000 103:03 541151 /usr/lib/libgmodule-2.0.so.0.6800.1 +7faf546d3000-7faf546d4000 r-xp 00001000 103:03 541151 /usr/lib/libgmodule-2.0.so.0.6800.1 +7faf546d4000-7faf546d5000 r--p 00002000 103:03 541151 /usr/lib/libgmodule-2.0.so.0.6800.1 +7faf546d5000-7faf546d6000 r--p 00002000 103:03 541151 /usr/lib/libgmodule-2.0.so.0.6800.1 +7faf546d6000-7faf546d7000 rw-p 00003000 103:03 541151 /usr/lib/libgmodule-2.0.so.0.6800.1 +7faf546d7000-7faf546e5000 r--p 00000000 103:03 541156 /usr/lib/libgobject-2.0.so.0.6800.1 +7faf546e5000-7faf54714000 r-xp 0000e000 103:03 541156 /usr/lib/libgobject-2.0.so.0.6800.1 +7faf54714000-7faf5472c000 r--p 0003d000 103:03 541156 /usr/lib/libgobject-2.0.so.0.6800.1 +7faf5472c000-7faf5472d000 ---p 00055000 103:03 541156 /usr/lib/libgobject-2.0.so.0.6800.1 +7faf5472d000-7faf54730000 r--p 00055000 103:03 541156 /usr/lib/libgobject-2.0.so.0.6800.1 +7faf54730000-7faf54731000 rw-p 00058000 103:03 541156 /usr/lib/libgobject-2.0.so.0.6800.1 +7faf54731000-7faf54768000 r--p 00000000 103:03 541138 /usr/lib/libgio-2.0.so.0.6800.1 +7faf54768000-7faf54865000 r-xp 00037000 103:03 541138 /usr/lib/libgio-2.0.so.0.6800.1 +7faf54865000-7faf548e3000 r--p 00134000 103:03 541138 /usr/lib/libgio-2.0.so.0.6800.1 +7faf548e3000-7faf548e4000 ---p 001b2000 103:03 541138 /usr/lib/libgio-2.0.so.0.6800.1 +7faf548e4000-7faf548eb000 r--p 001b2000 103:03 541138 /usr/lib/libgio-2.0.so.0.6800.1 +7faf548eb000-7faf548ec000 rw-p 001b9000 103:03 541138 /usr/lib/libgio-2.0.so.0.6800.1 +7faf548ec000-7faf548ee000 rw-p 00000000 00:00 0 +7faf548ee000-7faf548f0000 r--p 00000000 103:03 555564 /usr/lib/libXrandr.so.2.2.0 +7faf548f0000-7faf548f7000 r-xp 00002000 103:03 555564 /usr/lib/libXrandr.so.2.2.0 +7faf548f7000-7faf548f9000 r--p 00009000 103:03 555564 /usr/lib/libXrandr.so.2.2.0 +7faf548f9000-7faf548fa000 r--p 0000a000 103:03 555564 /usr/lib/libXrandr.so.2.2.0 +7faf548fa000-7faf548fb000 rw-p 0000b000 103:03 555564 /usr/lib/libXrandr.so.2.2.0 +7faf548fb000-7faf548fd000 r--p 00000000 103:03 540935 /usr/lib/libpcre.so.1.2.12 +7faf548fd000-7faf5494d000 r-xp 00002000 103:03 540935 /usr/lib/libpcre.so.1.2.12 +7faf5494d000-7faf5496b000 r--p 00052000 103:03 540935 /usr/lib/libpcre.so.1.2.12 +7faf5496b000-7faf5496c000 r--p 0006f000 103:03 540935 /usr/lib/libpcre.so.1.2.12 +7faf5496c000-7faf5496d000 rw-p 00070000 103:03 540935 /usr/lib/libpcre.so.1.2.12 +7faf5496d000-7faf5498a000 r--p 00000000 103:03 541144 /usr/lib/libglib-2.0.so.0.6800.1 +7faf5498a000-7faf54a16000 r-xp 0001d000 103:03 541144 /usr/lib/libglib-2.0.so.0.6800.1 +7faf54a16000-7faf54a9e000 r--p 000a9000 103:03 541144 /usr/lib/libglib-2.0.so.0.6800.1 +7faf54a9e000-7faf54a9f000 ---p 00131000 103:03 541144 /usr/lib/libglib-2.0.so.0.6800.1 +7faf54a9f000-7faf54aa0000 r--p 00131000 103:03 541144 /usr/lib/libglib-2.0.so.0.6800.1 +7faf54aa0000-7faf54aa1000 rw-p 00132000 103:03 541144 /usr/lib/libglib-2.0.so.0.6800.1 +7faf54aa1000-7faf54aa2000 rw-p 00000000 00:00 0 +7faf54aa2000-7faf54aa5000 r--p 00000000 103:03 569580 /usr/lib/libgraphite2.so.3.2.1 +7faf54aa5000-7faf54abf000 r-xp 00003000 103:03 569580 /usr/lib/libgraphite2.so.3.2.1 +7faf54abf000-7faf54ac4000 r--p 0001d000 103:03 569580 /usr/lib/libgraphite2.so.3.2.1 +7faf54ac4000-7faf54ac6000 r--p 00021000 103:03 569580 /usr/lib/libgraphite2.so.3.2.1 +7faf54ac6000-7faf54ac7000 rw-p 00023000 103:03 569580 /usr/lib/libgraphite2.so.3.2.1 +7faf54ac7000-7faf54ad1000 r--p 00000000 103:03 564926 /usr/lib/libharfbuzz.so.0.20800.0 +7faf54ad1000-7faf54b65000 r-xp 0000a000 103:03 564926 /usr/lib/libharfbuzz.so.0.20800.0 +7faf54b65000-7faf54b98000 r--p 0009e000 103:03 564926 /usr/lib/libharfbuzz.so.0.20800.0 +7faf54b98000-7faf54b99000 ---p 000d1000 103:03 564926 /usr/lib/libharfbuzz.so.0.20800.0 +7faf54b99000-7faf54b9a000 r--p 000d1000 103:03 564926 /usr/lib/libharfbuzz.so.0.20800.0 +7faf54b9a000-7faf54b9b000 rw-p 000d2000 103:03 564926 /usr/lib/libharfbuzz.so.0.20800.0 +7faf54b9b000-7faf54ba1000 r--p 00000000 103:03 550844 /usr/lib/libpng16.so.16.37.0 +7faf54ba1000-7faf54bc5000 r-xp 00006000 103:03 550844 /usr/lib/libpng16.so.16.37.0 +7faf54bc5000-7faf54bd0000 r--p 0002a000 103:03 550844 /usr/lib/libpng16.so.16.37.0 +7faf54bd0000-7faf54bd1000 r--p 00034000 103:03 550844 /usr/lib/libpng16.so.16.37.0 +7faf54bd1000-7faf54bd2000 rw-p 00035000 103:03 550844 /usr/lib/libpng16.so.16.37.0 +7faf54bd2000-7faf54bd4000 r--p 00000000 103:03 561305 /usr/lib/libbz2.so.1.0.8 +7faf54bd4000-7faf54be1000 r-xp 00002000 103:03 561305 /usr/lib/libbz2.so.1.0.8 +7faf54be1000-7faf54be3000 r--p 0000f000 103:03 561305 /usr/lib/libbz2.so.1.0.8 +7faf54be3000-7faf54be4000 r--p 00010000 103:03 561305 /usr/lib/libbz2.so.1.0.8 +7faf54be4000-7faf54be5000 rw-p 00011000 103:03 561305 /usr/lib/libbz2.so.1.0.8 +7faf54be5000-7faf54bf2000 r--p 00000000 103:03 574286 /usr/lib/libfreetype.so.6.17.4 +7faf54bf2000-7faf54c78000 r-xp 0000d000 103:03 574286 /usr/lib/libfreetype.so.6.17.4 +7faf54c78000-7faf54cb0000 r--p 00093000 103:03 574286 /usr/lib/libfreetype.so.6.17.4 +7faf54cb0000-7faf54cb1000 ---p 000cb000 103:03 574286 /usr/lib/libfreetype.so.6.17.4 +7faf54cb1000-7faf54cb8000 r--p 000cb000 103:03 574286 /usr/lib/libfreetype.so.6.17.4 +7faf54cb8000-7faf54cb9000 rw-p 000d2000 103:03 574286 /usr/lib/libfreetype.so.6.17.4 +7faf54cb9000-7faf54cbd000 r--p 00000000 103:03 3410272 /usr/lib/jvm/java-15-openjdk/lib/libfontmanager.so +7faf54cbd000-7faf54da9000 r-xp 00004000 103:03 3410272 /usr/lib/jvm/java-15-openjdk/lib/libfontmanager.so +7faf54da9000-7faf54de9000 r--p 000f0000 103:03 3410272 /usr/lib/jvm/java-15-openjdk/lib/libfontmanager.so +7faf54de9000-7faf54dea000 ---p 00130000 103:03 3410272 /usr/lib/jvm/java-15-openjdk/lib/libfontmanager.so +7faf54dea000-7faf54deb000 r--p 00130000 103:03 3410272 /usr/lib/jvm/java-15-openjdk/lib/libfontmanager.so +7faf54deb000-7faf54dec000 rw-p 00131000 103:03 3410272 /usr/lib/jvm/java-15-openjdk/lib/libfontmanager.so +7faf54dec000-7faf54def000 rw-p 00000000 00:00 0 +7faf54def000-7faf54df0000 r--p 00000000 103:03 555555 /usr/lib/libXinerama.so.1.0.0 +7faf54df0000-7faf54df1000 r-xp 00001000 103:03 555555 /usr/lib/libXinerama.so.1.0.0 +7faf54df1000-7faf54df2000 r--p 00002000 103:03 555555 /usr/lib/libXinerama.so.1.0.0 +7faf54df2000-7faf54df3000 r--p 00002000 103:03 555555 /usr/lib/libXinerama.so.1.0.0 +7faf54df3000-7faf54df4000 rw-p 00003000 103:03 555555 /usr/lib/libXinerama.so.1.0.0 +7faf54df4000-7faf54df6000 r--p 00000000 103:03 557784 /usr/lib/libXdmcp.so.6.0.0 +7faf54df6000-7faf54df8000 r-xp 00002000 103:03 557784 /usr/lib/libXdmcp.so.6.0.0 +7faf54df8000-7faf54dfa000 r--p 00004000 103:03 557784 /usr/lib/libXdmcp.so.6.0.0 +7faf54dfa000-7faf54dfb000 r--p 00005000 103:03 557784 /usr/lib/libXdmcp.so.6.0.0 +7faf54dfb000-7faf54dfc000 rw-p 00006000 103:03 557784 /usr/lib/libXdmcp.so.6.0.0 +7faf54dfc000-7faf54e08000 r--p 00000000 103:03 550950 /usr/lib/libxcb.so.1.1.0 +7faf54e08000-7faf54e1b000 r-xp 0000c000 103:03 550950 /usr/lib/libxcb.so.1.1.0 +7faf54e1b000-7faf54e24000 r--p 0001f000 103:03 550950 /usr/lib/libxcb.so.1.1.0 +7faf54e24000-7faf54e25000 r--p 00027000 103:03 550950 /usr/lib/libxcb.so.1.1.0 +7faf54e25000-7faf54e26000 rw-p 00028000 103:03 550950 /usr/lib/libxcb.so.1.1.0 +7faf54e26000-7faf54e29000 r--p 00000000 103:03 553923 /usr/lib/libXi.so.6.1.0 +7faf54e29000-7faf54e34000 r-xp 00003000 103:03 553923 /usr/lib/libXi.so.6.1.0 +7faf54e34000-7faf54e37000 r--p 0000e000 103:03 553923 /usr/lib/libXi.so.6.1.0 +7faf54e37000-7faf54e38000 r--p 00010000 103:03 553923 /usr/lib/libXi.so.6.1.0 +7faf54e38000-7faf54e39000 rw-p 00011000 103:03 553923 /usr/lib/libXi.so.6.1.0 +7faf54e39000-7faf54e3b000 r--p 00000000 103:03 557100 /usr/lib/libXtst.so.6.1.0 +7faf54e3b000-7faf54e3e000 r-xp 00002000 103:03 557100 /usr/lib/libXtst.so.6.1.0 +7faf54e3e000-7faf54e3f000 r--p 00005000 103:03 557100 /usr/lib/libXtst.so.6.1.0 +7faf54e3f000-7faf54e40000 r--p 00005000 103:03 557100 /usr/lib/libXtst.so.6.1.0 +7faf54e40000-7faf54e41000 rw-p 00006000 103:03 557100 /usr/lib/libXtst.so.6.1.0 +7faf54e41000-7faf54e43000 r--p 00000000 103:03 557913 /usr/lib/libXrender.so.1.3.0 +7faf54e43000-7faf54e4a000 r-xp 00002000 103:03 557913 /usr/lib/libXrender.so.1.3.0 +7faf54e4a000-7faf54e4c000 r--p 00009000 103:03 557913 /usr/lib/libXrender.so.1.3.0 +7faf54e4c000-7faf54e4d000 r--p 0000a000 103:03 557913 /usr/lib/libXrender.so.1.3.0 +7faf54e4d000-7faf54e4e000 rw-p 0000b000 103:03 557913 /usr/lib/libXrender.so.1.3.0 +7faf54e4e000-7faf54e6a000 r--p 00000000 103:03 548555 /usr/lib/libX11.so.6.4.0 +7faf54e6a000-7faf54ef4000 r-xp 0001c000 103:03 548555 /usr/lib/libX11.so.6.4.0 +7faf54ef4000-7faf54f88000 r--p 000a6000 103:03 548555 /usr/lib/libX11.so.6.4.0 +7faf54f88000-7faf54f8b000 r--p 00139000 103:03 548555 /usr/lib/libX11.so.6.4.0 +7faf54f8b000-7faf54f8f000 rw-p 0013c000 103:03 548555 /usr/lib/libX11.so.6.4.0 +7faf54f93000-7faf54f94000 r--p 00000000 103:03 541186 /usr/lib/libgthread-2.0.so.0.6800.1 +7faf54f94000-7faf54f95000 r-xp 00001000 103:03 541186 /usr/lib/libgthread-2.0.so.0.6800.1 +7faf54f95000-7faf54f96000 r--p 00002000 103:03 541186 /usr/lib/libgthread-2.0.so.0.6800.1 +7faf54f96000-7faf54f97000 r--p 00002000 103:03 541186 /usr/lib/libgthread-2.0.so.0.6800.1 +7faf54f97000-7faf54f98000 rw-p 00003000 103:03 541186 /usr/lib/libgthread-2.0.so.0.6800.1 +7faf54f98000-7faf54fb8000 r--p 00000000 103:03 793867 /usr/share/glib-2.0/schemas/gschemas.compiled +7faf54fb8000-7faf54fc8000 r--p 00000000 103:03 3412780 /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +7faf54fc8000-7faf55005000 r-xp 00010000 103:03 3412780 /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +7faf55005000-7faf55016000 r--p 0004d000 103:03 3412780 /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +7faf55016000-7faf55017000 ---p 0005e000 103:03 3412780 /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +7faf55017000-7faf55018000 r--p 0005e000 103:03 3412780 /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +7faf55018000-7faf5501a000 rw-p 0005f000 103:03 3412780 /usr/lib/jvm/java-15-openjdk/lib/libawt_xawt.so +7faf5501a000-7faf5501c000 rw-p 00000000 00:00 0 +7faf5501c000-7faf55049000 r--p 00000000 103:03 3410263 /usr/lib/jvm/java-15-openjdk/lib/libawt.so +7faf55049000-7faf550b2000 r-xp 0002d000 103:03 3410263 /usr/lib/jvm/java-15-openjdk/lib/libawt.so +7faf550b2000-7faf550be000 r--p 00096000 103:03 3410263 /usr/lib/jvm/java-15-openjdk/lib/libawt.so +7faf550be000-7faf550bf000 ---p 000a2000 103:03 3410263 /usr/lib/jvm/java-15-openjdk/lib/libawt.so +7faf550bf000-7faf550c0000 r--p 000a2000 103:03 3410263 /usr/lib/jvm/java-15-openjdk/lib/libawt.so +7faf550c0000-7faf550cb000 rw-p 000a3000 103:03 3410263 /usr/lib/jvm/java-15-openjdk/lib/libawt.so +7faf550cb000-7faf552f0000 rw-p 00000000 00:00 0 +7faf552f1000-7faf552f2000 ---p 00000000 00:00 0 +7faf552f2000-7faf553f3000 rw-p 00000000 00:00 0 +7faf553f3000-7faf553f7000 ---p 00000000 00:00 0 +7faf553f7000-7faf556f4000 rw-p 00000000 00:00 0 +7faf556f7000-7faf556fb000 ---p 00000000 00:00 0 +7faf556fb000-7faf557f8000 rw-p 00000000 00:00 0 +7faf557f8000-7faf557fc000 ---p 00000000 00:00 0 +7faf557fc000-7faf558f9000 rw-p 00000000 00:00 0 +7faf558f9000-7faf558fd000 ---p 00000000 00:00 0 +7faf558fd000-7faf559fa000 rw-p 00000000 00:00 0 +7faf559fa000-7faf559fe000 ---p 00000000 00:00 0 +7faf559fe000-7faf55afb000 rw-p 00000000 00:00 0 +7faf55afb000-7faf55aff000 ---p 00000000 00:00 0 +7faf55aff000-7faf55bfc000 rw-p 00000000 00:00 0 +7faf55bfc000-7faf55c00000 ---p 00000000 00:00 0 +7faf55c00000-7faf55cfd000 rw-p 00000000 00:00 0 +7faf55cfd000-7faf55d01000 ---p 00000000 00:00 0 +7faf55d01000-7faf55dfe000 rw-p 00000000 00:00 0 +7faf55dfe000-7faf55e02000 ---p 00000000 00:00 0 +7faf55e02000-7faf55eff000 rw-p 00000000 00:00 0 +7faf55eff000-7faf55f03000 ---p 00000000 00:00 0 +7faf55f03000-7faf58000000 rw-p 00000000 00:00 0 +7faf58000000-7faf58021000 rw-p 00000000 00:00 0 +7faf58021000-7faf5c000000 ---p 00000000 00:00 0 +7faf5c000000-7faf5c021000 rw-p 00000000 00:00 0 +7faf5c021000-7faf60000000 ---p 00000000 00:00 0 +7faf60000000-7faf60021000 rw-p 00000000 00:00 0 +7faf60021000-7faf64000000 ---p 00000000 00:00 0 +7faf64004000-7faf64008000 r--p 00000000 103:03 560479 /usr/lib/libnss_myhostname.so.2 +7faf64008000-7faf64015000 r-xp 00004000 103:03 560479 /usr/lib/libnss_myhostname.so.2 +7faf64015000-7faf6401e000 r--p 00011000 103:03 560479 /usr/lib/libnss_myhostname.so.2 +7faf6401e000-7faf6401f000 ---p 0001a000 103:03 560479 /usr/lib/libnss_myhostname.so.2 +7faf6401f000-7faf64023000 r--p 0001a000 103:03 560479 /usr/lib/libnss_myhostname.so.2 +7faf64023000-7faf64024000 rw-p 0001e000 103:03 560479 /usr/lib/libnss_myhostname.so.2 +7faf64024000-7faf64027000 r--p 00000000 103:03 531602 /usr/lib/libcap.so.2.49 +7faf64027000-7faf6402b000 r-xp 00003000 103:03 531602 /usr/lib/libcap.so.2.49 +7faf6402b000-7faf6402d000 r--p 00007000 103:03 531602 /usr/lib/libcap.so.2.49 +7faf6402d000-7faf6402e000 r--p 00008000 103:03 531602 /usr/lib/libcap.so.2.49 +7faf6402e000-7faf6402f000 rw-p 00009000 103:03 531602 /usr/lib/libcap.so.2.49 +7faf6402f000-7faf64033000 ---p 00000000 00:00 0 +7faf64033000-7faf64130000 rw-p 00000000 00:00 0 +7faf64130000-7faf64134000 ---p 00000000 00:00 0 +7faf64134000-7faf64231000 rw-p 00000000 00:00 0 +7faf64231000-7faf64567000 r--p 00000000 103:03 559355 /usr/lib/locale/locale-archive +7faf64567000-7faf6456b000 ---p 00000000 00:00 0 +7faf6456b000-7faf64e68000 rw-p 00000000 00:00 0 +7faf64e69000-7faf64e6a000 r--p 00000000 103:03 1449641 /usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo +7faf64e6a000-7faf64eb2000 rw-p 00000000 00:00 0 +7faf64eb2000-7faf651d2000 ---p 00000000 00:00 0 +7faf651d2000-7faf651e2000 rw-p 00000000 00:00 0 +7faf651e2000-7faf65252000 ---p 00000000 00:00 0 +7faf65252000-7faf6525a000 rw-p 00000000 00:00 0 +7faf6525a000-7faf68d02000 ---p 00000000 00:00 0 +7faf68d02000-7faf68d4a000 rw-p 00000000 00:00 0 +7faf68d4a000-7faf6906a000 ---p 00000000 00:00 0 +7faf6906a000-7faf6907a000 rw-p 00000000 00:00 0 +7faf6907a000-7faf690ea000 ---p 00000000 00:00 0 +7faf690ea000-7faf690f2000 rw-p 00000000 00:00 0 +7faf690f2000-7faf6cb9a000 ---p 00000000 00:00 0 +7faf6cb9a000-7faf6ce0a000 rwxp 00000000 00:00 0 +7faf6ce0a000-7faf6d12c000 ---p 00000000 00:00 0 +7faf6d12c000-7faf6d54c000 rwxp 00000000 00:00 0 +7faf6d54c000-7faf74663000 ---p 00000000 00:00 0 +7faf74663000-7faf748d3000 rwxp 00000000 00:00 0 +7faf748d3000-7faf7bb9a000 ---p 00000000 00:00 0 +7faf7bb9a000-7faf84000000 r--s 00000000 103:03 3412773 /usr/lib/jvm/java-15-openjdk/lib/modules +7faf84000000-7faf8477f000 rw-p 00000000 00:00 0 +7faf8477f000-7faf88000000 ---p 00000000 00:00 0 +7faf88000000-7faf88001000 r--p 00000000 103:03 1449642 /usr/share/locale/en/LC_MESSAGES/gtk30.mo +7faf88001000-7faf88002000 rw-s 00000000 00:01 246109 /memfd:xshmfence (deleted) +7faf88002000-7faf88003000 rw-s 00000000 00:01 250920 /memfd:xshmfence (deleted) +7faf88003000-7faf88006000 r--p 00000000 103:03 527828 /usr/lib/librt-2.33.so +7faf88006000-7faf8800a000 r-xp 00003000 103:03 527828 /usr/lib/librt-2.33.so +7faf8800a000-7faf8800c000 r--p 00007000 103:03 527828 /usr/lib/librt-2.33.so +7faf8800c000-7faf8800d000 r--p 00008000 103:03 527828 /usr/lib/librt-2.33.so +7faf8800d000-7faf8800e000 rw-p 00009000 103:03 527828 /usr/lib/librt-2.33.so +7faf8800e000-7faf88015000 r--p 00000000 103:03 560484 /usr/lib/libnss_mymachines.so.2 +7faf88015000-7faf88049000 r-xp 00007000 103:03 560484 /usr/lib/libnss_mymachines.so.2 +7faf88049000-7faf8805c000 r--p 0003b000 103:03 560484 /usr/lib/libnss_mymachines.so.2 +7faf8805c000-7faf8805f000 r--p 0004d000 103:03 560484 /usr/lib/libnss_mymachines.so.2 +7faf8805f000-7faf88060000 rw-p 00050000 103:03 560484 /usr/lib/libnss_mymachines.so.2 +7faf88060000-7faf88061000 rw-p 00000000 00:00 0 +7faf88061000-7faf88062000 rwxp 00000000 00:00 0 +7faf88062000-7faf88063000 rw-s 127fa6000 00:05 577 /dev/dri/card0 +7faf88063000-7faf88065000 r--p 00000000 103:04 19405574 /home/heero/.config/dconf/user +7faf88065000-7faf88069000 r--p 00000000 103:03 554076 /usr/lib/libXext.so.6.4.0 +7faf88069000-7faf88074000 r-xp 00004000 103:03 554076 /usr/lib/libXext.so.6.4.0 +7faf88074000-7faf88078000 r--p 0000f000 103:03 554076 /usr/lib/libXext.so.6.4.0 +7faf88078000-7faf88079000 r--p 00012000 103:03 554076 /usr/lib/libXext.so.6.4.0 +7faf88079000-7faf8807a000 rw-p 00013000 103:03 554076 /usr/lib/libXext.so.6.4.0 +7faf8807a000-7faf8807e000 r--p 00000000 103:03 3412768 /usr/lib/jvm/java-15-openjdk/lib/libverify.so +7faf8807e000-7faf88085000 r-xp 00004000 103:03 3412768 /usr/lib/jvm/java-15-openjdk/lib/libverify.so +7faf88085000-7faf88087000 r--p 0000b000 103:03 3412768 /usr/lib/jvm/java-15-openjdk/lib/libverify.so +7faf88087000-7faf88089000 r--p 0000c000 103:03 3412768 /usr/lib/jvm/java-15-openjdk/lib/libverify.so +7faf88089000-7faf8808a000 rw-p 0000e000 103:03 3412768 /usr/lib/jvm/java-15-openjdk/lib/libverify.so +7faf8808a000-7faf8808c000 r--p 00000000 103:03 3412772 /usr/lib/jvm/java-15-openjdk/lib/libzip.so +7faf8808c000-7faf88090000 r-xp 00002000 103:03 3412772 /usr/lib/jvm/java-15-openjdk/lib/libzip.so +7faf88090000-7faf88092000 r--p 00006000 103:03 3412772 /usr/lib/jvm/java-15-openjdk/lib/libzip.so +7faf88092000-7faf88093000 r--p 00007000 103:03 3412772 /usr/lib/jvm/java-15-openjdk/lib/libzip.so +7faf88093000-7faf88094000 rw-p 00008000 103:03 3412772 /usr/lib/jvm/java-15-openjdk/lib/libzip.so +7faf88094000-7faf88098000 r--p 00000000 103:03 3411689 /usr/lib/jvm/java-15-openjdk/lib/libnet.so +7faf88098000-7faf880a6000 r-xp 00004000 103:03 3411689 /usr/lib/jvm/java-15-openjdk/lib/libnet.so +7faf880a6000-7faf880aa000 r--p 00012000 103:03 3411689 /usr/lib/jvm/java-15-openjdk/lib/libnet.so +7faf880aa000-7faf880ab000 r--p 00015000 103:03 3411689 /usr/lib/jvm/java-15-openjdk/lib/libnet.so +7faf880ab000-7faf880ac000 rw-p 00016000 103:03 3411689 /usr/lib/jvm/java-15-openjdk/lib/libnet.so +7faf880ac000-7faf880b0000 ---p 00000000 00:00 0 +7faf880b0000-7faf881ad000 rw-p 00000000 00:00 0 +7faf881ad000-7faf881ae000 ---p 00000000 00:00 0 +7faf881ae000-7faf883cc000 rw-p 00000000 00:00 0 +7faf883cc000-7faf883cd000 ---p 00000000 00:00 0 +7faf883cd000-7faf884ce000 rw-p 00000000 00:00 0 +7faf884ce000-7faf884cf000 ---p 00000000 00:00 0 +7faf884cf000-7faf88fda000 rw-p 00000000 00:00 0 +7faf88fda000-7faf88fdb000 ---p 00000000 00:00 0 +7faf88fdb000-7faf890dc000 rw-p 00000000 00:00 0 +7faf890dc000-7faf890dd000 ---p 00000000 00:00 0 +7faf890dd000-7faf891de000 rw-p 00000000 00:00 0 +7faf891de000-7faf891df000 ---p 00000000 00:00 0 +7faf891df000-7faf8936b000 rw-p 00000000 00:00 0 +7faf8936b000-7faf893cf000 ---p 00000000 00:00 0 +7faf893cf000-7faf893d1000 rw-p 00000000 00:00 0 +7faf893d1000-7faf893df000 ---p 00000000 00:00 0 +7faf893df000-7faf893e0000 rw-p 00000000 00:00 0 +7faf893e0000-7faf89b35000 ---p 00000000 00:00 0 +7faf89b35000-7faf89b3e000 rw-p 00000000 00:00 0 +7faf89b3e000-7faf89ba2000 ---p 00000000 00:00 0 +7faf89ba2000-7faf89ba4000 rw-p 00000000 00:00 0 +7faf89ba4000-7faf89bb2000 ---p 00000000 00:00 0 +7faf89bb2000-7faf89bb3000 rw-p 00000000 00:00 0 +7faf89bb3000-7faf8a308000 ---p 00000000 00:00 0 +7faf8a308000-7faf8a311000 rw-p 00000000 00:00 0 +7faf8a311000-7faf8a375000 ---p 00000000 00:00 0 +7faf8a375000-7faf8a377000 rw-p 00000000 00:00 0 +7faf8a377000-7faf8a385000 ---p 00000000 00:00 0 +7faf8a385000-7faf8a386000 rw-p 00000000 00:00 0 +7faf8a386000-7faf8aadb000 ---p 00000000 00:00 0 +7faf8aadb000-7faf8b4ea000 rw-p 00000000 00:00 0 +7faf8b4ea000-7faf8b5d0000 ---p 00000000 00:00 0 +7faf8b5d0000-7faf8b5d9000 rw-p 00000000 00:00 0 +7faf8b5d9000-7faf8b6bb000 ---p 00000000 00:00 0 +7faf8b6bb000-7faf8b6be000 r--p 00000000 103:03 527805 /usr/lib/libnss_files-2.33.so +7faf8b6be000-7faf8b6c5000 r-xp 00003000 103:03 527805 /usr/lib/libnss_files-2.33.so +7faf8b6c5000-7faf8b6c7000 r--p 0000a000 103:03 527805 /usr/lib/libnss_files-2.33.so +7faf8b6c7000-7faf8b6c8000 r--p 0000b000 103:03 527805 /usr/lib/libnss_files-2.33.so +7faf8b6c8000-7faf8b6c9000 rw-p 0000c000 103:03 527805 /usr/lib/libnss_files-2.33.so +7faf8b6c9000-7faf8b6cf000 rw-p 00000000 00:00 0 +7faf8b6cf000-7faf8b6d0000 rw-s 104f67000 00:05 577 /dev/dri/card0 +7faf8b6d0000-7faf8b6d1000 r--s 00000000 00:27 128 /run/user/1000/dconf/user +7faf8b6d1000-7faf8b6d2000 r--p 00000000 103:03 550862 /usr/lib/libXau.so.6.0.0 +7faf8b6d2000-7faf8b6d3000 r-xp 00001000 103:03 550862 /usr/lib/libXau.so.6.0.0 +7faf8b6d3000-7faf8b6d4000 r--p 00002000 103:03 550862 /usr/lib/libXau.so.6.0.0 +7faf8b6d4000-7faf8b6d5000 r--p 00002000 103:03 550862 /usr/lib/libXau.so.6.0.0 +7faf8b6d5000-7faf8b6d6000 rw-p 00003000 103:03 550862 /usr/lib/libXau.so.6.0.0 +7faf8b6d6000-7faf8b6dd000 r--p 00000000 103:03 3411691 /usr/lib/jvm/java-15-openjdk/lib/libnio.so +7faf8b6dd000-7faf8b6e5000 r-xp 00007000 103:03 3411691 /usr/lib/jvm/java-15-openjdk/lib/libnio.so +7faf8b6e5000-7faf8b6e9000 r--p 0000f000 103:03 3411691 /usr/lib/jvm/java-15-openjdk/lib/libnio.so +7faf8b6e9000-7faf8b6ea000 ---p 00013000 103:03 3411691 /usr/lib/jvm/java-15-openjdk/lib/libnio.so +7faf8b6ea000-7faf8b6eb000 r--p 00013000 103:03 3411691 /usr/lib/jvm/java-15-openjdk/lib/libnio.so +7faf8b6eb000-7faf8b6ec000 rw-p 00014000 103:03 3411691 /usr/lib/jvm/java-15-openjdk/lib/libnio.so +7faf8b6ec000-7faf8b6f1000 rw-p 00000000 00:00 0 +7faf8b6f1000-7faf8b6f8000 ---p 00000000 00:00 0 +7faf8b6f8000-7faf8b705000 r--p 00000000 103:03 3410285 /usr/lib/jvm/java-15-openjdk/lib/libjava.so +7faf8b705000-7faf8b717000 r-xp 0000d000 103:03 3410285 /usr/lib/jvm/java-15-openjdk/lib/libjava.so +7faf8b717000-7faf8b71d000 r--p 0001f000 103:03 3410285 /usr/lib/jvm/java-15-openjdk/lib/libjava.so +7faf8b71d000-7faf8b71e000 r--p 00024000 103:03 3410285 /usr/lib/jvm/java-15-openjdk/lib/libjava.so +7faf8b71e000-7faf8b71f000 rw-p 00025000 103:03 3410285 /usr/lib/jvm/java-15-openjdk/lib/libjava.so +7faf8b71f000-7faf8b720000 rw-p 00000000 00:00 0 +7faf8b720000-7faf8b723000 r--p 00000000 103:03 3410289 /usr/lib/jvm/java-15-openjdk/lib/libjdwp.so +7faf8b723000-7faf8b751000 r-xp 00003000 103:03 3410289 /usr/lib/jvm/java-15-openjdk/lib/libjdwp.so +7faf8b751000-7faf8b75f000 r--p 00031000 103:03 3410289 /usr/lib/jvm/java-15-openjdk/lib/libjdwp.so +7faf8b75f000-7faf8b760000 r--p 0003e000 103:03 3410289 /usr/lib/jvm/java-15-openjdk/lib/libjdwp.so +7faf8b760000-7faf8b761000 rw-p 0003f000 103:03 3410289 /usr/lib/jvm/java-15-openjdk/lib/libjdwp.so +7faf8b761000-7faf8b762000 rw-p 00000000 00:00 0 +7faf8b762000-7faf8b766000 ---p 00000000 00:00 0 +7faf8b766000-7faf8b863000 rw-p 00000000 00:00 0 +7faf8b863000-7faf8b866000 r--p 00000000 103:03 528470 /usr/lib/libgcc_s.so.1 +7faf8b866000-7faf8b877000 r-xp 00003000 103:03 528470 /usr/lib/libgcc_s.so.1 +7faf8b877000-7faf8b87b000 r--p 00014000 103:03 528470 /usr/lib/libgcc_s.so.1 +7faf8b87b000-7faf8b87c000 r--p 00017000 103:03 528470 /usr/lib/libgcc_s.so.1 +7faf8b87c000-7faf8b87d000 rw-p 00018000 103:03 528470 /usr/lib/libgcc_s.so.1 +7faf8b87d000-7faf8b88c000 r--p 00000000 103:03 527762 /usr/lib/libm-2.33.so +7faf8b88c000-7faf8b927000 r-xp 0000f000 103:03 527762 /usr/lib/libm-2.33.so +7faf8b927000-7faf8b9bf000 r--p 000aa000 103:03 527762 /usr/lib/libm-2.33.so +7faf8b9bf000-7faf8b9c0000 ---p 00142000 103:03 527762 /usr/lib/libm-2.33.so +7faf8b9c0000-7faf8b9c1000 r--p 00142000 103:03 527762 /usr/lib/libm-2.33.so +7faf8b9c1000-7faf8b9c2000 rw-p 00143000 103:03 527762 /usr/lib/libm-2.33.so +7faf8b9c2000-7faf8ba58000 r--p 00000000 103:03 559611 /usr/lib/libstdc++.so.6.0.28 +7faf8ba58000-7faf8bb44000 r-xp 00096000 103:03 559611 /usr/lib/libstdc++.so.6.0.28 +7faf8bb44000-7faf8bb8d000 r--p 00182000 103:03 559611 /usr/lib/libstdc++.so.6.0.28 +7faf8bb8d000-7faf8bb8e000 ---p 001cb000 103:03 559611 /usr/lib/libstdc++.so.6.0.28 +7faf8bb8e000-7faf8bb9b000 r--p 001cb000 103:03 559611 /usr/lib/libstdc++.so.6.0.28 +7faf8bb9b000-7faf8bb9c000 rw-p 001d8000 103:03 559611 /usr/lib/libstdc++.so.6.0.28 +7faf8bb9c000-7faf8bb9f000 rw-p 00000000 00:00 0 +7faf8bb9f000-7faf8bdad000 r--p 00000000 103:03 4073853 /usr/lib/jvm/java-15-openjdk/lib/server/libjvm.so +7faf8bdad000-7faf8ca30000 r-xp 0020e000 103:03 4073853 /usr/lib/jvm/java-15-openjdk/lib/server/libjvm.so +7faf8ca30000-7faf8cc87000 r--p 00e91000 103:03 4073853 /usr/lib/jvm/java-15-openjdk/lib/server/libjvm.so +7faf8cc87000-7faf8cc88000 ---p 010e8000 103:03 4073853 /usr/lib/jvm/java-15-openjdk/lib/server/libjvm.so +7faf8cc88000-7faf8cd24000 r--p 010e8000 103:03 4073853 /usr/lib/jvm/java-15-openjdk/lib/server/libjvm.so +7faf8cd24000-7faf8cd5d000 rw-p 01184000 103:03 4073853 /usr/lib/jvm/java-15-openjdk/lib/server/libjvm.so +7faf8cd5d000-7faf8cde7000 rw-p 00000000 00:00 0 +7faf8cde7000-7faf8cdee000 r--p 00000000 103:03 527819 /usr/lib/libpthread-2.33.so +7faf8cdee000-7faf8cdfd000 r-xp 00007000 103:03 527819 /usr/lib/libpthread-2.33.so +7faf8cdfd000-7faf8ce02000 r--p 00016000 103:03 527819 /usr/lib/libpthread-2.33.so +7faf8ce02000-7faf8ce03000 r--p 0001a000 103:03 527819 /usr/lib/libpthread-2.33.so +7faf8ce03000-7faf8ce04000 rw-p 0001b000 103:03 527819 /usr/lib/libpthread-2.33.so +7faf8ce04000-7faf8ce08000 rw-p 00000000 00:00 0 +7faf8ce08000-7faf8ce0a000 r--p 00000000 103:03 527746 /usr/lib/libdl-2.33.so +7faf8ce0a000-7faf8ce0c000 r-xp 00002000 103:03 527746 /usr/lib/libdl-2.33.so +7faf8ce0c000-7faf8ce0d000 r--p 00004000 103:03 527746 /usr/lib/libdl-2.33.so +7faf8ce0d000-7faf8ce0e000 r--p 00004000 103:03 527746 /usr/lib/libdl-2.33.so +7faf8ce0e000-7faf8ce0f000 rw-p 00005000 103:03 527746 /usr/lib/libdl-2.33.so +7faf8ce0f000-7faf8ce12000 r--p 00000000 103:03 538644 /usr/lib/libz.so.1.2.11 +7faf8ce12000-7faf8ce20000 r-xp 00003000 103:03 538644 /usr/lib/libz.so.1.2.11 +7faf8ce20000-7faf8ce26000 r--p 00011000 103:03 538644 /usr/lib/libz.so.1.2.11 +7faf8ce26000-7faf8ce27000 ---p 00017000 103:03 538644 /usr/lib/libz.so.1.2.11 +7faf8ce27000-7faf8ce28000 r--p 00017000 103:03 538644 /usr/lib/libz.so.1.2.11 +7faf8ce28000-7faf8ce29000 rw-p 00018000 103:03 538644 /usr/lib/libz.so.1.2.11 +7faf8ce29000-7faf8ce4f000 r--p 00000000 103:03 527702 /usr/lib/libc-2.33.so +7faf8ce4f000-7faf8cf9b000 r-xp 00026000 103:03 527702 /usr/lib/libc-2.33.so +7faf8cf9b000-7faf8cfe7000 r--p 00172000 103:03 527702 /usr/lib/libc-2.33.so +7faf8cfe7000-7faf8cfea000 r--p 001bd000 103:03 527702 /usr/lib/libc-2.33.so +7faf8cfea000-7faf8cfed000 rw-p 001c0000 103:03 527702 /usr/lib/libc-2.33.so +7faf8cfed000-7faf8cff6000 rw-p 00000000 00:00 0 +7faf8cff6000-7faf8cff8000 r--p 00000000 103:03 3410267 /usr/lib/jvm/java-15-openjdk/lib/libdt_socket.so +7faf8cff8000-7faf8cffb000 r-xp 00002000 103:03 3410267 /usr/lib/jvm/java-15-openjdk/lib/libdt_socket.so +7faf8cffb000-7faf8cffc000 r--p 00005000 103:03 3410267 /usr/lib/jvm/java-15-openjdk/lib/libdt_socket.so +7faf8cffc000-7faf8cffd000 ---p 00006000 103:03 3410267 /usr/lib/jvm/java-15-openjdk/lib/libdt_socket.so +7faf8cffd000-7faf8cffe000 r--p 00006000 103:03 3410267 /usr/lib/jvm/java-15-openjdk/lib/libdt_socket.so +7faf8cffe000-7faf8cfff000 rw-p 00007000 103:03 3410267 /usr/lib/jvm/java-15-openjdk/lib/libdt_socket.so +7faf8cfff000-7faf8d007000 rw-s 00000000 00:24 476 /tmp/hsperfdata_heero/14064 +7faf8d007000-7faf8d009000 r--p 00000000 103:03 3410274 /usr/lib/jvm/java-15-openjdk/lib/libinstrument.so +7faf8d009000-7faf8d00f000 r-xp 00002000 103:03 3410274 /usr/lib/jvm/java-15-openjdk/lib/libinstrument.so +7faf8d00f000-7faf8d012000 r--p 00008000 103:03 3410274 /usr/lib/jvm/java-15-openjdk/lib/libinstrument.so +7faf8d012000-7faf8d013000 r--p 0000a000 103:03 3410274 /usr/lib/jvm/java-15-openjdk/lib/libinstrument.so +7faf8d013000-7faf8d014000 rw-p 0000b000 103:03 3410274 /usr/lib/jvm/java-15-openjdk/lib/libinstrument.so +7faf8d014000-7faf8d015000 ---p 00000000 00:00 0 +7faf8d015000-7faf8d016000 r--p 00000000 00:00 0 +7faf8d016000-7faf8d018000 r--p 00000000 103:03 3410292 /usr/lib/jvm/java-15-openjdk/lib/libjimage.so +7faf8d018000-7faf8d01b000 r-xp 00002000 103:03 3410292 /usr/lib/jvm/java-15-openjdk/lib/libjimage.so +7faf8d01b000-7faf8d01c000 r--p 00005000 103:03 3410292 /usr/lib/jvm/java-15-openjdk/lib/libjimage.so +7faf8d01c000-7faf8d01d000 ---p 00006000 103:03 3410292 /usr/lib/jvm/java-15-openjdk/lib/libjimage.so +7faf8d01d000-7faf8d01e000 r--p 00006000 103:03 3410292 /usr/lib/jvm/java-15-openjdk/lib/libjimage.so +7faf8d01e000-7faf8d01f000 rw-p 00007000 103:03 3410292 /usr/lib/jvm/java-15-openjdk/lib/libjimage.so +7faf8d01f000-7faf8d022000 r--p 00000000 103:03 3410296 /usr/lib/jvm/java-15-openjdk/lib/libjli.so +7faf8d022000-7faf8d02c000 r-xp 00003000 103:03 3410296 /usr/lib/jvm/java-15-openjdk/lib/libjli.so +7faf8d02c000-7faf8d02f000 r--p 0000d000 103:03 3410296 /usr/lib/jvm/java-15-openjdk/lib/libjli.so +7faf8d02f000-7faf8d030000 ---p 00010000 103:03 3410296 /usr/lib/jvm/java-15-openjdk/lib/libjli.so +7faf8d030000-7faf8d031000 r--p 00010000 103:03 3410296 /usr/lib/jvm/java-15-openjdk/lib/libjli.so +7faf8d031000-7faf8d032000 rw-p 00011000 103:03 3410296 /usr/lib/jvm/java-15-openjdk/lib/libjli.so +7faf8d032000-7faf8d034000 rw-p 00000000 00:00 0 +7faf8d034000-7faf8d035000 r--p 00000000 103:03 527670 /usr/lib/ld-2.33.so +7faf8d035000-7faf8d059000 r-xp 00001000 103:03 527670 /usr/lib/ld-2.33.so +7faf8d059000-7faf8d062000 r--p 00025000 103:03 527670 /usr/lib/ld-2.33.so +7faf8d062000-7faf8d063000 ---p 00000000 00:00 0 +7faf8d063000-7faf8d065000 r--p 0002e000 103:03 527670 /usr/lib/ld-2.33.so +7faf8d065000-7faf8d067000 rw-p 00030000 103:03 527670 /usr/lib/ld-2.33.so +7ffc45f21000-7ffc45f42000 rw-p 00000000 00:00 0 [stack] +7ffc45fe7000-7ffc45feb000 r--p 00000000 00:00 0 [vvar] +7ffc45feb000-7ffc45fed000 r-xp 00000000 00:00 0 [vdso] +ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] + + +VM Arguments: +jvm_args: -XX:+ShowCodeDetailsInExceptionMessages -agentlib:jdwp=transport=dt_socket,suspend=y,address=localhost:41625 -javaagent:/home/heero/.local/application/eclipse.app/eclipse/configuration/org.eclipse.osgi/216/0/.cp/lib/javaagent-shaded.jar -Dfile.encoding=UTF-8 --module-path=/home/heero/dev/WORKSPACE-game/jatria-soft/ege/samples/bin:/home/heero/dev/WORKSPACE-game/jatria-soft/ege/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/ewol/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/io-gami/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/png-encoder/out/eclipse:/home/heero/dev/WORKSPACE-game/jatria-soft/egami/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/etk/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/etk/lib/spotbugs-annotations-4.2.2.jar:/home/heero/dev/WORKSPACE-game/scenarium/scenarium-logger/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/png-decoder/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/esvg/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/exml/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/ejson/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/out/eclipse/classes:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl3-awt-0.1.7.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/pngdecoder.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-assimp.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-assimp-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-glfw.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-glfw-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-jawt.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-opengl.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-stb.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-stb-natives-linux.jar:/home/heero/dev/WORKSPACE-game/jatria-soft/gale/lib/lwjgl/lwjgl-opengl-natives-linux.jar:--enable-preview -Djdk.module.main=sample.atriasoft.ege +java_command: sample.atriasoft.ege/sample.atriasoft.ege.loxelEngine.MainLoxelEngine +java_class_path (initial): +Launcher Type: SUN_STANDARD + +[Global flags] + intx CICompilerCount = 4 {product} {ergonomic} + uint ConcGCThreads = 3 {product} {ergonomic} + uint G1ConcRefinementThreads = 10 {product} {ergonomic} + size_t G1HeapRegionSize = 2097152 {product} {ergonomic} + uintx GCDrainStackTargetSize = 64 {product} {ergonomic} + size_t InitialHeapSize = 264241152 {product} {ergonomic} + size_t MarkStackSize = 4194304 {product} {ergonomic} + size_t MaxHeapSize = 4200595456 {product} {ergonomic} + size_t MaxNewSize = 2518679552 {product} {ergonomic} + size_t MinHeapDeltaBytes = 2097152 {product} {ergonomic} + size_t MinHeapSize = 8388608 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + bool ShowCodeDetailsInExceptionMessages = true {manageable} {command line} + size_t SoftMaxHeapSize = 4200595456 {manageable} {ergonomic} + bool UseCompressedClassPointers = true {lp64_product} {ergonomic} + bool UseCompressedOops = true {lp64_product} {ergonomic} + bool UseG1GC = true {product} {ergonomic} + +Logging: +Log output configuration: + #0: stdout all=warning uptime,level,tags + #1: stderr all=off uptime,level,tags + +Environment Variables: +PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/heero/.bin:/home/heero/.local/bin:/home/heero/.local/application//home/heero/java_binaries/gdk-14/jdk-14-full/bin/:/home/heero/java_binaries/:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/home/heero/.bin:/home/heero/.local/bin:/home/heero/.local/application/ +SHELL=/bin/bash +DISPLAY=:0 +LANG=en_US.UTF-8 + +Signal Handlers: +SIGSEGV: [libjvm.so+0xe15e30], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGBUS: [libjvm.so+0xe15e30], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGFPE: [libjvm.so+0xe15e30], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGPIPE: SIG_IGN, sa_mask[0]=00000000000010000000000000000000, sa_flags=SA_RESTART +SIGXFSZ: [libjvm.so+0xb69980], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGILL: [libjvm.so+0xe15e30], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGUSR2: [libjvm.so+0xb69810], sa_mask[0]=00100000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO +SIGHUP: [libjvm.so+0xb6a1b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGINT: [libjvm.so+0xb6a1b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGTERM: [libjvm.so+0xb6a1b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO +SIGQUIT: [libjvm.so+0xb6a1b0], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO + + +--------------- S Y S T E M --------------- + +OS: +LSB_VERSION=1.4 +DISTRIB_ID=Arch +DISTRIB_RELEASE=rolling +DISTRIB_DESCRIPTION="Arch Linux" +uname: Linux 5.11.13-arch1-1 #1 SMP PREEMPT Sat, 10 Apr 2021 20:47:14 +0000 x86_64 +OS uptime: 0 days 10:53 hours +libc: glibc 2.33 NPTL 2.33 +rlimit (soft/hard): STACK 8192k/infinity , CORE infinity/infinity , NPROC 63754/63754 , NOFILE 524288/524288 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 1024k/1024k +load average: 0.34 0.27 0.26 + +/proc/meminfo: +MemTotal: 16402124 kB +MemFree: 7951572 kB +MemAvailable: 11244496 kB +Buffers: 143320 kB +Cached: 3741516 kB +SwapCached: 189464 kB +Active: 1671124 kB +Inactive: 6018128 kB +Active(anon): 428780 kB +Inactive(anon): 3784424 kB +Active(file): 1242344 kB +Inactive(file): 2233704 kB +Unevictable: 80 kB +Mlocked: 80 kB +SwapTotal: 16777212 kB +SwapFree: 16118780 kB +Dirty: 108 kB +Writeback: 0 kB +AnonPages: 3653680 kB +Mapped: 971192 kB +Shmem: 408780 kB +KReclaimable: 136692 kB +Slab: 274884 kB +SReclaimable: 136692 kB +SUnreclaim: 138192 kB +KernelStack: 19296 kB +PageTables: 40084 kB +NFS_Unstable: 0 kB +Bounce: 0 kB +WritebackTmp: 0 kB +CommitLimit: 24978272 kB +Committed_AS: 10762268 kB +VmallocTotal: 34359738367 kB +VmallocUsed: 50136 kB +VmallocChunk: 0 kB +Percpu: 22272 kB +HardwareCorrupted: 0 kB +AnonHugePages: 0 kB +ShmemHugePages: 0 kB +ShmemPmdMapped: 0 kB +FileHugePages: 0 kB +FilePmdMapped: 0 kB +CmaTotal: 0 kB +CmaFree: 0 kB +HugePages_Total: 0 +HugePages_Free: 0 +HugePages_Rsvd: 0 +HugePages_Surp: 0 +Hugepagesize: 2048 kB +Hugetlb: 0 kB +DirectMap4k: 841572 kB +DirectMap2M: 15888384 kB +DirectMap1G: 1048576 kB + +/sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never +/sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never + +/proc/sys/kernel/threads-max (system-wide limit on the number of threads): 127509 +/proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 +/proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 + +container (cgroup) information: +container_type: cgroupv2 +cpu_cpuset_cpus: not supported +cpu_memory_nodes: not supported +active_processor_count: 12 +cpu_quota: not supported +cpu_period: not supported +cpu_shares: not supported +memory_limit_in_bytes: unlimited +memory_and_swap_limit_in_bytes: unlimited +memory_soft_limit_in_bytes: unlimited +memory_usage_in_bytes: 7872876544 +memory_max_usage_in_bytes: not supported + +Steal ticks since vm start: 0 +Steal ticks percentage since vm start: 0.000 + +CPU: total 12 (initial active 12) (12 cores per cpu, 2 threads per core) family 23 model 113 stepping 0 microcode 0x8701013, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, vzeroupper, avx, avx2, aes, clmul, 3dnowpref, lzcnt, sse4a, ht, tsc, tscinvbit, tscinv, bmi1, bmi2, adx, sha, fma, clflush, clflushopt +CPU Model and flags from /proc/cpuinfo: +model name : AMD Ryzen 5 3600 6-Core Processor +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 sme ssbd mba sev ibpb stibp vmmcall sev_es fsgsbase bmi1 avx2 smep bmi2 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 umip rdpid overflow_recov succor smca + +Online cpus: 0-11 +Offline cpus: 12-31 +BIOS frequency limitation: 3600000 +Frequency switch latency (ns): 0 +Available cpu frequencies: 3600000 2800000 2200000 +Current governor: schedutil +Core performance/turbo boost: 1 + +Memory: 4k page, physical 16402124k(7951572k free), swap 16777212k(16118780k free) + +vm_info: OpenJDK 64-Bit Server VM (15.0.2+7) for linux-amd64 JRE (15.0.2+7), built on Jan 30 2021 00:52:18 by "builduser" with gcc 10.2.0 + +END. diff --git a/samples/resources/emf/Entry.emf b/samples/resources/emf/Entry.emf new file mode 100644 index 0000000..4311336 --- /dev/null +++ b/samples/resources/emf/Entry.emf @@ -0,0 +1,71 @@ +EMF(STRING) +# Blender v2.92.0 EMF File: 'Entry.blend' +Mesh:EntryBox_Cube + Vertex:16 + 20.042355 7.751226 20.042355|20.042355 7.751226 -20.042355|20.042355 -4.633502 20.042355|20.042355 -4.633502 -20.042355|-20.042355 7.751226 20.042355|-20.042355 7.751226 -20.042355|-20.042355 -4.633502 20.042355|-20.042355 -4.633502 -20.042355|10.127714 -7.726907 10.127714|10.127714 -7.726907 -10.127714|-10.127714 -7.726907 10.127714|-10.127714 -7.726907 -10.127714|-10.127714 -9.146553 -10.127714|-10.127714 -9.146553 10.127714|10.127714 -9.146553 10.127714|10.127714 -9.146553 -10.127714| + UV-mapping: + 0.000100 0.000100|0.999900 0.999900|0.000100 0.999900|0.999900 0.000100|0.074219 0.995849|0.120606 0.943115|0.121582 0.993408|0.112927 0.992387|0.078245 0.948093|0.073324 0.991157|0.101769 0.970961|0.080974 0.959440|0.102023 0.957458|0.111927 0.985005|0.078476 0.953015|0.082167 0.983774|0.074219 0.944092|0.111696 0.944402|0.080720 0.975385|0.113157 0.949323|0.174907 0.947863|0.131613 0.991157|0.132843 0.945402|0.178368 0.944941|0.137534 0.984544|0.142456 0.948632|0.171985 0.949093|0.136074 0.991157|0.137304 0.950323|0.174677 0.949093|0.135074 0.992387|0.136304 0.949093|0.178598 0.993618|0.178368 0.988235|0.173216 0.991157|0.175907 0.989926|0.013265 0.951784|0.051868 0.992387|0.013034 0.993618|0.054098 0.951784|0.137534 0.988235|0.177138 0.947863|0.135074 0.947862|0.172446 0.988465| + Normal(face):22 + 0.000000 -1.000000 0.000000|-0.297843 -0.954615 0.000000|0.000000 -0.954615 -0.297843|0.000000 -0.954615 0.297843|0.297843 -0.954615 0.000000|0.000000 0.000000 1.000000|-1.000000 0.000000 0.000000|0.000000 0.000000 -1.000000|1.000000 0.000000 -0.000000|0.000000 1.000000 -0.000000| + Face:22 + gui_dynamic_1 + 14/0/0 12/1/0 15/2/0| 14/0/0 13/3/0 12/1/0| + palette:gui_border_1 + 7/4/1 10/5/1 6/6/1| 3/7/2 11/8/2 7/9/2| 6/10/3 8/11/3 2/12/3| 2/13/4 9/14/4 3/15/4| 7/4/1 11/16/1 10/5/1| 3/7/2 9/17/2 11/8/2| 6/10/3 10/18/3 8/11/3| 2/13/4 8/19/4 9/14/4| + palette:gui_border_2 + 4/20/5 2/21/5 0/22/5| 6/23/6 5/24/6 7/25/6| 1/26/7 7/27/7 5/28/7| 0/29/8 3/30/8 1/31/8| 4/20/5 6/32/5 2/21/5| 6/23/6 4/33/6 5/24/6| 1/26/7 3/34/7 7/27/7| 0/29/8 2/35/8 3/30/8| + palette:gui_center + 9/36/0 10/37/0 11/38/0| 9/36/0 8/39/0 10/37/0| + palette:gui_back + 5/40/9 0/41/9 1/42/9| 5/40/9 4/43/9 0/41/9| + +Materials:gui_dynamic_1 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.800000 0.800000 0.800000 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 + map_Kd /home/heero/dev/workspace-game/atriasoft/ewol/resources/resources/ewol/theme/shape/empty_area.png +# Just for information: +Palettes:gui_back + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.800000 0.000000 0.005632 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 +# Just for information: +Palettes:gui_border_1 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.000000 0.002615 0.800000 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 +# Just for information: +Palettes:gui_border_2 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.000000 0.800000 0.170495 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 +# Just for information: +Palettes:gui_center + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.438544 0.438544 0.438544 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 diff --git a/samples/resources/emf/palette_1.json b/samples/resources/emf/palette_1.json new file mode 100644 index 0000000..9e90373 --- /dev/null +++ b/samples/resources/emf/palette_1.json @@ -0,0 +1,26 @@ +{ + "default": { + "Ns":225.000000, + "Ka":"1.000000 1.000000 1.000000", + "Kd":"0.346704 0.558341 0.090842", + "Ks":"0.500000 0.500000 0.500000", + "Ke":"0.000000 0.000000 0.000000", + "vNi":"1.000000, + "d":1.000000, + "illum":2 + }, + "palette": { + "leaf_1":{ + "Kd":"0.346704 0.558341 0.090842" + } + "leaf_2":{ + "Kd":"0.278894 0.278894 0.023153" + } + "leaf_3":{ + "Kd":"0.800000 0.800000 0.800000" + } + "trunk_1":{ + "Kd":"0.057805 0.039546 0.013702" + } + } +} \ No newline at end of file diff --git a/samples/resources/emf/tower.emf b/samples/resources/emf/tower.emf new file mode 100644 index 0000000..f880304 --- /dev/null +++ b/samples/resources/emf/tower.emf @@ -0,0 +1,57 @@ +EMF(STRING) +# Blender v2.92.0 EMF File: 'tower.blend' +Mesh:tower_Cube + Vertex:68 + 1.000000 1.000000 1.968156|1.000000 1.000000 0.509101|1.000000 -1.000000 1.968156|1.000000 -1.000000 0.509101|-1.000000 1.000000 1.968156|-1.000000 1.000000 0.509101|-1.000000 -1.000000 1.968156|-1.000000 -1.000000 0.509101|0.519091 0.519091 2.988363|0.519091 -0.519091 2.988363|-0.519091 0.519091 2.988363|-0.519091 -0.519091 2.988363|1.267435 0.519091 3.279218|1.267435 -0.519091 3.279218|-0.519091 0.519091 3.279218|-0.519091 -0.519091 3.279218|1.267435 0.519091 4.102064|1.267435 -0.519091 4.102064|-0.519091 0.519091 4.102064|-0.519091 -0.519091 4.102064|-1.007701 0.133857 3.584548|-1.007701 -0.133857 3.584548|-1.007701 0.133857 3.796734|-1.007701 -0.133857 3.796734|-3.394721 0.108124 3.604944|-3.394721 -0.108124 3.604944|-3.394721 0.108124 3.776338|-3.394721 -0.108124 3.776338|-3.394721 0.148343 3.573067|-3.394721 -0.148343 3.573067|-3.394721 0.148343 3.808215|-3.394721 -0.148343 3.808215|-3.865651 0.148343 3.573067|-3.865651 -0.148343 3.573067|-3.865651 0.148343 3.808215|-3.865651 -0.148343 3.808215|0.468620 0.227433 3.055862|0.468620 -0.227433 3.055862|-0.227433 0.227433 3.055862|-0.227433 -0.227433 3.055862|0.671236 0.227433 3.376956|0.671236 -0.227433 3.376956|0.216371 0.227433 3.376956|0.216371 -0.227433 3.376956|1.304951 1.304951 0.327262|1.304951 -1.304951 0.327262|-1.304951 1.304951 0.327262|-1.304951 -1.304951 0.327262|1.304951 1.304951 -0.001257|1.304951 -1.304951 -0.001257|-1.304951 1.304951 -0.001257|-1.304951 -1.304951 -0.001257|1.644974 0.319018 3.437792|1.644974 -0.319018 3.437792|1.644974 0.319018 3.943490|1.644974 -0.319018 3.943490|1.469387 0.154815 3.567937|1.469387 -0.154815 3.567937|1.469387 0.154815 3.813344|1.469387 -0.154815 3.813344|-3.865651 0.081533 3.626019|-3.865651 -0.081533 3.626019|-3.865651 0.081533 3.755262|-3.865651 -0.081533 3.755262|0.301836 0.081533 3.626019|0.301836 -0.081533 3.626019|0.301836 0.081533 3.755262|0.301836 -0.081533 3.755262| + Normal(face):128 + -0.000000 0.000000 -1.000000|0.000000 1.000000 -0.000000|0.000000 -0.225474 0.974249|-0.225474 0.000000 0.974249|0.000000 0.000000 1.000000|-0.619140 0.785281 0.000000|0.000000 -1.000000 0.000000|-0.529936 0.000000 0.848038|-0.619140 -0.785281 0.000000|-0.529936 0.000000 -0.848038|1.000000 -0.000000 -0.000000|-1.000000 0.000000 0.000000|0.000000 0.225474 0.974249|0.800875 0.000000 0.598832|0.845703 0.000000 -0.533654|-0.586173 0.000000 0.810186|0.595465 0.000000 0.803381|0.683034 0.730387 0.000000|0.595465 0.000000 -0.803381|0.683034 -0.730387 0.000000|0.468253 0.883595 0.000000|-0.010780 -0.999942 0.000000|-0.008544 0.000000 0.999964|-0.010780 0.999942 0.000000|-0.008544 0.000000 -0.999964|0.387250 0.000000 0.921975|0.468253 -0.883595 0.000000|0.387250 0.000000 -0.921975|-0.008544 0.000000 0.999963|-0.008544 -0.000000 -0.999963|0.000000 0.904541 0.426386|0.000000 -0.904541 0.426386|-0.904541 0.000000 0.426386|0.904541 0.000000 0.426386|-0.000000 -0.512150 0.858896|-0.512150 0.000000 0.858896|0.512150 0.000000 0.858896|-0.000000 0.512150 0.858896| + Face:128 + palette:canon_2 + 15/0 12/0 13/0| 14/1 16/1 12/1| 9/2 39/2 11/2| 36/1 42/1 40/1| 11/3 38/3 10/3| 18/4 17/4 16/4| 14/5 22/5 18/5| 13/6 19/6 15/6| 18/7 23/7 19/7| 19/8 21/8 15/8| 15/9 20/9 14/9| 26/10 31/10 27/10| 28/1 34/1 30/1| 24/10 30/10 26/10| 25/10 28/10 24/10| 27/10 29/10 25/10| 35/11 61/11 33/11| 29/0 32/0 28/0| 31/6 33/6 29/6| 30/4 35/4 31/4| 8/12 38/12 36/12| 8/13 37/13 9/13| 40/4 43/4 41/4| 36/14 41/14 37/14| 37/6 43/6 39/6| 39/15 42/15 38/15| 52/16 57/16 53/16| 56/10 59/10 57/10| 53/17 59/17 55/17| 55/18 58/18 54/18| 54/19 56/19 52/19| 60/6 66/6 62/6| 34/11 63/11 35/11| 32/11 62/11 34/11| 33/11 60/11 32/11| 65/11 66/11 64/11| 61/4 64/4 60/4| 63/1 65/1 61/1| 62/0 67/0 63/0| 15/0 14/0 12/0| 14/1 18/1 16/1| 9/2 37/2 39/2| 36/1 38/1 42/1| 11/3 39/3 38/3| 18/4 19/4 17/4| 14/5 20/5 22/5| 13/6 17/6 19/6| 18/7 22/7 23/7| 19/8 23/8 21/8| 15/9 21/9 20/9| 26/10 30/10 31/10| 28/1 32/1 34/1| 24/10 28/10 30/10| 25/10 29/10 28/10| 27/10 31/10 29/10| 35/11 63/11 61/11| 29/0 33/0 32/0| 31/6 35/6 33/6| 30/4 34/4 35/4| 8/12 10/12 38/12| 8/13 36/13 37/13| 40/4 42/4 43/4| 36/14 40/14 41/14| 37/6 41/6 43/6| 39/15 43/15 42/15| 52/16 56/16 57/16| 56/10 58/10 59/10| 53/17 57/17 59/17| 55/18 59/18 58/18| 54/19 58/19 56/19| 60/6 64/6 66/6| 34/11 62/11 63/11| 32/11 60/11 62/11| 33/11 61/11 60/11| 65/11 67/11 66/11| 61/4 65/4 64/4| 63/1 67/1 65/1| 62/0 66/0 67/0| + palette:canon_1 + 16/20 52/20 12/20| 23/21 25/21 21/21| 22/22 27/22 23/22| 20/23 26/23 22/23| 21/24 24/24 20/24| 17/25 54/25 16/25| 13/26 55/26 17/26| 12/27 53/27 13/27| 16/20 54/20 52/20| 23/21 27/21 25/21| 22/28 26/28 27/28| 20/23 24/23 26/23| 21/29 25/29 24/29| 17/25 55/25 54/25| 13/26 53/26 55/26| 12/27 52/27 53/27| + palette:user_1 + 4/30 8/30 0/30| 2/6 7/6 3/6| 6/11 5/11 7/11| 0/10 3/10 1/10| 4/1 1/1 5/1| 6/31 9/31 11/31| 6/32 10/32 4/32| 0/33 9/33 2/33| 4/30 10/30 8/30| 2/6 6/6 7/6| 6/11 4/11 5/11| 0/10 2/10 3/10| 4/1 0/1 1/1| 6/31 2/31 9/31| 6/32 11/32 10/32| 0/33 8/33 9/33| + palette:bulding_base_1 + 7/34 45/34 3/34| 45/10 48/10 44/10| 5/35 47/35 7/35| 3/36 44/36 1/36| 1/37 46/37 5/37| 48/0 51/0 50/0| 44/1 50/1 46/1| 47/6 49/6 45/6| 46/11 51/11 47/11| 7/34 47/34 45/34| 45/10 49/10 48/10| 5/35 46/35 47/35| 3/36 45/36 44/36| 1/37 44/37 46/37| 48/0 49/0 51/0| 44/1 48/1 50/1| 47/6 51/6 49/6| 46/11 50/11 51/11| + +# Just for information: +Palettes:bulding_base_1 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.014670 0.014670 0.014670 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 +# Just for information: +Palettes:canon_1 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.800000 0.000000 0.008711 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 +# Just for information: +Palettes:canon_2 + Ns 323.999994 + Ka 1.000000 1.000000 1.000000 + Kd 0.001354 0.800000 0.053320 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 +# Just for information: +Palettes:user_1 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.113655 0.510074 0.800000 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.450000 + d 1.000000 + illum 2 diff --git a/samples/resources/emf/tree1.blend b/samples/resources/emf/tree1.blend index 4c912f6..486cf39 100644 Binary files a/samples/resources/emf/tree1.blend and b/samples/resources/emf/tree1.blend differ diff --git a/samples/resources/emf/tree1.blend1 b/samples/resources/emf/tree1.blend1 new file mode 100644 index 0000000..37c4797 Binary files /dev/null and b/samples/resources/emf/tree1.blend1 differ diff --git a/samples/resources/emf/tree1.emf b/samples/resources/emf/tree1.emf index a4899cd..02c6294 100644 --- a/samples/resources/emf/tree1.emf +++ b/samples/resources/emf/tree1.emf @@ -1,3 +1,77 @@ EMF(STRING) # Blender v2.92.0 EMF File: 'tree1.blend' +Mesh:Arbre_Normal_Mesh + Vertex:521 + 0.164861 0.283095 -0.182282|0.131783 0.228776 1.819391|0.296594 0.102843 -0.182282|0.234794 0.087823 1.841100|0.262285 -0.117765 -0.182282|0.207966 -0.084686 1.817718|0.082033 -0.249498 -0.182282|0.067013 -0.187698 1.972908|-0.138575 -0.215189 -0.182282|-0.105496 -0.160870 1.852242|-0.270308 -0.034936 -0.182282|-0.208508 -0.019917 1.859503|-0.235999 0.185671 -0.182282|-0.181680 0.152592 1.792552|-0.055746 0.317404 -0.182282|-0.051338 0.230928 1.837250|0.434885 -0.164179 3.328722|0.455673 -0.194029 3.316520|0.449010 -0.231473 3.311466|0.418801 -0.254578 3.316520|0.382739 -0.249809 3.328722|0.361952 -0.219959 3.340924|0.368614 -0.182515 3.345978|0.398824 -0.159410 3.340924|0.175078 0.071732 2.465748|0.093200 0.081644 2.571897|0.023793 0.027468 2.584579|0.007515 -0.059062 2.571897|0.053901 -0.127258 2.541280|0.135779 -0.137170 2.510664|0.205186 -0.082993 2.422449|0.221464 0.003537 2.524508|0.131783 0.228776 0.144384|0.234794 0.087823 0.144384|0.207966 -0.084686 0.144384|0.067013 -0.187698 0.144384|-0.105496 -0.160870 0.144384|-0.208508 -0.019917 0.144384|-0.181680 0.152592 0.144384|-0.040727 0.255604 0.144384|0.153430 0.150254 2.179499|0.003571 0.138657 2.161097|-0.078943 0.090030 2.234403|-0.100497 -0.039490 2.182324|-0.025798 -0.144064 2.137652|0.101396 -0.162434 2.164190|0.206576 -0.083840 2.157849|0.228129 0.045680 2.106066|-1.269446 0.807387 2.663388|-1.265450 0.833083 2.657157|-1.244455 0.848426 2.663388|-1.234481 0.835471 2.719556|-1.250148 0.823764 2.730531|-1.253358 0.804472 2.719556|-0.716372 0.406511 2.380211|-0.703990 0.480917 2.422541|-0.643567 0.526068 2.380211|-0.778422 0.417755 2.163582|-0.682035 0.576035 2.163582|-0.763009 0.516858 2.139549|0.131783 0.228776 1.584333|0.234794 0.087823 1.586096|0.207966 -0.084686 1.585718|0.067013 -0.187698 1.471243|-0.105496 -0.160870 1.496643|-0.208508 -0.019917 1.446360|-0.181680 0.152592 1.449893|-0.040727 0.255604 1.550838|0.283617 -1.037460 2.521245|0.241852 -1.063304 2.509543|0.234648 -1.080157 2.462498|0.334567 -1.068487 2.501326|0.321064 -1.111541 2.478574|0.285598 -1.111183 2.442578|0.058134 -0.598214 1.889824|0.171052 -0.615775 1.847619|0.263314 -0.548348 1.889824|0.058134 -0.598214 2.041434|0.263314 -0.548348 2.041434|0.171052 -0.615775 2.159030|0.995552 0.182130 2.922194|1.004017 0.162798 2.905988|1.000866 0.167357 2.927218|1.007885 0.220952 2.877645|1.019862 0.188308 2.859472|1.024100 0.210588 2.863147|0.622150 0.120721 2.275494|0.575460 0.186085 2.321393|0.608678 0.039765 2.307861|0.588991 0.137005 2.547523|0.617984 0.094380 2.571476|0.607809 0.040294 2.520460|-0.878022 0.590164 2.520681|-0.831860 0.624658 2.488342|-0.861249 0.662832 2.322844|-0.923111 0.617622 2.304484|-0.887481 0.533320 2.488342|-0.934886 0.541911 2.322844|-0.568951 0.295877 2.315682|-0.644513 0.309570 2.061902|-0.515523 0.363133 2.367230|-0.486955 0.432658 2.315794|-0.530257 0.495063 2.061790|-0.625745 0.430253 2.032636|-0.750403 0.116017 2.945977|-0.753371 0.124085 2.964808|-0.737656 0.136950 2.968816|-0.709050 0.099509 2.931771|-0.703485 0.103745 2.954703|-0.694764 0.123480 2.957811|-0.524539 0.213821 2.579693|-0.510263 0.224688 2.638526|-0.487887 0.275317 2.646498|-0.630632 0.256172 2.616137|-0.638245 0.276871 2.664449|-0.597929 0.309876 2.674732|0.199285 0.079193 0.864234|0.176755 -0.065680 0.864234|0.058383 -0.152189 0.837160|-0.086490 -0.129659 0.864234|-0.172999 -0.011286 0.864234|-0.150469 0.133586 0.849099|-0.032097 0.220095 0.864234|0.112776 0.197565 0.864234|0.182643 -0.008042 2.625846|0.390102 -0.370351 2.847406|-0.107398 -0.361222 3.016903|-0.114805 0.183580 3.022882|0.349587 0.373091 2.926352|0.685489 -0.018688 2.966969|0.246831 -0.521308 3.367413|-0.174190 -0.098236 3.469025|0.031782 0.390318 3.477100|0.526033 0.273123 3.477100|0.729845 -0.333996 3.350799|0.256473 -0.063130 3.736070|-0.033015 -0.241239 2.744683|0.262515 -0.179206 2.659206|0.118633 -0.505127 2.885273|0.553723 -0.117761 2.734960|0.470680 -0.002998 2.663317|-0.011590 0.148010 2.670908|-0.183302 -0.091341 2.975893|0.285162 0.206181 2.633748|0.091441 0.357572 2.889200|0.565581 0.222495 2.904450|0.649710 -0.471876 3.110893|0.736002 -0.191182 3.208084|0.006271 -0.476037 3.251811|0.380802 -0.583259 3.154399|-0.213587 0.048332 3.252975|-0.189329 -0.249253 3.252975|0.169532 0.464189 3.257277|-0.059568 0.304529 3.253151|0.701010 0.124180 3.253151|0.460047 0.395301 3.257277|0.592794 -0.519273 3.305617|-0.054524 -0.330994 3.506166|-0.095782 0.151797 3.507132|0.245109 0.436509 3.521684|0.667903 -0.030068 3.503577|0.265278 -0.337224 3.588140|0.548672 -0.226824 3.578975|0.003338 -0.083766 3.663923|0.110139 0.216804 3.670648|0.400650 0.147918 3.670648|0.217636 -0.442586 1.962573|0.521330 -0.992447 2.039370|0.072958 -1.074860 2.299801|0.207439 -0.724097 2.694491|0.692147 -0.570922 2.644622|0.917588 -0.887556 2.302729|0.400618 -1.430575 2.326009|0.076073 -1.279606 2.686443|0.352434 -0.975456 2.903943|0.831376 -1.012042 2.767499|0.899027 -1.270292 2.330472|0.541298 -1.378475 2.710277|0.082137 -0.751310 2.098298|0.302818 -0.622546 1.910389|0.238828 -1.090215 2.052058|0.721056 -0.750502 2.088265|0.595416 -0.564370 2.049733|0.154067 -0.413946 2.264048|0.065571 -0.861291 2.485846|0.442635 -0.370031 2.192638|0.436346 -0.529174 2.677537|0.858252 -0.672391 2.465944 + 0.762196 -1.205712 2.103380|0.940029 -1.126898 2.323232|0.177229 -1.337108 2.340278|0.484029 -1.304440 2.118287|0.100870 -0.977290 2.770863|0.047165 -1.173214 2.552060|0.501350 -0.768025 2.819196|0.307024 -0.826816 2.897501|0.994158 -0.947581 2.582630|0.788324 -0.830345 2.745164|0.707413 -1.341545 2.220387|0.143640 -1.457120 2.528626|0.228752 -1.143656 2.887317|0.522842 -1.014502 2.807606|0.942507 -1.159459 2.639515|0.476513 -1.450312 2.504675|0.788625 -1.308538 2.565628|0.237053 -1.417946 2.658310|0.426751 -1.202096 2.879673|0.718471 -1.180094 2.831197|0.707413 -1.341545 2.220387|1.202711 -0.031035 2.472639|1.064698 0.040758 2.893419|0.760862 0.080666 2.627578|0.973447 0.375147 2.405737|1.301380 0.495095 2.600975|1.268756 0.361488 2.982385|0.693091 0.244894 2.968592|0.575727 0.371194 2.610030|0.855455 0.592735 2.537273|1.079122 0.666397 2.849535|1.023151 0.406879 3.150208|0.729738 0.557187 2.894292|0.972422 -0.044134 2.503777|1.159752 -0.060481 2.617165|0.869585 -0.036278 2.795689|1.298204 0.121586 2.861116|1.347734 0.054944 2.689853|1.169573 0.099695 2.331501|0.857280 0.190757 2.462186|1.351619 0.127085 2.477745|1.201761 0.425951 2.436047|1.345827 0.436550 2.794427|1.034288 0.195653 3.119542|1.130611 0.403854 3.104162|0.643006 0.169619 2.801492|0.841689 0.118171 3.017145|0.757625 0.413016 2.448848|0.648115 0.258433 2.585954|1.064633 0.567559 2.541306|0.925512 0.559921 2.443150|1.223799 0.588309 2.962411|1.172884 0.620509 2.745618|0.907577 0.269832 3.119658|0.524527 0.299551 2.782240|0.697989 0.552606 2.559703|0.926795 0.587818 2.676303|1.061881 0.628085 3.020389|0.688334 0.397453 2.960948|0.910960 0.535944 3.035957|0.571523 0.419008 2.770714|0.756414 0.620746 2.694328|0.914065 0.686012 2.851905|-0.871873 0.379767 2.477301|-1.119154 0.303471 2.868907|-1.445518 0.199292 2.465286|-1.243127 0.616335 2.178907|-0.918086 0.890705 2.461681|-0.980500 0.741485 2.953423|-1.674195 0.394215 2.893863|-1.750456 0.607596 2.332598|-1.494221 1.065245 2.256196|-1.357307 1.165981 2.735046|-1.402781 0.728523 3.204056|-1.731685 0.918132 2.711019|-1.141490 0.179430 2.430580|-0.936874 0.296826 2.637565|-1.306743 0.108522 2.713534|-0.870348 0.495610 2.862411|-0.796084 0.514062 2.723503|-0.921013 0.447464 2.238320|-1.334504 0.355347 2.256476|-0.758347 0.587288 2.454689|-0.987230 0.760091 2.246230|-0.878474 0.847519 2.719321|-1.273625 0.482542 3.175727|-1.225536 0.765041 3.116855|-1.647040 0.276416 2.651635|-1.460856 0.301452 3.011204|-1.526319 0.593385 2.195282|-1.632228 0.375067 2.369251|-1.229119 1.061564 2.305812|-1.371185 0.848903 2.193616|-1.162000 1.004331 2.930562|-1.149217 1.120931 2.587300|-1.482774 0.516284 3.177599|-1.828722 0.495074 2.558849|-1.658415 0.849031 2.275123|-1.435963 1.205866 2.418865|-1.445667 1.002664 3.015013|-1.751915 0.647334 2.842227|-1.608694 0.839412 3.024528|-1.804930 0.776703 2.499328|-1.667042 1.054487 2.436176|-1.575591 1.110689 2.717150|0.046506 0.111346 2.357880|-0.552531 0.169942 2.538338|-0.467486 -0.120171 2.778262|-0.930748 -0.103843 2.727220|-0.816472 0.298674 2.752827|-0.363799 0.459965 2.620228|-0.157173 0.194774 2.630463|-0.681155 -0.243004 3.115321|-1.017622 0.211262 2.978404|-0.634912 0.533983 3.020596|-0.316607 0.375043 3.051146|-0.320553 -0.014384 3.099723|-0.599641 0.114006 3.298897|-0.761093 0.028326 2.620472|-0.495894 -0.000641 2.609243|-0.689820 -0.142392 2.734807|-0.294405 0.014233 2.702132|-0.296451 0.184323 2.500996|-0.746414 0.237697 2.604438|-0.994584 0.100054 2.686850|-0.416177 0.338762 2.495903|-0.548947 0.413194 2.658820|-0.200392 0.363847 2.548407|-0.359900 -0.111312 2.940330|-0.207672 0.088729 2.887135|-0.853434 -0.196687 2.899300|-0.570354 -0.216538 2.940606|-0.962746 0.291007 2.846398|-1.069579 -0.018176 2.840832|-0.479247 0.510435 2.842573|-0.709647 0.474932 2.873902|-0.156113 0.304864 2.800332|-0.286234 0.463453 2.799461|-0.475961 -0.191166 3.147960|-0.925411 -0.099518 3.066958|-0.796605 0.436513 3.030683|-0.484634 0.494063 3.065168|-0.272454 0.180769 3.101997|-0.658459 -0.130762 3.256840|-0.433233 -0.009664 3.261814|-0.822470 0.207183 3.178527|-0.662337 0.443637 3.175223|-0.455165 0.288936 3.230724|0.131783 0.228776 1.770429|0.234794 0.087823 1.787415|0.207966 -0.084686 1.768883|-0.105496 -0.160870 1.778119|-0.208508 -0.019917 1.836475|-0.181680 0.152592 1.717749|-0.049104 0.236123 1.780433|0.294343 -1.043992 2.517052|0.258528 -1.073459 2.503023|0.245375 -1.086688 2.458304|0.058134 -0.598214 2.009516|0.263314 -0.548348 2.009516|-1.036861 -0.452479 1.923982|-1.067800 -0.437925 1.913500|-1.075096 -0.410530 1.894064|-1.016062 -0.418323 1.962332|-1.038973 -0.390587 1.966651|-1.055304 -0.378028 1.930557|-0.521777 -0.239337 1.780074|-0.583614 -0.183273 1.683512|-0.522983 -0.354604 1.771994|-0.729100 -0.231063 1.630415|-0.733668 -0.308940 1.702741|-0.675867 -0.404825 1.716197|-0.817716 0.017402 2.049137|-0.635749 -0.113551 1.734970|-0.876969 0.267402 1.615926|-1.133838 0.060446 1.874619|-0.968770 -0.250553 2.227525|-0.658948 -0.346281 2.138241|-0.776023 -0.115860 1.341690|-1.254724 0.104837 1.587559|-1.313245 -0.297006 1.883353|-1.032623 -0.517825 1.881668|-0.753508 -0.442427 1.616265|-1.071965 -0.378686 1.447247|-0.849689 0.165770 1.831734|-0.682090 -0.023470 1.917726|-0.721690 0.088203 1.673948 + -0.619308 -0.236373 1.931087|-0.678876 -0.160741 2.176285|-0.996663 0.109682 1.971596|-1.052896 0.287228 1.742159|-0.859293 -0.105966 2.227869|-1.045411 -0.119138 2.105815|-0.782275 -0.308757 2.281660|-0.643155 -0.293526 1.660987|-0.696360 -0.430835 1.871545|-0.826113 0.131110 1.464113|-0.674761 -0.105058 1.523712|-1.239402 0.119630 1.749864|-1.057296 0.284925 1.534101|-1.148536 -0.305701 2.054447|-1.255341 -0.138243 1.928444|-0.803550 -0.475389 2.079950|-0.994201 -0.416199 2.127187|-0.718058 -0.305793 1.421830|-0.998951 0.062649 1.373715|-1.328313 -0.153696 1.760950|-1.218469 -0.428066 1.881295|-0.878314 -0.531209 1.746436|-0.900602 -0.245464 1.312984|-0.875169 -0.452454 1.461053|-1.219142 -0.161277 1.509668|-1.313896 -0.343386 1.708217|-1.104692 -0.494748 1.651158|0.559398 0.877575 2.289897|0.582163 0.846426 2.294695|0.518931 0.878051 2.293844|0.564182 0.860222 2.369477|0.531065 0.857660 2.365411|0.580690 0.837113 2.353250|0.330566 0.456427 2.140699|0.380170 0.386984 2.091936|0.231052 0.448726 2.128479|0.384597 0.414970 1.915985|0.194590 0.509999 1.913428|0.316191 0.508570 1.901569|0.021831 0.771601 2.334728|0.313768 1.110274 2.298244|0.479671 0.757243 2.186773|0.386712 0.577900 2.561365|0.259321 0.850475 2.825031|0.349459 1.215204 2.672594|0.736136 1.031289 2.270313|0.767818 0.640161 2.335945|0.636819 0.632253 2.675649|0.608267 0.986812 2.838231|0.623900 1.285962 2.571489|0.841761 0.930235 2.558448|0.206530 0.727641 2.200088|0.090848 0.896904 2.278728|0.393087 0.966127 2.135502|0.160903 1.144760 2.492010|0.028083 1.009965 2.471657|0.065647 0.610612 2.436075|0.402851 0.618584 2.340536|-0.011975 0.802796 2.547062|0.244364 0.673439 2.723342|0.261951 1.054022 2.787769|0.496045 1.290312 2.400272|0.522022 1.278271 2.628401|0.678439 0.869188 2.189745|0.571535 1.142680 2.238751|0.590408 0.542749 2.476843|0.644782 0.656888 2.280114|0.461303 0.707570 2.764683|0.532194 0.571574 2.690338|0.494156 1.150318 2.842065|0.474928 0.926505 2.854945|0.633506 1.238877 2.396094|0.831300 0.794552 2.238254|0.747509 0.607599 2.557120|0.626893 0.786179 2.701165|0.661759 1.146340 2.786797|0.815503 1.001351 2.397434|0.738225 1.124640 2.628078|0.851745 0.782426 2.364928|0.783669 0.743033 2.637932|0.748571 0.932609 2.767443|-0.029730 0.060061 2.402145|-0.048756 -0.048865 2.368939|0.012380 -0.136013 2.391667|0.117866 -0.150332 2.330160|0.205910 -0.083434 2.284599|0.163800 0.112640 2.316619|1.012272 0.176088 2.881755|1.012970 0.189879 2.893838|1.001977 0.202355 2.898985|0.581941 0.162574 2.429715|0.608262 0.040019 2.409701|-0.514269 -0.979974 2.561437|-0.485129 -1.020769 2.544010|-0.435510 -1.027935 2.554363|-0.494085 -0.983632 2.634236|-0.470235 -1.017628 2.643103|-0.429085 -1.023214 2.619108|-0.155609 -0.586773 2.362358|-0.228928 -0.576821 2.405109|-0.271421 -0.516249 2.389312|-0.167057 -0.595185 2.247001|-0.307383 -0.509732 2.259605|-0.255463 -0.582416 2.228556|-0.122059 -0.981138 2.410067|-0.460322 -0.795291 2.409245|-0.239798 -0.695522 2.807866|-0.165750 -1.103994 2.749537|-0.162731 -1.316311 2.298513|-0.338884 -1.116099 2.093549|-0.714851 -0.728023 2.733345|-0.316440 -1.041453 3.018551|-0.383119 -1.438327 2.717818|-0.581492 -1.367458 2.429480|-0.755799 -1.015944 2.420344|-0.780795 -1.130908 2.767047|-0.164750 -0.826243 2.620981|-0.262796 -0.853716 2.374146|-0.348439 -0.714004 2.590045|-0.412213 -0.937398 2.232302|-0.179296 -1.039878 2.164198|-0.084374 -1.020778 2.618775|-0.111333 -0.861059 2.865937|-0.077683 -1.156849 2.283380|-0.143859 -1.243060 2.478055|-0.193983 -1.241916 2.112536|-0.636927 -0.872230 2.380780|-0.578384 -1.077590 2.237884|-0.448833 -0.673551 2.802319|-0.595716 -0.728105 2.562145|-0.195263 -1.091122 2.920341|-0.257295 -0.777156 2.988282|-0.294855 -1.400471 2.500438|-0.249152 -1.325884 2.718782|-0.448162 -1.266718 2.173227|-0.344937 -1.386487 2.303927|-0.800895 -0.830261 2.566010|-0.533710 -0.795577 2.945976|-0.365697 -1.314804 2.859893|-0.490748 -1.446132 2.597323|-0.708446 -1.209563 2.394412|-0.806883 -0.877447 2.781757|-0.852622 -1.041096 2.590594|-0.562648 -1.135968 2.925824|-0.537599 -1.391032 2.799813|-0.715085 -1.306914 2.622738| + Normal(face):1004 + 0.807370 0.590045 0.000000|0.988122 -0.153672 0.000000|0.938774 -0.124698 -0.321177|-0.329108 -0.755852 -0.566017|-0.807370 -0.590045 0.000000|-0.988122 0.153672 0.000000|0.319463 0.934132 0.159186|0.040584 0.999176 -0.000000|-0.533073 0.846069 0.000000|0.000000 -0.000000 -1.000000|0.294011 -0.179038 0.938884|-0.500478 0.749252 0.433754|-0.894762 0.104706 0.434094|-0.757568 -0.614342 0.220622|-0.152603 -0.984231 -0.089450|0.545734 -0.780341 -0.305356|0.963140 0.108918 -0.245963|0.800040 0.593374 -0.088567|0.080156 0.962801 0.258047|-0.453937 0.863724 0.218911|-0.944263 0.133540 0.300891|-0.825733 -0.526462 0.202489|-0.089188 -0.992564 0.082838|0.612786 -0.790242 -0.003188|0.796596 -0.334009 -0.503857|0.528453 0.707248 -0.469614|0.794618 0.580726 0.177029|0.972515 -0.151245 0.177029|0.580726 -0.794618 0.177030|-0.151245 -0.972515 0.177029|-0.794618 -0.580726 0.177030|-0.972515 0.151245 0.177029|0.151245 0.972515 0.177029|-0.580726 0.794618 0.177030|-0.073170 -0.459246 0.885291|0.528921 0.083925 0.844511|0.158517 -0.508032 0.846626|-0.749776 -0.626513 0.212879|-0.235672 -0.964071 0.122577|0.598513 -0.801111 -0.001774|0.986711 -0.162425 0.004437|0.088522 -0.529291 0.843810|-0.619220 0.733888 0.279240|-0.976891 0.043515 0.209263|-0.544592 -0.831074 0.112853|0.508632 0.854341 0.106743|-0.285500 0.669247 -0.686001|-0.731980 -0.050927 -0.679420|0.835798 -0.424264 0.348485|0.553282 -0.832764 0.019576|-0.564827 -0.815816 0.124157|0.539021 0.836657 0.097265|-0.184597 0.616347 -0.765532|-0.644753 -0.083974 -0.759764|0.806484 0.589398 -0.046832|0.987042 -0.153504 -0.046743|0.597084 -0.800429 -0.052951|-0.163111 -0.985186 -0.052951|-0.806016 -0.589055 -0.057899|-0.987444 0.147720 -0.055971|0.153487 0.986929 -0.049112|-0.584446 0.809500 -0.055971|0.050872 -0.479032 0.876322|-0.377002 -0.852124 0.362980|-0.585747 -0.658570 -0.472426|0.998046 0.062482 0.000000|-0.986416 -0.029486 0.161597|0.356893 0.661677 0.659402|0.616205 -0.430247 -0.659681|-0.209371 -0.695904 -0.686936|-0.936592 -0.350422 -0.000000|0.992950 0.118531 0.000000|-0.705151 0.131557 0.696746|0.514103 0.421740 0.746882|0.953355 -0.224766 0.201481|0.705348 0.442122 0.554087|-0.331592 0.917650 0.219012|-0.674332 -0.044492 0.737086|-0.007663 -0.977916 0.208857|0.555388 -0.794252 -0.246389|0.425347 -0.396124 -0.813736|0.191349 0.651925 -0.733744|-0.186540 0.943757 0.272992|-0.244093 0.532382 0.810548|0.073328 -0.691581 0.718567|0.292313 -0.956316 0.003575|0.158515 -0.508034 0.846625|0.508632 0.854342 0.106741|-0.285501 0.669246 -0.686002|-0.731980 -0.050925 -0.679420|0.480671 0.385273 0.787731|-0.002636 -0.372681 0.927956|-0.556193 -0.819785 0.136390|0.536917 0.835919 0.113839|-0.065578 0.574605 -0.815800|-0.529664 -0.121208 -0.839503|0.047193 -0.349203 0.935858|-0.287290 -0.927041 0.240955|-0.462720 -0.742916 -0.483700|-0.942384 0.226983 -0.245747|-0.647922 0.749978 0.133153|0.375783 0.709731 0.595877|0.906678 -0.368352 -0.205553|0.844780 -0.454018 -0.283222|-0.646413 -0.727846 -0.228889|-0.947403 -0.319807 -0.012273|-0.164530 0.782811 0.600113|0.366510 0.839768 0.400575|0.806484 0.589397 0.046849|0.987037 -0.153503 0.046849|0.589346 -0.806413 0.048675|-0.153490 -0.986951 0.048675|-0.806484 -0.589397 0.046849|-0.986990 0.153496 0.047853|0.153503 0.987037 0.046849|-0.589370 0.806445 0.047853|0.366998 -0.068871 0.927669|-0.131484 0.916289 0.378321|0.136230 0.986699 0.088693|-0.590046 0.807370 0.000000|0.050888 -0.479045 0.876314|-0.376999 -0.852125 0.362980|-0.584958 -0.644468 -0.492427|0.990747 0.135720 0.000000|-0.481169 -0.508640 0.713976|-0.900399 0.065361 0.430128|-0.208893 -0.658893 -0.722651|-0.127223 -0.743387 -0.656651|-0.339985 0.936218 0.088914|0.384688 -0.783031 0.488751|0.017899 -0.070105 0.997379|-0.510140 0.560687 0.652217|-0.359268 0.074924 -0.930222|-0.281498 -0.297702 -0.912213|-0.641221 0.767357 0.000000|0.349910 -0.928689 -0.122885|-0.101857 0.970669 0.217778|0.793491 0.597616 0.115012|0.920907 -0.387873 -0.038526|-0.844243 0.460431 0.274331|-0.056525 0.741192 -0.668909|0.616200 0.340992 -0.709945|-0.134697 0.200889 0.970309|0.528688 -0.201379 0.824582|0.912012 -0.408012 -0.041953|-0.755394 0.585204 0.294817|-0.087625 0.333453 -0.938686|0.305692 0.077250 -0.948992|0.080156 0.962802 0.258047|-0.355966 0.911911 0.204223|-0.952904 0.077024 0.293329|0.201954 0.377391 0.903765|0.513536 0.172675 0.840514|0.604375 -0.796697 -0.001883|0.739593 0.402254 0.539623|-0.354428 0.909187 0.218540|0.514891 -0.813396 -0.270694|-0.172046 0.946598 0.272675|0.291994 -0.956413 0.003574|-0.762387 -0.621540 0.180149|-0.107072 -0.993113 0.047568|0.835065 -0.548478 -0.042875|-0.815577 0.520753 0.252288|0.076875 -0.608603 -0.789742|-0.669671 -0.169480 -0.723061|-0.179845 0.128192 0.975306|0.466830 -0.229510 0.854046|0.845031 -0.532820 -0.045006|-0.866853 0.424380 0.261662|0.157370 -0.278905 -0.947336|-0.455393 0.054313 -0.888632|0.643796 -0.544214 -0.537920|0.585384 -0.564057 -0.582379|0.200562 0.954759 0.219566|0.020657 0.995560 0.091840|-0.528503 0.847038 0.056669|0.294012 -0.179036 0.938884|0.294010 -0.179050 0.938882|0.294008 -0.179042 0.938884|0.294010 -0.179038 0.938884|0.294014 -0.179052 0.938880|-0.503692 0.746898 0.434094|-0.895379 0.100770 0.433754|-0.756107 -0.616427 0.219817|-0.159566 -0.983326 -0.087224 + 0.375797 -0.891778 -0.252008|0.942357 -0.125819 -0.310053|0.868527 0.478074 -0.130788|0.227593 0.970042 0.084969|-0.552029 0.777643 0.300891|-0.959038 0.085153 0.270177|-0.747578 -0.617877 0.243629|-0.087495 -0.992860 0.081080|0.606863 -0.794786 0.005731|0.828262 -0.065746 -0.556470|0.310515 0.902659 -0.297972|0.972515 -0.151245 0.177030|0.580726 -0.794618 0.177029|-0.151245 -0.972515 0.177030|-0.972515 0.151245 0.177030|-0.580726 0.794618 0.177029|-0.073165 -0.459248 0.885290|0.158519 -0.508029 0.846627|-0.775400 -0.579594 0.250652|-0.173647 -0.971795 0.159565|0.593213 -0.805033 0.004428|0.988113 -0.153726 0.000406|0.088528 -0.529293 0.843808|-0.487017 0.847952 0.209262|-0.936226 0.213319 0.279240|-0.285497 0.669249 -0.686000|0.835799 -0.424262 0.348486|-0.562279 -0.818402 0.118577|0.527347 0.841575 0.116860|-0.214967 0.605370 -0.766366|-0.644753 -0.083973 -0.759764|0.806767 0.589020 -0.046728|0.987058 -0.153405 -0.046720|0.614152 -0.787768 -0.047320|-0.161136 -0.985482 -0.053479|-0.796995 -0.601599 -0.053643|-0.986285 0.154572 -0.057871|0.162407 0.985604 -0.047005|-0.565884 0.822987 -0.049675|0.050904 -0.479049 0.876311|-0.376997 -0.852127 0.362977|-0.914157 -0.405361 0.000000|0.578243 0.583445 0.570287|-0.648204 0.352359 0.675037|-0.500372 0.483417 0.718286|0.726239 -0.314302 -0.611385|-0.349999 -0.665072 -0.659681|-0.551118 0.148971 0.821022|0.566114 0.440523 0.696745|0.954314 -0.229779 0.191014|0.723826 0.408313 0.556198|-0.517680 0.710852 0.476127|-0.681070 0.003996 0.732208|-0.490580 -0.547304 0.678078|0.335349 -0.942087 0.003716|0.425347 -0.396123 -0.813736|0.191349 0.651925 -0.733743|-0.194085 0.956193 0.219149|-0.193684 0.377171 0.905665|0.079609 -0.766557 0.637222|0.292258 -0.956328 0.004595|0.158516 -0.508032 0.846626|-0.285500 0.669247 -0.686002|-0.731980 -0.050924 -0.679420|0.478108 0.381404 0.791166|-0.096629 -0.555991 0.825553|-0.554878 -0.823114 0.120802|0.529943 0.835008 0.148059|-0.112538 0.540795 -0.833592|-0.546326 -0.227842 -0.805987|0.174241 -0.227860 0.957977|-0.296357 -0.893915 0.336286|-0.462719 -0.742916 -0.483700|-0.942384 0.226978 -0.245750|-0.647919 0.749980 0.133155|0.375782 0.709731 0.595877|0.820217 -0.517460 -0.243883|0.937908 -0.301278 -0.171930|-0.422469 -0.883248 -0.203452|-0.945084 -0.027982 0.325628|-0.589895 0.531069 0.608268|0.585994 0.693865 0.418524|0.582421 -0.811546 0.046680|-0.144981 -0.988333 0.046680|-0.986288 0.158271 0.046755|-0.593290 0.803630 0.046755|0.309176 0.108277 0.944821|-0.068687 0.843038 0.533451|-0.549443 0.833991 0.050718|0.050888 -0.479047 0.876313|-0.376999 -0.852125 0.362979|-0.933751 -0.357922 0.000000|0.580564 0.599979 0.550428|-0.481174 -0.508633 0.713978|-0.900398 0.065360 0.430130|-0.245475 -0.603587 -0.758567|-0.425593 -0.372296 -0.824782|-0.614048 0.724778 -0.312477|0.218493 -0.943202 0.250261|0.068240 -0.338646 0.938436|-0.508658 0.540395 0.670254|0.017349 -0.680957 -0.732118|-0.157225 -0.431751 -0.888184|-0.419352 0.800143 0.428854|0.420935 -0.907091 0.000000|0.037450 0.962705 0.267948|0.834114 0.547237 0.069182|-0.056523 0.741191 -0.668910|0.616200 0.340991 -0.709945|-0.134696 0.200889 0.970309|0.528689 -0.201379 0.824582|0.305692 0.077249 -0.948991|-0.095374 0.982947 0.157225|-0.420048 0.864002 0.277598|-0.961682 0.051778 0.269234|0.201965 0.377384 0.903765|0.513535 0.172676 0.840515|0.598794 -0.800883 0.005708|0.955611 -0.214968 0.201485|0.723825 0.408312 0.556199|-0.565406 0.692966 0.447342|0.315344 -0.948970 0.003651|-0.173841 0.960160 0.218797|0.292022 -0.956400 0.004594|-0.827380 -0.543505 0.141578|-0.160276 -0.983178 0.087596|0.835065 -0.548478 -0.042876|-0.815578 0.520753 0.252288|0.076872 -0.608603 -0.789743|-0.669669 -0.169482 -0.723062|-0.179849 0.128195 0.975305|0.466832 -0.229511 0.854045|-0.866853 0.424380 0.261663|0.157372 -0.278906 -0.947336|-0.455392 0.054312 -0.888633|-0.211697 -0.281213 -0.936004|0.317030 -0.549492 -0.773014|-0.341081 -0.156893 -0.926849|-0.143829 0.105124 -0.984003|0.129397 -0.025364 -0.991268|0.449860 -0.589916 -0.670540|-0.579852 -0.806745 -0.113726|-0.931708 0.273071 -0.239484|-0.018279 0.961386 -0.274597|0.892758 0.381880 -0.239062|0.242954 -0.800533 -0.547833|-0.756293 -0.652541 0.047021|-0.855221 0.514181 -0.064922|0.228424 0.963312 -0.140898|0.985197 0.125937 -0.116303|0.117095 -0.767483 0.630285|-0.704899 -0.256903 0.661149|-0.641545 0.423622 0.639504|0.449140 0.588900 0.671915|0.725291 -0.185455 0.662993|-0.651013 -0.612781 -0.447975|-0.133126 -0.524519 -0.840927|0.199829 -0.616477 -0.761593|0.799547 0.232975 -0.553577|0.303014 -0.337175 -0.891345|0.130146 -0.130821 -0.982827|-0.913735 0.278264 -0.296070|-0.852313 -0.051732 -0.520467|-0.876750 -0.303303 -0.373252|0.019666 0.866578 -0.498653|-0.225072 0.753769 -0.617394|-0.717849 0.639526 -0.275137|0.795906 0.253140 -0.549959|0.607934 0.446344 -0.656653|0.454613 0.726893 -0.514737|0.955243 -0.228694 -0.187642|0.914354 -0.151006 -0.375704|0.881559 -0.276591 -0.382558|-0.242223 -0.961822 0.127386|-0.277324 -0.960736 -0.008764|0.314866 -0.784366 -0.534443|-0.988798 -0.080601 0.125627|-0.994399 -0.081058 -0.067826|-0.937914 -0.292192 -0.186926|-0.568869 0.818384 -0.081461|-0.566479 0.815851 -0.116136|-0.702440 0.685484 -0.191548|0.740914 0.656333 0.142385|0.742792 0.661720 -0.101917 + 0.539880 0.808428 -0.234465|0.061716 -0.947308 0.314322|0.363529 -0.923996 -0.118651|0.791239 -0.605733 0.083834|-0.859393 -0.388851 0.332023|-0.743205 -0.641979 0.188440|-0.351171 -0.847013 0.399060|-0.860595 0.481241 0.166686|-0.842414 0.506312 0.184354|-0.914662 0.236915 0.327512|0.515006 0.805514 0.293113|0.230577 0.972392 0.035892|-0.242226 0.955343 0.169251|0.979777 0.118717 0.161071|0.980046 0.082930 0.180645|0.829259 0.420206 0.368452|0.206943 -0.459508 0.863728|0.270848 -0.635210 0.723291|0.514833 -0.542670 0.663669|-0.206320 -0.469852 0.858296|-0.225887 -0.485896 0.844322|-0.178358 -0.748276 0.638961|-0.279124 0.077768 0.957101|-0.647990 0.213894 0.730998|-0.737770 0.130414 0.662335|0.061005 0.257279 0.964410|0.119894 0.505631 0.854379|-0.287782 0.652251 0.701249|0.457131 -0.036822 0.888637|0.531347 0.002642 0.847150|0.655978 0.364657 0.660847|-0.623111 -0.069027 -0.779082|0.360254 -0.110187 -0.926324|-0.924813 0.307333 -0.224205|-0.180697 0.974815 -0.130709|0.367905 0.721011 -0.587188|0.248816 -0.009670 -0.968503|-0.777500 -0.385792 -0.496646|-0.849385 0.443705 0.285781|0.193445 0.538894 0.819861|0.910299 0.378381 -0.167878|0.036571 -0.249165 -0.967770|-0.887914 -0.390553 -0.243060|-0.683597 0.458912 0.567535|0.312850 0.441835 0.840777|0.965925 0.069201 -0.249399|0.210715 -0.957836 -0.195320|-0.484921 -0.676897 0.553771|0.007706 -0.103976 0.994550|0.121585 0.279332 0.952466|0.639127 -0.748128 0.178385|-0.801220 -0.299784 -0.517858|-0.583603 -0.161238 -0.795871|0.059947 -0.296899 -0.953025|0.784402 0.438707 -0.438462|0.413289 0.091416 -0.906000|0.327061 0.402707 -0.854902|-0.865579 0.349197 0.358936|-0.979407 0.201319 0.015266|-0.999111 0.002122 -0.042106|0.191738 0.931768 0.308292|-0.067510 0.948228 0.310332|-0.522003 0.660005 0.540284|0.786507 0.496006 -0.367947|0.669413 0.702956 -0.240291|0.563276 0.824405 0.055470|0.794452 -0.254995 -0.551202|0.768065 0.048212 -0.638554|0.740999 0.011962 -0.671400|-0.344680 -0.734574 -0.584462|-0.396822 -0.653479 -0.644591|0.043012 -0.249825 -0.967335|-0.974544 0.017522 0.223513|-0.982988 0.091775 0.159096|-0.995472 0.040484 -0.085999|0.332696 0.142041 0.932276|0.170672 0.536580 0.826410|-0.505844 0.643958 0.573969|0.683161 0.246381 0.687450|0.688593 0.543582 0.479957|0.765535 0.458672 0.451193|0.081550 -0.866100 -0.493174|0.205668 -0.684998 -0.698913|0.542752 -0.663023 -0.515578|-0.946938 -0.317825 -0.047921|-0.899440 -0.277791 -0.337403|-0.352658 -0.759397 -0.546762|-0.135351 0.001588 0.990797|-0.580680 0.117555 0.805600|-0.749426 -0.120333 0.651061|0.126260 0.150450 0.980522|0.244787 -0.024232 0.969274|0.492481 0.002019 0.870321|0.960363 -0.276421 -0.035981|0.968962 -0.245022 -0.032816|0.751561 -0.006116 0.659635|0.372772 -0.906290 0.199196|0.415284 -0.909629 -0.010724|0.344063 -0.938905 0.008828|0.070218 -0.948388 0.309240|0.038663 -0.963930 0.263331|0.012053 -0.993310 -0.114849|-0.030301 -0.702534 0.711004|-0.158436 -0.635624 0.755566|-0.390512 -0.596944 0.700827|0.173834 -0.621078 0.764228|0.135023 0.294305 0.946125|0.503425 0.072880 0.860960|0.487439 -0.728619 0.481163|0.479536 -0.733625 0.481497|0.650449 -0.155176 0.743530|0.606415 -0.779410 -0.157416|0.551742 -0.699089 0.454814|0.599202 -0.729488 -0.329854|0.820966 -0.482398 -0.305461|0.876919 -0.480575 -0.007808|0.494147 -0.619254 0.610199|-0.427452 -0.899551 -0.089960|-0.033372 -0.273982 -0.961156|0.596669 0.586906 -0.547291|0.676929 0.513312 0.527521|0.245214 -0.778473 0.577797|-0.568731 -0.766759 -0.297700|-0.060122 0.029998 -0.997740|0.574631 0.752486 -0.321814|0.529369 0.429188 0.731824|-0.796993 -0.124136 0.591094|-0.946817 0.012029 -0.321547|-0.658427 0.447009 -0.605522|-0.255484 0.949277 0.183306|-0.423743 0.468347 0.775302|-0.095709 -0.950940 -0.294200|0.460852 -0.886228 0.047065|0.479718 -0.780732 0.400409|0.852023 0.203109 0.482498|0.735500 -0.600667 0.313432|0.829363 -0.556618 0.048310|0.023128 -0.292250 -0.956062|0.108327 -0.636723 -0.763446|-0.122322 -0.762720 -0.635055|0.763704 0.413488 -0.495765|0.731021 0.171545 -0.660439|0.216563 0.070504 -0.973720|0.854995 0.217158 0.470985|0.950969 0.237450 0.198179|0.882847 0.466115 -0.057606|0.419050 0.116324 0.900481|0.611178 0.060424 0.789183|0.549667 -0.062113 0.833072|-0.521751 -0.788733 0.325080|-0.465402 -0.833070 0.298990|0.261155 -0.742711 0.616585|-0.501033 -0.377501 -0.778755|-0.338298 -0.480597 -0.809062|-0.298208 -0.681748 -0.668051|0.176185 0.364676 -0.914314|0.205440 0.345783 -0.915548|0.169166 0.154709 -0.973369|0.404813 0.861116 0.307581|0.613803 0.740269 0.274314|0.708254 0.705895 0.009431|-0.573665 -0.537345 0.618198|-0.092312 -0.615598 0.782635|-0.010444 -0.119813 0.992742|-0.746333 -0.455903 -0.484912|-0.679597 -0.680713 -0.273455|-0.793340 -0.577707 0.192008|-0.270896 0.122136 -0.954829|-0.269520 0.157442 -0.950037|-0.522570 -0.003747 -0.852588|0.251296 0.966089 0.059355|0.429242 0.851413 -0.301409|0.136466 0.724734 -0.675380|0.262593 0.575275 0.774663|0.233795 0.557875 0.796314|0.153997 0.831546 0.533681|-0.873735 0.263400 0.408910|-0.781617 -0.009135 0.623691|-0.609885 0.132469 0.781340|-0.960672 0.175884 0.214884|-0.972539 0.123811 0.197073|-0.910640 -0.206615 0.357835|-0.894651 0.446627 0.011159|-0.837903 0.314505 -0.446100|-0.848204 0.207325 -0.487408 + -0.772505 0.622182 0.126984|-0.547384 0.836812 0.010781|-0.512969 0.731719 -0.448832|-0.711314 0.563233 0.420477|-0.601968 0.629754 0.490962|-0.254819 0.868105 0.425981|0.029981 -0.981134 -0.190988|0.348012 -0.835202 0.425823|-0.048930 -0.738461 -0.672518|0.579460 -0.525586 -0.622885|0.714647 -0.666117 -0.213464|0.338891 -0.754314 0.562283|-0.671558 -0.736810 -0.078233|-0.219780 -0.156331 -0.962942|0.367803 0.757300 -0.539646|0.871691 0.211692 0.441974|0.029266 -0.822809 0.567563|-0.790334 -0.559645 -0.249339|-0.167550 0.153708 -0.973807|0.359680 0.839126 -0.408041|0.681623 0.197150 0.704644|-0.577455 0.022879 0.816102|-0.926973 0.352227 -0.129063|-0.277223 0.900363 -0.335401|0.096690 0.871688 -0.480428|-0.234253 0.522243 0.819993|-0.576298 -0.796812 -0.181579|-0.085047 -0.996372 -0.003146|0.163416 -0.906820 0.388553|0.957307 -0.027930 0.287722|0.348218 -0.835183 0.425692|0.527722 -0.849263 -0.016169|-0.393989 -0.032980 -0.918523|-0.447891 -0.364141 -0.816575|-0.630573 -0.424188 -0.649956|0.756570 0.298163 -0.581980|0.597176 0.190737 -0.779102|0.059832 0.299249 -0.952297|0.933601 -0.090353 0.346736|0.999832 -0.000021 0.018308|0.968167 0.187642 -0.165657|0.388691 -0.112273 0.914502|0.642758 -0.243720 0.726266|0.572247 -0.312934 0.758028|-0.657620 -0.593226 0.464347|-0.610832 -0.683455 0.399715|0.034992 -0.817648 0.574655|-0.614274 -0.233399 -0.753785|-0.555531 -0.295721 -0.777132|-0.554575 -0.506353 -0.660343|0.120502 0.961844 -0.245633|0.351029 0.753317 -0.556139|0.080644 0.217859 -0.972643|0.460489 0.887350 0.023648|0.736232 0.672782 -0.072982|0.722193 0.690354 0.042996|-0.523273 -0.309377 0.794022|-0.266978 -0.457376 0.848251|-0.085483 -0.147562 0.985352|-0.802974 -0.426615 -0.416211|-0.684967 -0.667765 -0.291393|-0.689269 -0.560489 0.459086|-0.280112 0.822386 -0.495195|-0.418950 0.448156 -0.789707|-0.673095 0.261740 -0.691691|-0.006160 0.912697 -0.408592|-0.068512 0.973961 -0.216116|0.119957 0.992427 -0.026451|0.367045 0.422179 0.828881|0.395902 0.425397 0.813817|0.311161 0.920142 0.237733|-0.520389 0.440230 0.731705|-0.455099 0.272427 0.847743|-0.524339 0.261545 0.810347|-0.756189 0.409120 0.510684|-0.777824 0.355978 0.517947|-0.740022 0.010614 0.672498|-0.706860 0.695879 0.126891|-0.740584 0.671707 -0.018577|-0.838260 0.516240 -0.175548|-0.532397 0.824644 0.191093|0.117621 0.870357 -0.478167|0.183357 0.981252 -0.059378|-0.371058 0.722757 0.583042|-0.379734 0.720105 0.580733|0.118117 0.966326 0.228609|-0.082868 -0.405842 -0.910179|0.323391 -0.746116 -0.582005|-0.337406 -0.048343 -0.940117|-0.317077 0.017748 -0.948234|-0.135375 -0.137306 -0.981234|0.504064 -0.813469 -0.290153|-0.129955 -0.895839 -0.424953|-0.447056 0.616262 -0.648354|-0.297923 0.885818 -0.355764|0.974035 0.187163 -0.127379|0.433826 -0.868298 -0.240529|-0.605160 -0.781855 -0.149946|-0.423238 0.673107 -0.606463|0.211693 0.971069 -0.110507|0.975694 -0.186624 0.114859|0.102179 -0.787302 0.608041|-0.716016 -0.013571 0.697952|-0.458376 0.800388 0.386355|0.474429 0.593139 0.650464|0.801033 -0.203989 0.562792|-0.066171 -0.574165 -0.816061|-0.097725 -0.581641 -0.807554|0.193418 -0.785426 -0.587959|0.551372 -0.634248 -0.541958|0.334453 -0.717925 -0.610512|-0.108768 -0.412127 -0.904611|-0.539444 0.658187 -0.525158|-0.288099 -0.053026 -0.956131|-0.341979 -0.284399 -0.895638|-0.311202 0.742691 -0.592929|-0.409180 0.656704 -0.633492|-0.483955 0.705128 -0.518249|0.677449 -0.173724 -0.714761|0.218995 0.137918 -0.965929|0.093393 0.692959 -0.714903|0.805598 -0.573232 0.149720|0.775801 -0.620631 -0.113797|0.770316 -0.628435 -0.108083|-0.043222 -0.983373 -0.176377|-0.018103 -0.943954 -0.329580|0.171225 -0.891029 -0.420416|-0.926931 0.323702 -0.189779|-0.924515 0.323091 -0.202198|-0.712634 -0.344150 -0.611321|-0.183727 0.940729 -0.285084|-0.192533 0.895644 -0.400939|-0.484486 0.675480 -0.555878|0.736260 0.605754 0.301635|0.772984 0.634299 0.012645|0.428770 0.880384 -0.202684|0.243777 -0.969801 0.007689|0.445143 -0.890546 -0.093676|0.762527 -0.618986 0.188176|-0.855533 -0.109661 0.506002|-0.653366 -0.742112 0.149605|-0.526691 -0.813820 0.245547|-0.518257 0.851590 -0.078769|-0.574964 0.809242 -0.120598|-0.722170 0.682566 0.112134|0.563302 0.755946 0.333521|0.252023 0.964649 0.077049|0.234590 0.969044 0.076950|0.901486 -0.226487 0.368818|0.941271 -0.094337 0.324205|0.838109 0.308279 0.450042|0.079049 -0.187234 0.979130|0.282006 -0.556589 0.781461|0.710819 -0.486182 0.508294|-0.485773 -0.033347 0.873449|-0.584403 -0.096924 0.805654|-0.493141 -0.641361 0.587766|-0.370829 0.263580 0.890512|-0.662752 0.457124 0.593125|-0.626776 0.470909 0.620803|0.013371 0.353477 0.935348|0.273361 0.627607 0.728961|0.075014 0.855136 0.512947|0.300456 0.120578 0.946143|0.620178 0.126164 0.774249|0.665953 0.326875 0.670566|0.677223 0.651707 -0.341536|0.127058 0.789942 -0.599874|0.919779 0.381087 -0.093698|0.942003 0.317114 -0.109861|0.850225 0.431813 -0.301091|-0.214779 0.732146 -0.646399|0.107140 0.984760 -0.136996|0.936577 -0.298095 0.184292|0.721495 -0.664335 0.195203|-0.184854 -0.351402 -0.917794|-0.250577 0.784854 -0.566759|0.084017 0.904768 0.417536|0.911145 -0.368137 0.185176|0.351040 -0.923413 -0.155177|-0.523116 -0.069802 -0.849398|-0.833354 0.544352 0.095925|-0.343445 -0.026382 0.938802|0.110347 -0.756712 0.644368 + -0.532945 -0.839561 -0.105392|-0.851551 -0.140614 -0.505063|0.531944 0.779222 -0.331433|0.533664 0.790704 -0.299983|0.166622 0.856648 -0.488254|0.046838 0.624534 -0.779592|0.157286 0.769129 -0.619437|0.679805 0.661665 -0.316331|0.878646 -0.351601 0.323046|0.913819 0.379211 -0.145375|0.801942 0.590438 -0.090957|0.882050 -0.461372 0.095520|0.923669 -0.348310 0.159737|0.868346 -0.409505 0.279787|0.307829 0.214637 -0.926915|0.800898 0.093035 -0.591529|0.821115 -0.468832 -0.325524|-0.623340 0.319053 -0.713899|-0.401040 0.443437 -0.801580|-0.406634 0.450333 -0.794889|-0.169611 0.978360 -0.118503|-0.033010 0.978799 -0.202144|-0.006186 0.913468 -0.406863|0.616943 -0.048096 0.785537|0.626567 -0.044583 0.778091|0.672529 0.647588 0.358240|0.637207 -0.760269 0.126330|0.725026 -0.683842 0.081840|0.890856 -0.371153 0.261957|-0.323881 -0.810938 -0.487319|-0.078017 -0.764945 -0.639353|0.319446 -0.860093 -0.397737|-0.429756 0.851837 -0.299472|-0.389230 0.762201 -0.517251|-0.656392 0.360479 -0.662725|-0.159230 0.147431 0.976171|-0.143271 0.794456 0.590180|-0.297484 0.807177 0.509871|0.551745 -0.661717 0.507650|0.594233 -0.598094 0.537746|0.403982 -0.512566 0.757677|-0.236036 -0.922680 -0.304876|0.171971 -0.978546 -0.113463|0.179995 -0.978836 -0.097377|-0.728790 -0.087274 -0.679152|-0.659522 -0.207071 -0.722601|-0.591827 -0.596312 -0.542358|-0.939148 -0.115442 0.323534|-0.970174 0.241034 0.025790|-0.868176 0.158152 -0.470381|-0.586718 -0.106976 0.802694|-0.513639 -0.007128 0.857977|-0.546171 0.543040 0.637812|-0.541818 -0.414453 0.731206|-0.110820 -0.448930 0.886668|-0.143252 -0.477376 0.866943|-0.691327 -0.594636 0.410457|-0.514755 -0.849966 0.112183|-0.176867 -0.959306 0.220114|-0.886539 -0.442287 0.135758|-0.854055 -0.469084 -0.224836|-0.712420 -0.637815 -0.292660|0.592541 0.703274 0.392811|0.952638 0.287196 0.099999|0.193448 0.823394 0.533480|0.156513 0.795449 0.585461|0.384068 0.715686 0.583340|0.996209 -0.005298 -0.086833|0.769596 0.581351 -0.264108|-0.478939 0.563900 0.672780|-0.710773 0.207859 0.672009|0.421290 -0.720521 0.550785|0.983058 0.033619 -0.180186|0.330517 0.754659 -0.566788|-0.524811 0.506305 0.684272|-0.592192 -0.349024 0.726286|0.622136 -0.767217 0.155968|0.440659 -0.231473 -0.867318|-0.620921 0.142590 -0.770795|-0.996232 -0.082848 0.025646|-0.434526 -0.899494 0.045801|0.382135 -0.891881 -0.241913|0.696840 0.678807 0.231591|0.682709 0.699942 0.209738|0.915621 0.400537 0.034747|0.974072 0.059887 0.218168|0.947115 0.288154 0.141209|0.581563 0.721490 0.375815|-0.604403 0.551518 0.574914|0.229051 0.796208 0.559990|0.356096 0.861940 0.360909|-0.523283 0.394422 0.755385|-0.495076 0.515651 0.699288|-0.613285 0.492751 0.617315|0.749980 -0.054614 0.659202|0.356474 0.363672 0.860621|-0.225844 0.168724 0.959441|0.815424 -0.557098 -0.157246|0.930133 -0.367196 -0.004422|0.931149 -0.364324 -0.015116|0.794042 0.391533 -0.464972|0.832003 0.452040 -0.321606|0.924838 0.346511 -0.156857|-0.674450 0.738312 -0.003623|-0.668251 0.743912 0.005899|0.102631 0.994632 -0.013178|-0.717279 0.064560 0.693788|-0.645968 0.151039 0.748273|-0.577376 0.522942 0.627031|-0.179859 -0.898641 0.400118|-0.078809 -0.764463 0.639833|-0.373970 -0.437831 0.817588|0.870795 0.059851 -0.487989|0.953626 -0.055546 -0.295825|0.813790 -0.534803 -0.227445|-0.552964 0.387201 -0.737771|0.167207 0.605388 -0.778169|0.255403 0.470489 -0.844635|-0.901055 0.222981 0.371994|-0.883853 0.302001 0.357209|-0.948437 0.311003 0.061188|-0.398624 -0.823670 0.403320|-0.632851 -0.488440 0.600770|-0.645479 -0.476154 0.597188|0.522311 -0.849146 -0.078367|0.458151 -0.887690 0.045869|0.049444 -0.986820 0.154080|-0.164498 -0.587172 -0.792572|0.297597 -0.530988 -0.793403|0.569906 -0.717582 -0.400353|-0.545787 -0.131900 -0.827477|-0.525370 0.000015 -0.850874|0.018657 0.199081 -0.979805|-0.718285 -0.306992 -0.624358|-0.915938 0.041356 -0.399183|-0.917229 -0.006055 -0.398313|-0.598441 -0.651200 -0.466698|-0.596215 -0.800360 -0.062860|-0.799148 -0.580361 0.156666|-0.270686 -0.817318 -0.508646|-0.043051 -0.962953 -0.266212|-0.135461 -0.989160 -0.056678|-0.593767 -0.032277 -0.803989|-0.552901 0.627764 -0.547918|-0.575427 -0.542113 -0.612370|-0.941512 -0.320932 -0.102751|-0.976719 0.125543 -0.173950|-0.456598 0.741167 -0.492127|0.121025 -0.189024 -0.974486|-0.244057 -0.950376 -0.192931|-0.088036 -0.490542 0.866959|-0.420495 0.667447 0.614571|-0.247157 0.654930 -0.714129|0.245355 -0.412361 -0.877359|-0.129664 -0.986716 0.097868|0.006273 -0.381483 0.924354|-0.187252 0.853326 0.486592|0.749357 0.572296 -0.333078|0.862511 -0.471274 -0.184326|0.562410 -0.529237 0.635298|0.203911 -0.539267 0.817075|0.737948 0.618042 0.271029|-0.020536 -0.246347 -0.968964|-0.445835 0.108120 -0.888561|-0.457942 0.542832 -0.704005|-0.664456 0.584384 0.465826|-0.553097 0.627706 -0.547786|-0.855300 0.274774 -0.439273|-0.028655 -0.982670 -0.183138|-0.120785 -0.858740 -0.497972|0.049781 -0.753960 -0.655031|-0.643281 -0.339756 0.686116|-0.642260 -0.561017 0.522266|-0.225726 -0.912901 0.340089|-0.657311 0.640561 0.397018|-0.777517 0.342345 0.527511|-0.720583 0.133850 0.680327|-0.043146 0.997409 0.057560|-0.375521 0.922292 0.091442|-0.344678 0.938700 -0.006282|0.373190 0.303000 -0.876881|0.267636 0.270331 -0.924820|-0.246522 0.662708 -0.707139 + 0.098688 -0.872336 -0.478843|0.012494 -0.866388 -0.499215|-0.055602 -0.727516 -0.683833|0.313473 -0.324469 0.892443|-0.082686 -0.510873 0.855670|-0.290922 -0.913828 0.283341|0.102674 0.048355 0.993539|-0.257378 0.077541 0.963195|-0.196866 0.179005 0.963951|0.528630 0.615529 -0.584529|0.270653 0.770222 -0.577500|0.335235 0.914353 -0.227102|0.265298 -0.591074 -0.761740|0.092568 -0.402368 -0.910786|0.412970 0.283227 -0.865586|0.468872 -0.668778 0.576971|0.282835 -0.937295 0.203673|0.420622 -0.902330 -0.094219|0.330667 -0.511242 0.793278|0.478189 -0.360025 0.801072|0.406108 -0.123898 0.905387|0.218259 0.835872 0.503668|0.192026 0.830721 0.522521|0.311314 0.195454 0.929990|0.889373 0.453813 0.055405|0.792559 0.606945 -0.058888|0.828206 0.550961 -0.102548|0.981128 0.174720 -0.082829|0.973349 0.181875 -0.139690|0.820392 0.386811 -0.421110|0.955670 -0.208127 0.208274|0.918926 -0.351789 0.178382|0.860915 -0.508732 0.004156|0.907389 -0.109259 0.405843|0.187606 -0.530158 0.826884|0.339171 -0.132517 0.931344|0.865415 0.324003 0.382204|0.870049 0.319391 0.375504|0.483186 0.117698 0.867570| + Face:1004 + palette:trunk_1 + 1/0 337/0 336/0| 337/1 5/1 338/1| 75/2 71/2 72/2| 75/3 73/3 74/3| 9/4 340/4 339/4| 340/5 13/5 341/5| 25/6 16/6 24/6| 342/7 1/7 336/7| 13/8 342/8 341/8| 6/9 10/9 14/9| 22/10 20/10 18/10| 25/11 22/11 23/11| 27/12 22/12 26/12| 28/13 21/13 27/13| 29/14 20/14 28/14| 29/15 18/15 19/15| 31/16 18/16 30/16| 31/17 16/17 17/17| 293/18 24/18 461/18| 456/19 25/19 293/19| 456/20 27/20 26/20| 458/21 27/21 457/21| 458/22 29/22 28/22| 459/23 30/23 29/23| 86/24 84/24 88/24| 87/25 85/25 86/25| 32/26 2/26 0/26| 33/27 4/27 2/27| 34/28 6/28 4/28| 35/29 8/29 6/29| 36/30 10/30 8/30| 37/31 12/31 10/31| 39/32 0/32 14/32| 38/33 14/33 12/33| 408/34 406/34 410/34| 92/35 51/35 52/35| 92/36 53/36 96/36| 11/37 44/37 43/37| 7/38 44/38 9/38| 7/39 46/39 45/39| 5/40 47/40 46/40| 408/41 407/41 405/41| 49/42 51/42 50/42| 49/43 53/43 52/43| 96/44 48/44 97/44| 93/45 50/45 51/45| 95/46 50/46 94/46| 95/47 48/47 49/47| 111/48 109/48 108/48| 111/49 107/49 110/49| 98/50 57/50 99/50| 101/51 58/51 56/51| 103/52 58/52 102/52| 103/53 57/53 59/53| 60/54 116/54 123/54| 116/55 62/55 117/55| 117/56 63/56 118/56| 63/57 119/57 118/57| 119/58 65/58 120/58| 120/59 66/59 121/59| 67/60 123/60 122/60| 66/61 122/61 121/61| 68/62 344/62 343/62| 344/63 70/63 345/63| 346/64 73/64 345/64| 78/65 343/65 347/65| 79/66 70/66 69/66| 79/67 68/67 78/67| 63/68 76/68 75/68| 63/69 74/69 64/69| 339/70 74/70 346/70| 5/71 347/71 338/71| 7/72 77/72 79/72| 7/73 78/73 5/73| 463/74 81/74 462/74| 463/75 80/75 82/75| 89/76 464/76 465/76| 90/77 80/77 89/77| 90/78 81/78 82/78| 466/79 84/79 462/79| 47/80 88/80 46/80| 47/81 87/81 86/81| 24/82 465/82 461/82| 31/83 89/83 24/83| 31/84 91/84 90/84| 460/85 88/85 466/85| 55/35 93/35 92/35| 55/86 96/86 54/86| 54/44 97/44 57/44| 56/87 94/87 93/87| 59/88 94/88 58/88| 59/89 97/89 95/89| 42/90 101/90 100/90| 42/91 98/91 43/91| 43/92 99/92 11/92| 41/93 102/93 101/93| 13/94 102/94 15/94| 13/95 99/95 103/95| 108/96 106/96 105/96| 108/97 104/97 107/97| 113/98 107/98 104/98| 114/99 104/99 105/99| 114/100 106/100 115/100| 115/101 109/101 112/101| 100/102 112/102 111/102| 100/103 110/103 98/103| 98/104 113/104 54/104| 55/105 113/105 114/105| 55/106 115/106 56/106| 101/107 115/107 112/107| 123/108 33/108 32/108| 116/109 34/109 33/109| 34/110 118/110 35/110| 118/111 36/111 35/111| 119/112 37/112 36/112| 37/113 121/113 38/113| 122/114 32/114 39/114| 121/115 39/115 38/115| 336/0 61/0 60/0| 61/1 338/1 62/1| 354/116 351/116 356/116| 354/117 353/117 352/117| 342/118 60/118 67/118| 341/119 67/119 66/119| 71/120 344/120 72/120| 344/121 73/121 72/121| 77/122 345/122 70/122| 347/123 71/123 76/123| 9/70 346/70 77/70| 338/71 76/71 62/71| 351/124 349/124 348/124| 349/125 353/125 350/125| 358/126 350/126 357/126| 358/127 348/127 349/127| 357/128 353/128 355/128| 359/129 351/129 348/129| 339/130 354/130 356/130| 340/131 355/131 354/131| 65/132 357/132 66/132| 65/133 359/133 358/133| 66/134 355/134 341/134| 64/135 356/135 359/135| 402/136 406/136 405/136| 402/137 407/137 403/137| 409/138 403/138 407/138| 410/139 404/139 412/139| 413/140 404/140 402/140| 413/141 403/141 411/141| 40/142 410/142 41/142| 40/143 409/143 408/143| 3/144 409/144 47/144| 15/145 410/145 412/145| 1/146 412/146 413/146| 1/147 411/147 3/147| 40/148 293/148 461/148| 42/149 293/149 41/149| 42/150 457/150 456/150| 474/151 470/151 471/151| 474/152 472/152 473/152| 45/153 460/153 459/153| 84/74 463/74 462/74| 83/154 463/154 85/154| 465/155 83/155 87/155| 91/156 462/156 81/156| 461/157 87/157 40/157| 30/158 466/158 91/158| 468/159 470/159 467/159| 468/160 472/160 471/160| 473/161 469/161 476/161| 475/162 467/162 470/162| 478/163 469/163 468/163| 478/164 467/164 477/164| 458/165 475/165 474/165| 458/166 473/166 459/166| 45/167 473/167 476/167| 457/168 477/168 475/168| 44/169 476/169 478/169| 44/170 477/170 43/170| 1/0 3/0 337/0| 337/1 3/1 5/1| 75/171 76/171 71/171| 75/172 72/172 73/172| 9/4 11/4 340/4| 340/5 11/5 13/5| 25/173 23/173 16/173| 342/174 15/174 1/174| 13/175 15/175 342/175| 14/9 0/9 6/9| 0/9 2/9 6/9| 2/9 4/9 6/9| 6/9 8/9 10/9| 10/9 12/9 14/9| 18/176 17/176 22/176| 17/177 16/177 22/177| 16/178 23/178 22/178| 22/179 21/179 20/179| 20/180 19/180 18/180| 25/181 26/181 22/181| 27/182 21/182 22/182| 28/183 20/183 21/183| 29/184 19/184 20/184| 29/185 30/185 18/185| 31/186 17/186 18/186| 31/187 24/187 16/187| 293/188 25/188 24/188| 456/189 26/189 25/189| 456/190 457/190 27/190| 458/191 28/191 27/191| 458/192 459/192 29/192| 459/193 460/193 30/193| 86/194 85/194 84/194| 87/195 83/195 85/195| 32/26 33/26 2/26| 33/196 34/196 4/196| 34/197 35/197 6/197| 35/198 36/198 8/198| 36/30 37/30 10/30| 37/199 38/199 12/199| 39/32 32/32 0/32| 38/200 39/200 14/200| 408/201 405/201 406/201| 92/35 93/35 51/35| 92/202 52/202 53/202| 11/203 9/203 44/203| 7/204 45/204 44/204| 7/205 5/205 46/205| 5/206 3/206 47/206| 408/207 409/207 407/207| 49/208 52/208 51/208| 49/209 48/209 53/209| 96/44 53/44 48/44| 93/87 94/87 50/87| 95/210 49/210 50/210| 95/89 97/89 48/89| 111/211 112/211 109/211| 111/49 108/49 107/49| 98/212 54/212 57/212| 101/213 102/213 58/213| 103/214 59/214 58/214| 103/215 99/215 57/215| 60/216 61/216 116/216| 116/217 61/217 62/217| 117/218 62/218 63/218| 63/219 64/219 119/219| 119/220 64/220 65/220| 120/221 65/221 66/221| 67/222 60/222 123/222| 66/223 67/223 122/223 + 68/224 69/224 344/224| 344/225 69/225 70/225| 346/226 74/226 73/226| 78/227 68/227 343/227| 79/228 77/228 70/228| 79/229 69/229 68/229| 63/230 62/230 76/230| 63/231 75/231 74/231| 339/70 64/70 74/70| 5/71 78/71 347/71| 7/232 9/232 77/232| 7/233 79/233 78/233| 463/234 82/234 81/234| 463/235 464/235 80/235| 89/236 80/236 464/236| 90/237 82/237 80/237| 90/238 91/238 81/238| 466/239 88/239 84/239| 47/240 86/240 88/240| 47/241 40/241 87/241| 24/242 89/242 465/242| 31/243 90/243 89/243| 31/244 30/244 91/244| 460/245 46/245 88/245| 55/35 56/35 93/35| 55/246 92/246 96/246| 54/44 96/44 97/44| 56/87 58/87 94/87| 59/247 95/247 94/247| 59/248 57/248 97/248| 42/249 41/249 101/249| 42/250 100/250 98/250| 43/251 98/251 99/251| 41/252 15/252 102/252| 13/253 103/253 102/253| 13/254 11/254 99/254| 108/255 109/255 106/255| 108/256 105/256 104/256| 113/257 110/257 107/257| 114/258 113/258 104/258| 114/259 105/259 106/259| 115/260 106/260 109/260| 100/261 101/261 112/261| 100/262 111/262 110/262| 98/263 110/263 113/263| 55/264 54/264 113/264| 55/265 114/265 115/265| 101/266 56/266 115/266| 123/108 116/108 33/108| 116/109 117/109 34/109| 34/267 117/267 118/267| 118/268 119/268 36/268| 119/112 120/112 37/112| 37/269 120/269 121/269| 122/114 123/114 32/114| 121/270 122/270 39/270| 336/0 337/0 61/0| 61/1 337/1 338/1| 354/271 352/271 351/271| 354/272 355/272 353/272| 342/7 336/7 60/7| 341/273 342/273 67/273| 71/274 343/274 344/274| 344/275 345/275 73/275| 77/276 346/276 345/276| 347/277 343/277 71/277| 9/70 339/70 346/70| 338/71 347/71 76/71| 351/278 352/278 349/278| 349/279 352/279 353/279| 358/280 349/280 350/280| 358/281 359/281 348/281| 357/282 350/282 353/282| 359/283 356/283 351/283| 339/284 340/284 354/284| 340/285 341/285 355/285| 65/286 358/286 357/286| 65/287 64/287 359/287| 66/288 357/288 355/288| 64/289 339/289 356/289| 402/290 404/290 406/290| 402/291 405/291 407/291| 409/138 411/138 403/138| 410/139 406/139 404/139| 413/292 412/292 404/292| 413/293 402/293 403/293| 40/294 408/294 410/294| 40/295 47/295 409/295| 3/144 411/144 409/144| 15/145 41/145 410/145| 1/146 15/146 412/146| 1/296 413/296 411/296| 40/297 41/297 293/297| 42/298 456/298 293/298| 42/299 43/299 457/299| 474/300 475/300 470/300| 474/301 471/301 472/301| 45/302 46/302 460/302| 84/303 85/303 463/303| 83/304 464/304 463/304| 465/305 464/305 83/305| 91/306 466/306 462/306| 461/307 465/307 87/307| 30/308 460/308 466/308| 468/309 471/309 470/309| 468/310 469/310 472/310| 473/311 472/311 469/311| 475/312 477/312 467/312| 478/313 476/313 469/313| 478/314 468/314 467/314| 458/315 457/315 475/315| 458/316 474/316 473/316| 45/167 459/167 473/167| 457/317 43/317 477/317| 44/318 45/318 476/318| 44/319 478/319 477/319| + palette:leaf_1 + 124/320 137/320 136/320| 125/321 137/321 139/321| 124/322 136/322 141/322| 124/323 141/323 143/323| 124/324 143/324 140/324| 125/325 139/325 146/325| 126/326 138/326 148/326| 127/327 142/327 150/327| 128/328 144/328 152/328| 129/329 145/329 154/329| 125/330 146/330 149/330| 126/331 148/331 151/331| 127/332 150/332 153/332| 128/333 152/333 155/333| 129/334 154/334 147/334| 130/335 156/335 161/335| 131/336 157/336 163/336| 132/337 158/337 164/337| 133/338 159/338 165/338| 134/339 160/339 162/339| 136/340 138/340 126/340| 136/341 137/341 138/341| 137/342 125/342 138/342| 139/343 140/343 129/343| 139/344 137/344 140/344| 137/345 124/345 140/345| 141/346 142/346 127/346| 141/347 136/347 142/347| 136/348 126/348 142/348| 143/349 144/349 128/349| 143/350 141/350 144/350| 141/351 127/351 144/351| 140/352 145/352 129/352| 140/353 143/353 145/353| 143/354 128/354 145/354| 146/355 147/355 134/355| 146/356 139/356 147/356| 139/357 129/357 147/357| 148/358 149/358 130/358| 148/359 138/359 149/359| 138/360 125/360 149/360| 150/361 151/361 131/361| 150/362 142/362 151/362| 142/363 126/363 151/363| 152/364 153/364 132/364| 152/365 144/365 153/365| 144/366 127/366 153/366| 154/367 155/367 133/367| 154/368 145/368 155/368| 145/369 128/369 155/369| 149/370 156/370 130/370| 149/371 146/371 156/371| 146/372 134/372 156/372| 151/373 157/373 131/373| 151/374 148/374 157/374| 148/375 130/375 157/375| 153/376 158/376 132/376| 153/377 150/377 158/377| 150/378 131/378 158/378| 155/379 159/379 133/379| 155/380 152/380 159/380| 152/381 132/381 159/381| 147/382 160/382 134/382| 147/383 154/383 160/383| 154/384 133/384 160/384| 161/385 162/385 135/385| 161/386 156/386 162/386| 156/387 134/387 162/387| 163/388 161/388 135/388| 163/389 157/389 161/389| 157/390 130/390 161/390| 164/391 163/391 135/391| 164/392 158/392 163/392| 158/393 131/393 163/393| 165/394 164/394 135/394| 165/395 159/395 164/395| 159/396 132/396 164/396| 162/397 165/397 135/397| 162/398 160/398 165/398| 160/399 133/399 165/399| 166/400 179/400 178/400| 167/401 179/401 181/401| 166/402 178/402 183/402| 166/403 183/403 185/403| 166/404 185/404 182/404| 167/405 181/405 188/405| 168/406 180/406 190/406| 169/407 184/407 192/407| 170/408 186/408 194/408| 171/409 187/409 196/409| 167/410 188/410 191/410| 168/411 190/411 193/411| 169/412 192/412 195/412| 170/413 194/413 197/413| 171/414 196/414 189/414| 172/415 198/415 203/415| 173/416 199/416 205/416| 174/417 200/417 206/417| 175/418 201/418 207/418| 176/419 202/419 204/419| 178/420 180/420 168/420| 178/421 179/421 180/421| 179/422 167/422 180/422| 181/423 182/423 171/423| 181/424 179/424 182/424| 179/425 166/425 182/425| 183/426 184/426 169/426| 183/427 178/427 184/427| 178/428 168/428 184/428| 185/429 186/429 170/429| 185/430 183/430 186/430| 183/431 169/431 186/431| 182/432 187/432 171/432| 182/433 185/433 187/433| 185/434 170/434 187/434| 188/435 189/435 176/435| 188/436 181/436 189/436| 181/437 171/437 189/437| 190/438 191/438 172/438| 190/439 180/439 191/439| 180/440 167/440 191/440| 192/441 193/441 173/441| 192/442 184/442 193/442| 184/443 168/443 193/443| 194/444 195/444 174/444| 194/445 186/445 195/445| 186/446 169/446 195/446| 196/447 197/447 175/447| 196/448 187/448 197/448| 187/449 170/449 197/449| 191/450 198/450 172/450| 191/451 188/451 198/451| 188/452 176/452 198/452| 193/453 199/453 173/453| 193/454 190/454 199/454| 190/455 172/455 199/455| 195/456 200/456 174/456| 195/457 192/457 200/457| 192/458 173/458 200/458| 197/459 201/459 175/459| 197/460 194/460 201/460| 194/461 174/461 201/461| 189/462 202/462 176/462| 189/463 196/463 202/463| 196/464 175/464 202/464| 203/465 204/465 177/465| 203/466 198/466 204/466| 198/467 176/467 204/467| 205/468 203/468 177/468| 205/469 199/469 203/469| 199/470 172/470 203/470| 206/471 205/471 177/471| 206/472 200/472 205/472| 200/473 173/473 205/473| 207/474 206/474 177/474| 207/475 201/475 206/475| 201/476 174/476 206/476| 204/477 207/477 177/477| 204/478 202/478 207/478| 202/479 175/479 207/479| 251/480 264/480 263/480| 252/481 264/481 266/481| 251/482 263/482 268/482| 251/483 268/483 270/483| 251/484 270/484 267/484| 252/485 266/485 273/485| 253/486 265/486 275/486| 254/487 269/487 277/487| 255/488 271/488 279/488| 256/489 272/489 281/489| 252/490 273/490 276/490| 253/491 275/491 278/491| 254/492 277/492 280/492| 255/493 279/493 282/493| 256/494 281/494 274/494| 257/495 283/495 288/495| 258/496 284/496 290/496| 259/497 285/497 291/497| 260/498 286/498 292/498| 261/499 287/499 289/499| 263/500 265/500 253/500| 263/501 264/501 265/501| 264/502 252/502 265/502| 266/503 267/503 256/503| 266/504 264/504 267/504| 264/505 251/505 267/505| 268/506 269/506 254/506| 268/507 263/507 269/507| 263/508 253/508 269/508| 270/509 271/509 255/509| 270/510 268/510 271/510| 268/511 254/511 271/511| 267/512 272/512 256/512| 267/513 270/513 272/513| 270/514 255/514 272/514| 273/515 274/515 261/515| 273/516 266/516 274/516| 266/517 256/517 274/517| 275/518 276/518 257/518| 275/519 265/519 276/519| 265/520 252/520 276/520| 277/521 278/521 258/521| 277/522 269/522 278/522| 269/523 253/523 278/523| 279/524 280/524 259/524| 279/525 271/525 280/525| 271/526 254/526 280/526| 281/527 282/527 260/527| 281/528 272/528 282/528| 272/529 255/529 282/529 + 276/530 283/530 257/530| 276/531 273/531 283/531| 273/532 261/532 283/532| 278/533 284/533 258/533| 278/534 275/534 284/534| 275/535 257/535 284/535| 280/536 285/536 259/536| 280/537 277/537 285/537| 277/538 258/538 285/538| 282/539 286/539 260/539| 282/540 279/540 286/540| 279/541 259/541 286/541| 274/542 287/542 261/542| 274/543 281/543 287/543| 281/544 260/544 287/544| 288/545 289/545 262/545| 288/546 283/546 289/546| 283/547 261/547 289/547| 290/548 288/548 262/548| 290/549 284/549 288/549| 284/550 257/550 288/550| 291/551 290/551 262/551| 291/552 285/552 290/552| 285/553 258/553 290/553| 292/554 291/554 262/554| 292/555 286/555 291/555| 286/556 259/556 291/556| 289/557 292/557 262/557| 289/558 287/558 292/558| 287/559 260/559 292/559| + palette:leaf_2 + 209/560 222/560 221/560| 210/561 222/561 224/561| 209/562 221/562 226/562| 209/563 226/563 228/563| 209/564 228/564 225/564| 210/565 224/565 231/565| 211/566 223/566 233/566| 212/567 227/567 235/567| 213/568 229/568 237/568| 214/569 230/569 239/569| 210/570 231/570 234/570| 211/571 233/571 236/571| 212/572 235/572 238/572| 213/573 237/573 240/573| 214/574 239/574 232/574| 215/575 241/575 246/575| 216/576 242/576 248/576| 217/577 243/577 249/577| 218/578 244/578 250/578| 219/579 245/579 247/579| 221/580 223/580 211/580| 221/581 222/581 223/581| 222/582 210/582 223/582| 224/583 225/583 214/583| 224/584 222/584 225/584| 222/585 209/585 225/585| 226/586 227/586 212/586| 226/587 221/587 227/587| 221/588 211/588 227/588| 228/589 229/589 213/589| 228/590 226/590 229/590| 226/591 212/591 229/591| 225/592 230/592 214/592| 225/593 228/593 230/593| 228/594 213/594 230/594| 231/595 232/595 219/595| 231/596 224/596 232/596| 224/597 214/597 232/597| 233/598 234/598 215/598| 233/599 223/599 234/599| 223/600 210/600 234/600| 235/601 236/601 216/601| 235/602 227/602 236/602| 227/603 211/603 236/603| 237/604 238/604 217/604| 237/605 229/605 238/605| 229/606 212/606 238/606| 239/607 240/607 218/607| 239/608 230/608 240/608| 230/609 213/609 240/609| 234/610 241/610 215/610| 234/611 231/611 241/611| 231/612 219/612 241/612| 236/613 242/613 216/613| 236/614 233/614 242/614| 233/615 215/615 242/615| 238/616 243/616 217/616| 238/617 235/617 243/617| 235/618 216/618 243/618| 240/619 244/619 218/619| 240/620 237/620 244/620| 237/621 217/621 244/621| 232/622 245/622 219/622| 232/623 239/623 245/623| 239/624 218/624 245/624| 246/625 247/625 220/625| 246/626 241/626 247/626| 241/627 219/627 247/627| 248/628 246/628 220/628| 248/629 242/629 246/629| 242/630 215/630 246/630| 249/631 248/631 220/631| 249/632 243/632 248/632| 243/633 216/633 248/633| 250/634 249/634 220/634| 250/635 244/635 249/635| 244/636 217/636 249/636| 247/637 250/637 220/637| 247/638 245/638 250/638| 245/639 218/639 250/639| 294/640 307/640 306/640| 295/641 307/641 309/641| 294/642 306/642 311/642| 294/643 311/643 313/643| 294/644 313/644 310/644| 295/645 309/645 316/645| 296/646 308/646 318/646| 297/647 312/647 320/647| 298/648 314/648 322/648| 299/649 315/649 324/649| 295/650 316/650 319/650| 296/651 318/651 321/651| 297/652 320/652 323/652| 298/653 322/653 325/653| 299/654 324/654 317/654| 300/655 326/655 331/655| 301/656 327/656 333/656| 302/657 328/657 334/657| 303/658 329/658 335/658| 304/659 330/659 332/659| 306/660 308/660 296/660| 306/661 307/661 308/661| 307/662 295/662 308/662| 309/663 310/663 299/663| 309/664 307/664 310/664| 307/665 294/665 310/665| 311/666 312/666 297/666| 311/667 306/667 312/667| 306/668 296/668 312/668| 313/669 314/669 298/669| 313/670 311/670 314/670| 311/671 297/671 314/671| 310/672 315/672 299/672| 310/673 313/673 315/673| 313/674 298/674 315/674| 316/675 317/675 304/675| 316/676 309/676 317/676| 309/677 299/677 317/677| 318/678 319/678 300/678| 318/679 308/679 319/679| 308/680 295/680 319/680| 320/681 321/681 301/681| 320/682 312/682 321/682| 312/683 296/683 321/683| 322/684 323/684 302/684| 322/685 314/685 323/685| 314/686 297/686 323/686| 324/687 325/687 303/687| 324/688 315/688 325/688| 315/689 298/689 325/689| 319/690 326/690 300/690| 319/691 316/691 326/691| 316/692 304/692 326/692| 321/693 327/693 301/693| 321/694 318/694 327/694| 318/695 300/695 327/695| 323/696 328/696 302/696| 323/697 320/697 328/697| 320/698 301/698 328/698| 325/699 329/699 303/699| 325/700 322/700 329/700| 322/701 302/701 329/701| 317/702 330/702 304/702| 317/703 324/703 330/703| 324/704 303/704 330/704| 331/705 332/705 305/705| 331/706 326/706 332/706| 326/707 304/707 332/707| 333/708 331/708 305/708| 333/709 327/709 331/709| 327/710 300/710 331/710| 334/711 333/711 305/711| 334/712 328/712 333/712| 328/713 301/713 333/713| 335/714 334/714 305/714| 335/715 329/715 334/715| 329/716 302/716 334/716| 332/717 335/717 305/717| 332/718 330/718 335/718| 330/719 303/719 335/719| 479/720 492/720 491/720| 480/721 492/721 494/721| 479/722 491/722 496/722| 479/723 496/723 498/723| 479/724 498/724 495/724| 480/725 494/725 501/725| 481/726 493/726 503/726| 482/727 497/727 505/727| 483/728 499/728 507/728| 484/729 500/729 509/729| 480/730 501/730 504/730| 481/731 503/731 506/731| 482/732 505/732 508/732| 483/733 507/733 510/733| 484/734 509/734 502/734| 485/735 511/735 516/735| 486/736 512/736 518/736| 487/737 513/737 519/737| 488/738 514/738 520/738| 489/739 515/739 517/739| 491/740 493/740 481/740| 491/741 492/741 493/741| 492/742 480/742 493/742| 494/743 495/743 484/743| 494/744 492/744 495/744| 492/745 479/745 495/745| 496/746 497/746 482/746| 496/747 491/747 497/747| 491/748 481/748 497/748| 498/749 499/749 483/749| 498/750 496/750 499/750| 496/751 482/751 499/751| 495/752 500/752 484/752| 495/753 498/753 500/753| 498/754 483/754 500/754| 501/755 502/755 489/755| 501/756 494/756 502/756| 494/757 484/757 502/757| 503/758 504/758 485/758| 503/759 493/759 504/759| 493/760 480/760 504/760| 505/761 506/761 486/761| 505/762 497/762 506/762| 497/763 481/763 506/763| 507/764 508/764 487/764| 507/765 499/765 508/765| 499/766 482/766 508/766| 509/767 510/767 488/767| 509/768 500/768 510/768| 500/769 483/769 510/769 + 504/770 511/770 485/770| 504/771 501/771 511/771| 501/772 489/772 511/772| 506/773 512/773 486/773| 506/774 503/774 512/774| 503/775 485/775 512/775| 508/776 513/776 487/776| 508/777 505/777 513/777| 505/778 486/778 513/778| 510/779 514/779 488/779| 510/780 507/780 514/780| 507/781 487/781 514/781| 502/782 515/782 489/782| 502/783 509/783 515/783| 509/784 488/784 515/784| 516/785 517/785 490/785| 516/786 511/786 517/786| 511/787 489/787 517/787| 518/788 516/788 490/788| 518/789 512/789 516/789| 512/790 485/790 516/790| 519/791 518/791 490/791| 519/792 513/792 518/792| 513/793 486/793 518/793| 520/794 519/794 490/794| 520/795 514/795 519/795| 514/796 487/796 519/796| 517/797 520/797 490/797| 517/798 515/798 520/798| 515/799 488/799 520/799| + palette:leaf_3 + 360/800 373/800 372/800| 361/801 373/801 375/801| 360/802 372/802 377/802| 360/803 377/803 379/803| 360/804 379/804 376/804| 361/805 375/805 382/805| 362/806 374/806 384/806| 363/807 378/807 386/807| 364/808 380/808 388/808| 365/809 381/809 390/809| 361/810 382/810 385/810| 362/811 384/811 387/811| 363/812 386/812 389/812| 364/813 388/813 391/813| 365/814 390/814 383/814| 366/815 392/815 397/815| 367/816 393/816 399/816| 368/817 394/817 400/817| 369/818 395/818 401/818| 370/819 396/819 398/819| 372/820 374/820 362/820| 372/821 373/821 374/821| 373/822 361/822 374/822| 375/823 376/823 365/823| 375/824 373/824 376/824| 373/825 360/825 376/825| 377/826 378/826 363/826| 377/827 372/827 378/827| 372/828 362/828 378/828| 379/829 380/829 364/829| 379/830 377/830 380/830| 377/831 363/831 380/831| 376/832 381/832 365/832| 376/833 379/833 381/833| 379/834 364/834 381/834| 382/835 383/835 370/835| 382/836 375/836 383/836| 375/837 365/837 383/837| 384/838 385/838 366/838| 384/839 374/839 385/839| 374/840 361/840 385/840| 386/841 387/841 367/841| 386/842 378/842 387/842| 378/843 362/843 387/843| 388/844 389/844 368/844| 388/845 380/845 389/845| 380/846 363/846 389/846| 390/847 391/847 369/847| 390/848 381/848 391/848| 381/849 364/849 391/849| 385/850 392/850 366/850| 385/851 382/851 392/851| 382/852 370/852 392/852| 387/853 393/853 367/853| 387/854 384/854 393/854| 384/855 366/855 393/855| 389/856 394/856 368/856| 389/857 386/857 394/857| 386/858 367/858 394/858| 391/859 395/859 369/859| 391/860 388/860 395/860| 388/861 368/861 395/861| 383/862 396/862 370/862| 383/863 390/863 396/863| 390/864 369/864 396/864| 397/865 398/865 371/865| 397/866 392/866 398/866| 392/867 370/867 398/867| 399/868 397/868 371/868| 399/869 393/869 397/869| 393/870 366/870 397/870| 400/871 399/871 371/871| 400/872 394/872 399/872| 394/873 367/873 399/873| 401/874 400/874 371/874| 401/875 395/875 400/875| 395/876 368/876 400/876| 398/877 401/877 371/877| 398/878 396/878 401/878| 396/879 369/879 401/879| 414/880 427/880 426/880| 415/881 427/881 429/881| 414/882 426/882 431/882| 414/883 431/883 433/883| 414/884 433/884 430/884| 415/885 429/885 436/885| 416/886 428/886 438/886| 417/887 432/887 440/887| 418/888 434/888 442/888| 419/889 435/889 444/889| 415/890 436/890 439/890| 416/891 438/891 441/891| 417/892 440/892 443/892| 418/893 442/893 445/893| 419/894 444/894 437/894| 420/895 446/895 451/895| 421/896 447/896 453/896| 422/897 448/897 454/897| 423/898 449/898 455/898| 424/899 450/899 452/899| 426/900 428/900 416/900| 426/901 427/901 428/901| 427/902 415/902 428/902| 429/903 430/903 419/903| 429/904 427/904 430/904| 427/905 414/905 430/905| 431/906 432/906 417/906| 431/907 426/907 432/907| 426/908 416/908 432/908| 433/909 434/909 418/909| 433/910 431/910 434/910| 431/911 417/911 434/911| 430/912 435/912 419/912| 430/913 433/913 435/913| 433/914 418/914 435/914| 436/915 437/915 424/915| 436/916 429/916 437/916| 429/917 419/917 437/917| 438/918 439/918 420/918| 438/919 428/919 439/919| 428/920 415/920 439/920| 440/921 441/921 421/921| 440/922 432/922 441/922| 432/923 416/923 441/923| 442/924 443/924 422/924| 442/925 434/925 443/925| 434/926 417/926 443/926| 444/927 445/927 423/927| 444/928 435/928 445/928| 435/929 418/929 445/929| 439/930 446/930 420/930| 439/931 436/931 446/931| 436/932 424/932 446/932| 441/933 447/933 421/933| 441/934 438/934 447/934| 438/935 420/935 447/935| 443/936 448/936 422/936| 443/937 440/937 448/937| 440/938 421/938 448/938| 445/939 449/939 423/939| 445/940 442/940 449/940| 442/941 422/941 449/941| 437/942 450/942 424/942| 437/943 444/943 450/943| 444/944 423/944 450/944| 451/945 452/945 425/945| 451/946 446/946 452/946| 446/947 424/947 452/947| 453/948 451/948 425/948| 453/949 447/949 451/949| 447/950 420/950 451/950| 454/951 453/951 425/951| 454/952 448/952 453/952| 448/953 421/953 453/953| 455/954 454/954 425/954| 455/955 449/955 454/955| 449/956 422/956 454/956| 452/957 455/957 425/957| 452/958 450/958 455/958| 450/959 423/959 455/959| +Physics: + Cylinder + radius:0.25 + size:2.0 + origin:0.0117903 0.0311268 0.962411 + mass:6.25 + Sphere + radius:1.3350000381469727 + origin:-0.093534 -0.0233787 2.81849 + mass:237.92705789594712 +# Just for information: +Palettes:leaf_1 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.346704 0.558341 0.090842 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.000000 + d 1.000000 + illum 2 +# Just for information: +Palettes:leaf_2 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.278894 0.278894 0.023153 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.000000 + d 1.000000 + illum 2 +# Just for information: +Palettes:leaf_3 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.800000 0.800000 0.800000 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.000000 + d 1.000000 + illum 2 +# Just for information: +Palettes:trunk_1 + Ns 225.000000 + Ka 1.000000 1.000000 1.000000 + Kd 0.057805 0.039546 0.013702 + Ks 0.500000 0.500000 0.500000 + Ke 0.000000 0.000000 0.000000 + vNi 1.000000 + d 1.000000 + illum 2 diff --git a/src/module-info.java b/src/module-info.java index f366b65..8572f2d 100644 --- a/src/module-info.java +++ b/src/module-info.java @@ -25,5 +25,5 @@ open module org.atriasoft.ege { requires transitive org.atriasoft.etk; requires transitive org.atriasoft.ewol; requires transitive org.atriasoft.ephysics; - requires org.atriasoft.loader3d; + requires transitive org.atriasoft.loader3d; } diff --git a/src/org/atriasoft/ege/components/ComponentMesh.java b/src/org/atriasoft/ege/components/ComponentMesh.java new file mode 100644 index 0000000..55c1887 --- /dev/null +++ b/src/org/atriasoft/ege/components/ComponentMesh.java @@ -0,0 +1,45 @@ +package org.atriasoft.ege.components; + +import org.atriasoft.ege.Component; +import org.atriasoft.etk.Uri; +import org.atriasoft.loader3d.resources.ResourceMesh; +import org.atriasoft.loader3d.resources.ResourceStaticMesh; + +public class ComponentMesh extends Component { + private ResourceMesh mesh = null; + + public ComponentMesh(Uri objectFileName) { + this.mesh = ResourceMesh.create(objectFileName); + } + + public void bindForRendering() { + if (this.mesh == null) { + return; + } + this.mesh.bindForRendering(); + } + + public ResourceStaticMesh getMesh() { + return this.mesh; + } + + @Override + public String getType() { + // TODO Auto-generated method stub + return "mesh"; + } + + public void render() { + if (this.mesh == null) { + return; + } + this.mesh.render(); + } + + public void unBindForRendering() { + if (this.mesh == null) { + return; + } + this.mesh.unBindForRendering(); + } +} diff --git a/src/org/atriasoft/ege/components/ComponentRenderMeshPalette.java b/src/org/atriasoft/ege/components/ComponentRenderMeshPalette.java new file mode 100644 index 0000000..d64e83a --- /dev/null +++ b/src/org/atriasoft/ege/components/ComponentRenderMeshPalette.java @@ -0,0 +1,77 @@ +package org.atriasoft.ege.components; + +import org.atriasoft.ege.Component; +import org.atriasoft.etk.Uri; +import org.atriasoft.etk.math.Matrix4f; +import org.atriasoft.gale.backend3d.OpenGL; +import org.atriasoft.gale.resource.ResourceProgram; + +public class ComponentRenderMeshPalette extends ComponentRender { + private int GLMatrixProjection; + private int GLMatrixTransformation; + private int GLMatrixView; + ComponentMesh mesh = null; + private ComponentPhysics playerPhysics = null; + ComponentPosition position = null; + ResourceProgram program = null; + ComponentTexturePalette texture = null; + + public ComponentRenderMeshPalette(final Uri vertexShader, final Uri fragmentShader) { + this.program = ResourceProgram.create(vertexShader, fragmentShader); + if (this.program != null) { + this.GLMatrixTransformation = this.program.getUniform("in_matrixTransformation"); + this.GLMatrixProjection = this.program.getUniform("in_matrixProjection"); + this.GLMatrixView = this.program.getUniform("in_matrixView"); + } + + } + + @Override + public void addFriendComponent(final Component component) { + if (component.getType().contentEquals("mesh")) { + this.mesh = (ComponentMesh) component; + } + if (component.getType().contentEquals("palette")) { + this.texture = (ComponentTexturePalette) component; + } + if (component.getType().contentEquals("position")) { + this.position = (ComponentPosition) component; + } + if (component.getType().contentEquals("physics")) { + this.playerPhysics = (ComponentPhysics) component; + } + } + + @Override + public void removeFriendComponent(final Component component) { + // nothing to do. + } + + @Override + public void render() { + this.program.use(); + final Matrix4f projectionMatrix = OpenGL.getMatrix(); + final Matrix4f viewMatrix = OpenGL.getCameraMatrix(); + Matrix4f transformationMatrix = null; + if (this.position != null) { + //Log.warning("position " + this.position.getTransform()); + transformationMatrix = this.position.getTransform().getOpenGLMatrix(); + } else if (this.playerPhysics != null) { + //Log.warning("playerPosition " + this.playerPhysics.getTransform()); + transformationMatrix = this.playerPhysics.getTransform().getOpenGLMatrix(); + } + this.mesh.bindForRendering(); + this.texture.bindForRendering(); + this.program.uniformMatrix(this.GLMatrixView, viewMatrix); + this.program.uniformMatrix(this.GLMatrixProjection, projectionMatrix); + // Change the position for each element with the same pipeline you need to render ... + this.program.uniformMatrix(this.GLMatrixTransformation, transformationMatrix); + // update of flags is done asynchronously ==> need update before drawing... + OpenGL.updateAllFlags(); + // Request the draw all the elements: + this.mesh.render(); + this.texture.unBindForRendering(); + this.mesh.unBindForRendering(); + this.program.unUse(); + } +} diff --git a/src/org/atriasoft/ege/components/ComponentStaticMesh.java b/src/org/atriasoft/ege/components/ComponentStaticMesh.java index c698954..95dc221 100644 --- a/src/org/atriasoft/ege/components/ComponentStaticMesh.java +++ b/src/org/atriasoft/ege/components/ComponentStaticMesh.java @@ -8,42 +8,43 @@ import org.atriasoft.loader3d.resources.ResourceStaticMeshObj; public class ComponentStaticMesh extends Component { private ResourceStaticMesh mesh = null; + public ComponentStaticMesh(ResourceStaticMesh mesh) { + this.mesh = mesh; + } + + public ComponentStaticMesh(Uri objectFileName) { + // TODO check if it is OBJ ... + this.mesh = ResourceStaticMeshObj.create(objectFileName); + } + + public void bindForRendering() { + if (this.mesh == null) { + return; + } + this.mesh.bindForRendering(); + } + + public ResourceStaticMesh getMesh() { + return this.mesh; + } + @Override public String getType() { // TODO Auto-generated method stub return "static-mesh"; } - public ComponentStaticMesh(Uri objectFileName) { - // TODO check if it is OBJ ... - mesh = ResourceStaticMeshObj.create(objectFileName); - } - public ComponentStaticMesh(ResourceStaticMesh mesh) { - this.mesh = mesh; - } - - public ResourceStaticMesh getMesh() { - return mesh; - } - - public void bindForRendering() { - if (mesh == null) { - return; - } - mesh.bindForRendering(); - } - - public void unBindForRendering() { - if (mesh == null) { - return; - } - mesh.unBindForRendering(); - } - public void render() { - if (mesh == null) { + if (this.mesh == null) { return; } - mesh.render(); + this.mesh.render(); + } + + public void unBindForRendering() { + if (this.mesh == null) { + return; + } + this.mesh.unBindForRendering(); } } diff --git a/src/org/atriasoft/ege/components/ComponentStaticMeshs.java b/src/org/atriasoft/ege/components/ComponentStaticMeshs.java index dffad65..56084db 100644 --- a/src/org/atriasoft/ege/components/ComponentStaticMeshs.java +++ b/src/org/atriasoft/ege/components/ComponentStaticMeshs.java @@ -5,63 +5,64 @@ import java.util.Map; import java.util.Set; import org.atriasoft.ege.Component; +import org.atriasoft.ege.internal.Log; import org.atriasoft.etk.Uri; import org.atriasoft.loader3d.resources.ResourceStaticMesh; import org.atriasoft.loader3d.resources.ResourceStaticMeshObj; -import org.atriasoft.ege.internal.Log; public class ComponentStaticMeshs extends Component { - private Map meshs = new HashMap(); + private final Map meshs = new HashMap(); + + public ComponentStaticMeshs() { + // nothing to do ... + } + + public ComponentStaticMeshs(Uri meshUrl) { + // TODO load Mesh + Log.critical("Can not Load the Mesh for now ... " + meshUrl); + final ResourceStaticMeshObj mesh = ResourceStaticMeshObj.create(meshUrl); + setMesh("default", mesh); + } + + public void bindForRendering(String name) { + final ResourceStaticMesh mesh = this.meshs.get(name); + if (mesh == null) { + return; + } + mesh.bindForRendering(); + } + + public Set getKeys() { + return this.meshs.keySet(); + } + + public ResourceStaticMesh getMesh(String name) { + return this.meshs.get(name); + } @Override public String getType() { // TODO Auto-generated method stub return "static-meshs"; } - - public ComponentStaticMeshs(Uri meshUrl) { - // TODO load Mesh - Log.critical("Can not Load the Mesh for now ... " + meshUrl); - ResourceStaticMeshObj mesh = ResourceStaticMeshObj.create(meshUrl); - setMesh("default", mesh); - } - public ComponentStaticMeshs() { - // nothing to do ... - } - public Set getKeys() { - return meshs.keySet(); + public void render(String name) { + final ResourceStaticMesh mesh = this.meshs.get(name); + if (mesh == null) { + return; + } + mesh.render(); } public void setMesh(String name, ResourceStaticMesh mesh) { this.meshs.put(name, mesh); } - public ResourceStaticMesh getMesh(String name) { - return meshs.get(name); - } - - public void bindForRendering(String name) { - ResourceStaticMesh mesh = meshs.get(name); - if (mesh == null) { - return; - } - mesh.bindForRendering(); - } - public void unBindForRendering(String name) { - ResourceStaticMesh mesh = meshs.get(name); + final ResourceStaticMesh mesh = this.meshs.get(name); if (mesh == null) { return; } mesh.unBindForRendering(); } - - public void render(String name) { - ResourceStaticMesh mesh = meshs.get(name); - if (mesh == null) { - return; - } - mesh.render(); - } } diff --git a/src/org/atriasoft/ege/components/ComponentTexture.java b/src/org/atriasoft/ege/components/ComponentTexture.java index 88b1f7d..7067f08 100644 --- a/src/org/atriasoft/ege/components/ComponentTexture.java +++ b/src/org/atriasoft/ege/components/ComponentTexture.java @@ -1,32 +1,35 @@ package org.atriasoft.ege.components; import org.atriasoft.ege.Component; +import org.atriasoft.ege.internal.Log; import org.atriasoft.etk.Uri; import org.atriasoft.gale.resource.ResourceTexture; -import org.atriasoft.ege.internal.Log; public class ComponentTexture extends Component { - + private ResourceTexture texture; + + public ComponentTexture(Uri textureName) { + this.texture = ResourceTexture.createFromPng(textureName); + if (this.texture == null) { + Log.error("can not instanciate Texture ..."); + } + + } + + public void bindForRendering() { + this.texture.bindForRendering(0); + + } + @Override public String getType() { // TODO Auto-generated method stub return "texture"; } - public ComponentTexture(Uri textureName) { - this.texture = ResourceTexture.createFromPng(textureName); - if (this.texture == null) { - Log.error("can not instanciate Texture ..."); - return; - } - - } - public void bindForRendering() { - this.texture.bindForRendering(0); - - } + public void unBindForRendering() { this.texture.unBindForRendering(); } - + } diff --git a/src/org/atriasoft/ege/components/ComponentTexturePalette.java b/src/org/atriasoft/ege/components/ComponentTexturePalette.java new file mode 100644 index 0000000..1039233 --- /dev/null +++ b/src/org/atriasoft/ege/components/ComponentTexturePalette.java @@ -0,0 +1,43 @@ +package org.atriasoft.ege.components; + +import org.atriasoft.egami.ImageByte; +import org.atriasoft.ege.Component; +import org.atriasoft.ege.internal.Log; +import org.atriasoft.etk.Uri; +import org.atriasoft.gale.resource.ResourceTexture2; +import org.atriasoft.loader3d.resources.ResourcePaletteFile; + +public class ComponentTexturePalette extends Component { + + private final ResourcePaletteFile palette; + private final ResourceTexture2 texture; + + public ComponentTexturePalette(Uri paletteName) { + this.palette = ResourcePaletteFile.create(paletteName); + this.texture = ResourceTexture2.createNamed("TEXTURE_OF_PALETTE:" + paletteName.toString()); + if (this.texture == null) { + Log.error("can not instanciate Texture ..."); + } + this.palette.onUpdate(() -> { + Log.warning("update palet environnement"); + final ImageByte img = this.palette.getImageByte(); + this.texture.set(img); + }); + } + + public void bindForRendering() { + this.texture.bindForRendering(0); + + } + + @Override + public String getType() { + // TODO Auto-generated method stub + return "texture"; + } + + public void unBindForRendering() { + this.texture.unBindForRendering(); + } + +} diff --git a/src/org/atriasoft/ege/components/ComponentTextures.java b/src/org/atriasoft/ege/components/ComponentTextures.java index ce2c18d..ab6d30d 100644 --- a/src/org/atriasoft/ege/components/ComponentTextures.java +++ b/src/org/atriasoft/ege/components/ComponentTextures.java @@ -4,37 +4,39 @@ import java.util.HashMap; import java.util.Map; import org.atriasoft.ege.Component; -import org.atriasoft.ege.Material; +import org.atriasoft.ege.internal.Log; import org.atriasoft.etk.Uri; import org.atriasoft.gale.resource.ResourceTexture; -import org.atriasoft.ege.internal.Log; public class ComponentTextures extends Component { - private Map textures = new HashMap(); - @Override - public String getType() { - // TODO Auto-generated method stub - return "textures"; - } + private final Map textures = new HashMap(); + public ComponentTextures() { } - public void setTexture(String name, Uri textureName) { - ResourceTexture texture = ResourceTexture.createFromPng(textureName); - if (texture == null) { - Log.error("can not instanciate Texture ..."); - return; - } - textures.put(name, texture); - } - public void bindForRendering(String name) { this.textures.get(name).bindForRendering(0); } + + @Override + public String getType() { + // TODO Auto-generated method stub + return "textures"; + } + + public void setTexture(String name, Uri textureName) { + final ResourceTexture texture = ResourceTexture.createFromPng(textureName); + if (texture == null) { + Log.error("can not instanciate Texture ..."); + return; + } + this.textures.put(name, texture); + } + public void unBindForRendering(String name) { this.textures.get(name).unBindForRendering(); } - + } diff --git a/src/org/atriasoft/ege/map/ComponentDynamicMeshsVoxelMap.java b/src/org/atriasoft/ege/map/ComponentDynamicMeshsVoxelMap.java index 7299094..1fc4171 100644 --- a/src/org/atriasoft/ege/map/ComponentDynamicMeshsVoxelMap.java +++ b/src/org/atriasoft/ege/map/ComponentDynamicMeshsVoxelMap.java @@ -10,10 +10,10 @@ import org.atriasoft.loader3d.resources.ResourceListTexturedMesh; public class ComponentDynamicMeshsVoxelMap extends ComponentDynamicMeshs { private VoxelChunk chunk; - ResourceListTexturedMesh unbreakable = ResourceListTexturedMesh.create(RenderMode.triangle); - ResourceListTexturedMesh stone = ResourceListTexturedMesh.create(RenderMode.triangle); - ResourceListTexturedMesh dirt = ResourceListTexturedMesh.create(RenderMode.triangle); - ResourceListTexturedMesh grass = ResourceListTexturedMesh.create(RenderMode.triangle); + ResourceListTexturedMesh unbreakable = ResourceListTexturedMesh.create(RenderMode.TRIANGLE); + ResourceListTexturedMesh stone = ResourceListTexturedMesh.create(RenderMode.TRIANGLE); + ResourceListTexturedMesh dirt = ResourceListTexturedMesh.create(RenderMode.TRIANGLE); + ResourceListTexturedMesh grass = ResourceListTexturedMesh.create(RenderMode.TRIANGLE); public ComponentDynamicMeshsVoxelMap(final VoxelChunk chunk) { super(); diff --git a/src/org/atriasoft/ege/tools/MeshGenerator.java b/src/org/atriasoft/ege/tools/MeshGenerator.java index 46bddd4..6e5a411 100644 --- a/src/org/atriasoft/ege/tools/MeshGenerator.java +++ b/src/org/atriasoft/ege/tools/MeshGenerator.java @@ -128,7 +128,7 @@ public class MeshGenerator { //out.addPoint(_materialName, new Vector3f(iii,-_lineCount,0), etk::color::white); //out.addPoint(_materialName, new Vector3f(iii,_lineCount,0), etk::color::white); } - return ResourceStaticColoredMesh.create(meshData.getListOfVertices(), meshData.getListOfColors(), null, meshData.getListOfIndices(), RenderMode.line); + return ResourceStaticColoredMesh.create(meshData.getListOfVertices(), meshData.getListOfColors(), null, meshData.getListOfIndices(), RenderMode.LINE); } private MeshGenerator() {} diff --git a/src/shaders/ShaderProgram.java b/src/shaders/ShaderProgram.java index 93dadd5..607e493 100644 --- a/src/shaders/ShaderProgram.java +++ b/src/shaders/ShaderProgram.java @@ -23,8 +23,8 @@ public abstract class ShaderProgram { public ShaderProgram (String vertexFile, String fragmentFile) { - vertexShaderID = OpenGL.shaderLoad(new Uri("DATA", vertexFile), OpenGL.ShaderType.vertex); - fragmentShaderID = OpenGL.shaderLoad(new Uri("DATA", fragmentFile), OpenGL.ShaderType.fragment); + vertexShaderID = OpenGL.shaderLoad(new Uri("DATA", vertexFile), OpenGL.ShaderType.VERTEX); + fragmentShaderID = OpenGL.shaderLoad(new Uri("DATA", fragmentFile), OpenGL.ShaderType.FRAGMENT); programID = OpenGL.programCreate(); OpenGL.programAttach(programID, vertexShaderID); OpenGL.programAttach(programID, fragmentShaderID);