From: Rafael Sadowski Subject: WIP UPDATE: blender-4.4.3 To: The OpenBSD ports mailing-list Date: Wed, 21 May 2025 08:28:16 +0200 Below is a WIP update diff for blender-4.4.3. It starts without any crashes and runs fine so far. I fixed the woff2 (brotli freetype dependency) and some other build issues. There was a do-install. I don't know if we still need that and I don't want to find out. I have comment it out and let cmake does the install job. If someone thinks we need this, please fix it otherwise my suggestion would be to commit it and we (*WE* without me) can fix it further in-tree. Cheers Rafael diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index e80b12ba5a0..6e2c68e37c2 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -1,5 +1,3 @@ -# https://github.com/blender/blender/commit/a6837ac517b38a7fa535e0dda961334bee71323d -BROKEN = needs update to >= 4.0.0 for Python 3.12 compatibility # powerpc - tbb 64-bit atomics # sparc64 - openexr linking failure ONLY_FOR_ARCHS = aarch64 amd64 i386 powerpc64 riscv64 @@ -7,8 +5,7 @@ DPB_PROPERTIES = parallel COMMENT = 3D creation software -DISTNAME = blender-3.3.21 -REVISION = 1 +DISTNAME = blender-4.4.3 CATEGORIES = graphics @@ -44,6 +41,7 @@ CONFIGURE_ARGS = -DPYTHON_INCLUDE_DIR="${MODPY_INCDIR}" \ -DWITH_CYCLES_EMBREE=OFF \ -DWITH_INSTALL_PORTABLE=OFF \ -DWITH_INTERNATIONAL=OFF \ + -DWITH_SYSTEM_FREETYPE=ON \ -DWITH_JACK=OFF \ -DWITH_OPENMP=OFF \ -DWITH_PULSEAUDIO=OFF \ @@ -56,8 +54,12 @@ CONFIGURE_ARGS += -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON CONFIGURE_ARGS+= -DWITH_CPU_SIMD=OFF .endif -BUILD_DEPENDS = math/py-numpy \ +BUILD_DEPENDS = math/py-numpy \ www/py-requests + +# woff2_decompress in do-install +BUILD_DEPENDS += archivers/woff2>=1.0.2p1 + LIB_DEPENDS = audio/libsndfile \ audio/openal \ devel/boost \ @@ -79,6 +81,7 @@ LIB_DEPENDS = audio/libsndfile \ graphics/tiff \ math/fftw3 \ ${MODPY_LIB_DEPENDS} + RUN_DEPENDS = devel/desktop-file-utils \ math/py-numpy \ www/py-requests \ @@ -86,52 +89,67 @@ RUN_DEPENDS = devel/desktop-file-utils \ NO_TEST = Yes -CXXFLAGS += -I${LOCALBASE}/include -I${X11BASE}/include -CFLAGS += -I${LOCALBASE}/include - -MODPY_ADJ_FILES = release/scripts/modules/bl_i18n_utils/merge_po.py \ - release/scripts/modules/bl_i18n_utils/utils_rtl.py \ - release/scripts/modules/blend_render_info.py \ - release/scripts/addons/io_curve_svg/svg_util_test.py \ - release/scripts/addons/io_scene_fbx/fbx2json.py \ - release/scripts/addons/io_scene_fbx/json2fbx.py \ - release/scripts/addons/sun_position/geo.py \ - release/datafiles/alert_icons_update.py \ - release/datafiles/blender_icons_geom_update.py \ - release/datafiles/blender_icons_update.py \ - release/datafiles/ctodata.py \ - release/datafiles/prvicons_update.py - -do-install: - ${INSTALL_SCRIPT} ${FILESDIR}/blender ${PREFIX}/bin - ${SUBST_CMD} ${PREFIX}/bin/blender - ${INSTALL_PROGRAM} ${WRKBUILD}/bin/blender ${PREFIX}/bin/blender-bin - ${INSTALL_SCRIPT} ${WRKSRC}/release/bin/blender-softwaregl \ - ${PREFIX}/bin/blender-softwaregl - ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/scripts - ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/datafiles - cd ${WRKSRC}/release/scripts && pax -rw . \ - ${PREFIX}/share/blender/scripts - ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/scripts/addons/cycles - cd ${WRKSRC}/intern/cycles/blender/addon && pax -rw . \ - ${PREFIX}/share/blender/scripts/addons/cycles - cd ${WRKSRC}/release/datafiles && pax -rw . \ - ${PREFIX}/share/blender/datafiles - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/blender - ${INSTALL_DATA} ${WRKSRC}/release/license/* \ - ${PREFIX}/share/doc/blender - ${INSTALL_DATA} ${WRKSRC}/release/text/copy* \ - ${PREFIX}/share/doc/blender - ${INSTALL_DATA_DIR} ${PREFIX}/share/applications - ${INSTALL_DATA} ${WRKSRC}/release/freedesktop/blender.desktop \ - ${PREFIX}/share/applications - ${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps - ${INSTALL_DATA} \ - ${WRKSRC}/release/freedesktop/icons/scalable/apps/blender.svg \ - ${PREFIX}/share/pixmaps - ${MODPY_BIN} ${WRKSRC}/doc/manpage/blender.1.py \ - --blender ${WRKBUILD}/bin/blender \ - --output ${PREFIX}/man/man1/blender.1 +MODCMAKE_LDFLAGS += -L${X11BASE}/lib -L${LOCALBASE}/lib +CXXFLAGS += -I${LOCALBASE}/include -I${X11BASE}/include +CFLAGS += -I${LOCALBASE}/include + +MODPY_ADJ_FILES = scripts/modules/bl_i18n_utils/merge_po.py \ + scripts/modules/bl_i18n_utils/utils_rtl.py \ + scripts/modules/blend_render_info.py \ + scripts/addons/io_curve_svg/svg_util_test.py \ + scripts/addons/io_scene_fbx/fbx2json.py \ + scripts/addons/io_scene_fbx/json2fbx.py \ + scripts/addons/sun_position/geo.py \ + datafiles/alert_icons_update.py \ + datafiles/blender_icons_geom_update.py \ + datafiles/blender_icons_update.py \ + datafiles/ctodata.py \ + datafiles/prvicons_update.py + +#do-install: +# ${INSTALL_SCRIPT} ${FILESDIR}/blender ${PREFIX}/bin +# ${SUBST_CMD} ${PREFIX}/bin/blender +# ${INSTALL_PROGRAM} ${WRKBUILD}/bin/blender ${PREFIX}/bin/blender-bin +# ${INSTALL_SCRIPT} ${WRKSRC}/release/bin/blender-softwaregl \ +# ${PREFIX}/bin/blender-softwaregl +# ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/scripts +# ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/datafiles +# cd ${WRKSRC}/scripts && pax -rw . \ +# ${PREFIX}/share/blender/scripts +# ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/scripts/addons/cycles +# cd ${WRKSRC}/intern/cycles/blender/addon && pax -rw . \ +# ${PREFIX}/share/blender/scripts/addons/cycles +# ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/datafiles/fonts +# cd ${WRKSRC}/release/datafiles/fonts && pax -rw . \ +# ${PREFIX}/share/blender/datafiles/fonts +# cd ${WRKSRC}/release/datafiles && pax -rw . \ +# ${PREFIX}/share/blender/datafiles +# ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/blender +# ${INSTALL_DATA} ${WRKSRC}/release/license/{spdx,others}/* \ +# ${PREFIX}/share/doc/blender +# ${INSTALL_DATA} ${WRKSRC}/release/text/copy* \ +# ${PREFIX}/share/doc/blender +# ${INSTALL_DATA_DIR} ${PREFIX}/share/applications +# ${INSTALL_DATA} ${WRKSRC}/release/freedesktop/blender.desktop \ +# ${PREFIX}/share/applications +# ${INSTALL_DATA_DIR} ${PREFIX}/share/pixmaps +# ${INSTALL_DATA} \ +# ${WRKSRC}/release/freedesktop/icons/scalable/apps/blender.svg \ +# ${PREFIX}/share/pixmaps +# ${MODPY_BIN} ${WRKSRC}/doc/manpage/blender.1.py \ +# --blender ${WRKBUILD}/bin/blender \ +# --output ${PREFIX}/man/man1/blender.1 +# ${MODPY_COMPILEALL} ${PREFIX}/share/blender/ +# # Replace woff2 by ttf +# find ${PREFIX}/share/blender/${V}/datafiles/fonts -name '*.woff2' \ +# -exec ${LOCALBASE}/bin/woff2_decompress {} \; +# rm ${PREFIX}/share/blender/datafiles/fonts/*.woff2 + +post-install: ${MODPY_COMPILEALL} ${PREFIX}/share/blender/ + # Replace woff2 with ttf + find ${PREFIX}/share/blender/4.4/datafiles/fonts -name '*.woff2' \ + -exec ${LOCALBASE}/bin/woff2_decompress {} \; + rm ${PREFIX}/share/blender/4.4/datafiles/fonts/*.woff2 .include diff --git a/graphics/blender/distinfo b/graphics/blender/distinfo index 55471985db9..ee6e606a6fd 100644 --- a/graphics/blender/distinfo +++ b/graphics/blender/distinfo @@ -1,2 +1,2 @@ -SHA256 (blender-3.3.21.tar.xz) = SpxMSWc+oFHiZfl6h8/SD14813urcZ86ShGRyJWNNOs= -SIZE (blender-3.3.21.tar.xz) = 41940868 +SHA256 (blender-4.4.3.tar.xz) = meze8k7OFAhAFu5Hx1busvyKCchIegKWtFoRciTcXKc= +SIZE (blender-4.4.3.tar.xz) = 85519376 diff --git a/graphics/blender/patches/patch-build_files_cmake_platform_platform_unix_cmake b/graphics/blender/patches/patch-build_files_cmake_platform_platform_unix_cmake new file mode 100644 index 00000000000..5d361278f8e --- /dev/null +++ b/graphics/blender/patches/patch-build_files_cmake_platform_platform_unix_cmake @@ -0,0 +1,12 @@ +Index: build_files/cmake/platform/platform_unix.cmake +--- build_files/cmake/platform/platform_unix.cmake.orig ++++ build_files/cmake/platform/platform_unix.cmake +@@ -666,7 +666,7 @@ if(WITH_SYSTEM_FREETYPE) + if(NOT FREETYPE_FOUND) + message(FATAL_ERROR "Failed finding system FreeType version!") + endif() +- check_freetype_for_brotli() ++ #check_freetype_for_brotli() + # Quiet warning as this variable will be used after `FREETYPE_LIBRARIES`. + set(BROTLI_LIBRARIES "") + endif() diff --git a/graphics/blender/patches/patch-intern_ghost_intern_GHOST_SystemWayland_cc b/graphics/blender/patches/patch-intern_ghost_intern_GHOST_SystemWayland_cc new file mode 100644 index 00000000000..001462e3228 --- /dev/null +++ b/graphics/blender/patches/patch-intern_ghost_intern_GHOST_SystemWayland_cc @@ -0,0 +1,15 @@ +Index: intern/ghost/intern/GHOST_SystemWayland.cc +--- intern/ghost/intern/GHOST_SystemWayland.cc.orig ++++ intern/ghost/intern/GHOST_SystemWayland.cc +@@ -2599,7 +2599,11 @@ static wl_buffer *ghost_wl_buffer_create_for_image(wl_ + if (fd >= 0) { + const int32_t buffer_stride = size_xy[0] * ghost_wl_shm_format_as_size(format); + const int32_t buffer_size = buffer_stride * size_xy[1]; ++#ifdef __OpenBSD__ ++ if (ftruncate(fd, buffer_size) == 0) { ++#else + if (posix_fallocate(fd, 0, buffer_size) == 0) { ++#endif + void *buffer_data = mmap(nullptr, buffer_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); + if (buffer_data != MAP_FAILED) { + wl_shm_pool *pool = wl_shm_create_pool(shm, fd, buffer_size); diff --git a/graphics/blender/patches/patch-intern_ghost_intern_GHOST_WindowWayland_cc b/graphics/blender/patches/patch-intern_ghost_intern_GHOST_WindowWayland_cc new file mode 100644 index 00000000000..e0622dc05a9 --- /dev/null +++ b/graphics/blender/patches/patch-intern_ghost_intern_GHOST_WindowWayland_cc @@ -0,0 +1,12 @@ +Index: intern/ghost/intern/GHOST_WindowWayland.cc +--- intern/ghost/intern/GHOST_WindowWayland.cc.orig ++++ intern/ghost/intern/GHOST_WindowWayland.cc +@@ -54,7 +54,7 @@ + #include + + #include /* For `memcpy`. */ +-#include /* For `malloc_usable_size`. */ ++#include /* For `malloc_usable_size`. */ + + /* Logging, use `ghost.wl.*` prefix. */ + #include "CLG_log.h" diff --git a/graphics/blender/patches/patch-intern_opencolorio_ocio_impl_glsl_cc b/graphics/blender/patches/patch-intern_opencolorio_ocio_impl_glsl_cc deleted file mode 100644 index 7aa6b7649b0..00000000000 --- a/graphics/blender/patches/patch-intern_opencolorio_ocio_impl_glsl_cc +++ /dev/null @@ -1,41 +0,0 @@ -Build: support OpenColorIO 2.3 -Ref #113157 -https://projects.blender.org/blender/blender/pulls/113163 - -Index: intern/opencolorio/ocio_impl_glsl.cc ---- intern/opencolorio/ocio_impl_glsl.cc.orig -+++ intern/opencolorio/ocio_impl_glsl.cc -@@ -319,8 +319,15 @@ static bool addGPULut1D2D(OCIO_GPUTextures &textures, - unsigned int height = 0; - GpuShaderCreator::TextureType channel = GpuShaderCreator::TEXTURE_RGB_CHANNEL; - Interpolation interpolation = INTERP_LINEAR; -+#if OCIO_VERSION_HEX >= 0x02030000 -+ /* Always use 2D textures in OpenColorIO 2.3, simpler and same performance. */ -+ GpuShaderDesc::TextureDimensions dimensions = GpuShaderDesc::TEXTURE_2D; - shader_desc->getTexture( -+ index, texture_name, sampler_name, width, height, channel, dimensions, interpolation); -+#else -+ shader_desc->getTexture( - index, texture_name, sampler_name, width, height, channel, interpolation); -+#endif - - const float *values; - shader_desc->getTextureValues(index, values); -@@ -333,13 +340,16 @@ static bool addGPULut1D2D(OCIO_GPUTextures &textures, - GPU_R16F; - - OCIO_GPULutTexture lut; -+#if OCIO_VERSION_HEX < 0x02030000 - /* There does not appear to be an explicit way to check if a texture is 1D or 2D. - * It depends on more than height. So check instead by looking at the source. */ - std::string sampler1D_name = std::string("sampler1D ") + sampler_name; - if (strstr(shader_desc->getShaderText(), sampler1D_name.c_str()) != nullptr) { - lut.texture = GPU_texture_create_1d(texture_name, width, 1, format, values); - } -- else { -+ else -+#endif -+ { - lut.texture = GPU_texture_create_2d(texture_name, width, height, 1, format, values); - } - if (lut.texture == nullptr) { diff --git a/graphics/blender/patches/patch-release_scripts_addons_io_scene_gltf2_io_com_gltf2_io_draco_compression_extension_py b/graphics/blender/patches/patch-release_scripts_addons_io_scene_gltf2_io_com_gltf2_io_draco_compression_extension_py deleted file mode 100644 index 0747c28e376..00000000000 --- a/graphics/blender/patches/patch-release_scripts_addons_io_scene_gltf2_io_com_gltf2_io_draco_compression_extension_py +++ /dev/null @@ -1,27 +0,0 @@ -Fix the GLTF2 exporter crash: even if we don't have the draco -compression library, avoid path and library_name being None. - -Index: release/scripts/addons/io_scene_gltf2/io/com/gltf2_io_draco_compression_extension.py ---- release/scripts/addons/io_scene_gltf2/io/com/gltf2_io_draco_compression_extension.py.orig -+++ release/scripts/addons/io_scene_gltf2/io/com/gltf2_io_draco_compression_extension.py -@@ -35,11 +35,17 @@ def dll_path() -> Path: - 'darwin': 'lib{}.dylib'.format(lib_name) - }.get(sys.platform) - -- if path is None or library_name is None: -- print_console('WARNING', 'Unsupported platform {}, Draco mesh compression is unavailable'.format(sys.platform)) -+ if sys.platform.startswith('openbsd'): -+ path = blender_root.parent / 'lib' -+ library_name = 'libdraco.so' - -- return path / library_name -+ lib_file = sorted(Path(path).glob(library_name + '*')) - -+ if not lib_file: -+ print_console('WARNING', 'Unsupported platform {}, Draco mesh compression is unavailable'.format(sys.platform)) -+ return path / library_name -+ else: -+ return lib_file[-1] - - def dll_exists(quiet=False) -> bool: - """ diff --git a/graphics/blender/patches/patch-release_scripts_startup_bl_ui_space_toolsystem_common_py b/graphics/blender/patches/patch-release_scripts_startup_bl_ui_space_toolsystem_common_py deleted file mode 100644 index 17008ba856e..00000000000 --- a/graphics/blender/patches/patch-release_scripts_startup_bl_ui_space_toolsystem_common_py +++ /dev/null @@ -1,16 +0,0 @@ -Fix path to icons (XXX) - -Index: release/scripts/startup/bl_ui/space_toolsystem_common.py ---- release/scripts/startup/bl_ui/space_toolsystem_common.py.orig -+++ release/scripts/startup/bl_ui/space_toolsystem_common.py -@@ -235,8 +235,8 @@ class ToolSelectPanelHelper: - assert(type(icon_name) is str) - icon_value = _icon_cache.get(icon_name) - if icon_value is None: -- dirname = bpy.utils.system_resource('DATAFILES', path="icons") -- filename = os.path.join(dirname, icon_name + ".dat") -+ dirname = os.environ['BLENDER_SYSTEM_DATAFILES'] -+ filename = os.path.join(dirname, "icons", icon_name + ".dat") - try: - icon_value = bpy.app.icons.new_triangles_from_file(filename) - except Exception as ex: diff --git a/graphics/blender/patches/patch-scripts_startup_bl_ui_space_toolsystem_common_py b/graphics/blender/patches/patch-scripts_startup_bl_ui_space_toolsystem_common_py new file mode 100644 index 00000000000..87718e7c7d7 --- /dev/null +++ b/graphics/blender/patches/patch-scripts_startup_bl_ui_space_toolsystem_common_py @@ -0,0 +1,15 @@ +Fix path to icons (XXX) +Index: scripts/startup/bl_ui/space_toolsystem_common.py +--- scripts/startup/bl_ui/space_toolsystem_common.py.orig ++++ scripts/startup/bl_ui/space_toolsystem_common.py +@@ -244,8 +244,8 @@ class ToolSelectPanelHelper: + assert type(icon_name) is str + icon_value = _icon_cache.get(icon_name) + if icon_value is None: +- dirname = bpy.utils.system_resource('DATAFILES', path="icons") +- filepath = os.path.join(dirname, icon_name + ".dat") ++ dirname = bpy.utils.system_resource('BLENDER_SYSTEM_DATAFILES', path="icons") ++ filename = os.path.join(dirname, "icons", icon_name + ".dat") + try: + icon_value = bpy.app.icons.new_triangles_from_file(filepath) + except Exception as ex: diff --git a/graphics/blender/patches/patch-source_blender_blenfont_BLF_api_hh b/graphics/blender/patches/patch-source_blender_blenfont_BLF_api_hh new file mode 100644 index 00000000000..cc96d124d39 --- /dev/null +++ b/graphics/blender/patches/patch-source_blender_blenfont_BLF_api_hh @@ -0,0 +1,16 @@ +Index: source/blender/blenfont/BLF_api.hh +--- source/blender/blenfont/BLF_api.hh.orig ++++ source/blender/blenfont/BLF_api.hh +@@ -20,10 +20,10 @@ + #define BLF_DATAFILES_FONTS_DIR "fonts" + + /* File name of the default variable-width font. */ +-#define BLF_DEFAULT_PROPORTIONAL_FONT "Inter.woff2" ++#define BLF_DEFAULT_PROPORTIONAL_FONT "Inter.ttf" + + /* File name of the default fixed-pitch font. */ +-#define BLF_DEFAULT_MONOSPACED_FONT "DejaVuSansMono.woff2" ++#define BLF_DEFAULT_MONOSPACED_FONT "DejaVuSansMono.ttf" + + struct ColorManagedDisplay; + struct ListBase; diff --git a/graphics/blender/patches/patch-source_blender_gpu_CMakeLists_txt b/graphics/blender/patches/patch-source_blender_gpu_CMakeLists_txt new file mode 100644 index 00000000000..c6f7200f3f6 --- /dev/null +++ b/graphics/blender/patches/patch-source_blender_gpu_CMakeLists_txt @@ -0,0 +1,14 @@ +Index: source/blender/gpu/CMakeLists.txt +--- source/blender/gpu/CMakeLists.txt.orig ++++ source/blender/gpu/CMakeLists.txt +@@ -751,8 +751,9 @@ target_link_libraries(bf_gpu PUBLIC + bf_gpu_shaders + ) + ++#if(WITH_OPENGL_BACKEND AND UNIX AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") + if(WITH_OPENGL_BACKEND AND UNIX) +- target_link_libraries(bf_gpu PUBLIC rt) ++ target_link_libraries(bf_gpu PUBLIC execinfo) + endif() + + if(WITH_OPENCOLORIO) diff --git a/graphics/blender/patches/patch-source_blender_nodes_geometry_nodes_node_geo_uv_unwrap_cc b/graphics/blender/patches/patch-source_blender_nodes_geometry_nodes_node_geo_uv_unwrap_cc deleted file mode 100644 index 578eafd5e7f..00000000000 --- a/graphics/blender/patches/patch-source_blender_nodes_geometry_nodes_node_geo_uv_unwrap_cc +++ /dev/null @@ -1,19 +0,0 @@ -fix build on i386 - -/build/obj/ports/blender-3.3.6/blender-3.3.6/source/blender/nodes/geometry/nodes/node_geo_uv_unwrap.cc:114:32: error: - non-constant-expression cannot be narrowed from type 'unsigned int' to 'ParamKey' (aka 'long') in initializer list - [-Wc++11-narrowing] -/build/obj/ports/blender-3.3.6/blender-3.3.6/source/blender/nodes/geometry/nodes/node_geo_uv_unwrap.cc:114:32: note: - insert an explicit cast to silence this issue -Index: source/blender/nodes/geometry/nodes/node_geo_uv_unwrap.cc ---- source/blender/nodes/geometry/nodes/node_geo_uv_unwrap.cc.orig -+++ source/blender/nodes/geometry/nodes/node_geo_uv_unwrap.cc -@@ -111,7 +111,7 @@ static VArray construct_uv_gvarray(const MeshC - } - for (const int i : seam) { - const MEdge &edge = mesh->medge[i]; -- ParamKey vkeys[2]{edge.v1, edge.v2}; -+ ParamKey vkeys[2]{static_cast(edge.v1), static_cast(edge.v2)}; - GEO_uv_parametrizer_edge_set_seam(handle, vkeys); - } - /* TODO: once field input nodes are able to emit warnings (T94039), emit a diff --git a/graphics/blender/pkg/PLIST b/graphics/blender/pkg/PLIST index 794b6bf8b9b..3c176b3e97a 100644 --- a/graphics/blender/pkg/PLIST +++ b/graphics/blender/pkg/PLIST @@ -1,6431 +1,6222 @@ -@pkgpath graphics/blender,ffmpeg -bin/blender -@bin bin/blender-bin -bin/blender-softwaregl -@comment bin/blender.beforesubst -@man man/man1/blender.1 +@bin bin/blender +@bin bin/blender-thumbnailer share/applications/blender.desktop share/blender/ -share/blender/datafiles/ -share/blender/datafiles/DejaVuSans-Lite.sfd.bz2 -${MODPY_COMMENT}share/blender/datafiles/${MODPY_PYCACHE}/ -share/blender/datafiles/${MODPY_PYCACHE}alert_icons_update.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/datafiles/${MODPY_PYCACHE}alert_icons_update.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/datafiles/${MODPY_PYCACHE}blender_icons_geom.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/datafiles/${MODPY_PYCACHE}blender_icons_geom.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/datafiles/${MODPY_PYCACHE}blender_icons_geom_update.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/datafiles/${MODPY_PYCACHE}blender_icons_geom_update.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/datafiles/${MODPY_PYCACHE}blender_icons_update.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/datafiles/${MODPY_PYCACHE}blender_icons_update.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/datafiles/${MODPY_PYCACHE}ctodata.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/datafiles/${MODPY_PYCACHE}ctodata.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/datafiles/${MODPY_PYCACHE}prvicons_update.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/datafiles/${MODPY_PYCACHE}prvicons_update.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/datafiles/alert_icons.png -share/blender/datafiles/alert_icons.svg -share/blender/datafiles/alert_icons_update.py -share/blender/datafiles/bfont.pfb -share/blender/datafiles/blender_icons.svg -share/blender/datafiles/blender_icons16/ -share/blender/datafiles/blender_icons16/icon16_action.dat -share/blender/datafiles/blender_icons16/icon16_action_tweak.dat -share/blender/datafiles/blender_icons16/icon16_add.dat -share/blender/datafiles/blender_icons16/icon16_aliased.dat -share/blender/datafiles/blender_icons16/icon16_align_bottom.dat -share/blender/datafiles/blender_icons16/icon16_align_center.dat -share/blender/datafiles/blender_icons16/icon16_align_flush.dat -share/blender/datafiles/blender_icons16/icon16_align_justify.dat -share/blender/datafiles/blender_icons16/icon16_align_left.dat -share/blender/datafiles/blender_icons16/icon16_align_middle.dat -share/blender/datafiles/blender_icons16/icon16_align_right.dat -share/blender/datafiles/blender_icons16/icon16_align_top.dat -share/blender/datafiles/blender_icons16/icon16_anchor_bottom.dat -share/blender/datafiles/blender_icons16/icon16_anchor_center.dat -share/blender/datafiles/blender_icons16/icon16_anchor_left.dat -share/blender/datafiles/blender_icons16/icon16_anchor_right.dat -share/blender/datafiles/blender_icons16/icon16_anchor_top.dat -share/blender/datafiles/blender_icons16/icon16_anim.dat -share/blender/datafiles/blender_icons16/icon16_anim_data.dat -share/blender/datafiles/blender_icons16/icon16_antialiased.dat -share/blender/datafiles/blender_icons16/icon16_append_blend.dat -share/blender/datafiles/blender_icons16/icon16_armature_data.dat -share/blender/datafiles/blender_icons16/icon16_arrow_leftright.dat -share/blender/datafiles/blender_icons16/icon16_asset_manager.dat -share/blender/datafiles/blender_icons16/icon16_auto.dat -share/blender/datafiles/blender_icons16/icon16_automerge_off.dat -share/blender/datafiles/blender_icons16/icon16_automerge_on.dat -share/blender/datafiles/blender_icons16/icon16_axis_front.dat -share/blender/datafiles/blender_icons16/icon16_axis_side.dat -share/blender/datafiles/blender_icons16/icon16_axis_top.dat -share/blender/datafiles/blender_icons16/icon16_back.dat -share/blender/datafiles/blender_icons16/icon16_blender.dat -share/blender/datafiles/blender_icons16/icon16_boids.dat -share/blender/datafiles/blender_icons16/icon16_bold.dat -share/blender/datafiles/blender_icons16/icon16_bone_data.dat -share/blender/datafiles/blender_icons16/icon16_bookmarks.dat -share/blender/datafiles/blender_icons16/icon16_bordermove.dat -share/blender/datafiles/blender_icons16/icon16_brush_data.dat -share/blender/datafiles/blender_icons16/icon16_brushes_all.dat -share/blender/datafiles/blender_icons16/icon16_camera_data.dat -share/blender/datafiles/blender_icons16/icon16_camera_stereo.dat -share/blender/datafiles/blender_icons16/icon16_cancel.dat -share/blender/datafiles/blender_icons16/icon16_center_only.dat -share/blender/datafiles/blender_icons16/icon16_checkbox_dehlt.dat -share/blender/datafiles/blender_icons16/icon16_checkbox_hlt.dat -share/blender/datafiles/blender_icons16/icon16_checkmark.dat -share/blender/datafiles/blender_icons16/icon16_clipuv_dehlt.dat -share/blender/datafiles/blender_icons16/icon16_clipuv_hlt.dat -share/blender/datafiles/blender_icons16/icon16_collapsemenu.dat -share/blender/datafiles/blender_icons16/icon16_collection_new.dat -share/blender/datafiles/blender_icons16/icon16_color.dat -share/blender/datafiles/blender_icons16/icon16_color_blue.dat -share/blender/datafiles/blender_icons16/icon16_color_green.dat -share/blender/datafiles/blender_icons16/icon16_color_red.dat -share/blender/datafiles/blender_icons16/icon16_community.dat -share/blender/datafiles/blender_icons16/icon16_con_action.dat -share/blender/datafiles/blender_icons16/icon16_con_armature.dat -share/blender/datafiles/blender_icons16/icon16_con_camerasolver.dat -share/blender/datafiles/blender_icons16/icon16_con_childof.dat -share/blender/datafiles/blender_icons16/icon16_con_clampto.dat -share/blender/datafiles/blender_icons16/icon16_con_distlimit.dat -share/blender/datafiles/blender_icons16/icon16_con_floor.dat -share/blender/datafiles/blender_icons16/icon16_con_followpath.dat -share/blender/datafiles/blender_icons16/icon16_con_followtrack.dat -share/blender/datafiles/blender_icons16/icon16_con_kinematic.dat -share/blender/datafiles/blender_icons16/icon16_con_locktrack.dat -share/blender/datafiles/blender_icons16/icon16_con_loclike.dat -share/blender/datafiles/blender_icons16/icon16_con_loclimit.dat -share/blender/datafiles/blender_icons16/icon16_con_objectsolver.dat -share/blender/datafiles/blender_icons16/icon16_con_pivot.dat -share/blender/datafiles/blender_icons16/icon16_con_rotlike.dat -share/blender/datafiles/blender_icons16/icon16_con_rotlimit.dat -share/blender/datafiles/blender_icons16/icon16_con_samevol.dat -share/blender/datafiles/blender_icons16/icon16_con_shrinkwrap.dat -share/blender/datafiles/blender_icons16/icon16_con_sizelike.dat -share/blender/datafiles/blender_icons16/icon16_con_sizelimit.dat -share/blender/datafiles/blender_icons16/icon16_con_splineik.dat -share/blender/datafiles/blender_icons16/icon16_con_stretchto.dat -share/blender/datafiles/blender_icons16/icon16_con_trackto.dat -share/blender/datafiles/blender_icons16/icon16_con_transform.dat -share/blender/datafiles/blender_icons16/icon16_con_transform_cache.dat -share/blender/datafiles/blender_icons16/icon16_con_translike.dat -share/blender/datafiles/blender_icons16/icon16_cone.dat -share/blender/datafiles/blender_icons16/icon16_console.dat -share/blender/datafiles/blender_icons16/icon16_constraint.dat -share/blender/datafiles/blender_icons16/icon16_constraint_bone.dat -share/blender/datafiles/blender_icons16/icon16_copy_id.dat -share/blender/datafiles/blender_icons16/icon16_copydown.dat -share/blender/datafiles/blender_icons16/icon16_cube.dat -share/blender/datafiles/blender_icons16/icon16_current_file.dat -share/blender/datafiles/blender_icons16/icon16_cursor.dat -share/blender/datafiles/blender_icons16/icon16_curve_bezcircle.dat -share/blender/datafiles/blender_icons16/icon16_curve_bezcurve.dat -share/blender/datafiles/blender_icons16/icon16_curve_data.dat -share/blender/datafiles/blender_icons16/icon16_curve_ncircle.dat -share/blender/datafiles/blender_icons16/icon16_curve_ncurve.dat -share/blender/datafiles/blender_icons16/icon16_curve_path.dat -share/blender/datafiles/blender_icons16/icon16_curves.dat -share/blender/datafiles/blender_icons16/icon16_curves_data.dat -share/blender/datafiles/blender_icons16/icon16_decorate.dat -share/blender/datafiles/blender_icons16/icon16_decorate_animate.dat -share/blender/datafiles/blender_icons16/icon16_decorate_driver.dat -share/blender/datafiles/blender_icons16/icon16_decorate_keyframe.dat -share/blender/datafiles/blender_icons16/icon16_decorate_library_override.dat -share/blender/datafiles/blender_icons16/icon16_decorate_linked.dat -share/blender/datafiles/blender_icons16/icon16_decorate_locked.dat -share/blender/datafiles/blender_icons16/icon16_decorate_override.dat -share/blender/datafiles/blender_icons16/icon16_decorate_unlocked.dat -share/blender/datafiles/blender_icons16/icon16_desktop.dat -share/blender/datafiles/blender_icons16/icon16_disc.dat -share/blender/datafiles/blender_icons16/icon16_disclosure_tri_down.dat -share/blender/datafiles/blender_icons16/icon16_disclosure_tri_right.dat -share/blender/datafiles/blender_icons16/icon16_disk_drive.dat -share/blender/datafiles/blender_icons16/icon16_documents.dat -share/blender/datafiles/blender_icons16/icon16_dot.dat -share/blender/datafiles/blender_icons16/icon16_downarrow_hlt.dat -share/blender/datafiles/blender_icons16/icon16_driver.dat -share/blender/datafiles/blender_icons16/icon16_driver_distance.dat -share/blender/datafiles/blender_icons16/icon16_driver_rotational_difference.dat -share/blender/datafiles/blender_icons16/icon16_driver_transform.dat -share/blender/datafiles/blender_icons16/icon16_duplicate.dat -share/blender/datafiles/blender_icons16/icon16_edgesel.dat -share/blender/datafiles/blender_icons16/icon16_editmode_hlt.dat -share/blender/datafiles/blender_icons16/icon16_empty_arrows.dat -share/blender/datafiles/blender_icons16/icon16_empty_axis.dat -share/blender/datafiles/blender_icons16/icon16_empty_data.dat -share/blender/datafiles/blender_icons16/icon16_empty_single_arrow.dat -share/blender/datafiles/blender_icons16/icon16_error.dat -share/blender/datafiles/blender_icons16/icon16_experimental.dat -share/blender/datafiles/blender_icons16/icon16_export.dat -share/blender/datafiles/blender_icons16/icon16_external_drive.dat -share/blender/datafiles/blender_icons16/icon16_eyedropper.dat -share/blender/datafiles/blender_icons16/icon16_face_maps.dat -share/blender/datafiles/blender_icons16/icon16_facesel.dat -share/blender/datafiles/blender_icons16/icon16_fake_user_off.dat -share/blender/datafiles/blender_icons16/icon16_fake_user_on.dat -share/blender/datafiles/blender_icons16/icon16_fcurve.dat -share/blender/datafiles/blender_icons16/icon16_fcurve_snapshot.dat -share/blender/datafiles/blender_icons16/icon16_ff.dat -share/blender/datafiles/blender_icons16/icon16_file.dat -share/blender/datafiles/blender_icons16/icon16_file_3d.dat -share/blender/datafiles/blender_icons16/icon16_file_archive.dat -share/blender/datafiles/blender_icons16/icon16_file_backup.dat -share/blender/datafiles/blender_icons16/icon16_file_blank.dat -share/blender/datafiles/blender_icons16/icon16_file_blend.dat -share/blender/datafiles/blender_icons16/icon16_file_cache.dat -share/blender/datafiles/blender_icons16/icon16_file_folder.dat -share/blender/datafiles/blender_icons16/icon16_file_font.dat -share/blender/datafiles/blender_icons16/icon16_file_hidden.dat -share/blender/datafiles/blender_icons16/icon16_file_image.dat -share/blender/datafiles/blender_icons16/icon16_file_movie.dat -share/blender/datafiles/blender_icons16/icon16_file_new.dat -share/blender/datafiles/blender_icons16/icon16_file_parent.dat -share/blender/datafiles/blender_icons16/icon16_file_refresh.dat -share/blender/datafiles/blender_icons16/icon16_file_script.dat -share/blender/datafiles/blender_icons16/icon16_file_sound.dat -share/blender/datafiles/blender_icons16/icon16_file_text.dat -share/blender/datafiles/blender_icons16/icon16_file_tick.dat -share/blender/datafiles/blender_icons16/icon16_file_volume.dat -share/blender/datafiles/blender_icons16/icon16_filebrowser.dat -share/blender/datafiles/blender_icons16/icon16_filter.dat -share/blender/datafiles/blender_icons16/icon16_fixed_size.dat -share/blender/datafiles/blender_icons16/icon16_folder_redirect.dat -share/blender/datafiles/blender_icons16/icon16_font_data.dat -share/blender/datafiles/blender_icons16/icon16_fontpreview.dat -share/blender/datafiles/blender_icons16/icon16_force_boid.dat -share/blender/datafiles/blender_icons16/icon16_force_charge.dat -share/blender/datafiles/blender_icons16/icon16_force_curve.dat -share/blender/datafiles/blender_icons16/icon16_force_drag.dat -share/blender/datafiles/blender_icons16/icon16_force_fluidflow.dat -share/blender/datafiles/blender_icons16/icon16_force_force.dat -share/blender/datafiles/blender_icons16/icon16_force_harmonic.dat -share/blender/datafiles/blender_icons16/icon16_force_lennardjones.dat -share/blender/datafiles/blender_icons16/icon16_force_magnetic.dat -share/blender/datafiles/blender_icons16/icon16_force_texture.dat -share/blender/datafiles/blender_icons16/icon16_force_turbulence.dat -share/blender/datafiles/blender_icons16/icon16_force_vortex.dat -share/blender/datafiles/blender_icons16/icon16_force_wind.dat -share/blender/datafiles/blender_icons16/icon16_forward.dat -share/blender/datafiles/blender_icons16/icon16_frame_next.dat -share/blender/datafiles/blender_icons16/icon16_frame_prev.dat -share/blender/datafiles/blender_icons16/icon16_freeze.dat -share/blender/datafiles/blender_icons16/icon16_fullscreen_enter.dat -share/blender/datafiles/blender_icons16/icon16_fullscreen_exit.dat -share/blender/datafiles/blender_icons16/icon16_fund.dat -share/blender/datafiles/blender_icons16/icon16_geometry_nodes.dat -share/blender/datafiles/blender_icons16/icon16_ghost_disabled.dat -share/blender/datafiles/blender_icons16/icon16_ghost_enabled.dat -share/blender/datafiles/blender_icons16/icon16_gizmo.dat -share/blender/datafiles/blender_icons16/icon16_gp_caps_flat.dat -share/blender/datafiles/blender_icons16/icon16_gp_caps_round.dat -share/blender/datafiles/blender_icons16/icon16_gp_multiframe_editing.dat -share/blender/datafiles/blender_icons16/icon16_gp_only_selected.dat -share/blender/datafiles/blender_icons16/icon16_gp_select_between_strokes.dat -share/blender/datafiles/blender_icons16/icon16_gp_select_points.dat -share/blender/datafiles/blender_icons16/icon16_gp_select_strokes.dat -share/blender/datafiles/blender_icons16/icon16_graph.dat -share/blender/datafiles/blender_icons16/icon16_greasepencil.dat -share/blender/datafiles/blender_icons16/icon16_grid.dat -share/blender/datafiles/blender_icons16/icon16_grip.dat -share/blender/datafiles/blender_icons16/icon16_group.dat -share/blender/datafiles/blender_icons16/icon16_group_bone.dat -share/blender/datafiles/blender_icons16/icon16_group_uvs.dat -share/blender/datafiles/blender_icons16/icon16_group_vcol.dat -share/blender/datafiles/blender_icons16/icon16_group_vertex.dat -share/blender/datafiles/blender_icons16/icon16_hand.dat -share/blender/datafiles/blender_icons16/icon16_handle_aligned.dat -share/blender/datafiles/blender_icons16/icon16_handle_auto.dat -share/blender/datafiles/blender_icons16/icon16_handle_autoclamped.dat -share/blender/datafiles/blender_icons16/icon16_handle_free.dat -share/blender/datafiles/blender_icons16/icon16_handle_vector.dat -share/blender/datafiles/blender_icons16/icon16_heart.dat -share/blender/datafiles/blender_icons16/icon16_help.dat -share/blender/datafiles/blender_icons16/icon16_hide_off.dat -share/blender/datafiles/blender_icons16/icon16_hide_on.dat -share/blender/datafiles/blender_icons16/icon16_holdout_off.dat -share/blender/datafiles/blender_icons16/icon16_holdout_on.dat -share/blender/datafiles/blender_icons16/icon16_home.dat -share/blender/datafiles/blender_icons16/icon16_hook.dat -share/blender/datafiles/blender_icons16/icon16_image.dat -share/blender/datafiles/blender_icons16/icon16_image_alpha.dat -share/blender/datafiles/blender_icons16/icon16_image_background.dat -share/blender/datafiles/blender_icons16/icon16_image_data.dat -share/blender/datafiles/blender_icons16/icon16_image_plane.dat -share/blender/datafiles/blender_icons16/icon16_image_reference.dat -share/blender/datafiles/blender_icons16/icon16_image_rgb.dat -share/blender/datafiles/blender_icons16/icon16_image_rgb_alpha.dat -share/blender/datafiles/blender_icons16/icon16_image_zdepth.dat -share/blender/datafiles/blender_icons16/icon16_imgdisplay.dat -share/blender/datafiles/blender_icons16/icon16_import.dat -share/blender/datafiles/blender_icons16/icon16_indirect_only_off.dat -share/blender/datafiles/blender_icons16/icon16_indirect_only_on.dat -share/blender/datafiles/blender_icons16/icon16_info.dat -share/blender/datafiles/blender_icons16/icon16_inversesquarecurve.dat -share/blender/datafiles/blender_icons16/icon16_ipo_back.dat -share/blender/datafiles/blender_icons16/icon16_ipo_bezier.dat -share/blender/datafiles/blender_icons16/icon16_ipo_bounce.dat -share/blender/datafiles/blender_icons16/icon16_ipo_circ.dat -share/blender/datafiles/blender_icons16/icon16_ipo_constant.dat -share/blender/datafiles/blender_icons16/icon16_ipo_cubic.dat -share/blender/datafiles/blender_icons16/icon16_ipo_ease_in.dat -share/blender/datafiles/blender_icons16/icon16_ipo_ease_in_out.dat -share/blender/datafiles/blender_icons16/icon16_ipo_ease_out.dat -share/blender/datafiles/blender_icons16/icon16_ipo_elastic.dat -share/blender/datafiles/blender_icons16/icon16_ipo_expo.dat -share/blender/datafiles/blender_icons16/icon16_ipo_linear.dat -share/blender/datafiles/blender_icons16/icon16_ipo_quad.dat -share/blender/datafiles/blender_icons16/icon16_ipo_quart.dat -share/blender/datafiles/blender_icons16/icon16_ipo_quint.dat -share/blender/datafiles/blender_icons16/icon16_ipo_sine.dat -share/blender/datafiles/blender_icons16/icon16_italic.dat -share/blender/datafiles/blender_icons16/icon16_key_dehlt.dat -share/blender/datafiles/blender_icons16/icon16_key_hlt.dat -share/blender/datafiles/blender_icons16/icon16_keyframe.dat -share/blender/datafiles/blender_icons16/icon16_keyframe_hlt.dat -share/blender/datafiles/blender_icons16/icon16_keyingset.dat -share/blender/datafiles/blender_icons16/icon16_lattice_data.dat -share/blender/datafiles/blender_icons16/icon16_layer_active.dat -share/blender/datafiles/blender_icons16/icon16_layer_used.dat -share/blender/datafiles/blender_icons16/icon16_library_data_broken.dat -share/blender/datafiles/blender_icons16/icon16_library_data_direct.dat -share/blender/datafiles/blender_icons16/icon16_library_data_override.dat -share/blender/datafiles/blender_icons16/icon16_light.dat -share/blender/datafiles/blender_icons16/icon16_light_area.dat -share/blender/datafiles/blender_icons16/icon16_light_data.dat -share/blender/datafiles/blender_icons16/icon16_light_hemi.dat -share/blender/datafiles/blender_icons16/icon16_light_point.dat -share/blender/datafiles/blender_icons16/icon16_light_spot.dat -share/blender/datafiles/blender_icons16/icon16_light_sun.dat -share/blender/datafiles/blender_icons16/icon16_lightprobe_cubemap.dat -share/blender/datafiles/blender_icons16/icon16_lightprobe_grid.dat -share/blender/datafiles/blender_icons16/icon16_lightprobe_planar.dat -share/blender/datafiles/blender_icons16/icon16_lincurve.dat -share/blender/datafiles/blender_icons16/icon16_line_data.dat -share/blender/datafiles/blender_icons16/icon16_linenumbers_off.dat -share/blender/datafiles/blender_icons16/icon16_linenumbers_on.dat -share/blender/datafiles/blender_icons16/icon16_link_blend.dat -share/blender/datafiles/blender_icons16/icon16_linked.dat -share/blender/datafiles/blender_icons16/icon16_locked.dat -share/blender/datafiles/blender_icons16/icon16_lockview_off.dat -share/blender/datafiles/blender_icons16/icon16_lockview_on.dat -share/blender/datafiles/blender_icons16/icon16_longdisplay.dat -share/blender/datafiles/blender_icons16/icon16_loop_back.dat -share/blender/datafiles/blender_icons16/icon16_loop_forwards.dat -share/blender/datafiles/blender_icons16/icon16_marker.dat -share/blender/datafiles/blender_icons16/icon16_marker_hlt.dat -share/blender/datafiles/blender_icons16/icon16_mat_sphere_sky.dat -share/blender/datafiles/blender_icons16/icon16_matcloth.dat -share/blender/datafiles/blender_icons16/icon16_matcube.dat -share/blender/datafiles/blender_icons16/icon16_material.dat -share/blender/datafiles/blender_icons16/icon16_material_data.dat -share/blender/datafiles/blender_icons16/icon16_matfluid.dat -share/blender/datafiles/blender_icons16/icon16_matplane.dat -share/blender/datafiles/blender_icons16/icon16_matshaderball.dat -share/blender/datafiles/blender_icons16/icon16_matsphere.dat -share/blender/datafiles/blender_icons16/icon16_memory.dat -share/blender/datafiles/blender_icons16/icon16_menu_panel.dat -share/blender/datafiles/blender_icons16/icon16_mesh_capsule.dat -share/blender/datafiles/blender_icons16/icon16_mesh_circle.dat -share/blender/datafiles/blender_icons16/icon16_mesh_cone.dat -share/blender/datafiles/blender_icons16/icon16_mesh_cube.dat -share/blender/datafiles/blender_icons16/icon16_mesh_cylinder.dat -share/blender/datafiles/blender_icons16/icon16_mesh_data.dat -share/blender/datafiles/blender_icons16/icon16_mesh_grid.dat -share/blender/datafiles/blender_icons16/icon16_mesh_icosphere.dat -share/blender/datafiles/blender_icons16/icon16_mesh_monkey.dat -share/blender/datafiles/blender_icons16/icon16_mesh_plane.dat -share/blender/datafiles/blender_icons16/icon16_mesh_torus.dat -share/blender/datafiles/blender_icons16/icon16_mesh_uvsphere.dat -share/blender/datafiles/blender_icons16/icon16_meta_ball.dat -share/blender/datafiles/blender_icons16/icon16_meta_capsule.dat -share/blender/datafiles/blender_icons16/icon16_meta_cube.dat -share/blender/datafiles/blender_icons16/icon16_meta_data.dat -share/blender/datafiles/blender_icons16/icon16_meta_ellipsoid.dat -share/blender/datafiles/blender_icons16/icon16_meta_plane.dat -share/blender/datafiles/blender_icons16/icon16_mod_armature.dat -share/blender/datafiles/blender_icons16/icon16_mod_array.dat -share/blender/datafiles/blender_icons16/icon16_mod_bevel.dat -share/blender/datafiles/blender_icons16/icon16_mod_boolean.dat -share/blender/datafiles/blender_icons16/icon16_mod_build.dat -share/blender/datafiles/blender_icons16/icon16_mod_cast.dat -share/blender/datafiles/blender_icons16/icon16_mod_cloth.dat -share/blender/datafiles/blender_icons16/icon16_mod_curve.dat -share/blender/datafiles/blender_icons16/icon16_mod_dash.dat -share/blender/datafiles/blender_icons16/icon16_mod_data_transfer.dat -share/blender/datafiles/blender_icons16/icon16_mod_decim.dat -share/blender/datafiles/blender_icons16/icon16_mod_displace.dat -share/blender/datafiles/blender_icons16/icon16_mod_dynamicpaint.dat -share/blender/datafiles/blender_icons16/icon16_mod_edgesplit.dat -share/blender/datafiles/blender_icons16/icon16_mod_explode.dat -share/blender/datafiles/blender_icons16/icon16_mod_fluid.dat -share/blender/datafiles/blender_icons16/icon16_mod_fluidsim.dat -share/blender/datafiles/blender_icons16/icon16_mod_hue_saturation.dat -share/blender/datafiles/blender_icons16/icon16_mod_instance.dat -share/blender/datafiles/blender_icons16/icon16_mod_lattice.dat -share/blender/datafiles/blender_icons16/icon16_mod_length.dat -share/blender/datafiles/blender_icons16/icon16_mod_lineart.dat -share/blender/datafiles/blender_icons16/icon16_mod_mask.dat -share/blender/datafiles/blender_icons16/icon16_mod_meshdeform.dat -share/blender/datafiles/blender_icons16/icon16_mod_mirror.dat -share/blender/datafiles/blender_icons16/icon16_mod_multires.dat -share/blender/datafiles/blender_icons16/icon16_mod_noise.dat -share/blender/datafiles/blender_icons16/icon16_mod_normaledit.dat -share/blender/datafiles/blender_icons16/icon16_mod_ocean.dat -share/blender/datafiles/blender_icons16/icon16_mod_offset.dat -share/blender/datafiles/blender_icons16/icon16_mod_opacity.dat -share/blender/datafiles/blender_icons16/icon16_mod_particle_instance.dat -share/blender/datafiles/blender_icons16/icon16_mod_particles.dat -share/blender/datafiles/blender_icons16/icon16_mod_physics.dat -share/blender/datafiles/blender_icons16/icon16_mod_remesh.dat -share/blender/datafiles/blender_icons16/icon16_mod_screw.dat -share/blender/datafiles/blender_icons16/icon16_mod_shrinkwrap.dat -share/blender/datafiles/blender_icons16/icon16_mod_simpledeform.dat -share/blender/datafiles/blender_icons16/icon16_mod_simplify.dat -share/blender/datafiles/blender_icons16/icon16_mod_skin.dat -share/blender/datafiles/blender_icons16/icon16_mod_smooth.dat -share/blender/datafiles/blender_icons16/icon16_mod_soft.dat -share/blender/datafiles/blender_icons16/icon16_mod_solidify.dat -share/blender/datafiles/blender_icons16/icon16_mod_subsurf.dat -share/blender/datafiles/blender_icons16/icon16_mod_thickness.dat -share/blender/datafiles/blender_icons16/icon16_mod_time.dat -share/blender/datafiles/blender_icons16/icon16_mod_tint.dat -share/blender/datafiles/blender_icons16/icon16_mod_triangulate.dat -share/blender/datafiles/blender_icons16/icon16_mod_uvproject.dat -share/blender/datafiles/blender_icons16/icon16_mod_vertex_weight.dat -share/blender/datafiles/blender_icons16/icon16_mod_warp.dat -share/blender/datafiles/blender_icons16/icon16_mod_wave.dat -share/blender/datafiles/blender_icons16/icon16_mod_wireframe.dat -share/blender/datafiles/blender_icons16/icon16_modifier.dat -share/blender/datafiles/blender_icons16/icon16_modifier_data.dat -share/blender/datafiles/blender_icons16/icon16_modifier_off.dat -share/blender/datafiles/blender_icons16/icon16_modifier_on.dat -share/blender/datafiles/blender_icons16/icon16_monkey.dat -share/blender/datafiles/blender_icons16/icon16_mouse_lmb.dat -share/blender/datafiles/blender_icons16/icon16_mouse_lmb_drag.dat -share/blender/datafiles/blender_icons16/icon16_mouse_mmb.dat -share/blender/datafiles/blender_icons16/icon16_mouse_mmb_drag.dat -share/blender/datafiles/blender_icons16/icon16_mouse_move.dat -share/blender/datafiles/blender_icons16/icon16_mouse_rmb.dat -share/blender/datafiles/blender_icons16/icon16_mouse_rmb_drag.dat -share/blender/datafiles/blender_icons16/icon16_mute_ipo_off.dat -share/blender/datafiles/blender_icons16/icon16_mute_ipo_on.dat -share/blender/datafiles/blender_icons16/icon16_network_drive.dat -share/blender/datafiles/blender_icons16/icon16_newfolder.dat -share/blender/datafiles/blender_icons16/icon16_next_keyframe.dat -share/blender/datafiles/blender_icons16/icon16_nla.dat -share/blender/datafiles/blender_icons16/icon16_nla_pushdown.dat -share/blender/datafiles/blender_icons16/icon16_nocurve.dat -share/blender/datafiles/blender_icons16/icon16_node.dat -share/blender/datafiles/blender_icons16/icon16_node_compositing.dat -share/blender/datafiles/blender_icons16/icon16_node_corner.dat -share/blender/datafiles/blender_icons16/icon16_node_insert_off.dat -share/blender/datafiles/blender_icons16/icon16_node_insert_on.dat -share/blender/datafiles/blender_icons16/icon16_node_material.dat -share/blender/datafiles/blender_icons16/icon16_node_sel.dat -share/blender/datafiles/blender_icons16/icon16_node_side.dat -share/blender/datafiles/blender_icons16/icon16_node_texture.dat -share/blender/datafiles/blender_icons16/icon16_node_top.dat -share/blender/datafiles/blender_icons16/icon16_nodetree.dat -share/blender/datafiles/blender_icons16/icon16_normalize_fcurves.dat -share/blender/datafiles/blender_icons16/icon16_normals_face.dat -share/blender/datafiles/blender_icons16/icon16_normals_vertex.dat -share/blender/datafiles/blender_icons16/icon16_normals_vertex_face.dat -share/blender/datafiles/blender_icons16/icon16_object_data.dat -share/blender/datafiles/blender_icons16/icon16_object_datamode.dat -share/blender/datafiles/blender_icons16/icon16_object_hidden.dat -share/blender/datafiles/blender_icons16/icon16_object_origin.dat -share/blender/datafiles/blender_icons16/icon16_onionskin_off.dat -share/blender/datafiles/blender_icons16/icon16_onionskin_on.dat -share/blender/datafiles/blender_icons16/icon16_options.dat -share/blender/datafiles/blender_icons16/icon16_orientation_cursor.dat -share/blender/datafiles/blender_icons16/icon16_orientation_gimbal.dat -share/blender/datafiles/blender_icons16/icon16_orientation_global.dat -share/blender/datafiles/blender_icons16/icon16_orientation_local.dat -share/blender/datafiles/blender_icons16/icon16_orientation_normal.dat -share/blender/datafiles/blender_icons16/icon16_orientation_view.dat -share/blender/datafiles/blender_icons16/icon16_orphan_data.dat -share/blender/datafiles/blender_icons16/icon16_outliner.dat -share/blender/datafiles/blender_icons16/icon16_outliner_collection.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_armature.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_camera.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_curve.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_curves.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_empty.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_font.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_gp_layer.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_greasepencil.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_lattice.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_light.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_lightprobe.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_mesh.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_meta.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_pointcloud.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_speaker.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_surface.dat -share/blender/datafiles/blender_icons16/icon16_outliner_data_volume.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_armature.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_camera.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_curve.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_curves.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_empty.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_font.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_force_field.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_greasepencil.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_group_instance.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_image.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_lattice.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_light.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_lightprobe.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_mesh.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_meta.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_pointcloud.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_speaker.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_surface.dat -share/blender/datafiles/blender_icons16/icon16_outliner_ob_volume.dat -share/blender/datafiles/blender_icons16/icon16_output.dat -share/blender/datafiles/blender_icons16/icon16_overlay.dat -share/blender/datafiles/blender_icons16/icon16_package.dat -share/blender/datafiles/blender_icons16/icon16_panel_close.dat -share/blender/datafiles/blender_icons16/icon16_particle_data.dat -share/blender/datafiles/blender_icons16/icon16_particle_path.dat -share/blender/datafiles/blender_icons16/icon16_particle_point.dat -share/blender/datafiles/blender_icons16/icon16_particle_tip.dat -share/blender/datafiles/blender_icons16/icon16_particlemode.dat -share/blender/datafiles/blender_icons16/icon16_particles.dat -share/blender/datafiles/blender_icons16/icon16_pastedown.dat -share/blender/datafiles/blender_icons16/icon16_pasteflipdown.dat -share/blender/datafiles/blender_icons16/icon16_pasteflipup.dat -share/blender/datafiles/blender_icons16/icon16_pause.dat -share/blender/datafiles/blender_icons16/icon16_physics.dat -share/blender/datafiles/blender_icons16/icon16_pinned.dat -share/blender/datafiles/blender_icons16/icon16_pivot_active.dat -share/blender/datafiles/blender_icons16/icon16_pivot_boundbox.dat -share/blender/datafiles/blender_icons16/icon16_pivot_cursor.dat -share/blender/datafiles/blender_icons16/icon16_pivot_individual.dat -share/blender/datafiles/blender_icons16/icon16_pivot_median.dat -share/blender/datafiles/blender_icons16/icon16_play.dat -share/blender/datafiles/blender_icons16/icon16_play_reverse.dat -share/blender/datafiles/blender_icons16/icon16_play_sound.dat -share/blender/datafiles/blender_icons16/icon16_plugin.dat -share/blender/datafiles/blender_icons16/icon16_plus.dat -share/blender/datafiles/blender_icons16/icon16_pmarker.dat -share/blender/datafiles/blender_icons16/icon16_pmarker_act.dat -share/blender/datafiles/blender_icons16/icon16_pmarker_sel.dat -share/blender/datafiles/blender_icons16/icon16_pointcloud_data.dat -share/blender/datafiles/blender_icons16/icon16_pose_hlt.dat -share/blender/datafiles/blender_icons16/icon16_preferences.dat -share/blender/datafiles/blender_icons16/icon16_preset.dat -share/blender/datafiles/blender_icons16/icon16_preset_new.dat -share/blender/datafiles/blender_icons16/icon16_prev_keyframe.dat -share/blender/datafiles/blender_icons16/icon16_preview_range.dat -share/blender/datafiles/blender_icons16/icon16_prop_con.dat -share/blender/datafiles/blender_icons16/icon16_prop_off.dat -share/blender/datafiles/blender_icons16/icon16_prop_on.dat -share/blender/datafiles/blender_icons16/icon16_prop_projected.dat -share/blender/datafiles/blender_icons16/icon16_properties.dat -share/blender/datafiles/blender_icons16/icon16_question.dat -share/blender/datafiles/blender_icons16/icon16_quit.dat -share/blender/datafiles/blender_icons16/icon16_radiobut_off.dat -share/blender/datafiles/blender_icons16/icon16_radiobut_on.dat -share/blender/datafiles/blender_icons16/icon16_rec.dat -share/blender/datafiles/blender_icons16/icon16_recover_last.dat -share/blender/datafiles/blender_icons16/icon16_remove.dat -share/blender/datafiles/blender_icons16/icon16_render_animation.dat -share/blender/datafiles/blender_icons16/icon16_render_result.dat -share/blender/datafiles/blender_icons16/icon16_render_still.dat -share/blender/datafiles/blender_icons16/icon16_renderlayers.dat -share/blender/datafiles/blender_icons16/icon16_restrict_color_off.dat -share/blender/datafiles/blender_icons16/icon16_restrict_color_on.dat -share/blender/datafiles/blender_icons16/icon16_restrict_instanced_off.dat -share/blender/datafiles/blender_icons16/icon16_restrict_instanced_on.dat -share/blender/datafiles/blender_icons16/icon16_restrict_render_off.dat -share/blender/datafiles/blender_icons16/icon16_restrict_render_on.dat -share/blender/datafiles/blender_icons16/icon16_restrict_select_off.dat -share/blender/datafiles/blender_icons16/icon16_restrict_select_on.dat -share/blender/datafiles/blender_icons16/icon16_restrict_view_off.dat -share/blender/datafiles/blender_icons16/icon16_restrict_view_on.dat -share/blender/datafiles/blender_icons16/icon16_rew.dat -share/blender/datafiles/blender_icons16/icon16_rightarrow.dat -share/blender/datafiles/blender_icons16/icon16_rightarrow_thin.dat -share/blender/datafiles/blender_icons16/icon16_rigid_body.dat -share/blender/datafiles/blender_icons16/icon16_rigid_body_constraint.dat -share/blender/datafiles/blender_icons16/icon16_rna.dat -share/blender/datafiles/blender_icons16/icon16_rna_add.dat -share/blender/datafiles/blender_icons16/icon16_rndcurve.dat -share/blender/datafiles/blender_icons16/icon16_rootcurve.dat -share/blender/datafiles/blender_icons16/icon16_scene.dat -share/blender/datafiles/blender_icons16/icon16_scene_data.dat -share/blender/datafiles/blender_icons16/icon16_screen_back.dat -share/blender/datafiles/blender_icons16/icon16_script.dat -share/blender/datafiles/blender_icons16/icon16_scriptplugins.dat -share/blender/datafiles/blender_icons16/icon16_sculptmode_hlt.dat -share/blender/datafiles/blender_icons16/icon16_select_difference.dat -share/blender/datafiles/blender_icons16/icon16_select_extend.dat -share/blender/datafiles/blender_icons16/icon16_select_intersect.dat -share/blender/datafiles/blender_icons16/icon16_select_set.dat -share/blender/datafiles/blender_icons16/icon16_select_subtract.dat -share/blender/datafiles/blender_icons16/icon16_seq_chroma_scope.dat -share/blender/datafiles/blender_icons16/icon16_seq_histogram.dat -share/blender/datafiles/blender_icons16/icon16_seq_luma_waveform.dat -share/blender/datafiles/blender_icons16/icon16_seq_preview.dat -share/blender/datafiles/blender_icons16/icon16_seq_sequencer.dat -share/blender/datafiles/blender_icons16/icon16_seq_splitview.dat -share/blender/datafiles/blender_icons16/icon16_seq_strip_duplicate.dat -share/blender/datafiles/blender_icons16/icon16_seq_strip_meta.dat -share/blender/datafiles/blender_icons16/icon16_sequence.dat -share/blender/datafiles/blender_icons16/icon16_settings.dat -share/blender/datafiles/blender_icons16/icon16_shaderfx.dat -share/blender/datafiles/blender_icons16/icon16_shading_bbox.dat -share/blender/datafiles/blender_icons16/icon16_shading_rendered.dat -share/blender/datafiles/blender_icons16/icon16_shading_solid.dat -share/blender/datafiles/blender_icons16/icon16_shading_texture.dat -share/blender/datafiles/blender_icons16/icon16_shading_wire.dat -share/blender/datafiles/blender_icons16/icon16_shapekey_data.dat -share/blender/datafiles/blender_icons16/icon16_sharpcurve.dat -share/blender/datafiles/blender_icons16/icon16_shortdisplay.dat -share/blender/datafiles/blender_icons16/icon16_small_caps.dat -share/blender/datafiles/blender_icons16/icon16_smoothcurve.dat -share/blender/datafiles/blender_icons16/icon16_snap_edge.dat -share/blender/datafiles/blender_icons16/icon16_snap_face.dat -share/blender/datafiles/blender_icons16/icon16_snap_face_center.dat -share/blender/datafiles/blender_icons16/icon16_snap_face_nearest.dat -share/blender/datafiles/blender_icons16/icon16_snap_grid.dat -share/blender/datafiles/blender_icons16/icon16_snap_increment.dat -share/blender/datafiles/blender_icons16/icon16_snap_midpoint.dat -share/blender/datafiles/blender_icons16/icon16_snap_normal.dat -share/blender/datafiles/blender_icons16/icon16_snap_off.dat -share/blender/datafiles/blender_icons16/icon16_snap_on.dat -share/blender/datafiles/blender_icons16/icon16_snap_peel_object.dat -share/blender/datafiles/blender_icons16/icon16_snap_perpendicular.dat -share/blender/datafiles/blender_icons16/icon16_snap_vertex.dat -share/blender/datafiles/blender_icons16/icon16_snap_volume.dat -share/blender/datafiles/blender_icons16/icon16_solo_off.dat -share/blender/datafiles/blender_icons16/icon16_solo_on.dat -share/blender/datafiles/blender_icons16/icon16_sort_asc.dat -share/blender/datafiles/blender_icons16/icon16_sort_desc.dat -share/blender/datafiles/blender_icons16/icon16_sortalpha.dat -share/blender/datafiles/blender_icons16/icon16_sortbyext.dat -share/blender/datafiles/blender_icons16/icon16_sortsize.dat -share/blender/datafiles/blender_icons16/icon16_sorttime.dat -share/blender/datafiles/blender_icons16/icon16_sound.dat -share/blender/datafiles/blender_icons16/icon16_speaker.dat -share/blender/datafiles/blender_icons16/icon16_sphere.dat -share/blender/datafiles/blender_icons16/icon16_spherecurve.dat -share/blender/datafiles/blender_icons16/icon16_spreadsheet.dat -share/blender/datafiles/blender_icons16/icon16_statusbar.dat -share/blender/datafiles/blender_icons16/icon16_sticky_uvs_disable.dat -share/blender/datafiles/blender_icons16/icon16_sticky_uvs_loc.dat -share/blender/datafiles/blender_icons16/icon16_sticky_uvs_vert.dat -share/blender/datafiles/blender_icons16/icon16_strands.dat -share/blender/datafiles/blender_icons16/icon16_stroke.dat -share/blender/datafiles/blender_icons16/icon16_stylus_pressure.dat -share/blender/datafiles/blender_icons16/icon16_surface_data.dat -share/blender/datafiles/blender_icons16/icon16_surface_ncircle.dat -share/blender/datafiles/blender_icons16/icon16_surface_ncurve.dat -share/blender/datafiles/blender_icons16/icon16_surface_ncylinder.dat -share/blender/datafiles/blender_icons16/icon16_surface_nsphere.dat -share/blender/datafiles/blender_icons16/icon16_surface_nsurface.dat -share/blender/datafiles/blender_icons16/icon16_surface_ntorus.dat -share/blender/datafiles/blender_icons16/icon16_syntax_off.dat -share/blender/datafiles/blender_icons16/icon16_syntax_on.dat -share/blender/datafiles/blender_icons16/icon16_system.dat -share/blender/datafiles/blender_icons16/icon16_temp.dat -share/blender/datafiles/blender_icons16/icon16_text.dat -share/blender/datafiles/blender_icons16/icon16_texture.dat -share/blender/datafiles/blender_icons16/icon16_texture_data.dat -share/blender/datafiles/blender_icons16/icon16_three_dots.dat -share/blender/datafiles/blender_icons16/icon16_time.dat -share/blender/datafiles/blender_icons16/icon16_tool_settings.dat -share/blender/datafiles/blender_icons16/icon16_topbar.dat -share/blender/datafiles/blender_icons16/icon16_tpaint_hlt.dat -share/blender/datafiles/blender_icons16/icon16_tracker.dat -share/blender/datafiles/blender_icons16/icon16_tracker_data.dat -share/blender/datafiles/blender_icons16/icon16_tracking.dat -share/blender/datafiles/blender_icons16/icon16_tracking_backwards.dat -share/blender/datafiles/blender_icons16/icon16_tracking_backwards_single.dat -share/blender/datafiles/blender_icons16/icon16_tracking_clear_backwards.dat -share/blender/datafiles/blender_icons16/icon16_tracking_clear_forwards.dat -share/blender/datafiles/blender_icons16/icon16_tracking_forwards.dat -share/blender/datafiles/blender_icons16/icon16_tracking_forwards_single.dat -share/blender/datafiles/blender_icons16/icon16_tracking_refine_backwards.dat -share/blender/datafiles/blender_icons16/icon16_tracking_refine_forwards.dat -share/blender/datafiles/blender_icons16/icon16_transform_origins.dat -share/blender/datafiles/blender_icons16/icon16_trash.dat -share/blender/datafiles/blender_icons16/icon16_tria_down.dat -share/blender/datafiles/blender_icons16/icon16_tria_down_bar.dat -share/blender/datafiles/blender_icons16/icon16_tria_left.dat -share/blender/datafiles/blender_icons16/icon16_tria_left_bar.dat -share/blender/datafiles/blender_icons16/icon16_tria_right.dat -share/blender/datafiles/blender_icons16/icon16_tria_right_bar.dat -share/blender/datafiles/blender_icons16/icon16_tria_up.dat -share/blender/datafiles/blender_icons16/icon16_tria_up_bar.dat -share/blender/datafiles/blender_icons16/icon16_uglypackage.dat -share/blender/datafiles/blender_icons16/icon16_underline.dat -share/blender/datafiles/blender_icons16/icon16_unlinked.dat -share/blender/datafiles/blender_icons16/icon16_unlocked.dat -share/blender/datafiles/blender_icons16/icon16_unpinned.dat -share/blender/datafiles/blender_icons16/icon16_url.dat -share/blender/datafiles/blender_icons16/icon16_user.dat -share/blender/datafiles/blender_icons16/icon16_uv.dat -share/blender/datafiles/blender_icons16/icon16_uv_data.dat -share/blender/datafiles/blender_icons16/icon16_uv_edgesel.dat -share/blender/datafiles/blender_icons16/icon16_uv_facesel.dat -share/blender/datafiles/blender_icons16/icon16_uv_islandsel.dat -share/blender/datafiles/blender_icons16/icon16_uv_sync_select.dat -share/blender/datafiles/blender_icons16/icon16_uv_vertexsel.dat -share/blender/datafiles/blender_icons16/icon16_vertexsel.dat -share/blender/datafiles/blender_icons16/icon16_view3d.dat -share/blender/datafiles/blender_icons16/icon16_view_camera.dat -share/blender/datafiles/blender_icons16/icon16_view_ortho.dat -share/blender/datafiles/blender_icons16/icon16_view_pan.dat -share/blender/datafiles/blender_icons16/icon16_view_perspective.dat -share/blender/datafiles/blender_icons16/icon16_view_zoom.dat -share/blender/datafiles/blender_icons16/icon16_viewzoom.dat -share/blender/datafiles/blender_icons16/icon16_vis_sel_00.dat -share/blender/datafiles/blender_icons16/icon16_vis_sel_01.dat -share/blender/datafiles/blender_icons16/icon16_vis_sel_10.dat -share/blender/datafiles/blender_icons16/icon16_vis_sel_11.dat -share/blender/datafiles/blender_icons16/icon16_volume_data.dat -share/blender/datafiles/blender_icons16/icon16_vpaint_hlt.dat -share/blender/datafiles/blender_icons16/icon16_window.dat -share/blender/datafiles/blender_icons16/icon16_wordwrap_off.dat -share/blender/datafiles/blender_icons16/icon16_wordwrap_on.dat -share/blender/datafiles/blender_icons16/icon16_workspace.dat -share/blender/datafiles/blender_icons16/icon16_world.dat -share/blender/datafiles/blender_icons16/icon16_world_data.dat -share/blender/datafiles/blender_icons16/icon16_wpaint_hlt.dat -share/blender/datafiles/blender_icons16/icon16_x.dat -share/blender/datafiles/blender_icons16/icon16_xray.dat -share/blender/datafiles/blender_icons16/icon16_zoom_all.dat -share/blender/datafiles/blender_icons16/icon16_zoom_in.dat -share/blender/datafiles/blender_icons16/icon16_zoom_out.dat -share/blender/datafiles/blender_icons16/icon16_zoom_previous.dat -share/blender/datafiles/blender_icons16/icon16_zoom_selected.dat -share/blender/datafiles/blender_icons32/ -share/blender/datafiles/blender_icons32/icon32_action.dat -share/blender/datafiles/blender_icons32/icon32_action_tweak.dat -share/blender/datafiles/blender_icons32/icon32_add.dat -share/blender/datafiles/blender_icons32/icon32_aliased.dat -share/blender/datafiles/blender_icons32/icon32_align_bottom.dat -share/blender/datafiles/blender_icons32/icon32_align_center.dat -share/blender/datafiles/blender_icons32/icon32_align_flush.dat -share/blender/datafiles/blender_icons32/icon32_align_justify.dat -share/blender/datafiles/blender_icons32/icon32_align_left.dat -share/blender/datafiles/blender_icons32/icon32_align_middle.dat -share/blender/datafiles/blender_icons32/icon32_align_right.dat -share/blender/datafiles/blender_icons32/icon32_align_top.dat -share/blender/datafiles/blender_icons32/icon32_anchor_bottom.dat -share/blender/datafiles/blender_icons32/icon32_anchor_center.dat -share/blender/datafiles/blender_icons32/icon32_anchor_left.dat -share/blender/datafiles/blender_icons32/icon32_anchor_right.dat -share/blender/datafiles/blender_icons32/icon32_anchor_top.dat -share/blender/datafiles/blender_icons32/icon32_anim.dat -share/blender/datafiles/blender_icons32/icon32_anim_data.dat -share/blender/datafiles/blender_icons32/icon32_antialiased.dat -share/blender/datafiles/blender_icons32/icon32_append_blend.dat -share/blender/datafiles/blender_icons32/icon32_armature_data.dat -share/blender/datafiles/blender_icons32/icon32_arrow_leftright.dat -share/blender/datafiles/blender_icons32/icon32_asset_manager.dat -share/blender/datafiles/blender_icons32/icon32_auto.dat -share/blender/datafiles/blender_icons32/icon32_automerge_off.dat -share/blender/datafiles/blender_icons32/icon32_automerge_on.dat -share/blender/datafiles/blender_icons32/icon32_axis_front.dat -share/blender/datafiles/blender_icons32/icon32_axis_side.dat -share/blender/datafiles/blender_icons32/icon32_axis_top.dat -share/blender/datafiles/blender_icons32/icon32_back.dat -share/blender/datafiles/blender_icons32/icon32_blender.dat -share/blender/datafiles/blender_icons32/icon32_boids.dat -share/blender/datafiles/blender_icons32/icon32_bold.dat -share/blender/datafiles/blender_icons32/icon32_bone_data.dat -share/blender/datafiles/blender_icons32/icon32_bookmarks.dat -share/blender/datafiles/blender_icons32/icon32_bordermove.dat -share/blender/datafiles/blender_icons32/icon32_brush_data.dat -share/blender/datafiles/blender_icons32/icon32_brushes_all.dat -share/blender/datafiles/blender_icons32/icon32_camera_data.dat -share/blender/datafiles/blender_icons32/icon32_camera_stereo.dat -share/blender/datafiles/blender_icons32/icon32_cancel.dat -share/blender/datafiles/blender_icons32/icon32_center_only.dat -share/blender/datafiles/blender_icons32/icon32_checkbox_dehlt.dat -share/blender/datafiles/blender_icons32/icon32_checkbox_hlt.dat -share/blender/datafiles/blender_icons32/icon32_checkmark.dat -share/blender/datafiles/blender_icons32/icon32_clipuv_dehlt.dat -share/blender/datafiles/blender_icons32/icon32_clipuv_hlt.dat -share/blender/datafiles/blender_icons32/icon32_collapsemenu.dat -share/blender/datafiles/blender_icons32/icon32_collection_new.dat -share/blender/datafiles/blender_icons32/icon32_color.dat -share/blender/datafiles/blender_icons32/icon32_color_blue.dat -share/blender/datafiles/blender_icons32/icon32_color_green.dat -share/blender/datafiles/blender_icons32/icon32_color_red.dat -share/blender/datafiles/blender_icons32/icon32_community.dat -share/blender/datafiles/blender_icons32/icon32_con_action.dat -share/blender/datafiles/blender_icons32/icon32_con_armature.dat -share/blender/datafiles/blender_icons32/icon32_con_camerasolver.dat -share/blender/datafiles/blender_icons32/icon32_con_childof.dat -share/blender/datafiles/blender_icons32/icon32_con_clampto.dat -share/blender/datafiles/blender_icons32/icon32_con_distlimit.dat -share/blender/datafiles/blender_icons32/icon32_con_floor.dat -share/blender/datafiles/blender_icons32/icon32_con_followpath.dat -share/blender/datafiles/blender_icons32/icon32_con_followtrack.dat -share/blender/datafiles/blender_icons32/icon32_con_kinematic.dat -share/blender/datafiles/blender_icons32/icon32_con_locktrack.dat -share/blender/datafiles/blender_icons32/icon32_con_loclike.dat -share/blender/datafiles/blender_icons32/icon32_con_loclimit.dat -share/blender/datafiles/blender_icons32/icon32_con_objectsolver.dat -share/blender/datafiles/blender_icons32/icon32_con_pivot.dat -share/blender/datafiles/blender_icons32/icon32_con_rotlike.dat -share/blender/datafiles/blender_icons32/icon32_con_rotlimit.dat -share/blender/datafiles/blender_icons32/icon32_con_samevol.dat -share/blender/datafiles/blender_icons32/icon32_con_shrinkwrap.dat -share/blender/datafiles/blender_icons32/icon32_con_sizelike.dat -share/blender/datafiles/blender_icons32/icon32_con_sizelimit.dat -share/blender/datafiles/blender_icons32/icon32_con_splineik.dat -share/blender/datafiles/blender_icons32/icon32_con_stretchto.dat -share/blender/datafiles/blender_icons32/icon32_con_trackto.dat -share/blender/datafiles/blender_icons32/icon32_con_transform.dat -share/blender/datafiles/blender_icons32/icon32_con_transform_cache.dat -share/blender/datafiles/blender_icons32/icon32_con_translike.dat -share/blender/datafiles/blender_icons32/icon32_cone.dat -share/blender/datafiles/blender_icons32/icon32_console.dat -share/blender/datafiles/blender_icons32/icon32_constraint.dat -share/blender/datafiles/blender_icons32/icon32_constraint_bone.dat -share/blender/datafiles/blender_icons32/icon32_copy_id.dat -share/blender/datafiles/blender_icons32/icon32_copydown.dat -share/blender/datafiles/blender_icons32/icon32_cube.dat -share/blender/datafiles/blender_icons32/icon32_current_file.dat -share/blender/datafiles/blender_icons32/icon32_cursor.dat -share/blender/datafiles/blender_icons32/icon32_curve_bezcircle.dat -share/blender/datafiles/blender_icons32/icon32_curve_bezcurve.dat -share/blender/datafiles/blender_icons32/icon32_curve_data.dat -share/blender/datafiles/blender_icons32/icon32_curve_ncircle.dat -share/blender/datafiles/blender_icons32/icon32_curve_ncurve.dat -share/blender/datafiles/blender_icons32/icon32_curve_path.dat -share/blender/datafiles/blender_icons32/icon32_curves.dat -share/blender/datafiles/blender_icons32/icon32_curves_data.dat -share/blender/datafiles/blender_icons32/icon32_decorate.dat -share/blender/datafiles/blender_icons32/icon32_decorate_animate.dat -share/blender/datafiles/blender_icons32/icon32_decorate_driver.dat -share/blender/datafiles/blender_icons32/icon32_decorate_keyframe.dat -share/blender/datafiles/blender_icons32/icon32_decorate_library_override.dat -share/blender/datafiles/blender_icons32/icon32_decorate_linked.dat -share/blender/datafiles/blender_icons32/icon32_decorate_locked.dat -share/blender/datafiles/blender_icons32/icon32_decorate_override.dat -share/blender/datafiles/blender_icons32/icon32_decorate_unlocked.dat -share/blender/datafiles/blender_icons32/icon32_desktop.dat -share/blender/datafiles/blender_icons32/icon32_disc.dat -share/blender/datafiles/blender_icons32/icon32_disclosure_tri_down.dat -share/blender/datafiles/blender_icons32/icon32_disclosure_tri_right.dat -share/blender/datafiles/blender_icons32/icon32_disk_drive.dat -share/blender/datafiles/blender_icons32/icon32_documents.dat -share/blender/datafiles/blender_icons32/icon32_dot.dat -share/blender/datafiles/blender_icons32/icon32_downarrow_hlt.dat -share/blender/datafiles/blender_icons32/icon32_driver.dat -share/blender/datafiles/blender_icons32/icon32_driver_distance.dat -share/blender/datafiles/blender_icons32/icon32_driver_rotational_difference.dat -share/blender/datafiles/blender_icons32/icon32_driver_transform.dat -share/blender/datafiles/blender_icons32/icon32_duplicate.dat -share/blender/datafiles/blender_icons32/icon32_edgesel.dat -share/blender/datafiles/blender_icons32/icon32_editmode_hlt.dat -share/blender/datafiles/blender_icons32/icon32_empty_arrows.dat -share/blender/datafiles/blender_icons32/icon32_empty_axis.dat -share/blender/datafiles/blender_icons32/icon32_empty_data.dat -share/blender/datafiles/blender_icons32/icon32_empty_single_arrow.dat -share/blender/datafiles/blender_icons32/icon32_error.dat -share/blender/datafiles/blender_icons32/icon32_experimental.dat -share/blender/datafiles/blender_icons32/icon32_export.dat -share/blender/datafiles/blender_icons32/icon32_external_drive.dat -share/blender/datafiles/blender_icons32/icon32_eyedropper.dat -share/blender/datafiles/blender_icons32/icon32_face_maps.dat -share/blender/datafiles/blender_icons32/icon32_facesel.dat -share/blender/datafiles/blender_icons32/icon32_fake_user_off.dat -share/blender/datafiles/blender_icons32/icon32_fake_user_on.dat -share/blender/datafiles/blender_icons32/icon32_fcurve.dat -share/blender/datafiles/blender_icons32/icon32_fcurve_snapshot.dat -share/blender/datafiles/blender_icons32/icon32_ff.dat -share/blender/datafiles/blender_icons32/icon32_file.dat -share/blender/datafiles/blender_icons32/icon32_file_3d.dat -share/blender/datafiles/blender_icons32/icon32_file_archive.dat -share/blender/datafiles/blender_icons32/icon32_file_backup.dat -share/blender/datafiles/blender_icons32/icon32_file_blank.dat -share/blender/datafiles/blender_icons32/icon32_file_blend.dat -share/blender/datafiles/blender_icons32/icon32_file_cache.dat -share/blender/datafiles/blender_icons32/icon32_file_folder.dat -share/blender/datafiles/blender_icons32/icon32_file_font.dat -share/blender/datafiles/blender_icons32/icon32_file_hidden.dat -share/blender/datafiles/blender_icons32/icon32_file_image.dat -share/blender/datafiles/blender_icons32/icon32_file_movie.dat -share/blender/datafiles/blender_icons32/icon32_file_new.dat -share/blender/datafiles/blender_icons32/icon32_file_parent.dat -share/blender/datafiles/blender_icons32/icon32_file_refresh.dat -share/blender/datafiles/blender_icons32/icon32_file_script.dat -share/blender/datafiles/blender_icons32/icon32_file_sound.dat -share/blender/datafiles/blender_icons32/icon32_file_text.dat -share/blender/datafiles/blender_icons32/icon32_file_tick.dat -share/blender/datafiles/blender_icons32/icon32_file_volume.dat -share/blender/datafiles/blender_icons32/icon32_filebrowser.dat -share/blender/datafiles/blender_icons32/icon32_filter.dat -share/blender/datafiles/blender_icons32/icon32_fixed_size.dat -share/blender/datafiles/blender_icons32/icon32_folder_redirect.dat -share/blender/datafiles/blender_icons32/icon32_font_data.dat -share/blender/datafiles/blender_icons32/icon32_fontpreview.dat -share/blender/datafiles/blender_icons32/icon32_force_boid.dat -share/blender/datafiles/blender_icons32/icon32_force_charge.dat -share/blender/datafiles/blender_icons32/icon32_force_curve.dat -share/blender/datafiles/blender_icons32/icon32_force_drag.dat -share/blender/datafiles/blender_icons32/icon32_force_fluidflow.dat -share/blender/datafiles/blender_icons32/icon32_force_force.dat -share/blender/datafiles/blender_icons32/icon32_force_harmonic.dat -share/blender/datafiles/blender_icons32/icon32_force_lennardjones.dat -share/blender/datafiles/blender_icons32/icon32_force_magnetic.dat -share/blender/datafiles/blender_icons32/icon32_force_texture.dat -share/blender/datafiles/blender_icons32/icon32_force_turbulence.dat -share/blender/datafiles/blender_icons32/icon32_force_vortex.dat -share/blender/datafiles/blender_icons32/icon32_force_wind.dat -share/blender/datafiles/blender_icons32/icon32_forward.dat -share/blender/datafiles/blender_icons32/icon32_frame_next.dat -share/blender/datafiles/blender_icons32/icon32_frame_prev.dat -share/blender/datafiles/blender_icons32/icon32_freeze.dat -share/blender/datafiles/blender_icons32/icon32_fullscreen_enter.dat -share/blender/datafiles/blender_icons32/icon32_fullscreen_exit.dat -share/blender/datafiles/blender_icons32/icon32_fund.dat -share/blender/datafiles/blender_icons32/icon32_geometry_nodes.dat -share/blender/datafiles/blender_icons32/icon32_ghost_disabled.dat -share/blender/datafiles/blender_icons32/icon32_ghost_enabled.dat -share/blender/datafiles/blender_icons32/icon32_gizmo.dat -share/blender/datafiles/blender_icons32/icon32_gp_caps_flat.dat -share/blender/datafiles/blender_icons32/icon32_gp_caps_round.dat -share/blender/datafiles/blender_icons32/icon32_gp_multiframe_editing.dat -share/blender/datafiles/blender_icons32/icon32_gp_only_selected.dat -share/blender/datafiles/blender_icons32/icon32_gp_select_between_strokes.dat -share/blender/datafiles/blender_icons32/icon32_gp_select_points.dat -share/blender/datafiles/blender_icons32/icon32_gp_select_strokes.dat -share/blender/datafiles/blender_icons32/icon32_graph.dat -share/blender/datafiles/blender_icons32/icon32_greasepencil.dat -share/blender/datafiles/blender_icons32/icon32_grid.dat -share/blender/datafiles/blender_icons32/icon32_grip.dat -share/blender/datafiles/blender_icons32/icon32_group.dat -share/blender/datafiles/blender_icons32/icon32_group_bone.dat -share/blender/datafiles/blender_icons32/icon32_group_uvs.dat -share/blender/datafiles/blender_icons32/icon32_group_vcol.dat -share/blender/datafiles/blender_icons32/icon32_group_vertex.dat -share/blender/datafiles/blender_icons32/icon32_hand.dat -share/blender/datafiles/blender_icons32/icon32_handle_aligned.dat -share/blender/datafiles/blender_icons32/icon32_handle_auto.dat -share/blender/datafiles/blender_icons32/icon32_handle_autoclamped.dat -share/blender/datafiles/blender_icons32/icon32_handle_free.dat -share/blender/datafiles/blender_icons32/icon32_handle_vector.dat -share/blender/datafiles/blender_icons32/icon32_heart.dat -share/blender/datafiles/blender_icons32/icon32_help.dat -share/blender/datafiles/blender_icons32/icon32_hide_off.dat -share/blender/datafiles/blender_icons32/icon32_hide_on.dat -share/blender/datafiles/blender_icons32/icon32_holdout_off.dat -share/blender/datafiles/blender_icons32/icon32_holdout_on.dat -share/blender/datafiles/blender_icons32/icon32_home.dat -share/blender/datafiles/blender_icons32/icon32_hook.dat -share/blender/datafiles/blender_icons32/icon32_image.dat -share/blender/datafiles/blender_icons32/icon32_image_alpha.dat -share/blender/datafiles/blender_icons32/icon32_image_background.dat -share/blender/datafiles/blender_icons32/icon32_image_data.dat -share/blender/datafiles/blender_icons32/icon32_image_plane.dat -share/blender/datafiles/blender_icons32/icon32_image_reference.dat -share/blender/datafiles/blender_icons32/icon32_image_rgb.dat -share/blender/datafiles/blender_icons32/icon32_image_rgb_alpha.dat -share/blender/datafiles/blender_icons32/icon32_image_zdepth.dat -share/blender/datafiles/blender_icons32/icon32_imgdisplay.dat -share/blender/datafiles/blender_icons32/icon32_import.dat -share/blender/datafiles/blender_icons32/icon32_indirect_only_off.dat -share/blender/datafiles/blender_icons32/icon32_indirect_only_on.dat -share/blender/datafiles/blender_icons32/icon32_info.dat -share/blender/datafiles/blender_icons32/icon32_inversesquarecurve.dat -share/blender/datafiles/blender_icons32/icon32_ipo_back.dat -share/blender/datafiles/blender_icons32/icon32_ipo_bezier.dat -share/blender/datafiles/blender_icons32/icon32_ipo_bounce.dat -share/blender/datafiles/blender_icons32/icon32_ipo_circ.dat -share/blender/datafiles/blender_icons32/icon32_ipo_constant.dat -share/blender/datafiles/blender_icons32/icon32_ipo_cubic.dat -share/blender/datafiles/blender_icons32/icon32_ipo_ease_in.dat -share/blender/datafiles/blender_icons32/icon32_ipo_ease_in_out.dat -share/blender/datafiles/blender_icons32/icon32_ipo_ease_out.dat -share/blender/datafiles/blender_icons32/icon32_ipo_elastic.dat -share/blender/datafiles/blender_icons32/icon32_ipo_expo.dat -share/blender/datafiles/blender_icons32/icon32_ipo_linear.dat -share/blender/datafiles/blender_icons32/icon32_ipo_quad.dat -share/blender/datafiles/blender_icons32/icon32_ipo_quart.dat -share/blender/datafiles/blender_icons32/icon32_ipo_quint.dat -share/blender/datafiles/blender_icons32/icon32_ipo_sine.dat -share/blender/datafiles/blender_icons32/icon32_italic.dat -share/blender/datafiles/blender_icons32/icon32_key_dehlt.dat -share/blender/datafiles/blender_icons32/icon32_key_hlt.dat -share/blender/datafiles/blender_icons32/icon32_keyframe.dat -share/blender/datafiles/blender_icons32/icon32_keyframe_hlt.dat -share/blender/datafiles/blender_icons32/icon32_keyingset.dat -share/blender/datafiles/blender_icons32/icon32_lattice_data.dat -share/blender/datafiles/blender_icons32/icon32_layer_active.dat -share/blender/datafiles/blender_icons32/icon32_layer_used.dat -share/blender/datafiles/blender_icons32/icon32_library_data_broken.dat -share/blender/datafiles/blender_icons32/icon32_library_data_direct.dat -share/blender/datafiles/blender_icons32/icon32_library_data_override.dat -share/blender/datafiles/blender_icons32/icon32_light.dat -share/blender/datafiles/blender_icons32/icon32_light_area.dat -share/blender/datafiles/blender_icons32/icon32_light_data.dat -share/blender/datafiles/blender_icons32/icon32_light_hemi.dat -share/blender/datafiles/blender_icons32/icon32_light_point.dat -share/blender/datafiles/blender_icons32/icon32_light_spot.dat -share/blender/datafiles/blender_icons32/icon32_light_sun.dat -share/blender/datafiles/blender_icons32/icon32_lightprobe_cubemap.dat -share/blender/datafiles/blender_icons32/icon32_lightprobe_grid.dat -share/blender/datafiles/blender_icons32/icon32_lightprobe_planar.dat -share/blender/datafiles/blender_icons32/icon32_lincurve.dat -share/blender/datafiles/blender_icons32/icon32_line_data.dat -share/blender/datafiles/blender_icons32/icon32_linenumbers_off.dat -share/blender/datafiles/blender_icons32/icon32_linenumbers_on.dat -share/blender/datafiles/blender_icons32/icon32_link_blend.dat -share/blender/datafiles/blender_icons32/icon32_linked.dat -share/blender/datafiles/blender_icons32/icon32_locked.dat -share/blender/datafiles/blender_icons32/icon32_lockview_off.dat -share/blender/datafiles/blender_icons32/icon32_lockview_on.dat -share/blender/datafiles/blender_icons32/icon32_longdisplay.dat -share/blender/datafiles/blender_icons32/icon32_loop_back.dat -share/blender/datafiles/blender_icons32/icon32_loop_forwards.dat -share/blender/datafiles/blender_icons32/icon32_marker.dat -share/blender/datafiles/blender_icons32/icon32_marker_hlt.dat -share/blender/datafiles/blender_icons32/icon32_mat_sphere_sky.dat -share/blender/datafiles/blender_icons32/icon32_matcloth.dat -share/blender/datafiles/blender_icons32/icon32_matcube.dat -share/blender/datafiles/blender_icons32/icon32_material.dat -share/blender/datafiles/blender_icons32/icon32_material_data.dat -share/blender/datafiles/blender_icons32/icon32_matfluid.dat -share/blender/datafiles/blender_icons32/icon32_matplane.dat -share/blender/datafiles/blender_icons32/icon32_matshaderball.dat -share/blender/datafiles/blender_icons32/icon32_matsphere.dat -share/blender/datafiles/blender_icons32/icon32_memory.dat -share/blender/datafiles/blender_icons32/icon32_menu_panel.dat -share/blender/datafiles/blender_icons32/icon32_mesh_capsule.dat -share/blender/datafiles/blender_icons32/icon32_mesh_circle.dat -share/blender/datafiles/blender_icons32/icon32_mesh_cone.dat -share/blender/datafiles/blender_icons32/icon32_mesh_cube.dat -share/blender/datafiles/blender_icons32/icon32_mesh_cylinder.dat -share/blender/datafiles/blender_icons32/icon32_mesh_data.dat -share/blender/datafiles/blender_icons32/icon32_mesh_grid.dat -share/blender/datafiles/blender_icons32/icon32_mesh_icosphere.dat -share/blender/datafiles/blender_icons32/icon32_mesh_monkey.dat -share/blender/datafiles/blender_icons32/icon32_mesh_plane.dat -share/blender/datafiles/blender_icons32/icon32_mesh_torus.dat -share/blender/datafiles/blender_icons32/icon32_mesh_uvsphere.dat -share/blender/datafiles/blender_icons32/icon32_meta_ball.dat -share/blender/datafiles/blender_icons32/icon32_meta_capsule.dat -share/blender/datafiles/blender_icons32/icon32_meta_cube.dat -share/blender/datafiles/blender_icons32/icon32_meta_data.dat -share/blender/datafiles/blender_icons32/icon32_meta_ellipsoid.dat -share/blender/datafiles/blender_icons32/icon32_meta_plane.dat -share/blender/datafiles/blender_icons32/icon32_mod_armature.dat -share/blender/datafiles/blender_icons32/icon32_mod_array.dat -share/blender/datafiles/blender_icons32/icon32_mod_bevel.dat -share/blender/datafiles/blender_icons32/icon32_mod_boolean.dat -share/blender/datafiles/blender_icons32/icon32_mod_build.dat -share/blender/datafiles/blender_icons32/icon32_mod_cast.dat -share/blender/datafiles/blender_icons32/icon32_mod_cloth.dat -share/blender/datafiles/blender_icons32/icon32_mod_curve.dat -share/blender/datafiles/blender_icons32/icon32_mod_dash.dat -share/blender/datafiles/blender_icons32/icon32_mod_data_transfer.dat -share/blender/datafiles/blender_icons32/icon32_mod_decim.dat -share/blender/datafiles/blender_icons32/icon32_mod_displace.dat -share/blender/datafiles/blender_icons32/icon32_mod_dynamicpaint.dat -share/blender/datafiles/blender_icons32/icon32_mod_edgesplit.dat -share/blender/datafiles/blender_icons32/icon32_mod_explode.dat -share/blender/datafiles/blender_icons32/icon32_mod_fluid.dat -share/blender/datafiles/blender_icons32/icon32_mod_fluidsim.dat -share/blender/datafiles/blender_icons32/icon32_mod_hue_saturation.dat -share/blender/datafiles/blender_icons32/icon32_mod_instance.dat -share/blender/datafiles/blender_icons32/icon32_mod_lattice.dat -share/blender/datafiles/blender_icons32/icon32_mod_length.dat -share/blender/datafiles/blender_icons32/icon32_mod_lineart.dat -share/blender/datafiles/blender_icons32/icon32_mod_mask.dat -share/blender/datafiles/blender_icons32/icon32_mod_meshdeform.dat -share/blender/datafiles/blender_icons32/icon32_mod_mirror.dat -share/blender/datafiles/blender_icons32/icon32_mod_multires.dat -share/blender/datafiles/blender_icons32/icon32_mod_noise.dat -share/blender/datafiles/blender_icons32/icon32_mod_normaledit.dat -share/blender/datafiles/blender_icons32/icon32_mod_ocean.dat -share/blender/datafiles/blender_icons32/icon32_mod_offset.dat -share/blender/datafiles/blender_icons32/icon32_mod_opacity.dat -share/blender/datafiles/blender_icons32/icon32_mod_particle_instance.dat -share/blender/datafiles/blender_icons32/icon32_mod_particles.dat -share/blender/datafiles/blender_icons32/icon32_mod_physics.dat -share/blender/datafiles/blender_icons32/icon32_mod_remesh.dat -share/blender/datafiles/blender_icons32/icon32_mod_screw.dat -share/blender/datafiles/blender_icons32/icon32_mod_shrinkwrap.dat -share/blender/datafiles/blender_icons32/icon32_mod_simpledeform.dat -share/blender/datafiles/blender_icons32/icon32_mod_simplify.dat -share/blender/datafiles/blender_icons32/icon32_mod_skin.dat -share/blender/datafiles/blender_icons32/icon32_mod_smooth.dat -share/blender/datafiles/blender_icons32/icon32_mod_soft.dat -share/blender/datafiles/blender_icons32/icon32_mod_solidify.dat -share/blender/datafiles/blender_icons32/icon32_mod_subsurf.dat -share/blender/datafiles/blender_icons32/icon32_mod_thickness.dat -share/blender/datafiles/blender_icons32/icon32_mod_time.dat -share/blender/datafiles/blender_icons32/icon32_mod_tint.dat -share/blender/datafiles/blender_icons32/icon32_mod_triangulate.dat -share/blender/datafiles/blender_icons32/icon32_mod_uvproject.dat -share/blender/datafiles/blender_icons32/icon32_mod_vertex_weight.dat -share/blender/datafiles/blender_icons32/icon32_mod_warp.dat -share/blender/datafiles/blender_icons32/icon32_mod_wave.dat -share/blender/datafiles/blender_icons32/icon32_mod_wireframe.dat -share/blender/datafiles/blender_icons32/icon32_modifier.dat -share/blender/datafiles/blender_icons32/icon32_modifier_data.dat -share/blender/datafiles/blender_icons32/icon32_modifier_off.dat -share/blender/datafiles/blender_icons32/icon32_modifier_on.dat -share/blender/datafiles/blender_icons32/icon32_monkey.dat -share/blender/datafiles/blender_icons32/icon32_mouse_lmb.dat -share/blender/datafiles/blender_icons32/icon32_mouse_lmb_drag.dat -share/blender/datafiles/blender_icons32/icon32_mouse_mmb.dat -share/blender/datafiles/blender_icons32/icon32_mouse_mmb_drag.dat -share/blender/datafiles/blender_icons32/icon32_mouse_move.dat -share/blender/datafiles/blender_icons32/icon32_mouse_rmb.dat -share/blender/datafiles/blender_icons32/icon32_mouse_rmb_drag.dat -share/blender/datafiles/blender_icons32/icon32_mute_ipo_off.dat -share/blender/datafiles/blender_icons32/icon32_mute_ipo_on.dat -share/blender/datafiles/blender_icons32/icon32_network_drive.dat -share/blender/datafiles/blender_icons32/icon32_newfolder.dat -share/blender/datafiles/blender_icons32/icon32_next_keyframe.dat -share/blender/datafiles/blender_icons32/icon32_nla.dat -share/blender/datafiles/blender_icons32/icon32_nla_pushdown.dat -share/blender/datafiles/blender_icons32/icon32_nocurve.dat -share/blender/datafiles/blender_icons32/icon32_node.dat -share/blender/datafiles/blender_icons32/icon32_node_compositing.dat -share/blender/datafiles/blender_icons32/icon32_node_corner.dat -share/blender/datafiles/blender_icons32/icon32_node_insert_off.dat -share/blender/datafiles/blender_icons32/icon32_node_insert_on.dat -share/blender/datafiles/blender_icons32/icon32_node_material.dat -share/blender/datafiles/blender_icons32/icon32_node_sel.dat -share/blender/datafiles/blender_icons32/icon32_node_side.dat -share/blender/datafiles/blender_icons32/icon32_node_texture.dat -share/blender/datafiles/blender_icons32/icon32_node_top.dat -share/blender/datafiles/blender_icons32/icon32_nodetree.dat -share/blender/datafiles/blender_icons32/icon32_normalize_fcurves.dat -share/blender/datafiles/blender_icons32/icon32_normals_face.dat -share/blender/datafiles/blender_icons32/icon32_normals_vertex.dat -share/blender/datafiles/blender_icons32/icon32_normals_vertex_face.dat -share/blender/datafiles/blender_icons32/icon32_object_data.dat -share/blender/datafiles/blender_icons32/icon32_object_datamode.dat -share/blender/datafiles/blender_icons32/icon32_object_hidden.dat -share/blender/datafiles/blender_icons32/icon32_object_origin.dat -share/blender/datafiles/blender_icons32/icon32_onionskin_off.dat -share/blender/datafiles/blender_icons32/icon32_onionskin_on.dat -share/blender/datafiles/blender_icons32/icon32_options.dat -share/blender/datafiles/blender_icons32/icon32_orientation_cursor.dat -share/blender/datafiles/blender_icons32/icon32_orientation_gimbal.dat -share/blender/datafiles/blender_icons32/icon32_orientation_global.dat -share/blender/datafiles/blender_icons32/icon32_orientation_local.dat -share/blender/datafiles/blender_icons32/icon32_orientation_normal.dat -share/blender/datafiles/blender_icons32/icon32_orientation_view.dat -share/blender/datafiles/blender_icons32/icon32_orphan_data.dat -share/blender/datafiles/blender_icons32/icon32_outliner.dat -share/blender/datafiles/blender_icons32/icon32_outliner_collection.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_armature.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_camera.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_curve.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_curves.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_empty.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_font.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_gp_layer.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_greasepencil.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_lattice.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_light.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_lightprobe.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_mesh.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_meta.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_pointcloud.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_speaker.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_surface.dat -share/blender/datafiles/blender_icons32/icon32_outliner_data_volume.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_armature.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_camera.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_curve.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_curves.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_empty.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_font.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_force_field.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_greasepencil.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_group_instance.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_image.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_lattice.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_light.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_lightprobe.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_mesh.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_meta.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_pointcloud.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_speaker.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_surface.dat -share/blender/datafiles/blender_icons32/icon32_outliner_ob_volume.dat -share/blender/datafiles/blender_icons32/icon32_output.dat -share/blender/datafiles/blender_icons32/icon32_overlay.dat -share/blender/datafiles/blender_icons32/icon32_package.dat -share/blender/datafiles/blender_icons32/icon32_panel_close.dat -share/blender/datafiles/blender_icons32/icon32_particle_data.dat -share/blender/datafiles/blender_icons32/icon32_particle_path.dat -share/blender/datafiles/blender_icons32/icon32_particle_point.dat -share/blender/datafiles/blender_icons32/icon32_particle_tip.dat -share/blender/datafiles/blender_icons32/icon32_particlemode.dat -share/blender/datafiles/blender_icons32/icon32_particles.dat -share/blender/datafiles/blender_icons32/icon32_pastedown.dat -share/blender/datafiles/blender_icons32/icon32_pasteflipdown.dat -share/blender/datafiles/blender_icons32/icon32_pasteflipup.dat -share/blender/datafiles/blender_icons32/icon32_pause.dat -share/blender/datafiles/blender_icons32/icon32_physics.dat -share/blender/datafiles/blender_icons32/icon32_pinned.dat -share/blender/datafiles/blender_icons32/icon32_pivot_active.dat -share/blender/datafiles/blender_icons32/icon32_pivot_boundbox.dat -share/blender/datafiles/blender_icons32/icon32_pivot_cursor.dat -share/blender/datafiles/blender_icons32/icon32_pivot_individual.dat -share/blender/datafiles/blender_icons32/icon32_pivot_median.dat -share/blender/datafiles/blender_icons32/icon32_play.dat -share/blender/datafiles/blender_icons32/icon32_play_reverse.dat -share/blender/datafiles/blender_icons32/icon32_play_sound.dat -share/blender/datafiles/blender_icons32/icon32_plugin.dat -share/blender/datafiles/blender_icons32/icon32_plus.dat -share/blender/datafiles/blender_icons32/icon32_pmarker.dat -share/blender/datafiles/blender_icons32/icon32_pmarker_act.dat -share/blender/datafiles/blender_icons32/icon32_pmarker_sel.dat -share/blender/datafiles/blender_icons32/icon32_pointcloud_data.dat -share/blender/datafiles/blender_icons32/icon32_pose_hlt.dat -share/blender/datafiles/blender_icons32/icon32_preferences.dat -share/blender/datafiles/blender_icons32/icon32_preset.dat -share/blender/datafiles/blender_icons32/icon32_preset_new.dat -share/blender/datafiles/blender_icons32/icon32_prev_keyframe.dat -share/blender/datafiles/blender_icons32/icon32_preview_range.dat -share/blender/datafiles/blender_icons32/icon32_prop_con.dat -share/blender/datafiles/blender_icons32/icon32_prop_off.dat -share/blender/datafiles/blender_icons32/icon32_prop_on.dat -share/blender/datafiles/blender_icons32/icon32_prop_projected.dat -share/blender/datafiles/blender_icons32/icon32_properties.dat -share/blender/datafiles/blender_icons32/icon32_question.dat -share/blender/datafiles/blender_icons32/icon32_quit.dat -share/blender/datafiles/blender_icons32/icon32_radiobut_off.dat -share/blender/datafiles/blender_icons32/icon32_radiobut_on.dat -share/blender/datafiles/blender_icons32/icon32_rec.dat -share/blender/datafiles/blender_icons32/icon32_recover_last.dat -share/blender/datafiles/blender_icons32/icon32_remove.dat -share/blender/datafiles/blender_icons32/icon32_render_animation.dat -share/blender/datafiles/blender_icons32/icon32_render_result.dat -share/blender/datafiles/blender_icons32/icon32_render_still.dat -share/blender/datafiles/blender_icons32/icon32_renderlayers.dat -share/blender/datafiles/blender_icons32/icon32_restrict_color_off.dat -share/blender/datafiles/blender_icons32/icon32_restrict_color_on.dat -share/blender/datafiles/blender_icons32/icon32_restrict_instanced_off.dat -share/blender/datafiles/blender_icons32/icon32_restrict_instanced_on.dat -share/blender/datafiles/blender_icons32/icon32_restrict_render_off.dat -share/blender/datafiles/blender_icons32/icon32_restrict_render_on.dat -share/blender/datafiles/blender_icons32/icon32_restrict_select_off.dat -share/blender/datafiles/blender_icons32/icon32_restrict_select_on.dat -share/blender/datafiles/blender_icons32/icon32_restrict_view_off.dat -share/blender/datafiles/blender_icons32/icon32_restrict_view_on.dat -share/blender/datafiles/blender_icons32/icon32_rew.dat -share/blender/datafiles/blender_icons32/icon32_rightarrow.dat -share/blender/datafiles/blender_icons32/icon32_rightarrow_thin.dat -share/blender/datafiles/blender_icons32/icon32_rigid_body.dat -share/blender/datafiles/blender_icons32/icon32_rigid_body_constraint.dat -share/blender/datafiles/blender_icons32/icon32_rna.dat -share/blender/datafiles/blender_icons32/icon32_rna_add.dat -share/blender/datafiles/blender_icons32/icon32_rndcurve.dat -share/blender/datafiles/blender_icons32/icon32_rootcurve.dat -share/blender/datafiles/blender_icons32/icon32_scene.dat -share/blender/datafiles/blender_icons32/icon32_scene_data.dat -share/blender/datafiles/blender_icons32/icon32_screen_back.dat -share/blender/datafiles/blender_icons32/icon32_script.dat -share/blender/datafiles/blender_icons32/icon32_scriptplugins.dat -share/blender/datafiles/blender_icons32/icon32_sculptmode_hlt.dat -share/blender/datafiles/blender_icons32/icon32_select_difference.dat -share/blender/datafiles/blender_icons32/icon32_select_extend.dat -share/blender/datafiles/blender_icons32/icon32_select_intersect.dat -share/blender/datafiles/blender_icons32/icon32_select_set.dat -share/blender/datafiles/blender_icons32/icon32_select_subtract.dat -share/blender/datafiles/blender_icons32/icon32_seq_chroma_scope.dat -share/blender/datafiles/blender_icons32/icon32_seq_histogram.dat -share/blender/datafiles/blender_icons32/icon32_seq_luma_waveform.dat -share/blender/datafiles/blender_icons32/icon32_seq_preview.dat -share/blender/datafiles/blender_icons32/icon32_seq_sequencer.dat -share/blender/datafiles/blender_icons32/icon32_seq_splitview.dat -share/blender/datafiles/blender_icons32/icon32_seq_strip_duplicate.dat -share/blender/datafiles/blender_icons32/icon32_seq_strip_meta.dat -share/blender/datafiles/blender_icons32/icon32_sequence.dat -share/blender/datafiles/blender_icons32/icon32_settings.dat -share/blender/datafiles/blender_icons32/icon32_shaderfx.dat -share/blender/datafiles/blender_icons32/icon32_shading_bbox.dat -share/blender/datafiles/blender_icons32/icon32_shading_rendered.dat -share/blender/datafiles/blender_icons32/icon32_shading_solid.dat -share/blender/datafiles/blender_icons32/icon32_shading_texture.dat -share/blender/datafiles/blender_icons32/icon32_shading_wire.dat -share/blender/datafiles/blender_icons32/icon32_shapekey_data.dat -share/blender/datafiles/blender_icons32/icon32_sharpcurve.dat -share/blender/datafiles/blender_icons32/icon32_shortdisplay.dat -share/blender/datafiles/blender_icons32/icon32_small_caps.dat -share/blender/datafiles/blender_icons32/icon32_smoothcurve.dat -share/blender/datafiles/blender_icons32/icon32_snap_edge.dat -share/blender/datafiles/blender_icons32/icon32_snap_face.dat -share/blender/datafiles/blender_icons32/icon32_snap_face_center.dat -share/blender/datafiles/blender_icons32/icon32_snap_face_nearest.dat -share/blender/datafiles/blender_icons32/icon32_snap_grid.dat -share/blender/datafiles/blender_icons32/icon32_snap_increment.dat -share/blender/datafiles/blender_icons32/icon32_snap_midpoint.dat -share/blender/datafiles/blender_icons32/icon32_snap_normal.dat -share/blender/datafiles/blender_icons32/icon32_snap_off.dat -share/blender/datafiles/blender_icons32/icon32_snap_on.dat -share/blender/datafiles/blender_icons32/icon32_snap_peel_object.dat -share/blender/datafiles/blender_icons32/icon32_snap_perpendicular.dat -share/blender/datafiles/blender_icons32/icon32_snap_vertex.dat -share/blender/datafiles/blender_icons32/icon32_snap_volume.dat -share/blender/datafiles/blender_icons32/icon32_solo_off.dat -share/blender/datafiles/blender_icons32/icon32_solo_on.dat -share/blender/datafiles/blender_icons32/icon32_sort_asc.dat -share/blender/datafiles/blender_icons32/icon32_sort_desc.dat -share/blender/datafiles/blender_icons32/icon32_sortalpha.dat -share/blender/datafiles/blender_icons32/icon32_sortbyext.dat -share/blender/datafiles/blender_icons32/icon32_sortsize.dat -share/blender/datafiles/blender_icons32/icon32_sorttime.dat -share/blender/datafiles/blender_icons32/icon32_sound.dat -share/blender/datafiles/blender_icons32/icon32_speaker.dat -share/blender/datafiles/blender_icons32/icon32_sphere.dat -share/blender/datafiles/blender_icons32/icon32_spherecurve.dat -share/blender/datafiles/blender_icons32/icon32_spreadsheet.dat -share/blender/datafiles/blender_icons32/icon32_statusbar.dat -share/blender/datafiles/blender_icons32/icon32_sticky_uvs_disable.dat -share/blender/datafiles/blender_icons32/icon32_sticky_uvs_loc.dat -share/blender/datafiles/blender_icons32/icon32_sticky_uvs_vert.dat -share/blender/datafiles/blender_icons32/icon32_strands.dat -share/blender/datafiles/blender_icons32/icon32_stroke.dat -share/blender/datafiles/blender_icons32/icon32_stylus_pressure.dat -share/blender/datafiles/blender_icons32/icon32_surface_data.dat -share/blender/datafiles/blender_icons32/icon32_surface_ncircle.dat -share/blender/datafiles/blender_icons32/icon32_surface_ncurve.dat -share/blender/datafiles/blender_icons32/icon32_surface_ncylinder.dat -share/blender/datafiles/blender_icons32/icon32_surface_nsphere.dat -share/blender/datafiles/blender_icons32/icon32_surface_nsurface.dat -share/blender/datafiles/blender_icons32/icon32_surface_ntorus.dat -share/blender/datafiles/blender_icons32/icon32_syntax_off.dat -share/blender/datafiles/blender_icons32/icon32_syntax_on.dat -share/blender/datafiles/blender_icons32/icon32_system.dat -share/blender/datafiles/blender_icons32/icon32_temp.dat -share/blender/datafiles/blender_icons32/icon32_text.dat -share/blender/datafiles/blender_icons32/icon32_texture.dat -share/blender/datafiles/blender_icons32/icon32_texture_data.dat -share/blender/datafiles/blender_icons32/icon32_three_dots.dat -share/blender/datafiles/blender_icons32/icon32_time.dat -share/blender/datafiles/blender_icons32/icon32_tool_settings.dat -share/blender/datafiles/blender_icons32/icon32_topbar.dat -share/blender/datafiles/blender_icons32/icon32_tpaint_hlt.dat -share/blender/datafiles/blender_icons32/icon32_tracker.dat -share/blender/datafiles/blender_icons32/icon32_tracker_data.dat -share/blender/datafiles/blender_icons32/icon32_tracking.dat -share/blender/datafiles/blender_icons32/icon32_tracking_backwards.dat -share/blender/datafiles/blender_icons32/icon32_tracking_backwards_single.dat -share/blender/datafiles/blender_icons32/icon32_tracking_clear_backwards.dat -share/blender/datafiles/blender_icons32/icon32_tracking_clear_forwards.dat -share/blender/datafiles/blender_icons32/icon32_tracking_forwards.dat -share/blender/datafiles/blender_icons32/icon32_tracking_forwards_single.dat -share/blender/datafiles/blender_icons32/icon32_tracking_refine_backwards.dat -share/blender/datafiles/blender_icons32/icon32_tracking_refine_forwards.dat -share/blender/datafiles/blender_icons32/icon32_transform_origins.dat -share/blender/datafiles/blender_icons32/icon32_trash.dat -share/blender/datafiles/blender_icons32/icon32_tria_down.dat -share/blender/datafiles/blender_icons32/icon32_tria_down_bar.dat -share/blender/datafiles/blender_icons32/icon32_tria_left.dat -share/blender/datafiles/blender_icons32/icon32_tria_left_bar.dat -share/blender/datafiles/blender_icons32/icon32_tria_right.dat -share/blender/datafiles/blender_icons32/icon32_tria_right_bar.dat -share/blender/datafiles/blender_icons32/icon32_tria_up.dat -share/blender/datafiles/blender_icons32/icon32_tria_up_bar.dat -share/blender/datafiles/blender_icons32/icon32_uglypackage.dat -share/blender/datafiles/blender_icons32/icon32_underline.dat -share/blender/datafiles/blender_icons32/icon32_unlinked.dat -share/blender/datafiles/blender_icons32/icon32_unlocked.dat -share/blender/datafiles/blender_icons32/icon32_unpinned.dat -share/blender/datafiles/blender_icons32/icon32_url.dat -share/blender/datafiles/blender_icons32/icon32_user.dat -share/blender/datafiles/blender_icons32/icon32_uv.dat -share/blender/datafiles/blender_icons32/icon32_uv_data.dat -share/blender/datafiles/blender_icons32/icon32_uv_edgesel.dat -share/blender/datafiles/blender_icons32/icon32_uv_facesel.dat -share/blender/datafiles/blender_icons32/icon32_uv_islandsel.dat -share/blender/datafiles/blender_icons32/icon32_uv_sync_select.dat -share/blender/datafiles/blender_icons32/icon32_uv_vertexsel.dat -share/blender/datafiles/blender_icons32/icon32_vertexsel.dat -share/blender/datafiles/blender_icons32/icon32_view3d.dat -share/blender/datafiles/blender_icons32/icon32_view_camera.dat -share/blender/datafiles/blender_icons32/icon32_view_ortho.dat -share/blender/datafiles/blender_icons32/icon32_view_pan.dat -share/blender/datafiles/blender_icons32/icon32_view_perspective.dat -share/blender/datafiles/blender_icons32/icon32_view_zoom.dat -share/blender/datafiles/blender_icons32/icon32_viewzoom.dat -share/blender/datafiles/blender_icons32/icon32_vis_sel_00.dat -share/blender/datafiles/blender_icons32/icon32_vis_sel_01.dat -share/blender/datafiles/blender_icons32/icon32_vis_sel_10.dat -share/blender/datafiles/blender_icons32/icon32_vis_sel_11.dat -share/blender/datafiles/blender_icons32/icon32_volume_data.dat -share/blender/datafiles/blender_icons32/icon32_vpaint_hlt.dat -share/blender/datafiles/blender_icons32/icon32_window.dat -share/blender/datafiles/blender_icons32/icon32_wordwrap_off.dat -share/blender/datafiles/blender_icons32/icon32_wordwrap_on.dat -share/blender/datafiles/blender_icons32/icon32_workspace.dat -share/blender/datafiles/blender_icons32/icon32_world.dat -share/blender/datafiles/blender_icons32/icon32_world_data.dat -share/blender/datafiles/blender_icons32/icon32_wpaint_hlt.dat -share/blender/datafiles/blender_icons32/icon32_x.dat -share/blender/datafiles/blender_icons32/icon32_xray.dat -share/blender/datafiles/blender_icons32/icon32_zoom_all.dat -share/blender/datafiles/blender_icons32/icon32_zoom_in.dat -share/blender/datafiles/blender_icons32/icon32_zoom_out.dat -share/blender/datafiles/blender_icons32/icon32_zoom_previous.dat -share/blender/datafiles/blender_icons32/icon32_zoom_selected.dat -share/blender/datafiles/blender_icons_geom.py -share/blender/datafiles/blender_icons_geom_update.py -share/blender/datafiles/blender_icons_update.py -share/blender/datafiles/blender_logo.png -share/blender/datafiles/brushicons/ -share/blender/datafiles/brushicons/blob.png -share/blender/datafiles/brushicons/blur.png -share/blender/datafiles/brushicons/clay.png -share/blender/datafiles/brushicons/claystrips.png -share/blender/datafiles/brushicons/clone.png -share/blender/datafiles/brushicons/crease.png -share/blender/datafiles/brushicons/curves_sculpt_add.png -share/blender/datafiles/brushicons/curves_sculpt_comb.png -share/blender/datafiles/brushicons/curves_sculpt_cut.png -share/blender/datafiles/brushicons/curves_sculpt_delete.png -share/blender/datafiles/brushicons/curves_sculpt_density.png -share/blender/datafiles/brushicons/curves_sculpt_grow_shrink.png -share/blender/datafiles/brushicons/curves_sculpt_pinch.png -share/blender/datafiles/brushicons/curves_sculpt_puff.png -share/blender/datafiles/brushicons/curves_sculpt_slide.png -share/blender/datafiles/brushicons/curves_sculpt_smooth.png -share/blender/datafiles/brushicons/curves_sculpt_snake_hook.png -share/blender/datafiles/brushicons/draw.png -share/blender/datafiles/brushicons/fill.png -share/blender/datafiles/brushicons/flatten.png -share/blender/datafiles/brushicons/gp_brush_airbrush.png -share/blender/datafiles/brushicons/gp_brush_block.png -share/blender/datafiles/brushicons/gp_brush_chisel.png -share/blender/datafiles/brushicons/gp_brush_clone.png -share/blender/datafiles/brushicons/gp_brush_erase_hard.png -share/blender/datafiles/brushicons/gp_brush_erase_soft.png -share/blender/datafiles/brushicons/gp_brush_erase_stroke.png -share/blender/datafiles/brushicons/gp_brush_fill.png -share/blender/datafiles/brushicons/gp_brush_grab.png -share/blender/datafiles/brushicons/gp_brush_ink.png -share/blender/datafiles/brushicons/gp_brush_inknoise.png -share/blender/datafiles/brushicons/gp_brush_marker.png -share/blender/datafiles/brushicons/gp_brush_pen.png -share/blender/datafiles/brushicons/gp_brush_pencil.png -share/blender/datafiles/brushicons/gp_brush_pinch.png -share/blender/datafiles/brushicons/gp_brush_push.png -share/blender/datafiles/brushicons/gp_brush_randomize.png -share/blender/datafiles/brushicons/gp_brush_smooth.png -share/blender/datafiles/brushicons/gp_brush_strength.png -share/blender/datafiles/brushicons/gp_brush_thickness.png -share/blender/datafiles/brushicons/gp_brush_twist.png -share/blender/datafiles/brushicons/gp_brush_weight.png -share/blender/datafiles/brushicons/grab.png -share/blender/datafiles/brushicons/inflate.png -share/blender/datafiles/brushicons/layer.png -share/blender/datafiles/brushicons/mask.png -share/blender/datafiles/brushicons/mix.png -share/blender/datafiles/brushicons/multiply.png -share/blender/datafiles/brushicons/nudge.png -share/blender/datafiles/brushicons/paint_select.png -share/blender/datafiles/brushicons/pinch.png -share/blender/datafiles/brushicons/scrape.png -share/blender/datafiles/brushicons/smear.png -share/blender/datafiles/brushicons/smooth.png -share/blender/datafiles/brushicons/snake_hook.png -share/blender/datafiles/brushicons/soften.png -share/blender/datafiles/brushicons/texdraw.png -share/blender/datafiles/brushicons/texfill.png -share/blender/datafiles/brushicons/texmask.png -share/blender/datafiles/brushicons/thumb.png -share/blender/datafiles/brushicons/twist.png -share/blender/datafiles/colormanagement/ -share/blender/datafiles/colormanagement/config.ocio -share/blender/datafiles/colormanagement/filmic/ -share/blender/datafiles/colormanagement/filmic/filmic_desat65cube.spi3d -share/blender/datafiles/colormanagement/filmic/filmic_false_color.spi3d -share/blender/datafiles/colormanagement/filmic/filmic_to_0-35_1-30.spi1d -share/blender/datafiles/colormanagement/filmic/filmic_to_0-48_1-09.spi1d -share/blender/datafiles/colormanagement/filmic/filmic_to_0-60_1-04.spi1d -share/blender/datafiles/colormanagement/filmic/filmic_to_0-70_1-03.spi1d -share/blender/datafiles/colormanagement/filmic/filmic_to_0-85_1-011.spi1d -share/blender/datafiles/colormanagement/filmic/filmic_to_0.99_1-0075.spi1d -share/blender/datafiles/colormanagement/filmic/filmic_to_1.20_1-00.spi1d -share/blender/datafiles/colormanagement/luts/ -share/blender/datafiles/colormanagement/luts/dci_xyz.spi1d -share/blender/datafiles/colormanagement/luts/lg10.spi1d -share/blender/datafiles/colormanagement/luts/rec709.spi1d -share/blender/datafiles/colormanagement/luts/srgb.spi1d -share/blender/datafiles/colormanagement/luts/srgb_inv.spi1d -share/blender/datafiles/colormanagement/luts/srgb_to_xyz.spimtx -share/blender/datafiles/colormanagement/luts/vd16.spi1d -share/blender/datafiles/colormanagement/luts/xyz_D65_to_E.spimtx -share/blender/datafiles/colormanagement/luts/xyz_to_aces.spimtx -share/blender/datafiles/ctodata.py -share/blender/datafiles/fonts/ -share/blender/datafiles/fonts/bmonofont-i18n.ttf -share/blender/datafiles/fonts/droidsans.ttf -share/blender/datafiles/icons/ -share/blender/datafiles/icons/brush.gpencil_draw.draw.dat -share/blender/datafiles/icons/brush.gpencil_draw.erase.dat -share/blender/datafiles/icons/brush.gpencil_draw.fill.dat -share/blender/datafiles/icons/brush.gpencil_draw.tint.dat -share/blender/datafiles/icons/brush.paint_texture.airbrush.dat -share/blender/datafiles/icons/brush.paint_texture.clone.dat -share/blender/datafiles/icons/brush.paint_texture.draw.dat -share/blender/datafiles/icons/brush.paint_texture.fill.dat -share/blender/datafiles/icons/brush.paint_texture.mask.dat -share/blender/datafiles/icons/brush.paint_texture.masklort.dat -share/blender/datafiles/icons/brush.paint_texture.multiply.dat -share/blender/datafiles/icons/brush.paint_texture.smear.dat -share/blender/datafiles/icons/brush.paint_texture.soften.dat -share/blender/datafiles/icons/brush.paint_vertex.alpha.dat -share/blender/datafiles/icons/brush.paint_vertex.average.dat -share/blender/datafiles/icons/brush.paint_vertex.blur.dat -share/blender/datafiles/icons/brush.paint_vertex.draw.dat -share/blender/datafiles/icons/brush.paint_vertex.replace.dat -share/blender/datafiles/icons/brush.paint_vertex.smear.dat -share/blender/datafiles/icons/brush.paint_weight.average.dat -share/blender/datafiles/icons/brush.paint_weight.blur.dat -share/blender/datafiles/icons/brush.paint_weight.draw.dat -share/blender/datafiles/icons/brush.paint_weight.mix.dat -share/blender/datafiles/icons/brush.paint_weight.smear.dat -share/blender/datafiles/icons/brush.particle.add.dat -share/blender/datafiles/icons/brush.particle.comb.dat -share/blender/datafiles/icons/brush.particle.cut.dat -share/blender/datafiles/icons/brush.particle.length.dat -share/blender/datafiles/icons/brush.particle.puff.dat -share/blender/datafiles/icons/brush.particle.smooth.dat -share/blender/datafiles/icons/brush.particle.weight.dat -share/blender/datafiles/icons/brush.sculpt.blob.dat -share/blender/datafiles/icons/brush.sculpt.boundary.dat -share/blender/datafiles/icons/brush.sculpt.clay.dat -share/blender/datafiles/icons/brush.sculpt.clay_strips.dat -share/blender/datafiles/icons/brush.sculpt.clay_thumb.dat -share/blender/datafiles/icons/brush.sculpt.cloth.dat -share/blender/datafiles/icons/brush.sculpt.crease.dat -share/blender/datafiles/icons/brush.sculpt.displacement_eraser.dat -share/blender/datafiles/icons/brush.sculpt.displacement_smear.dat -share/blender/datafiles/icons/brush.sculpt.draw.dat -share/blender/datafiles/icons/brush.sculpt.draw_face_sets.dat -share/blender/datafiles/icons/brush.sculpt.draw_sharp.dat -share/blender/datafiles/icons/brush.sculpt.elastic_deform.dat -share/blender/datafiles/icons/brush.sculpt.fill.dat -share/blender/datafiles/icons/brush.sculpt.flatten.dat -share/blender/datafiles/icons/brush.sculpt.grab.dat -share/blender/datafiles/icons/brush.sculpt.inflate.dat -share/blender/datafiles/icons/brush.sculpt.layer.dat -share/blender/datafiles/icons/brush.sculpt.mask.dat -share/blender/datafiles/icons/brush.sculpt.multiplane_scrape.dat -share/blender/datafiles/icons/brush.sculpt.nudge.dat -share/blender/datafiles/icons/brush.sculpt.paint.dat -share/blender/datafiles/icons/brush.sculpt.pinch.dat -share/blender/datafiles/icons/brush.sculpt.pose.dat -share/blender/datafiles/icons/brush.sculpt.rotate.dat -share/blender/datafiles/icons/brush.sculpt.scrape.dat -share/blender/datafiles/icons/brush.sculpt.simplify.dat -share/blender/datafiles/icons/brush.sculpt.smear.dat -share/blender/datafiles/icons/brush.sculpt.smooth.dat -share/blender/datafiles/icons/brush.sculpt.snake_hook.dat -share/blender/datafiles/icons/brush.sculpt.thumb.dat -share/blender/datafiles/icons/brush.sculpt.topology.dat -share/blender/datafiles/icons/brush.uv_sculpt.grab.dat -share/blender/datafiles/icons/brush.uv_sculpt.pinch.dat -share/blender/datafiles/icons/brush.uv_sculpt.relax.dat -share/blender/datafiles/icons/none.dat -share/blender/datafiles/icons/ops.armature.bone.roll.dat -share/blender/datafiles/icons/ops.armature.extrude.cursor.dat -share/blender/datafiles/icons/ops.armature.extrude.dat -share/blender/datafiles/icons/ops.armature.extrude_cursor.dat -share/blender/datafiles/icons/ops.armature.extrude_move.dat -share/blender/datafiles/icons/ops.curve.draw.dat -share/blender/datafiles/icons/ops.curve.dupli_extrude_cursor.dat -share/blender/datafiles/icons/ops.curve.extrude_cursor.dat -share/blender/datafiles/icons/ops.curve.extrude_move.dat -share/blender/datafiles/icons/ops.curve.pen.dat -share/blender/datafiles/icons/ops.curve.radius.dat -share/blender/datafiles/icons/ops.curve.vertex_random.dat -share/blender/datafiles/icons/ops.curves.sculpt_add.dat -share/blender/datafiles/icons/ops.curves.sculpt_comb.dat -share/blender/datafiles/icons/ops.curves.sculpt_cut.dat -share/blender/datafiles/icons/ops.curves.sculpt_delete.dat -share/blender/datafiles/icons/ops.curves.sculpt_density.dat -share/blender/datafiles/icons/ops.curves.sculpt_grow_shrink.dat -share/blender/datafiles/icons/ops.curves.sculpt_pinch.dat -share/blender/datafiles/icons/ops.curves.sculpt_puff.dat -share/blender/datafiles/icons/ops.curves.sculpt_slide.dat -share/blender/datafiles/icons/ops.curves.sculpt_smooth.dat -share/blender/datafiles/icons/ops.curves.sculpt_snake_hook.dat -share/blender/datafiles/icons/ops.generic.cursor.dat -share/blender/datafiles/icons/ops.generic.select.dat -share/blender/datafiles/icons/ops.generic.select_box.dat -share/blender/datafiles/icons/ops.generic.select_circle.dat -share/blender/datafiles/icons/ops.generic.select_lasso.dat -share/blender/datafiles/icons/ops.generic.select_paint.dat -share/blender/datafiles/icons/ops.gpencil.draw.dat -share/blender/datafiles/icons/ops.gpencil.draw.eraser.dat -share/blender/datafiles/icons/ops.gpencil.draw.line.dat -share/blender/datafiles/icons/ops.gpencil.draw.poly.dat -share/blender/datafiles/icons/ops.gpencil.edit_bend.dat -share/blender/datafiles/icons/ops.gpencil.edit_mirror.dat -share/blender/datafiles/icons/ops.gpencil.edit_shear.dat -share/blender/datafiles/icons/ops.gpencil.edit_to_sphere.dat -share/blender/datafiles/icons/ops.gpencil.extrude_move.dat -share/blender/datafiles/icons/ops.gpencil.primitive_arc.dat -share/blender/datafiles/icons/ops.gpencil.primitive_box.dat -share/blender/datafiles/icons/ops.gpencil.primitive_circle.dat -share/blender/datafiles/icons/ops.gpencil.primitive_curve.dat -share/blender/datafiles/icons/ops.gpencil.primitive_line.dat -share/blender/datafiles/icons/ops.gpencil.primitive_polyline.dat -share/blender/datafiles/icons/ops.gpencil.radius.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_clone.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_grab.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_pinch.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_push.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_randomize.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_smooth.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_strength.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_thickness.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_twist.dat -share/blender/datafiles/icons/ops.gpencil.sculpt_weight.dat -share/blender/datafiles/icons/ops.gpencil.stroke_cutter.dat -share/blender/datafiles/icons/ops.gpencil.transform_fill.dat -share/blender/datafiles/icons/ops.mesh.bevel.dat -share/blender/datafiles/icons/ops.mesh.bisect.dat -share/blender/datafiles/icons/ops.mesh.dupli_extrude_cursor.dat -share/blender/datafiles/icons/ops.mesh.extrude_faces_move.dat -share/blender/datafiles/icons/ops.mesh.extrude_manifold.dat -share/blender/datafiles/icons/ops.mesh.extrude_region_move.dat -share/blender/datafiles/icons/ops.mesh.extrude_region_shrink_fatten.dat -share/blender/datafiles/icons/ops.mesh.inset.dat -share/blender/datafiles/icons/ops.mesh.knife_tool.dat -share/blender/datafiles/icons/ops.mesh.loopcut_slide.dat -share/blender/datafiles/icons/ops.mesh.offset_edge_loops_slide.dat -share/blender/datafiles/icons/ops.mesh.polybuild_hover.dat -share/blender/datafiles/icons/ops.mesh.primitive_cone_add_gizmo.dat -share/blender/datafiles/icons/ops.mesh.primitive_cube_add_gizmo.dat -share/blender/datafiles/icons/ops.mesh.primitive_cylinder_add_gizmo.dat -share/blender/datafiles/icons/ops.mesh.primitive_grid_add_gizmo.dat -share/blender/datafiles/icons/ops.mesh.primitive_sphere_add_gizmo.dat -share/blender/datafiles/icons/ops.mesh.primitive_torus_add_gizmo.dat -share/blender/datafiles/icons/ops.mesh.rip.dat -share/blender/datafiles/icons/ops.mesh.rip_edge.dat -share/blender/datafiles/icons/ops.mesh.spin.dat -share/blender/datafiles/icons/ops.mesh.spin.duplicate.dat -share/blender/datafiles/icons/ops.mesh.vertices_smooth.dat -share/blender/datafiles/icons/ops.node.links_cut.dat -share/blender/datafiles/icons/ops.paint.eyedropper_add.dat -share/blender/datafiles/icons/ops.paint.vertex_color_fill.dat -share/blender/datafiles/icons/ops.paint.weight_fill.dat -share/blender/datafiles/icons/ops.paint.weight_gradient.dat -share/blender/datafiles/icons/ops.paint.weight_sample.dat -share/blender/datafiles/icons/ops.paint.weight_sample_group.dat -share/blender/datafiles/icons/ops.pose.breakdowner.dat -share/blender/datafiles/icons/ops.pose.push.dat -share/blender/datafiles/icons/ops.pose.relax.dat -share/blender/datafiles/icons/ops.sculpt.border_face_set.dat -share/blender/datafiles/icons/ops.sculpt.border_hide.dat -share/blender/datafiles/icons/ops.sculpt.border_mask.dat -share/blender/datafiles/icons/ops.sculpt.box_trim.dat -share/blender/datafiles/icons/ops.sculpt.cloth_filter.dat -share/blender/datafiles/icons/ops.sculpt.color_filter.dat -share/blender/datafiles/icons/ops.sculpt.face_set_edit.dat -share/blender/datafiles/icons/ops.sculpt.lasso_face_set.dat -share/blender/datafiles/icons/ops.sculpt.lasso_mask.dat -share/blender/datafiles/icons/ops.sculpt.lasso_trim.dat -share/blender/datafiles/icons/ops.sculpt.line_mask.dat -share/blender/datafiles/icons/ops.sculpt.line_project.dat -share/blender/datafiles/icons/ops.sculpt.mask_by_color.dat -share/blender/datafiles/icons/ops.sculpt.mesh_filter.dat -share/blender/datafiles/icons/ops.sequencer.blade.dat -share/blender/datafiles/icons/ops.transform.bone_envelope.dat -share/blender/datafiles/icons/ops.transform.bone_size.dat -share/blender/datafiles/icons/ops.transform.edge_slide.dat -share/blender/datafiles/icons/ops.transform.push_pull.dat -share/blender/datafiles/icons/ops.transform.resize.cage.dat -share/blender/datafiles/icons/ops.transform.resize.dat -share/blender/datafiles/icons/ops.transform.rotate.dat -share/blender/datafiles/icons/ops.transform.shear.dat -share/blender/datafiles/icons/ops.transform.shrink_fatten.dat -share/blender/datafiles/icons/ops.transform.tilt.dat -share/blender/datafiles/icons/ops.transform.tosphere.dat -share/blender/datafiles/icons/ops.transform.transform.dat -share/blender/datafiles/icons/ops.transform.translate.dat -share/blender/datafiles/icons/ops.transform.vert_slide.dat -share/blender/datafiles/icons/ops.transform.vertex_random.dat -share/blender/datafiles/icons/ops.view3d.ruler.dat -share/blender/datafiles/locale/ -share/blender/datafiles/locale/.github/ -share/blender/datafiles/locale/.github/pull_request_template.md -share/blender/datafiles/locale/.github/stale.yml -share/blender/datafiles/locale/languages -share/blender/datafiles/locale/po/ -share/blender/datafiles/locale/po/ab.po -share/blender/datafiles/locale/po/ar.po -share/blender/datafiles/locale/po/ca.po -share/blender/datafiles/locale/po/cs.po -share/blender/datafiles/locale/po/de.po -share/blender/datafiles/locale/po/eo.po -share/blender/datafiles/locale/po/es.po -share/blender/datafiles/locale/po/es_ES.po -share/blender/datafiles/locale/po/eu.po -share/blender/datafiles/locale/po/fa.po -share/blender/datafiles/locale/po/fr.po -share/blender/datafiles/locale/po/ha.po -share/blender/datafiles/locale/po/he.po -share/blender/datafiles/locale/po/hi.po -share/blender/datafiles/locale/po/hr.po -share/blender/datafiles/locale/po/hu.po -share/blender/datafiles/locale/po/id.po -share/blender/datafiles/locale/po/it.po -share/blender/datafiles/locale/po/ja.po -share/blender/datafiles/locale/po/ka.po -share/blender/datafiles/locale/po/ko.po -share/blender/datafiles/locale/po/ky.po -share/blender/datafiles/locale/po/nl.po -share/blender/datafiles/locale/po/pl.po -share/blender/datafiles/locale/po/pt.po -share/blender/datafiles/locale/po/pt_BR.po -share/blender/datafiles/locale/po/ru.po -share/blender/datafiles/locale/po/sk.po -share/blender/datafiles/locale/po/sr.po -share/blender/datafiles/locale/po/sr@latin.po -share/blender/datafiles/locale/po/sv.po -share/blender/datafiles/locale/po/th.po -share/blender/datafiles/locale/po/tr.po -share/blender/datafiles/locale/po/uk.po -share/blender/datafiles/locale/po/vi.po -share/blender/datafiles/locale/po/zh_CN.po -share/blender/datafiles/locale/po/zh_TW.po -share/blender/datafiles/preview.blend -share/blender/datafiles/preview_grease_pencil.blend -share/blender/datafiles/prvicons.png -share/blender/datafiles/prvicons.svg -share/blender/datafiles/prvicons_update.py -share/blender/datafiles/splash.png -share/blender/datafiles/splash_template.xcf -share/blender/datafiles/startup.blend -share/blender/datafiles/studiolights/ -share/blender/datafiles/studiolights/matcap/ -share/blender/datafiles/studiolights/matcap/basic_1.exr -share/blender/datafiles/studiolights/matcap/basic_2.exr -share/blender/datafiles/studiolights/matcap/basic_dark.exr -share/blender/datafiles/studiolights/matcap/basic_side.exr -share/blender/datafiles/studiolights/matcap/ceramic_dark.exr -share/blender/datafiles/studiolights/matcap/ceramic_lightbulb.exr -share/blender/datafiles/studiolights/matcap/check_normal+y.exr -share/blender/datafiles/studiolights/matcap/check_rim_dark.exr -share/blender/datafiles/studiolights/matcap/check_rim_light.exr -share/blender/datafiles/studiolights/matcap/clay_brown.exr -share/blender/datafiles/studiolights/matcap/clay_muddy.exr -share/blender/datafiles/studiolights/matcap/clay_studio.exr -share/blender/datafiles/studiolights/matcap/jade.exr -share/blender/datafiles/studiolights/matcap/license.txt -share/blender/datafiles/studiolights/matcap/metal_anisotropic.exr -share/blender/datafiles/studiolights/matcap/metal_carpaint.exr -share/blender/datafiles/studiolights/matcap/metal_lead.exr -share/blender/datafiles/studiolights/matcap/metal_shiny.exr -share/blender/datafiles/studiolights/matcap/pearl.exr -share/blender/datafiles/studiolights/matcap/reflection_check_horizontal.exr -share/blender/datafiles/studiolights/matcap/reflection_check_vertical.exr -share/blender/datafiles/studiolights/matcap/resin.exr -share/blender/datafiles/studiolights/matcap/skin.exr -share/blender/datafiles/studiolights/matcap/toon.exr -share/blender/datafiles/studiolights/studio/ -share/blender/datafiles/studiolights/studio/basic.sl -share/blender/datafiles/studiolights/studio/outdoor.sl -share/blender/datafiles/studiolights/studio/paint.sl -share/blender/datafiles/studiolights/studio/rim.sl -share/blender/datafiles/studiolights/studio/studio.sl -share/blender/datafiles/studiolights/world/ -share/blender/datafiles/studiolights/world/city.exr -share/blender/datafiles/studiolights/world/courtyard.exr -share/blender/datafiles/studiolights/world/forest.exr -share/blender/datafiles/studiolights/world/interior.exr -share/blender/datafiles/studiolights/world/license.txt -share/blender/datafiles/studiolights/world/night.exr -share/blender/datafiles/studiolights/world/studio.exr -share/blender/datafiles/studiolights/world/sunrise.exr -share/blender/datafiles/studiolights/world/sunset.exr -share/blender/datafiles/userdef/ -share/blender/datafiles/userdef/userdef_default.c -share/blender/datafiles/userdef/userdef_default_theme.c -share/blender/scripts/ -share/blender/scripts/addons/ -share/blender/scripts/addons/.github/ -share/blender/scripts/addons/.github/pull_request_template.md -share/blender/scripts/addons/.github/stale.yml -${MODPY_COMMENT}share/blender/scripts/addons/${MODPY_PYCACHE}/ -share/blender/scripts/addons/${MODPY_PYCACHE}add_curve_ivygen.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}add_curve_ivygen.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}animation_add_corrective_shape_key.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}animation_add_corrective_shape_key.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}bone_selection_sets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}bone_selection_sets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}camera_turnaround.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}camera_turnaround.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}copy_global_transform.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}copy_global_transform.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}curve_assign_shapekey.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}curve_assign_shapekey.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}curve_simplify.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}curve_simplify.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}depsgraph_debug.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}depsgraph_debug.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}development_edit_operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}development_edit_operator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}development_icon_get.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}development_icon_get.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}development_iskeyfree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}development_iskeyfree.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}io_anim_camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}io_anim_camera.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}io_export_paper_model.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}io_export_paper_model.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}io_export_pc2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}io_export_pc2.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}io_import_BrushSet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}io_import_BrushSet.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}io_import_images_as_planes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}io_import_images_as_planes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}lighting_dynamic_sky.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}lighting_dynamic_sky.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}lighting_tri_lights.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}lighting_tri_lights.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_auto_mirror.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_auto_mirror.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_bsurfaces.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_bsurfaces.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_f2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_f2.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_looptools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}mesh_looptools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}node_arrange.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}node_arrange.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}node_presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}node_presets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}node_wrangler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}node_wrangler.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}object_boolean_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}object_boolean_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}object_color_rules.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}object_color_rules.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}object_edit_linked.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}object_edit_linked.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}object_skinify.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}object_skinify.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}paint_palette.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}paint_palette.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}real_snow.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}real_snow.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}render_freestyle_svg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}render_freestyle_svg.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}render_ui_animation_render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}render_ui_animation_render.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}space_clip_editor_refine_solution.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}space_clip_editor_refine_solution.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_3d_navigation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_3d_navigation.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_align_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_align_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_copy_attributes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_copy_attributes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_modifier_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}space_view3d_modifier_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}system_blend_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}system_blend_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/${MODPY_PYCACHE}system_property_chart.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/${MODPY_PYCACHE}system_property_chart.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/ -share/blender/scripts/addons/add_camera_rigs/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}build_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}build_rigs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}composition_guides_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}composition_guides_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}create_widgets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}create_widgets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}prefs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}prefs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}ui_panels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_camera_rigs/${MODPY_PYCACHE}ui_panels.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_camera_rigs/build_rigs.py -share/blender/scripts/addons/add_camera_rigs/composition_guides_menu.py -share/blender/scripts/addons/add_camera_rigs/create_widgets.py -share/blender/scripts/addons/add_camera_rigs/operators.py -share/blender/scripts/addons/add_camera_rigs/prefs.py -share/blender/scripts/addons/add_camera_rigs/ui_panels.py -share/blender/scripts/addons/add_curve_extra_objects/ -share/blender/scripts/addons/add_curve_extra_objects/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_aceous_galore.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_aceous_galore.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_braid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_braid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_celtic_links.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_celtic_links.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_curly.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_curly.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_spirals.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_spirals.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_spirofit_bouncespline.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_spirofit_bouncespline.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_torus_knots.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_curve_torus_knots.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_surface_plane_cone.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}add_surface_plane_cone.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}beveltaper_curve.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_extra_objects/${MODPY_PYCACHE}beveltaper_curve.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_extra_objects/add_curve_aceous_galore.py -share/blender/scripts/addons/add_curve_extra_objects/add_curve_braid.py -share/blender/scripts/addons/add_curve_extra_objects/add_curve_celtic_links.py -share/blender/scripts/addons/add_curve_extra_objects/add_curve_curly.py -share/blender/scripts/addons/add_curve_extra_objects/add_curve_simple.py -share/blender/scripts/addons/add_curve_extra_objects/add_curve_spirals.py -share/blender/scripts/addons/add_curve_extra_objects/add_curve_spirofit_bouncespline.py -share/blender/scripts/addons/add_curve_extra_objects/add_curve_torus_knots.py -share/blender/scripts/addons/add_curve_extra_objects/add_surface_plane_cone.py -share/blender/scripts/addons/add_curve_extra_objects/beveltaper_curve.py -share/blender/scripts/addons/add_curve_ivygen.py -share/blender/scripts/addons/add_curve_sapling/ -share/blender/scripts/addons/add_curve_sapling/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_curve_sapling/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_curve_sapling/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/ -${MODPY_COMMENT}share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}callistemon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}callistemon.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}douglas_fir.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}douglas_fir.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}japanese_maple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}japanese_maple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}quaking_aspen.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}quaking_aspen.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}small_maple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}small_maple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}small_pine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}small_pine.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}weeping_willow.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}weeping_willow.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}white_birch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}white_birch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}willow.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_curve_sapling/presets/${MODPY_PYCACHE}willow.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_curve_sapling/presets/callistemon.py -share/blender/scripts/addons/add_curve_sapling/presets/douglas_fir.py -share/blender/scripts/addons/add_curve_sapling/presets/japanese_maple.py -share/blender/scripts/addons/add_curve_sapling/presets/quaking_aspen.py -share/blender/scripts/addons/add_curve_sapling/presets/small_maple.py -share/blender/scripts/addons/add_curve_sapling/presets/small_pine.py -share/blender/scripts/addons/add_curve_sapling/presets/weeping_willow.py -share/blender/scripts/addons/add_curve_sapling/presets/white_birch.py -share/blender/scripts/addons/add_curve_sapling/presets/willow.py -share/blender/scripts/addons/add_curve_sapling/utils.py -share/blender/scripts/addons/add_mesh_BoltFactory/ -share/blender/scripts/addons/add_mesh_BoltFactory/Boltfactory.py -share/blender/scripts/addons/add_mesh_BoltFactory/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_mesh_BoltFactory/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_mesh_BoltFactory/${MODPY_PYCACHE}Boltfactory.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_BoltFactory/${MODPY_PYCACHE}Boltfactory.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_BoltFactory/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_BoltFactory/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_BoltFactory/${MODPY_PYCACHE}createMesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_BoltFactory/${MODPY_PYCACHE}createMesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_BoltFactory/createMesh.py -share/blender/scripts/addons/add_mesh_discombobulator/ -share/blender/scripts/addons/add_mesh_discombobulator/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_mesh_discombobulator/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_mesh_discombobulator/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_discombobulator/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_discombobulator/${MODPY_PYCACHE}mesh_discombobulator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_discombobulator/${MODPY_PYCACHE}mesh_discombobulator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_discombobulator/mesh_discombobulator.py -share/blender/scripts/addons/add_mesh_extra_objects/ -share/blender/scripts/addons/add_mesh_extra_objects/Blocks.py -share/blender/scripts/addons/add_mesh_extra_objects/Wallfactory.py -share/blender/scripts/addons/add_mesh_extra_objects/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}Blocks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}Blocks.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}Wallfactory.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}Wallfactory.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_empty_as_parent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_empty_as_parent.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_3d_function_surface.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_3d_function_surface.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_beam_builder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_beam_builder.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_gears.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_gears.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_gemstones.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_gemstones.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_honeycomb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_honeycomb.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_menger_sponge.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_menger_sponge.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_pipe_joint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_pipe_joint.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_pyramid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_pyramid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_round_brilliant.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_round_brilliant.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_round_cube.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_round_cube.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_solid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_solid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_star.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_star.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_supertoroid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_supertoroid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_teapot.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_teapot.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_torusknot.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_torusknot.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_triangles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_triangles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_twisted_torus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_twisted_torus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_vertex.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/${MODPY_PYCACHE}add_mesh_vertex.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/add_empty_as_parent.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_3d_function_surface.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_beam_builder.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_gears.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_gemstones.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_honeycomb.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_menger_sponge.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_pipe_joint.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_pyramid.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/ -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}randomize_texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}randomize_texture.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}rockgen.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}rockgen.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/add_mesh_rocks.xml -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/factory.xml -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/randomize_texture.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/rockgen.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/settings.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_rocks/utils.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_round_brilliant.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_round_cube.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_solid.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_star.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_supertoroid.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_teapot.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_torusknot.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_triangles.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_twisted_torus.py -share/blender/scripts/addons/add_mesh_extra_objects/add_mesh_vertex.py -share/blender/scripts/addons/add_mesh_geodesic_domes/ -share/blender/scripts/addons/add_mesh_geodesic_domes/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}/ -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}add_shape_geodesic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}add_shape_geodesic.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}forms_271.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}forms_271.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}geodesic_classes_271.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}geodesic_classes_271.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}third_domes_panel_271.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}third_domes_panel_271.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}vefm_271.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/add_mesh_geodesic_domes/${MODPY_PYCACHE}vefm_271.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/add_mesh_geodesic_domes/add_shape_geodesic.py -share/blender/scripts/addons/add_mesh_geodesic_domes/forms_271.py -share/blender/scripts/addons/add_mesh_geodesic_domes/geodesic_classes_271.py -share/blender/scripts/addons/add_mesh_geodesic_domes/third_domes_panel_271.py -share/blender/scripts/addons/add_mesh_geodesic_domes/vefm_271.py -share/blender/scripts/addons/amaranth/ -share/blender/scripts/addons/amaranth/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/${MODPY_PYCACHE}prefs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/${MODPY_PYCACHE}prefs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/animation/ -share/blender/scripts/addons/amaranth/animation/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}frame_current.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}frame_current.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}jump_frames.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}jump_frames.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}motion_paths.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}motion_paths.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}timeline_extra_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/animation/${MODPY_PYCACHE}timeline_extra_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/animation/frame_current.py -share/blender/scripts/addons/amaranth/animation/jump_frames.py -share/blender/scripts/addons/amaranth/animation/motion_paths.py -share/blender/scripts/addons/amaranth/animation/timeline_extra_info.py -share/blender/scripts/addons/amaranth/misc/ -share/blender/scripts/addons/amaranth/misc/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}color_management.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}color_management.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}dupli_group_id.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}dupli_group_id.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}sequencer_extra_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}sequencer_extra_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}toggle_wire.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/misc/${MODPY_PYCACHE}toggle_wire.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/misc/color_management.py -share/blender/scripts/addons/amaranth/misc/dupli_group_id.py -share/blender/scripts/addons/amaranth/misc/sequencer_extra_info.py -share/blender/scripts/addons/amaranth/misc/toggle_wire.py -share/blender/scripts/addons/amaranth/modeling/ -share/blender/scripts/addons/amaranth/modeling/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/modeling/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/modeling/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/modeling/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/modeling/${MODPY_PYCACHE}symmetry_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/modeling/${MODPY_PYCACHE}symmetry_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/modeling/symmetry_tools.py -share/blender/scripts/addons/amaranth/node_editor/ -share/blender/scripts/addons/amaranth/node_editor/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}display_image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}display_image.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}id_panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}id_panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}node_shader_extra.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}node_shader_extra.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}node_stats.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}node_stats.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}normal_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}normal_node.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}simplify_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}simplify_nodes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}switch_material.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/${MODPY_PYCACHE}switch_material.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/display_image.py -share/blender/scripts/addons/amaranth/node_editor/id_panel.py -share/blender/scripts/addons/amaranth/node_editor/node_shader_extra.py -share/blender/scripts/addons/amaranth/node_editor/node_stats.py -share/blender/scripts/addons/amaranth/node_editor/normal_node.py -share/blender/scripts/addons/amaranth/node_editor/simplify_nodes.py -share/blender/scripts/addons/amaranth/node_editor/switch_material.py -share/blender/scripts/addons/amaranth/node_editor/templates/ -share/blender/scripts/addons/amaranth/node_editor/templates/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/node_editor/templates/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/node_editor/templates/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/templates/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/templates/${MODPY_PYCACHE}vectorblur.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/templates/${MODPY_PYCACHE}vectorblur.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/templates/${MODPY_PYCACHE}vignette.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/node_editor/templates/${MODPY_PYCACHE}vignette.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/node_editor/templates/vectorblur.py -share/blender/scripts/addons/amaranth/node_editor/templates/vignette.py -share/blender/scripts/addons/amaranth/prefs.py -share/blender/scripts/addons/amaranth/render/ -share/blender/scripts/addons/amaranth/render/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}border_camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}border_camera.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}final_resolution.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}final_resolution.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}meshlight_add.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}meshlight_add.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}meshlight_select.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}meshlight_select.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}passepartout.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}passepartout.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}render_output_z.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}render_output_z.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}samples_scene.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/render/${MODPY_PYCACHE}samples_scene.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/render/border_camera.py -share/blender/scripts/addons/amaranth/render/final_resolution.py -share/blender/scripts/addons/amaranth/render/meshlight_add.py -share/blender/scripts/addons/amaranth/render/meshlight_select.py -share/blender/scripts/addons/amaranth/render/passepartout.py -share/blender/scripts/addons/amaranth/render/render_output_z.py -share/blender/scripts/addons/amaranth/render/samples_scene.py -share/blender/scripts/addons/amaranth/scene/ -share/blender/scripts/addons/amaranth/scene/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}/ -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}current_blend.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}current_blend.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}debug.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}debug.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}goto_library.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}goto_library.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}material_remove_unassigned.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}material_remove_unassigned.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}refresh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}refresh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}save_reload.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}save_reload.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}stats.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/amaranth/scene/${MODPY_PYCACHE}stats.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/amaranth/scene/current_blend.py -share/blender/scripts/addons/amaranth/scene/debug.py -share/blender/scripts/addons/amaranth/scene/goto_library.py -share/blender/scripts/addons/amaranth/scene/material_remove_unassigned.py -share/blender/scripts/addons/amaranth/scene/refresh.py -share/blender/scripts/addons/amaranth/scene/save_reload.py -share/blender/scripts/addons/amaranth/scene/stats.py -share/blender/scripts/addons/amaranth/utils.py -share/blender/scripts/addons/animation_add_corrective_shape_key.py -share/blender/scripts/addons/animation_animall/ -share/blender/scripts/addons/animation_animall/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/animation_animall/${MODPY_PYCACHE}/ -share/blender/scripts/addons/animation_animall/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/animation_animall/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/animation_animall/${MODPY_PYCACHE}translations.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/animation_animall/${MODPY_PYCACHE}translations.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/animation_animall/translations.py -share/blender/scripts/addons/ant_landscape/ -share/blender/scripts/addons/ant_landscape/ErosionR.txt -share/blender/scripts/addons/ant_landscape/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}/ -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}add_mesh_ant_landscape.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}add_mesh_ant_landscape.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}ant_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}ant_functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}ant_noise.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}ant_noise.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}eroder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}eroder.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}mesh_ant_displace.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}mesh_ant_displace.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}stats.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}stats.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}test.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}test.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ant_landscape/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ant_landscape/add_mesh_ant_landscape.py -share/blender/scripts/addons/ant_landscape/ant_functions.py -share/blender/scripts/addons/ant_landscape/ant_noise.py -share/blender/scripts/addons/ant_landscape/eroder.py -share/blender/scripts/addons/ant_landscape/mesh_ant_displace.py -share/blender/scripts/addons/ant_landscape/stats.py -share/blender/scripts/addons/ant_landscape/test.py -share/blender/scripts/addons/ant_landscape/utils.py -share/blender/scripts/addons/archimesh/ -share/blender/scripts/addons/archimesh/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}/ -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_books_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_books_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_column_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_column_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_curtain_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_curtain_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_door_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_door_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_gltools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_gltools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_kitchen_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_kitchen_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_lamp_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_lamp_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_main_panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_main_panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_roof_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_roof_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_room_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_room_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_shelves_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_shelves_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_stairs_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_stairs_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_venetian_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_venetian_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_window_maker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_window_maker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_window_panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/archimesh/${MODPY_PYCACHE}achm_window_panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/archimesh/achm_books_maker.py -share/blender/scripts/addons/archimesh/achm_column_maker.py -share/blender/scripts/addons/archimesh/achm_curtain_maker.py -share/blender/scripts/addons/archimesh/achm_door_maker.py -share/blender/scripts/addons/archimesh/achm_gltools.py -share/blender/scripts/addons/archimesh/achm_kitchen_maker.py -share/blender/scripts/addons/archimesh/achm_lamp_maker.py -share/blender/scripts/addons/archimesh/achm_main_panel.py -share/blender/scripts/addons/archimesh/achm_roof_maker.py -share/blender/scripts/addons/archimesh/achm_room_maker.py -share/blender/scripts/addons/archimesh/achm_shelves_maker.py -share/blender/scripts/addons/archimesh/achm_stairs_maker.py -share/blender/scripts/addons/archimesh/achm_tools.py -share/blender/scripts/addons/archimesh/achm_venetian_maker.py -share/blender/scripts/addons/archimesh/achm_window_maker.py -share/blender/scripts/addons/archimesh/achm_window_panel.py -share/blender/scripts/addons/archimesh/images/ -share/blender/scripts/addons/archimesh/images/fabric_diffuse.png -share/blender/scripts/addons/blender_id/ -share/blender/scripts/addons/blender_id/CHANGELOG.md -share/blender/scripts/addons/blender_id/README.md -share/blender/scripts/addons/blender_id/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/blender_id/${MODPY_PYCACHE}/ -share/blender/scripts/addons/blender_id/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/blender_id/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/blender_id/${MODPY_PYCACHE}communication.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/blender_id/${MODPY_PYCACHE}communication.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/blender_id/${MODPY_PYCACHE}profiles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/blender_id/${MODPY_PYCACHE}profiles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/blender_id/communication.py -share/blender/scripts/addons/blender_id/profiles.py -share/blender/scripts/addons/bone_selection_sets.py -share/blender/scripts/addons/btrace/ -share/blender/scripts/addons/btrace/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/btrace/${MODPY_PYCACHE}/ -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}bTrace.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}bTrace.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}bTrace_panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}bTrace_panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}bTrace_props.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/btrace/${MODPY_PYCACHE}bTrace_props.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/btrace/bTrace.py -share/blender/scripts/addons/btrace/bTrace_panel.py -share/blender/scripts/addons/btrace/bTrace_props.py -share/blender/scripts/addons/camera_turnaround.py -share/blender/scripts/addons/copy_global_transform.py -share/blender/scripts/addons/curve_assign_shapekey.py -share/blender/scripts/addons/curve_simplify.py -share/blender/scripts/addons/curve_tools/ -share/blender/scripts/addons/curve_tools/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}/ -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}auto_loft.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}auto_loft.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}cad.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}cad.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}curves.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}curves.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}exports.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}exports.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}fillet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}fillet.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}internal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}internal.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}intersections.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}intersections.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}mathematics.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}mathematics.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}outline.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}outline.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}path_finder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}path_finder.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}remove_doubles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}remove_doubles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}show_resolution.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}show_resolution.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}splines_sequence.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}splines_sequence.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}surfaces.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}surfaces.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}toolpath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}toolpath.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/curve_tools/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/curve_tools/auto_loft.py -share/blender/scripts/addons/curve_tools/cad.py -share/blender/scripts/addons/curve_tools/curves.py -share/blender/scripts/addons/curve_tools/exports.py -share/blender/scripts/addons/curve_tools/fillet.py -share/blender/scripts/addons/curve_tools/internal.py -share/blender/scripts/addons/curve_tools/intersections.py -share/blender/scripts/addons/curve_tools/mathematics.py -share/blender/scripts/addons/curve_tools/operators.py -share/blender/scripts/addons/curve_tools/outline.py -share/blender/scripts/addons/curve_tools/path_finder.py -share/blender/scripts/addons/curve_tools/properties.py -share/blender/scripts/addons/curve_tools/remove_doubles.py -share/blender/scripts/addons/curve_tools/show_resolution.py -share/blender/scripts/addons/curve_tools/splines_sequence.py -share/blender/scripts/addons/curve_tools/surfaces.py -share/blender/scripts/addons/curve_tools/toolpath.py -share/blender/scripts/addons/curve_tools/util.py -share/blender/scripts/addons/cycles/ -share/blender/scripts/addons/cycles/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/cycles/${MODPY_PYCACHE}/ -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}camera.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}engine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}engine.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}osl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}osl.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}version_update.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/cycles/${MODPY_PYCACHE}version_update.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/cycles/camera.py -share/blender/scripts/addons/cycles/engine.py -share/blender/scripts/addons/cycles/operators.py -share/blender/scripts/addons/cycles/osl.py -share/blender/scripts/addons/cycles/presets.py -share/blender/scripts/addons/cycles/properties.py -share/blender/scripts/addons/cycles/ui.py -share/blender/scripts/addons/cycles/version_update.py -share/blender/scripts/addons/depsgraph_debug.py -share/blender/scripts/addons/development_edit_operator.py -share/blender/scripts/addons/development_icon_get.py -share/blender/scripts/addons/development_iskeyfree.py -share/blender/scripts/addons/greasepencil_tools/ -share/blender/scripts/addons/greasepencil_tools/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}/ -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}box_deform.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}box_deform.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}draw_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}draw_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}import_brush_pack.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}import_brush_pack.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}line_reshape.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}line_reshape.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}prefs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}prefs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}rotate_canvas.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}rotate_canvas.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}timeline_scrub.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}timeline_scrub.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}ui_panels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/greasepencil_tools/${MODPY_PYCACHE}ui_panels.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/greasepencil_tools/box_deform.py -share/blender/scripts/addons/greasepencil_tools/draw_tools.py -share/blender/scripts/addons/greasepencil_tools/import_brush_pack.py -share/blender/scripts/addons/greasepencil_tools/line_reshape.py -share/blender/scripts/addons/greasepencil_tools/prefs.py -share/blender/scripts/addons/greasepencil_tools/rotate_canvas.py -share/blender/scripts/addons/greasepencil_tools/timeline_scrub.py -share/blender/scripts/addons/greasepencil_tools/ui_panels.py -share/blender/scripts/addons/io_anim_bvh/ -share/blender/scripts/addons/io_anim_bvh/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_anim_bvh/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_anim_bvh/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_anim_bvh/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_anim_bvh/${MODPY_PYCACHE}export_bvh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_anim_bvh/${MODPY_PYCACHE}export_bvh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_anim_bvh/${MODPY_PYCACHE}import_bvh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_anim_bvh/${MODPY_PYCACHE}import_bvh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_anim_bvh/export_bvh.py -share/blender/scripts/addons/io_anim_bvh/import_bvh.py -share/blender/scripts/addons/io_anim_camera.py -share/blender/scripts/addons/io_anim_nuke_chan/ -share/blender/scripts/addons/io_anim_nuke_chan/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_anim_nuke_chan/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_anim_nuke_chan/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_anim_nuke_chan/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_anim_nuke_chan/${MODPY_PYCACHE}export_nuke_chan.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_anim_nuke_chan/${MODPY_PYCACHE}export_nuke_chan.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_anim_nuke_chan/${MODPY_PYCACHE}import_nuke_chan.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_anim_nuke_chan/${MODPY_PYCACHE}import_nuke_chan.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_anim_nuke_chan/export_nuke_chan.py -share/blender/scripts/addons/io_anim_nuke_chan/import_nuke_chan.py -share/blender/scripts/addons/io_coat3D/ -share/blender/scripts/addons/io_coat3D/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}folders.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}folders.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}tex.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}tex.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}texVR.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}texVR.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}updateimage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_coat3D/${MODPY_PYCACHE}updateimage.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_coat3D/data.json -share/blender/scripts/addons/io_coat3D/folders.py -share/blender/scripts/addons/io_coat3D/tex.py -share/blender/scripts/addons/io_coat3D/texVR.py -share/blender/scripts/addons/io_coat3D/updateimage.py -share/blender/scripts/addons/io_curve_svg/ -share/blender/scripts/addons/io_curve_svg/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}import_svg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}import_svg.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}svg_colors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}svg_colors.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}svg_util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}svg_util.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}svg_util_test.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_curve_svg/${MODPY_PYCACHE}svg_util_test.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_curve_svg/import_svg.py -share/blender/scripts/addons/io_curve_svg/svg_colors.py -share/blender/scripts/addons/io_curve_svg/svg_util.py -share/blender/scripts/addons/io_curve_svg/svg_util_test.py -share/blender/scripts/addons/io_export_dxf/ -share/blender/scripts/addons/io_export_dxf/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_export_dxf/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_export_dxf/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/${MODPY_PYCACHE}export_dxf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/${MODPY_PYCACHE}export_dxf.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/draw_blenders/ -share/blender/scripts/addons/io_export_dxf/draw_blenders/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_export_dxf/draw_blenders/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_export_dxf/draw_blenders/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/draw_blenders/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/export_dxf.py -share/blender/scripts/addons/io_export_dxf/model/ -share/blender/scripts/addons/io_export_dxf/model/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}dxfLibrary.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}dxfLibrary.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}migiusModel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}migiusModel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}model.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/model/${MODPY_PYCACHE}model.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/model/dxfLibrary.py -share/blender/scripts/addons/io_export_dxf/model/migiusModel.py -share/blender/scripts/addons/io_export_dxf/model/model.py -share/blender/scripts/addons/io_export_dxf/operator.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/ -share/blender/scripts/addons/io_export_dxf/primitive_exporters/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}base_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}base_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}camera_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}camera_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}curve_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}curve_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}empty_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}empty_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}insert_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}insert_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}lamp_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}lamp_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}mesh_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}mesh_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}text_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}text_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}viewborder_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_export_dxf/primitive_exporters/${MODPY_PYCACHE}viewborder_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_export_dxf/primitive_exporters/base_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/camera_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/curve_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/empty_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/insert_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/lamp_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/mesh_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/text_exporter.py -share/blender/scripts/addons/io_export_dxf/primitive_exporters/viewborder_exporter.py -share/blender/scripts/addons/io_export_dxf/test2.txt -share/blender/scripts/addons/io_export_paper_model.py -share/blender/scripts/addons/io_export_pc2.py -share/blender/scripts/addons/io_import_BrushSet.py -share/blender/scripts/addons/io_import_dxf/ -share/blender/scripts/addons/io_import_dxf/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_import_dxf/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_import_dxf/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/${MODPY_PYCACHE}transverse_mercator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/${MODPY_PYCACHE}transverse_mercator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/ -share/blender/scripts/addons/io_import_dxf/dxfgrabber/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}acdsdata.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}acdsdata.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}blockssection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}blockssection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}codepage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}codepage.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}color.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}color.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}const.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}const.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}decode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}decode.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}defaultchunk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}defaultchunk.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}drawing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}drawing.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}dxfentities.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}dxfentities.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}dxfobjects.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}dxfobjects.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}entitysection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}entitysection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}headersection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}headersection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}juliandate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}juliandate.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}layers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}layers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}linetypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}linetypes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}sections.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}sections.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}styles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}styles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}tablessection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}tablessection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}tags.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfgrabber/${MODPY_PYCACHE}tags.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfgrabber/acdsdata.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/blockssection.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/codepage.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/color.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/const.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/decode.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/defaultchunk.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/drawing.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/dxfentities.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/dxfobjects.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/entitysection.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/headersection.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/juliandate.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/layers.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/linetypes.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/sections.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/styles.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/tablessection.py -share/blender/scripts/addons/io_import_dxf/dxfgrabber/tags.py -share/blender/scripts/addons/io_import_dxf/dxfimport/ -share/blender/scripts/addons/io_import_dxf/dxfimport/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}convert.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}convert.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}do.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}do.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}fake_entities.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}fake_entities.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}groupsort.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}groupsort.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}is_.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}is_.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}line_merger.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_dxf/dxfimport/${MODPY_PYCACHE}line_merger.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_dxf/dxfimport/convert.py -share/blender/scripts/addons/io_import_dxf/dxfimport/do.py -share/blender/scripts/addons/io_import_dxf/dxfimport/fake_entities.py -share/blender/scripts/addons/io_import_dxf/dxfimport/groupsort.py -share/blender/scripts/addons/io_import_dxf/dxfimport/is_.py -share/blender/scripts/addons/io_import_dxf/dxfimport/line_merger.py -share/blender/scripts/addons/io_import_dxf/transverse_mercator.py -share/blender/scripts/addons/io_import_images_as_planes.py -share/blender/scripts/addons/io_import_palette/ -share/blender/scripts/addons/io_import_palette/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_import_palette/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_import_palette/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_palette/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_palette/${MODPY_PYCACHE}import_ase.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_palette/${MODPY_PYCACHE}import_ase.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_palette/${MODPY_PYCACHE}import_krita.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_import_palette/${MODPY_PYCACHE}import_krita.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_import_palette/import_ase.py -share/blender/scripts/addons/io_import_palette/import_krita.py -share/blender/scripts/addons/io_mesh_atomic/ -share/blender/scripts/addons/io_mesh_atomic/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}pdb_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}pdb_export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}pdb_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}pdb_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}pdb_import.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}pdb_import.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}utility_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}utility_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}utility_panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}utility_panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}xyz_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}xyz_export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}xyz_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}xyz_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}xyz_import.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_atomic/${MODPY_PYCACHE}xyz_import.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_atomic/atom_info.dat -share/blender/scripts/addons/io_mesh_atomic/pdb_export.py -share/blender/scripts/addons/io_mesh_atomic/pdb_gui.py -share/blender/scripts/addons/io_mesh_atomic/pdb_import.py -share/blender/scripts/addons/io_mesh_atomic/utility_gui.py -share/blender/scripts/addons/io_mesh_atomic/utility_panel.py -share/blender/scripts/addons/io_mesh_atomic/xyz_export.py -share/blender/scripts/addons/io_mesh_atomic/xyz_gui.py -share/blender/scripts/addons/io_mesh_atomic/xyz_import.py -share/blender/scripts/addons/io_mesh_ply/ -share/blender/scripts/addons/io_mesh_ply/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_mesh_ply/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_mesh_ply/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_ply/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_ply/${MODPY_PYCACHE}export_ply.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_ply/${MODPY_PYCACHE}export_ply.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_ply/${MODPY_PYCACHE}import_ply.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_ply/${MODPY_PYCACHE}import_ply.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_ply/export_ply.py -share/blender/scripts/addons/io_mesh_ply/import_ply.py -share/blender/scripts/addons/io_mesh_stl/ -share/blender/scripts/addons/io_mesh_stl/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_mesh_stl/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_mesh_stl/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_stl/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_stl/${MODPY_PYCACHE}blender_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_stl/${MODPY_PYCACHE}blender_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_stl/${MODPY_PYCACHE}stl_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_stl/${MODPY_PYCACHE}stl_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_stl/blender_utils.py -share/blender/scripts/addons/io_mesh_stl/stl_utils.py -share/blender/scripts/addons/io_mesh_uv_layout/ -share/blender/scripts/addons/io_mesh_uv_layout/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_eps.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_eps.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_png.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_png.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_svg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_svg.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_mesh_uv_layout/export_uv_eps.py -share/blender/scripts/addons/io_mesh_uv_layout/export_uv_png.py -share/blender/scripts/addons/io_mesh_uv_layout/export_uv_svg.py -share/blender/scripts/addons/io_scene_fbx/ -share/blender/scripts/addons/io_scene_fbx/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}data_types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}data_types.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}encode_bin.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}encode_bin.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}export_fbx_bin.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}export_fbx_bin.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}fbx2json.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}fbx2json.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}fbx_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}fbx_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}import_fbx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}import_fbx.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}json2fbx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}json2fbx.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}parse_fbx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_fbx/${MODPY_PYCACHE}parse_fbx.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_fbx/data_types.py -share/blender/scripts/addons/io_scene_fbx/encode_bin.py -share/blender/scripts/addons/io_scene_fbx/export_fbx_bin.py -share/blender/scripts/addons/io_scene_fbx/fbx2json.py -share/blender/scripts/addons/io_scene_fbx/fbx_utils.py -share/blender/scripts/addons/io_scene_fbx/import_fbx.py -share/blender/scripts/addons/io_scene_fbx/json2fbx.py -share/blender/scripts/addons/io_scene_fbx/parse_fbx.py -share/blender/scripts/addons/io_scene_gltf2/ -share/blender/scripts/addons/io_scene_gltf2/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/ -share/blender/scripts/addons/io_scene_gltf2/blender/com/ -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_conversion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_conversion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_data_path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_data_path.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_extras.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_extras.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_json.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_json.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_material_helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_material_helpers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_math.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_math.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_conversion.py -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_data_path.py -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_default.py -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_extras.py -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_json.py -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_material_helpers.py -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_math.py -share/blender/scripts/addons/io_scene_gltf2/blender/com/gltf2_blender_ui.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/ -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_export_keys.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_export_keys.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_extract.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_extract.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_accessors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_accessors.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_channel_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_channel_target.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_channels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_channels.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_sampler_keyframes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_sampler_keyframes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_samplers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animation_samplers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animations.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_animations.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_cache.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_cache.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_cameras.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_cameras.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_drivers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_drivers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_image.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_joints.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_joints.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_light_spots.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_light_spots.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_lights.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_lights.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_clearcoat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_clearcoat.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_emission.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_emission.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_ior.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_ior.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_pbr_metallic_roughness.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_pbr_metallic_roughness.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_sheen.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_sheen.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_specular.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_specular.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_transmission.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_transmission.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_unlit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_unlit.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_variants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_variants.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_volume.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_materials_volume.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_mesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_nodes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_primitive_attributes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_primitive_attributes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_primitives.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_primitives.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_sampler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_sampler.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_skins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_skins.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_texture.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_texture_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_texture_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_tree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gather_tree.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_get.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_get.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gltf2_exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_gltf2_exporter.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_image.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_search_node_tree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_search_node_tree.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_texture_specular.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gltf2_blender_texture_specular.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_export.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_export_keys.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_extract.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_accessors.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channel_target.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_channels.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_sampler_keyframes.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animation_samplers.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_animations.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_cache.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_cameras.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_drivers.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_image.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_joints.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_light_spots.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_lights.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_clearcoat.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_emission.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_ior.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_pbr_metallic_roughness.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_sheen.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_specular.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_transmission.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_unlit.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_variants.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_materials_volume.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_mesh.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_nodes.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_primitive_attributes.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_primitives.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_sampler.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_skins.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_texture.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_texture_info.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gather_tree.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_get.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_gltf2_exporter.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_image.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_search_node_tree.py -share/blender/scripts/addons/io_scene_gltf2/blender/exp/gltf2_blender_texture_specular.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/ -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_clearcoat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_clearcoat.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_ior.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_ior.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_pbrSpecularGlossiness.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_pbrSpecularGlossiness.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_sheen.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_sheen.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_specular.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_specular.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_transmission.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_transmission.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_unlit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_unlit.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_volume.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_KHR_materials_volume.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation_node.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation_weight.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_animation_weight.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_camera.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_gltf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_gltf.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_image.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_light.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_light.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_material.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_material.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_mesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_node.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_pbrMetallicRoughness.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_pbrMetallicRoughness.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_scene.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_scene.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_texture.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_vnode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_blender_vnode.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_io_draco_compression_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}gltf2_io_draco_compression_extension.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_clearcoat.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_ior.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_pbrSpecularGlossiness.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_sheen.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_specular.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_transmission.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_unlit.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_KHR_materials_volume.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_node.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_utils.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_animation_weight.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_camera.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_gltf.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_image.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_light.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_material.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_mesh.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_node.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_pbrMetallicRoughness.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_scene.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_texture.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_blender_vnode.py -share/blender/scripts/addons/io_scene_gltf2/blender/imp/gltf2_io_draco_compression_extension.py -share/blender/scripts/addons/io_scene_gltf2/io/ -share/blender/scripts/addons/io_scene_gltf2/io/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/io/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/io/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/ -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_constants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_constants.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_debug.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_debug.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_draco_compression_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_draco_compression_extension.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_extensions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_extensions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_lights_punctual.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_lights_punctual.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_variants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_variants.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/com/gltf2_io.py -share/blender/scripts/addons/io_scene_gltf2/io/com/gltf2_io_constants.py -share/blender/scripts/addons/io_scene_gltf2/io/com/gltf2_io_debug.py -share/blender/scripts/addons/io_scene_gltf2/io/com/gltf2_io_draco_compression_extension.py -share/blender/scripts/addons/io_scene_gltf2/io/com/gltf2_io_extensions.py -share/blender/scripts/addons/io_scene_gltf2/io/com/gltf2_io_lights_punctual.py -share/blender/scripts/addons/io_scene_gltf2/io/com/gltf2_io_variants.py -share/blender/scripts/addons/io_scene_gltf2/io/exp/ -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_binary_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_binary_data.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_buffer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_buffer.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_draco_compression_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_draco_compression_extension.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_image_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_image_data.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_user_extensions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/exp/${MODPY_PYCACHE}gltf2_io_user_extensions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_binary_data.py -share/blender/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_buffer.py -share/blender/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_draco_compression_extension.py -share/blender/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_export.py -share/blender/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_image_data.py -share/blender/scripts/addons/io_scene_gltf2/io/exp/gltf2_io_user_extensions.py -share/blender/scripts/addons/io_scene_gltf2/io/imp/ -share/blender/scripts/addons/io_scene_gltf2/io/imp/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_binary.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_binary.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_gltf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_gltf.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_user_extensions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_user_extensions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_gltf2/io/imp/gltf2_io_binary.py -share/blender/scripts/addons/io_scene_gltf2/io/imp/gltf2_io_gltf.py -share/blender/scripts/addons/io_scene_gltf2/io/imp/gltf2_io_user_extensions.py -share/blender/scripts/addons/io_scene_obj/ -share/blender/scripts/addons/io_scene_obj/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_obj/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_obj/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_obj/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_obj/${MODPY_PYCACHE}export_obj.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_obj/${MODPY_PYCACHE}export_obj.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_obj/${MODPY_PYCACHE}import_obj.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_obj/${MODPY_PYCACHE}import_obj.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_obj/export_obj.py -share/blender/scripts/addons/io_scene_obj/import_obj.py -share/blender/scripts/addons/io_scene_x3d/ -share/blender/scripts/addons/io_scene_x3d/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_scene_x3d/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_scene_x3d/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_x3d/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_x3d/${MODPY_PYCACHE}export_x3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_x3d/${MODPY_PYCACHE}export_x3d.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_x3d/${MODPY_PYCACHE}import_x3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_scene_x3d/${MODPY_PYCACHE}import_x3d.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_scene_x3d/export_x3d.py -share/blender/scripts/addons/io_scene_x3d/import_x3d.py -share/blender/scripts/addons/io_shape_mdd/ -share/blender/scripts/addons/io_shape_mdd/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/io_shape_mdd/${MODPY_PYCACHE}/ -share/blender/scripts/addons/io_shape_mdd/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_shape_mdd/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_shape_mdd/${MODPY_PYCACHE}export_mdd.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_shape_mdd/${MODPY_PYCACHE}export_mdd.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_shape_mdd/${MODPY_PYCACHE}import_mdd.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/io_shape_mdd/${MODPY_PYCACHE}import_mdd.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/io_shape_mdd/export_mdd.py -share/blender/scripts/addons/io_shape_mdd/import_mdd.py -share/blender/scripts/addons/lighting_dynamic_sky.py -share/blender/scripts/addons/lighting_tri_lights.py -share/blender/scripts/addons/magic_uv/ -share/blender/scripts/addons/magic_uv/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}/ -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}common.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/common.py -share/blender/scripts/addons/magic_uv/lib/ -share/blender/scripts/addons/magic_uv/lib/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/magic_uv/lib/${MODPY_PYCACHE}/ -share/blender/scripts/addons/magic_uv/lib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/lib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/lib/${MODPY_PYCACHE}bglx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/lib/${MODPY_PYCACHE}bglx.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/lib/bglx.py -share/blender/scripts/addons/magic_uv/op/ -share/blender/scripts/addons/magic_uv/op/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}/ -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}align_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}align_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}align_uv_cursor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}align_uv_cursor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}clip_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}clip_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}copy_paste_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}copy_paste_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}copy_paste_uv_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}copy_paste_uv_object.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}copy_paste_uv_uvedit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}copy_paste_uv_uvedit.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}flip_rotate_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}flip_rotate_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}mirror_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}mirror_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}move_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}move_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}pack_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}pack_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}preserve_uv_aspect.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}preserve_uv_aspect.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}select_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}select_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}smooth_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}smooth_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}texture_lock.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}texture_lock.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}texture_projection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}texture_projection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}texture_wrap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}texture_wrap.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}transfer_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}transfer_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}unwrap_constraint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}unwrap_constraint.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uv_bounding_box.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uv_bounding_box.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uv_inspection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uv_inspection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uv_sculpt.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uv_sculpt.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uvw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}uvw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}world_scale_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/op/${MODPY_PYCACHE}world_scale_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/op/align_uv.py -share/blender/scripts/addons/magic_uv/op/align_uv_cursor.py -share/blender/scripts/addons/magic_uv/op/clip_uv.py -share/blender/scripts/addons/magic_uv/op/copy_paste_uv.py -share/blender/scripts/addons/magic_uv/op/copy_paste_uv_object.py -share/blender/scripts/addons/magic_uv/op/copy_paste_uv_uvedit.py -share/blender/scripts/addons/magic_uv/op/flip_rotate_uv.py -share/blender/scripts/addons/magic_uv/op/mirror_uv.py -share/blender/scripts/addons/magic_uv/op/move_uv.py -share/blender/scripts/addons/magic_uv/op/pack_uv.py -share/blender/scripts/addons/magic_uv/op/preserve_uv_aspect.py -share/blender/scripts/addons/magic_uv/op/select_uv.py -share/blender/scripts/addons/magic_uv/op/smooth_uv.py -share/blender/scripts/addons/magic_uv/op/texture_lock.py -share/blender/scripts/addons/magic_uv/op/texture_projection.py -share/blender/scripts/addons/magic_uv/op/texture_wrap.py -share/blender/scripts/addons/magic_uv/op/transfer_uv.py -share/blender/scripts/addons/magic_uv/op/unwrap_constraint.py -share/blender/scripts/addons/magic_uv/op/uv_bounding_box.py -share/blender/scripts/addons/magic_uv/op/uv_inspection.py -share/blender/scripts/addons/magic_uv/op/uv_sculpt.py -share/blender/scripts/addons/magic_uv/op/uvw.py -share/blender/scripts/addons/magic_uv/op/world_scale_uv.py -share/blender/scripts/addons/magic_uv/preferences.py -share/blender/scripts/addons/magic_uv/properties.py -share/blender/scripts/addons/magic_uv/ui/ -share/blender/scripts/addons/magic_uv/ui/IMAGE_MT_uvs.py -share/blender/scripts/addons/magic_uv/ui/VIEW3D_MT_object.py -share/blender/scripts/addons/magic_uv/ui/VIEW3D_MT_uv_map.py -share/blender/scripts/addons/magic_uv/ui/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}/ -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}IMAGE_MT_uvs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}IMAGE_MT_uvs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}VIEW3D_MT_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}VIEW3D_MT_object.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}VIEW3D_MT_uv_map.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}VIEW3D_MT_uv_map.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}uvedit_copy_paste_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}uvedit_copy_paste_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}uvedit_editor_enhancement.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}uvedit_editor_enhancement.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}uvedit_uv_manipulation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}uvedit_uv_manipulation.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_copy_paste_uv_editmode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_copy_paste_uv_editmode.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_copy_paste_uv_objectmode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_copy_paste_uv_objectmode.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_uv_manipulation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_uv_manipulation.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_uv_mapping.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/ui/${MODPY_PYCACHE}view3d_uv_mapping.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/ui/uvedit_copy_paste_uv.py -share/blender/scripts/addons/magic_uv/ui/uvedit_editor_enhancement.py -share/blender/scripts/addons/magic_uv/ui/uvedit_uv_manipulation.py -share/blender/scripts/addons/magic_uv/ui/view3d_copy_paste_uv_editmode.py -share/blender/scripts/addons/magic_uv/ui/view3d_copy_paste_uv_objectmode.py -share/blender/scripts/addons/magic_uv/ui/view3d_uv_manipulation.py -share/blender/scripts/addons/magic_uv/ui/view3d_uv_mapping.py -share/blender/scripts/addons/magic_uv/utils/ -share/blender/scripts/addons/magic_uv/utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}/ -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}bl_class_registry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}bl_class_registry.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}compatibility.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}compatibility.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}graph.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}graph.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}property_class_registry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/magic_uv/utils/${MODPY_PYCACHE}property_class_registry.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/magic_uv/utils/bl_class_registry.py -share/blender/scripts/addons/magic_uv/utils/compatibility.py -share/blender/scripts/addons/magic_uv/utils/graph.py -share/blender/scripts/addons/magic_uv/utils/property_class_registry.py -share/blender/scripts/addons/materials_library_vx/ -share/blender/scripts/addons/materials_library_vx/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/materials_library_vx/${MODPY_PYCACHE}/ -share/blender/scripts/addons/materials_library_vx/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/materials_library_vx/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/materials_library_vx/categories.txt -share/blender/scripts/addons/materials_library_vx/sample_materials.blend -share/blender/scripts/addons/materials_library_vx/templates.blend -share/blender/scripts/addons/materials_utils/ -share/blender/scripts/addons/materials_utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}/ -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}enum_values.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}enum_values.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/materials_utils/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/materials_utils/enum_values.py -share/blender/scripts/addons/materials_utils/functions.py -share/blender/scripts/addons/materials_utils/menus.py -share/blender/scripts/addons/materials_utils/operators.py -share/blender/scripts/addons/materials_utils/preferences.py -share/blender/scripts/addons/measureit/ -share/blender/scripts/addons/measureit/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/measureit/${MODPY_PYCACHE}/ -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}measureit_geometry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}measureit_geometry.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}measureit_main.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}measureit_main.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}measureit_render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/measureit/${MODPY_PYCACHE}measureit_render.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/measureit/measureit_geometry.py -share/blender/scripts/addons/measureit/measureit_main.py -share/blender/scripts/addons/measureit/measureit_render.py -share/blender/scripts/addons/mesh_auto_mirror.py -share/blender/scripts/addons/mesh_bsurfaces.py -share/blender/scripts/addons/mesh_f2.py -share/blender/scripts/addons/mesh_inset/ -share/blender/scripts/addons/mesh_inset/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}/ -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}geom.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}geom.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}model.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}model.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}offset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}offset.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}triquad.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_inset/${MODPY_PYCACHE}triquad.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_inset/geom.py -share/blender/scripts/addons/mesh_inset/model.py -share/blender/scripts/addons/mesh_inset/offset.py -share/blender/scripts/addons/mesh_inset/triquad.py -share/blender/scripts/addons/mesh_looptools.py -share/blender/scripts/addons/mesh_snap_utilities_line/ -share/blender/scripts/addons/mesh_snap_utilities_line/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}/ -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}common_classes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}common_classes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}common_utilities.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}common_utilities.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}drawing_utilities.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}drawing_utilities.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}keys.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}keys.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}navigation_ops.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}navigation_ops.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}op_line.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}op_line.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/common_classes.py -share/blender/scripts/addons/mesh_snap_utilities_line/common_utilities.py -share/blender/scripts/addons/mesh_snap_utilities_line/drawing_utilities.py -share/blender/scripts/addons/mesh_snap_utilities_line/icons/ -share/blender/scripts/addons/mesh_snap_utilities_line/icons/ops.mesh.snap_utilities_line.dat -share/blender/scripts/addons/mesh_snap_utilities_line/keys.py -share/blender/scripts/addons/mesh_snap_utilities_line/navigation_ops.py -share/blender/scripts/addons/mesh_snap_utilities_line/op_line.py -share/blender/scripts/addons/mesh_snap_utilities_line/preferences.py -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/ -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/${MODPY_PYCACHE}/ -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/${MODPY_PYCACHE}mesh_drawing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/${MODPY_PYCACHE}mesh_drawing.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/${MODPY_PYCACHE}utils_projection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/${MODPY_PYCACHE}utils_projection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/mesh_drawing.py -share/blender/scripts/addons/mesh_snap_utilities_line/snap_context_l/utils_projection.py -share/blender/scripts/addons/mesh_snap_utilities_line/widgets.py -share/blender/scripts/addons/mesh_tiny_cad/ -share/blender/scripts/addons/mesh_tiny_cad/BIX.py -share/blender/scripts/addons/mesh_tiny_cad/CCEN.py -share/blender/scripts/addons/mesh_tiny_cad/CFG.py -share/blender/scripts/addons/mesh_tiny_cad/E2F.py -share/blender/scripts/addons/mesh_tiny_cad/README.md -share/blender/scripts/addons/mesh_tiny_cad/V2X.py -share/blender/scripts/addons/mesh_tiny_cad/VTX.py -share/blender/scripts/addons/mesh_tiny_cad/XALL.py -share/blender/scripts/addons/mesh_tiny_cad/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}/ -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}BIX.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}BIX.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}CCEN.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}CCEN.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}CFG.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}CFG.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}E2F.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}E2F.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}V2X.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}V2X.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}VTX.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}VTX.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}XALL.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}XALL.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}cad_module.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tiny_cad/${MODPY_PYCACHE}cad_module.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tiny_cad/cad_module.py -share/blender/scripts/addons/mesh_tiny_cad/icons/ -share/blender/scripts/addons/mesh_tiny_cad/icons/BIX.png -share/blender/scripts/addons/mesh_tiny_cad/icons/CCEN.png -share/blender/scripts/addons/mesh_tiny_cad/icons/E2F.png -share/blender/scripts/addons/mesh_tiny_cad/icons/V2X.png -share/blender/scripts/addons/mesh_tiny_cad/icons/VTX.png -share/blender/scripts/addons/mesh_tiny_cad/icons/XALL.png -share/blender/scripts/addons/mesh_tissue/ -share/blender/scripts/addons/mesh_tissue/README.md -share/blender/scripts/addons/mesh_tissue/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}/ -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}curves_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}curves_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}dual_mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}dual_mesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}lattice.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}lattice.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}material_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}material_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}numba_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}numba_functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}polyhedra.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}polyhedra.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}tessellate_numpy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}tessellate_numpy.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}tissue_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}tissue_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}utils_pip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}utils_pip.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}uv_to_mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}uv_to_mesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}weight_tools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tissue/${MODPY_PYCACHE}weight_tools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tissue/config.py -share/blender/scripts/addons/mesh_tissue/curves_tools.py -share/blender/scripts/addons/mesh_tissue/dual_mesh.py -share/blender/scripts/addons/mesh_tissue/lattice.py -share/blender/scripts/addons/mesh_tissue/material_tools.py -share/blender/scripts/addons/mesh_tissue/numba_functions.py -share/blender/scripts/addons/mesh_tissue/polyhedra.py -share/blender/scripts/addons/mesh_tissue/tessellate_numpy.py -share/blender/scripts/addons/mesh_tissue/tissue_properties.py -share/blender/scripts/addons/mesh_tissue/utils.py -share/blender/scripts/addons/mesh_tissue/utils_pip.py -share/blender/scripts/addons/mesh_tissue/uv_to_mesh.py -share/blender/scripts/addons/mesh_tissue/weight_tools.py -share/blender/scripts/addons/mesh_tools/ -share/blender/scripts/addons/mesh_tools/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}/ -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}face_inset_fillet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}face_inset_fillet.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_cut_faces.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_cut_faces.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edge_roundifier.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edge_roundifier.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edges_floor_plan.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edges_floor_plan.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edges_length.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edges_length.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edgetools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_edgetools.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_extrude_and_reshape.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_extrude_and_reshape.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_filletplus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_filletplus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_mextrude_plus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_mextrude_plus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_offset_edges.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_offset_edges.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_relax.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_relax.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_vertex_chamfer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}mesh_vertex_chamfer.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}pkhg_faces.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}pkhg_faces.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}random_vertices.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}random_vertices.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}split_solidify.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}split_solidify.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}vertex_align.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/mesh_tools/${MODPY_PYCACHE}vertex_align.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/mesh_tools/face_inset_fillet.py -share/blender/scripts/addons/mesh_tools/mesh_cut_faces.py -share/blender/scripts/addons/mesh_tools/mesh_edge_roundifier.py -share/blender/scripts/addons/mesh_tools/mesh_edges_floor_plan.py -share/blender/scripts/addons/mesh_tools/mesh_edges_length.py -share/blender/scripts/addons/mesh_tools/mesh_edgetools.py -share/blender/scripts/addons/mesh_tools/mesh_extrude_and_reshape.py -share/blender/scripts/addons/mesh_tools/mesh_filletplus.py -share/blender/scripts/addons/mesh_tools/mesh_mextrude_plus.py -share/blender/scripts/addons/mesh_tools/mesh_offset_edges.py -share/blender/scripts/addons/mesh_tools/mesh_relax.py -share/blender/scripts/addons/mesh_tools/mesh_vertex_chamfer.py -share/blender/scripts/addons/mesh_tools/pkhg_faces.py -share/blender/scripts/addons/mesh_tools/random_vertices.py -share/blender/scripts/addons/mesh_tools/split_solidify.py -share/blender/scripts/addons/mesh_tools/vertex_align.py -share/blender/scripts/addons/node_arrange.py -share/blender/scripts/addons/node_presets.py -share/blender/scripts/addons/node_wrangler.py -share/blender/scripts/addons/object_boolean_tools.py -share/blender/scripts/addons/object_carver/ -share/blender/scripts/addons/object_carver/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}/ -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_draw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_draw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_operator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_preferences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_preferences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_profils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_profils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_carver/${MODPY_PYCACHE}carver_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_carver/carver_draw.py -share/blender/scripts/addons/object_carver/carver_operator.py -share/blender/scripts/addons/object_carver/carver_preferences.py -share/blender/scripts/addons/object_carver/carver_profils.py -share/blender/scripts/addons/object_carver/carver_utils.py -share/blender/scripts/addons/object_collection_manager/ -share/blender/scripts/addons/object_collection_manager/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}/ -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}cm_init.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}cm_init.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}internals.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}internals.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}operator_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}operator_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}persistent_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}persistent_data.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}qcd_init.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}qcd_init.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}qcd_move_widget.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}qcd_move_widget.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}qcd_operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}qcd_operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_collection_manager/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_collection_manager/cm_init.py -share/blender/scripts/addons/object_collection_manager/icons/ -share/blender/scripts/addons/object_collection_manager/icons/minus.png -share/blender/scripts/addons/object_collection_manager/internals.py -share/blender/scripts/addons/object_collection_manager/operator_utils.py -share/blender/scripts/addons/object_collection_manager/operators.py -share/blender/scripts/addons/object_collection_manager/persistent_data.py -share/blender/scripts/addons/object_collection_manager/preferences.py -share/blender/scripts/addons/object_collection_manager/qcd_init.py -share/blender/scripts/addons/object_collection_manager/qcd_move_widget.py -share/blender/scripts/addons/object_collection_manager/qcd_operators.py -share/blender/scripts/addons/object_collection_manager/ui.py -share/blender/scripts/addons/object_color_rules.py -share/blender/scripts/addons/object_edit_linked.py -share/blender/scripts/addons/object_fracture_cell/ -share/blender/scripts/addons/object_fracture_cell/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/object_fracture_cell/${MODPY_PYCACHE}/ -share/blender/scripts/addons/object_fracture_cell/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_fracture_cell/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_fracture_cell/${MODPY_PYCACHE}fracture_cell_calc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_fracture_cell/${MODPY_PYCACHE}fracture_cell_calc.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_fracture_cell/${MODPY_PYCACHE}fracture_cell_setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_fracture_cell/${MODPY_PYCACHE}fracture_cell_setup.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_fracture_cell/fracture_cell_calc.py -share/blender/scripts/addons/object_fracture_cell/fracture_cell_setup.py -share/blender/scripts/addons/object_print3d_utils/ -share/blender/scripts/addons/object_print3d_utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}/ -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}mesh_helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}mesh_helpers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}report.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}report.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_print3d_utils/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_print3d_utils/export.py -share/blender/scripts/addons/object_print3d_utils/mesh_helpers.py -share/blender/scripts/addons/object_print3d_utils/operators.py -share/blender/scripts/addons/object_print3d_utils/report.py -share/blender/scripts/addons/object_print3d_utils/todo.rst -share/blender/scripts/addons/object_print3d_utils/ui.py -share/blender/scripts/addons/object_scatter/ -share/blender/scripts/addons/object_scatter/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/object_scatter/${MODPY_PYCACHE}/ -share/blender/scripts/addons/object_scatter/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_scatter/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_scatter/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_scatter/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_scatter/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/object_scatter/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/object_scatter/operator.py -share/blender/scripts/addons/object_scatter/ui.py -share/blender/scripts/addons/object_skinify.py -share/blender/scripts/addons/paint_palette.py -share/blender/scripts/addons/pose_library/ -share/blender/scripts/addons/pose_library/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}/ -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}asset_browser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}asset_browser.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}conversion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}conversion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}keymaps.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}keymaps.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}pose_creation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}pose_creation.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}pose_usage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/pose_library/${MODPY_PYCACHE}pose_usage.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/pose_library/asset_browser.py -share/blender/scripts/addons/pose_library/conversion.py -share/blender/scripts/addons/pose_library/functions.py -share/blender/scripts/addons/pose_library/gui.py -share/blender/scripts/addons/pose_library/keymaps.py -share/blender/scripts/addons/pose_library/operators.py -share/blender/scripts/addons/pose_library/pose_creation.py -share/blender/scripts/addons/pose_library/pose_usage.py -share/blender/scripts/addons/power_sequencer/ -share/blender/scripts/addons/power_sequencer/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}/ -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}addon_preferences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}addon_preferences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}addon_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}addon_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/addon_preferences.py -share/blender/scripts/addons/power_sequencer/addon_properties.py -share/blender/scripts/addons/power_sequencer/handlers.py -share/blender/scripts/addons/power_sequencer/operators/ -share/blender/scripts/addons/power_sequencer/operators/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}/ -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}channel_offset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}channel_offset.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}concatenate_strips.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}concatenate_strips.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}copy_selected_sequences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}copy_selected_sequences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}crossfade_add.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}crossfade_add.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}crossfade_edit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}crossfade_edit.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}cut_strips_under_cursor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}cut_strips_under_cursor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}delete_direct.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}delete_direct.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}deselect_all_left_or_right.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}deselect_all_left_or_right.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}deselect_handles_and_grab.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}deselect_handles_and_grab.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}duplicate_move.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}duplicate_move.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}expand_to_surrounding_cuts.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}expand_to_surrounding_cuts.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}fade_add.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}fade_add.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}fade_clear.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}fade_clear.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}gap_remove.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}gap_remove.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}grab.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}grab.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}grab_closest_handle_or_cut.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}grab_closest_handle_or_cut.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}grab_sequence_handles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}grab_sequence_handles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}import_local_footage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}import_local_footage.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}jump_time_offset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}jump_time_offset.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}jump_to_cut.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}jump_to_cut.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}make_hold_frame.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}make_hold_frame.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}marker_delete_closest.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}marker_delete_closest.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}marker_delete_direct.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}marker_delete_direct.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}marker_snap_to_cursor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}marker_snap_to_cursor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_as_timecodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_as_timecodes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_create_from_selected.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_create_from_selected.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_set_preview_in_between.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_set_preview_in_between.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_snap_matching_strips.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}markers_snap_matching_strips.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}meta_resize_to_content.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}meta_resize_to_content.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}meta_trim_content_to_bounds.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}meta_trim_content_to_bounds.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}meta_ungroup_and_trim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}meta_ungroup_and_trim.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}mouse_toggle_mute.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}mouse_toggle_mute.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}mouse_trim_instantly.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}mouse_trim_instantly.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}mouse_trim_modal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}mouse_trim_modal.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}open_project_directory.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}open_project_directory.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}playback_speed_decrease.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}playback_speed_decrease.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}playback_speed_increase.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}playback_speed_increase.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}playback_speed_set.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}playback_speed_set.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}preview_closest_cut.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}preview_closest_cut.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}preview_to_selection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}preview_to_selection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}render_apply_preset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}render_apply_preset.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}ripple_delete.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}ripple_delete.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}save_direct.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}save_direct.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_create_from_selection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_create_from_selection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_cycle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_cycle.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_merge_from.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_merge_from.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_open_from_strip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_open_from_strip.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_rename_with_strip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}scene_rename_with_strip.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_all_left_or_right.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_all_left_or_right.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_closest_to_mouse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_closest_to_mouse.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_linked_effect.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_linked_effect.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_linked_strips.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_linked_strips.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_related_strips.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_related_strips.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_strips_under_cursor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}select_strips_under_cursor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}set_timeline_range.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}set_timeline_range.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}snap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}snap.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}snap_selection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}snap_selection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}space_sequences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}space_sequences.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}speed_remove_effect.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}speed_remove_effect.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}speed_up_movie_strip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}speed_up_movie_strip.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}swap_strips.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}swap_strips.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}toggle_selected_mute.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}toggle_selected_mute.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}toggle_waveforms.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}toggle_waveforms.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}transitions_remove.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}transitions_remove.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}trim_left_or_right_handles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}trim_left_or_right_handles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}trim_three_point_edit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}trim_three_point_edit.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}trim_to_surrounding_cuts.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}trim_to_surrounding_cuts.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}value_offset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/${MODPY_PYCACHE}value_offset.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/channel_offset.py -share/blender/scripts/addons/power_sequencer/operators/concatenate_strips.py -share/blender/scripts/addons/power_sequencer/operators/copy_selected_sequences.py -share/blender/scripts/addons/power_sequencer/operators/crossfade_add.py -share/blender/scripts/addons/power_sequencer/operators/crossfade_edit.py -share/blender/scripts/addons/power_sequencer/operators/cut_strips_under_cursor.py -share/blender/scripts/addons/power_sequencer/operators/delete_direct.py -share/blender/scripts/addons/power_sequencer/operators/deselect_all_left_or_right.py -share/blender/scripts/addons/power_sequencer/operators/deselect_handles_and_grab.py -share/blender/scripts/addons/power_sequencer/operators/duplicate_move.py -share/blender/scripts/addons/power_sequencer/operators/expand_to_surrounding_cuts.py -share/blender/scripts/addons/power_sequencer/operators/fade_add.py -share/blender/scripts/addons/power_sequencer/operators/fade_clear.py -share/blender/scripts/addons/power_sequencer/operators/gap_remove.py -share/blender/scripts/addons/power_sequencer/operators/grab.py -share/blender/scripts/addons/power_sequencer/operators/grab_closest_handle_or_cut.py -share/blender/scripts/addons/power_sequencer/operators/grab_sequence_handles.py -share/blender/scripts/addons/power_sequencer/operators/import_local_footage.py -share/blender/scripts/addons/power_sequencer/operators/jump_time_offset.py -share/blender/scripts/addons/power_sequencer/operators/jump_to_cut.py -share/blender/scripts/addons/power_sequencer/operators/make_hold_frame.py -share/blender/scripts/addons/power_sequencer/operators/marker_delete_closest.py -share/blender/scripts/addons/power_sequencer/operators/marker_delete_direct.py -share/blender/scripts/addons/power_sequencer/operators/marker_snap_to_cursor.py -share/blender/scripts/addons/power_sequencer/operators/markers_as_timecodes.py -share/blender/scripts/addons/power_sequencer/operators/markers_create_from_selected.py -share/blender/scripts/addons/power_sequencer/operators/markers_set_preview_in_between.py -share/blender/scripts/addons/power_sequencer/operators/markers_snap_matching_strips.py -share/blender/scripts/addons/power_sequencer/operators/meta_resize_to_content.py -share/blender/scripts/addons/power_sequencer/operators/meta_trim_content_to_bounds.py -share/blender/scripts/addons/power_sequencer/operators/meta_ungroup_and_trim.py -share/blender/scripts/addons/power_sequencer/operators/mouse_toggle_mute.py -share/blender/scripts/addons/power_sequencer/operators/mouse_trim_instantly.py -share/blender/scripts/addons/power_sequencer/operators/mouse_trim_modal.py -share/blender/scripts/addons/power_sequencer/operators/open_project_directory.py -share/blender/scripts/addons/power_sequencer/operators/playback_speed_decrease.py -share/blender/scripts/addons/power_sequencer/operators/playback_speed_increase.py -share/blender/scripts/addons/power_sequencer/operators/playback_speed_set.py -share/blender/scripts/addons/power_sequencer/operators/preview_closest_cut.py -share/blender/scripts/addons/power_sequencer/operators/preview_to_selection.py -share/blender/scripts/addons/power_sequencer/operators/render_apply_preset.py -share/blender/scripts/addons/power_sequencer/operators/render_presets/ -${MODPY_COMMENT}share/blender/scripts/addons/power_sequencer/operators/render_presets/${MODPY_PYCACHE}/ -share/blender/scripts/addons/power_sequencer/operators/render_presets/${MODPY_PYCACHE}twitter_720p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/render_presets/${MODPY_PYCACHE}twitter_720p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/render_presets/${MODPY_PYCACHE}youtube_1080.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/render_presets/${MODPY_PYCACHE}youtube_1080.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/render_presets/twitter_720p.py -share/blender/scripts/addons/power_sequencer/operators/render_presets/youtube_1080.py -share/blender/scripts/addons/power_sequencer/operators/ripple_delete.py -share/blender/scripts/addons/power_sequencer/operators/save_direct.py -share/blender/scripts/addons/power_sequencer/operators/scene_create_from_selection.py -share/blender/scripts/addons/power_sequencer/operators/scene_cycle.py -share/blender/scripts/addons/power_sequencer/operators/scene_merge_from.py -share/blender/scripts/addons/power_sequencer/operators/scene_open_from_strip.py -share/blender/scripts/addons/power_sequencer/operators/scene_rename_with_strip.py -share/blender/scripts/addons/power_sequencer/operators/select_all_left_or_right.py -share/blender/scripts/addons/power_sequencer/operators/select_closest_to_mouse.py -share/blender/scripts/addons/power_sequencer/operators/select_linked_effect.py -share/blender/scripts/addons/power_sequencer/operators/select_linked_strips.py -share/blender/scripts/addons/power_sequencer/operators/select_related_strips.py -share/blender/scripts/addons/power_sequencer/operators/select_strips_under_cursor.py -share/blender/scripts/addons/power_sequencer/operators/set_timeline_range.py -share/blender/scripts/addons/power_sequencer/operators/snap.py -share/blender/scripts/addons/power_sequencer/operators/snap_selection.py -share/blender/scripts/addons/power_sequencer/operators/space_sequences.py -share/blender/scripts/addons/power_sequencer/operators/speed_remove_effect.py -share/blender/scripts/addons/power_sequencer/operators/speed_up_movie_strip.py -share/blender/scripts/addons/power_sequencer/operators/swap_strips.py -share/blender/scripts/addons/power_sequencer/operators/toggle_selected_mute.py -share/blender/scripts/addons/power_sequencer/operators/toggle_waveforms.py -share/blender/scripts/addons/power_sequencer/operators/transitions_remove.py -share/blender/scripts/addons/power_sequencer/operators/trim_left_or_right_handles.py -share/blender/scripts/addons/power_sequencer/operators/trim_three_point_edit.py -share/blender/scripts/addons/power_sequencer/operators/trim_to_surrounding_cuts.py -share/blender/scripts/addons/power_sequencer/operators/utils/ -share/blender/scripts/addons/power_sequencer/operators/utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}/ -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}doc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}doc.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}draw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}draw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}global_settings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}global_settings.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}info_progress_bar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/operators/utils/${MODPY_PYCACHE}info_progress_bar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/operators/utils/doc.py -share/blender/scripts/addons/power_sequencer/operators/utils/draw.py -share/blender/scripts/addons/power_sequencer/operators/utils/functions.py -share/blender/scripts/addons/power_sequencer/operators/utils/global_settings.py -share/blender/scripts/addons/power_sequencer/operators/utils/info_progress_bar.py -share/blender/scripts/addons/power_sequencer/operators/value_offset.py -share/blender/scripts/addons/power_sequencer/tools/ -share/blender/scripts/addons/power_sequencer/tools/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/power_sequencer/tools/${MODPY_PYCACHE}/ -share/blender/scripts/addons/power_sequencer/tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/tools/${MODPY_PYCACHE}trim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/tools/${MODPY_PYCACHE}trim.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/tools/trim.py -share/blender/scripts/addons/power_sequencer/ui/ -share/blender/scripts/addons/power_sequencer/ui/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/power_sequencer/ui/${MODPY_PYCACHE}/ -share/blender/scripts/addons/power_sequencer/ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/ui/${MODPY_PYCACHE}menu_contextual.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/ui/${MODPY_PYCACHE}menu_contextual.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/ui/${MODPY_PYCACHE}menu_toolbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/ui/${MODPY_PYCACHE}menu_toolbar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/ui/menu_contextual.py -share/blender/scripts/addons/power_sequencer/ui/menu_toolbar.py -share/blender/scripts/addons/power_sequencer/utils/ -${MODPY_COMMENT}share/blender/scripts/addons/power_sequencer/utils/${MODPY_PYCACHE}/ -share/blender/scripts/addons/power_sequencer/utils/${MODPY_PYCACHE}addon_auto_imports.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/utils/${MODPY_PYCACHE}addon_auto_imports.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/utils/${MODPY_PYCACHE}register_shortcuts.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/power_sequencer/utils/${MODPY_PYCACHE}register_shortcuts.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/power_sequencer/utils/addon_auto_imports.py -share/blender/scripts/addons/power_sequencer/utils/register_shortcuts.py -share/blender/scripts/addons/precision_drawing_tools/ -share/blender/scripts/addons/precision_drawing_tools/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}/ -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_bix.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_bix.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_cad_module.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_cad_module.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_command.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_command.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_command_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_command_functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_design.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_design.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_etof.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_etof.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_exception.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_exception.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_library.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_library.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_msg_strings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_msg_strings.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_pivot_point.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_pivot_point.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_tangent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_tangent.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_trig_waves.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_trig_waves.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_view.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_view.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_xall.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/precision_drawing_tools/${MODPY_PYCACHE}pdt_xall.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/precision_drawing_tools/pdt_bix.py -share/blender/scripts/addons/precision_drawing_tools/pdt_cad_module.py -share/blender/scripts/addons/precision_drawing_tools/pdt_command.py -share/blender/scripts/addons/precision_drawing_tools/pdt_command_functions.py -share/blender/scripts/addons/precision_drawing_tools/pdt_design.py -share/blender/scripts/addons/precision_drawing_tools/pdt_etof.py -share/blender/scripts/addons/precision_drawing_tools/pdt_exception.py -share/blender/scripts/addons/precision_drawing_tools/pdt_functions.py -share/blender/scripts/addons/precision_drawing_tools/pdt_library.py -share/blender/scripts/addons/precision_drawing_tools/pdt_menus.py -share/blender/scripts/addons/precision_drawing_tools/pdt_msg_strings.py -share/blender/scripts/addons/precision_drawing_tools/pdt_pivot_point.py -share/blender/scripts/addons/precision_drawing_tools/pdt_tangent.py -share/blender/scripts/addons/precision_drawing_tools/pdt_trig_waves.py -share/blender/scripts/addons/precision_drawing_tools/pdt_view.py -share/blender/scripts/addons/precision_drawing_tools/pdt_xall.py -share/blender/scripts/addons/presets/ -share/blender/scripts/addons/presets/interface_theme/ -share/blender/scripts/addons/presets/interface_theme/Deep_Grey.xml -share/blender/scripts/addons/presets/interface_theme/Maya.xml -share/blender/scripts/addons/presets/interface_theme/Minimal_Dark.xml -share/blender/scripts/addons/presets/interface_theme/Modo.xml -share/blender/scripts/addons/presets/interface_theme/Print_Friendly.xml -share/blender/scripts/addons/presets/interface_theme/White.xml -share/blender/scripts/addons/presets/interface_theme/XSI.xml -share/blender/scripts/addons/presets/operator/ -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/ -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/13x8_wicker_globe.py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/7x6.py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/9x9_color.py -${MODPY_COMMENT}share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}13x8_wicker_globe.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}13x8_wicker_globe.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}7x6.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}7x6.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}9x9_color.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}9x9_color.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}braided_coil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}braided_coil.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}flower_mesh_(2d).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}flower_mesh_(2d).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}slinky_knot.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}slinky_knot.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}snowflake_(2d).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}snowflake_(2d).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}sun_cross_(2d).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}sun_cross_(2d).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}tripple_dna.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}tripple_dna.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}wicker_basket.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/${MODPY_PYCACHE}wicker_basket.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/braided_coil.py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/flower_mesh_(2d).py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/slinky_knot.py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/snowflake_(2d).py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/sun_cross_(2d).py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/tripple_dna.py -share/blender/scripts/addons/presets/operator/curve.torus_knot_plus/wicker_basket.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/ -${MODPY_COMMENT}share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m3.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m4.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m4.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m5.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m5.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m6.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m6.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}_m8.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}m10.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}m10.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}m12.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.bolt_add/${MODPY_PYCACHE}m12.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.bolt_add/_default.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/_m3.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/_m4.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/_m5.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/_m6.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/_m8.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/m10.py -share/blender/scripts/addons/presets/operator/mesh.bolt_add/m12.py -share/blender/scripts/addons/presets/operator/mesh.eroder/ -${MODPY_COMMENT}share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}light_erosion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}light_erosion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}medium_erosion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}medium_erosion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}strong_erosion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}strong_erosion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}thermal_diffusion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.eroder/${MODPY_PYCACHE}thermal_diffusion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.eroder/default.py -share/blender/scripts/addons/presets/operator/mesh.eroder/light_erosion.py -share/blender/scripts/addons/presets/operator/mesh.eroder/medium_erosion.py -share/blender/scripts/addons/presets/operator/mesh.eroder/strong_erosion.py -share/blender/scripts/addons/presets/operator/mesh.eroder/thermal_diffusion.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/ -${MODPY_COMMENT}share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}abstract.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}abstract.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}another_noise.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}another_noise.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}billow.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}billow.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}canyon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}canyon.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}canyons.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}canyons.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}cauliflower_hills.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}cauliflower_hills.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}cliff.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}cliff.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}crystalline.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}crystalline.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}default_large.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}default_large.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}dunes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}dunes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}flatstones.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}flatstones.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}gully.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}gully.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}lakes_1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}lakes_1.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}lakes_2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}lakes_2.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}large_terrain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}large_terrain.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mesa.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mesa.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mounds.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mounds.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mountain_1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mountain_1.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mountain_2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}mountain_2.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}planet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}planet.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}planet_noise.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}planet_noise.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}ridged.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}ridged.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}river.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}river.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}rock.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}rock.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}slick_rock.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}slick_rock.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}tech_effect.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}tech_effect.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}techno_cell.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}techno_cell.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}vlnoise_turbulence.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}vlnoise_turbulence.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}volcano.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}volcano.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}voronoi_hills.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}voronoi_hills.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}yin_yang.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.landscape_add/${MODPY_PYCACHE}yin_yang.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.landscape_add/abstract.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/another_noise.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/billow.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/canyon.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/canyons.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/cauliflower_hills.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/cliff.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/crystalline.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/default.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/default_large.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/dunes.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/flatstones.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/gully.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/lakes_1.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/lakes_2.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/large_terrain.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/mesa.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/mounds.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/mountain_1.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/mountain_2.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/planet.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/planet_noise.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/ridged.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/river.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/rock.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/slick_rock.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/tech_effect.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/techno_cell.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/vlnoise_turbulence.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/volcano.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/voronoi_hills.py -share/blender/scripts/addons/presets/operator/mesh.landscape_add/yin_yang.py -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/ -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/Capsule.py -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/Clay_Bar.py -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/Cube.py -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/Grid_3D.py -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/Octahedron.py -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/Quadsphere.py -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/Rounded_Cube.py -${MODPY_COMMENT}share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Capsule.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Capsule.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Clay_Bar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Clay_Bar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Cube.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Cube.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Grid_3D.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Grid_3D.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Octahedron.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Octahedron.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Quadsphere.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Quadsphere.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Rounded_Cube.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_round_cube_add/${MODPY_PYCACHE}Rounded_Cube.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/ -${MODPY_COMMENT}share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}bonbon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}bonbon.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}boy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}boy.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}catalan.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}catalan.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}catenoid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}catenoid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}clifford_torus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}clifford_torus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}cochlea.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}cochlea.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}cosinus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}cosinus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}dini.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}dini.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}enneper.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}enneper.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}helicoidal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}helicoidal.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}helix.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}helix.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}hexahedron.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}hexahedron.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}hyperhelicoidal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}hyperhelicoidal.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}klein.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}klein.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}moebius.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}moebius.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}pseudo_catenoid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}pseudo_catenoid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}pseudosphere.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}pseudosphere.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}ridged_torus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}ridged_torus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}shell.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}shell.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}sine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}sine.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}snake.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}snake.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}sterosphere.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}sterosphere.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}torus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}torus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}twisted_torus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/${MODPY_PYCACHE}twisted_torus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/bonbon.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/boy.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/catalan.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/catenoid.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/clifford_torus.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/cochlea.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/cosinus.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/dini.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/enneper.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/helicoidal.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/helix.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/hexahedron.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/hyperhelicoidal.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/klein.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/moebius.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/pseudo_catenoid.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/pseudosphere.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/ridged_torus.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/shell.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/sine.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/snake.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/sterosphere.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/torus.py -share/blender/scripts/addons/presets/operator/mesh.primitive_xyz_function_surface/twisted_torus.py -share/blender/scripts/addons/presets/operator/sun_position/ -${MODPY_COMMENT}share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}chongqing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}chongqing.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}kinshasa.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}kinshasa.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}london.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}london.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}new_york.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}new_york.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}sao_paulo.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}sao_paulo.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}sydney.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/operator/sun_position/${MODPY_PYCACHE}sydney.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/operator/sun_position/chongqing.py -share/blender/scripts/addons/presets/operator/sun_position/kinshasa.py -share/blender/scripts/addons/presets/operator/sun_position/london.py -share/blender/scripts/addons/presets/operator/sun_position/new_york.py -share/blender/scripts/addons/presets/operator/sun_position/sao_paulo.py -share/blender/scripts/addons/presets/operator/sun_position/sydney.py -share/blender/scripts/addons/presets/pov/ -share/blender/scripts/addons/presets/pov/light/ -share/blender/scripts/addons/presets/pov/light/01_(4800K)_Direct_Sun.py -share/blender/scripts/addons/presets/pov/light/02_(5400K)_High_Noon_Sun.py -share/blender/scripts/addons/presets/pov/light/03_(6000K)_Daylight_Window.py -share/blender/scripts/addons/presets/pov/light/04_(6000K)_2500W_HMI_(Halogen_Metal_Iodide).py -share/blender/scripts/addons/presets/pov/light/05_(4000K)_100W_Metal_Halide.py -share/blender/scripts/addons/presets/pov/light/06_(3200K)_100W_Quartz_Halogen.py -share/blender/scripts/addons/presets/pov/light/07_(2850K)_100w_Tungsten.py -share/blender/scripts/addons/presets/pov/light/08_(2600K)_40w_Tungsten.py -share/blender/scripts/addons/presets/pov/light/09_(5000K)_75W_Full_Spectrum_Fluorescent_T12.py -share/blender/scripts/addons/presets/pov/light/10_(4300K)_40W_Vintage_Fluorescent_T12.py -share/blender/scripts/addons/presets/pov/light/11_(5000K)_18W_Standard_Fluorescent_T8.py -share/blender/scripts/addons/presets/pov/light/12_(4200K)_18W_Cool_White_Fluorescent_T8.py -share/blender/scripts/addons/presets/pov/light/13_(3000K)_18W_Warm_Fluorescent_T8.py -share/blender/scripts/addons/presets/pov/light/14_(6500K)_54W_Grow_Light_Fluorescent_T5-HO.py -share/blender/scripts/addons/presets/pov/light/15_(3200K)_40W_Induction_Fluorescent.py -share/blender/scripts/addons/presets/pov/light/16_(2100K)_150W_High_Pressure_Sodium.py -share/blender/scripts/addons/presets/pov/light/17_(1700K)_135W_Low_Pressure_Sodium.py -share/blender/scripts/addons/presets/pov/light/18_(6800K)_175W_Mercury_Vapor.py -share/blender/scripts/addons/presets/pov/light/19_(5200K)_700W_Carbon_Arc.py -share/blender/scripts/addons/presets/pov/light/20_(6500K)_15W_LED_Spot.py -share/blender/scripts/addons/presets/pov/light/21_(2700K)_7W_OLED_Panel.py -share/blender/scripts/addons/presets/pov/light/22_(30000K)_40W_Black_Light_Fluorescent.py -share/blender/scripts/addons/presets/pov/light/23_(30000K)_40W_Black_Light_Bulb.py -share/blender/scripts/addons/presets/pov/light/24_(1850K)_Candle.py -${MODPY_COMMENT}share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}01_(4800K)_Direct_Sun.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}01_(4800K)_Direct_Sun.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}02_(5400K)_High_Noon_Sun.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}02_(5400K)_High_Noon_Sun.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}03_(6000K)_Daylight_Window.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}03_(6000K)_Daylight_Window.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}04_(6000K)_2500W_HMI_(Halogen_Metal_Iodide).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}04_(6000K)_2500W_HMI_(Halogen_Metal_Iodide).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}05_(4000K)_100W_Metal_Halide.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}05_(4000K)_100W_Metal_Halide.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}06_(3200K)_100W_Quartz_Halogen.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}06_(3200K)_100W_Quartz_Halogen.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}07_(2850K)_100w_Tungsten.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}07_(2850K)_100w_Tungsten.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}08_(2600K)_40w_Tungsten.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}08_(2600K)_40w_Tungsten.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}09_(5000K)_75W_Full_Spectrum_Fluorescent_T12.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}09_(5000K)_75W_Full_Spectrum_Fluorescent_T12.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}10_(4300K)_40W_Vintage_Fluorescent_T12.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}10_(4300K)_40W_Vintage_Fluorescent_T12.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}11_(5000K)_18W_Standard_Fluorescent_T8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}11_(5000K)_18W_Standard_Fluorescent_T8.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}12_(4200K)_18W_Cool_White_Fluorescent_T8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}12_(4200K)_18W_Cool_White_Fluorescent_T8.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}13_(3000K)_18W_Warm_Fluorescent_T8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}13_(3000K)_18W_Warm_Fluorescent_T8.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}14_(6500K)_54W_Grow_Light_Fluorescent_T5-HO.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}14_(6500K)_54W_Grow_Light_Fluorescent_T5-HO.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}15_(3200K)_40W_Induction_Fluorescent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}15_(3200K)_40W_Induction_Fluorescent.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}16_(2100K)_150W_High_Pressure_Sodium.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}16_(2100K)_150W_High_Pressure_Sodium.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}17_(1700K)_135W_Low_Pressure_Sodium.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}17_(1700K)_135W_Low_Pressure_Sodium.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}18_(6800K)_175W_Mercury_Vapor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}18_(6800K)_175W_Mercury_Vapor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}19_(5200K)_700W_Carbon_Arc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}19_(5200K)_700W_Carbon_Arc.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}20_(6500K)_15W_LED_Spot.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}20_(6500K)_15W_LED_Spot.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}21_(2700K)_7W_OLED_Panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}21_(2700K)_7W_OLED_Panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}22_(30000K)_40W_Black_Light_Fluorescent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}22_(30000K)_40W_Black_Light_Fluorescent.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}23_(30000K)_40W_Black_Light_Bulb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}23_(30000K)_40W_Black_Light_Bulb.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}24_(1850K)_Candle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/light/${MODPY_PYCACHE}24_(1850K)_Candle.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/ -share/blender/scripts/addons/presets/pov/material/sss/ -${MODPY_COMMENT}share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}apple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}apple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}chicken.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}chicken.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}cream.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}cream.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}ketchup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}ketchup.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}marble.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}marble.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}potato.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}potato.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}skim_milk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}skim_milk.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}skin1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}skin1.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}skin2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}skin2.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}whole_milk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/material/sss/${MODPY_PYCACHE}whole_milk.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/material/sss/apple.py -share/blender/scripts/addons/presets/pov/material/sss/chicken.py -share/blender/scripts/addons/presets/pov/material/sss/cream.py -share/blender/scripts/addons/presets/pov/material/sss/ketchup.py -share/blender/scripts/addons/presets/pov/material/sss/marble.py -share/blender/scripts/addons/presets/pov/material/sss/potato.py -share/blender/scripts/addons/presets/pov/material/sss/skim_milk.py -share/blender/scripts/addons/presets/pov/material/sss/skin1.py -share/blender/scripts/addons/presets/pov/material/sss/skin2.py -share/blender/scripts/addons/presets/pov/material/sss/whole_milk.py -share/blender/scripts/addons/presets/pov/radiosity/ -share/blender/scripts/addons/presets/pov/radiosity/01_Debug.py -share/blender/scripts/addons/presets/pov/radiosity/02_Fast.py -share/blender/scripts/addons/presets/pov/radiosity/03_Normal.py -share/blender/scripts/addons/presets/pov/radiosity/04_Two_Bounces.py -share/blender/scripts/addons/presets/pov/radiosity/05_Final.py -share/blender/scripts/addons/presets/pov/radiosity/06_Outdoor_Low_Quality.py -share/blender/scripts/addons/presets/pov/radiosity/07_Outdoor_High_Quality.py -share/blender/scripts/addons/presets/pov/radiosity/08_Outdoor_(Sun)Light.py -share/blender/scripts/addons/presets/pov/radiosity/09_Indoor_Low_Quality.py -share/blender/scripts/addons/presets/pov/radiosity/10_Indoor_High_Quality.py -${MODPY_COMMENT}share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}01_Debug.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}01_Debug.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}02_Fast.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}02_Fast.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}03_Normal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}03_Normal.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}04_Two_Bounces.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}04_Two_Bounces.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}05_Final.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}05_Final.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}06_Outdoor_Low_Quality.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}06_Outdoor_Low_Quality.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}07_Outdoor_High_Quality.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}07_Outdoor_High_Quality.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}08_Outdoor_(Sun)Light.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}08_Outdoor_(Sun)Light.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}09_Indoor_Low_Quality.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}09_Indoor_Low_Quality.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}10_Indoor_High_Quality.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/radiosity/${MODPY_PYCACHE}10_Indoor_High_Quality.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/world/ -share/blender/scripts/addons/presets/pov/world/1_Clear_Blue_Sky.py -share/blender/scripts/addons/presets/pov/world/2_Partly_Hazy_Sky.py -share/blender/scripts/addons/presets/pov/world/3_Overcast_Sky.py -share/blender/scripts/addons/presets/pov/world/4_Cartoony_Sky.py -share/blender/scripts/addons/presets/pov/world/5_Under_Water.py -${MODPY_COMMENT}share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}/ -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}1_Clear_Blue_Sky.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}1_Clear_Blue_Sky.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}2_Partly_Hazy_Sky.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}2_Partly_Hazy_Sky.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}3_Overcast_Sky.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}3_Overcast_Sky.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}4_Cartoony_Sky.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}4_Cartoony_Sky.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}5_Under_Water.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/presets/pov/world/${MODPY_PYCACHE}5_Under_Water.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/real_snow.py -share/blender/scripts/addons/render_copy_settings/ -share/blender/scripts/addons/render_copy_settings/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}/ -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}data.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}translations.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_copy_settings/${MODPY_PYCACHE}translations.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_copy_settings/data.py -share/blender/scripts/addons/render_copy_settings/operator.py -share/blender/scripts/addons/render_copy_settings/panel.py -share/blender/scripts/addons/render_copy_settings/presets.py -share/blender/scripts/addons/render_copy_settings/translations.py -share/blender/scripts/addons/render_freestyle_svg.py -share/blender/scripts/addons/render_povray/ -share/blender/scripts/addons/render_povray/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}/ -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_all.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_all.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_curve_topology.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_curve_topology.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_meta_topology.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_meta_topology.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_poly_topology.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_poly_topology.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_primitives.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_primitives.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_primitives_topology.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_primitives_topology.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}model_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes_fn.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes_fn.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}nodes_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}particles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}particles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}particles_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}particles_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render_core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render_core.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}render_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scenography.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scenography.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scenography_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scenography_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scenography_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scenography_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scripting.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scripting.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scripting_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scripting_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scripting_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}scripting_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading_ray_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}shading_ray_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing_gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing_gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing_procedural.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing_procedural.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}texturing_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}ui_core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}ui_core.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}update_files.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}update_files.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}voxel_lib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/render_povray/${MODPY_PYCACHE}voxel_lib.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/render_povray/icons/ -share/blender/scripts/addons/render_povray/icons/pov.add.blobcapsule.dat -share/blender/scripts/addons/render_povray/icons/pov.add.blobcube.dat -share/blender/scripts/addons/render_povray/icons/pov.add.blobellipsoid.dat -share/blender/scripts/addons/render_povray/icons/pov.add.blobplane.dat -share/blender/scripts/addons/render_povray/icons/pov.add.blobsphere.dat -share/blender/scripts/addons/render_povray/icons/pov.add.box.dat -share/blender/scripts/addons/render_povray/icons/pov.add.cone.dat -share/blender/scripts/addons/render_povray/icons/pov.add.cylinder.dat -share/blender/scripts/addons/render_povray/icons/pov.add.heightfield.dat -share/blender/scripts/addons/render_povray/icons/pov.add.infinite_plane.dat -share/blender/scripts/addons/render_povray/icons/pov.add.isosurface.dat -share/blender/scripts/addons/render_povray/icons/pov.add.isosurfacebox.dat -share/blender/scripts/addons/render_povray/icons/pov.add.isosurfacesphere.dat -share/blender/scripts/addons/render_povray/icons/pov.add.isosurfacesupertorus.dat -share/blender/scripts/addons/render_povray/icons/pov.add.lathe.dat -share/blender/scripts/addons/render_povray/icons/pov.add.loft.dat -share/blender/scripts/addons/render_povray/icons/pov.add.parametric.dat -share/blender/scripts/addons/render_povray/icons/pov.add.polygontocircle.dat -share/blender/scripts/addons/render_povray/icons/pov.add.prism.dat -share/blender/scripts/addons/render_povray/icons/pov.add.rainbow.dat -share/blender/scripts/addons/render_povray/icons/pov.add.sphere.dat -share/blender/scripts/addons/render_povray/icons/pov.add.spheresweep.dat -share/blender/scripts/addons/render_povray/icons/pov.add.superellipsoid.dat -share/blender/scripts/addons/render_povray/icons/pov.add.torus.dat -share/blender/scripts/addons/render_povray/model_all.py -share/blender/scripts/addons/render_povray/model_curve_topology.py -share/blender/scripts/addons/render_povray/model_gui.py -share/blender/scripts/addons/render_povray/model_meta_topology.py -share/blender/scripts/addons/render_povray/model_poly_topology.py -share/blender/scripts/addons/render_povray/model_primitives.py -share/blender/scripts/addons/render_povray/model_primitives_topology.py -share/blender/scripts/addons/render_povray/model_properties.py -share/blender/scripts/addons/render_povray/nodes.py -share/blender/scripts/addons/render_povray/nodes_fn.py -share/blender/scripts/addons/render_povray/nodes_gui.py -share/blender/scripts/addons/render_povray/nodes_properties.py -share/blender/scripts/addons/render_povray/particles.py -share/blender/scripts/addons/render_povray/particles_properties.py -share/blender/scripts/addons/render_povray/render.py -share/blender/scripts/addons/render_povray/render_core.py -share/blender/scripts/addons/render_povray/render_gui.py -share/blender/scripts/addons/render_povray/render_properties.py -share/blender/scripts/addons/render_povray/scenography.py -share/blender/scripts/addons/render_povray/scenography_gui.py -share/blender/scripts/addons/render_povray/scenography_properties.py -share/blender/scripts/addons/render_povray/scripting.py -share/blender/scripts/addons/render_povray/scripting_gui.py -share/blender/scripts/addons/render_povray/scripting_properties.py -share/blender/scripts/addons/render_povray/shading.py -share/blender/scripts/addons/render_povray/shading_gui.py -share/blender/scripts/addons/render_povray/shading_properties.py -share/blender/scripts/addons/render_povray/shading_ray_properties.py -share/blender/scripts/addons/render_povray/templates_pov/ -share/blender/scripts/addons/render_povray/templates_pov/abyss.pov -share/blender/scripts/addons/render_povray/templates_pov/biscuit.pov -share/blender/scripts/addons/render_povray/templates_pov/bsp_Tango.pov -share/blender/scripts/addons/render_povray/templates_pov/chess2.pov -share/blender/scripts/addons/render_povray/templates_pov/cornell.pov -share/blender/scripts/addons/render_povray/templates_pov/diffract.pov -share/blender/scripts/addons/render_povray/templates_pov/diffuse_back.pov -share/blender/scripts/addons/render_povray/templates_pov/float5.pov -share/blender/scripts/addons/render_povray/templates_pov/gamma_showcase.pov -share/blender/scripts/addons/render_povray/templates_pov/grenadine.pov -share/blender/scripts/addons/render_povray/templates_pov/isocacti.pov -share/blender/scripts/addons/render_povray/templates_pov/mediasky.pov -share/blender/scripts/addons/render_povray/templates_pov/patio-radio.pov -share/blender/scripts/addons/render_povray/templates_pov/subsurface.pov -share/blender/scripts/addons/render_povray/templates_pov/wallstucco.pov -share/blender/scripts/addons/render_povray/texturing.py -share/blender/scripts/addons/render_povray/texturing_gui.py -share/blender/scripts/addons/render_povray/texturing_procedural.py -share/blender/scripts/addons/render_povray/texturing_properties.py -share/blender/scripts/addons/render_povray/ui_core.py -share/blender/scripts/addons/render_povray/update_files.py -share/blender/scripts/addons/render_povray/voxel_lib.py -share/blender/scripts/addons/render_ui_animation_render.py -share/blender/scripts/addons/rigify/ -share/blender/scripts/addons/rigify/.pep8 -share/blender/scripts/addons/rigify/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}base_generate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}base_generate.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}base_rig.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}base_rig.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}feature_set_list.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}feature_set_list.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}generate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}generate.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}metarig_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}metarig_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}rig_lists.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}rig_lists.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}rig_ui_template.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}rig_ui_template.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}rot_mode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}rot_mode.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/base_generate.py -share/blender/scripts/addons/rigify/base_rig.py -share/blender/scripts/addons/rigify/feature_set_list.py -share/blender/scripts/addons/rigify/feature_sets/ -share/blender/scripts/addons/rigify/feature_sets/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/feature_sets/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/feature_sets/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/feature_sets/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/generate.py -share/blender/scripts/addons/rigify/metarig_menu.py -share/blender/scripts/addons/rigify/metarigs/ -share/blender/scripts/addons/rigify/metarigs/Animals/ -share/blender/scripts/addons/rigify/metarigs/Animals/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}bird.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}bird.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}cat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}cat.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}horse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}horse.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}shark.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}shark.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}wolf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Animals/${MODPY_PYCACHE}wolf.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Animals/bird.py -share/blender/scripts/addons/rigify/metarigs/Animals/cat.py -share/blender/scripts/addons/rigify/metarigs/Animals/horse.py -share/blender/scripts/addons/rigify/metarigs/Animals/shark.py -share/blender/scripts/addons/rigify/metarigs/Animals/wolf.py -share/blender/scripts/addons/rigify/metarigs/Basic/ -${MODPY_COMMENT}share/blender/scripts/addons/rigify/metarigs/Basic/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_human.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_human.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_quadruped.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_quadruped.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/Basic/basic_human.py -share/blender/scripts/addons/rigify/metarigs/Basic/basic_quadruped.py -share/blender/scripts/addons/rigify/metarigs/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/metarigs/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/metarigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/${MODPY_PYCACHE}human.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/metarigs/${MODPY_PYCACHE}human.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/metarigs/human.py -share/blender/scripts/addons/rigify/operators/ -share/blender/scripts/addons/rigify/operators/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/operators/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/operators/${MODPY_PYCACHE}copy_mirror_parameters.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/operators/${MODPY_PYCACHE}copy_mirror_parameters.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/operators/${MODPY_PYCACHE}upgrade_face.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/operators/${MODPY_PYCACHE}upgrade_face.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/operators/copy_mirror_parameters.py -share/blender/scripts/addons/rigify/operators/upgrade_face.py -share/blender/scripts/addons/rigify/rig_lists.py -share/blender/scripts/addons/rigify/rig_ui_template.py -share/blender/scripts/addons/rigify/rigs/ -share/blender/scripts/addons/rigify/rigs/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}chain_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}chain_rigs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/basic/ -share/blender/scripts/addons/rigify/rigs/basic/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}copy_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}copy_chain.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}pivot.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}pivot.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}raw_copy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}raw_copy.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}super_copy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/basic/${MODPY_PYCACHE}super_copy.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/basic/copy_chain.py -share/blender/scripts/addons/rigify/rigs/basic/pivot.py -share/blender/scripts/addons/rigify/rigs/basic/raw_copy.py -share/blender/scripts/addons/rigify/rigs/basic/super_copy.py -share/blender/scripts/addons/rigify/rigs/chain_rigs.py -share/blender/scripts/addons/rigify/rigs/experimental/ -share/blender/scripts/addons/rigify/rigs/experimental/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/experimental/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/experimental/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/experimental/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/experimental/${MODPY_PYCACHE}super_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/experimental/${MODPY_PYCACHE}super_chain.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/experimental/super_chain.py -share/blender/scripts/addons/rigify/rigs/face/ -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/face/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/face/${MODPY_PYCACHE}basic_tongue.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/face/${MODPY_PYCACHE}basic_tongue.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/face/${MODPY_PYCACHE}skin_eye.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/face/${MODPY_PYCACHE}skin_eye.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/face/${MODPY_PYCACHE}skin_jaw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/face/${MODPY_PYCACHE}skin_jaw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/face/basic_tongue.py -share/blender/scripts/addons/rigify/rigs/face/skin_eye.py -share/blender/scripts/addons/rigify/rigs/face/skin_jaw.py -share/blender/scripts/addons/rigify/rigs/faces/ -share/blender/scripts/addons/rigify/rigs/faces/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/faces/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/faces/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/faces/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/faces/${MODPY_PYCACHE}super_face.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/faces/${MODPY_PYCACHE}super_face.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/faces/super_face.py -share/blender/scripts/addons/rigify/rigs/limbs/ -share/blender/scripts/addons/rigify/rigs/limbs/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}arm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}arm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}front_paw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}front_paw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}leg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}leg.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}limb_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}limb_rigs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}limb_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}limb_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}paw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}paw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}rear_paw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}rear_paw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}simple_tentacle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}simple_tentacle.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}super_finger.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}super_finger.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}super_limb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}super_limb.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}super_palm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/limbs/${MODPY_PYCACHE}super_palm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/limbs/arm.py -share/blender/scripts/addons/rigify/rigs/limbs/front_paw.py -share/blender/scripts/addons/rigify/rigs/limbs/leg.py -share/blender/scripts/addons/rigify/rigs/limbs/limb_rigs.py -share/blender/scripts/addons/rigify/rigs/limbs/limb_utils.py -share/blender/scripts/addons/rigify/rigs/limbs/paw.py -share/blender/scripts/addons/rigify/rigs/limbs/rear_paw.py -share/blender/scripts/addons/rigify/rigs/limbs/simple_tentacle.py -share/blender/scripts/addons/rigify/rigs/limbs/super_finger.py -share/blender/scripts/addons/rigify/rigs/limbs/super_limb.py -share/blender/scripts/addons/rigify/rigs/limbs/super_palm.py -share/blender/scripts/addons/rigify/rigs/skin/ -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}anchor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}anchor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}basic_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}basic_chain.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}glue.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}glue.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}skin_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}skin_nodes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}skin_parents.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}skin_parents.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}skin_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}skin_rigs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}stretchy_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/${MODPY_PYCACHE}stretchy_chain.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/anchor.py -share/blender/scripts/addons/rigify/rigs/skin/basic_chain.py -share/blender/scripts/addons/rigify/rigs/skin/glue.py -share/blender/scripts/addons/rigify/rigs/skin/skin_nodes.py -share/blender/scripts/addons/rigify/rigs/skin/skin_parents.py -share/blender/scripts/addons/rigify/rigs/skin/skin_rigs.py -share/blender/scripts/addons/rigify/rigs/skin/stretchy_chain.py -share/blender/scripts/addons/rigify/rigs/skin/transform/ -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/skin/transform/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/skin/transform/${MODPY_PYCACHE}basic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/skin/transform/${MODPY_PYCACHE}basic.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/skin/transform/basic.py -share/blender/scripts/addons/rigify/rigs/spines/ -share/blender/scripts/addons/rigify/rigs/spines/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}basic_spine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}basic_spine.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}basic_tail.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}basic_tail.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}spine_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}spine_rigs.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}super_head.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}super_head.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}super_spine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/rigs/spines/${MODPY_PYCACHE}super_spine.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/rigs/spines/basic_spine.py -share/blender/scripts/addons/rigify/rigs/spines/basic_tail.py -share/blender/scripts/addons/rigify/rigs/spines/spine_rigs.py -share/blender/scripts/addons/rigify/rigs/spines/super_head.py -share/blender/scripts/addons/rigify/rigs/spines/super_spine.py -share/blender/scripts/addons/rigify/rigs/utils.py -share/blender/scripts/addons/rigify/rigs/widgets.py -share/blender/scripts/addons/rigify/rot_mode.py -share/blender/scripts/addons/rigify/ui.py -share/blender/scripts/addons/rigify/utils/ -share/blender/scripts/addons/rigify/utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}/ -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}bones.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}bones.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}collections.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}collections.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}components.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}components.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}errors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}errors.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}layers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}layers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}mechanism.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}mechanism.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}metaclass.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}metaclass.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}misc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}misc.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}naming.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}naming.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}node_merger.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}node_merger.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}rig.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}rig.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}switch_parent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}switch_parent.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}widgets_basic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}widgets_basic.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}widgets_special.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/rigify/utils/${MODPY_PYCACHE}widgets_special.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/rigify/utils/animation.py -share/blender/scripts/addons/rigify/utils/bones.py -share/blender/scripts/addons/rigify/utils/collections.py -share/blender/scripts/addons/rigify/utils/components.py -share/blender/scripts/addons/rigify/utils/errors.py -share/blender/scripts/addons/rigify/utils/layers.py -share/blender/scripts/addons/rigify/utils/mechanism.py -share/blender/scripts/addons/rigify/utils/metaclass.py -share/blender/scripts/addons/rigify/utils/misc.py -share/blender/scripts/addons/rigify/utils/naming.py -share/blender/scripts/addons/rigify/utils/node_merger.py -share/blender/scripts/addons/rigify/utils/rig.py -share/blender/scripts/addons/rigify/utils/switch_parent.py -share/blender/scripts/addons/rigify/utils/widgets.py -share/blender/scripts/addons/rigify/utils/widgets_basic.py -share/blender/scripts/addons/rigify/utils/widgets_special.py -share/blender/scripts/addons/space_clip_editor_refine_solution.py -share/blender/scripts/addons/space_view3d_3d_navigation.py -share/blender/scripts/addons/space_view3d_align_tools.py -share/blender/scripts/addons/space_view3d_brush_menus/ -share/blender/scripts/addons/space_view3d_brush_menus/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}/ -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}brush_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}brush_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}brushes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}brushes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}curve_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}curve_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}dyntopo_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}dyntopo_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}stroke_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}stroke_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}symmetry_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}symmetry_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}texture_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}texture_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}utils_core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_brush_menus/${MODPY_PYCACHE}utils_core.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_brush_menus/brush_menu.py -share/blender/scripts/addons/space_view3d_brush_menus/brushes.py -share/blender/scripts/addons/space_view3d_brush_menus/curve_menu.py -share/blender/scripts/addons/space_view3d_brush_menus/dyntopo_menu.py -share/blender/scripts/addons/space_view3d_brush_menus/stroke_menu.py -share/blender/scripts/addons/space_view3d_brush_menus/symmetry_menu.py -share/blender/scripts/addons/space_view3d_brush_menus/texture_menu.py -share/blender/scripts/addons/space_view3d_brush_menus/utils_core.py -share/blender/scripts/addons/space_view3d_copy_attributes.py -share/blender/scripts/addons/space_view3d_math_vis/ -share/blender/scripts/addons/space_view3d_math_vis/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/space_view3d_math_vis/${MODPY_PYCACHE}/ -share/blender/scripts/addons/space_view3d_math_vis/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_math_vis/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_math_vis/${MODPY_PYCACHE}draw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_math_vis/${MODPY_PYCACHE}draw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_math_vis/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_math_vis/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_math_vis/draw.py -share/blender/scripts/addons/space_view3d_math_vis/utils.py -share/blender/scripts/addons/space_view3d_modifier_tools.py -share/blender/scripts/addons/space_view3d_pie_menus/ -share/blender/scripts/addons/space_view3d_pie_menus/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}/ -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_align_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_align_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_animation_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_animation_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_apply_transform_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_apply_transform_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_defaults_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_defaults_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_delete_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_delete_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_editor_switch_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_editor_switch_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_manipulator_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_manipulator_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_modes_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_modes_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_origin.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_origin.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_proportional_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_proportional_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_save_open_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_save_open_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_sculpt_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_sculpt_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_select_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_select_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_shading_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_shading_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_views_numpad_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_pie_menus/${MODPY_PYCACHE}pie_views_numpad_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_pie_menus/pie_align_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_animation_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_apply_transform_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_defaults_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_delete_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_editor_switch_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_manipulator_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_modes_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_origin.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_proportional_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_save_open_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_sculpt_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_select_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_shading_menu.py -share/blender/scripts/addons/space_view3d_pie_menus/pie_views_numpad_menu.py -share/blender/scripts/addons/space_view3d_spacebar_menu/ -share/blender/scripts/addons/space_view3d_spacebar_menu/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}/ -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}animation_menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}animation_menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}armature_menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}armature_menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}curve_menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}curve_menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}edit_mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}edit_mesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}object_menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}object_menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}snap_origin_cursor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}snap_origin_cursor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}transform_menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}transform_menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}view_menus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_spacebar_menu/${MODPY_PYCACHE}view_menus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_spacebar_menu/animation_menus.py -share/blender/scripts/addons/space_view3d_spacebar_menu/armature_menus.py -share/blender/scripts/addons/space_view3d_spacebar_menu/curve_menus.py -share/blender/scripts/addons/space_view3d_spacebar_menu/edit_mesh.py -share/blender/scripts/addons/space_view3d_spacebar_menu/object_menus.py -share/blender/scripts/addons/space_view3d_spacebar_menu/snap_origin_cursor.py -share/blender/scripts/addons/space_view3d_spacebar_menu/transform_menus.py -share/blender/scripts/addons/space_view3d_spacebar_menu/view_menus.py -share/blender/scripts/addons/space_view3d_stored_views/ -share/blender/scripts/addons/space_view3d_stored_views/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}/ -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}stored_views_test.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}stored_views_test.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/space_view3d_stored_views/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/space_view3d_stored_views/core.py -share/blender/scripts/addons/space_view3d_stored_views/io.py -share/blender/scripts/addons/space_view3d_stored_views/operators.py -share/blender/scripts/addons/space_view3d_stored_views/properties.py -share/blender/scripts/addons/space_view3d_stored_views/stored_views_test.py -share/blender/scripts/addons/space_view3d_stored_views/ui.py -share/blender/scripts/addons/sun_position/ -share/blender/scripts/addons/sun_position/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}/ -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}geo.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}geo.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}hdr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}hdr.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}north.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}north.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}sun_calc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}sun_calc.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}translations.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}translations.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}ui_sun.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/sun_position/${MODPY_PYCACHE}ui_sun.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/sun_position/geo.py -share/blender/scripts/addons/sun_position/hdr.py -share/blender/scripts/addons/sun_position/north.py -share/blender/scripts/addons/sun_position/properties.py -share/blender/scripts/addons/sun_position/sun_calc.py -share/blender/scripts/addons/sun_position/translations.py -share/blender/scripts/addons/sun_position/ui_sun.py -share/blender/scripts/addons/system_blend_info.py -share/blender/scripts/addons/system_demo_mode/ -share/blender/scripts/addons/system_demo_mode/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/system_demo_mode/${MODPY_PYCACHE}/ -share/blender/scripts/addons/system_demo_mode/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/system_demo_mode/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/system_demo_mode/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/system_demo_mode/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/system_demo_mode/${MODPY_PYCACHE}demo_mode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/system_demo_mode/${MODPY_PYCACHE}demo_mode.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/system_demo_mode/config.py -share/blender/scripts/addons/system_demo_mode/demo_mode.py -share/blender/scripts/addons/system_property_chart.py -share/blender/scripts/addons/ui_translate/ -share/blender/scripts/addons/ui_translate/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}/ -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}edit_translation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}edit_translation.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}update_addon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}update_addon.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}update_svn.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}update_svn.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}update_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/ui_translate/${MODPY_PYCACHE}update_ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/ui_translate/edit_translation.py -share/blender/scripts/addons/ui_translate/settings.py -share/blender/scripts/addons/ui_translate/update_addon.py -share/blender/scripts/addons/ui_translate/update_svn.py -share/blender/scripts/addons/ui_translate/update_ui.py -share/blender/scripts/addons/viewport_vr_preview/ -share/blender/scripts/addons/viewport_vr_preview/__init__.py -${MODPY_COMMENT}share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}/ -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}action_map.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}action_map.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}action_map_io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}action_map_io.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}defaults.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}defaults.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/action_map.py -share/blender/scripts/addons/viewport_vr_preview/action_map_io.py -share/blender/scripts/addons/viewport_vr_preview/configs/ -${MODPY_COMMENT}share/blender/scripts/addons/viewport_vr_preview/configs/${MODPY_PYCACHE}/ -share/blender/scripts/addons/viewport_vr_preview/configs/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/addons/viewport_vr_preview/configs/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/addons/viewport_vr_preview/configs/default.py -share/blender/scripts/addons/viewport_vr_preview/defaults.py -share/blender/scripts/addons/viewport_vr_preview/gui.py -share/blender/scripts/addons/viewport_vr_preview/operators.py -share/blender/scripts/addons/viewport_vr_preview/properties.py -share/blender/scripts/addons/viewport_vr_preview/versioning.py -share/blender/scripts/freestyle/ -share/blender/scripts/freestyle/modules/ -${MODPY_COMMENT}share/blender/scripts/freestyle/modules/${MODPY_PYCACHE}/ -share/blender/scripts/freestyle/modules/${MODPY_PYCACHE}parameter_editor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/${MODPY_PYCACHE}parameter_editor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/ -share/blender/scripts/freestyle/modules/freestyle/__init__.py -${MODPY_COMMENT}share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}/ -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}chainingiterators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}chainingiterators.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}predicates.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}predicates.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}shaders.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}shaders.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/modules/freestyle/chainingiterators.py -share/blender/scripts/freestyle/modules/freestyle/functions.py -share/blender/scripts/freestyle/modules/freestyle/predicates.py -share/blender/scripts/freestyle/modules/freestyle/shaders.py -share/blender/scripts/freestyle/modules/freestyle/types.py -share/blender/scripts/freestyle/modules/freestyle/utils.py -share/blender/scripts/freestyle/modules/parameter_editor.py -share/blender/scripts/freestyle/styles/ -${MODPY_COMMENT}share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}/ -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}anisotropic_diffusion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}anisotropic_diffusion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_and_causal_density.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_and_causal_density.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_density.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_density.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}backbone_stretcher.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}backbone_stretcher.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_circles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_circles.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_ellipses.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_ellipses.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_squares.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_squares.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}cartoon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}cartoon.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}contour.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}contour.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}curvature2d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}curvature2d.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_sketchy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_sketchy.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_smooth.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_smooth.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}haloing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}haloing.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}ignore_small_occlusions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}ignore_small_occlusions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}invisible_lines.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}invisible_lines.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}japanese_bigbrush.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}japanese_bigbrush.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}long_anisotropically_dense.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}long_anisotropically_dense.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}multiple_parameterization.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}multiple_parameterization.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}nature.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}nature.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}near_lines.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}near_lines.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}occluded_by_specific_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}occluded_by_specific_object.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}polygonalize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}polygonalize.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi0.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi0.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi0_not_external_contour.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi0_not_external_contour.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi1.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}qi2.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sequentialsplit_sketchy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sequentialsplit_sketchy.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_multiple_parameterization.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_multiple_parameterization.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_broken.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_broken.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_preserved.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_preserved.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_highest_2d_curvatures.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_highest_2d_curvatures.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_tvertices.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_tvertices.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}suggestive.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}suggestive.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}thickness_fof_depth_discontinuity.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}thickness_fof_depth_discontinuity.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}tipremover.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}tipremover.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}tvertex_remover.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}tvertex_remover.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}uniformpruning_zsort.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/freestyle/styles/${MODPY_PYCACHE}uniformpruning_zsort.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/freestyle/styles/anisotropic_diffusion.py -share/blender/scripts/freestyle/styles/apriori_and_causal_density.py -share/blender/scripts/freestyle/styles/apriori_density.py -share/blender/scripts/freestyle/styles/backbone_stretcher.py -share/blender/scripts/freestyle/styles/blueprint_circles.py -share/blender/scripts/freestyle/styles/blueprint_ellipses.py -share/blender/scripts/freestyle/styles/blueprint_squares.py -share/blender/scripts/freestyle/styles/cartoon.py -share/blender/scripts/freestyle/styles/contour.py -share/blender/scripts/freestyle/styles/curvature2d.py -share/blender/scripts/freestyle/styles/external_contour.py -share/blender/scripts/freestyle/styles/external_contour_sketchy.py -share/blender/scripts/freestyle/styles/external_contour_smooth.py -share/blender/scripts/freestyle/styles/haloing.py -share/blender/scripts/freestyle/styles/ignore_small_occlusions.py -share/blender/scripts/freestyle/styles/invisible_lines.py -share/blender/scripts/freestyle/styles/japanese_bigbrush.py -share/blender/scripts/freestyle/styles/long_anisotropically_dense.py -share/blender/scripts/freestyle/styles/multiple_parameterization.py -share/blender/scripts/freestyle/styles/nature.py -share/blender/scripts/freestyle/styles/near_lines.py -share/blender/scripts/freestyle/styles/occluded_by_specific_object.py -share/blender/scripts/freestyle/styles/polygonalize.py -share/blender/scripts/freestyle/styles/qi0.py -share/blender/scripts/freestyle/styles/qi0_not_external_contour.py -share/blender/scripts/freestyle/styles/qi1.py -share/blender/scripts/freestyle/styles/qi2.py -share/blender/scripts/freestyle/styles/sequentialsplit_sketchy.py -share/blender/scripts/freestyle/styles/sketchy_multiple_parameterization.py -share/blender/scripts/freestyle/styles/sketchy_topology_broken.py -share/blender/scripts/freestyle/styles/sketchy_topology_preserved.py -share/blender/scripts/freestyle/styles/split_at_highest_2d_curvatures.py -share/blender/scripts/freestyle/styles/split_at_tvertices.py -share/blender/scripts/freestyle/styles/suggestive.py -share/blender/scripts/freestyle/styles/thickness_fof_depth_discontinuity.py -share/blender/scripts/freestyle/styles/tipremover.py -share/blender/scripts/freestyle/styles/tvertex_remover.py -share/blender/scripts/freestyle/styles/uniformpruning_zsort.py -share/blender/scripts/modules/ -${MODPY_COMMENT}share/blender/scripts/modules/${MODPY_PYCACHE}/ -share/blender/scripts/modules/${MODPY_PYCACHE}addon_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}addon_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}animsys_refactor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}animsys_refactor.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}bl_app_template_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}bl_app_template_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}blend_render_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}blend_render_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}bpy_restrict_state.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}bpy_restrict_state.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}bpy_types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}bpy_types.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}console_python.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}console_python.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}console_shell.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}console_shell.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}graphviz_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}graphviz_export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}keyingsets_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}keyingsets_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}nodeitems_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}nodeitems_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}rna_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}rna_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}rna_keymap_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}rna_keymap_ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}rna_manual_reference.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}rna_manual_reference.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}rna_prop_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}rna_prop_ui.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}rna_xml.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}rna_xml.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/${MODPY_PYCACHE}sys_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/${MODPY_PYCACHE}sys_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/addon_utils.py -share/blender/scripts/modules/animsys_refactor.py -share/blender/scripts/modules/bl_app_override/ -share/blender/scripts/modules/bl_app_override/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bl_app_override/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_app_override/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_app_override/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_app_override/${MODPY_PYCACHE}helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_app_override/${MODPY_PYCACHE}helpers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_app_override/helpers.py -share/blender/scripts/modules/bl_app_template_utils.py -share/blender/scripts/modules/bl_console_utils/ -share/blender/scripts/modules/bl_console_utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bl_console_utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_console_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_console_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_console_utils/autocomplete/ -share/blender/scripts/modules/bl_console_utils/autocomplete/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_calltip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_calltip.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_import.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_import.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_namespace.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_namespace.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}intellisense.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}intellisense.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_console_utils/autocomplete/complete_calltip.py -share/blender/scripts/modules/bl_console_utils/autocomplete/complete_import.py -share/blender/scripts/modules/bl_console_utils/autocomplete/complete_namespace.py -share/blender/scripts/modules/bl_console_utils/autocomplete/intellisense.py -share/blender/scripts/modules/bl_i18n_utils/ -share/blender/scripts/modules/bl_i18n_utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}bl_extract_messages.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}bl_extract_messages.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}merge_po.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}merge_po.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings_user.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings_user.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_cli.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_cli.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_languages_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_languages_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_rtl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_rtl.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_spell_check.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_spell_check.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_i18n_utils/bl_extract_messages.py -share/blender/scripts/modules/bl_i18n_utils/merge_po.py -share/blender/scripts/modules/bl_i18n_utils/settings.py -share/blender/scripts/modules/bl_i18n_utils/settings_user.py -share/blender/scripts/modules/bl_i18n_utils/utils.py -share/blender/scripts/modules/bl_i18n_utils/utils_cli.py -share/blender/scripts/modules/bl_i18n_utils/utils_languages_menu.py -share/blender/scripts/modules/bl_i18n_utils/utils_rtl.py -share/blender/scripts/modules/bl_i18n_utils/utils_spell_check.py -share/blender/scripts/modules/bl_keymap_utils/ -share/blender/scripts/modules/bl_keymap_utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_from_toolbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_from_toolbar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_hierarchy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_hierarchy.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}platform_helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}platform_helpers.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_keymap_utils/io.py -share/blender/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py -share/blender/scripts/modules/bl_keymap_utils/keymap_hierarchy.py -share/blender/scripts/modules/bl_keymap_utils/platform_helpers.py -share/blender/scripts/modules/bl_keymap_utils/versioning.py -share/blender/scripts/modules/bl_previews_utils/ -${MODPY_COMMENT}share/blender/scripts/modules/bl_previews_utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_previews_utils/${MODPY_PYCACHE}bl_previews_render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_previews_utils/${MODPY_PYCACHE}bl_previews_render.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_previews_utils/bl_previews_render.py -share/blender/scripts/modules/bl_rna_utils/ -share/blender/scripts/modules/bl_rna_utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}data_path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}data_path.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_rna_utils/data_path.py -share/blender/scripts/modules/bl_ui_utils/ -share/blender/scripts/modules/bl_ui_utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}bug_report_url.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}bug_report_url.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bl_ui_utils/bug_report_url.py -share/blender/scripts/modules/blend_render_info.py -share/blender/scripts/modules/bpy/ -share/blender/scripts/modules/bpy/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bpy/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bpy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy/${MODPY_PYCACHE}ops.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy/${MODPY_PYCACHE}ops.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy/${MODPY_PYCACHE}path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy/${MODPY_PYCACHE}path.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy/ops.py -share/blender/scripts/modules/bpy/path.py -share/blender/scripts/modules/bpy/utils/ -share/blender/scripts/modules/bpy/utils/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bpy/utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bpy/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy/utils/${MODPY_PYCACHE}previews.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy/utils/${MODPY_PYCACHE}previews.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy/utils/${MODPY_PYCACHE}toolsystem.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy/utils/${MODPY_PYCACHE}toolsystem.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy/utils/previews.py -share/blender/scripts/modules/bpy/utils/toolsystem.py -share/blender/scripts/modules/bpy_extras/ -share/blender/scripts/modules/bpy_extras/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}anim_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}anim_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}asset_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}asset_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}id_map_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}id_map_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}image_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}image_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}io_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}io_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}keyconfig_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}keyconfig_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}mesh_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}mesh_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_shader_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_shader_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}object_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}object_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}view3d_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/${MODPY_PYCACHE}view3d_utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/anim_utils.py -share/blender/scripts/modules/bpy_extras/asset_utils.py -share/blender/scripts/modules/bpy_extras/id_map_utils.py -share/blender/scripts/modules/bpy_extras/image_utils.py -share/blender/scripts/modules/bpy_extras/io_utils.py -share/blender/scripts/modules/bpy_extras/keyconfig_utils.py -share/blender/scripts/modules/bpy_extras/mesh_utils.py -share/blender/scripts/modules/bpy_extras/node_shader_utils.py -share/blender/scripts/modules/bpy_extras/node_utils.py -share/blender/scripts/modules/bpy_extras/object_utils.py -share/blender/scripts/modules/bpy_extras/view3d_utils.py -share/blender/scripts/modules/bpy_extras/wm_utils/ -${MODPY_COMMENT}share/blender/scripts/modules/bpy_extras/wm_utils/${MODPY_PYCACHE}/ -share/blender/scripts/modules/bpy_extras/wm_utils/${MODPY_PYCACHE}progress_report.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/bpy_extras/wm_utils/${MODPY_PYCACHE}progress_report.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/bpy_extras/wm_utils/progress_report.py -share/blender/scripts/modules/bpy_restrict_state.py -share/blender/scripts/modules/bpy_types.py -share/blender/scripts/modules/console_python.py -share/blender/scripts/modules/console_shell.py -share/blender/scripts/modules/gpu_extras/ -share/blender/scripts/modules/gpu_extras/__init__.py -${MODPY_COMMENT}share/blender/scripts/modules/gpu_extras/${MODPY_PYCACHE}/ -share/blender/scripts/modules/gpu_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/gpu_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/gpu_extras/${MODPY_PYCACHE}batch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/gpu_extras/${MODPY_PYCACHE}batch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/gpu_extras/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/modules/gpu_extras/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/modules/gpu_extras/batch.py -share/blender/scripts/modules/gpu_extras/presets.py -share/blender/scripts/modules/graphviz_export.py -share/blender/scripts/modules/keyingsets_utils.py -share/blender/scripts/modules/nodeitems_utils.py -share/blender/scripts/modules/rna_info.py -share/blender/scripts/modules/rna_keymap_ui.py -share/blender/scripts/modules/rna_manual_reference.py -share/blender/scripts/modules/rna_prop_ui.py -share/blender/scripts/modules/rna_xml.py -share/blender/scripts/modules/sys_info.py -share/blender/scripts/presets/ -share/blender/scripts/presets/camera/ -share/blender/scripts/presets/camera/1_inch.py -share/blender/scripts/presets/camera/1_slash_1.8_inch.py -share/blender/scripts/presets/camera/1_slash_2.3_inch.py -share/blender/scripts/presets/camera/1_slash_2.5_inch.py -share/blender/scripts/presets/camera/1_slash_2.7_inch.py -share/blender/scripts/presets/camera/1_slash_3.2_inch.py -share/blender/scripts/presets/camera/2_slash_3_inch.py -share/blender/scripts/presets/camera/APS-C.py -share/blender/scripts/presets/camera/APS-C_(Canon).py -share/blender/scripts/presets/camera/APS-H_(Canon).py -share/blender/scripts/presets/camera/Analog_16mm.py -share/blender/scripts/presets/camera/Analog_35mm.py -share/blender/scripts/presets/camera/Analog_65mm.py -share/blender/scripts/presets/camera/Analog_IMAX.py -share/blender/scripts/presets/camera/Analog_Super_16.py -share/blender/scripts/presets/camera/Analog_Super_35.py -share/blender/scripts/presets/camera/Arri_Alexa_65.py -share/blender/scripts/presets/camera/Arri_Alexa_LF.py -share/blender/scripts/presets/camera/Arri_Alexa_Mini_&_SXT.py -share/blender/scripts/presets/camera/Blackmagic_Pocket_&_Studio.py -share/blender/scripts/presets/camera/Blackmagic_Pocket_4K.py -share/blender/scripts/presets/camera/Blackmagic_Pocket_6k.py -share/blender/scripts/presets/camera/Blackmagic_URSA_4.6K.py -share/blender/scripts/presets/camera/Foveon_(Sigma).py -share/blender/scripts/presets/camera/Fullframe.py -share/blender/scripts/presets/camera/MFT.py -share/blender/scripts/presets/camera/Medium-format_(Hasselblad).py -share/blender/scripts/presets/camera/RED_Dragon_5K.py -share/blender/scripts/presets/camera/RED_Dragon_6K.py -share/blender/scripts/presets/camera/RED_Helium_8K.py -share/blender/scripts/presets/camera/RED_Monstro_8K.py -${MODPY_COMMENT}share/blender/scripts/presets/camera/${MODPY_PYCACHE}/ -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cloth/ -share/blender/scripts/presets/cloth/Cotton.py -share/blender/scripts/presets/cloth/Denim.py -share/blender/scripts/presets/cloth/Leather.py -share/blender/scripts/presets/cloth/Rubber.py -share/blender/scripts/presets/cloth/Silk.py -${MODPY_COMMENT}share/blender/scripts/presets/cloth/${MODPY_PYCACHE}/ -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Cotton.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Cotton.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Denim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Denim.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Leather.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Leather.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Rubber.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Rubber.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Silk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cloth/${MODPY_PYCACHE}Silk.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/ -share/blender/scripts/presets/cycles/integrator/ -share/blender/scripts/presets/cycles/integrator/Default.py -share/blender/scripts/presets/cycles/integrator/Direct_Light.py -share/blender/scripts/presets/cycles/integrator/Fast_Global_Illumination.py -share/blender/scripts/presets/cycles/integrator/Full_Global_Illumination.py -share/blender/scripts/presets/cycles/integrator/Limited_Global_Illumination.py -${MODPY_COMMENT}share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}/ -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Direct_Light.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Direct_Light.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Fast_Global_Illumination.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Fast_Global_Illumination.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Full_Global_Illumination.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Full_Global_Illumination.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Limited_Global_Illumination.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Limited_Global_Illumination.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/performance/ -share/blender/scripts/presets/cycles/performance/Default.py -share/blender/scripts/presets/cycles/performance/Faster_Render.py -share/blender/scripts/presets/cycles/performance/Lower_Memory.py -${MODPY_COMMENT}share/blender/scripts/presets/cycles/performance/${MODPY_PYCACHE}/ -share/blender/scripts/presets/cycles/performance/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/performance/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/performance/${MODPY_PYCACHE}Faster_Render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/performance/${MODPY_PYCACHE}Faster_Render.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/performance/${MODPY_PYCACHE}Lower_Memory.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/performance/${MODPY_PYCACHE}Lower_Memory.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/sampling/ -share/blender/scripts/presets/cycles/sampling/Final.py -share/blender/scripts/presets/cycles/sampling/Preview.py -${MODPY_COMMENT}share/blender/scripts/presets/cycles/sampling/${MODPY_PYCACHE}/ -share/blender/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/viewport_sampling/ -share/blender/scripts/presets/cycles/viewport_sampling/Final.py -share/blender/scripts/presets/cycles/viewport_sampling/Preview.py -${MODPY_COMMENT}share/blender/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}/ -share/blender/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/ffmpeg/ -share/blender/scripts/presets/ffmpeg/DVD_(note_colon__this_changes_render_resolution).py -share/blender/scripts/presets/ffmpeg/H264_in_MP4.py -share/blender/scripts/presets/ffmpeg/H264_in_Matroska.py -share/blender/scripts/presets/ffmpeg/H264_in_Matroska_for_scrubbing.py -share/blender/scripts/presets/ffmpeg/Ogg_Theora.py -share/blender/scripts/presets/ffmpeg/WebM_(VP9+Opus).py -share/blender/scripts/presets/ffmpeg/Xvid.py -${MODPY_COMMENT}share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}/ -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}DVD_(note_colon__this_changes_render_resolution).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}DVD_(note_colon__this_changes_render_resolution).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_MP4.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_MP4.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska_for_scrubbing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska_for_scrubbing.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}Ogg_Theora.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}Ogg_Theora.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}WebM_(VP9+Opus).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}WebM_(VP9+Opus).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}Xvid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/ffmpeg/${MODPY_PYCACHE}Xvid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/fluid/ -share/blender/scripts/presets/fluid/Honey.py -share/blender/scripts/presets/fluid/Oil.py -share/blender/scripts/presets/fluid/Water.py -${MODPY_COMMENT}share/blender/scripts/presets/fluid/${MODPY_PYCACHE}/ -share/blender/scripts/presets/fluid/${MODPY_PYCACHE}Honey.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/fluid/${MODPY_PYCACHE}Honey.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/fluid/${MODPY_PYCACHE}Oil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/fluid/${MODPY_PYCACHE}Oil.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/fluid/${MODPY_PYCACHE}Water.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/fluid/${MODPY_PYCACHE}Water.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/ -share/blender/scripts/presets/framerate/120.py -share/blender/scripts/presets/framerate/23.98.py -share/blender/scripts/presets/framerate/24.py -share/blender/scripts/presets/framerate/240.py -share/blender/scripts/presets/framerate/25.py -share/blender/scripts/presets/framerate/29.97.py -share/blender/scripts/presets/framerate/30.py -share/blender/scripts/presets/framerate/50.py -share/blender/scripts/presets/framerate/59.94.py -share/blender/scripts/presets/framerate/60.py -share/blender/scripts/presets/framerate/Custom.py -${MODPY_COMMENT}share/blender/scripts/presets/framerate/${MODPY_PYCACHE}/ -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}120.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}120.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}23.98.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}23.98.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}24.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}24.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}240.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}240.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}25.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}25.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}29.97.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}29.97.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}30.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}30.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}50.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}50.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}59.94.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}59.94.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}60.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}60.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}Custom.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/framerate/${MODPY_PYCACHE}Custom.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/gpencil_material/ -share/blender/scripts/presets/gpencil_material/Fill_Only.py -share/blender/scripts/presets/gpencil_material/Stroke_Only.py -share/blender/scripts/presets/gpencil_material/Stroke_and_Fill.py -${MODPY_COMMENT}share/blender/scripts/presets/gpencil_material/${MODPY_PYCACHE}/ -share/blender/scripts/presets/gpencil_material/${MODPY_PYCACHE}Fill_Only.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/gpencil_material/${MODPY_PYCACHE}Fill_Only.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_Only.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_Only.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_and_Fill.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_and_Fill.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/hair_dynamics/ -share/blender/scripts/presets/hair_dynamics/Default.py -${MODPY_COMMENT}share/blender/scripts/presets/hair_dynamics/${MODPY_PYCACHE}/ -share/blender/scripts/presets/hair_dynamics/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/hair_dynamics/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/interface_theme/ -share/blender/scripts/presets/interface_theme/Blender_Dark.xml -share/blender/scripts/presets/interface_theme/Blender_Light.xml -share/blender/scripts/presets/keyconfig/ -share/blender/scripts/presets/keyconfig/Blender.py -share/blender/scripts/presets/keyconfig/Blender_27x.py -share/blender/scripts/presets/keyconfig/Industry_Compatible.py -${MODPY_COMMENT}share/blender/scripts/presets/keyconfig/${MODPY_PYCACHE}/ -share/blender/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender_27x.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender_27x.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/keyconfig/${MODPY_PYCACHE}Industry_Compatible.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/keyconfig/${MODPY_PYCACHE}Industry_Compatible.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/keyconfig/keymap_data/ -${MODPY_COMMENT}share/blender/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}/ -share/blender/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}blender_default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}blender_default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}industry_compatible_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}industry_compatible_data.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/keyconfig/keymap_data/blender_default.py -share/blender/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py -share/blender/scripts/presets/operator/ -share/blender/scripts/presets/operator/wm.collada_export/ -${MODPY_COMMENT}share/blender/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}/ -share/blender/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_rigged.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_rigged.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_static.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_static.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/operator/wm.collada_export/sl_plus_open_sim_rigged.py -share/blender/scripts/presets/operator/wm.collada_export/sl_plus_open_sim_static.py -share/blender/scripts/presets/render/ -share/blender/scripts/presets/render/4K_DCI_2160p.py -share/blender/scripts/presets/render/4K_UHDTV_2160p.py -share/blender/scripts/presets/render/4K_UW_1600p.py -share/blender/scripts/presets/render/DVCPRO_HD_1080p.py -share/blender/scripts/presets/render/DVCPRO_HD_720p.py -share/blender/scripts/presets/render/HDTV_1080p.py -share/blender/scripts/presets/render/HDTV_720p.py -share/blender/scripts/presets/render/HDV_1080p.py -share/blender/scripts/presets/render/HDV_NTSC_1080p.py -share/blender/scripts/presets/render/HDV_PAL_1080p.py -share/blender/scripts/presets/render/TV_NTSC_16_colon_9.py -share/blender/scripts/presets/render/TV_NTSC_4_colon_3.py -share/blender/scripts/presets/render/TV_PAL_16_colon_9.py -share/blender/scripts/presets/render/TV_PAL_4_colon_3.py -${MODPY_COMMENT}share/blender/scripts/presets/render/${MODPY_PYCACHE}/ -share/blender/scripts/presets/render/${MODPY_PYCACHE}4K_DCI_2160p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}4K_DCI_2160p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}4K_UHDTV_2160p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}4K_UHDTV_2160p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}4K_UW_1600p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}4K_UW_1600p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_1080p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_720p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_720p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDTV_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDTV_1080p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDTV_720p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDTV_720p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDV_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDV_1080p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDV_NTSC_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDV_NTSC_1080p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDV_PAL_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}HDV_PAL_1080p.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_4_colon_3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_4_colon_3.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_4_colon_3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_4_colon_3.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/safe_areas/ -share/blender/scripts/presets/safe_areas/14_colon_9_in_16_colon_9.py -share/blender/scripts/presets/safe_areas/16_colon_9.py -share/blender/scripts/presets/safe_areas/4_colon_3_in_16_colon_9.py -${MODPY_COMMENT}share/blender/scripts/presets/safe_areas/${MODPY_PYCACHE}/ -share/blender/scripts/presets/safe_areas/${MODPY_PYCACHE}14_colon_9_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/safe_areas/${MODPY_PYCACHE}14_colon_9_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/safe_areas/${MODPY_PYCACHE}16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/safe_areas/${MODPY_PYCACHE}16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/safe_areas/${MODPY_PYCACHE}4_colon_3_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/safe_areas/${MODPY_PYCACHE}4_colon_3_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/ -${MODPY_COMMENT}share/blender/scripts/presets/sss/${MODPY_PYCACHE}/ -share/blender/scripts/presets/sss/${MODPY_PYCACHE}apple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}apple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}chicken.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}chicken.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}cream.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}cream.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}ketchup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}ketchup.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}marble.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}marble.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}potato.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}potato.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}skim_milk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}skim_milk.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}skin1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}skin1.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}skin2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}skin2.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/${MODPY_PYCACHE}whole_milk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/sss/${MODPY_PYCACHE}whole_milk.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/sss/apple.py -share/blender/scripts/presets/sss/chicken.py -share/blender/scripts/presets/sss/cream.py -share/blender/scripts/presets/sss/ketchup.py -share/blender/scripts/presets/sss/marble.py -share/blender/scripts/presets/sss/potato.py -share/blender/scripts/presets/sss/skim_milk.py -share/blender/scripts/presets/sss/skin1.py -share/blender/scripts/presets/sss/skin2.py -share/blender/scripts/presets/sss/whole_milk.py -share/blender/scripts/presets/tracking_camera/ -share/blender/scripts/presets/tracking_camera/1_inch.py -share/blender/scripts/presets/tracking_camera/1_slash_1.8_inch.py -share/blender/scripts/presets/tracking_camera/1_slash_2.3_inch.py -share/blender/scripts/presets/tracking_camera/1_slash_2.5_inch.py -share/blender/scripts/presets/tracking_camera/1_slash_2.7_inch.py -share/blender/scripts/presets/tracking_camera/1_slash_3.2_inch.py -share/blender/scripts/presets/tracking_camera/2_slash_3_inch.py -share/blender/scripts/presets/tracking_camera/APS-C.py -share/blender/scripts/presets/tracking_camera/APS-C_(Canon).py -share/blender/scripts/presets/tracking_camera/APS-H_(Canon).py -share/blender/scripts/presets/tracking_camera/Analog_16mm.py -share/blender/scripts/presets/tracking_camera/Analog_35mm.py -share/blender/scripts/presets/tracking_camera/Analog_65mm.py -share/blender/scripts/presets/tracking_camera/Analog_IMAX.py -share/blender/scripts/presets/tracking_camera/Analog_Super_16.py -share/blender/scripts/presets/tracking_camera/Analog_Super_35.py -share/blender/scripts/presets/tracking_camera/Arri_Alexa_65.py -share/blender/scripts/presets/tracking_camera/Arri_Alexa_LF.py -share/blender/scripts/presets/tracking_camera/Arri_Alexa_Mini_&_SXT.py -share/blender/scripts/presets/tracking_camera/Blackmagic_Pocket_&_Studio.py -share/blender/scripts/presets/tracking_camera/Blackmagic_Pocket_4K.py -share/blender/scripts/presets/tracking_camera/Blackmagic_Pocket_6k.py -share/blender/scripts/presets/tracking_camera/Blackmagic_URSA_4.6K.py -share/blender/scripts/presets/tracking_camera/Foveon_(Sigma).py -share/blender/scripts/presets/tracking_camera/Fullframe.py -share/blender/scripts/presets/tracking_camera/MFT.py -share/blender/scripts/presets/tracking_camera/Medium-format_(Hasselblad).py -share/blender/scripts/presets/tracking_camera/RED_Dragon_5K.py -share/blender/scripts/presets/tracking_camera/RED_Dragon_6K.py -share/blender/scripts/presets/tracking_camera/RED_Helium_8K.py -share/blender/scripts/presets/tracking_camera/RED_Monstro_8K.py -${MODPY_COMMENT}share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}/ -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_settings/ -share/blender/scripts/presets/tracking_settings/Blurry_Footage.py -share/blender/scripts/presets/tracking_settings/Default.py -share/blender/scripts/presets/tracking_settings/Fast_Motion.py -share/blender/scripts/presets/tracking_settings/Planar.py -${MODPY_COMMENT}share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}/ -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Blurry_Footage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Blurry_Footage.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Fast_Motion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Fast_Motion.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Planar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_settings/${MODPY_PYCACHE}Planar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_track_color/ -share/blender/scripts/presets/tracking_track_color/Default.py -share/blender/scripts/presets/tracking_track_color/Far_Plane.py -share/blender/scripts/presets/tracking_track_color/Near_Plane.py -share/blender/scripts/presets/tracking_track_color/Object.py -${MODPY_COMMENT}share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}/ -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Far_Plane.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Far_Plane.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Near_Plane.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Near_Plane.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Object.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/ -${MODPY_COMMENT}share/blender/scripts/startup/${MODPY_PYCACHE}/ -share/blender/scripts/startup/${MODPY_PYCACHE}keyingsets_builtins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/${MODPY_PYCACHE}keyingsets_builtins.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/${MODPY_PYCACHE}nodeitems_builtins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/${MODPY_PYCACHE}nodeitems_builtins.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_app_templates_system/ -share/blender/scripts/startup/bl_app_templates_system/2D_Animation/ -share/blender/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py -${MODPY_COMMENT}share/blender/scripts/startup/bl_app_templates_system/2D_Animation/${MODPY_PYCACHE}/ -share/blender/scripts/startup/bl_app_templates_system/2D_Animation/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_app_templates_system/2D_Animation/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_app_templates_system/2D_Animation/startup.blend -share/blender/scripts/startup/bl_app_templates_system/Sculpting/ -share/blender/scripts/startup/bl_app_templates_system/Sculpting/__init__.py -${MODPY_COMMENT}share/blender/scripts/startup/bl_app_templates_system/Sculpting/${MODPY_PYCACHE}/ -share/blender/scripts/startup/bl_app_templates_system/Sculpting/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_app_templates_system/Sculpting/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_app_templates_system/Sculpting/startup.blend -share/blender/scripts/startup/bl_app_templates_system/VFX/ -share/blender/scripts/startup/bl_app_templates_system/VFX/startup.blend -share/blender/scripts/startup/bl_app_templates_system/Video_Editing/ -share/blender/scripts/startup/bl_app_templates_system/Video_Editing/__init__.py -${MODPY_COMMENT}share/blender/scripts/startup/bl_app_templates_system/Video_Editing/${MODPY_PYCACHE}/ -share/blender/scripts/startup/bl_app_templates_system/Video_Editing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_app_templates_system/Video_Editing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_app_templates_system/Video_Editing/startup.blend -share/blender/scripts/startup/bl_operators/ -share/blender/scripts/startup/bl_operators/__init__.py -${MODPY_COMMENT}share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}/ -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}add_mesh_torus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}add_mesh_torus.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}anim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}anim.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}assets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}assets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}clip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}clip.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}console.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}console.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}constraint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}constraint.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}file.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}file.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}freestyle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}freestyle.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}geometry_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}geometry_nodes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}node.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object_align.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object_align.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object_quick_effects.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object_quick_effects.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object_randomize_transform.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}object_randomize_transform.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}rigidbody.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}rigidbody.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}screen_play_rendered_anim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}screen_play_rendered_anim.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}sequencer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}sequencer.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}spreadsheet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}spreadsheet.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}userpref.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}userpref.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_follow_active.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_follow_active.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_lightmap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_lightmap.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}vertexpaint_dirt.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}vertexpaint_dirt.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}view3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}view3d.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}wm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/${MODPY_PYCACHE}wm.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/add_mesh_torus.py -share/blender/scripts/startup/bl_operators/anim.py -share/blender/scripts/startup/bl_operators/assets.py -share/blender/scripts/startup/bl_operators/bmesh/ -${MODPY_COMMENT}share/blender/scripts/startup/bl_operators/bmesh/${MODPY_PYCACHE}/ -share/blender/scripts/startup/bl_operators/bmesh/${MODPY_PYCACHE}find_adjacent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_operators/bmesh/${MODPY_PYCACHE}find_adjacent.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_operators/bmesh/find_adjacent.py -share/blender/scripts/startup/bl_operators/clip.py -share/blender/scripts/startup/bl_operators/console.py -share/blender/scripts/startup/bl_operators/constraint.py -share/blender/scripts/startup/bl_operators/file.py -share/blender/scripts/startup/bl_operators/freestyle.py -share/blender/scripts/startup/bl_operators/geometry_nodes.py -share/blender/scripts/startup/bl_operators/image.py -share/blender/scripts/startup/bl_operators/mesh.py -share/blender/scripts/startup/bl_operators/node.py -share/blender/scripts/startup/bl_operators/object.py -share/blender/scripts/startup/bl_operators/object_align.py -share/blender/scripts/startup/bl_operators/object_quick_effects.py -share/blender/scripts/startup/bl_operators/object_randomize_transform.py -share/blender/scripts/startup/bl_operators/presets.py -share/blender/scripts/startup/bl_operators/rigidbody.py -share/blender/scripts/startup/bl_operators/screen_play_rendered_anim.py -share/blender/scripts/startup/bl_operators/sequencer.py -share/blender/scripts/startup/bl_operators/spreadsheet.py -share/blender/scripts/startup/bl_operators/userpref.py -share/blender/scripts/startup/bl_operators/uvcalc_follow_active.py -share/blender/scripts/startup/bl_operators/uvcalc_lightmap.py -share/blender/scripts/startup/bl_operators/vertexpaint_dirt.py -share/blender/scripts/startup/bl_operators/view3d.py -share/blender/scripts/startup/bl_operators/wm.py -share/blender/scripts/startup/bl_ui/ -share/blender/scripts/startup/bl_ui/__init__.py -${MODPY_COMMENT}share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}/ -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_animviz.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_animviz.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_collection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_collection.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_constraint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_constraint.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_armature.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_armature.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_bone.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_bone.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_camera.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curve.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curve.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curves.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curves.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_empty.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_empty.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_gpencil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_gpencil.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lattice.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lattice.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_light.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_light.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lightprobe.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lightprobe.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_mesh.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_metaball.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_metaball.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_modifier.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_modifier.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_pointcloud.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_pointcloud.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_shaderfx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_shaderfx.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_speaker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_speaker.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_volume.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_volume.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_freestyle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_freestyle.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_grease_pencil_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_grease_pencil_common.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_mask_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_mask_common.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material_gpencil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material_gpencil.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_object.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_output.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_output.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_paint_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_paint_common.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_particle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_particle.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_cloth.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_cloth.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_common.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_dynamicpaint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_dynamicpaint.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_field.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_field.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_fluid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_fluid.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody_constraint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody_constraint.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_softbody.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_softbody.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_render.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_scene.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_scene.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_texture.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_view_layer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_view_layer.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_workspace.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_workspace.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_world.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_world.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_clip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_clip.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_console.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_console.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_dopesheet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_dopesheet.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_filebrowser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_filebrowser.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_graph.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_graph.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_image.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_info.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_nla.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_nla.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_node.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_outliner.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_outliner.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_properties.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_sequencer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_sequencer.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_spreadsheet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_spreadsheet.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_statusbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_statusbar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_text.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_text.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_time.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_time.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_common.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_toolbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_toolbar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_topbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_topbar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_userpref.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_userpref.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d_toolbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d_toolbar.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/startup/bl_ui/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/startup/bl_ui/properties_animviz.py -share/blender/scripts/startup/bl_ui/properties_collection.py -share/blender/scripts/startup/bl_ui/properties_constraint.py -share/blender/scripts/startup/bl_ui/properties_data_armature.py -share/blender/scripts/startup/bl_ui/properties_data_bone.py -share/blender/scripts/startup/bl_ui/properties_data_camera.py -share/blender/scripts/startup/bl_ui/properties_data_curve.py -share/blender/scripts/startup/bl_ui/properties_data_curves.py -share/blender/scripts/startup/bl_ui/properties_data_empty.py -share/blender/scripts/startup/bl_ui/properties_data_gpencil.py -share/blender/scripts/startup/bl_ui/properties_data_lattice.py -share/blender/scripts/startup/bl_ui/properties_data_light.py -share/blender/scripts/startup/bl_ui/properties_data_lightprobe.py -share/blender/scripts/startup/bl_ui/properties_data_mesh.py -share/blender/scripts/startup/bl_ui/properties_data_metaball.py -share/blender/scripts/startup/bl_ui/properties_data_modifier.py -share/blender/scripts/startup/bl_ui/properties_data_pointcloud.py -share/blender/scripts/startup/bl_ui/properties_data_shaderfx.py -share/blender/scripts/startup/bl_ui/properties_data_speaker.py -share/blender/scripts/startup/bl_ui/properties_data_volume.py -share/blender/scripts/startup/bl_ui/properties_freestyle.py -share/blender/scripts/startup/bl_ui/properties_grease_pencil_common.py -share/blender/scripts/startup/bl_ui/properties_mask_common.py -share/blender/scripts/startup/bl_ui/properties_material.py -share/blender/scripts/startup/bl_ui/properties_material_gpencil.py -share/blender/scripts/startup/bl_ui/properties_object.py -share/blender/scripts/startup/bl_ui/properties_output.py -share/blender/scripts/startup/bl_ui/properties_paint_common.py -share/blender/scripts/startup/bl_ui/properties_particle.py -share/blender/scripts/startup/bl_ui/properties_physics_cloth.py -share/blender/scripts/startup/bl_ui/properties_physics_common.py -share/blender/scripts/startup/bl_ui/properties_physics_dynamicpaint.py -share/blender/scripts/startup/bl_ui/properties_physics_field.py -share/blender/scripts/startup/bl_ui/properties_physics_fluid.py -share/blender/scripts/startup/bl_ui/properties_physics_rigidbody.py -share/blender/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py -share/blender/scripts/startup/bl_ui/properties_physics_softbody.py -share/blender/scripts/startup/bl_ui/properties_render.py -share/blender/scripts/startup/bl_ui/properties_scene.py -share/blender/scripts/startup/bl_ui/properties_texture.py -share/blender/scripts/startup/bl_ui/properties_view_layer.py -share/blender/scripts/startup/bl_ui/properties_workspace.py -share/blender/scripts/startup/bl_ui/properties_world.py -share/blender/scripts/startup/bl_ui/space_clip.py -share/blender/scripts/startup/bl_ui/space_console.py -share/blender/scripts/startup/bl_ui/space_dopesheet.py -share/blender/scripts/startup/bl_ui/space_filebrowser.py -share/blender/scripts/startup/bl_ui/space_graph.py -share/blender/scripts/startup/bl_ui/space_image.py -share/blender/scripts/startup/bl_ui/space_info.py -share/blender/scripts/startup/bl_ui/space_nla.py -share/blender/scripts/startup/bl_ui/space_node.py -share/blender/scripts/startup/bl_ui/space_outliner.py -share/blender/scripts/startup/bl_ui/space_properties.py -share/blender/scripts/startup/bl_ui/space_sequencer.py -share/blender/scripts/startup/bl_ui/space_spreadsheet.py -share/blender/scripts/startup/bl_ui/space_statusbar.py -share/blender/scripts/startup/bl_ui/space_text.py -share/blender/scripts/startup/bl_ui/space_time.py -share/blender/scripts/startup/bl_ui/space_toolsystem_common.py -share/blender/scripts/startup/bl_ui/space_toolsystem_toolbar.py -share/blender/scripts/startup/bl_ui/space_topbar.py -share/blender/scripts/startup/bl_ui/space_userpref.py -share/blender/scripts/startup/bl_ui/space_view3d.py -share/blender/scripts/startup/bl_ui/space_view3d_toolbar.py -share/blender/scripts/startup/bl_ui/utils.py -share/blender/scripts/startup/keyingsets_builtins.py -share/blender/scripts/startup/nodeitems_builtins.py -share/blender/scripts/templates_osl/ -share/blender/scripts/templates_osl/basic_shader.osl -share/blender/scripts/templates_osl/empty_shader.osl -share/blender/scripts/templates_osl/gabor_noise.osl -share/blender/scripts/templates_osl/lyapunov_texture.osl -share/blender/scripts/templates_osl/noise.osl -share/blender/scripts/templates_osl/ramp_closure.osl -share/blender/scripts/templates_py/ -${MODPY_COMMENT}share/blender/scripts/templates_py/${MODPY_PYCACHE}/ -share/blender/scripts/templates_py/${MODPY_PYCACHE}addon_add_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}addon_add_object.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}background_job.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}background_job.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}batch_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}batch_export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple_editmode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple_editmode.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}builtin_keyingset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}builtin_keyingset.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}custom_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}custom_nodes.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}driver_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}driver_functions.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}external_script_stub.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}external_script_stub.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_custom_geometry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_custom_geometry.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator_target.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}gizmo_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}image_processing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}image_processing.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_file_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_file_export.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_file_import.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_file_import.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_add.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_add.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_uv.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_draw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_draw.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_timer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_timer.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d_raycast.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d_raycast.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_node.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}operator_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_list.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_list.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_list_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_list_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_menu_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_menu_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_panel.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_panel_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_panel_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_pie_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_pie_menu.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_previews_custom_icon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_previews_custom_icon.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_previews_dynamic_enum.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_previews_dynamic_enum.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_tool_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} -share/blender/scripts/templates_py/${MODPY_PYCACHE}ui_tool_simple.${MODPY_PYC_MAGIC_TAG}pyc -share/blender/scripts/templates_py/addon_add_object.py -share/blender/scripts/templates_py/background_job.py -share/blender/scripts/templates_py/batch_export.py -share/blender/scripts/templates_py/bmesh_simple.py -share/blender/scripts/templates_py/bmesh_simple_editmode.py -share/blender/scripts/templates_py/builtin_keyingset.py -share/blender/scripts/templates_py/custom_nodes.py -share/blender/scripts/templates_py/driver_functions.py -share/blender/scripts/templates_py/external_script_stub.py -share/blender/scripts/templates_py/gizmo_custom_geometry.py -share/blender/scripts/templates_py/gizmo_operator.py -share/blender/scripts/templates_py/gizmo_operator_target.py -share/blender/scripts/templates_py/gizmo_simple.py -share/blender/scripts/templates_py/image_processing.py -share/blender/scripts/templates_py/operator_file_export.py -share/blender/scripts/templates_py/operator_file_import.py -share/blender/scripts/templates_py/operator_mesh_add.py -share/blender/scripts/templates_py/operator_mesh_uv.py -share/blender/scripts/templates_py/operator_modal.py -share/blender/scripts/templates_py/operator_modal_draw.py -share/blender/scripts/templates_py/operator_modal_timer.py -share/blender/scripts/templates_py/operator_modal_view3d.py -share/blender/scripts/templates_py/operator_modal_view3d_raycast.py -share/blender/scripts/templates_py/operator_node.py -share/blender/scripts/templates_py/operator_simple.py -share/blender/scripts/templates_py/ui_list.py -share/blender/scripts/templates_py/ui_list_simple.py -share/blender/scripts/templates_py/ui_menu.py -share/blender/scripts/templates_py/ui_menu_simple.py -share/blender/scripts/templates_py/ui_panel.py -share/blender/scripts/templates_py/ui_panel_simple.py -share/blender/scripts/templates_py/ui_pie_menu.py -share/blender/scripts/templates_py/ui_previews_custom_icon.py -share/blender/scripts/templates_py/ui_previews_dynamic_enum.py -share/blender/scripts/templates_py/ui_tool_simple.py +share/blender/4.4/ +share/blender/4.4/datafiles/ +share/blender/4.4/datafiles/assets/ +share/blender/4.4/datafiles/assets/LICENSE +share/blender/4.4/datafiles/assets/blender_assets.cats.txt +share/blender/4.4/datafiles/assets/brushes/ +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-curve_sculpt.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-gp_draw.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-gp_sculpt.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-gp_vertex.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-gp_weight.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-mesh_sculpt.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-mesh_texture.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-mesh_vertex.blend +share/blender/4.4/datafiles/assets/brushes/essentials_brushes-mesh_weight.blend +share/blender/4.4/datafiles/assets/geometry_nodes/ +share/blender/4.4/datafiles/assets/geometry_nodes/procedural_hair_node_assets.blend +share/blender/4.4/datafiles/assets/geometry_nodes/smooth_by_angle.blend +share/blender/4.4/datafiles/colormanagement/ +share/blender/4.4/datafiles/colormanagement/config.ocio +share/blender/4.4/datafiles/colormanagement/filmic/ +share/blender/4.4/datafiles/colormanagement/filmic/filmic_desat_33.cube +share/blender/4.4/datafiles/colormanagement/filmic/filmic_to_0-35_1-30.spi1d +share/blender/4.4/datafiles/colormanagement/filmic/filmic_to_0-48_1-09.spi1d +share/blender/4.4/datafiles/colormanagement/filmic/filmic_to_0-60_1-04.spi1d +share/blender/4.4/datafiles/colormanagement/filmic/filmic_to_0-70_1-03.spi1d +share/blender/4.4/datafiles/colormanagement/filmic/filmic_to_0-85_1-011.spi1d +share/blender/4.4/datafiles/colormanagement/filmic/filmic_to_0.99_1-0075.spi1d +share/blender/4.4/datafiles/colormanagement/filmic/filmic_to_1.20_1-00.spi1d +share/blender/4.4/datafiles/colormanagement/luts/ +share/blender/4.4/datafiles/colormanagement/luts/AgX_Base_P3.cube +share/blender/4.4/datafiles/colormanagement/luts/AgX_Base_Rec2020.cube +share/blender/4.4/datafiles/colormanagement/luts/AgX_Base_sRGB.cube +share/blender/4.4/datafiles/colormanagement/luts/AgX_False_Color.spi1d +share/blender/4.4/datafiles/colormanagement/luts/Guard_Rail_Shaper_EOTF.spi1d +share/blender/4.4/datafiles/colormanagement/luts/Inverse_AgX_Base_Rec2020.cube +share/blender/4.4/datafiles/colormanagement/luts/luminance_compensation_bt2020.cube +share/blender/4.4/datafiles/colormanagement/luts/luminance_compensation_p3.cube +share/blender/4.4/datafiles/colormanagement/luts/luminance_compensation_srgb.cube +share/blender/4.4/datafiles/colormanagement/luts/pbrNeutral.cube +share/blender/4.4/datafiles/colormanagement/luts/xyz_E_to_D65.spimtx +share/blender/4.4/datafiles/fonts/ +share/blender/4.4/datafiles/fonts/DejaVuSansMono.ttf +share/blender/4.4/datafiles/fonts/Inter.ttf +share/blender/4.4/datafiles/fonts/Noto Sans CJK Regular.ttf +share/blender/4.4/datafiles/fonts/NotoEmoji-VariableFont_wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansArabic-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansArmenian-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansBengali-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansDevanagari-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansEthiopic-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansGeorgian-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansGujarati-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansGurmukhi-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansHebrew-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansJavanese-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansKannada-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansKhmer-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansMalayalam-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansMath-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansMyanmar-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansSymbols-VariableFont_wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansSymbols2-Regular.ttf +share/blender/4.4/datafiles/fonts/NotoSansTamil-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansTelugu-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/NotoSansThai-VariableFont_wdth,wght.ttf +share/blender/4.4/datafiles/fonts/lastresort.ttf +share/blender/4.4/datafiles/icons/ +share/blender/4.4/datafiles/icons/brush.generic.dat +share/blender/4.4/datafiles/icons/brush.gpencil_draw.erase.dat +share/blender/4.4/datafiles/icons/brush.gpencil_draw.fill.dat +share/blender/4.4/datafiles/icons/brush.paint_texture.clone.dat +share/blender/4.4/datafiles/icons/brush.paint_texture.fill.dat +share/blender/4.4/datafiles/icons/brush.paint_texture.mask.dat +share/blender/4.4/datafiles/icons/brush.paint_texture.smear.dat +share/blender/4.4/datafiles/icons/brush.paint_texture.soften.dat +share/blender/4.4/datafiles/icons/brush.paint_vertex.average.dat +share/blender/4.4/datafiles/icons/brush.paint_vertex.blur.dat +share/blender/4.4/datafiles/icons/brush.paint_vertex.replace.dat +share/blender/4.4/datafiles/icons/brush.paint_vertex.smear.dat +share/blender/4.4/datafiles/icons/brush.paint_weight.average.dat +share/blender/4.4/datafiles/icons/brush.paint_weight.blur.dat +share/blender/4.4/datafiles/icons/brush.paint_weight.smear.dat +share/blender/4.4/datafiles/icons/brush.particle.add.dat +share/blender/4.4/datafiles/icons/brush.particle.comb.dat +share/blender/4.4/datafiles/icons/brush.particle.cut.dat +share/blender/4.4/datafiles/icons/brush.particle.length.dat +share/blender/4.4/datafiles/icons/brush.particle.puff.dat +share/blender/4.4/datafiles/icons/brush.particle.smooth.dat +share/blender/4.4/datafiles/icons/brush.particle.weight.dat +share/blender/4.4/datafiles/icons/brush.sculpt.displacement_eraser.dat +share/blender/4.4/datafiles/icons/brush.sculpt.displacement_smear.dat +share/blender/4.4/datafiles/icons/brush.sculpt.draw_face_sets.dat +share/blender/4.4/datafiles/icons/brush.sculpt.mask.dat +share/blender/4.4/datafiles/icons/brush.sculpt.paint.dat +share/blender/4.4/datafiles/icons/brush.sculpt.simplify.dat +share/blender/4.4/datafiles/icons/brush.uv_sculpt.grab.dat +share/blender/4.4/datafiles/icons/brush.uv_sculpt.pinch.dat +share/blender/4.4/datafiles/icons/brush.uv_sculpt.relax.dat +share/blender/4.4/datafiles/icons/none.dat +share/blender/4.4/datafiles/icons/ops.armature.bone.roll.dat +share/blender/4.4/datafiles/icons/ops.armature.extrude_cursor.dat +share/blender/4.4/datafiles/icons/ops.armature.extrude_move.dat +share/blender/4.4/datafiles/icons/ops.curve.draw.dat +share/blender/4.4/datafiles/icons/ops.curve.extrude_cursor.dat +share/blender/4.4/datafiles/icons/ops.curve.extrude_move.dat +share/blender/4.4/datafiles/icons/ops.curve.pen.dat +share/blender/4.4/datafiles/icons/ops.curve.radius.dat +share/blender/4.4/datafiles/icons/ops.curve.vertex_random.dat +share/blender/4.4/datafiles/icons/ops.curves.sculpt_add.dat +share/blender/4.4/datafiles/icons/ops.curves.sculpt_delete.dat +share/blender/4.4/datafiles/icons/ops.curves.sculpt_density.dat +share/blender/4.4/datafiles/icons/ops.generic.cursor.dat +share/blender/4.4/datafiles/icons/ops.generic.select.dat +share/blender/4.4/datafiles/icons/ops.generic.select_box.dat +share/blender/4.4/datafiles/icons/ops.generic.select_circle.dat +share/blender/4.4/datafiles/icons/ops.generic.select_lasso.dat +share/blender/4.4/datafiles/icons/ops.generic.select_paint.dat +share/blender/4.4/datafiles/icons/ops.gpencil.draw.dat +share/blender/4.4/datafiles/icons/ops.gpencil.draw.eraser.dat +share/blender/4.4/datafiles/icons/ops.gpencil.draw.line.dat +share/blender/4.4/datafiles/icons/ops.gpencil.draw.poly.dat +share/blender/4.4/datafiles/icons/ops.gpencil.edit_bend.dat +share/blender/4.4/datafiles/icons/ops.gpencil.edit_mirror.dat +share/blender/4.4/datafiles/icons/ops.gpencil.edit_shear.dat +share/blender/4.4/datafiles/icons/ops.gpencil.edit_to_sphere.dat +share/blender/4.4/datafiles/icons/ops.gpencil.extrude_move.dat +share/blender/4.4/datafiles/icons/ops.gpencil.primitive_arc.dat +share/blender/4.4/datafiles/icons/ops.gpencil.primitive_box.dat +share/blender/4.4/datafiles/icons/ops.gpencil.primitive_circle.dat +share/blender/4.4/datafiles/icons/ops.gpencil.primitive_curve.dat +share/blender/4.4/datafiles/icons/ops.gpencil.primitive_line.dat +share/blender/4.4/datafiles/icons/ops.gpencil.primitive_polyline.dat +share/blender/4.4/datafiles/icons/ops.gpencil.radius.dat +share/blender/4.4/datafiles/icons/ops.gpencil.sculpt_average.dat +share/blender/4.4/datafiles/icons/ops.gpencil.sculpt_blur.dat +share/blender/4.4/datafiles/icons/ops.gpencil.sculpt_clone.dat +share/blender/4.4/datafiles/icons/ops.gpencil.sculpt_smear.dat +share/blender/4.4/datafiles/icons/ops.gpencil.stroke_trim.dat +share/blender/4.4/datafiles/icons/ops.gpencil.transform_fill.dat +share/blender/4.4/datafiles/icons/ops.mesh.bevel.dat +share/blender/4.4/datafiles/icons/ops.mesh.bisect.dat +share/blender/4.4/datafiles/icons/ops.mesh.dupli_extrude_cursor.dat +share/blender/4.4/datafiles/icons/ops.mesh.extrude_faces_move.dat +share/blender/4.4/datafiles/icons/ops.mesh.extrude_manifold.dat +share/blender/4.4/datafiles/icons/ops.mesh.extrude_region_move.dat +share/blender/4.4/datafiles/icons/ops.mesh.extrude_region_shrink_fatten.dat +share/blender/4.4/datafiles/icons/ops.mesh.inset.dat +share/blender/4.4/datafiles/icons/ops.mesh.knife_tool.dat +share/blender/4.4/datafiles/icons/ops.mesh.loopcut_slide.dat +share/blender/4.4/datafiles/icons/ops.mesh.offset_edge_loops_slide.dat +share/blender/4.4/datafiles/icons/ops.mesh.polybuild_hover.dat +share/blender/4.4/datafiles/icons/ops.mesh.primitive_cone_add_gizmo.dat +share/blender/4.4/datafiles/icons/ops.mesh.primitive_cube_add_gizmo.dat +share/blender/4.4/datafiles/icons/ops.mesh.primitive_cylinder_add_gizmo.dat +share/blender/4.4/datafiles/icons/ops.mesh.primitive_grid_add_gizmo.dat +share/blender/4.4/datafiles/icons/ops.mesh.primitive_sphere_add_gizmo.dat +share/blender/4.4/datafiles/icons/ops.mesh.primitive_torus_add_gizmo.dat +share/blender/4.4/datafiles/icons/ops.mesh.rip.dat +share/blender/4.4/datafiles/icons/ops.mesh.rip_edge.dat +share/blender/4.4/datafiles/icons/ops.mesh.spin.dat +share/blender/4.4/datafiles/icons/ops.mesh.vertices_smooth.dat +share/blender/4.4/datafiles/icons/ops.node.links_cut.dat +share/blender/4.4/datafiles/icons/ops.paint.eyedropper_add.dat +share/blender/4.4/datafiles/icons/ops.paint.vertex_color_fill.dat +share/blender/4.4/datafiles/icons/ops.paint.weight_fill.dat +share/blender/4.4/datafiles/icons/ops.paint.weight_gradient.dat +share/blender/4.4/datafiles/icons/ops.paint.weight_sample.dat +share/blender/4.4/datafiles/icons/ops.paint.weight_sample_group.dat +share/blender/4.4/datafiles/icons/ops.pose.breakdowner.dat +share/blender/4.4/datafiles/icons/ops.pose.push.dat +share/blender/4.4/datafiles/icons/ops.pose.relax.dat +share/blender/4.4/datafiles/icons/ops.sculpt.border_face_set.dat +share/blender/4.4/datafiles/icons/ops.sculpt.border_hide.dat +share/blender/4.4/datafiles/icons/ops.sculpt.border_mask.dat +share/blender/4.4/datafiles/icons/ops.sculpt.box_trim.dat +share/blender/4.4/datafiles/icons/ops.sculpt.cloth_filter.dat +share/blender/4.4/datafiles/icons/ops.sculpt.color_filter.dat +share/blender/4.4/datafiles/icons/ops.sculpt.face_set_edit.dat +share/blender/4.4/datafiles/icons/ops.sculpt.lasso_face_set.dat +share/blender/4.4/datafiles/icons/ops.sculpt.lasso_hide.dat +share/blender/4.4/datafiles/icons/ops.sculpt.lasso_mask.dat +share/blender/4.4/datafiles/icons/ops.sculpt.lasso_trim.dat +share/blender/4.4/datafiles/icons/ops.sculpt.line_face_set.dat +share/blender/4.4/datafiles/icons/ops.sculpt.line_hide.dat +share/blender/4.4/datafiles/icons/ops.sculpt.line_mask.dat +share/blender/4.4/datafiles/icons/ops.sculpt.line_project.dat +share/blender/4.4/datafiles/icons/ops.sculpt.line_trim.dat +share/blender/4.4/datafiles/icons/ops.sculpt.mask_by_color.dat +share/blender/4.4/datafiles/icons/ops.sculpt.mesh_filter.dat +share/blender/4.4/datafiles/icons/ops.sculpt.polyline_face_set.dat +share/blender/4.4/datafiles/icons/ops.sculpt.polyline_hide.dat +share/blender/4.4/datafiles/icons/ops.sculpt.polyline_mask.dat +share/blender/4.4/datafiles/icons/ops.sculpt.polyline_trim.dat +share/blender/4.4/datafiles/icons/ops.sequencer.blade.dat +share/blender/4.4/datafiles/icons/ops.sequencer.retime.dat +share/blender/4.4/datafiles/icons/ops.transform.bone_envelope.dat +share/blender/4.4/datafiles/icons/ops.transform.bone_size.dat +share/blender/4.4/datafiles/icons/ops.transform.edge_slide.dat +share/blender/4.4/datafiles/icons/ops.transform.push_pull.dat +share/blender/4.4/datafiles/icons/ops.transform.resize.cage.dat +share/blender/4.4/datafiles/icons/ops.transform.resize.dat +share/blender/4.4/datafiles/icons/ops.transform.rotate.dat +share/blender/4.4/datafiles/icons/ops.transform.shear.dat +share/blender/4.4/datafiles/icons/ops.transform.shrink_fatten.dat +share/blender/4.4/datafiles/icons/ops.transform.tilt.dat +share/blender/4.4/datafiles/icons/ops.transform.tosphere.dat +share/blender/4.4/datafiles/icons/ops.transform.transform.dat +share/blender/4.4/datafiles/icons/ops.transform.translate.dat +share/blender/4.4/datafiles/icons/ops.transform.vert_slide.dat +share/blender/4.4/datafiles/icons/ops.transform.vertex_random.dat +share/blender/4.4/datafiles/icons/ops.view3d.ruler.dat +share/blender/4.4/datafiles/studiolights/ +share/blender/4.4/datafiles/studiolights/matcap/ +share/blender/4.4/datafiles/studiolights/matcap/basic_1.exr +share/blender/4.4/datafiles/studiolights/matcap/basic_2.exr +share/blender/4.4/datafiles/studiolights/matcap/basic_dark.exr +share/blender/4.4/datafiles/studiolights/matcap/basic_side.exr +share/blender/4.4/datafiles/studiolights/matcap/ceramic_dark.exr +share/blender/4.4/datafiles/studiolights/matcap/ceramic_lightbulb.exr +share/blender/4.4/datafiles/studiolights/matcap/check_normal+y.exr +share/blender/4.4/datafiles/studiolights/matcap/check_rim_dark.exr +share/blender/4.4/datafiles/studiolights/matcap/check_rim_light.exr +share/blender/4.4/datafiles/studiolights/matcap/clay_brown.exr +share/blender/4.4/datafiles/studiolights/matcap/clay_muddy.exr +share/blender/4.4/datafiles/studiolights/matcap/clay_studio.exr +share/blender/4.4/datafiles/studiolights/matcap/jade.exr +share/blender/4.4/datafiles/studiolights/matcap/license.txt +share/blender/4.4/datafiles/studiolights/matcap/metal_anisotropic.exr +share/blender/4.4/datafiles/studiolights/matcap/metal_carpaint.exr +share/blender/4.4/datafiles/studiolights/matcap/metal_lead.exr +share/blender/4.4/datafiles/studiolights/matcap/metal_shiny.exr +share/blender/4.4/datafiles/studiolights/matcap/pearl.exr +share/blender/4.4/datafiles/studiolights/matcap/reflection_check_horizontal.exr +share/blender/4.4/datafiles/studiolights/matcap/reflection_check_vertical.exr +share/blender/4.4/datafiles/studiolights/matcap/resin.exr +share/blender/4.4/datafiles/studiolights/matcap/skin.exr +share/blender/4.4/datafiles/studiolights/matcap/toon.exr +share/blender/4.4/datafiles/studiolights/studio/ +share/blender/4.4/datafiles/studiolights/studio/basic.sl +share/blender/4.4/datafiles/studiolights/studio/outdoor.sl +share/blender/4.4/datafiles/studiolights/studio/paint.sl +share/blender/4.4/datafiles/studiolights/studio/rim.sl +share/blender/4.4/datafiles/studiolights/studio/studio.sl +share/blender/4.4/datafiles/studiolights/world/ +share/blender/4.4/datafiles/studiolights/world/city.exr +share/blender/4.4/datafiles/studiolights/world/courtyard.exr +share/blender/4.4/datafiles/studiolights/world/forest.exr +share/blender/4.4/datafiles/studiolights/world/interior.exr +share/blender/4.4/datafiles/studiolights/world/license.txt +share/blender/4.4/datafiles/studiolights/world/night.exr +share/blender/4.4/datafiles/studiolights/world/studio.exr +share/blender/4.4/datafiles/studiolights/world/sunrise.exr +share/blender/4.4/datafiles/studiolights/world/sunset.exr +share/blender/4.4/extensions/ +share/blender/4.4/extensions/system/ +share/blender/4.4/extensions/system/readme.txt +share/blender/4.4/python/ +share/blender/4.4/python/bin/ +@bin share/blender/4.4/python/bin/python${MODPY_VERSION} +share/blender/4.4/python/include/ +share/blender/4.4/python/include/python${MODPY_VERSION}/ +share/blender/4.4/python/include/python${MODPY_VERSION}/pyconfig.h +share/blender/4.4/python/lib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/EXTERNALLY-MANAGED +share/blender/4.4/python/lib/python${MODPY_VERSION}/LICENSE.txt +share/blender/4.4/python/lib/python${MODPY_VERSION}/__future__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/__hello__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/${MODPY_PYCACHE}spam.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/${MODPY_PYCACHE}spam.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/__phello__/spam.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}__future__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}__future__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}__hello__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}__hello__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_aix_support.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_aix_support.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_collections_abc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_collections_abc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_compat_pickle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_compat_pickle.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_compression.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_compression.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_markupbase.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_markupbase.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_osx_support.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_osx_support.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_py_abc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_py_abc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pydatetime.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pydatetime.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pydecimal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pydecimal.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pyio.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pyio.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pylong.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_pylong.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_sitebuiltins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_sitebuiltins.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_strptime.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_strptime.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_sysconfigdata__openbsd7_.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_sysconfigdata__openbsd7_.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_threading_local.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_threading_local.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_weakrefset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}_weakrefset.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}aifc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}aifc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}antigravity.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}antigravity.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}argparse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}argparse.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ast.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ast.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}base64.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}base64.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}bdb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}bdb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}bisect.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}bisect.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}bz2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}bz2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cProfile.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cProfile.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}calendar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}calendar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cgi.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cgi.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cgitb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cgitb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}chunk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}chunk.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cmd.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}cmd.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}code.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}code.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}codecs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}codecs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}codeop.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}codeop.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}colorsys.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}colorsys.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}compileall.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}compileall.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}configparser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}configparser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}contextlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}contextlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}contextvars.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}contextvars.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}copy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}copy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}copyreg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}copyreg.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}crypt.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}crypt.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}csv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}csv.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}dataclasses.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}dataclasses.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}datetime.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}datetime.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}decimal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}decimal.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}difflib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}difflib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}dis.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}dis.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}doctest.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}doctest.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}enum.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}enum.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}filecmp.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}filecmp.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}fileinput.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}fileinput.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}fnmatch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}fnmatch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}fractions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}fractions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ftplib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ftplib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}functools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}functools.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}genericpath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}genericpath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}getopt.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}getopt.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}getpass.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}getpass.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}gettext.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}gettext.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}glob.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}glob.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}graphlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}graphlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}gzip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}gzip.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}hashlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}hashlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}heapq.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}heapq.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}hmac.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}hmac.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}imaplib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}imaplib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}imghdr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}imghdr.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}inspect.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}inspect.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ipaddress.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ipaddress.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}keyword.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}keyword.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}linecache.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}linecache.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}locale.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}locale.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}lzma.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}lzma.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}mailbox.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}mailbox.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}mailcap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}mailcap.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}mimetypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}mimetypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}modulefinder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}modulefinder.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}netrc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}netrc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}nntplib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}nntplib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ntpath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ntpath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}nturl2path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}nturl2path.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}numbers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}numbers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}opcode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}opcode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}operator.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}optparse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}optparse.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}os.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}os.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pathlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pathlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pdb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pdb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pickle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pickle.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pickletools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pickletools.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pipes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pipes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pkgutil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pkgutil.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}platform.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}platform.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}plistlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}plistlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}poplib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}poplib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}posixpath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}posixpath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pprint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pprint.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}profile.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}profile.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pstats.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pstats.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pty.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pty.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}py_compile.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}py_compile.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pyclbr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pyclbr.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pydoc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}pydoc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}queue.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}queue.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}quopri.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}quopri.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}random.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}random.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}reprlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}reprlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}rlcompleter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}rlcompleter.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}runpy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}runpy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sched.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sched.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}secrets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}secrets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}selectors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}selectors.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}shelve.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}shelve.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}shlex.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}shlex.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}shutil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}shutil.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}signal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}signal.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}site.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}site.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}smtplib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}smtplib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sndhdr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sndhdr.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}socket.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}socket.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}socketserver.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}socketserver.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sre_compile.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sre_compile.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sre_constants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sre_constants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sre_parse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sre_parse.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ssl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}ssl.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}stat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}stat.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}statistics.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}statistics.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}string.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}string.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}stringprep.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}stringprep.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}struct.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}struct.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}subprocess.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}subprocess.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sunau.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sunau.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}symtable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}symtable.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sysconfig.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}sysconfig.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tabnanny.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tabnanny.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tarfile.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tarfile.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}telnetlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}telnetlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tempfile.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tempfile.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}textwrap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}textwrap.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}this.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}this.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}threading.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}threading.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}timeit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}timeit.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}token.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}token.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tokenize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tokenize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}trace.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}trace.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}traceback.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}traceback.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tracemalloc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tracemalloc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tty.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}tty.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}typing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}typing.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}uu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}uu.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}uuid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}uuid.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}warnings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}warnings.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}wave.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}wave.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}weakref.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}weakref.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}webbrowser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}webbrowser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}xdrlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}xdrlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}zipapp.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}zipapp.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}zipimport.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/${MODPY_PYCACHE}zipimport.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/_aix_support.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_collections_abc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_compat_pickle.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_compression.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_markupbase.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_osx_support.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_py_abc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_pydatetime.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_pydecimal.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_pyio.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_pylong.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_sitebuiltins.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_strptime.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_sysconfigdata__openbsd7_.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_threading_local.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/_weakrefset.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/abc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/aifc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/antigravity.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/argparse.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ast.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_events.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_events.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_futures.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_futures.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_subprocess.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_subprocess.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_tasks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}base_tasks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}coroutines.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}coroutines.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}events.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}events.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}format_helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}format_helpers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}futures.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}futures.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}locks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}locks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}log.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}log.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}mixins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}mixins.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}proactor_events.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}proactor_events.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}protocols.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}protocols.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}queues.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}queues.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}runners.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}runners.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}selector_events.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}selector_events.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}sslproto.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}sslproto.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}staggered.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}staggered.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}streams.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}streams.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}subprocess.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}subprocess.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}taskgroups.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}taskgroups.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}tasks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}tasks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}threads.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}threads.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}timeouts.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}timeouts.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}transports.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}transports.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}trsock.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}trsock.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}unix_events.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}unix_events.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}windows_events.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}windows_events.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}windows_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/${MODPY_PYCACHE}windows_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/base_events.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/base_futures.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/base_subprocess.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/base_tasks.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/constants.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/coroutines.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/events.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/exceptions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/format_helpers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/futures.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/locks.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/log.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/mixins.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/proactor_events.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/protocols.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/queues.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/runners.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/selector_events.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/sslproto.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/staggered.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/streams.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/subprocess.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/taskgroups.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/tasks.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/threads.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/timeouts.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/transports.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/trsock.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/unix_events.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/windows_events.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/asyncio/windows_utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/base64.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/bdb.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/bisect.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/bz2.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/cProfile.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/calendar.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/cgi.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/cgitb.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/chunk.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/cmd.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/code.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/codecs.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/codeop.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/collections/abc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/colorsys.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/compileall.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}_base.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}_base.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}process.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}process.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}thread.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/${MODPY_PYCACHE}thread.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/_base.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/process.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/concurrent/futures/thread.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/Makefile +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/Setup +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/Setup.bootstrap +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/Setup.local +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/Setup.stdlib +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/${MODPY_PYCACHE}python-config.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/${MODPY_PYCACHE}python-config.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/config.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/config.c.in +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/install-sh +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/makesetup +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/python-config.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/config-${MODPY_VERSION}/python.o +share/blender/4.4/python/lib/python${MODPY_VERSION}/configparser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/contextlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/contextvars.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/copy.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/copyreg.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/crypt.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/csv.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}_aix.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}_aix.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}_endian.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}_endian.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}wintypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/${MODPY_PYCACHE}wintypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/_aix.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/_endian.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/README.ctypes +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}dyld.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}dyld.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}dylib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}dylib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}framework.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/${MODPY_PYCACHE}framework.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/dyld.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/dylib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/fetch_macholib +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/fetch_macholib.bat +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/macholib/framework.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/util.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ctypes/wintypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}ascii.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}ascii.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}has_key.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}has_key.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}panel.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}textpad.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/${MODPY_PYCACHE}textpad.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/ascii.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/has_key.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/panel.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/curses/textpad.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/dataclasses.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/datetime.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}dumb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}dumb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}gnu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}gnu.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}ndbm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/${MODPY_PYCACHE}ndbm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/dumb.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/gnu.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/dbm/ndbm.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/decimal.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/difflib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/dis.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/doctest.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_encoded_words.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_encoded_words.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_header_value_parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_header_value_parser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_parseaddr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_parseaddr.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_policybase.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}_policybase.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}base64mime.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}base64mime.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}charset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}charset.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}contentmanager.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}contentmanager.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}encoders.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}encoders.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}errors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}errors.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}feedparser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}feedparser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}generator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}generator.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}header.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}header.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}headerregistry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}headerregistry.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}iterators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}iterators.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}message.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}message.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}parser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}policy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}policy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}quoprimime.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}quoprimime.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/_encoded_words.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/_header_value_parser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/_parseaddr.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/_policybase.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/architecture.rst +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/base64mime.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/charset.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/contentmanager.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/encoders.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/errors.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/feedparser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/generator.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/header.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/headerregistry.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/iterators.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/message.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}application.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}application.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}audio.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}audio.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}base.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}base.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}message.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}message.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}multipart.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}multipart.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}nonmultipart.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}nonmultipart.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}text.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/${MODPY_PYCACHE}text.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/application.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/audio.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/base.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/image.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/message.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/multipart.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/nonmultipart.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/mime/text.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/parser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/policy.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/quoprimime.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/email/utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}aliases.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}aliases.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}ascii.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}ascii.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}base64_codec.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}base64_codec.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}big5.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}big5.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}big5hkscs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}big5hkscs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}bz2_codec.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}bz2_codec.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}charmap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}charmap.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp037.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp037.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1006.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1006.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1026.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1026.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1125.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1125.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1140.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1140.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1250.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1250.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1251.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1251.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1252.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1252.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1253.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1253.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1254.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1254.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1255.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1255.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1256.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1256.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1257.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1257.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1258.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp1258.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp273.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp273.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp424.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp424.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp437.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp437.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp500.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp500.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp720.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp720.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp737.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp737.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp775.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp775.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp850.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp850.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp852.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp852.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp855.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp855.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp856.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp856.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp857.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp857.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp858.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp858.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp860.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp860.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp861.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp861.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp862.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp862.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp863.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp863.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp864.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp864.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp865.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp865.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp866.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp866.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp869.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp869.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp874.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp874.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp875.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp875.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp932.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp932.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp949.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp949.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp950.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}cp950.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_jis_2004.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_jis_2004.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_jisx0213.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_jisx0213.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_jp.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_jp.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_kr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}euc_kr.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}gb18030.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}gb18030.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}gb2312.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}gb2312.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}gbk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}gbk.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}hex_codec.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}hex_codec.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}hp_roman8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}hp_roman8.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}hz.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}hz.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}idna.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}idna.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_2004.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_2004.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_3.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_ext.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_jp_ext.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_kr.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso2022_kr.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_10.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_10.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_11.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_11.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_13.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_13.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_14.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_14.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_15.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_15.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_16.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_16.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_3.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_4.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_4.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_5.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_5.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_6.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_6.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_7.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_7.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_8.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}iso8859_9.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}johab.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}johab.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}koi8_r.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}koi8_r.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}koi8_t.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}koi8_t.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}koi8_u.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}koi8_u.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}kz1048.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}kz1048.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}latin_1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}latin_1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_arabic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_arabic.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_croatian.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_croatian.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_cyrillic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_cyrillic.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_farsi.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_farsi.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_greek.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_greek.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_iceland.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_iceland.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_latin2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_latin2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_roman.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_roman.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_romanian.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_romanian.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_turkish.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mac_turkish.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mbcs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}mbcs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}oem.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}oem.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}palmos.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}palmos.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}ptcp154.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}ptcp154.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}punycode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}punycode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}quopri_codec.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}quopri_codec.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}raw_unicode_escape.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}raw_unicode_escape.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}rot_13.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}rot_13.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}shift_jis.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}shift_jis.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}shift_jis_2004.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}shift_jis_2004.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}shift_jisx0213.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}shift_jisx0213.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}tis_620.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}tis_620.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}undefined.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}undefined.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}unicode_escape.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}unicode_escape.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_16.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_16.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_16_be.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_16_be.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_16_le.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_16_le.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_32.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_32.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_32_be.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_32_be.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_32_le.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_32_le.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_7.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_7.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_8.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_8_sig.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}utf_8_sig.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}uu_codec.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}uu_codec.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}zlib_codec.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/${MODPY_PYCACHE}zlib_codec.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/aliases.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/ascii.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/base64_codec.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/big5.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/big5hkscs.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/bz2_codec.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/charmap.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp037.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1006.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1026.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1125.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1140.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1250.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1251.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1252.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1253.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1254.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1255.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1256.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1257.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp1258.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp273.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp424.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp437.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp500.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp720.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp737.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp775.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp850.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp852.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp855.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp856.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp857.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp858.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp860.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp861.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp862.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp863.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp864.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp865.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp866.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp869.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp874.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp875.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp932.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp949.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/cp950.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/euc_jis_2004.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/euc_jisx0213.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/euc_jp.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/euc_kr.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/gb18030.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/gb2312.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/gbk.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/hex_codec.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/hp_roman8.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/hz.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/idna.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso2022_jp.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso2022_jp_1.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso2022_jp_2.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso2022_jp_2004.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso2022_jp_3.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso2022_jp_ext.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso2022_kr.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_1.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_10.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_11.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_13.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_14.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_15.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_16.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_2.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_3.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_4.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_5.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_6.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_7.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_8.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/iso8859_9.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/johab.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/koi8_r.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/koi8_t.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/koi8_u.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/kz1048.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/latin_1.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_arabic.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_croatian.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_cyrillic.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_farsi.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_greek.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_iceland.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_latin2.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_roman.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_romanian.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mac_turkish.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/mbcs.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/oem.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/palmos.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/ptcp154.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/punycode.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/quopri_codec.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/raw_unicode_escape.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/rot_13.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/shift_jis.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/shift_jis_2004.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/shift_jisx0213.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/tis_620.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/undefined.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/unicode_escape.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_16.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_16_be.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_16_le.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_32.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_32_be.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_32_le.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_7.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_8.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/utf_8_sig.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/uu_codec.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/encodings/zlib_codec.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/${MODPY_PYCACHE}_uninstall.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/${MODPY_PYCACHE}_uninstall.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/_bundled/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/_bundled/pip-25.0.1-${MODPY_PY_PREFIX}none-any.whl +share/blender/4.4/python/lib/python${MODPY_VERSION}/ensurepip/_uninstall.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/enum.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/filecmp.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/fileinput.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/fnmatch.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/fractions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ftplib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/functools.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/genericpath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/getopt.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/getpass.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/gettext.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/glob.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/graphlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/gzip.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/hashlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/heapq.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/hmac.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/html/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/${MODPY_PYCACHE}entities.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/${MODPY_PYCACHE}entities.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/${MODPY_PYCACHE}parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/${MODPY_PYCACHE}parser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/entities.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/html/parser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}client.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}client.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}cookiejar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}cookiejar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}cookies.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}cookies.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}server.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/${MODPY_PYCACHE}server.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/client.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/cookiejar.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/cookies.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/http/server.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/imaplib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/imghdr.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}_abc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}_abc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}_bootstrap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}_bootstrap.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}_bootstrap_external.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}_bootstrap_external.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}machinery.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}machinery.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}readers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}readers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/_abc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/_bootstrap.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/_bootstrap_external.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/abc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/machinery.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_adapters.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_adapters.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_collections.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_collections.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_functools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_functools.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_itertools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_itertools.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_meta.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_meta.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_text.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/${MODPY_PYCACHE}_text.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/_adapters.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/_collections.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/_functools.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/_itertools.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/_meta.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/metadata/_text.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/readers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_adapters.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_adapters.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_common.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_itertools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_itertools.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_legacy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}_legacy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}abc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}readers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}readers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/${MODPY_PYCACHE}simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/_adapters.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/_common.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/_itertools.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/_legacy.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/abc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/readers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/resources/simple.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/simple.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/importlib/util.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/inspect.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/io.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ipaddress.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}decoder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}decoder.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}encoder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}encoder.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}scanner.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}scanner.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}tool.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/${MODPY_PYCACHE}tool.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/decoder.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/encoder.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/scanner.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/json/tool.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/keyword.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/ +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_asyncio.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_bisect.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_blake2.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_bz2.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_codecs_cn.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_codecs_hk.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_codecs_iso2022.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_codecs_jp.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_codecs_kr.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_codecs_tw.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_contextvars.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_crypt.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_csv.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_ctypes.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_ctypes_test.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_curses.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_curses_panel.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_datetime.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_dbm.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_decimal.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_elementtree.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_hashlib.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_heapq.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_json.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_lsprof.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_lzma.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_md5.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_multibytecodec.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_multiprocessing.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_opcode.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_pickle.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_posixshmem.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_posixsubprocess.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_queue.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_random.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_sha1.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_sha2.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_sha3.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_socket.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_sqlite3.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_ssl.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_statistics.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_struct.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_testbuffer.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_testcapi.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_testclinic.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_testimportmultiple.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_testinternalcapi.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_testmultiphase.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_testsinglephase.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_uuid.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_xxinterpchannels.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_xxsubinterpreters.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_xxtestfuzz.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/_zoneinfo.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/array.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/audioop.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/binascii.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/cmath.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/fcntl.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/grp.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/math.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/mmap.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/nis.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/pyexpat.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/readline.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/resource.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/select.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/syslog.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/termios.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/unicodedata.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/xxlimited.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/xxlimited_35.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/xxsubtype.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/lib-dynload/zlib.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/linecache.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/locale.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/${MODPY_PYCACHE}config.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/config.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/logging/handlers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/lzma.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/mailbox.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/mailcap.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/mimetypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/modulefinder.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}context.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}context.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}forkserver.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}forkserver.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}heap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}heap.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}managers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}managers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}pool.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}pool.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_fork.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_fork.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_forkserver.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_forkserver.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_spawn_posix.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_spawn_posix.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_spawn_win32.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}popen_spawn_win32.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}process.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}process.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}queues.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}queues.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}reduction.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}reduction.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}resource_sharer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}resource_sharer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}resource_tracker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}resource_tracker.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}shared_memory.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}shared_memory.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}sharedctypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}sharedctypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}spawn.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}spawn.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}synchronize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}synchronize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/connection.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/context.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/dummy/connection.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/forkserver.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/heap.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/managers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/pool.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/popen_fork.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/popen_forkserver.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/popen_spawn_posix.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/popen_spawn_win32.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/process.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/queues.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/reduction.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/resource_sharer.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/resource_tracker.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/shared_memory.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/sharedctypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/spawn.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/synchronize.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/multiprocessing/util.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/netrc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/nntplib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ntpath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/nturl2path.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/numbers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/opcode.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/operator.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/optparse.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/os.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pathlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pdb.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pickle.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pickletools.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pipes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pkgutil.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/platform.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/plistlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/poplib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/posixpath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pprint.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/profile.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pstats.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pty.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/py_compile.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pyclbr.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/${MODPY_PYCACHE}topics.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/${MODPY_PYCACHE}topics.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/_pydoc.css +share/blender/4.4/python/lib/python${MODPY_VERSION}/pydoc_data/topics.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/queue.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/quopri.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/random.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_casefix.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_casefix.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_compiler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_compiler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_constants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_constants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/${MODPY_PYCACHE}_parser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/_casefix.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/_compiler.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/_constants.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/re/_parser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/reprlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/rlcompleter.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/runpy.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sched.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/secrets.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/selectors.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/shelve.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/shlex.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/shutil.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/signal.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/BuildExecutable.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Cythonize.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Dependencies.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Distutils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Inline.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/IpythonMagic.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/TestCyCache.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/TestCythonizeArgsParser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/TestDependencies.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/TestInline.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/TestIpythonMagic.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/TestRecythonize.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/TestStripLiterals.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestCyCache.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestCyCache.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestCythonizeArgsParser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestCythonizeArgsParser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestDependencies.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestDependencies.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestInline.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestInline.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestIpythonMagic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestIpythonMagic.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestRecythonize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestRecythonize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestStripLiterals.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}TestStripLiterals.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}BuildExecutable.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}BuildExecutable.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Cythonize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Cythonize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Dependencies.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Dependencies.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Distutils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Distutils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Inline.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}Inline.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}IpythonMagic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}IpythonMagic.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Build/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/CodeWriter.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/AnalysedTreeTransforms.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Annotate.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/AutoDocTransforms.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Buffer.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Builtin.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/CmdLine.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Code.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Code.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Code.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/CodeGeneration.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/CythonScope.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Dataclass.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/DebugFlags.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Errors.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/ExprNodes.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/FlowControl.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/FlowControl.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/FlowControl.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/FusedNode.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/FusedNode.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Future.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Interpreter.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Lexicon.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Main.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/MemoryView.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/ModuleNode.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Naming.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Nodes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Optimize.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Options.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/ParseTreeTransforms.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/ParseTreeTransforms.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Parsing.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Parsing.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Parsing.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Pipeline.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/PyrexTypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Pythran.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Scanning.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Scanning.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Scanning.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/StringEncoding.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Symtab.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestBuffer.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestCmdLine.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestFlowControl.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestGrammar.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestMemView.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestParseTreeTransforms.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestScanning.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestSignatureMatching.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestStringEncoding.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestTreeFragment.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestTreePath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestTypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestUtilityLoad.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/TestVisitor.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/Utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestBuffer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestBuffer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestCmdLine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestCmdLine.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestFlowControl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestFlowControl.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestGrammar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestGrammar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestMemView.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestMemView.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestParseTreeTransforms.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestParseTreeTransforms.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestScanning.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestScanning.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestSignatureMatching.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestSignatureMatching.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestStringEncoding.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestStringEncoding.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestTreeFragment.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestTreeFragment.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestTreePath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestTreePath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestTypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestTypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestUtilityLoad.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestUtilityLoad.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestVisitor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}TestVisitor.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}Utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}Utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/TreeFragment.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/TreePath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/TypeInference.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/TypeSlots.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/UFuncs.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/UtilNodes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/UtilityCode.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Version.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Visitor.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Visitor.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/Visitor.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}AnalysedTreeTransforms.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}AnalysedTreeTransforms.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Annotate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Annotate.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}AutoDocTransforms.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}AutoDocTransforms.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Buffer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Buffer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Builtin.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Builtin.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}CmdLine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}CmdLine.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Code.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Code.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}CodeGeneration.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}CodeGeneration.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}CythonScope.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}CythonScope.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Dataclass.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Dataclass.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}DebugFlags.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}DebugFlags.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Errors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Errors.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}ExprNodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}ExprNodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}FlowControl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}FlowControl.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}FusedNode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}FusedNode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Future.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Future.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Interpreter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Interpreter.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Lexicon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Lexicon.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Main.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Main.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}MemoryView.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}MemoryView.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}ModuleNode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}ModuleNode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Naming.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Naming.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Nodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Optimize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Optimize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Options.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Options.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}ParseTreeTransforms.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}ParseTreeTransforms.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Parsing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Parsing.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Pipeline.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Pipeline.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}PyrexTypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}PyrexTypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Pythran.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Pythran.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Scanning.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Scanning.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}StringEncoding.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}StringEncoding.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Symtab.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Symtab.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TreeFragment.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TreeFragment.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TreePath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TreePath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TypeInference.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TypeInference.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TypeSlots.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}TypeSlots.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}UFuncs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}UFuncs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}UtilNodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}UtilNodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}UtilityCode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}UtilityCode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Version.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Version.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Visitor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}Visitor.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Compiler/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Coverage.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Cygdb.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/DebugWriter.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/TestLibCython.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}TestLibCython.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}TestLibCython.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}test_libcython_in_gdb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}test_libcython_in_gdb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}test_libpython_in_gdb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/${MODPY_PYCACHE}test_libpython_in_gdb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/cfuncs.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/codefile +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/test_libcython_in_gdb.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/Tests/test_libpython_in_gdb.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}Cygdb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}Cygdb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}DebugWriter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}DebugWriter.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}libcython.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}libcython.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}libpython.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/${MODPY_PYCACHE}libpython.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/libcython.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugger/libpython.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Debugging.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}build_ext.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}build_ext.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}extension.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}old_build_ext.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/${MODPY_PYCACHE}old_build_ext.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/build_ext.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/extension.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Distutils/old_build_ext.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/__init__.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/array.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/bool.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/buffer.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/bytearray.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/bytes.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/cellobject.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/ceval.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/cobject.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/codecs.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/complex.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/contextvars.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/conversion.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/datetime.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/descr.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/dict.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/exc.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/fileobject.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/float.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/function.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/genobject.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/getargs.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/instance.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/int.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/iterator.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/iterobject.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/list.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/long.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/longintrepr.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/mapping.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/marshal.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/mem.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/memoryview.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/method.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/module.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/number.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/object.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/oldbuffer.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/pycapsule.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/pylifecycle.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/pyport.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/pystate.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/pythread.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/ref.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/sequence.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/set.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/slice.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/string.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/time.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/tuple.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/type.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/unicode.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/version.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/cpython/weakref.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/__init__.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/complex.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/errno.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/float.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/limits.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/locale.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/math.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/setjmp.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/signal.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/stddef.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/stdint.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/stdio.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/stdlib.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/string.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libc/time.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/__init__.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/algorithm.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/any.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/atomic.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/bit.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/cast.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/cmath.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/complex.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/deque.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/execution.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/forward_list.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/functional.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/iterator.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/limits.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/list.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/map.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/memory.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/numbers.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/numeric.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/optional.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/pair.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/queue.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/random.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/set.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/stack.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/string.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/typeindex.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/typeinfo.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/unordered_map.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/unordered_set.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/utility.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/libcpp/vector.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/numpy/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/numpy/__init__.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/numpy/math.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/openmp.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/__init__.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/dlfcn.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/fcntl.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/ioctl.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/mman.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/resource.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/select.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/signal.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/stat.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/stdio.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/stdlib.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/strings.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/time.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/types.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/uio.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/unistd.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Includes/posix/wait.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/ +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Actions.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Actions.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Actions.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/DFA.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/DFA.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/DFA.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Errors.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Lexicons.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Machines.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Machines.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Machines.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Regexps.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Scanners.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Scanners.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Scanners.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Transitions.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Transitions.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/Transitions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Actions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Actions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}DFA.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}DFA.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Errors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Errors.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Lexicons.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Lexicons.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Machines.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Machines.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Regexps.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Regexps.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Scanners.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Scanners.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Transitions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}Transitions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Plex/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Runtime/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Runtime/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Runtime/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Runtime/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Runtime/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Runtime/refnanny.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Runtime/refnanny.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Shadow.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Shadow.pyi +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/StringIOTree.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/StringIOTree.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}_looper.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}_looper.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}_tempita.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}_tempita.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}compat3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/${MODPY_PYCACHE}compat3.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/_looper.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/_tempita.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/_tempita.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tempita/compat3.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/TestUtils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/TestCodeWriter.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/TestCythonUtils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/TestJediTyper.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/TestShadow.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/TestStringIOTree.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/TestTestUtils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestCodeWriter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestCodeWriter.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestCythonUtils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestCythonUtils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestJediTyper.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestJediTyper.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestShadow.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestShadow.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestStringIOTree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestStringIOTree.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestTestUtils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}TestTestUtils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}xmlrunner.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/${MODPY_PYCACHE}xmlrunner.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Tests/xmlrunner.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/AsyncGen.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Buffer.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Builtins.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/CConvert.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/CMath.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/CommonStructures.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Complex.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Coroutine.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/CpdefEnums.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/CppConvert.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/CppSupport.cpp +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/CythonFunction.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Dataclasses.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Dataclasses.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Embed.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Exceptions.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/ExtensionTypes.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/FunctionArguments.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/ImportExport.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/MemoryView.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/MemoryView_C.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/ModuleSetupCode.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/NumpyImportArray.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/ObjectHandling.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Optimize.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Overflow.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Printing.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/Profile.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/StringTools.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/TestCyUtilityLoader.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/TestCythonScope.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/TestUtilityLoader.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/TypeConversion.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/UFuncs.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/UFuncs_C.c +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/${MODPY_PYCACHE}Dataclasses.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/${MODPY_PYCACHE}Dataclasses.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utility/arrayarray.h +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utils.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/Utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}CodeWriter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}CodeWriter.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Coverage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Coverage.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Debugging.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Debugging.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Shadow.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Shadow.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}StringIOTree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}StringIOTree.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}TestUtils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}TestUtils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}Utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/Cython/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/${MODPY_PYCACHE}cython.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/${MODPY_PYCACHE}cython.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/${MODPY_PYCACHE}sitecustomize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/${MODPY_PYCACHE}sitecustomize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/${MODPY_PYCACHE}six.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/${MODPY_PYCACHE}six.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/core.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/certifi/py.typed +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}api.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}api.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}cd.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}cd.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}constant.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}constant.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}legacy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}legacy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}md.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}md.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}models.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}models.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/api.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cd.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/cli/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/constant.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/legacy.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/md.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/md.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/md__mypyc.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/models.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/py.typed +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/charset_normalizer/version.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/cython.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}codec.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}codec.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}compat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}compat.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}idnadata.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}idnadata.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}intranges.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}intranges.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}package_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}package_data.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}uts46data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/${MODPY_PYCACHE}uts46data.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/codec.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/compat.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/core.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/idnadata.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/intranges.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/package_data.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/py.typed +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/idna/uts46data.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/__config__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/__init__.cython-30.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/__init__.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}__config__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}__config__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_distributor_init.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_distributor_init.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_globals.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_globals.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_pytesttester.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}_pytesttester.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}conftest.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}conftest.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}ctypeslib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}ctypeslib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}dtypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}dtypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}matlib.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}matlib.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_dtype.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_dtype.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_dtype_ctypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_dtype_ctypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_internal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_internal.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_multiarray_umath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}_multiarray_umath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}multiarray.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}multiarray.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}umath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/${MODPY_PYCACHE}umath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/_dtype.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/_dtype_ctypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/_internal.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/_multiarray_umath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/multiarray.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_core/umath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_distributor_init.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_globals.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}hook-numpy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}hook-numpy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}pyinstaller-smoke.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}pyinstaller-smoke.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}test_pyinstaller.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/${MODPY_PYCACHE}test_pyinstaller.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/hook-numpy.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/pyinstaller-smoke.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pyinstaller/test_pyinstaller.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pytesttester.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_pytesttester.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_add_docstring.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_add_docstring.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_array_like.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_array_like.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_char_codes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_char_codes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_dtype_like.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_dtype_like.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_extended_precision.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_extended_precision.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_nbit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_nbit.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_nested_sequence.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_nested_sequence.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_scalars.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_scalars.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_shape.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}_shape.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_add_docstring.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_array_like.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_callable.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_char_codes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_dtype_like.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_extended_precision.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_nbit.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_nested_sequence.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_scalars.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_shape.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/_ufunc.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_typing/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}_convertions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}_convertions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}_inspect.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}_inspect.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}_pep440.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/${MODPY_PYCACHE}_pep440.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/_convertions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/_inspect.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/_utils/_pep440.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_array_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_array_object.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_constants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_constants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_creation_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_creation_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_data_type_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_data_type_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_dtypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_dtypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_elementwise_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_elementwise_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_indexing_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_indexing_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_manipulation_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_manipulation_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_searching_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_searching_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_set_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_set_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_sorting_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_sorting_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_statistical_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_statistical_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_typing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_typing.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_utility_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}_utility_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}linalg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}linalg.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_array_object.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_constants.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_creation_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_data_type_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_dtypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_elementwise_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_indexing_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_manipulation_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_searching_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_set_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_sorting_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_statistical_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_typing.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/_utility_functions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/linalg.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/array_api/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/${MODPY_PYCACHE}py3k.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/${MODPY_PYCACHE}py3k.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/py3k.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/compat/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/conftest.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_add_newdocs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_add_newdocs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_add_newdocs_scalars.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_add_newdocs_scalars.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_asarray.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_asarray.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_dtype.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_dtype.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_dtype_ctypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_dtype_ctypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_exceptions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_internal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_internal.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_machar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_machar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_methods.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_methods.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_string_helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_string_helpers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_type_aliases.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_type_aliases.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_ufunc_config.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}_ufunc_config.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}arrayprint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}arrayprint.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}cversions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}cversions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}defchararray.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}defchararray.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}einsumfunc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}einsumfunc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}fromnumeric.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}fromnumeric.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}function_base.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}function_base.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}getlimits.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}getlimits.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}memmap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}memmap.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}multiarray.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}multiarray.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}numeric.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}numeric.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}numerictypes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}numerictypes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}overrides.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}overrides.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}records.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}records.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}shape_base.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}shape_base.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}umath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}umath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}umath_tests.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/${MODPY_PYCACHE}umath_tests.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_add_newdocs.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_add_newdocs_scalars.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_asarray.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_asarray.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_dtype.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_dtype_ctypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_exceptions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_internal.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_internal.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_machar.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_methods.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_multiarray_tests.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_multiarray_umath.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_operand_flag_tests.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_rational_tests.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_simd.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_string_helpers.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_struct_ufunc_tests.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_type_aliases.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_type_aliases.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_ufunc_config.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_ufunc_config.pyi +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/_umath_tests.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/arrayprint.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/arrayprint.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/cversions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/defchararray.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/defchararray.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/einsumfunc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/einsumfunc.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/fromnumeric.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/fromnumeric.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/function_base.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/function_base.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/getlimits.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/getlimits.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/lib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/lib/npy-pkg-config/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/lib/npy-pkg-config/mlib.ini +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/lib/npy-pkg-config/npymath.ini +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/memmap.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/memmap.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/multiarray.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/multiarray.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/numeric.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/numeric.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/numerictypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/numerictypes.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/overrides.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/records.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/records.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/shape_base.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/shape_base.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/umath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/core/umath_tests.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ctypeslib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ctypeslib.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/dtypes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/dtypes.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/exceptions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/exceptions.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/${MODPY_PYCACHE}_pocketfft.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/${MODPY_PYCACHE}_pocketfft.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/${MODPY_PYCACHE}helper.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/${MODPY_PYCACHE}helper.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/_pocketfft.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/_pocketfft.pyi +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/_pocketfft_internal.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/helper.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/fft/helper.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}_datasource.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}_datasource.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}_iotools.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}_iotools.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}_version.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}_version.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}arraypad.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}arraypad.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}arraysetops.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}arraysetops.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}arrayterator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}arrayterator.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}format.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}format.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}function_base.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}function_base.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}histograms.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}histograms.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}index_tricks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}index_tricks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}mixins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}mixins.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}nanfunctions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}nanfunctions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}npyio.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}npyio.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}polynomial.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}polynomial.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}recfunctions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}recfunctions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}scimath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}scimath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}shape_base.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}shape_base.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}stride_tricks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}stride_tricks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}twodim_base.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}twodim_base.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}type_check.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}type_check.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}ufunclike.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}ufunclike.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}user_array.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}user_array.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/_datasource.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/_iotools.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/_version.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/_version.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/arraypad.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/arraypad.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/arraysetops.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/arraysetops.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/arrayterator.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/arrayterator.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/format.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/format.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/function_base.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/function_base.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/histograms.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/histograms.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/index_tricks.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/index_tricks.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/mixins.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/mixins.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/nanfunctions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/nanfunctions.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/npyio.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/npyio.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/polynomial.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/polynomial.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/recfunctions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/scimath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/scimath.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/shape_base.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/shape_base.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/stride_tricks.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/stride_tricks.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/twodim_base.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/twodim_base.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/type_check.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/type_check.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/ufunclike.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/ufunclike.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/user_array.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/lib/utils.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/${MODPY_PYCACHE}linalg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/${MODPY_PYCACHE}linalg.${MODPY_PYC_MAGIC_TAG}pyc +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/_umath_linalg.${MODPY_PYC_MAGIC_TAG}so +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/lapack_lite.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/linalg.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/linalg/linalg.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/API_CHANGES.txt +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/LICENSE +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/README.rst +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}extras.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}extras.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}mrecords.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}mrecords.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}testutils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}testutils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}timer_comparison.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/${MODPY_PYCACHE}timer_comparison.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/core.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/core.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/extras.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/extras.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/mrecords.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/mrecords.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/testutils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/ma/timer_comparison.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/${MODPY_PYCACHE}defmatrix.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/${MODPY_PYCACHE}defmatrix.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/defmatrix.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/defmatrix.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/matrixlib/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}_polybase.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}_polybase.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}chebyshev.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}chebyshev.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}hermite.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}hermite.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}hermite_e.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}hermite_e.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}laguerre.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}laguerre.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}legendre.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}legendre.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}polynomial.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}polynomial.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}polyutils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}polyutils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/_polybase.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/_polybase.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/chebyshev.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/chebyshev.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/hermite.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/hermite.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/hermite_e.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/hermite_e.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/laguerre.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/laguerre.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/legendre.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/legendre.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/polynomial.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/polynomial.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/polyutils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/polyutils.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/polynomial/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/py.typed +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/LICENSE.md +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/__init__.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/${MODPY_PYCACHE}_pickle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/${MODPY_PYCACHE}_pickle.${MODPY_PYC_MAGIC_TAG}pyc +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_bounded_integers.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_bounded_integers.pxd +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_common.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_common.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/ +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/${MODPY_PYCACHE}extending.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/${MODPY_PYCACHE}extending.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/${MODPY_PYCACHE}parse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/${MODPY_PYCACHE}parse.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/extending.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cffi/parse.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cython/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cython/extending.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cython/extending_distributions.pyx +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/cython/meson.build +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/ +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/${MODPY_PYCACHE}extending.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/${MODPY_PYCACHE}extending.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/${MODPY_PYCACHE}extending_distributions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/${MODPY_PYCACHE}extending_distributions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/extending.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_examples/numba/extending_distributions.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_generator.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_generator.pyi +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_mt19937.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_mt19937.pyi +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_pcg64.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_pcg64.pyi +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_philox.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_philox.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_pickle.py +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_sfc64.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/_sfc64.pyi +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/bit_generator.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/bit_generator.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/bit_generator.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/c_distributions.pxd +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/lib/ +@so share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/mtrand.${MODPY_PYC_MAGIC_TAG}so +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/random/mtrand.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/__init__.pyi +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}overrides.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}overrides.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}print_coercion_tables.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}print_coercion_tables.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/${MODPY_PYCACHE}extbuild.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/${MODPY_PYCACHE}extbuild.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/extbuild.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/_private/utils.pyi +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/overrides.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/print_coercion_tables.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/testing/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/${MODPY_PYCACHE}mypy_plugin.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/${MODPY_PYCACHE}mypy_plugin.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/${MODPY_PYCACHE}setup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/mypy_plugin.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/typing/setup.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/numpy/version.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}__version__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}__version__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}_internal_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}_internal_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}adapters.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}adapters.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}api.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}api.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}auth.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}auth.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}certs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}certs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}compat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}compat.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}cookies.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}cookies.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}help.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}help.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}hooks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}hooks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}models.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}models.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}packages.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}packages.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}sessions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}sessions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}status_codes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}status_codes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}structures.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}structures.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/__version__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/_internal_utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/adapters.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/api.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/auth.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/certs.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/compat.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/cookies.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/exceptions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/help.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/hooks.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/models.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/packages.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/sessions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/status_codes.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/structures.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/requests/utils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/sitecustomize.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/six.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}_collections.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}_collections.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}_version.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}_version.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}connectionpool.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}connectionpool.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}exceptions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}fields.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}fields.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}filepost.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}filepost.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}poolmanager.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}poolmanager.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}request.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}request.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}response.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/${MODPY_PYCACHE}response.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/_collections.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/_version.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/connection.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/connectionpool.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}_appengine_environ.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}_appengine_environ.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}appengine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}appengine.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}ntlmpool.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}ntlmpool.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}pyopenssl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}pyopenssl.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}securetransport.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}securetransport.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}socks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/${MODPY_PYCACHE}socks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_appengine_environ.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/${MODPY_PYCACHE}bindings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/${MODPY_PYCACHE}bindings.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/${MODPY_PYCACHE}low_level.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/${MODPY_PYCACHE}low_level.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/bindings.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/_securetransport/low_level.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/appengine.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/ntlmpool.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/pyopenssl.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/securetransport.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/contrib/socks.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/exceptions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/fields.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/filepost.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/${MODPY_PYCACHE}six.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/${MODPY_PYCACHE}six.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/${MODPY_PYCACHE}makefile.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/${MODPY_PYCACHE}makefile.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/${MODPY_PYCACHE}weakref_finalize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/${MODPY_PYCACHE}weakref_finalize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/makefile.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/backports/weakref_finalize.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/packages/six.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/poolmanager.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/request.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/response.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}connection.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}proxy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}proxy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}queue.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}queue.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}request.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}request.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}response.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}response.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}retry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}retry.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}ssl_.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}ssl_.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}ssl_match_hostname.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}ssl_match_hostname.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}ssltransport.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}ssltransport.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}timeout.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}timeout.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}url.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}url.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}wait.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/${MODPY_PYCACHE}wait.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/connection.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/proxy.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/queue.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/request.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/response.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/retry.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/ssl_.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/ssl_match_hostname.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/ssltransport.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/timeout.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/url.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site-packages/urllib3/util/wait.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/site.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/smtplib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sndhdr.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/socket.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/socketserver.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}dbapi2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}dbapi2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}dump.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/${MODPY_PYCACHE}dump.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/dbapi2.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sqlite3/dump.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sre_compile.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sre_constants.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sre_parse.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/ssl.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/stat.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/statistics.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/string.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/stringprep.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/struct.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/subprocess.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sunau.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/symtable.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/sysconfig.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tabnanny.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tarfile.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/telnetlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tempfile.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/textwrap.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/this.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/threading.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/timeit.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/token.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tokenize.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}_parser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}_parser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}_re.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}_re.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}_types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/${MODPY_PYCACHE}_types.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/_parser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/_re.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tomllib/_types.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/trace.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/traceback.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tracemalloc.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/tty.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/types.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/typing.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}_log.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}_log.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}async_case.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}async_case.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}case.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}case.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}loader.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}loader.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}main.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}main.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}mock.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}mock.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}result.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}result.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}runner.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}runner.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}signals.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}signals.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}suite.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}suite.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/_log.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/async_case.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/case.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/loader.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/main.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/mock.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/result.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/runner.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/signals.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/suite.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/unittest/util.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}error.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}error.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}parse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}parse.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}request.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}request.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}response.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}response.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}robotparser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/${MODPY_PYCACHE}robotparser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/error.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/parse.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/request.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/response.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/urllib/robotparser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/uu.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/uuid.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/scripts/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/scripts/common/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/scripts/common/Activate.ps1 +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/scripts/common/activate +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/scripts/posix/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/scripts/posix/activate.csh +share/blender/4.4/python/lib/python${MODPY_VERSION}/venv/scripts/posix/activate.fish +share/blender/4.4/python/lib/python${MODPY_VERSION}/warnings.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/wave.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/weakref.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/webbrowser.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}handlers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}headers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}headers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}simple_server.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}simple_server.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}util.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}validate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/${MODPY_PYCACHE}validate.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/handlers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/headers.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/simple_server.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/types.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/util.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/wsgiref/validate.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xdrlib.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/NodeFilter.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}NodeFilter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}NodeFilter.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}domreg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}domreg.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}expatbuilder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}expatbuilder.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}minicompat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}minicompat.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}minidom.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}minidom.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}pulldom.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}pulldom.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}xmlbuilder.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/${MODPY_PYCACHE}xmlbuilder.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/domreg.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/expatbuilder.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/minicompat.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/minidom.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/pulldom.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/dom/xmlbuilder.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/ElementInclude.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/ElementPath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/ElementTree.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}ElementInclude.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}ElementInclude.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}ElementPath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}ElementPath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}ElementTree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}ElementTree.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}cElementTree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/${MODPY_PYCACHE}cElementTree.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/etree/cElementTree.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/${MODPY_PYCACHE}expat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/${MODPY_PYCACHE}expat.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/parsers/expat.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}_exceptions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}_exceptions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}expatreader.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}expatreader.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}handler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}handler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}saxutils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}saxutils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}xmlreader.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/${MODPY_PYCACHE}xmlreader.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/_exceptions.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/expatreader.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/handler.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/saxutils.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xml/sax/xmlreader.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/${MODPY_PYCACHE}client.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/${MODPY_PYCACHE}client.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/${MODPY_PYCACHE}server.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/${MODPY_PYCACHE}server.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/client.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/xmlrpc/server.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipapp.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/__init__.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/__main__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/${MODPY_PYCACHE}__main__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/${MODPY_PYCACHE}glob.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/${MODPY_PYCACHE}glob.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipfile/_path/glob.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/zipimport.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/__init__.py +${MODPY_COMMENT}share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}/ +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}_common.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}_tzpath.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}_tzpath.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}_zoneinfo.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/${MODPY_PYCACHE}_zoneinfo.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/_common.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/_tzpath.py +share/blender/4.4/python/lib/python${MODPY_VERSION}/zoneinfo/_zoneinfo.py +share/blender/4.4/scripts/ +share/blender/4.4/scripts/addons_core/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/${MODPY_PYCACHE}copy_global_transform.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/${MODPY_PYCACHE}copy_global_transform.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/ +share/blender/4.4/scripts/addons_core/bl_pkg/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_cli.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_cli.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_notify.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_notify.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_ops.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_ops.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}bl_extension_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}extensions_map_from_legacy_addons.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/${MODPY_PYCACHE}extensions_map_from_legacy_addons.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/bl_extension_cli.py +share/blender/4.4/scripts/addons_core/bl_pkg/bl_extension_notify.py +share/blender/4.4/scripts/addons_core/bl_pkg/bl_extension_ops.py +share/blender/4.4/scripts/addons_core/bl_pkg/bl_extension_ui.py +share/blender/4.4/scripts/addons_core/bl_pkg/bl_extension_utils.py +share/blender/4.4/scripts/addons_core/bl_pkg/cli/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/bl_pkg/cli/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/bl_pkg/cli/${MODPY_PYCACHE}blender_ext.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/bl_pkg/cli/${MODPY_PYCACHE}blender_ext.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/bl_pkg/cli/blender_ext.py +share/blender/4.4/scripts/addons_core/bl_pkg/extensions_map_from_legacy_addons.py +share/blender/4.4/scripts/addons_core/copy_global_transform.py +share/blender/4.4/scripts/addons_core/cycles/ +share/blender/4.4/scripts/addons_core/cycles/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}camera.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}engine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}engine.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}osl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}osl.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}version_update.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/cycles/${MODPY_PYCACHE}version_update.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/cycles/camera.py +share/blender/4.4/scripts/addons_core/cycles/engine.py +share/blender/4.4/scripts/addons_core/cycles/license/ +share/blender/4.4/scripts/addons_core/cycles/license/Apache2-license.txt +share/blender/4.4/scripts/addons_core/cycles/license/BSD-3-Clause-license.txt +share/blender/4.4/scripts/addons_core/cycles/license/MIT-license.txt +share/blender/4.4/scripts/addons_core/cycles/license/SPDX-license-identifiers.txt +share/blender/4.4/scripts/addons_core/cycles/license/Zlib-license.txt +share/blender/4.4/scripts/addons_core/cycles/license/readme.txt +share/blender/4.4/scripts/addons_core/cycles/operators.py +share/blender/4.4/scripts/addons_core/cycles/osl.py +share/blender/4.4/scripts/addons_core/cycles/presets.py +share/blender/4.4/scripts/addons_core/cycles/properties.py +share/blender/4.4/scripts/addons_core/cycles/source/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bake/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bake/bake.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/bvh.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/local.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/nodes.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/shadow_all.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/traversal.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/types.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/volume.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/bvh/volume_all.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/camera/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/camera/camera.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/camera/projection.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/alloc.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_ashikhmin_shirley.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_ashikhmin_velvet.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_burley.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_diffuse.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_diffuse_ramp.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_hair.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_microfacet.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_oren_nayar.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_phong_ramp.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_principled_hair_chiang.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_principled_hair_huang.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_ray_portal.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_sheen.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_toon.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_transparent.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bsdf_util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/bssrdf.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/emissive.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/volume.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/volume_draine.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/volume_fournier_forand.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/volume_henyey_greenstein.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/volume_rayleigh.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/closure/volume_util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/data_arrays.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/data_template.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/cuda/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/cuda/compat.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/cuda/config.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/cuda/globals.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/cuda/kernel.cu +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/gpu/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/gpu/image.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/gpu/kernel.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/gpu/parallel_active_index.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/gpu/parallel_prefix_sum.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/gpu/parallel_sorted_index.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/gpu/work_stealing.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hip/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hip/compat.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hip/config.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hip/globals.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hip/kernel.cpp +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hiprt/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hiprt/bvh.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hiprt/common.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hiprt/globals.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hiprt/hiprt_kernels.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/hiprt/kernel.cpp +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/bvh.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/compat.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/context_begin.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/context_end.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/function_constants.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/globals.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/metal/kernel.metal +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/optix/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/optix/bvh.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/optix/compat.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/optix/globals.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/optix/kernel.cu +share/blender/4.4/scripts/addons_core/cycles/source/kernel/device/optix/kernel_shader_raytrace.cu +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/adaptive_sampling.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/aov_passes.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/cryptomatte_passes.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/data_passes.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/denoising_passes.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/light_passes.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/read.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/film/write.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/attribute.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/curve.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/curve_intersect.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/motion_curve.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/motion_point.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/motion_triangle.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/motion_triangle_intersect.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/motion_triangle_shader.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/object.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/patch.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/point.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/point_intersect.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/primitive.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/shader_data.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/subd_triangle.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/triangle.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/triangle_intersect.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/geom/volume.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/globals.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/image.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/displacement_shader.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/guiding.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/init_from_bake.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/init_from_camera.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/intersect_closest.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/intersect_dedicated_light.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/intersect_shadow.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/intersect_subsurface.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/intersect_volume_stack.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/megakernel.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/mnee.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/path_state.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shade_background.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shade_dedicated_light.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shade_light.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shade_shadow.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shade_surface.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shade_volume.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shadow_catcher.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shadow_linking.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/shadow_state_template.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/state.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/state_flow.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/state_template.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/state_util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/subsurface.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/subsurface_disk.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/subsurface_random_walk.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/surface_shader.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/volume_shader.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/integrator/volume_stack.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/area.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/background.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/common.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/distant.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/distribution.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/light.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/point.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/sample.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/spot.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/tree.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/light/triangle.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/lcg.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/mapping.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/mis.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/pattern.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/sobol_burley.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/tabulated_sobol.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/sample/util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/ao.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/aov.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/attribute.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/bevel.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/blackbody.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/brick.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/brightness.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/bump.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/camera.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/checker.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/clamp.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/closure.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/color_util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/convert.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/displace.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/fractal_noise.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/fresnel.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/gabor.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/gamma.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/geometry.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/gradient.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/hsv.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/ies.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/image.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/invert.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/light_path.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/magic.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/map_range.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/mapping.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/mapping_util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/math.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/math_util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/mix.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/node_types_template.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/noise.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/noisetex.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/normal.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/ramp.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/ramp_util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/sepcomb_color.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/sepcomb_hsv.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/sepcomb_vector.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/sky.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/svm.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/tex_coord.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/types.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/util.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/value.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/vector_rotate.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/vector_transform.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/vertex_color.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/voronoi.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/voxel.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/wave.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/wavelength.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/white_noise.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/svm/wireframe.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/tables.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/types.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/util/ +share/blender/4.4/scripts/addons_core/cycles/source/kernel/util/colorspace.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/util/differential.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/util/ies.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/util/lookup_table.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/util/nanovdb.h +share/blender/4.4/scripts/addons_core/cycles/source/kernel/util/profiler.h +share/blender/4.4/scripts/addons_core/cycles/source/util/ +share/blender/4.4/scripts/addons_core/cycles/source/util/atomic.h +share/blender/4.4/scripts/addons_core/cycles/source/util/color.h +share/blender/4.4/scripts/addons_core/cycles/source/util/defines.h +share/blender/4.4/scripts/addons_core/cycles/source/util/half.h +share/blender/4.4/scripts/addons_core/cycles/source/util/hash.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_base.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_fast.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_float2.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_float3.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_float4.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_float8.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_int2.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_int3.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_int4.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_int8.h +share/blender/4.4/scripts/addons_core/cycles/source/util/math_intersect.h +share/blender/4.4/scripts/addons_core/cycles/source/util/projection.h +share/blender/4.4/scripts/addons_core/cycles/source/util/projection_inverse.h +share/blender/4.4/scripts/addons_core/cycles/source/util/rect.h +share/blender/4.4/scripts/addons_core/cycles/source/util/static_assert.h +share/blender/4.4/scripts/addons_core/cycles/source/util/texture.h +share/blender/4.4/scripts/addons_core/cycles/source/util/transform.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_base.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_float2.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_float3.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_float4.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_float8.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_int2.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_int3.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_int4.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_int8.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_spectrum.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_uchar2.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_uchar3.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_uchar4.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_uint2.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_uint3.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_uint4.h +share/blender/4.4/scripts/addons_core/cycles/source/util/types_ushort4.h +share/blender/4.4/scripts/addons_core/cycles/ui.py +share/blender/4.4/scripts/addons_core/cycles/version_update.py +share/blender/4.4/scripts/addons_core/hydra_storm/ +share/blender/4.4/scripts/addons_core/hydra_storm/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}engine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}engine.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/hydra_storm/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/hydra_storm/engine.py +share/blender/4.4/scripts/addons_core/hydra_storm/properties.py +share/blender/4.4/scripts/addons_core/hydra_storm/ui.py +share/blender/4.4/scripts/addons_core/io_anim_bvh/ +share/blender/4.4/scripts/addons_core/io_anim_bvh/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_anim_bvh/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_anim_bvh/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_anim_bvh/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_anim_bvh/${MODPY_PYCACHE}export_bvh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_anim_bvh/${MODPY_PYCACHE}export_bvh.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_anim_bvh/${MODPY_PYCACHE}import_bvh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_anim_bvh/${MODPY_PYCACHE}import_bvh.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_anim_bvh/export_bvh.py +share/blender/4.4/scripts/addons_core/io_anim_bvh/import_bvh.py +share/blender/4.4/scripts/addons_core/io_curve_svg/ +share/blender/4.4/scripts/addons_core/io_curve_svg/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}import_svg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}import_svg.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}svg_colors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}svg_colors.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}svg_util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}svg_util.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}svg_util_test.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_curve_svg/${MODPY_PYCACHE}svg_util_test.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_curve_svg/import_svg.py +share/blender/4.4/scripts/addons_core/io_curve_svg/svg_colors.py +share/blender/4.4/scripts/addons_core/io_curve_svg/svg_util.py +share/blender/4.4/scripts/addons_core/io_curve_svg/svg_util_test.py +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/ +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_eps.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_eps.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_png.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_png.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_svg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/${MODPY_PYCACHE}export_uv_svg.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/export_uv_eps.py +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/export_uv_png.py +share/blender/4.4/scripts/addons_core/io_mesh_uv_layout/export_uv_svg.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/ +share/blender/4.4/scripts/addons_core/io_scene_fbx/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}data_types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}data_types.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}encode_bin.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}encode_bin.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}export_fbx_bin.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}export_fbx_bin.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}fbx2json.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}fbx2json.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}fbx_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}fbx_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}fbx_utils_threading.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}fbx_utils_threading.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}import_fbx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}import_fbx.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}json2fbx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}json2fbx.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}parse_fbx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_fbx/${MODPY_PYCACHE}parse_fbx.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_fbx/data_types.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/encode_bin.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/export_fbx_bin.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/fbx2json.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/fbx_utils.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/fbx_utils_threading.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/import_fbx.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/json2fbx.py +share/blender/4.4/scripts/addons_core/io_scene_fbx/parse_fbx.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}blender_default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}blender_default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}conversion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}conversion.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}data_path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}data_path.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}extras.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}extras.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_math.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_math.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}gltf2_blender_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}json_util.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}json_util.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}material_helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/${MODPY_PYCACHE}material_helpers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/blender_default.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/conversion.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/data_path.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/extras.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/gltf2_blender_math.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/gltf2_blender_ui.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/gltf2_blender_utils.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/json_util.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/com/material_helpers.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}accessors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}accessors.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}cache.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}cache.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}cameras.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}cameras.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}export.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}exporter.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}exporter.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gather.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}gather.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}joints.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}joints.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}light_spots.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}light_spots.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}lights.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}lights.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}nodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}primitive_attributes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}primitive_attributes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}primitive_extract.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}primitive_extract.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}primitives.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}primitives.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}skins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}skins.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}tree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/${MODPY_PYCACHE}tree.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/accessors.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}action.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}action.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}anim_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}anim_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}animations.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}animations.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}drivers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}drivers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}scene_animation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}scene_animation.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}tracks.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/${MODPY_PYCACHE}tracks.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/action.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/anim_utils.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/animations.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/drivers.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/animation.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channel_target.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/channels.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/keyframes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/fcurves/sampler.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/keyframes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/${MODPY_PYCACHE}sampling_cache.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/${MODPY_PYCACHE}sampling_cache.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}action_sampled.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}action_sampled.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/action_sampled.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/channel_target.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/channels.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/keyframes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/armature/sampler.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/channel_target.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/channels.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/keyframes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/data/sampler.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}action_sampled.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}action_sampled.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/action_sampled.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/channel_target.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/channels.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/keyframes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/object/sampler.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/sampling_cache.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}action_sampled.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}action_sampled.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}channel_target.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}channels.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}keyframes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/${MODPY_PYCACHE}sampler.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/action_sampled.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channel_target.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/channels.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/keyframes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/sampled/shapekeys/sampler.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/scene_animation.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/animation/tracks.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/cache.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/cameras.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/export.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/exporter.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/gather.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/joints.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/light_spots.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/lights.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}encode_image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}encode_image.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}materials.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}materials.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}pbr_metallic_roughness.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}pbr_metallic_roughness.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}search_node_tree.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}search_node_tree.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}texture.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}texture_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}texture_info.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}unlit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/${MODPY_PYCACHE}unlit.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/encode_image.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}anisotropy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}anisotropy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}clearcoat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}clearcoat.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}emission.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}emission.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}ior.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}ior.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}sheen.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}sheen.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}specular.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}specular.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}transmission.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}transmission.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}variants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}variants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}volume.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/${MODPY_PYCACHE}volume.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/anisotropy.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/clearcoat.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/emission.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/ior.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/sheen.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/specular.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/transmission.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/variants.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/extensions/volume.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/image.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/materials.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/pbr_metallic_roughness.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/search_node_tree.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/texture.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/texture_info.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/material/unlit.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/mesh.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/nodes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/primitive_attributes.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/primitive_extract.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/primitives.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/sampler.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/skins.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/exp/tree.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/KHR_materials_anisotropy.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/KHR_materials_pbrSpecularGlossiness.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/KHR_materials_unlit.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}KHR_materials_anisotropy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}KHR_materials_anisotropy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}KHR_materials_pbrSpecularGlossiness.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}KHR_materials_pbrSpecularGlossiness.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}KHR_materials_unlit.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}KHR_materials_unlit.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_node.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_pointer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_pointer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_weight.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}animation_weight.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}blender_gltf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}blender_gltf.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}camera.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}draco_compression_extension.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}draco_compression_extension.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}light.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}light.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}material.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}material.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}material_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}material_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}node.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}pbrMetallicRoughness.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}pbrMetallicRoughness.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}scene.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}scene.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}texture.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}vnode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/${MODPY_PYCACHE}vnode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/animation.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/animation_node.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/animation_pointer.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/animation_utils.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/animation_weight.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/blender_gltf.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/camera.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/draco_compression_extension.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/image.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/light.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/material.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/material_utils.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/mesh.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/node.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/pbrMetallicRoughness.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/scene.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/texture.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/blender/imp/vnode.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}debug.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}debug.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}draco.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}draco.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_extensions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}gltf2_io_extensions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}lights_punctual.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}lights_punctual.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}path.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}variants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/${MODPY_PYCACHE}variants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/constants.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/debug.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/draco.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/gltf2_io.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/gltf2_io_extensions.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/lights_punctual.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/path.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/com/variants.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}binary_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}binary_data.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}buffer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}buffer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}draco.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}draco.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}export.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}image_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}image_data.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}user_extensions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/${MODPY_PYCACHE}user_extensions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/binary_data.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/buffer.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/draco.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/export.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/image_data.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/exp/user_extensions.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_binary.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_binary.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_gltf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}gltf2_io_gltf.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}user_extensions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/${MODPY_PYCACHE}user_extensions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/gltf2_io_binary.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/gltf2_io_gltf.py +share/blender/4.4/scripts/addons_core/io_scene_gltf2/io/imp/user_extensions.py +@so share/blender/4.4/scripts/addons_core/io_scene_gltf2/libextern_draco.so +share/blender/4.4/scripts/addons_core/node_wrangler/ +share/blender/4.4/scripts/addons_core/node_wrangler/README.md +share/blender/4.4/scripts/addons_core/node_wrangler/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}interface.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}interface.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/${MODPY_PYCACHE}preferences.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/interface.py +share/blender/4.4/scripts/addons_core/node_wrangler/operators.py +share/blender/4.4/scripts/addons_core/node_wrangler/preferences.py +share/blender/4.4/scripts/addons_core/node_wrangler/utils/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}constants.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}draw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}draw.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}nodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}paths.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}paths.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}paths_test.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/node_wrangler/utils/${MODPY_PYCACHE}paths_test.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/node_wrangler/utils/constants.py +share/blender/4.4/scripts/addons_core/node_wrangler/utils/draw.py +share/blender/4.4/scripts/addons_core/node_wrangler/utils/nodes.py +share/blender/4.4/scripts/addons_core/node_wrangler/utils/paths.py +share/blender/4.4/scripts/addons_core/node_wrangler/utils/paths_test.py +share/blender/4.4/scripts/addons_core/pose_library/ +share/blender/4.4/scripts/addons_core/pose_library/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}asset_browser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}asset_browser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}conversion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}conversion.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}keymaps.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}keymaps.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}pose_creation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}pose_creation.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}pose_usage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/pose_library/${MODPY_PYCACHE}pose_usage.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/pose_library/asset_browser.py +share/blender/4.4/scripts/addons_core/pose_library/conversion.py +share/blender/4.4/scripts/addons_core/pose_library/functions.py +share/blender/4.4/scripts/addons_core/pose_library/gui.py +share/blender/4.4/scripts/addons_core/pose_library/keymaps.py +share/blender/4.4/scripts/addons_core/pose_library/operators.py +share/blender/4.4/scripts/addons_core/pose_library/pose_creation.py +share/blender/4.4/scripts/addons_core/pose_library/pose_usage.py +share/blender/4.4/scripts/addons_core/rigify/ +share/blender/4.4/scripts/addons_core/rigify/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}base_generate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}base_generate.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}base_rig.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}base_rig.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}feature_set_list.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}feature_set_list.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}generate.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}generate.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}metarig_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}metarig_menu.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}rig_lists.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}rig_lists.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}rig_ui_template.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}rig_ui_template.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}rot_mode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}rot_mode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/${MODPY_PYCACHE}ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/base_generate.py +share/blender/4.4/scripts/addons_core/rigify/base_rig.py +share/blender/4.4/scripts/addons_core/rigify/feature_set_list.py +share/blender/4.4/scripts/addons_core/rigify/feature_sets/ +share/blender/4.4/scripts/addons_core/rigify/feature_sets/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/feature_sets/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/feature_sets/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/feature_sets/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/generate.py +share/blender/4.4/scripts/addons_core/rigify/metarig_menu.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/ +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/ +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}bird.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}bird.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}cat.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}cat.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}horse.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}horse.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}shark.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}shark.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}wolf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/${MODPY_PYCACHE}wolf.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/bird.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/cat.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/horse.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/shark.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/Animals/wolf.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_human.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_human.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_quadruped.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/${MODPY_PYCACHE}basic_quadruped.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/basic_human.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/Basic/basic_quadruped.py +share/blender/4.4/scripts/addons_core/rigify/metarigs/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/metarigs/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/metarigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/${MODPY_PYCACHE}human.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/metarigs/${MODPY_PYCACHE}human.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/metarigs/human.py +share/blender/4.4/scripts/addons_core/rigify/operators/ +share/blender/4.4/scripts/addons_core/rigify/operators/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}action_layers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}action_layers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}copy_mirror_parameters.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}copy_mirror_parameters.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}generic_ui_list.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}generic_ui_list.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}upgrade_face.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/operators/${MODPY_PYCACHE}upgrade_face.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/operators/action_layers.py +share/blender/4.4/scripts/addons_core/rigify/operators/copy_mirror_parameters.py +share/blender/4.4/scripts/addons_core/rigify/operators/generic_ui_list.py +share/blender/4.4/scripts/addons_core/rigify/operators/upgrade_face.py +share/blender/4.4/scripts/addons_core/rigify/rig_lists.py +share/blender/4.4/scripts/addons_core/rigify/rig_ui_template.py +share/blender/4.4/scripts/addons_core/rigify/rigs/ +share/blender/4.4/scripts/addons_core/rigify/rigs/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}chain_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}chain_rigs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/ +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}copy_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}copy_chain.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}pivot.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}pivot.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}raw_copy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}raw_copy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}super_copy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/${MODPY_PYCACHE}super_copy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/copy_chain.py +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/pivot.py +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/raw_copy.py +share/blender/4.4/scripts/addons_core/rigify/rigs/basic/super_copy.py +share/blender/4.4/scripts/addons_core/rigify/rigs/chain_rigs.py +share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/ +share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/${MODPY_PYCACHE}super_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/${MODPY_PYCACHE}super_chain.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/experimental/super_chain.py +share/blender/4.4/scripts/addons_core/rigify/rigs/face/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/face/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/face/${MODPY_PYCACHE}basic_tongue.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/face/${MODPY_PYCACHE}basic_tongue.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/face/${MODPY_PYCACHE}skin_eye.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/face/${MODPY_PYCACHE}skin_eye.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/face/${MODPY_PYCACHE}skin_jaw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/face/${MODPY_PYCACHE}skin_jaw.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/face/basic_tongue.py +share/blender/4.4/scripts/addons_core/rigify/rigs/face/skin_eye.py +share/blender/4.4/scripts/addons_core/rigify/rigs/face/skin_jaw.py +share/blender/4.4/scripts/addons_core/rigify/rigs/faces/ +share/blender/4.4/scripts/addons_core/rigify/rigs/faces/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/faces/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/faces/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/faces/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/faces/${MODPY_PYCACHE}super_face.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/faces/${MODPY_PYCACHE}super_face.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/faces/super_face.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/ +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}arm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}arm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}front_paw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}front_paw.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}leg.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}leg.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}limb_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}limb_rigs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}limb_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}limb_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}paw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}paw.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}rear_paw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}rear_paw.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}simple_tentacle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}simple_tentacle.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}spline_tentacle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}spline_tentacle.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}super_finger.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}super_finger.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}super_limb.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}super_limb.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}super_palm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/${MODPY_PYCACHE}super_palm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/arm.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/front_paw.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/leg.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/limb_rigs.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/limb_utils.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/paw.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/rear_paw.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/simple_tentacle.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/spline_tentacle.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/super_finger.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/super_limb.py +share/blender/4.4/scripts/addons_core/rigify/rigs/limbs/super_palm.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}anchor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}anchor.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}basic_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}basic_chain.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}glue.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}glue.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}skin_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}skin_nodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}skin_parents.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}skin_parents.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}skin_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}skin_rigs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}stretchy_chain.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/${MODPY_PYCACHE}stretchy_chain.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/anchor.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/basic_chain.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/glue.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/skin_nodes.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/skin_parents.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/skin_rigs.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/stretchy_chain.py +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/transform/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/skin/transform/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/transform/${MODPY_PYCACHE}basic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/transform/${MODPY_PYCACHE}basic.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/skin/transform/basic.py +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/ +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}basic_spine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}basic_spine.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}basic_tail.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}basic_tail.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}spine_rigs.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}spine_rigs.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}super_head.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}super_head.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}super_spine.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/${MODPY_PYCACHE}super_spine.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/basic_spine.py +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/basic_tail.py +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/spine_rigs.py +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/super_head.py +share/blender/4.4/scripts/addons_core/rigify/rigs/spines/super_spine.py +share/blender/4.4/scripts/addons_core/rigify/rigs/utils.py +share/blender/4.4/scripts/addons_core/rigify/rigs/widgets.py +share/blender/4.4/scripts/addons_core/rigify/rot_mode.py +share/blender/4.4/scripts/addons_core/rigify/ui.py +share/blender/4.4/scripts/addons_core/rigify/utils/ +share/blender/4.4/scripts/addons_core/rigify/utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}action_layers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}action_layers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}animation.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}bones.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}bones.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}collections.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}collections.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}components.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}components.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}errors.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}errors.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}layers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}layers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}mechanism.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}mechanism.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}metaclass.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}metaclass.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}misc.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}misc.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}naming.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}naming.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}node_merger.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}node_merger.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}objects.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}objects.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}rig.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}rig.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}switch_parent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}switch_parent.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}widgets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}widgets_basic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}widgets_basic.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}widgets_special.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/rigify/utils/${MODPY_PYCACHE}widgets_special.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/rigify/utils/action_layers.py +share/blender/4.4/scripts/addons_core/rigify/utils/animation.py +share/blender/4.4/scripts/addons_core/rigify/utils/bones.py +share/blender/4.4/scripts/addons_core/rigify/utils/collections.py +share/blender/4.4/scripts/addons_core/rigify/utils/components.py +share/blender/4.4/scripts/addons_core/rigify/utils/errors.py +share/blender/4.4/scripts/addons_core/rigify/utils/layers.py +share/blender/4.4/scripts/addons_core/rigify/utils/mechanism.py +share/blender/4.4/scripts/addons_core/rigify/utils/metaclass.py +share/blender/4.4/scripts/addons_core/rigify/utils/misc.py +share/blender/4.4/scripts/addons_core/rigify/utils/naming.py +share/blender/4.4/scripts/addons_core/rigify/utils/node_merger.py +share/blender/4.4/scripts/addons_core/rigify/utils/objects.py +share/blender/4.4/scripts/addons_core/rigify/utils/rig.py +share/blender/4.4/scripts/addons_core/rigify/utils/switch_parent.py +share/blender/4.4/scripts/addons_core/rigify/utils/widgets.py +share/blender/4.4/scripts/addons_core/rigify/utils/widgets_basic.py +share/blender/4.4/scripts/addons_core/rigify/utils/widgets_special.py +share/blender/4.4/scripts/addons_core/ui_translate/ +share/blender/4.4/scripts/addons_core/ui_translate/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}update_addon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}update_addon.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}update_repo.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}update_repo.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}update_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/ui_translate/${MODPY_PYCACHE}update_ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/ui_translate/settings.py +share/blender/4.4/scripts/addons_core/ui_translate/update_addon.py +share/blender/4.4/scripts/addons_core/ui_translate/update_repo.py +share/blender/4.4/scripts/addons_core/ui_translate/update_ui.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/ +share/blender/4.4/scripts/addons_core/viewport_vr_preview/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}action_map.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}action_map.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}action_map_io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}action_map_io.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}defaults.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}defaults.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}gui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}operators.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}properties.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/action_map.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/action_map_io.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/configs/ +${MODPY_COMMENT}share/blender/4.4/scripts/addons_core/viewport_vr_preview/configs/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/addons_core/viewport_vr_preview/configs/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/addons_core/viewport_vr_preview/configs/${MODPY_PYCACHE}default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/addons_core/viewport_vr_preview/configs/default.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/defaults.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/gui.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/operators.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/properties.py +share/blender/4.4/scripts/addons_core/viewport_vr_preview/versioning.py +share/blender/4.4/scripts/freestyle/ +share/blender/4.4/scripts/freestyle/modules/ +${MODPY_COMMENT}share/blender/4.4/scripts/freestyle/modules/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/freestyle/modules/${MODPY_PYCACHE}parameter_editor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/${MODPY_PYCACHE}parameter_editor.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/ +share/blender/4.4/scripts/freestyle/modules/freestyle/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}chainingiterators.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}chainingiterators.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}predicates.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}predicates.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}shaders.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}shaders.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}types.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/modules/freestyle/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/modules/freestyle/chainingiterators.py +share/blender/4.4/scripts/freestyle/modules/freestyle/functions.py +share/blender/4.4/scripts/freestyle/modules/freestyle/predicates.py +share/blender/4.4/scripts/freestyle/modules/freestyle/shaders.py +share/blender/4.4/scripts/freestyle/modules/freestyle/types.py +share/blender/4.4/scripts/freestyle/modules/freestyle/utils.py +share/blender/4.4/scripts/freestyle/modules/parameter_editor.py +share/blender/4.4/scripts/freestyle/styles/ +${MODPY_COMMENT}share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}anisotropic_diffusion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}anisotropic_diffusion.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_and_causal_density.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_and_causal_density.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_density.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}apriori_density.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}backbone_stretcher.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}backbone_stretcher.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_circles.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_circles.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_ellipses.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_ellipses.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_squares.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}blueprint_squares.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}cartoon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}cartoon.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}contour.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}contour.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}curvature2d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}curvature2d.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_sketchy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_sketchy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_smooth.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}external_contour_smooth.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}haloing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}haloing.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}ignore_small_occlusions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}ignore_small_occlusions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}invisible_lines.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}invisible_lines.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}japanese_bigbrush.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}japanese_bigbrush.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}long_anisotropically_dense.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}long_anisotropically_dense.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}multiple_parameterization.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}multiple_parameterization.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}nature.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}nature.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}near_lines.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}near_lines.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}occluded_by_specific_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}occluded_by_specific_object.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}polygonalize.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}polygonalize.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi0.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi0.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi0_not_external_contour.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi0_not_external_contour.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}qi2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sequentialsplit_sketchy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sequentialsplit_sketchy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_multiple_parameterization.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_multiple_parameterization.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_broken.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_broken.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_preserved.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}sketchy_topology_preserved.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_highest_2d_curvatures.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_highest_2d_curvatures.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_tvertices.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}split_at_tvertices.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}suggestive.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}suggestive.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}thickness_fof_depth_discontinuity.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}thickness_fof_depth_discontinuity.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}tipremover.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}tipremover.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}tvertex_remover.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}tvertex_remover.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}uniformpruning_zsort.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/freestyle/styles/${MODPY_PYCACHE}uniformpruning_zsort.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/freestyle/styles/anisotropic_diffusion.py +share/blender/4.4/scripts/freestyle/styles/apriori_and_causal_density.py +share/blender/4.4/scripts/freestyle/styles/apriori_density.py +share/blender/4.4/scripts/freestyle/styles/backbone_stretcher.py +share/blender/4.4/scripts/freestyle/styles/blueprint_circles.py +share/blender/4.4/scripts/freestyle/styles/blueprint_ellipses.py +share/blender/4.4/scripts/freestyle/styles/blueprint_squares.py +share/blender/4.4/scripts/freestyle/styles/cartoon.py +share/blender/4.4/scripts/freestyle/styles/contour.py +share/blender/4.4/scripts/freestyle/styles/curvature2d.py +share/blender/4.4/scripts/freestyle/styles/external_contour.py +share/blender/4.4/scripts/freestyle/styles/external_contour_sketchy.py +share/blender/4.4/scripts/freestyle/styles/external_contour_smooth.py +share/blender/4.4/scripts/freestyle/styles/haloing.py +share/blender/4.4/scripts/freestyle/styles/ignore_small_occlusions.py +share/blender/4.4/scripts/freestyle/styles/invisible_lines.py +share/blender/4.4/scripts/freestyle/styles/japanese_bigbrush.py +share/blender/4.4/scripts/freestyle/styles/long_anisotropically_dense.py +share/blender/4.4/scripts/freestyle/styles/multiple_parameterization.py +share/blender/4.4/scripts/freestyle/styles/nature.py +share/blender/4.4/scripts/freestyle/styles/near_lines.py +share/blender/4.4/scripts/freestyle/styles/occluded_by_specific_object.py +share/blender/4.4/scripts/freestyle/styles/polygonalize.py +share/blender/4.4/scripts/freestyle/styles/qi0.py +share/blender/4.4/scripts/freestyle/styles/qi0_not_external_contour.py +share/blender/4.4/scripts/freestyle/styles/qi1.py +share/blender/4.4/scripts/freestyle/styles/qi2.py +share/blender/4.4/scripts/freestyle/styles/sequentialsplit_sketchy.py +share/blender/4.4/scripts/freestyle/styles/sketchy_multiple_parameterization.py +share/blender/4.4/scripts/freestyle/styles/sketchy_topology_broken.py +share/blender/4.4/scripts/freestyle/styles/sketchy_topology_preserved.py +share/blender/4.4/scripts/freestyle/styles/split_at_highest_2d_curvatures.py +share/blender/4.4/scripts/freestyle/styles/split_at_tvertices.py +share/blender/4.4/scripts/freestyle/styles/suggestive.py +share/blender/4.4/scripts/freestyle/styles/thickness_fof_depth_discontinuity.py +share/blender/4.4/scripts/freestyle/styles/tipremover.py +share/blender/4.4/scripts/freestyle/styles/tvertex_remover.py +share/blender/4.4/scripts/freestyle/styles/uniformpruning_zsort.py +share/blender/4.4/scripts/modules/ +${MODPY_COMMENT}share/blender/4.4/scripts/modules/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}addon_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}addon_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}animsys_refactor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}animsys_refactor.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}bl_app_template_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}bl_app_template_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}blend_render_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}blend_render_info.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}bpy_restrict_state.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}bpy_restrict_state.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}bpy_types.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}bpy_types.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}console_python.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}console_python.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}console_shell.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}console_shell.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}graphviz_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}graphviz_export.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}keyingsets_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}keyingsets_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}nodeitems_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}nodeitems_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_info.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_keymap_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_keymap_ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_manual_reference.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_manual_reference.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_prop_ui.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_prop_ui.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_xml.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/${MODPY_PYCACHE}rna_xml.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/ +share/blender/4.4/scripts/modules/_bpy_internal/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/_bpy_internal/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/_bpy_internal/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/${MODPY_PYCACHE}freedesktop.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/${MODPY_PYCACHE}freedesktop.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/addons/ +share/blender/4.4/scripts/modules/_bpy_internal/addons/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/_bpy_internal/addons/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/_bpy_internal/addons/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/addons/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/addons/${MODPY_PYCACHE}cli.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/addons/${MODPY_PYCACHE}cli.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/addons/cli.py +share/blender/4.4/scripts/modules/_bpy_internal/extensions/ +share/blender/4.4/scripts/modules/_bpy_internal/extensions/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}junction_module.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}junction_module.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}permissions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}permissions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}stale_file_manager.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}stale_file_manager.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}tags.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}tags.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}wheel_manager.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/extensions/${MODPY_PYCACHE}wheel_manager.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/extensions/junction_module.py +share/blender/4.4/scripts/modules/_bpy_internal/extensions/permissions.py +share/blender/4.4/scripts/modules/_bpy_internal/extensions/stale_file_manager.py +share/blender/4.4/scripts/modules/_bpy_internal/extensions/tags.py +share/blender/4.4/scripts/modules/_bpy_internal/extensions/wheel_manager.py +share/blender/4.4/scripts/modules/_bpy_internal/freedesktop.py +share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/ +share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/${MODPY_PYCACHE}stroke.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/${MODPY_PYCACHE}stroke.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/grease_pencil/stroke.py +share/blender/4.4/scripts/modules/_bpy_internal/system_info/ +${MODPY_COMMENT}share/blender/4.4/scripts/modules/_bpy_internal/system_info/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/_bpy_internal/system_info/${MODPY_PYCACHE}text_generate_runtime.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/system_info/${MODPY_PYCACHE}text_generate_runtime.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/system_info/${MODPY_PYCACHE}url_prefill_runtime.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/system_info/${MODPY_PYCACHE}url_prefill_runtime.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/system_info/${MODPY_PYCACHE}url_prefill_startup.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/_bpy_internal/system_info/${MODPY_PYCACHE}url_prefill_startup.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/_bpy_internal/system_info/text_generate_runtime.py +share/blender/4.4/scripts/modules/_bpy_internal/system_info/url_prefill_runtime.py +share/blender/4.4/scripts/modules/_bpy_internal/system_info/url_prefill_startup.py +share/blender/4.4/scripts/modules/addon_utils.py +share/blender/4.4/scripts/modules/animsys_refactor.py +share/blender/4.4/scripts/modules/bl_app_override/ +share/blender/4.4/scripts/modules/bl_app_override/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_app_override/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_app_override/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_app_override/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_app_override/${MODPY_PYCACHE}helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_app_override/${MODPY_PYCACHE}helpers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_app_override/helpers.py +share/blender/4.4/scripts/modules/bl_app_template_utils.py +share/blender/4.4/scripts/modules/bl_console_utils/ +share/blender/4.4/scripts/modules/bl_console_utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_console_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_console_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_console_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/ +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_calltip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_calltip.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_import.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_import.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_namespace.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}complete_namespace.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}intellisense.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/${MODPY_PYCACHE}intellisense.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/complete_calltip.py +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/complete_import.py +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/complete_namespace.py +share/blender/4.4/scripts/modules/bl_console_utils/autocomplete/intellisense.py +share/blender/4.4/scripts/modules/bl_i18n_utils/ +share/blender/4.4/scripts/modules/bl_i18n_utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}bl_extract_messages.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}bl_extract_messages.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}merge_po.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}merge_po.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings_user.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}settings_user.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_cli.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_cli.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_languages_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_languages_menu.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_rtl.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_rtl.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_spell_check.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_i18n_utils/${MODPY_PYCACHE}utils_spell_check.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_i18n_utils/bl_extract_messages.py +share/blender/4.4/scripts/modules/bl_i18n_utils/merge_po.py +share/blender/4.4/scripts/modules/bl_i18n_utils/settings.py +share/blender/4.4/scripts/modules/bl_i18n_utils/settings_user.py +share/blender/4.4/scripts/modules/bl_i18n_utils/utils.py +share/blender/4.4/scripts/modules/bl_i18n_utils/utils_cli.py +share/blender/4.4/scripts/modules/bl_i18n_utils/utils_languages_menu.py +share/blender/4.4/scripts/modules/bl_i18n_utils/utils_rtl.py +share/blender/4.4/scripts/modules/bl_i18n_utils/utils_spell_check.py +share/blender/4.4/scripts/modules/bl_keymap_utils/ +share/blender/4.4/scripts/modules/bl_keymap_utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}io.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_from_toolbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_from_toolbar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_hierarchy.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}keymap_hierarchy.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}platform_helpers.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}platform_helpers.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_keymap_utils/${MODPY_PYCACHE}versioning.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_keymap_utils/io.py +share/blender/4.4/scripts/modules/bl_keymap_utils/keymap_from_toolbar.py +share/blender/4.4/scripts/modules/bl_keymap_utils/keymap_hierarchy.py +share/blender/4.4/scripts/modules/bl_keymap_utils/platform_helpers.py +share/blender/4.4/scripts/modules/bl_keymap_utils/versioning.py +share/blender/4.4/scripts/modules/bl_previews_utils/ +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_previews_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_previews_utils/${MODPY_PYCACHE}bl_previews_render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_previews_utils/${MODPY_PYCACHE}bl_previews_render.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_previews_utils/bl_previews_render.py +share/blender/4.4/scripts/modules/bl_rna_utils/ +share/blender/4.4/scripts/modules/bl_rna_utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}data_path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_rna_utils/${MODPY_PYCACHE}data_path.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_rna_utils/data_path.py +share/blender/4.4/scripts/modules/bl_text_utils/ +share/blender/4.4/scripts/modules/bl_text_utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_text_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_text_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_text_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_text_utils/${MODPY_PYCACHE}external_editor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_text_utils/${MODPY_PYCACHE}external_editor.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_text_utils/external_editor.py +share/blender/4.4/scripts/modules/bl_ui_utils/ +share/blender/4.4/scripts/modules/bl_ui_utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}layout.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bl_ui_utils/${MODPY_PYCACHE}layout.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bl_ui_utils/layout.py +share/blender/4.4/scripts/modules/blend_render_info.py +share/blender/4.4/scripts/modules/bpy/ +share/blender/4.4/scripts/modules/bpy/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bpy/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bpy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy/${MODPY_PYCACHE}ops.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy/${MODPY_PYCACHE}ops.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy/${MODPY_PYCACHE}path.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy/${MODPY_PYCACHE}path.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy/ops.py +share/blender/4.4/scripts/modules/bpy/path.py +share/blender/4.4/scripts/modules/bpy/utils/ +share/blender/4.4/scripts/modules/bpy/utils/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bpy/utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bpy/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy/utils/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy/utils/${MODPY_PYCACHE}previews.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy/utils/${MODPY_PYCACHE}previews.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy/utils/${MODPY_PYCACHE}toolsystem.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy/utils/${MODPY_PYCACHE}toolsystem.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy/utils/previews.py +share/blender/4.4/scripts/modules/bpy/utils/toolsystem.py +share/blender/4.4/scripts/modules/bpy_extras/ +share/blender/4.4/scripts/modules/bpy_extras/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}anim_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}anim_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}asset_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}asset_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}bmesh_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}bmesh_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}id_map_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}id_map_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}image_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}image_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}io_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}io_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}keyconfig_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}keyconfig_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}mesh_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}mesh_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_shader_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_shader_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}node_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}object_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}object_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}view3d_utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/${MODPY_PYCACHE}view3d_utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/anim_utils.py +share/blender/4.4/scripts/modules/bpy_extras/asset_utils.py +share/blender/4.4/scripts/modules/bpy_extras/bmesh_utils.py +share/blender/4.4/scripts/modules/bpy_extras/id_map_utils.py +share/blender/4.4/scripts/modules/bpy_extras/image_utils.py +share/blender/4.4/scripts/modules/bpy_extras/io_utils.py +share/blender/4.4/scripts/modules/bpy_extras/keyconfig_utils.py +share/blender/4.4/scripts/modules/bpy_extras/mesh_utils.py +share/blender/4.4/scripts/modules/bpy_extras/node_shader_utils.py +share/blender/4.4/scripts/modules/bpy_extras/node_utils.py +share/blender/4.4/scripts/modules/bpy_extras/object_utils.py +share/blender/4.4/scripts/modules/bpy_extras/view3d_utils.py +share/blender/4.4/scripts/modules/bpy_extras/wm_utils/ +${MODPY_COMMENT}share/blender/4.4/scripts/modules/bpy_extras/wm_utils/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/bpy_extras/wm_utils/${MODPY_PYCACHE}progress_report.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/bpy_extras/wm_utils/${MODPY_PYCACHE}progress_report.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/bpy_extras/wm_utils/progress_report.py +share/blender/4.4/scripts/modules/bpy_restrict_state.py +share/blender/4.4/scripts/modules/bpy_types.py +share/blender/4.4/scripts/modules/console_python.py +share/blender/4.4/scripts/modules/console_shell.py +share/blender/4.4/scripts/modules/gpu_extras/ +share/blender/4.4/scripts/modules/gpu_extras/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/modules/gpu_extras/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/modules/gpu_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/gpu_extras/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/gpu_extras/${MODPY_PYCACHE}batch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/gpu_extras/${MODPY_PYCACHE}batch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/gpu_extras/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/modules/gpu_extras/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/modules/gpu_extras/batch.py +share/blender/4.4/scripts/modules/gpu_extras/presets.py +share/blender/4.4/scripts/modules/graphviz_export.py +share/blender/4.4/scripts/modules/keyingsets_utils.py +share/blender/4.4/scripts/modules/nodeitems_utils.py +share/blender/4.4/scripts/modules/rna_info.py +share/blender/4.4/scripts/modules/rna_keymap_ui.py +share/blender/4.4/scripts/modules/rna_manual_reference.py +share/blender/4.4/scripts/modules/rna_prop_ui.py +share/blender/4.4/scripts/modules/rna_xml.py +share/blender/4.4/scripts/presets/ +share/blender/4.4/scripts/presets/camera/ +share/blender/4.4/scripts/presets/camera/1_inch.py +share/blender/4.4/scripts/presets/camera/1_slash_1.8_inch.py +share/blender/4.4/scripts/presets/camera/1_slash_2.3_inch.py +share/blender/4.4/scripts/presets/camera/1_slash_2.5_inch.py +share/blender/4.4/scripts/presets/camera/1_slash_2.7_inch.py +share/blender/4.4/scripts/presets/camera/1_slash_3.2_inch.py +share/blender/4.4/scripts/presets/camera/2_slash_3_inch.py +share/blender/4.4/scripts/presets/camera/APS-C.py +share/blender/4.4/scripts/presets/camera/APS-C_(Canon).py +share/blender/4.4/scripts/presets/camera/APS-H_(Canon).py +share/blender/4.4/scripts/presets/camera/Analog_16mm.py +share/blender/4.4/scripts/presets/camera/Analog_35mm.py +share/blender/4.4/scripts/presets/camera/Analog_65mm.py +share/blender/4.4/scripts/presets/camera/Analog_IMAX.py +share/blender/4.4/scripts/presets/camera/Analog_Super_16.py +share/blender/4.4/scripts/presets/camera/Analog_Super_35.py +share/blender/4.4/scripts/presets/camera/Arri_Alexa_65.py +share/blender/4.4/scripts/presets/camera/Arri_Alexa_LF.py +share/blender/4.4/scripts/presets/camera/Arri_Alexa_Mini_&_SXT.py +share/blender/4.4/scripts/presets/camera/Blackmagic_Pocket_&_Studio.py +share/blender/4.4/scripts/presets/camera/Blackmagic_Pocket_4K.py +share/blender/4.4/scripts/presets/camera/Blackmagic_Pocket_6k.py +share/blender/4.4/scripts/presets/camera/Blackmagic_URSA_4.6K.py +share/blender/4.4/scripts/presets/camera/Foveon_(Sigma).py +share/blender/4.4/scripts/presets/camera/Fullframe.py +share/blender/4.4/scripts/presets/camera/MFT.py +share/blender/4.4/scripts/presets/camera/Medium-format_(Hasselblad).py +share/blender/4.4/scripts/presets/camera/RED_Dragon_5K.py +share/blender/4.4/scripts/presets/camera/RED_Dragon_6K.py +share/blender/4.4/scripts/presets/camera/RED_Helium_8K.py +share/blender/4.4/scripts/presets/camera/RED_Monstro_8K.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cloth/ +share/blender/4.4/scripts/presets/cloth/Cotton.py +share/blender/4.4/scripts/presets/cloth/Denim.py +share/blender/4.4/scripts/presets/cloth/Leather.py +share/blender/4.4/scripts/presets/cloth/Rubber.py +share/blender/4.4/scripts/presets/cloth/Silk.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Cotton.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Cotton.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Denim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Denim.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Leather.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Leather.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Rubber.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Rubber.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Silk.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cloth/${MODPY_PYCACHE}Silk.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/ +share/blender/4.4/scripts/presets/color_management/white_balance/ +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_A.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_B.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_C.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_D50.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_D55.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_D65.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_D75.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_D93.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_E.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F1.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F10.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F11.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F12.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F2.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F3.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F4.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F5.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F6.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F7.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F8.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_F9.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-B1.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-B2.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-B3.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-B4.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-B5.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-BH1.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-RGB1.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-V1.py +share/blender/4.4/scripts/presets/color_management/white_balance/Illuminant_LED-V2.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_A.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_A.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_B.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_B.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_C.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_C.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D50.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D50.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D55.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D55.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D65.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D65.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D75.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D75.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D93.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_D93.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_E.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_E.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F10.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F10.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F11.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F11.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F12.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F12.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F3.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F4.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F4.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F5.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F5.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F6.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F6.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F7.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F7.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F8.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F8.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_F9.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B3.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B4.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B4.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B5.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-B5.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-BH1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-BH1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-RGB1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-RGB1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-V1.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-V1.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-V2.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/color_management/white_balance/${MODPY_PYCACHE}Illuminant_LED-V2.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/ +share/blender/4.4/scripts/presets/cycles/integrator/ +share/blender/4.4/scripts/presets/cycles/integrator/Default.py +share/blender/4.4/scripts/presets/cycles/integrator/Direct_Light.py +share/blender/4.4/scripts/presets/cycles/integrator/Fast_Global_Illumination.py +share/blender/4.4/scripts/presets/cycles/integrator/Full_Global_Illumination.py +share/blender/4.4/scripts/presets/cycles/integrator/Limited_Global_Illumination.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Direct_Light.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Direct_Light.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Fast_Global_Illumination.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Fast_Global_Illumination.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Full_Global_Illumination.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Full_Global_Illumination.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Limited_Global_Illumination.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/integrator/${MODPY_PYCACHE}Limited_Global_Illumination.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/performance/ +share/blender/4.4/scripts/presets/cycles/performance/Default.py +share/blender/4.4/scripts/presets/cycles/performance/Faster_Render.py +share/blender/4.4/scripts/presets/cycles/performance/Lower_Memory.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/cycles/performance/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/cycles/performance/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/performance/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/performance/${MODPY_PYCACHE}Faster_Render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/performance/${MODPY_PYCACHE}Faster_Render.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/performance/${MODPY_PYCACHE}Lower_Memory.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/performance/${MODPY_PYCACHE}Lower_Memory.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/sampling/ +share/blender/4.4/scripts/presets/cycles/sampling/Final.py +share/blender/4.4/scripts/presets/cycles/sampling/Preview.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/cycles/sampling/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/viewport_sampling/ +share/blender/4.4/scripts/presets/cycles/viewport_sampling/Final.py +share/blender/4.4/scripts/presets/cycles/viewport_sampling/Preview.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Final.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/cycles/viewport_sampling/${MODPY_PYCACHE}Preview.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/eevee/ +share/blender/4.4/scripts/presets/eevee/raytracing/ +share/blender/4.4/scripts/presets/eevee/raytracing/Default.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/eevee/raytracing/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/eevee/raytracing/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/eevee/raytracing/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/ffmpeg/ +share/blender/4.4/scripts/presets/ffmpeg/DVD_(note_colon__this_changes_render_resolution).py +share/blender/4.4/scripts/presets/ffmpeg/H264_in_MP4.py +share/blender/4.4/scripts/presets/ffmpeg/H264_in_Matroska.py +share/blender/4.4/scripts/presets/ffmpeg/H264_in_Matroska_for_scrubbing.py +share/blender/4.4/scripts/presets/ffmpeg/Ogg_Theora.py +share/blender/4.4/scripts/presets/ffmpeg/WebM_(VP9+Opus).py +share/blender/4.4/scripts/presets/ffmpeg/Xvid.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}DVD_(note_colon__this_changes_render_resolution).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}DVD_(note_colon__this_changes_render_resolution).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_MP4.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_MP4.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska_for_scrubbing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}H264_in_Matroska_for_scrubbing.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}Ogg_Theora.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}Ogg_Theora.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}WebM_(VP9+Opus).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}WebM_(VP9+Opus).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}Xvid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/ffmpeg/${MODPY_PYCACHE}Xvid.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/fluid/ +share/blender/4.4/scripts/presets/fluid/Honey.py +share/blender/4.4/scripts/presets/fluid/Oil.py +share/blender/4.4/scripts/presets/fluid/Water.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/fluid/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/fluid/${MODPY_PYCACHE}Honey.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/fluid/${MODPY_PYCACHE}Honey.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/fluid/${MODPY_PYCACHE}Oil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/fluid/${MODPY_PYCACHE}Oil.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/fluid/${MODPY_PYCACHE}Water.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/fluid/${MODPY_PYCACHE}Water.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/ +share/blender/4.4/scripts/presets/framerate/120.py +share/blender/4.4/scripts/presets/framerate/23.98.py +share/blender/4.4/scripts/presets/framerate/24.py +share/blender/4.4/scripts/presets/framerate/240.py +share/blender/4.4/scripts/presets/framerate/25.py +share/blender/4.4/scripts/presets/framerate/29.97.py +share/blender/4.4/scripts/presets/framerate/30.py +share/blender/4.4/scripts/presets/framerate/50.py +share/blender/4.4/scripts/presets/framerate/59.94.py +share/blender/4.4/scripts/presets/framerate/60.py +share/blender/4.4/scripts/presets/framerate/Custom.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}120.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}120.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}23.98.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}23.98.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}24.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}24.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}240.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}240.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}25.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}25.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}29.97.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}29.97.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}30.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}30.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}50.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}50.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}59.94.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}59.94.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}60.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}60.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}Custom.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/framerate/${MODPY_PYCACHE}Custom.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/gpencil_material/ +share/blender/4.4/scripts/presets/gpencil_material/Fill_Only.py +share/blender/4.4/scripts/presets/gpencil_material/Stroke_Only.py +share/blender/4.4/scripts/presets/gpencil_material/Stroke_and_Fill.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/gpencil_material/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/gpencil_material/${MODPY_PYCACHE}Fill_Only.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/gpencil_material/${MODPY_PYCACHE}Fill_Only.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_Only.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_Only.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_and_Fill.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/gpencil_material/${MODPY_PYCACHE}Stroke_and_Fill.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/hair_dynamics/ +share/blender/4.4/scripts/presets/hair_dynamics/Default.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/hair_dynamics/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/hair_dynamics/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/hair_dynamics/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/interface_theme/ +share/blender/4.4/scripts/presets/interface_theme/Blender_Dark.xml +share/blender/4.4/scripts/presets/interface_theme/Blender_Light.xml +share/blender/4.4/scripts/presets/keyconfig/ +share/blender/4.4/scripts/presets/keyconfig/Blender.py +share/blender/4.4/scripts/presets/keyconfig/Blender_27x.py +share/blender/4.4/scripts/presets/keyconfig/Industry_Compatible.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/keyconfig/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender_27x.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/keyconfig/${MODPY_PYCACHE}Blender_27x.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/keyconfig/${MODPY_PYCACHE}Industry_Compatible.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/keyconfig/${MODPY_PYCACHE}Industry_Compatible.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/keyconfig/keymap_data/ +${MODPY_COMMENT}share/blender/4.4/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}blender_default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}blender_default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}industry_compatible_data.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/keyconfig/keymap_data/${MODPY_PYCACHE}industry_compatible_data.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/keyconfig/keymap_data/blender_default.py +share/blender/4.4/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py +share/blender/4.4/scripts/presets/operator/ +share/blender/4.4/scripts/presets/operator/wm.collada_export/ +${MODPY_COMMENT}share/blender/4.4/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_rigged.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_rigged.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_static.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/operator/wm.collada_export/${MODPY_PYCACHE}sl_plus_open_sim_static.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/operator/wm.collada_export/sl_plus_open_sim_rigged.py +share/blender/4.4/scripts/presets/operator/wm.collada_export/sl_plus_open_sim_static.py +share/blender/4.4/scripts/presets/render/ +share/blender/4.4/scripts/presets/render/4K_DCI_2160p.py +share/blender/4.4/scripts/presets/render/4K_UHDTV_2160p.py +share/blender/4.4/scripts/presets/render/4K_UW_1600p.py +share/blender/4.4/scripts/presets/render/DVCPRO_HD_1080p.py +share/blender/4.4/scripts/presets/render/DVCPRO_HD_720p.py +share/blender/4.4/scripts/presets/render/HDTV_1080p.py +share/blender/4.4/scripts/presets/render/HDTV_720p.py +share/blender/4.4/scripts/presets/render/HDV_1080p.py +share/blender/4.4/scripts/presets/render/HDV_NTSC_1080p.py +share/blender/4.4/scripts/presets/render/HDV_PAL_1080p.py +share/blender/4.4/scripts/presets/render/TV_NTSC_16_colon_9.py +share/blender/4.4/scripts/presets/render/TV_NTSC_4_colon_3.py +share/blender/4.4/scripts/presets/render/TV_PAL_16_colon_9.py +share/blender/4.4/scripts/presets/render/TV_PAL_4_colon_3.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}4K_DCI_2160p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}4K_DCI_2160p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}4K_UHDTV_2160p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}4K_UHDTV_2160p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}4K_UW_1600p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}4K_UW_1600p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_1080p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_720p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}DVCPRO_HD_720p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDTV_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDTV_1080p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDTV_720p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDTV_720p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDV_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDV_1080p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDV_NTSC_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDV_NTSC_1080p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDV_PAL_1080p.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}HDV_PAL_1080p.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_4_colon_3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_NTSC_4_colon_3.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_4_colon_3.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/render/${MODPY_PYCACHE}TV_PAL_4_colon_3.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/safe_areas/ +share/blender/4.4/scripts/presets/safe_areas/14_colon_9_in_16_colon_9.py +share/blender/4.4/scripts/presets/safe_areas/16_colon_9.py +share/blender/4.4/scripts/presets/safe_areas/4_colon_3_in_16_colon_9.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/safe_areas/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/safe_areas/${MODPY_PYCACHE}14_colon_9_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/safe_areas/${MODPY_PYCACHE}14_colon_9_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/safe_areas/${MODPY_PYCACHE}16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/safe_areas/${MODPY_PYCACHE}16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/safe_areas/${MODPY_PYCACHE}4_colon_3_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/safe_areas/${MODPY_PYCACHE}4_colon_3_in_16_colon_9.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/text_editor/ +share/blender/4.4/scripts/presets/text_editor/Internal.py +share/blender/4.4/scripts/presets/text_editor/Visual_Studio_Code.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/text_editor/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/text_editor/${MODPY_PYCACHE}Internal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/text_editor/${MODPY_PYCACHE}Internal.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/text_editor/${MODPY_PYCACHE}Visual_Studio_Code.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/text_editor/${MODPY_PYCACHE}Visual_Studio_Code.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/ +share/blender/4.4/scripts/presets/tracking_camera/1_inch.py +share/blender/4.4/scripts/presets/tracking_camera/1_slash_1.8_inch.py +share/blender/4.4/scripts/presets/tracking_camera/1_slash_2.3_inch.py +share/blender/4.4/scripts/presets/tracking_camera/1_slash_2.5_inch.py +share/blender/4.4/scripts/presets/tracking_camera/1_slash_2.7_inch.py +share/blender/4.4/scripts/presets/tracking_camera/1_slash_3.2_inch.py +share/blender/4.4/scripts/presets/tracking_camera/2_slash_3_inch.py +share/blender/4.4/scripts/presets/tracking_camera/APS-C.py +share/blender/4.4/scripts/presets/tracking_camera/APS-C_(Canon).py +share/blender/4.4/scripts/presets/tracking_camera/APS-H_(Canon).py +share/blender/4.4/scripts/presets/tracking_camera/Analog_16mm.py +share/blender/4.4/scripts/presets/tracking_camera/Analog_35mm.py +share/blender/4.4/scripts/presets/tracking_camera/Analog_65mm.py +share/blender/4.4/scripts/presets/tracking_camera/Analog_IMAX.py +share/blender/4.4/scripts/presets/tracking_camera/Analog_Super_16.py +share/blender/4.4/scripts/presets/tracking_camera/Analog_Super_35.py +share/blender/4.4/scripts/presets/tracking_camera/Arri_Alexa_65.py +share/blender/4.4/scripts/presets/tracking_camera/Arri_Alexa_LF.py +share/blender/4.4/scripts/presets/tracking_camera/Arri_Alexa_Mini_&_SXT.py +share/blender/4.4/scripts/presets/tracking_camera/Blackmagic_Pocket_&_Studio.py +share/blender/4.4/scripts/presets/tracking_camera/Blackmagic_Pocket_4K.py +share/blender/4.4/scripts/presets/tracking_camera/Blackmagic_Pocket_6k.py +share/blender/4.4/scripts/presets/tracking_camera/Blackmagic_URSA_4.6K.py +share/blender/4.4/scripts/presets/tracking_camera/Foveon_(Sigma).py +share/blender/4.4/scripts/presets/tracking_camera/Fullframe.py +share/blender/4.4/scripts/presets/tracking_camera/MFT.py +share/blender/4.4/scripts/presets/tracking_camera/Medium-format_(Hasselblad).py +share/blender/4.4/scripts/presets/tracking_camera/RED_Dragon_5K.py +share/blender/4.4/scripts/presets/tracking_camera/RED_Dragon_6K.py +share/blender/4.4/scripts/presets/tracking_camera/RED_Helium_8K.py +share/blender/4.4/scripts/presets/tracking_camera/RED_Monstro_8K.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_1.8_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.3_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.5_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_2.7_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}1_slash_3.2_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}2_slash_3_inch.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-C_(Canon).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}APS-H_(Canon).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_16mm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_35mm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_65mm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_IMAX.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_16.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Analog_Super_35.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_65.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_LF.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Arri_Alexa_Mini_&_SXT.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_&_Studio.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_4K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_Pocket_6k.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Blackmagic_URSA_4.6K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Foveon_(Sigma).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Fullframe.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}MFT.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}Medium-format_(Hasselblad).${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_5K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Dragon_6K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Helium_8K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_camera/${MODPY_PYCACHE}RED_Monstro_8K.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_settings/ +share/blender/4.4/scripts/presets/tracking_settings/Blurry_Footage.py +share/blender/4.4/scripts/presets/tracking_settings/Default.py +share/blender/4.4/scripts/presets/tracking_settings/Fast_Motion.py +share/blender/4.4/scripts/presets/tracking_settings/Planar.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Blurry_Footage.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Blurry_Footage.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Fast_Motion.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Fast_Motion.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Planar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_settings/${MODPY_PYCACHE}Planar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_track_color/ +share/blender/4.4/scripts/presets/tracking_track_color/Default.py +share/blender/4.4/scripts/presets/tracking_track_color/Far_Plane.py +share/blender/4.4/scripts/presets/tracking_track_color/Near_Plane.py +share/blender/4.4/scripts/presets/tracking_track_color/Object.py +${MODPY_COMMENT}share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Default.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Far_Plane.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Far_Plane.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Near_Plane.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Near_Plane.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/presets/tracking_track_color/${MODPY_PYCACHE}Object.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/ +${MODPY_COMMENT}share/blender/4.4/scripts/startup/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/${MODPY_PYCACHE}keyingsets_builtins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/${MODPY_PYCACHE}keyingsets_builtins.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/${MODPY_PYCACHE}nodeitems_builtins.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/${MODPY_PYCACHE}nodeitems_builtins.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_app_templates_system/ +share/blender/4.4/scripts/startup/bl_app_templates_system/2D_Animation/ +share/blender/4.4/scripts/startup/bl_app_templates_system/2D_Animation/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/startup/bl_app_templates_system/2D_Animation/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/bl_app_templates_system/2D_Animation/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_app_templates_system/2D_Animation/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_app_templates_system/2D_Animation/startup.blend +share/blender/4.4/scripts/startup/bl_app_templates_system/Sculpting/ +share/blender/4.4/scripts/startup/bl_app_templates_system/Sculpting/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/startup/bl_app_templates_system/Sculpting/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/bl_app_templates_system/Sculpting/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_app_templates_system/Sculpting/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_app_templates_system/Sculpting/startup.blend +share/blender/4.4/scripts/startup/bl_app_templates_system/VFX/ +share/blender/4.4/scripts/startup/bl_app_templates_system/VFX/startup.blend +share/blender/4.4/scripts/startup/bl_app_templates_system/Video_Editing/ +share/blender/4.4/scripts/startup/bl_app_templates_system/Video_Editing/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/startup/bl_app_templates_system/Video_Editing/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/bl_app_templates_system/Video_Editing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_app_templates_system/Video_Editing/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_app_templates_system/Video_Editing/startup.blend +share/blender/4.4/scripts/startup/bl_operators/ +share/blender/4.4/scripts/startup/bl_operators/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}add_mesh_torus.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}add_mesh_torus.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}anim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}anim.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}assets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}assets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}bone_selection_sets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}bone_selection_sets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}clip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}clip.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}connect_to_output.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}connect_to_output.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}console.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}console.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}constraint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}constraint.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}file.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}file.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}freestyle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}freestyle.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}geometry_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}geometry_nodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}image.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}image_as_planes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}image_as_planes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}mesh.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}node.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object_align.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object_align.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object_quick_effects.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object_quick_effects.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object_randomize_transform.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}object_randomize_transform.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}presets.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}rigidbody.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}rigidbody.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}screen_play_rendered_anim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}screen_play_rendered_anim.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}sequencer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}sequencer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}spreadsheet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}spreadsheet.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}userpref.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}userpref.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_follow_active.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_follow_active.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_lightmap.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_lightmap.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_transform.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}uvcalc_transform.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}vertexpaint_dirt.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}vertexpaint_dirt.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}view3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}view3d.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}wm.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}wm.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}world.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/${MODPY_PYCACHE}world.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/add_mesh_torus.py +share/blender/4.4/scripts/startup/bl_operators/anim.py +share/blender/4.4/scripts/startup/bl_operators/assets.py +share/blender/4.4/scripts/startup/bl_operators/bmesh/ +${MODPY_COMMENT}share/blender/4.4/scripts/startup/bl_operators/bmesh/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/bl_operators/bmesh/${MODPY_PYCACHE}find_adjacent.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/bmesh/${MODPY_PYCACHE}find_adjacent.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/bmesh/find_adjacent.py +share/blender/4.4/scripts/startup/bl_operators/bone_selection_sets.py +share/blender/4.4/scripts/startup/bl_operators/clip.py +share/blender/4.4/scripts/startup/bl_operators/connect_to_output.py +share/blender/4.4/scripts/startup/bl_operators/console.py +share/blender/4.4/scripts/startup/bl_operators/constraint.py +share/blender/4.4/scripts/startup/bl_operators/file.py +share/blender/4.4/scripts/startup/bl_operators/freestyle.py +share/blender/4.4/scripts/startup/bl_operators/geometry_nodes.py +share/blender/4.4/scripts/startup/bl_operators/image.py +share/blender/4.4/scripts/startup/bl_operators/image_as_planes.py +share/blender/4.4/scripts/startup/bl_operators/mesh.py +share/blender/4.4/scripts/startup/bl_operators/node.py +share/blender/4.4/scripts/startup/bl_operators/node_editor/ +${MODPY_COMMENT}share/blender/4.4/scripts/startup/bl_operators/node_editor/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/bl_operators/node_editor/${MODPY_PYCACHE}node_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_operators/node_editor/${MODPY_PYCACHE}node_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_operators/node_editor/node_functions.py +share/blender/4.4/scripts/startup/bl_operators/object.py +share/blender/4.4/scripts/startup/bl_operators/object_align.py +share/blender/4.4/scripts/startup/bl_operators/object_quick_effects.py +share/blender/4.4/scripts/startup/bl_operators/object_randomize_transform.py +share/blender/4.4/scripts/startup/bl_operators/presets.py +share/blender/4.4/scripts/startup/bl_operators/rigidbody.py +share/blender/4.4/scripts/startup/bl_operators/screen_play_rendered_anim.py +share/blender/4.4/scripts/startup/bl_operators/sequencer.py +share/blender/4.4/scripts/startup/bl_operators/spreadsheet.py +share/blender/4.4/scripts/startup/bl_operators/userpref.py +share/blender/4.4/scripts/startup/bl_operators/uvcalc_follow_active.py +share/blender/4.4/scripts/startup/bl_operators/uvcalc_lightmap.py +share/blender/4.4/scripts/startup/bl_operators/uvcalc_transform.py +share/blender/4.4/scripts/startup/bl_operators/vertexpaint_dirt.py +share/blender/4.4/scripts/startup/bl_operators/view3d.py +share/blender/4.4/scripts/startup/bl_operators/wm.py +share/blender/4.4/scripts/startup/bl_operators/world.py +share/blender/4.4/scripts/startup/bl_ui/ +share/blender/4.4/scripts/startup/bl_ui/__init__.py +${MODPY_COMMENT}share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}anim.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}anim.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}asset_shelf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}asset_shelf.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}generic_ui_list.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}generic_ui_list.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_compositor.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_compositor.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_geometry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_geometry.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_shader.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_shader.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}node_add_menu_texture.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_animviz.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_animviz.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_collection.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_collection.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_constraint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_constraint.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_armature.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_armature.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_bone.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_bone.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_camera.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_camera.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curve.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curve.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curves.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_curves.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_empty.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_empty.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_grease_pencil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_grease_pencil.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lattice.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lattice.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_light.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_light.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lightprobe.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_lightprobe.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_mesh.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_mesh.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_metaball.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_metaball.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_modifier.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_modifier.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_pointcloud.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_pointcloud.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_shaderfx.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_shaderfx.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_speaker.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_speaker.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_volume.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_data_volume.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_freestyle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_freestyle.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_grease_pencil_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_grease_pencil_common.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_mask_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_mask_common.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material_gpencil.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_material_gpencil.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_object.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_output.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_output.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_paint_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_paint_common.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_particle.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_particle.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_cloth.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_cloth.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_common.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_dynamicpaint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_dynamicpaint.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_field.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_field.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_fluid.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_fluid.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_geometry_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_geometry_nodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody_constraint.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_rigidbody_constraint.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_softbody.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_physics_softbody.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_render.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_render.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_scene.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_scene.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_texture.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_texture.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_view_layer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_view_layer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_workspace.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_workspace.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_world.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}properties_world.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_clip.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_clip.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_console.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_console.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_dopesheet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_dopesheet.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_filebrowser.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_filebrowser.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_graph.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_graph.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_image.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_image.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_info.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_info.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_nla.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_nla.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_node.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_outliner.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_outliner.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_properties.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_properties.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_sequencer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_sequencer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_spreadsheet.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_spreadsheet.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_statusbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_statusbar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_text.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_text.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_time.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_time.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_common.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_common.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_toolbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_toolsystem_toolbar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_topbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_topbar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_userpref.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_userpref.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d_toolbar.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}space_view3d_toolbar.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/startup/bl_ui/${MODPY_PYCACHE}utils.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/startup/bl_ui/anim.py +share/blender/4.4/scripts/startup/bl_ui/asset_shelf.py +share/blender/4.4/scripts/startup/bl_ui/generic_ui_list.py +share/blender/4.4/scripts/startup/bl_ui/node_add_menu.py +share/blender/4.4/scripts/startup/bl_ui/node_add_menu_compositor.py +share/blender/4.4/scripts/startup/bl_ui/node_add_menu_geometry.py +share/blender/4.4/scripts/startup/bl_ui/node_add_menu_shader.py +share/blender/4.4/scripts/startup/bl_ui/node_add_menu_texture.py +share/blender/4.4/scripts/startup/bl_ui/properties_animviz.py +share/blender/4.4/scripts/startup/bl_ui/properties_collection.py +share/blender/4.4/scripts/startup/bl_ui/properties_constraint.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_armature.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_bone.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_camera.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_curve.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_curves.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_empty.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_grease_pencil.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_lattice.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_light.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_lightprobe.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_mesh.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_metaball.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_modifier.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_pointcloud.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_shaderfx.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_speaker.py +share/blender/4.4/scripts/startup/bl_ui/properties_data_volume.py +share/blender/4.4/scripts/startup/bl_ui/properties_freestyle.py +share/blender/4.4/scripts/startup/bl_ui/properties_grease_pencil_common.py +share/blender/4.4/scripts/startup/bl_ui/properties_mask_common.py +share/blender/4.4/scripts/startup/bl_ui/properties_material.py +share/blender/4.4/scripts/startup/bl_ui/properties_material_gpencil.py +share/blender/4.4/scripts/startup/bl_ui/properties_object.py +share/blender/4.4/scripts/startup/bl_ui/properties_output.py +share/blender/4.4/scripts/startup/bl_ui/properties_paint_common.py +share/blender/4.4/scripts/startup/bl_ui/properties_particle.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_cloth.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_common.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_dynamicpaint.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_field.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_fluid.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_geometry_nodes.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_rigidbody.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_rigidbody_constraint.py +share/blender/4.4/scripts/startup/bl_ui/properties_physics_softbody.py +share/blender/4.4/scripts/startup/bl_ui/properties_render.py +share/blender/4.4/scripts/startup/bl_ui/properties_scene.py +share/blender/4.4/scripts/startup/bl_ui/properties_texture.py +share/blender/4.4/scripts/startup/bl_ui/properties_view_layer.py +share/blender/4.4/scripts/startup/bl_ui/properties_workspace.py +share/blender/4.4/scripts/startup/bl_ui/properties_world.py +share/blender/4.4/scripts/startup/bl_ui/space_clip.py +share/blender/4.4/scripts/startup/bl_ui/space_console.py +share/blender/4.4/scripts/startup/bl_ui/space_dopesheet.py +share/blender/4.4/scripts/startup/bl_ui/space_filebrowser.py +share/blender/4.4/scripts/startup/bl_ui/space_graph.py +share/blender/4.4/scripts/startup/bl_ui/space_image.py +share/blender/4.4/scripts/startup/bl_ui/space_info.py +share/blender/4.4/scripts/startup/bl_ui/space_nla.py +share/blender/4.4/scripts/startup/bl_ui/space_node.py +share/blender/4.4/scripts/startup/bl_ui/space_outliner.py +share/blender/4.4/scripts/startup/bl_ui/space_properties.py +share/blender/4.4/scripts/startup/bl_ui/space_sequencer.py +share/blender/4.4/scripts/startup/bl_ui/space_spreadsheet.py +share/blender/4.4/scripts/startup/bl_ui/space_statusbar.py +share/blender/4.4/scripts/startup/bl_ui/space_text.py +share/blender/4.4/scripts/startup/bl_ui/space_time.py +share/blender/4.4/scripts/startup/bl_ui/space_toolsystem_common.py +share/blender/4.4/scripts/startup/bl_ui/space_toolsystem_toolbar.py +share/blender/4.4/scripts/startup/bl_ui/space_topbar.py +share/blender/4.4/scripts/startup/bl_ui/space_userpref.py +share/blender/4.4/scripts/startup/bl_ui/space_view3d.py +share/blender/4.4/scripts/startup/bl_ui/space_view3d_toolbar.py +share/blender/4.4/scripts/startup/bl_ui/utils.py +share/blender/4.4/scripts/startup/keyingsets_builtins.py +share/blender/4.4/scripts/startup/nodeitems_builtins.py +share/blender/4.4/scripts/templates_osl/ +share/blender/4.4/scripts/templates_osl/basic_shader.osl +share/blender/4.4/scripts/templates_osl/empty_shader.osl +share/blender/4.4/scripts/templates_osl/gabor_noise.osl +share/blender/4.4/scripts/templates_osl/lyapunov_texture.osl +share/blender/4.4/scripts/templates_osl/noise.osl +share/blender/4.4/scripts/templates_osl/ramp_closure.osl +share/blender/4.4/scripts/templates_py/ +${MODPY_COMMENT}share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}/ +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}addon_add_object.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}addon_add_object.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}background_job.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}background_job.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}batch_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}batch_export.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple_editmode.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}bmesh_simple_editmode.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}builtin_keyingset.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}builtin_keyingset.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}custom_nodes.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}custom_nodes.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}driver_functions.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}driver_functions.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}external_script_stub.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}external_script_stub.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_custom_geometry.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_custom_geometry.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator_target.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_operator_target.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}gizmo_simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}image_processing.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}image_processing.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_file_export.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_file_export.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_file_import.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_file_import.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_add.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_add.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_uv.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_mesh_uv.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_draw.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_draw.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_timer.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_timer.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d_raycast.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_modal_view3d_raycast.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_node.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_node.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}operator_simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_asset_shelf.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_asset_shelf.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_list.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_list.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_list_generic.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_list_generic.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_list_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_list_simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_menu.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_menu_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_menu_simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_panel.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_panel.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_panel_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_panel_simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_pie_menu.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_pie_menu.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_previews_custom_icon.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_previews_custom_icon.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_previews_dynamic_enum.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_previews_dynamic_enum.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_tool_simple.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION} +share/blender/4.4/scripts/templates_py/${MODPY_PYCACHE}ui_tool_simple.${MODPY_PYC_MAGIC_TAG}pyc +share/blender/4.4/scripts/templates_py/addon_add_object.py +share/blender/4.4/scripts/templates_py/background_job.py +share/blender/4.4/scripts/templates_py/batch_export.py +share/blender/4.4/scripts/templates_py/bmesh_simple.py +share/blender/4.4/scripts/templates_py/bmesh_simple_editmode.py +share/blender/4.4/scripts/templates_py/builtin_keyingset.py +share/blender/4.4/scripts/templates_py/custom_nodes.py +share/blender/4.4/scripts/templates_py/driver_functions.py +share/blender/4.4/scripts/templates_py/external_script_stub.py +share/blender/4.4/scripts/templates_py/gizmo_custom_geometry.py +share/blender/4.4/scripts/templates_py/gizmo_operator.py +share/blender/4.4/scripts/templates_py/gizmo_operator_target.py +share/blender/4.4/scripts/templates_py/gizmo_simple.py +share/blender/4.4/scripts/templates_py/image_processing.py +share/blender/4.4/scripts/templates_py/operator_file_export.py +share/blender/4.4/scripts/templates_py/operator_file_import.py +share/blender/4.4/scripts/templates_py/operator_mesh_add.py +share/blender/4.4/scripts/templates_py/operator_mesh_uv.py +share/blender/4.4/scripts/templates_py/operator_modal.py +share/blender/4.4/scripts/templates_py/operator_modal_draw.py +share/blender/4.4/scripts/templates_py/operator_modal_timer.py +share/blender/4.4/scripts/templates_py/operator_modal_view3d.py +share/blender/4.4/scripts/templates_py/operator_modal_view3d_raycast.py +share/blender/4.4/scripts/templates_py/operator_node.py +share/blender/4.4/scripts/templates_py/operator_simple.py +share/blender/4.4/scripts/templates_py/ui_asset_shelf.py +share/blender/4.4/scripts/templates_py/ui_list.py +share/blender/4.4/scripts/templates_py/ui_list_generic.py +share/blender/4.4/scripts/templates_py/ui_list_simple.py +share/blender/4.4/scripts/templates_py/ui_menu.py +share/blender/4.4/scripts/templates_py/ui_menu_simple.py +share/blender/4.4/scripts/templates_py/ui_panel.py +share/blender/4.4/scripts/templates_py/ui_panel_simple.py +share/blender/4.4/scripts/templates_py/ui_pie_menu.py +share/blender/4.4/scripts/templates_py/ui_previews_custom_icon.py +share/blender/4.4/scripts/templates_py/ui_previews_dynamic_enum.py +share/blender/4.4/scripts/templates_py/ui_tool_simple.py +share/blender/4.4/scripts/templates_toml/ +share/blender/4.4/scripts/templates_toml/blender_manifest.toml share/doc/blender/ -share/doc/blender/Apache-2.0.txt -share/doc/blender/BSD-3-Clause.txt -share/doc/blender/BSL-1.0.txt -share/doc/blender/FTL.txt -share/doc/blender/GPL-3.0.txt -share/doc/blender/GPL-license.txt -share/doc/blender/MIT.txt -share/doc/blender/OpenColorIO.txt -share/doc/blender/OpenSSL.txt -share/doc/blender/Python.txt -share/doc/blender/THIRD-PARTY-LICENSES.txt -share/doc/blender/bfont.ttf.txt -share/doc/blender/bmonofont-i18n.ttf.txt -share/doc/blender/copyright.txt -share/doc/blender/droidsans.ttf.txt -share/doc/blender/jemalloc.txt -share/pixmaps/ -share/pixmaps/blender.svg +share/doc/blender/license/ +share/doc/blender/license/license.md +share/doc/blender/license/licenses.json +share/doc/blender/license/others/ +share/doc/blender/license/others/Arev-Fonts.txt +share/doc/blender/license/others/ICS.txt +share/doc/blender/license/others/LLVM-exception.txt +share/doc/blender/license/others/TOST-1.0.txt +share/doc/blender/license/spdx/ +share/doc/blender/license/spdx/Apache-2.0.txt +share/doc/blender/license/spdx/BSD-2-Clause.txt +share/doc/blender/license/spdx/BSD-3-Clause.txt +share/doc/blender/license/spdx/BSL-1.0.txt +share/doc/blender/license/spdx/Bitstream-Vera.txt +share/doc/blender/license/spdx/FTL.txt +share/doc/blender/license/spdx/GPL-2.0-or-later.txt +share/doc/blender/license/spdx/GPL-3.0-or-later.txt +share/doc/blender/license/spdx/LGPL-2.1-or-later.txt +share/doc/blender/license/spdx/MIT-Khronos-old.txt +share/doc/blender/license/spdx/MIT.txt +share/doc/blender/license/spdx/MPL-2.0.txt +share/doc/blender/license/spdx/NCSA.txt +share/doc/blender/license/spdx/OFL-1.1.txt +share/doc/blender/license/spdx/Python-2.0.txt +share/doc/blender/license/spdx/SGI-B-2.0.txt +share/doc/blender/license/spdx/Zlib.txt +share/doc/blender/license/spdx/bzip2-1.0.6.txt +share/doc/blender/license/spdx/libpng-2.0.txt +share/doc/blender/license/spdx/libtiff.txt +share/doc/blender/readme.html +share/icons/hicolor/scalable/apps/blender.svg +share/icons/hicolor/symbolic/apps/blender-symbolic.svg +share/metainfo/ +share/metainfo/org.blender.Blender.metainfo.xml +@tag gtk-update-icon-cache %D/share/icons/hicolor @tag update-desktop-database