aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2024-02-25 10:38:04 +0000
committerThierry Thomas <thierry@FreeBSD.org>2024-03-21 18:01:17 +0000
commit70f1bafe4df72f739cd64e033903b299c1b5f347 (patch)
tree83cd2f574e6ef2e342fa5f3f33c3beb04a23eb2c
parent3f70a5476f29fe50b105884151d36c49c0e157ed (diff)
downloadports-70f1bafe4df72f739cd64e033903b299c1b5f347.tar.gz
ports-70f1bafe4df72f739cd64e033903b299c1b5f347.zip
cad/opencascade: upgrade to 7.8.0
-rw-r--r--cad/opencascade/Makefile63
-rw-r--r--cad/opencascade/distinfo8
-rw-r--r--cad/opencascade/files/patch-CMakeLists.txt8
-rw-r--r--cad/opencascade/files/patch-adm_UDLIST10
-rw-r--r--cad/opencascade/files/patch-adm_cmake_occt__macros.cmake6
-rw-r--r--cad/opencascade/files/patch-adm_templates_custom.install.sh.in4
-rw-r--r--cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx6
-rw-r--r--cad/opencascade/files/patch-src_Message_Message__AttributeMeter.cxx10
-rw-r--r--cad/opencascade/files/patch-src_NCollection_NCollection__Array1.hxx39
-rw-r--r--cad/opencascade/files/patch-src_NCollection_NCollection__DynamicArray.hxx29
-rw-r--r--cad/opencascade/files/patch-src_NCollection_NCollection__Iterator.hxx19
-rw-r--r--cad/opencascade/files/patch-src_STEPCAFControl_STEPCAFControl__Reader.cxx21
-rw-r--r--cad/opencascade/files/patch-src_Standard_Standard__CString.cxx4
-rw-r--r--cad/opencascade/files/patch-src_Standard_Standard__MMgrTBBalloc.cxx12
-rw-r--r--cad/opencascade/pkg-plist3211
15 files changed, 1864 insertions, 1586 deletions
diff --git a/cad/opencascade/Makefile b/cad/opencascade/Makefile
index b7a2fd37d959..6d6caf8f84de 100644
--- a/cad/opencascade/Makefile
+++ b/cad/opencascade/Makefile
@@ -1,8 +1,7 @@
PORTNAME= opencascade
-DISTVERSION= 7.7.0
-PORTREVISION= 10
+DISTVERSIONPREFIX= V
+DISTVERSION= 7_8_0
CATEGORIES= cad science
-MASTER_SITES= LOCAL/thierry
MAINTAINER= thierry@FreeBSD.org
COMMENT= Open CASCADE Technology, 3D modeling & numerical simulation
@@ -18,6 +17,7 @@ BUILD_DEPENDS= rapidjson>0:devel/rapidjson \
${LOCALBASE}/lib/qt5/bin/moc:devel/qt5-buildtools
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
+ libtbbmalloc.so:devel/onetbb \
libexpat.so:textproc/expat2 \
libdraco.so:archivers/draco \
libpng16.so:graphics/png \
@@ -26,13 +26,17 @@ RUN_DEPENDS= bash:shells/bash
# Check ${WRKSRC}/dox/overview/overview.md
# and ${WRKSRC}/dox/dev_guides/building
-USES= alias:10 cmake compiler:c++14-lang dos2unix gettext-runtime \
- gl gnome localbase python qt:5 shebangfix tk tar:tgz xorg
+USES= alias:10 cmake compiler:c++14-lang eigen:3 gettext-runtime \
+ gl gnome localbase python qt:5 shebangfix tk xorg
USE_XORG= ice sm x11 xau xcb xdmcp xext xft xi xmu xrender xscrnsaver xt
USE_GL= egl gl glesv2 glu
USE_GNOME= libxml2
+USE_QT= core declarative gui network quick3d linguisttools widgets xml
+
+USE_GITHUB= yes
+GH_ACCOUNT= Open-Cascade-SAS
+GH_PROJECT= OCCT
-DOS2UNIX_FILES= adm/templates/*
SHEBANG_FILES= adm/templates/*.sh \
adm/templates/*.sh.in \
adm/templates/*.sh.main \
@@ -57,11 +61,19 @@ CMAKE_ARGS+= -DINSTALL_DIR=${OCCROOT} \
-DINSTALL_DIR_SAMPLES=${OCCROOT}/samples \
-DINSTALL_DIR_TESTS=${OCCROOT}/tests \
-DINSTALL_TEST_CASES:BOOL=ON \
- -DUSE_FREETYPE:BOOL=ON \
- -DUSE_TBB:BOOL=OFF \
- -DUSE_RAPIDJSON:BOOL=ON \
- -DUSE_DRACO:BOOL=ON \
- -DUSE_VTK:BOOL=ON \
+ -DBUILD_Inspector:BOOL=ON \
+ -DUSE_TCL:BOOL=ON \
+ -DCAN_USE_TK:BOOL=ON -DUSE_TK:BOOL=ON \
+ -DCAN_USE_XLIB:BOOL=ON -DUSE_XLIB:BOOL=ON \
+ -DCAN_USE_FREETYPE:BOOL=ON -DUSE_FREETYPE:BOOL=ON \
+ -DCAN_USE_VTK:BOOL=ON -DUSE_VTK:BOOL=ON \
+ -DCAN_USE_EIGEN:BOOL=ON -DUSE_EIGEN:BOOL=ON \
+ -DCAN_USE_RAPIDJSON:BOOL=ON -DUSE_RAPIDJSON:BOOL=ON \
+ -DCAN_USE_DRACO:BOOL=ON -DUSE_DRACO:BOOL=ON \
+ -DCAN_USE_TBB:BOOL=ON -DUSE_TBB:BOOL=ON \
+ -D3RDPARTY_QT_DIR:PATH=${QT_LIBDIR} \
+ -D3RDPARTY_DRACO_DIR:PATH=${LOCALBASE} \
+ -D3RDPARTY_DRACO_LIBRARY=libdraco.so \
-D3RDPARTY_DRACO_LIBRARY_DIR:PATH=${LOCALBASE}/lib \
-D3RDPARTY_DRACO_INCLUDE_DIR:PATH=${LOCALBASE}/include/draco \
-D3RDPARTY_VTK_INCLUDE_DIR:PATH=${LOCALBASE}/include/vtk-${VTK_VER}
@@ -72,11 +84,6 @@ CMAKE_ARGS+= -DCMAKE_MESSAGE_CONTEXT_SHOW:BOOL=ON \
-DCMAKE_MESSAGE_LOG_LEVEL:STRING=DEBUG
.endif
-# TODO: TBB to be replaced by onetbb later
-#CMAKE_ARGS+= -DUSE_EIGEN:BOOL=ON -DUSE_TBB:BOOL=ON
-#USES+= eigen:3
-#LIB_DEPENDS+= libtbb.so:devel/tbb
-
USE_LDCONFIG= yes
CONFLICTS_INSTALL= opencascade740 # OpenCAS/bin/DRAWEXE
@@ -84,9 +91,9 @@ CONFLICTS_INSTALL= opencascade740 # OpenCAS/bin/DRAWEXE
LOCCROOT= OpenCAS
OCCROOT= ${PREFIX}/${LOCCROOT}
PLIST_SUB= OCCROOT="${LOCCROOT}" BITS=${BITS} CC=${CHOSEN_COMPILER_TYPE} \
- VE=${PORTVERSION:R} VER=${DISTVERSION:C/-beta//}
+ VE=${PORTVERSION:R} VER=${PORTVERSION}
-FFMPEG_CMAKE_ON= -DUSE_FFMPEG:BOOL=ON \
+FFMPEG_CMAKE_ON= -DCAN_USE_FFMPEG:BOOL=ON -DUSE_FFMPEG:BOOL=ON \
-D3RDPARTY_FFMPEG_INCLUDE_DIR=${LOCALBASE}/ffmpeg4/include \
-D3RDPARTY_FFMPEG_DIR=${LOCALBASE}/ffmpeg4
FFMPEG_CMAKE_OFF= -DUSE_FFMPEG:BOOL=OFF
@@ -114,15 +121,17 @@ FFMPEG_LIB_DEPENDS= libavcodec.so.58:multimedia/ffmpeg4 \
libopus.so:audio/opus \
libgmp.so:math/gmp
-VIS_CMAKE_ON= -DUSE_FREEIMAGE:BOOL=ON \
- -DUSE_GLES2:BOOL=ON \
+VIS_CMAKE_ON= -DCAN_USE_FREEIMAGE:BOOL=ON -DUSE_FREEIMAGE:BOOL=ON \
+ -DCAN_USE_OPENGL:BOOL=ON -DUSE_OPENGL:BOOL=ON \
+ -DCAN_USE_GLES2:BOOL=ON -DUSE_GLES2:BOOL=ON \
-D3RDPARTY_FREETYPE_DIR=${LOCALBASE}
VIS_CMAKE_OFF= -DUSE_FREEIMAGE:BOOL=OFF \
-DUSE_GLES2:BOOL=OFF
VIS_LIB_DEPENDS= libftgl.so:graphics/ftgl \
libfreeimageplus.so:graphics/freeimage
-VIS_USE= GL=glesv2
+VIS_USE= GL=glesv2,opengl
+DOCS_DISTFILES= documentation.tar.xz
DOXYGEN_IMPLIES= DOCS
DOXYGEN_USES= tex
DOXYGEN_USE= TEX=latex:build
@@ -132,6 +141,8 @@ DOXYGEN_BUILD_DEPENDS= bash:shells/bash \
pdftex:print/tex-basic-engines \
inkscape:graphics/inkscape
DOXYGEN_RUN_DEPENDS= ${LOCALBASE}/www/MathJax/MathJax.js:www/mathjax
+DOXYGEN_CMAKE_ON= -DBUILD_DOC_Overview:BOOL=ON \
+ -DINSTALL_DOC_Overview:BOOL=ON
.include <bsd.port.options.mk>
@@ -161,23 +172,17 @@ pre-configure:
${REINPLACE_CMD} -e 's|lin|bsd|' ${WRKSRC}/${es}
.endfor
-post-build-DOXYGEN-on:
- (cd ${WRKSRC} && ./gendoc -overview)
-
post-stage:
${MKDIR} ${STAGEDIR}${PREFIX}/lib/cmake/OpenCASCADE
${MV} ${STAGEDIR}${PREFIX}/lib/cmake/*.cmake \
${STAGEDIR}${PREFIX}/lib/cmake/OpenCASCADE
post-install:
- ${MV} ${STAGEDIR}${OCCROOT}/bin/DRAWEXE-${DISTVERSION:C/-beta//} ${STAGEDIR}${PREFIX}/bin/DRAWEXE
+ ${MV} ${STAGEDIR}${OCCROOT}/bin/DRAWEXE-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/DRAWEXE
${RLN} ${STAGEDIR}${PREFIX}/bin/DRAWEXE ${STAGEDIR}${OCCROOT}/bin
post-install-DOXYGEN-on:
- ${MKDIR} ${STAGEDIR}${DOCSDIR}
- (cd ${WRKSRC}/doc/overview && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
- ${RM} -r ${STAGEDIR}${DOCSDIR}/latex
- ${RM} ${STAGEDIR}${DOCSDIR}/html/build_upgrade_building_3rdparty.html.bak
+ ${RLN} ${STAGEDIR}${OCCROOT}/${DOCSDIR_REL} ${STAGEDIR}${DOCSDIR}
.if defined(MAINTAINER_MODE)
regression-test: install
diff --git a/cad/opencascade/distinfo b/cad/opencascade/distinfo
index a7fc1225aadf..82b8eca73eda 100644
--- a/cad/opencascade/distinfo
+++ b/cad/opencascade/distinfo
@@ -1,3 +1,5 @@
-TIMESTAMP = 1668069465
-SHA256 (opencascade-7.7.0.tgz) = 40e8e0e78b56dd407192b4cabf55dd0bdd1fa9c0a292d263b12f7e21733cb07e
-SIZE (opencascade-7.7.0.tgz) = 247268442
+TIMESTAMP = 1701808276
+SHA256 (documentation.tar.xz) = 3c5cdd70de9c82d9f0be4b9400d618494cfecd28f502d110111060c9aaaf50c7
+SIZE (documentation.tar.xz) = 48428333
+SHA256 (Open-Cascade-SAS-OCCT-V7_8_0_GH0.tar.gz) = 3c5cdd70de9c82d9f0be4b9400d618494cfecd28f502d110111060c9aaaf50c7
+SIZE (Open-Cascade-SAS-OCCT-V7_8_0_GH0.tar.gz) = 48428333
diff --git a/cad/opencascade/files/patch-CMakeLists.txt b/cad/opencascade/files/patch-CMakeLists.txt
index 769fd8549c08..e3a13291a5cb 100644
--- a/cad/opencascade/files/patch-CMakeLists.txt
+++ b/cad/opencascade/files/patch-CMakeLists.txt
@@ -1,6 +1,6 @@
---- CMakeLists.txt.orig 2022-09-30 11:53:39 UTC
+--- CMakeLists.txt.orig 2023-12-04 15:53:08 UTC
+++ CMakeLists.txt
-@@ -1005,7 +1005,7 @@ if (${DRAWEXE_INDEX} GREATER -1)
+@@ -1015,7 +1015,7 @@ if (${DRAWEXE_INDEX} GREATER -1)
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
else()
install (FILES "${CMAKE_SOURCE_DIR}/adm/templates/draw.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
@@ -9,7 +9,7 @@
endif()
# copy draw script to CMake binary folder
-@@ -1021,7 +1021,7 @@ endif()
+@@ -1031,7 +1031,7 @@ endif()
endif()
# change custom.bat/sh
@@ -18,7 +18,7 @@
file (READ "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" CUSTOM_CONTENT)
set (CUSTOM_CONTENT "${CUSTOM_CONTENT} ${ADDITIONAL_CUSTOM_CONTENT}")
-@@ -1265,7 +1265,7 @@ install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONF
+@@ -1275,7 +1275,7 @@ install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONF
endforeach()
# install OpenCASCADE config file with compile definitions and C/C++ flags ONLY for current configuration
install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWER)")
diff --git a/cad/opencascade/files/patch-adm_UDLIST b/cad/opencascade/files/patch-adm_UDLIST
new file mode 100644
index 000000000000..feee670d3393
--- /dev/null
+++ b/cad/opencascade/files/patch-adm_UDLIST
@@ -0,0 +1,10 @@
+--- adm/UDLIST.orig 2023-12-04 15:53:08 UTC
++++ adm/UDLIST
+@@ -32,6 +32,7 @@ r OS
+ n gp
+ n math
+ r OS
++n FlexLexer
+ t TKMath
+ t TKernel
+ n Adaptor2d
diff --git a/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake b/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake
index 990e18a58e47..20e1fb41c6fc 100644
--- a/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake
+++ b/cad/opencascade/files/patch-adm_cmake_occt__macros.cmake
@@ -1,4 +1,4 @@
---- adm/cmake/occt_macros.cmake.orig 2022-09-30 11:53:39 UTC
+--- adm/cmake/occt_macros.cmake.orig 2023-12-04 15:53:08 UTC
+++ adm/cmake/occt_macros.cmake
@@ -47,7 +47,7 @@ macro (OCCT_MAKE_OS_WITH_BITNESS)
elseif(APPLE)
@@ -9,7 +9,7 @@
endif()
endmacro()
-@@ -336,7 +336,7 @@ macro (COLLECT_AND_INSTALL_OCCT_HEADER_FILES ROOT_TARG
+@@ -338,7 +338,7 @@ macro (COLLECT_AND_INSTALL_OCCT_HEADER_FILES ROOT_TARG
configure_file ("${TEMPLATE_HEADER_PATH}" "${ROOT_TARGET_OCCT_DIR}/${OCCT_INSTALL_DIR_PREFIX}/${HEADER_FILE_NAME}" @ONLY)
endforeach()
@@ -18,7 +18,7 @@
string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
message (STATUS "Info: \(${CURRENT_TIME}\) Checking headers in inc folder...")
-@@ -590,12 +590,12 @@ macro (OCCT_UPDATE_TARGET_FILE)
+@@ -592,12 +592,12 @@ macro (OCCT_UPDATE_TARGET_FILE)
install (CODE
"string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWERCASE)
diff --git a/cad/opencascade/files/patch-adm_templates_custom.install.sh.in b/cad/opencascade/files/patch-adm_templates_custom.install.sh.in
index ac764e67831a..af185fb05aea 100644
--- a/cad/opencascade/files/patch-adm_templates_custom.install.sh.in
+++ b/cad/opencascade/files/patch-adm_templates_custom.install.sh.in
@@ -1,6 +1,6 @@
---- adm/templates/custom.install.sh.in.orig 2021-06-26 15:04:30 UTC
+--- adm/templates/custom.install.sh.in.orig 2023-12-06 17:35:33 UTC
+++ adm/templates/custom.install.sh.in
-@@ -20,14 +20,14 @@ if [ "$1" == "@BIN_LETTER@" ]; then
+@@ -21,14 +21,14 @@ if [ "$1" == "@BIN_LETTER@" ]; then
export TCL_VERSION_WITH_DOT="@3RDPARTY_TCL_LIBRARY_VERSION_WITH_DOT@"
export TK_VERSION_WITH_DOT="@3RDPARTY_TK_LIBRARY_VERSION_WITH_DOT@"
diff --git a/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx b/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx
index e5b6146f4111..f1c48fad4612 100644
--- a/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx
+++ b/cad/opencascade/files/patch-src_IVtkDraw_IVtkDraw__Interactor.cxx
@@ -1,6 +1,6 @@
- workaround for https://gitlab.kitware.com/vtk/vtk/-/issues/18683
---- src/IVtkDraw/IVtkDraw_Interactor.cxx.orig 2021-10-30 11:13:52 UTC
+--- src/IVtkDraw/IVtkDraw_Interactor.cxx.orig 2023-12-04 15:53:08 UTC
+++ src/IVtkDraw/IVtkDraw_Interactor.cxx
@@ -26,6 +26,12 @@
#ifdef AllValues
@@ -13,5 +13,5 @@
+#undef Success
+#endif
- #include <vtkXRenderWindowInteractor.h>
- #include <vtkXOpenGLRenderWindow.h>
+ // Resolve name collisions with X11 headers
+ #ifdef Status
diff --git a/cad/opencascade/files/patch-src_Message_Message__AttributeMeter.cxx b/cad/opencascade/files/patch-src_Message_Message__AttributeMeter.cxx
new file mode 100644
index 000000000000..38686e6cd8b4
--- /dev/null
+++ b/cad/opencascade/files/patch-src_Message_Message__AttributeMeter.cxx
@@ -0,0 +1,10 @@
+--- src/Message/Message_AttributeMeter.cxx.orig 2023-12-04 15:53:08 UTC
++++ src/Message/Message_AttributeMeter.cxx
+@@ -253,6 +253,6 @@ void Message_AttributeMeter::DumpJson (Standard_OStrea
+ anIterator.More(); anIterator.Next())
+ {
+ OCCT_DUMP_VECTOR_CLASS (theOStream, Message::MetricToString (anIterator.Key()),
+- 2, anIterator.Value(), anIterator.Value())
++ 2, anIterator.Value().first, anIterator.Value().second)
+ }
+ }
diff --git a/cad/opencascade/files/patch-src_NCollection_NCollection__Array1.hxx b/cad/opencascade/files/patch-src_NCollection_NCollection__Array1.hxx
new file mode 100644
index 000000000000..7a3f36deeade
--- /dev/null
+++ b/cad/opencascade/files/patch-src_NCollection_NCollection__Array1.hxx
@@ -0,0 +1,39 @@
+--- src/NCollection/NCollection_Array1.hxx.orig 2023-12-04 15:53:08 UTC
++++ src/NCollection/NCollection_Array1.hxx
+@@ -72,26 +72,10 @@ class NCollection_Array1 (public)
+
+ using iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_Array1, value_type, false>;
+ using const_iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_Array1, value_type, true>;
++ using Iterator = NCollection_Iterator<NCollection_Array1<TheItemType>>;
+
+ public:
+
+- // Iterator class
+- class Iterator : public NCollection_Iterator<NCollection_Array1>
+- {
+- public:
+- using NCollection_Iterator<NCollection_Array1>::NCollection_Iterator;
+-
+- const_reference Value() const
+- {
+- return *NCollection_Iterator<NCollection_Array1>::ValueIter();
+- }
+-
+- reference ChangeValue()
+- {
+- return *NCollection_Iterator<NCollection_Array1>::ChangeValueIter();
+- }
+- };
+-
+ const_iterator begin() const
+ {
+ return const_iterator(*this);
+@@ -150,7 +134,7 @@ class NCollection_Array1 (public)
+ mySize(theUpper - theLower + 1),
+ myPointer(nullptr),
+ myIsOwner(false),
+- allocator_type(theAlloc)
++ myAllocator(theAlloc)
+ {
+ if (mySize == 0)
+ {
diff --git a/cad/opencascade/files/patch-src_NCollection_NCollection__DynamicArray.hxx b/cad/opencascade/files/patch-src_NCollection_NCollection__DynamicArray.hxx
new file mode 100644
index 000000000000..28bc7579f5fa
--- /dev/null
+++ b/cad/opencascade/files/patch-src_NCollection_NCollection__DynamicArray.hxx
@@ -0,0 +1,29 @@
+--- src/NCollection/NCollection_DynamicArray.hxx.orig 2023-12-04 15:53:08 UTC
++++ src/NCollection/NCollection_DynamicArray.hxx
+@@ -77,25 +77,9 @@ class NCollection_DynamicArray (public)
+
+ using iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_DynamicArray, value_type, false>;
+ using const_iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_DynamicArray, value_type, true>;
++ using Iterator = NCollection_Iterator<NCollection_DynamicArray<TheItemType>>;
+
+ public:
+-
+- // Iterator class
+- class Iterator : public NCollection_Iterator<NCollection_DynamicArray>
+- {
+- public:
+- using NCollection_Iterator<NCollection_DynamicArray>::NCollection_Iterator;
+-
+- const_reference Value() const
+- {
+- return *NCollection_Iterator<NCollection_DynamicArray>::ValueIter();
+- }
+-
+- reference ChangeValue()
+- {
+- return *NCollection_Iterator<NCollection_DynamicArray>::ChangeValueIter();
+- }
+- };
+
+ const_iterator begin() const
+ {
diff --git a/cad/opencascade/files/patch-src_NCollection_NCollection__Iterator.hxx b/cad/opencascade/files/patch-src_NCollection_NCollection__Iterator.hxx
new file mode 100644
index 000000000000..81d01c6b6809
--- /dev/null
+++ b/cad/opencascade/files/patch-src_NCollection_NCollection__Iterator.hxx
@@ -0,0 +1,19 @@
+--- src/NCollection/NCollection_Iterator.hxx.orig 2023-12-04 15:53:08 UTC
++++ src/NCollection/NCollection_Iterator.hxx
+@@ -94,6 +94,16 @@ class NCollection_Iterator (public)
+ ++(myCur);
+ }
+
++ const typename Container::const_reference Value() const
++ {
++ return *myCur;
++ }
++
++ const typename Container::reference ChangeValue()
++ {
++ return *myCur;
++ }
++
+ bool operator==(const NCollection_Iterator& theOther) { return myLast == theOther.myLast && myCur == theOther.myCur; }
+
+ bool operator!=(const NCollection_Iterator& theOther) { return myLast != theOther.myLast || myCur != theOther.myCur; }
diff --git a/cad/opencascade/files/patch-src_STEPCAFControl_STEPCAFControl__Reader.cxx b/cad/opencascade/files/patch-src_STEPCAFControl_STEPCAFControl__Reader.cxx
new file mode 100644
index 000000000000..8c0d963fe7c0
--- /dev/null
+++ b/cad/opencascade/files/patch-src_STEPCAFControl_STEPCAFControl__Reader.cxx
@@ -0,0 +1,21 @@
+--- src/STEPCAFControl/STEPCAFControl_Reader.cxx.orig 2023-12-04 15:53:08 UTC
++++ src/STEPCAFControl/STEPCAFControl_Reader.cxx
+@@ -1996,7 +1996,8 @@ Handle(Poly_Triangulation) createMesh(const Handle(Ste
+ const Standard_Integer aNbNormals = theTriangulatedSufaceSet->NbNormals();
+ // Number of pairs (Point, Normal). It is possible for one point to have multiple normals. This is
+ // useful when the underlying surface is not C1 continuous.
+- const Standard_Integer aNbPairs = aNbNormals > 1 ? theTriangulatedSufaceSet->NbPnindex() : aNodes->Length();
++ // Patch from https://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff;h=0f6f5b64d321a988399567f6b901bef385cc8d41
++ const Standard_Integer aNbPairs = aNbNormals > 1 ? theTriangulatedSufaceSet->Pnmax() : aNodes->Length();
+ const Standard_Boolean aHasNormals = aNbNormals > 0;
+
+ // Counting number of triangles in the triangle strips list.
+@@ -2021,7 +2022,7 @@ Handle(Poly_Triangulation) createMesh(const Handle(Ste
+
+ for (Standard_Integer j = 1; j <= aNbPairs; ++j)
+ {
+- const gp_XYZ& aPoint = aNodes->Value(aNbNormals > 1 ? theTriangulatedSufaceSet->PnindexValue(j) : j);
++ const gp_XYZ& aPoint = aNodes->Value((aNbNormals > 1 && theTriangulatedSufaceSet->NbPnindex() > 0) ? theTriangulatedSufaceSet->PnindexValue(j) : j);
+ aMesh->SetNode(j, theFact * aPoint);
+ }
+
diff --git a/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx b/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx
index 5b71f6edf983..29124adfcc5c 100644
--- a/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx
+++ b/cad/opencascade/files/patch-src_Standard_Standard__CString.cxx
@@ -1,6 +1,6 @@
---- src/Standard/Standard_CString.cxx.orig 2022-09-30 11:54:05 UTC
+--- src/Standard/Standard_CString.cxx.orig 2023-12-04 15:53:08 UTC
+++ src/Standard/Standard_CString.cxx
-@@ -80,7 +80,7 @@ Standard_Integer HashCodes (const Standard_CString the
+@@ -50,7 +50,7 @@
// strtod, strtol, strtoll functions. For other system with locale-depended
// implementations problems may appear if "C" locale is not set explicitly.
#if !defined(__ANDROID__) && !defined(__QNX__) && !defined(__MINGW32__)
diff --git a/cad/opencascade/files/patch-src_Standard_Standard__MMgrTBBalloc.cxx b/cad/opencascade/files/patch-src_Standard_Standard__MMgrTBBalloc.cxx
deleted file mode 100644
index dfbd5c7434b2..000000000000
--- a/cad/opencascade/files/patch-src_Standard_Standard__MMgrTBBalloc.cxx
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/Standard/Standard_MMgrTBBalloc.cxx.orig 2017-08-30 13:28:31 UTC
-+++ src/Standard/Standard_MMgrTBBalloc.cxx
-@@ -18,6 +18,9 @@
-
- // paralleling with Intel TBB
- #ifdef HAVE_TBB
-+#ifdef VERSION
-+#undef VERSION
-+#endif
- #include <tbb/scalable_allocator.h>
- using namespace tbb;
- #else
diff --git a/cad/opencascade/pkg-plist b/cad/opencascade/pkg-plist
index cbc4af492a96..a2d397f20813 100644
--- a/cad/opencascade/pkg-plist
+++ b/cad/opencascade/pkg-plist
@@ -1,10 +1,13 @@
%%OCCROOT%%/bin/DRAWEXE
%%OCCROOT%%/bin/ExpToCasExe
%%OCCROOT%%/bin/ExpToCasExe-%%VER%%
+%%OCCROOT%%/bin/TInspectorEXE
+%%OCCROOT%%/bin/TInspectorEXE-%%VER%%
%%OCCROOT%%/bin/custom.sh
%%OCCROOT%%/bin/custom_%%CC%%_%%BITS%%.sh
%%OCCROOT%%/bin/draw.sh
%%OCCROOT%%/bin/env.sh
+@(root,wheel,755) %%OCCROOT%%/bin/inspector.sh
%%OCCROOT%%/data/iges/bearing.iges
%%OCCROOT%%/data/iges/hammer.iges
%%OCCROOT%%/data/images/Graph.PNG
@@ -261,8 +264,754 @@
%%OCCROOT%%/samples/tcl/spheres.tcl
%%OCCROOT%%/samples/tcl/vis_pbr_spheres.tcl
%%OCCROOT%%/samples/tcl/xde.tcl
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/LICENSE_LGPL_21.txt
-%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/OCCT_LGPL_EXCEPTION.txt
+%%PORTDOCS%%%%OCCROOT%%/%%DOCSDIR%%/LICENSE_LGPL_21.txt
+%%PORTDOCS%%%%OCCROOT%%/%%DOCSDIR%%/OCCT_LGPL_EXCEPTION.txt
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/0014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/239_xde_12_400.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/3DView.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/3DView_elements.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/3DView_set_orientation.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/3rdparty_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/3rdparty_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/614_xde_04_400.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/646_xde_11_400.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_ContributionWorkflow_V3_image001.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_ContributionWorkflow_V3_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image009.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image015.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image016.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image018.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image019.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image020.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image021.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image022.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image023.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image024.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image025.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_image026.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/OCCT_GitGuide_V2_svgdiff.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/TStandaloneEXE.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/TStandaloneEXE_open.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/VStudio_projects.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step1_bndbox.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step1_highlight.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step1_shaded.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step1_shaded_wf.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step2_segments.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step3_quadrics_10.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step3_quadrics_25.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step3_quadrics_disk.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step3_quadrics_fin.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step4_highlight1.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step4_highlight2.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ais_object_step4_highlight3.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/android_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/android_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/android_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/android_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/android_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/android_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bc_s.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bc_sd.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bdwn.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image001.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image002.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image009.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image010.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image011.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image012.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image013.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image014.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image015.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image016.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image017.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image018.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image019.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image020.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image021.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image022.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image023.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image024.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image025.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image026.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image027.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image028.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image029.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image030.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image031.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image032.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image033.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image034.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image035.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image036.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image037.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image038.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image039.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image040.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image041.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image042.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image043.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image044.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image045.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image046.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image047.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image048.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image049.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image050.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image051.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image052.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image053.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image054.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image055.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image056.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image057.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image058.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image059.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image060.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image061.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image062.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image063.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image064.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image065.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image066.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image067.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image068.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image069.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image070.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image071.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image072.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image073.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image080.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image081.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image082.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image083.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image084.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image085.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image086.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image087.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image088.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image089.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image090.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image091.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image092.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image093.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image094.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image095.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image096.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image097.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image098.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image099.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image100.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image101.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image102.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image103.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image104.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image105.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image106.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image107.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image108.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image109.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image110.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image111.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image112.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image113.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image114.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image115.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image116.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image117.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image118.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image119.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image120.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image121.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image122.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image123.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image124.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image125.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image126.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image127.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image128.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image129.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image130.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image131.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image132.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image133.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image134.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image135.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image136.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image137.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image138.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image139.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image140.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image141.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image142.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/boolean_image143.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bop_simple_001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bop_simple_002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bsplit_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bsplit_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bsplit_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bsplit_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bsplit_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/bsplit_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/build_upgrade.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/build_upgrade.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/build_upgrade__building_documentation.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/build_upgrade__building_occt.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/build_upgrade_building_3rdparty.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/camera_perspective.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_006_1.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_006_2.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cells_algorithm_008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/closed.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cmake_image000.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cmake_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cmake_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cmake_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/cmake_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/contribution.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/contribution.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dfbrowser.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dfbrowser_elements.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dfbrowser_selection_in_tree_view.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_0f6ac039eeffaed6f6d478e1ecf86fa1.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_120cd11a65b9c9b8ed202ddbec3fe51a.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_166d9f7a5b4d4aa80e4cd8aadf7bc2b5.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_1ecc3ba743fbe75a0c863829edd341ee.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_26c21b31062f559f285636e7ba9b3a62.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2730500252fe0a9989ee65731c6eba38.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_2ec6e2190f041266c142a462c25149ad.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_360f11b8a57e1920cb1301ed2ebca326.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_3e21d1c8b9e141ddc4eff1ca555edf5b.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_3e543a81d77f50aa38f9978c8e976203.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_434c709dc866235cb0f5bcf486bce384.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_478b6a7ba028e5fe789d4f1458eaa581.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_489bacd23b0455509cc480d36353bb6f.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_4eab05161e79a9e5dd45fefcb8c6451b.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_4f5fed6b58676ebaa47cbb345fed42a2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_55b963f736b1759537ed19907e897536.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_56956559795ea944ccadbc8ff8ec26ee.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5782566a586ac5898b573f1772a06029.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_5b82b505fb06e91d541284af3d29364b.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_654206a04ec7643ab70246871acd26fb.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_68b1be08943d5e256435e0df2c82623e.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_6e5943184690695455341a98e6f30c7a.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_7a4f8c73ddbf688f7c981c32d6856f33.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_7ededf9bff5c5f58116bb6dd6d3d16c0.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_82aa6edcebf7b898750fe9f74c5fd87c.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_8e6eba94b01664fb28dcf597d70ac846.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_948d6be6a16c410092e3657554aa6509.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_956679c7b890ba33cba85778e2a959a5.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_99e4f12b0bfabb04cc099180fe3a4698.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_9c4c77d8670f99c9a6f76f92d31a11e8.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_a3500ffd58373db4823672fca150c0c3.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_a594791f5bcba1a25b05735c38ed9f3c.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_aaf003758f429aa89114706605344e2b.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ad2e8c694fd2d09a757ccfcf36a6e2c2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ad54f49029a5f88d0281e369f99fb8c5.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ada5c17f55918aac05ffc816bb145561.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_b6aa5b10f875a6685b8915334ae6e309.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_b6e2532fee7eaf5588530fdfac63c795.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_bc58e000970bfa916c9dc1a7e59d8e18.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_c5ee713b769f8b31fd82e9fe6f330abb.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_cc9c72aae982bee34b35c769287fdb10.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_de23a04e485a293260c800afb9f8a138.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_e378a44c342c17458e6bb053de079ff6.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_e5094f964cd5a9942098ebfb394726d1.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ebfd865f508722bd17e345d4538b3cea.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_ec58226370961992392621f317da0ce9.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_f119309a0523ec25e8fd8f74c1cc5cc3.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dir_f8901fbbd0503c4f60a907b0cab614e2.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/display_additional_presentation.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/display_main_presentation.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/doc.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/docd.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/documentation_folders.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/documentation_miktex.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/documentation_test_image.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/doxygen.css
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/doxygen.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/draw_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/draw_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/draw_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/draw_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/draw_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/draw_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/drawexe_tinspector.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dump_attribute.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/dynsections.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/folderclosed.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/folderopen.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/foundation_classes_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/foundation_classes_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/foundation_classes_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/foundation_classes_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/genconf_linux.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/genconf_windows.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/glue_options_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/iges_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/iges_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/index.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/index.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/jquery.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/messageview_dump_panel.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/messageview_elements.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/messageview_pop_up_menu.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/messageview_property_panel_custom.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/messageview_view.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/mkvolume_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/mkvolume_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/mkvolume_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/mkvolume_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image009.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image010.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image011.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image015.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image016.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image017.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image018.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image020.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image021.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image022.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image023.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image024.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image025.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image026.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image027.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image028.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image029.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image030.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image031.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image032.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image033.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image034.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image035.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image036.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image037.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image038.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image039.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image040.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image041.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image042.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image043.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image044.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image045.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image047.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image048.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image049.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image050.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image051.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image052.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image053.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image054.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image055.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image056.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image057.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image058.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image059.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image060.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image061.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image062.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image063.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image064.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_image065.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mesh_001.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mesh_002.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mesh_003.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mesh_004.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mkperiodic_im001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mkperiodic_im002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mkperiodic_im003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mkperiodic_im004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mkperiodic_im005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_mkperiodic_im006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im009.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im010.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im011.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im015.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im016.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im017.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im018.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im019.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im020.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im021.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im022.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im023.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im024.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im025.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im026.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im027.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im028.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_algos_rf_im029.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_continuity_curves.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_continuity_surfaces.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image009.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image010.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image011.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_image015.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_obb_125K.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_opt_obb_125K.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/modeling_data_pca_obb_125K.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/nav_f.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/nav_fd.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/nav_g.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/nav_h.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/nav_hd.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtree.css
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtree.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreedata.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex0.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex1.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex10.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex2.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex3.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex4.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex5.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex6.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex7.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex8.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/navtreeindex9.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_functionmechanism_wp_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_functionmechanism_wp_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image003.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image010.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image011.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image015.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image016.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image017.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image020.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image021.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_image022.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_tree_wp_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_tree_wp_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_tree_wp_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_tree_wp_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_wp_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_wp_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_wp_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/ocaf_wp_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occ_logo.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt__debug.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt__tutorial.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt__upgrade.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_contribution__coding_rules.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_contribution__contribution_workflow.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_contribution__documentation.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_contribution__git_guide.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_contribution__tests.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_logo.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_public_license.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_samples_glfw.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_samples_ios_uikit.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_samples_webgl.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__de_wrapper.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__foundation_classes.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__iges.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__inspector.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__mesh.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__modeling_algos.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__modeling_data.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__ocaf.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__shape_healing.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__step.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__test_harness.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__vis.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__visualization.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/occt_user_guides__xde.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/open.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image001.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image002.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image003.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image004.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image005.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image006.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image007.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image008.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image009.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image010.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image011.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image012.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image013.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image014.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image015.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image016.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image017.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image018.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image019.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image020.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image021.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image022.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image023.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image024.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image025.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image026.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image027.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image028.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image029.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image030.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image031.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image032.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image033.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image036.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image037.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image038.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image039a.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image039b.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image040.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image041.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image042.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image043.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image044.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image045.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image046.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image047.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image048.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image049.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image050.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image051.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image052.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image053.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image054.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image055.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image060.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image061.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image062.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image063.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image064.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/operations_image065.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/overview_3rdparty.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/overview_draw.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/overview_installation.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/pages.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/point_cloud.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/preferences.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_array.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_item_selection.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_label.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_named_data.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_simple_type.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_tnaming_named_shape.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_tnaming_naming.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_tnaming_used_shapes.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/property_panel_custom_tree_node.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/resize.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_ios_uikit.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_overview_qt.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_overview_qt_geometry.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_overview_qt_ocaf.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_overview_qt_topology.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_overview_qt_triangulation.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_overview_qt_viewers.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_overview_qt_xde.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sample_webgl.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__draw_scripts.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__novice_guide.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__ocaf.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__ocaf_func.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__projects.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__projects.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__tutorials.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples__tutorials.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_c__ie.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_csharp_direct3d.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_csharp_occt.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_java_android_occt.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_java_android_occt.jpg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_mfc_standard.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_mvc.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_qml_android_occt.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_qml_android_occt.jpg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_qt.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_qt_iesample.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_qt_overview.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/samples_qt_tutorial.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search.php
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/close.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/mag.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/mag_d.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/mag_sel.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/mag_seld.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/search.css
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/search.idx
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search/search.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search_config.php
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search_functions.php
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/search_opensearch.php
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image009.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image011.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shape_healing_image014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shapeview.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shapeview_elements.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shapeview_property_panel.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/shapeview_tree_columns.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/specification.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/specification.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/specification__boolean_operations.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/specification__brep_format.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/specification__pbr_math.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/splitbar.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/splitbard.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/step_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/step_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/step_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/stereo.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sync_off.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/sync_on.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_a.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_ad.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_b.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_bd.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_h.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_hd.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_s.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tab_sd.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tabs.css
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/technical_overview_schema.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tests_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tinspector_elements.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tobj_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tobj_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tobj_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tobj_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tobj_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tobj_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/treeview_preferences.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image003.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image009.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image010.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image011.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image012.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image013.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image014.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image015.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image016.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image017.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image018.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorial_image019.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/tutorials__ais_object.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/user_guides.html
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/user_guides.js
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/view_frustum.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vinspector.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vinspector_elements.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vinspector_light_setting.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vinspector_property_panel.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vinspector_tree_columns.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vis_image001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vis_image002.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vis_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vis_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vis_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vis_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/vis_image007.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image004.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image007.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image008.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image009.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image010.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image017.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image018.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image020.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image022.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image029.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_image030.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_selection_scheme_XOR.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_selection_scheme_add.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_selection_scheme_clear.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_selection_scheme_remove.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_selection_scheme_replace.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/visualization_selection_scheme_replaceExtra.svg
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/xde_image003.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/xde_image004.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/xde_image005.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/xde_image006.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/html/xde_notes001.png
+%%DOXYGEN%%%%OCCROOT%%/%%DOCSDIR%%/overview/index.html
%%OCCROOT%%/tests/blend/begin
%%OCCROOT%%/tests/blend/bfuseblend/A1
%%OCCROOT%%/tests/blend/bfuseblend/A2
@@ -706,7 +1455,6 @@
%%OCCROOT%%/tests/blend/tolblend_simple/B7
%%OCCROOT%%/tests/blend/tolblend_simple/B8
%%OCCROOT%%/tests/blend/tolblend_simple/B9
-%%OCCROOT%%/tests/blend/tolblend_simple/begin
%%OCCROOT%%/tests/blend/tolblend_simple/C1
%%OCCROOT%%/tests/blend/tolblend_simple/C2
%%OCCROOT%%/tests/blend/tolblend_simple/C3
@@ -744,6 +1492,7 @@
%%OCCROOT%%/tests/blend/tolblend_simple/F8
%%OCCROOT%%/tests/blend/tolblend_simple/F9
%%OCCROOT%%/tests/blend/tolblend_simple/G1
+%%OCCROOT%%/tests/blend/tolblend_simple/begin
%%OCCROOT%%/tests/boolean/bcommon_2d/A1
%%OCCROOT%%/tests/boolean/bcommon_2d/A2
%%OCCROOT%%/tests/boolean/bcommon_2d/A3
@@ -789,7 +1538,6 @@
%%OCCROOT%%/tests/boolean/bcommon_2d/E7
%%OCCROOT%%/tests/boolean/bcommon_2d/E8
%%OCCROOT%%/tests/boolean/bcommon_2d/E9
-%%OCCROOT%%/tests/boolean/bcommon_2d/end
%%OCCROOT%%/tests/boolean/bcommon_2d/F1
%%OCCROOT%%/tests/boolean/bcommon_2d/F2
%%OCCROOT%%/tests/boolean/bcommon_2d/F3
@@ -888,6 +1636,7 @@
%%OCCROOT%%/tests/boolean/bcommon_2d/P6
%%OCCROOT%%/tests/boolean/bcommon_2d/P7
%%OCCROOT%%/tests/boolean/bcommon_2d/P8
+%%OCCROOT%%/tests/boolean/bcommon_2d/end
%%OCCROOT%%/tests/boolean/bcommon_complex/A1
%%OCCROOT%%/tests/boolean/bcommon_complex/A2
%%OCCROOT%%/tests/boolean/bcommon_complex/A3
@@ -1041,7 +1790,6 @@
%%OCCROOT%%/tests/boolean/bcut_2d/E7
%%OCCROOT%%/tests/boolean/bcut_2d/E8
%%OCCROOT%%/tests/boolean/bcut_2d/E9
-%%OCCROOT%%/tests/boolean/bcut_2d/end
%%OCCROOT%%/tests/boolean/bcut_2d/F1
%%OCCROOT%%/tests/boolean/bcut_2d/F2
%%OCCROOT%%/tests/boolean/bcut_2d/F3
@@ -1167,6 +1915,7 @@
%%OCCROOT%%/tests/boolean/bcut_2d/S6
%%OCCROOT%%/tests/boolean/bcut_2d/S7
%%OCCROOT%%/tests/boolean/bcut_2d/S8
+%%OCCROOT%%/tests/boolean/bcut_2d/end
%%OCCROOT%%/tests/boolean/bcut_complex/A1
%%OCCROOT%%/tests/boolean/bcut_complex/A2
%%OCCROOT%%/tests/boolean/bcut_complex/A3
@@ -1773,7 +2522,6 @@
%%OCCROOT%%/tests/boolean/bopcommon_2d/E7
%%OCCROOT%%/tests/boolean/bopcommon_2d/E8
%%OCCROOT%%/tests/boolean/bopcommon_2d/E9
-%%OCCROOT%%/tests/boolean/bopcommon_2d/end
%%OCCROOT%%/tests/boolean/bopcommon_2d/F1
%%OCCROOT%%/tests/boolean/bopcommon_2d/F2
%%OCCROOT%%/tests/boolean/bopcommon_2d/F3
@@ -1872,6 +2620,7 @@
%%OCCROOT%%/tests/boolean/bopcommon_2d/P6
%%OCCROOT%%/tests/boolean/bopcommon_2d/P7
%%OCCROOT%%/tests/boolean/bopcommon_2d/P8
+%%OCCROOT%%/tests/boolean/bopcommon_2d/end
%%OCCROOT%%/tests/boolean/bopcommon_complex/A1
%%OCCROOT%%/tests/boolean/bopcommon_complex/A2
%%OCCROOT%%/tests/boolean/bopcommon_complex/A3
@@ -3542,7 +4291,6 @@
%%OCCROOT%%/tests/boolean/boptuc_2d/E7
%%OCCROOT%%/tests/boolean/boptuc_2d/E8
%%OCCROOT%%/tests/boolean/boptuc_2d/E9
-%%OCCROOT%%/tests/boolean/boptuc_2d/end
%%OCCROOT%%/tests/boolean/boptuc_2d/F1
%%OCCROOT%%/tests/boolean/boptuc_2d/F2
%%OCCROOT%%/tests/boolean/boptuc_2d/F3
@@ -3638,6 +4386,7 @@
%%OCCROOT%%/tests/boolean/boptuc_2d/P3
%%OCCROOT%%/tests/boolean/boptuc_2d/P4
%%OCCROOT%%/tests/boolean/boptuc_2d/P5
+%%OCCROOT%%/tests/boolean/boptuc_2d/end
%%OCCROOT%%/tests/boolean/boptuc_complex/A1
%%OCCROOT%%/tests/boolean/boptuc_complex/A2
%%OCCROOT%%/tests/boolean/boptuc_complex/A3
@@ -4286,7 +5035,6 @@
%%OCCROOT%%/tests/boolean/cells_test/E7
%%OCCROOT%%/tests/boolean/cells_test/E8
%%OCCROOT%%/tests/boolean/cells_test/E9
-%%OCCROOT%%/tests/boolean/cells_test/end
%%OCCROOT%%/tests/boolean/cells_test/F1
%%OCCROOT%%/tests/boolean/cells_test/F2
%%OCCROOT%%/tests/boolean/cells_test/F3
@@ -4317,6 +5065,7 @@
%%OCCROOT%%/tests/boolean/cells_test/J5
%%OCCROOT%%/tests/boolean/cells_test/J6
%%OCCROOT%%/tests/boolean/cells_test/K1
+%%OCCROOT%%/tests/boolean/cells_test/end
%%OCCROOT%%/tests/boolean/end
%%OCCROOT%%/tests/boolean/gdml_private/A1
%%OCCROOT%%/tests/boolean/gdml_private/A2
@@ -4336,7 +5085,6 @@
%%OCCROOT%%/tests/boolean/gdml_private/B7
%%OCCROOT%%/tests/boolean/gdml_private/B8
%%OCCROOT%%/tests/boolean/gdml_private/B9
-%%OCCROOT%%/tests/boolean/gdml_private/bug27052_ZI5
%%OCCROOT%%/tests/boolean/gdml_private/C1
%%OCCROOT%%/tests/boolean/gdml_private/C2
%%OCCROOT%%/tests/boolean/gdml_private/C3
@@ -4364,7 +5112,6 @@
%%OCCROOT%%/tests/boolean/gdml_private/E7
%%OCCROOT%%/tests/boolean/gdml_private/E8
%%OCCROOT%%/tests/boolean/gdml_private/E9
-%%OCCROOT%%/tests/boolean/gdml_private/end
%%OCCROOT%%/tests/boolean/gdml_private/F1
%%OCCROOT%%/tests/boolean/gdml_private/F2
%%OCCROOT%%/tests/boolean/gdml_private/F3
@@ -4645,6 +5392,8 @@
%%OCCROOT%%/tests/boolean/gdml_private/ZK1
%%OCCROOT%%/tests/boolean/gdml_private/ZK2
%%OCCROOT%%/tests/boolean/gdml_private/ZK3
+%%OCCROOT%%/tests/boolean/gdml_private/bug27052_ZI5
+%%OCCROOT%%/tests/boolean/gdml_private/end
%%OCCROOT%%/tests/boolean/gdml_public/A1
%%OCCROOT%%/tests/boolean/gdml_public/A2
%%OCCROOT%%/tests/boolean/gdml_public/A3
@@ -4720,7 +5469,6 @@
%%OCCROOT%%/tests/boolean/removefeatures/B7
%%OCCROOT%%/tests/boolean/removefeatures/B8
%%OCCROOT%%/tests/boolean/removefeatures/B9
-%%OCCROOT%%/tests/boolean/removefeatures/begin
%%OCCROOT%%/tests/boolean/removefeatures/C1
%%OCCROOT%%/tests/boolean/removefeatures/C2
%%OCCROOT%%/tests/boolean/removefeatures/C3
@@ -4761,6 +5509,7 @@
%%OCCROOT%%/tests/boolean/removefeatures/G2
%%OCCROOT%%/tests/boolean/removefeatures/G3
%%OCCROOT%%/tests/boolean/removefeatures/G4
+%%OCCROOT%%/tests/boolean/removefeatures/begin
%%OCCROOT%%/tests/boolean/simplify/A1
%%OCCROOT%%/tests/boolean/simplify/A2
%%OCCROOT%%/tests/boolean/simplify/A3
@@ -4823,7 +5572,6 @@
%%OCCROOT%%/tests/boolean/volumemaker/E7
%%OCCROOT%%/tests/boolean/volumemaker/E8
%%OCCROOT%%/tests/boolean/volumemaker/E9
-%%OCCROOT%%/tests/boolean/volumemaker/end
%%OCCROOT%%/tests/boolean/volumemaker/F1
%%OCCROOT%%/tests/boolean/volumemaker/F2
%%OCCROOT%%/tests/boolean/volumemaker/F3
@@ -4853,6 +5601,7 @@
%%OCCROOT%%/tests/boolean/volumemaker/H9
%%OCCROOT%%/tests/boolean/volumemaker/I1
%%OCCROOT%%/tests/boolean/volumemaker/I2
+%%OCCROOT%%/tests/boolean/volumemaker/end
%%OCCROOT%%/tests/bugs/begin
%%OCCROOT%%/tests/bugs/caf/begin
%%OCCROOT%%/tests/bugs/caf/buc60756
@@ -4878,7 +5627,6 @@
%%OCCROOT%%/tests/bugs/caf/bug1054_1
%%OCCROOT%%/tests/bugs/caf/bug1054_2
%%OCCROOT%%/tests/bugs/caf/bug1138
-%%OCCROOT%%/tests/bugs/caf/bug114
%%OCCROOT%%/tests/bugs/caf/bug1395_1
%%OCCROOT%%/tests/bugs/caf/bug1395_2
%%OCCROOT%%/tests/bugs/caf/bug158
@@ -4937,7 +5685,6 @@
%%OCCROOT%%/tests/bugs/caf/bug26290_newattribute_1
%%OCCROOT%%/tests/bugs/caf/bug26290_newattribute_2
%%OCCROOT%%/tests/bugs/caf/bug26293_1
-%%OCCROOT%%/tests/bugs/caf/bug26293_2
%%OCCROOT%%/tests/bugs/caf/bug26428
%%OCCROOT%%/tests/bugs/caf/bug267_1
%%OCCROOT%%/tests/bugs/caf/bug267_2
@@ -5012,12 +5759,12 @@
%%OCCROOT%%/tests/bugs/caf/bug425
%%OCCROOT%%/tests/bugs/caf/bug644
%%OCCROOT%%/tests/bugs/caf/bug669
-%%OCCROOT%%/tests/bugs/caf/bug73_1
-%%OCCROOT%%/tests/bugs/caf/bug73_2
-%%OCCROOT%%/tests/bugs/caf/bug73_3
%%OCCROOT%%/tests/bugs/caf/bug738_1
%%OCCROOT%%/tests/bugs/caf/bug738_2
%%OCCROOT%%/tests/bugs/caf/bug739
+%%OCCROOT%%/tests/bugs/caf/bug73_1
+%%OCCROOT%%/tests/bugs/caf/bug73_2
+%%OCCROOT%%/tests/bugs/caf/bug73_3
%%OCCROOT%%/tests/bugs/caf/bug9746
%%OCCROOT%%/tests/bugs/demo/begin
%%OCCROOT%%/tests/bugs/demo/bug14673_1
@@ -5158,9 +5905,9 @@
%%OCCROOT%%/tests/bugs/fclasses/bug902
%%OCCROOT%%/tests/bugs/fclasses/bug983
%%OCCROOT%%/tests/bugs/fclasses/bug984
-%%OCCROOT%%/tests/bugs/fclasses/bug984_1
%%OCCROOT%%/tests/bugs/fclasses/bug9848_1
%%OCCROOT%%/tests/bugs/fclasses/bug9848_2
+%%OCCROOT%%/tests/bugs/fclasses/bug984_1
%%OCCROOT%%/tests/bugs/filling/begin
%%OCCROOT%%/tests/bugs/filling/bug13904
%%OCCROOT%%/tests/bugs/filling/bug16119
@@ -5333,6 +6080,11 @@
%%OCCROOT%%/tests/bugs/heal/bug329
%%OCCROOT%%/tests/bugs/heal/bug33006
%%OCCROOT%%/tests/bugs/heal/bug33028
+%%OCCROOT%%/tests/bugs/heal/bug33171_1
+%%OCCROOT%%/tests/bugs/heal/bug33171_2
+%%OCCROOT%%/tests/bugs/heal/bug33193
+%%OCCROOT%%/tests/bugs/heal/bug33398
+%%OCCROOT%%/tests/bugs/heal/bug33421
%%OCCROOT%%/tests/bugs/heal/bug482
%%OCCROOT%%/tests/bugs/heal/bug518
%%OCCROOT%%/tests/bugs/heal/bug7570
@@ -5442,6 +6194,7 @@
%%OCCROOT%%/tests/bugs/iges/bug30544
%%OCCROOT%%/tests/bugs/iges/bug306
%%OCCROOT%%/tests/bugs/iges/bug31812
+%%OCCROOT%%/tests/bugs/iges/bug33327
%%OCCROOT%%/tests/bugs/iges/bug365_1
%%OCCROOT%%/tests/bugs/iges/bug365_3
%%OCCROOT%%/tests/bugs/iges/bug365_4
@@ -5681,11 +6434,11 @@
%%OCCROOT%%/tests/bugs/mesh/bug31461
%%OCCROOT%%/tests/bugs/mesh/bug31476
%%OCCROOT%%/tests/bugs/mesh/bug31853
+%%OCCROOT%%/tests/bugs/mesh/bug31865
%%OCCROOT%%/tests/bugs/mesh/bug31926
%%OCCROOT%%/tests/bugs/mesh/bug32053
%%OCCROOT%%/tests/bugs/mesh/bug32241
%%OCCROOT%%/tests/bugs/mesh/bug32422
-%%OCCROOT%%/tests/bugs/mesh/bug32424
%%OCCROOT%%/tests/bugs/mesh/bug32471
%%OCCROOT%%/tests/bugs/mesh/bug32692_1
%%OCCROOT%%/tests/bugs/mesh/bug32692_2
@@ -5695,6 +6448,7 @@
%%OCCROOT%%/tests/bugs/mesh/bug32982_2
%%OCCROOT%%/tests/bugs/mesh/bug33050
%%OCCROOT%%/tests/bugs/mesh/bug33060
+%%OCCROOT%%/tests/bugs/mesh/bug33315
%%OCCROOT%%/tests/bugs/mesh/parse.rules
%%OCCROOT%%/tests/bugs/modalg_1/begin
%%OCCROOT%%/tests/bugs/modalg_1/buc60409_1
@@ -5782,9 +6536,9 @@
%%OCCROOT%%/tests/bugs/modalg_1/bug100
%%OCCROOT%%/tests/bugs/modalg_1/bug101
%%OCCROOT%%/tests/bugs/modalg_1/bug1013
+%%OCCROOT%%/tests/bugs/modalg_1/bug10232
%%OCCROOT%%/tests/bugs/modalg_1/bug102_1
%%OCCROOT%%/tests/bugs/modalg_1/bug102_2
-%%OCCROOT%%/tests/bugs/modalg_1/bug10232
%%OCCROOT%%/tests/bugs/modalg_1/bug10435_1
%%OCCROOT%%/tests/bugs/modalg_1/bug10435_2
%%OCCROOT%%/tests/bugs/modalg_1/bug10605_1
@@ -5821,13 +6575,13 @@
%%OCCROOT%%/tests/bugs/modalg_1/bug118
%%OCCROOT%%/tests/bugs/modalg_1/bug118_1
%%OCCROOT%%/tests/bugs/modalg_1/bug118_2
+%%OCCROOT%%/tests/bugs/modalg_1/bug12213
+%%OCCROOT%%/tests/bugs/modalg_1/bug12257
+%%OCCROOT%%/tests/bugs/modalg_1/bug1226
%%OCCROOT%%/tests/bugs/modalg_1/bug122_1
%%OCCROOT%%/tests/bugs/modalg_1/bug122_2
%%OCCROOT%%/tests/bugs/modalg_1/bug122_3
%%OCCROOT%%/tests/bugs/modalg_1/bug122_4
-%%OCCROOT%%/tests/bugs/modalg_1/bug12213
-%%OCCROOT%%/tests/bugs/modalg_1/bug12257
-%%OCCROOT%%/tests/bugs/modalg_1/bug1226
%%OCCROOT%%/tests/bugs/modalg_1/bug123_1
%%OCCROOT%%/tests/bugs/modalg_1/bug123_2
%%OCCROOT%%/tests/bugs/modalg_1/bug1243_1
@@ -5872,6 +6626,7 @@
%%OCCROOT%%/tests/bugs/modalg_1/bug14536
%%OCCROOT%%/tests/bugs/modalg_1/bug1456
%%OCCROOT%%/tests/bugs/modalg_1/bug14643
+%%OCCROOT%%/tests/bugs/modalg_1/bug14777
%%OCCROOT%%/tests/bugs/modalg_1/bug1477_1
%%OCCROOT%%/tests/bugs/modalg_1/bug1477_10
%%OCCROOT%%/tests/bugs/modalg_1/bug1477_11
@@ -5884,7 +6639,6 @@
%%OCCROOT%%/tests/bugs/modalg_1/bug1477_7
%%OCCROOT%%/tests/bugs/modalg_1/bug1477_8
%%OCCROOT%%/tests/bugs/modalg_1/bug1477_9
-%%OCCROOT%%/tests/bugs/modalg_1/bug14777
%%OCCROOT%%/tests/bugs/modalg_1/bug14780
%%OCCROOT%%/tests/bugs/modalg_1/bug15036
%%OCCROOT%%/tests/bugs/modalg_1/bug15836
@@ -5963,9 +6717,6 @@
%%OCCROOT%%/tests/bugs/modalg_2/bug21
%%OCCROOT%%/tests/bugs/modalg_2/bug21060
%%OCCROOT%%/tests/bugs/modalg_2/bug212
-%%OCCROOT%%/tests/bugs/modalg_2/bug212_1
-%%OCCROOT%%/tests/bugs/modalg_2/bug212_2
-%%OCCROOT%%/tests/bugs/modalg_2/bug212_3
%%OCCROOT%%/tests/bugs/modalg_2/bug21255
%%OCCROOT%%/tests/bugs/modalg_2/bug21261_1
%%OCCROOT%%/tests/bugs/modalg_2/bug21261_10
@@ -6013,6 +6764,9 @@
%%OCCROOT%%/tests/bugs/modalg_2/bug21261_7
%%OCCROOT%%/tests/bugs/modalg_2/bug21261_8
%%OCCROOT%%/tests/bugs/modalg_2/bug21261_9
+%%OCCROOT%%/tests/bugs/modalg_2/bug212_1
+%%OCCROOT%%/tests/bugs/modalg_2/bug212_2
+%%OCCROOT%%/tests/bugs/modalg_2/bug212_3
%%OCCROOT%%/tests/bugs/modalg_2/bug213
%%OCCROOT%%/tests/bugs/modalg_2/bug213_1
%%OCCROOT%%/tests/bugs/modalg_2/bug213_2
@@ -6022,11 +6776,11 @@
%%OCCROOT%%/tests/bugs/modalg_2/bug21540
%%OCCROOT%%/tests/bugs/modalg_2/bug21652_1
%%OCCROOT%%/tests/bugs/modalg_2/bug21652_2
+%%OCCROOT%%/tests/bugs/modalg_2/bug21722
%%OCCROOT%%/tests/bugs/modalg_2/bug2172_1
%%OCCROOT%%/tests/bugs/modalg_2/bug2172_2
%%OCCROOT%%/tests/bugs/modalg_2/bug2172_3
%%OCCROOT%%/tests/bugs/modalg_2/bug2172_4
-%%OCCROOT%%/tests/bugs/modalg_2/bug21722
%%OCCROOT%%/tests/bugs/modalg_2/bug21754
%%OCCROOT%%/tests/bugs/modalg_2/bug21909
%%OCCROOT%%/tests/bugs/modalg_2/bug221
@@ -6367,14 +7121,14 @@
%%OCCROOT%%/tests/bugs/modalg_2/bug539_1
%%OCCROOT%%/tests/bugs/modalg_2/bug539_2
%%OCCROOT%%/tests/bugs/modalg_2/bug548
-%%OCCROOT%%/tests/bugs/modalg_2/bug57_1
-%%OCCROOT%%/tests/bugs/modalg_2/bug57_2
%%OCCROOT%%/tests/bugs/modalg_2/bug570
%%OCCROOT%%/tests/bugs/modalg_2/bug571_1
%%OCCROOT%%/tests/bugs/modalg_2/bug571_2
%%OCCROOT%%/tests/bugs/modalg_2/bug5729
%%OCCROOT%%/tests/bugs/modalg_2/bug578_1
%%OCCROOT%%/tests/bugs/modalg_2/bug578_2
+%%OCCROOT%%/tests/bugs/modalg_2/bug57_1
+%%OCCROOT%%/tests/bugs/modalg_2/bug57_2
%%OCCROOT%%/tests/bugs/modalg_2/bug5805_1
%%OCCROOT%%/tests/bugs/modalg_2/bug5805_10
%%OCCROOT%%/tests/bugs/modalg_2/bug5805_11
@@ -6435,16 +7189,16 @@
%%OCCROOT%%/tests/bugs/modalg_3/bug5805_7
%%OCCROOT%%/tests/bugs/modalg_3/bug5805_8
%%OCCROOT%%/tests/bugs/modalg_3/bug5805_9
+%%OCCROOT%%/tests/bugs/modalg_3/bug594
%%OCCROOT%%/tests/bugs/modalg_3/bug59_1
%%OCCROOT%%/tests/bugs/modalg_3/bug59_2
-%%OCCROOT%%/tests/bugs/modalg_3/bug594
%%OCCROOT%%/tests/bugs/modalg_3/bug600
%%OCCROOT%%/tests/bugs/modalg_3/bug602
%%OCCROOT%%/tests/bugs/modalg_3/bug605
-%%OCCROOT%%/tests/bugs/modalg_3/bug606_1
-%%OCCROOT%%/tests/bugs/modalg_3/bug606_2
%%OCCROOT%%/tests/bugs/modalg_3/bug6063
%%OCCROOT%%/tests/bugs/modalg_3/bug6063_1
+%%OCCROOT%%/tests/bugs/modalg_3/bug606_1
+%%OCCROOT%%/tests/bugs/modalg_3/bug606_2
%%OCCROOT%%/tests/bugs/modalg_3/bug615
%%OCCROOT%%/tests/bugs/modalg_3/bug616
%%OCCROOT%%/tests/bugs/modalg_3/bug698
@@ -6502,9 +7256,9 @@
%%OCCROOT%%/tests/bugs/modalg_4/bug6766_2
%%OCCROOT%%/tests/bugs/modalg_4/bug6766_3
%%OCCROOT%%/tests/bugs/modalg_4/bug6766_4
+%%OCCROOT%%/tests/bugs/modalg_4/bug6811
%%OCCROOT%%/tests/bugs/modalg_4/bug68_1
%%OCCROOT%%/tests/bugs/modalg_4/bug68_2
-%%OCCROOT%%/tests/bugs/modalg_4/bug6811
%%OCCROOT%%/tests/bugs/modalg_4/bug693
%%OCCROOT%%/tests/bugs/modalg_4/bug693_1
%%OCCROOT%%/tests/bugs/modalg_4/bug697_1
@@ -6544,8 +7298,6 @@
%%OCCROOT%%/tests/bugs/modalg_4/bug763
%%OCCROOT%%/tests/bugs/modalg_4/bug7668
%%OCCROOT%%/tests/bugs/modalg_4/bug767
-%%OCCROOT%%/tests/bugs/modalg_4/bug77_1
-%%OCCROOT%%/tests/bugs/modalg_4/bug77_2
%%OCCROOT%%/tests/bugs/modalg_4/bug770
%%OCCROOT%%/tests/bugs/modalg_4/bug771
%%OCCROOT%%/tests/bugs/modalg_4/bug772
@@ -6557,6 +7309,8 @@
%%OCCROOT%%/tests/bugs/modalg_4/bug778_1
%%OCCROOT%%/tests/bugs/modalg_4/bug778_2
%%OCCROOT%%/tests/bugs/modalg_4/bug779
+%%OCCROOT%%/tests/bugs/modalg_4/bug77_1
+%%OCCROOT%%/tests/bugs/modalg_4/bug77_2
%%OCCROOT%%/tests/bugs/modalg_4/bug78
%%OCCROOT%%/tests/bugs/modalg_4/bug780_1
%%OCCROOT%%/tests/bugs/modalg_4/bug780_2
@@ -6570,10 +7324,9 @@
%%OCCROOT%%/tests/bugs/modalg_4/bug817_2
%%OCCROOT%%/tests/bugs/modalg_4/bug817_3
%%OCCROOT%%/tests/bugs/modalg_4/bug82
-%%OCCROOT%%/tests/bugs/modalg_4/bug82_1
+%%OCCROOT%%/tests/bugs/modalg_4/bug8228
%%OCCROOT%%/tests/bugs/modalg_4/bug822_1
%%OCCROOT%%/tests/bugs/modalg_4/bug822_2
-%%OCCROOT%%/tests/bugs/modalg_4/bug8228
%%OCCROOT%%/tests/bugs/modalg_4/bug823
%%OCCROOT%%/tests/bugs/modalg_4/bug824
%%OCCROOT%%/tests/bugs/modalg_4/bug825
@@ -6582,6 +7335,7 @@
%%OCCROOT%%/tests/bugs/modalg_4/bug828
%%OCCROOT%%/tests/bugs/modalg_4/bug829_1
%%OCCROOT%%/tests/bugs/modalg_4/bug829_2
+%%OCCROOT%%/tests/bugs/modalg_4/bug82_1
%%OCCROOT%%/tests/bugs/modalg_4/bug8370
%%OCCROOT%%/tests/bugs/modalg_4/bug8372
%%OCCROOT%%/tests/bugs/modalg_4/bug86
@@ -7365,7 +8119,6 @@
%%OCCROOT%%/tests/bugs/modalg_6/bug26588
%%OCCROOT%%/tests/bugs/modalg_6/bug26607
%%OCCROOT%%/tests/bugs/modalg_6/bug26609
-%%OCCROOT%%/tests/bugs/modalg_6/bug26616
%%OCCROOT%%/tests/bugs/modalg_6/bug26619
%%OCCROOT%%/tests/bugs/modalg_6/bug26621
%%OCCROOT%%/tests/bugs/modalg_6/bug26627
@@ -7999,7 +8752,6 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug29813_3
%%OCCROOT%%/tests/bugs/modalg_7/bug29824
%%OCCROOT%%/tests/bugs/modalg_7/bug29839
-%%OCCROOT%%/tests/bugs/modalg_7/bug29843_1
%%OCCROOT%%/tests/bugs/modalg_7/bug29843_2
%%OCCROOT%%/tests/bugs/modalg_7/bug29857
%%OCCROOT%%/tests/bugs/modalg_7/bug29857_1
@@ -8219,15 +8971,27 @@
%%OCCROOT%%/tests/bugs/modalg_7/bug32874_4
%%OCCROOT%%/tests/bugs/modalg_7/bug32874_5
%%OCCROOT%%/tests/bugs/modalg_7/bug32877
+%%OCCROOT%%/tests/bugs/modalg_7/bug32934
+%%OCCROOT%%/tests/bugs/modalg_7/bug33264
+%%OCCROOT%%/tests/bugs/modalg_7/bug33265
+%%OCCROOT%%/tests/bugs/modalg_7/bug33369
%%OCCROOT%%/tests/bugs/modalg_7/bug5081_1
%%OCCROOT%%/tests/bugs/modalg_7/bug5081_2
%%OCCROOT%%/tests/bugs/modalg_7/bug5582
%%OCCROOT%%/tests/bugs/modalg_7/bug83
%%OCCROOT%%/tests/bugs/modalg_7/optimal_bndbox_exception
+%%OCCROOT%%/tests/bugs/modalg_8/bug26441
+%%OCCROOT%%/tests/bugs/modalg_8/bug26578_1
+%%OCCROOT%%/tests/bugs/modalg_8/bug26578_2
+%%OCCROOT%%/tests/bugs/modalg_8/bug26578_3
+%%OCCROOT%%/tests/bugs/modalg_8/bug26578_4
+%%OCCROOT%%/tests/bugs/modalg_8/bug26578_5
+%%OCCROOT%%/tests/bugs/modalg_8/bug26578_6
%%OCCROOT%%/tests/bugs/modalg_8/bug30160
%%OCCROOT%%/tests/bugs/modalg_8/bug30955
%%OCCROOT%%/tests/bugs/modalg_8/bug31479_1
%%OCCROOT%%/tests/bugs/modalg_8/bug31479_2
+%%OCCROOT%%/tests/bugs/modalg_8/bug31919
%%OCCROOT%%/tests/bugs/modalg_8/bug31992
%%OCCROOT%%/tests/bugs/modalg_8/bug32214_1
%%OCCROOT%%/tests/bugs/modalg_8/bug32214_2
@@ -8253,7 +9017,19 @@
%%OCCROOT%%/tests/bugs/modalg_8/bug32973
%%OCCROOT%%/tests/bugs/modalg_8/bug33080
%%OCCROOT%%/tests/bugs/modalg_8/bug33104
+%%OCCROOT%%/tests/bugs/modalg_8/bug33113
%%OCCROOT%%/tests/bugs/modalg_8/bug33165
+%%OCCROOT%%/tests/bugs/modalg_8/bug33173
+%%OCCROOT%%/tests/bugs/modalg_8/bug33179
+%%OCCROOT%%/tests/bugs/modalg_8/bug33180
+%%OCCROOT%%/tests/bugs/modalg_8/bug33187
+%%OCCROOT%%/tests/bugs/modalg_8/bug33227
+%%OCCROOT%%/tests/bugs/modalg_8/bug33247
+%%OCCROOT%%/tests/bugs/modalg_8/bug33306
+%%OCCROOT%%/tests/bugs/modalg_8/bug33311
+%%OCCROOT%%/tests/bugs/modalg_8/bug33361
+%%OCCROOT%%/tests/bugs/modalg_8/bug33414
+%%OCCROOT%%/tests/bugs/modalg_8/bug33515
%%OCCROOT%%/tests/bugs/moddata_1/begin
%%OCCROOT%%/tests/bugs/moddata_1/buc60637
%%OCCROOT%%/tests/bugs/moddata_1/buc60652_1
@@ -8338,10 +9114,10 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug163
%%OCCROOT%%/tests/bugs/moddata_1/bug164_1
%%OCCROOT%%/tests/bugs/moddata_1/bug164_2
+%%OCCROOT%%/tests/bugs/moddata_1/bug1651
%%OCCROOT%%/tests/bugs/moddata_1/bug165_1
%%OCCROOT%%/tests/bugs/moddata_1/bug165_2
%%OCCROOT%%/tests/bugs/moddata_1/bug165_3
-%%OCCROOT%%/tests/bugs/moddata_1/bug1651
%%OCCROOT%%/tests/bugs/moddata_1/bug17
%%OCCROOT%%/tests/bugs/moddata_1/bug17046
%%OCCROOT%%/tests/bugs/moddata_1/bug17424
@@ -8369,10 +9145,10 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug20904_1
%%OCCROOT%%/tests/bugs/moddata_1/bug20904_2
%%OCCROOT%%/tests/bugs/moddata_1/bug20904_3
-%%OCCROOT%%/tests/bugs/moddata_1/bug211_1
-%%OCCROOT%%/tests/bugs/moddata_1/bug211_2
%%OCCROOT%%/tests/bugs/moddata_1/bug21121
%%OCCROOT%%/tests/bugs/moddata_1/bug21122
+%%OCCROOT%%/tests/bugs/moddata_1/bug211_1
+%%OCCROOT%%/tests/bugs/moddata_1/bug211_2
%%OCCROOT%%/tests/bugs/moddata_1/bug217
%%OCCROOT%%/tests/bugs/moddata_1/bug22039
%%OCCROOT%%/tests/bugs/moddata_1/bug22043
@@ -8392,8 +9168,6 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug22554_4
%%OCCROOT%%/tests/bugs/moddata_1/bug22623
%%OCCROOT%%/tests/bugs/moddata_1/bug22694
-%%OCCROOT%%/tests/bugs/moddata_1/bug227_1
-%%OCCROOT%%/tests/bugs/moddata_1/bug227_2
%%OCCROOT%%/tests/bugs/moddata_1/bug22703
%%OCCROOT%%/tests/bugs/moddata_1/bug22726
%%OCCROOT%%/tests/bugs/moddata_1/bug22733
@@ -8402,6 +9176,8 @@
%%OCCROOT%%/tests/bugs/moddata_1/bug22759
%%OCCROOT%%/tests/bugs/moddata_1/bug22761
%%OCCROOT%%/tests/bugs/moddata_1/bug22789
+%%OCCROOT%%/tests/bugs/moddata_1/bug227_1
+%%OCCROOT%%/tests/bugs/moddata_1/bug227_2
%%OCCROOT%%/tests/bugs/moddata_1/bug54
%%OCCROOT%%/tests/bugs/moddata_2/begin
%%OCCROOT%%/tests/bugs/moddata_2/bug22572
@@ -8450,27 +9226,25 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug258_1
%%OCCROOT%%/tests/bugs/moddata_2/bug258_2
%%OCCROOT%%/tests/bugs/moddata_2/bug259
-%%OCCROOT%%/tests/bugs/moddata_2/bug26_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug26_2
%%OCCROOT%%/tests/bugs/moddata_2/bug262
%%OCCROOT%%/tests/bugs/moddata_2/bug265
%%OCCROOT%%/tests/bugs/moddata_2/bug266
%%OCCROOT%%/tests/bugs/moddata_2/bug268
-%%OCCROOT%%/tests/bugs/moddata_2/bug27_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug27_2
+%%OCCROOT%%/tests/bugs/moddata_2/bug26_1
+%%OCCROOT%%/tests/bugs/moddata_2/bug26_2
%%OCCROOT%%/tests/bugs/moddata_2/bug2755
%%OCCROOT%%/tests/bugs/moddata_2/bug277
+%%OCCROOT%%/tests/bugs/moddata_2/bug2784_1
+%%OCCROOT%%/tests/bugs/moddata_2/bug2784_2
%%OCCROOT%%/tests/bugs/moddata_2/bug278_1
%%OCCROOT%%/tests/bugs/moddata_2/bug278_2
%%OCCROOT%%/tests/bugs/moddata_2/bug278_3
-%%OCCROOT%%/tests/bugs/moddata_2/bug2784_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug2784_2
+%%OCCROOT%%/tests/bugs/moddata_2/bug27_1
+%%OCCROOT%%/tests/bugs/moddata_2/bug27_2
+%%OCCROOT%%/tests/bugs/moddata_2/bug284
%%OCCROOT%%/tests/bugs/moddata_2/bug28_1
%%OCCROOT%%/tests/bugs/moddata_2/bug28_2
-%%OCCROOT%%/tests/bugs/moddata_2/bug284
%%OCCROOT%%/tests/bugs/moddata_2/bug299
-%%OCCROOT%%/tests/bugs/moddata_2/bug3_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug3_2
%%OCCROOT%%/tests/bugs/moddata_2/bug303_1
%%OCCROOT%%/tests/bugs/moddata_2/bug303_2
%%OCCROOT%%/tests/bugs/moddata_2/bug308
@@ -8490,8 +9264,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug360
%%OCCROOT%%/tests/bugs/moddata_2/bug366
%%OCCROOT%%/tests/bugs/moddata_2/bug367
-%%OCCROOT%%/tests/bugs/moddata_2/bug37_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug37_2
%%OCCROOT%%/tests/bugs/moddata_2/bug372
%%OCCROOT%%/tests/bugs/moddata_2/bug3721_1
%%OCCROOT%%/tests/bugs/moddata_2/bug3721_2
@@ -8503,9 +9275,13 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug374_1
%%OCCROOT%%/tests/bugs/moddata_2/bug374_2
%%OCCROOT%%/tests/bugs/moddata_2/bug376
+%%OCCROOT%%/tests/bugs/moddata_2/bug37_1
+%%OCCROOT%%/tests/bugs/moddata_2/bug37_2
%%OCCROOT%%/tests/bugs/moddata_2/bug380_1
%%OCCROOT%%/tests/bugs/moddata_2/bug380_2
%%OCCROOT%%/tests/bugs/moddata_2/bug3896
+%%OCCROOT%%/tests/bugs/moddata_2/bug3_1
+%%OCCROOT%%/tests/bugs/moddata_2/bug3_2
%%OCCROOT%%/tests/bugs/moddata_2/bug4
%%OCCROOT%%/tests/bugs/moddata_2/bug408
%%OCCROOT%%/tests/bugs/moddata_2/bug41
@@ -8523,10 +9299,10 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug466
%%OCCROOT%%/tests/bugs/moddata_2/bug469
%%OCCROOT%%/tests/bugs/moddata_2/bug486
-%%OCCROOT%%/tests/bugs/moddata_2/bug49_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug49_2
%%OCCROOT%%/tests/bugs/moddata_2/bug496
%%OCCROOT%%/tests/bugs/moddata_2/bug498
+%%OCCROOT%%/tests/bugs/moddata_2/bug49_1
+%%OCCROOT%%/tests/bugs/moddata_2/bug49_2
%%OCCROOT%%/tests/bugs/moddata_2/bug50
%%OCCROOT%%/tests/bugs/moddata_2/bug503
%%OCCROOT%%/tests/bugs/moddata_2/bug505
@@ -8590,8 +9366,6 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug867
%%OCCROOT%%/tests/bugs/moddata_2/bug88
%%OCCROOT%%/tests/bugs/moddata_2/bug889
-%%OCCROOT%%/tests/bugs/moddata_2/bug9_1
-%%OCCROOT%%/tests/bugs/moddata_2/bug9_2
%%OCCROOT%%/tests/bugs/moddata_2/bug909
%%OCCROOT%%/tests/bugs/moddata_2/bug921
%%OCCROOT%%/tests/bugs/moddata_2/bug9303
@@ -8602,6 +9376,8 @@
%%OCCROOT%%/tests/bugs/moddata_2/bug943_2
%%OCCROOT%%/tests/bugs/moddata_2/bug956_1
%%OCCROOT%%/tests/bugs/moddata_2/bug956_2
+%%OCCROOT%%/tests/bugs/moddata_2/bug9_1
+%%OCCROOT%%/tests/bugs/moddata_2/bug9_2
%%OCCROOT%%/tests/bugs/moddata_2/fra62476_1
%%OCCROOT%%/tests/bugs/moddata_2/fra62476_2
%%OCCROOT%%/tests/bugs/moddata_2/pro19422_1
@@ -8788,11 +9564,11 @@
%%OCCROOT%%/tests/bugs/moddata_3/bug32842
%%OCCROOT%%/tests/bugs/moddata_3/bug33009
%%OCCROOT%%/tests/bugs/moddata_3/bug33049
+%%OCCROOT%%/tests/bugs/moddata_3/bug33304
+%%OCCROOT%%/tests/bugs/moddata_3/bug33318
%%OCCROOT%%/tests/bugs/moddata_3/bug5145
%%OCCROOT%%/tests/bugs/moddata_3/bug599
%%OCCROOT%%/tests/bugs/parse.rules
-%%OCCROOT%%/tests/bugs/splitshape_1/bug29473
-%%OCCROOT%%/tests/bugs/splitshape_1/end
%%OCCROOT%%/tests/bugs/splitshape/case1
%%OCCROOT%%/tests/bugs/splitshape/case10
%%OCCROOT%%/tests/bugs/splitshape/case11
@@ -8805,6 +9581,8 @@
%%OCCROOT%%/tests/bugs/splitshape/case8
%%OCCROOT%%/tests/bugs/splitshape/case9
%%OCCROOT%%/tests/bugs/splitshape/end
+%%OCCROOT%%/tests/bugs/splitshape_1/bug29473
+%%OCCROOT%%/tests/bugs/splitshape_1/end
%%OCCROOT%%/tests/bugs/step/begin
%%OCCROOT%%/tests/bugs/step/buc60624
%%OCCROOT%%/tests/bugs/step/buc60809
@@ -8863,10 +9641,11 @@
%%OCCROOT%%/tests/bugs/step/bug26715_3
%%OCCROOT%%/tests/bugs/step/bug26925
%%OCCROOT%%/tests/bugs/step/bug27070
+%%OCCROOT%%/tests/bugs/step/bug27122
+%%OCCROOT%%/tests/bugs/step/bug27251
%%OCCROOT%%/tests/bugs/step/bug272_5
%%OCCROOT%%/tests/bugs/step/bug272_6
%%OCCROOT%%/tests/bugs/step/bug272_7
-%%OCCROOT%%/tests/bugs/step/bug27251
%%OCCROOT%%/tests/bugs/step/bug27313
%%OCCROOT%%/tests/bugs/step/bug27329
%%OCCROOT%%/tests/bugs/step/bug27342
@@ -8961,14 +9740,19 @@
%%OCCROOT%%/tests/bugs/step/bug32556
%%OCCROOT%%/tests/bugs/step/bug32596
%%OCCROOT%%/tests/bugs/step/bug32679
+%%OCCROOT%%/tests/bugs/step/bug32681
%%OCCROOT%%/tests/bugs/step/bug32731
%%OCCROOT%%/tests/bugs/step/bug32817_1
%%OCCROOT%%/tests/bugs/step/bug32817_2
%%OCCROOT%%/tests/bugs/step/bug32817_3
%%OCCROOT%%/tests/bugs/step/bug32914
%%OCCROOT%%/tests/bugs/step/bug32922
+%%OCCROOT%%/tests/bugs/step/bug32977
%%OCCROOT%%/tests/bugs/step/bug33053
%%OCCROOT%%/tests/bugs/step/bug33095
+%%OCCROOT%%/tests/bugs/step/bug33307
+%%OCCROOT%%/tests/bugs/step/bug33317
+%%OCCROOT%%/tests/bugs/step/bug33331
%%OCCROOT%%/tests/bugs/step/bug3397
%%OCCROOT%%/tests/bugs/step/bug348_1
%%OCCROOT%%/tests/bugs/step/bug348_2
@@ -9010,10 +9794,12 @@
%%OCCROOT%%/tests/bugs/stlvrml/bug26338
%%OCCROOT%%/tests/bugs/stlvrml/bug27622
%%OCCROOT%%/tests/bugs/stlvrml/bug28680
+%%OCCROOT%%/tests/bugs/stlvrml/bug30066
%%OCCROOT%%/tests/bugs/stlvrml/bug30113
%%OCCROOT%%/tests/bugs/stlvrml/bug30389
%%OCCROOT%%/tests/bugs/stlvrml/bug30421
%%OCCROOT%%/tests/bugs/stlvrml/bug31080
+%%OCCROOT%%/tests/bugs/stlvrml/bug33426
%%OCCROOT%%/tests/bugs/xde/begin
%%OCCROOT%%/tests/bugs/xde/bug1055
%%OCCROOT%%/tests/bugs/xde/bug125_1
@@ -9127,6 +9913,7 @@
%%OCCROOT%%/tests/bugs/xde/bug30411
%%OCCROOT%%/tests/bugs/xde/bug30727
%%OCCROOT%%/tests/bugs/xde/bug30779
+%%OCCROOT%%/tests/bugs/xde/bug30828
%%OCCROOT%%/tests/bugs/xde/bug31382
%%OCCROOT%%/tests/bugs/xde/bug314
%%OCCROOT%%/tests/bugs/xde/bug31466
@@ -9136,6 +9923,9 @@
%%OCCROOT%%/tests/bugs/xde/bug32784
%%OCCROOT%%/tests/bugs/xde/bug33011
%%OCCROOT%%/tests/bugs/xde/bug33100
+%%OCCROOT%%/tests/bugs/xde/bug33183_1
+%%OCCROOT%%/tests/bugs/xde/bug33183_2
+%%OCCROOT%%/tests/bugs/xde/bug33183_3
%%OCCROOT%%/tests/bugs/xde/bug34
%%OCCROOT%%/tests/bugs/xde/bug3926
%%OCCROOT%%/tests/bugs/xde/bug394
@@ -9189,7 +9979,6 @@
%%OCCROOT%%/tests/caf/basic/B6
%%OCCROOT%%/tests/caf/basic/B7
%%OCCROOT%%/tests/caf/basic/B8
-%%OCCROOT%%/tests/caf/basic/begin
%%OCCROOT%%/tests/caf/basic/C1
%%OCCROOT%%/tests/caf/basic/C2
%%OCCROOT%%/tests/caf/basic/C3
@@ -9287,6 +10076,7 @@
%%OCCROOT%%/tests/caf/basic/W9
%%OCCROOT%%/tests/caf/basic/Y1
%%OCCROOT%%/tests/caf/basic/Y2
+%%OCCROOT%%/tests/caf/basic/begin
%%OCCROOT%%/tests/caf/begin
%%OCCROOT%%/tests/caf/bugs/A1
%%OCCROOT%%/tests/caf/bugs/A2
@@ -9306,12 +10096,12 @@
%%OCCROOT%%/tests/caf/bugs/B7
%%OCCROOT%%/tests/caf/bugs/B8
%%OCCROOT%%/tests/caf/bugs/B9
-%%OCCROOT%%/tests/caf/bugs/begin
%%OCCROOT%%/tests/caf/bugs/C1
%%OCCROOT%%/tests/caf/bugs/C2
%%OCCROOT%%/tests/caf/bugs/D1
%%OCCROOT%%/tests/caf/bugs/D2
%%OCCROOT%%/tests/caf/bugs/E1
+%%OCCROOT%%/tests/caf/bugs/begin
%%OCCROOT%%/tests/caf/driver/A1
%%OCCROOT%%/tests/caf/driver/A2
%%OCCROOT%%/tests/caf/driver/A3
@@ -9339,7 +10129,6 @@
%%OCCROOT%%/tests/caf/nam/end
%%OCCROOT%%/tests/caf/named_shape/A1
%%OCCROOT%%/tests/caf/named_shape/B1
-%%OCCROOT%%/tests/caf/named_shape/begin
%%OCCROOT%%/tests/caf/named_shape/C1
%%OCCROOT%%/tests/caf/named_shape/D1
%%OCCROOT%%/tests/caf/named_shape/D2
@@ -9363,6 +10152,7 @@
%%OCCROOT%%/tests/caf/named_shape/F7
%%OCCROOT%%/tests/caf/named_shape/F8
%%OCCROOT%%/tests/caf/named_shape/F9
+%%OCCROOT%%/tests/caf/named_shape/begin
%%OCCROOT%%/tests/caf/parse.rules
%%OCCROOT%%/tests/caf/presentation/A1
%%OCCROOT%%/tests/caf/presentation/A2
@@ -9372,14 +10162,12 @@
%%OCCROOT%%/tests/caf/presentation/B2
%%OCCROOT%%/tests/caf/presentation/B3
%%OCCROOT%%/tests/caf/presentation/B4
-%%OCCROOT%%/tests/caf/presentation/begin
%%OCCROOT%%/tests/caf/presentation/C1
%%OCCROOT%%/tests/caf/presentation/D1
%%OCCROOT%%/tests/caf/presentation/D2
%%OCCROOT%%/tests/caf/presentation/D3
%%OCCROOT%%/tests/caf/presentation/D4
%%OCCROOT%%/tests/caf/presentation/E1
-%%OCCROOT%%/tests/caf/presentation/end
%%OCCROOT%%/tests/caf/presentation/F1
%%OCCROOT%%/tests/caf/presentation/F2
%%OCCROOT%%/tests/caf/presentation/F3
@@ -9397,13 +10185,15 @@
%%OCCROOT%%/tests/caf/presentation/L2
%%OCCROOT%%/tests/caf/presentation/M1
%%OCCROOT%%/tests/caf/presentation/N1
+%%OCCROOT%%/tests/caf/presentation/begin
+%%OCCROOT%%/tests/caf/presentation/end
%%OCCROOT%%/tests/caf/progress/A1
%%OCCROOT%%/tests/caf/progress/A2
%%OCCROOT%%/tests/caf/progress/B1
%%OCCROOT%%/tests/caf/progress/B2
-%%OCCROOT%%/tests/caf/progress/begin
%%OCCROOT%%/tests/caf/progress/C1
%%OCCROOT%%/tests/caf/progress/C2
+%%OCCROOT%%/tests/caf/progress/begin
%%OCCROOT%%/tests/caf/tree/A1
%%OCCROOT%%/tests/caf/tree/A2
%%OCCROOT%%/tests/caf/tree/A3
@@ -9441,10 +10231,10 @@
%%OCCROOT%%/tests/caf/xlink/B3
%%OCCROOT%%/tests/caf/xlink/B4
%%OCCROOT%%/tests/caf/xlink/B5
-%%OCCROOT%%/tests/caf/xlink/begin
%%OCCROOT%%/tests/caf/xlink/C1
%%OCCROOT%%/tests/caf/xlink/D1
%%OCCROOT%%/tests/caf/xlink/D2
+%%OCCROOT%%/tests/caf/xlink/begin
%%OCCROOT%%/tests/chamfer/begin
%%OCCROOT%%/tests/chamfer/data/complex/A1
%%OCCROOT%%/tests/chamfer/data/complex/A2
@@ -9517,25 +10307,25 @@
%%OCCROOT%%/tests/chamfer/data/simple/F2
%%OCCROOT%%/tests/chamfer/data/simple/F3
%%OCCROOT%%/tests/chamfer/data/simple/F4
+%%OCCROOT%%/tests/chamfer/dist_angle/begin
+%%OCCROOT%%/tests/chamfer/dist_angle/cases.list
%%OCCROOT%%/tests/chamfer/dist_angle_complex/begin
%%OCCROOT%%/tests/chamfer/dist_angle_complex/cases.list
%%OCCROOT%%/tests/chamfer/dist_angle_sequence/begin
%%OCCROOT%%/tests/chamfer/dist_angle_sequence/cases.list
-%%OCCROOT%%/tests/chamfer/dist_angle/begin
-%%OCCROOT%%/tests/chamfer/dist_angle/cases.list
+%%OCCROOT%%/tests/chamfer/dist_dist/begin
+%%OCCROOT%%/tests/chamfer/dist_dist/cases.list
%%OCCROOT%%/tests/chamfer/dist_dist_complex/begin
%%OCCROOT%%/tests/chamfer/dist_dist_complex/cases.list
%%OCCROOT%%/tests/chamfer/dist_dist_sequence/begin
%%OCCROOT%%/tests/chamfer/dist_dist_sequence/cases.list
-%%OCCROOT%%/tests/chamfer/dist_dist/begin
-%%OCCROOT%%/tests/chamfer/dist_dist/cases.list
%%OCCROOT%%/tests/chamfer/end
+%%OCCROOT%%/tests/chamfer/equal_dist/begin
+%%OCCROOT%%/tests/chamfer/equal_dist/cases.list
%%OCCROOT%%/tests/chamfer/equal_dist_complex/begin
%%OCCROOT%%/tests/chamfer/equal_dist_complex/cases.list
%%OCCROOT%%/tests/chamfer/equal_dist_sequence/begin
%%OCCROOT%%/tests/chamfer/equal_dist_sequence/cases.list
-%%OCCROOT%%/tests/chamfer/equal_dist/begin
-%%OCCROOT%%/tests/chamfer/equal_dist/cases.list
%%OCCROOT%%/tests/chamfer/grids.list
%%OCCROOT%%/tests/chamfer/parse.rules
%%OCCROOT%%/tests/collections/grids.list
@@ -9575,209 +10365,9 @@
%%OCCROOT%%/tests/cr/base/B8
%%OCCROOT%%/tests/cr/base/B9
%%OCCROOT%%/tests/cr/begin
+%%OCCROOT%%/tests/cr/bugs/bug33170
%%OCCROOT%%/tests/cr/end
%%OCCROOT%%/tests/cr/grids.list
-%%OCCROOT%%/tests/de_mesh/begin
-%%OCCROOT%%/tests/de_mesh/end
-%%OCCROOT%%/tests/de_mesh/gltf_lateload/begin
-%%OCCROOT%%/tests/de_mesh/gltf_lateload/boxwithoutindices
-%%OCCROOT%%/tests/de_mesh/gltf_lateload/engine
-%%OCCROOT%%/tests/de_mesh/gltf_lateload/helmet
-%%OCCROOT%%/tests/de_mesh/gltf_read/begin
-%%OCCROOT%%/tests/de_mesh/gltf_read/boxinterleaved
-%%OCCROOT%%/tests/de_mesh/gltf_read/brainstem
-%%OCCROOT%%/tests/de_mesh/gltf_read/buggy
-%%OCCROOT%%/tests/de_mesh/gltf_read/cubeemb
-%%OCCROOT%%/tests/de_mesh/gltf_read/end
-%%OCCROOT%%/tests/de_mesh/gltf_read/engine
-%%OCCROOT%%/tests/de_mesh/gltf_read/helmet
-%%OCCROOT%%/tests/de_mesh/gltf_read/lantern
-%%OCCROOT%%/tests/de_mesh/gltf_read/launchvehicle
-%%OCCROOT%%/tests/de_mesh/gltf_read/orient
-%%OCCROOT%%/tests/de_mesh/gltf_write/010
-%%OCCROOT%%/tests/de_mesh/gltf_write/as1
-%%OCCROOT%%/tests/de_mesh/gltf_write/as1draco
-%%OCCROOT%%/tests/de_mesh/gltf_write/ball
-%%OCCROOT%%/tests/de_mesh/gltf_write/bearing
-%%OCCROOT%%/tests/de_mesh/gltf_write/begin
-%%OCCROOT%%/tests/de_mesh/gltf_write/bull
-%%OCCROOT%%/tests/de_mesh/gltf_write/bull_parallel
-%%OCCROOT%%/tests/de_mesh/gltf_write/compound
-%%OCCROOT%%/tests/de_mesh/gltf_write/Diamond
-%%OCCROOT%%/tests/de_mesh/gltf_write/empty
-%%OCCROOT%%/tests/de_mesh/gltf_write/end
-%%OCCROOT%%/tests/de_mesh/gltf_write/helmet
-%%OCCROOT%%/tests/de_mesh/gltf_write/helmetglb
-%%OCCROOT%%/tests/de_mesh/gltf_write/lantern
-%%OCCROOT%%/tests/de_mesh/gltf_write/lanternglb
-%%OCCROOT%%/tests/de_mesh/gltf_write/screw
-%%OCCROOT%%/tests/de_mesh/gltf_write/soapbox
-%%OCCROOT%%/tests/de_mesh/gltf_write/spheres
-%%OCCROOT%%/tests/de_mesh/gltf_write/test
-%%OCCROOT%%/tests/de_mesh/grids.list
-%%OCCROOT%%/tests/de_mesh/obj_read/begin
-%%OCCROOT%%/tests/de_mesh/obj_read/end
-%%OCCROOT%%/tests/de_mesh/obj_read/multiline
-%%OCCROOT%%/tests/de_mesh/obj_read/mustang
-%%OCCROOT%%/tests/de_mesh/obj_read/prism
-%%OCCROOT%%/tests/de_mesh/obj_read/ship_boat
-%%OCCROOT%%/tests/de_mesh/obj_read/smooth
-%%OCCROOT%%/tests/de_mesh/obj_read/usemtl
-%%OCCROOT%%/tests/de_mesh/obj_write/as1
-%%OCCROOT%%/tests/de_mesh/obj_write/ball
-%%OCCROOT%%/tests/de_mesh/obj_write/lantern
-%%OCCROOT%%/tests/de_mesh/obj_write/mustang
-%%OCCROOT%%/tests/de_mesh/obj_write/ship_boat
-%%OCCROOT%%/tests/de_mesh/parse.rules
-%%OCCROOT%%/tests/de_mesh/ply_write/equerre
-%%OCCROOT%%/tests/de_mesh/ply_write/sangle
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A1
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A10
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A11
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A12
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A2
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A3
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A4
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A5
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A6
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A7
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A8
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/A9
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/B1
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/begin
-%%OCCROOT%%/tests/de_mesh/shape_write_stl/end
-%%OCCROOT%%/tests/de_mesh/step_read/A1
-%%OCCROOT%%/tests/de_mesh/step_read/A2
-%%OCCROOT%%/tests/de_mesh/step_read/A3
-%%OCCROOT%%/tests/de_mesh/step_read/B1
-%%OCCROOT%%/tests/de_mesh/step_read/begin
-%%OCCROOT%%/tests/de_mesh/step_read/end
-%%OCCROOT%%/tests/de_mesh/step_write/A1
-%%OCCROOT%%/tests/de_mesh/step_write/A2
-%%OCCROOT%%/tests/de_mesh/step_write/A3
-%%OCCROOT%%/tests/de_mesh/step_write/A4
-%%OCCROOT%%/tests/de_mesh/step_write/B1
-%%OCCROOT%%/tests/de_mesh/step_write/B2
-%%OCCROOT%%/tests/de_mesh/step_write/begin
-%%OCCROOT%%/tests/de_mesh/step_write/C1
-%%OCCROOT%%/tests/de_mesh/step_write/C2
-%%OCCROOT%%/tests/de_mesh/step_write/end
-%%OCCROOT%%/tests/de_mesh/stl_read/A1
-%%OCCROOT%%/tests/de_mesh/stl_read/A10
-%%OCCROOT%%/tests/de_mesh/stl_read/A11
-%%OCCROOT%%/tests/de_mesh/stl_read/A12
-%%OCCROOT%%/tests/de_mesh/stl_read/A13
-%%OCCROOT%%/tests/de_mesh/stl_read/A14
-%%OCCROOT%%/tests/de_mesh/stl_read/A15
-%%OCCROOT%%/tests/de_mesh/stl_read/A2
-%%OCCROOT%%/tests/de_mesh/stl_read/A3
-%%OCCROOT%%/tests/de_mesh/stl_read/A4
-%%OCCROOT%%/tests/de_mesh/stl_read/A5
-%%OCCROOT%%/tests/de_mesh/stl_read/A6
-%%OCCROOT%%/tests/de_mesh/stl_read/A7
-%%OCCROOT%%/tests/de_mesh/stl_read/A8
-%%OCCROOT%%/tests/de_mesh/stl_read/A9
-%%OCCROOT%%/tests/de_mesh/stl_read/B1
-%%OCCROOT%%/tests/de_mesh/stl_read/B10
-%%OCCROOT%%/tests/de_mesh/stl_read/B11
-%%OCCROOT%%/tests/de_mesh/stl_read/B12
-%%OCCROOT%%/tests/de_mesh/stl_read/B13
-%%OCCROOT%%/tests/de_mesh/stl_read/B14
-%%OCCROOT%%/tests/de_mesh/stl_read/B15
-%%OCCROOT%%/tests/de_mesh/stl_read/B2
-%%OCCROOT%%/tests/de_mesh/stl_read/B3
-%%OCCROOT%%/tests/de_mesh/stl_read/B4
-%%OCCROOT%%/tests/de_mesh/stl_read/B5
-%%OCCROOT%%/tests/de_mesh/stl_read/B6
-%%OCCROOT%%/tests/de_mesh/stl_read/B7
-%%OCCROOT%%/tests/de_mesh/stl_read/B8
-%%OCCROOT%%/tests/de_mesh/stl_read/B9
-%%OCCROOT%%/tests/de_mesh/stl_read/begin
-%%OCCROOT%%/tests/de_mesh/stl_read/C1
-%%OCCROOT%%/tests/de_mesh/stl_read/C10
-%%OCCROOT%%/tests/de_mesh/stl_read/C11
-%%OCCROOT%%/tests/de_mesh/stl_read/C12
-%%OCCROOT%%/tests/de_mesh/stl_read/C13
-%%OCCROOT%%/tests/de_mesh/stl_read/C14
-%%OCCROOT%%/tests/de_mesh/stl_read/C15
-%%OCCROOT%%/tests/de_mesh/stl_read/C2
-%%OCCROOT%%/tests/de_mesh/stl_read/C3
-%%OCCROOT%%/tests/de_mesh/stl_read/C4
-%%OCCROOT%%/tests/de_mesh/stl_read/C5
-%%OCCROOT%%/tests/de_mesh/stl_read/C6
-%%OCCROOT%%/tests/de_mesh/stl_read/C7
-%%OCCROOT%%/tests/de_mesh/stl_read/C8
-%%OCCROOT%%/tests/de_mesh/stl_read/C9
-%%OCCROOT%%/tests/de_mesh/stl_read/D1
-%%OCCROOT%%/tests/de_mesh/stl_read/D2
-%%OCCROOT%%/tests/de_mesh/stl_read/D3
-%%OCCROOT%%/tests/de_mesh/vrml_read/A1
-%%OCCROOT%%/tests/de_mesh/vrml_read/A2
-%%OCCROOT%%/tests/de_mesh/vrml_read/A3
-%%OCCROOT%%/tests/de_mesh/vrml_read/A4
-%%OCCROOT%%/tests/de_mesh/vrml_read/begin
-%%OCCROOT%%/tests/de_wrapper/begin
-%%OCCROOT%%/tests/de_wrapper/brep/A1
-%%OCCROOT%%/tests/de_wrapper/brep/A2
-%%OCCROOT%%/tests/de_wrapper/brep/A3
-%%OCCROOT%%/tests/de_wrapper/brep/A4
-%%OCCROOT%%/tests/de_wrapper/brep/begin
-%%OCCROOT%%/tests/de_wrapper/configuration/A1
-%%OCCROOT%%/tests/de_wrapper/configuration/A2
-%%OCCROOT%%/tests/de_wrapper/configuration/A3
-%%OCCROOT%%/tests/de_wrapper/configuration/A4
-%%OCCROOT%%/tests/de_wrapper/configuration/begin
-%%OCCROOT%%/tests/de_wrapper/end
-%%OCCROOT%%/tests/de_wrapper/gltf/A1
-%%OCCROOT%%/tests/de_wrapper/gltf/A2
-%%OCCROOT%%/tests/de_wrapper/gltf/A3
-%%OCCROOT%%/tests/de_wrapper/gltf/A4
-%%OCCROOT%%/tests/de_wrapper/gltf/A5
-%%OCCROOT%%/tests/de_wrapper/gltf/A6
-%%OCCROOT%%/tests/de_wrapper/gltf/begin
-%%OCCROOT%%/tests/de_wrapper/grids.list
-%%OCCROOT%%/tests/de_wrapper/iges/A1
-%%OCCROOT%%/tests/de_wrapper/iges/A2
-%%OCCROOT%%/tests/de_wrapper/iges/A3
-%%OCCROOT%%/tests/de_wrapper/iges/A4
-%%OCCROOT%%/tests/de_wrapper/iges/A5
-%%OCCROOT%%/tests/de_wrapper/iges/A6
-%%OCCROOT%%/tests/de_wrapper/iges/begin
-%%OCCROOT%%/tests/de_wrapper/obj/A1
-%%OCCROOT%%/tests/de_wrapper/obj/A2
-%%OCCROOT%%/tests/de_wrapper/obj/A3
-%%OCCROOT%%/tests/de_wrapper/obj/A4
-%%OCCROOT%%/tests/de_wrapper/obj/A5
-%%OCCROOT%%/tests/de_wrapper/obj/A6
-%%OCCROOT%%/tests/de_wrapper/obj/begin
-%%OCCROOT%%/tests/de_wrapper/parse.rules
-%%OCCROOT%%/tests/de_wrapper/ply/A1
-%%OCCROOT%%/tests/de_wrapper/ply/A2
-%%OCCROOT%%/tests/de_wrapper/ply/begin
-%%OCCROOT%%/tests/de_wrapper/step/A1
-%%OCCROOT%%/tests/de_wrapper/step/A2
-%%OCCROOT%%/tests/de_wrapper/step/A3
-%%OCCROOT%%/tests/de_wrapper/step/A4
-%%OCCROOT%%/tests/de_wrapper/step/A5
-%%OCCROOT%%/tests/de_wrapper/step/A6
-%%OCCROOT%%/tests/de_wrapper/step/begin
-%%OCCROOT%%/tests/de_wrapper/stl/A1
-%%OCCROOT%%/tests/de_wrapper/stl/A2
-%%OCCROOT%%/tests/de_wrapper/stl/A3
-%%OCCROOT%%/tests/de_wrapper/stl/A4
-%%OCCROOT%%/tests/de_wrapper/stl/begin
-%%OCCROOT%%/tests/de_wrapper/vrml/A1
-%%OCCROOT%%/tests/de_wrapper/vrml/A2
-%%OCCROOT%%/tests/de_wrapper/vrml/A3
-%%OCCROOT%%/tests/de_wrapper/vrml/A4
-%%OCCROOT%%/tests/de_wrapper/vrml/A5
-%%OCCROOT%%/tests/de_wrapper/vrml/A6
-%%OCCROOT%%/tests/de_wrapper/vrml/begin
-%%OCCROOT%%/tests/de_wrapper/xcaf/A1
-%%OCCROOT%%/tests/de_wrapper/xcaf/A2
-%%OCCROOT%%/tests/de_wrapper/xcaf/A3
-%%OCCROOT%%/tests/de_wrapper/xcaf/A4
-%%OCCROOT%%/tests/de_wrapper/xcaf/begin
%%OCCROOT%%/tests/de/begin
%%OCCROOT%%/tests/de/end
%%OCCROOT%%/tests/de/grids.list
@@ -10865,6 +11455,201 @@
%%OCCROOT%%/tests/de/step_5/B5
%%OCCROOT%%/tests/de/step_5/B6
%%OCCROOT%%/tests/de/step_5/B7
+%%OCCROOT%%/tests/de_mesh/begin
+%%OCCROOT%%/tests/de_mesh/end
+%%OCCROOT%%/tests/de_mesh/gltf_lateload/begin
+%%OCCROOT%%/tests/de_mesh/gltf_lateload/boxwithoutindices
+%%OCCROOT%%/tests/de_mesh/gltf_lateload/engine
+%%OCCROOT%%/tests/de_mesh/gltf_lateload/helmet
+%%OCCROOT%%/tests/de_mesh/gltf_read/begin
+%%OCCROOT%%/tests/de_mesh/gltf_read/boxinterleaved
+%%OCCROOT%%/tests/de_mesh/gltf_read/brainstem
+%%OCCROOT%%/tests/de_mesh/gltf_read/buggy
+%%OCCROOT%%/tests/de_mesh/gltf_read/cubeemb
+%%OCCROOT%%/tests/de_mesh/gltf_read/end
+%%OCCROOT%%/tests/de_mesh/gltf_read/engine
+%%OCCROOT%%/tests/de_mesh/gltf_read/helmet
+%%OCCROOT%%/tests/de_mesh/gltf_read/lantern
+%%OCCROOT%%/tests/de_mesh/gltf_read/launchvehicle
+%%OCCROOT%%/tests/de_mesh/gltf_read/orient
+%%OCCROOT%%/tests/de_mesh/gltf_write/as1
+%%OCCROOT%%/tests/de_mesh/gltf_write/ball
+%%OCCROOT%%/tests/de_mesh/gltf_write/begin
+%%OCCROOT%%/tests/de_mesh/gltf_write/compound
+%%OCCROOT%%/tests/de_mesh/gltf_write/empty
+%%OCCROOT%%/tests/de_mesh/gltf_write/end
+%%OCCROOT%%/tests/de_mesh/gltf_write/helmet
+%%OCCROOT%%/tests/de_mesh/gltf_write/helmetglb
+%%OCCROOT%%/tests/de_mesh/gltf_write/lantern
+%%OCCROOT%%/tests/de_mesh/gltf_write/lanternglb
+%%OCCROOT%%/tests/de_mesh/gltf_write/spheres
+%%OCCROOT%%/tests/de_mesh/grids.list
+%%OCCROOT%%/tests/de_mesh/obj_read/begin
+%%OCCROOT%%/tests/de_mesh/obj_read/end
+%%OCCROOT%%/tests/de_mesh/obj_read/multiline
+%%OCCROOT%%/tests/de_mesh/obj_read/mustang
+%%OCCROOT%%/tests/de_mesh/obj_read/prism
+%%OCCROOT%%/tests/de_mesh/obj_read/ship_boat
+%%OCCROOT%%/tests/de_mesh/obj_read/smooth
+%%OCCROOT%%/tests/de_mesh/obj_read/usemtl
+%%OCCROOT%%/tests/de_mesh/obj_write/as1
+%%OCCROOT%%/tests/de_mesh/obj_write/ball
+%%OCCROOT%%/tests/de_mesh/obj_write/lantern
+%%OCCROOT%%/tests/de_mesh/obj_write/mustang
+%%OCCROOT%%/tests/de_mesh/obj_write/ship_boat
+%%OCCROOT%%/tests/de_mesh/parse.rules
+%%OCCROOT%%/tests/de_mesh/ply_write/equerre
+%%OCCROOT%%/tests/de_mesh/ply_write/sangle
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A1
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A10
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A11
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A12
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A2
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A3
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A4
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A5
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A6
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A7
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A8
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/A9
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/B1
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/begin
+%%OCCROOT%%/tests/de_mesh/shape_write_stl/end
+%%OCCROOT%%/tests/de_mesh/step_read/A1
+%%OCCROOT%%/tests/de_mesh/step_read/A2
+%%OCCROOT%%/tests/de_mesh/step_read/A3
+%%OCCROOT%%/tests/de_mesh/step_read/B1
+%%OCCROOT%%/tests/de_mesh/step_read/begin
+%%OCCROOT%%/tests/de_mesh/step_read/end
+%%OCCROOT%%/tests/de_mesh/step_write/A1
+%%OCCROOT%%/tests/de_mesh/step_write/A2
+%%OCCROOT%%/tests/de_mesh/step_write/A3
+%%OCCROOT%%/tests/de_mesh/step_write/A4
+%%OCCROOT%%/tests/de_mesh/step_write/B1
+%%OCCROOT%%/tests/de_mesh/step_write/B2
+%%OCCROOT%%/tests/de_mesh/step_write/C1
+%%OCCROOT%%/tests/de_mesh/step_write/C2
+%%OCCROOT%%/tests/de_mesh/step_write/D1
+%%OCCROOT%%/tests/de_mesh/step_write/D2
+%%OCCROOT%%/tests/de_mesh/step_write/begin
+%%OCCROOT%%/tests/de_mesh/step_write/end
+%%OCCROOT%%/tests/de_mesh/stl_read/A1
+%%OCCROOT%%/tests/de_mesh/stl_read/A10
+%%OCCROOT%%/tests/de_mesh/stl_read/A11
+%%OCCROOT%%/tests/de_mesh/stl_read/A12
+%%OCCROOT%%/tests/de_mesh/stl_read/A13
+%%OCCROOT%%/tests/de_mesh/stl_read/A14
+%%OCCROOT%%/tests/de_mesh/stl_read/A15
+%%OCCROOT%%/tests/de_mesh/stl_read/A2
+%%OCCROOT%%/tests/de_mesh/stl_read/A3
+%%OCCROOT%%/tests/de_mesh/stl_read/A4
+%%OCCROOT%%/tests/de_mesh/stl_read/A5
+%%OCCROOT%%/tests/de_mesh/stl_read/A6
+%%OCCROOT%%/tests/de_mesh/stl_read/A7
+%%OCCROOT%%/tests/de_mesh/stl_read/A8
+%%OCCROOT%%/tests/de_mesh/stl_read/A9
+%%OCCROOT%%/tests/de_mesh/stl_read/B1
+%%OCCROOT%%/tests/de_mesh/stl_read/B10
+%%OCCROOT%%/tests/de_mesh/stl_read/B11
+%%OCCROOT%%/tests/de_mesh/stl_read/B12
+%%OCCROOT%%/tests/de_mesh/stl_read/B13
+%%OCCROOT%%/tests/de_mesh/stl_read/B14
+%%OCCROOT%%/tests/de_mesh/stl_read/B15
+%%OCCROOT%%/tests/de_mesh/stl_read/B2
+%%OCCROOT%%/tests/de_mesh/stl_read/B3
+%%OCCROOT%%/tests/de_mesh/stl_read/B4
+%%OCCROOT%%/tests/de_mesh/stl_read/B5
+%%OCCROOT%%/tests/de_mesh/stl_read/B6
+%%OCCROOT%%/tests/de_mesh/stl_read/B7
+%%OCCROOT%%/tests/de_mesh/stl_read/B8
+%%OCCROOT%%/tests/de_mesh/stl_read/B9
+%%OCCROOT%%/tests/de_mesh/stl_read/C1
+%%OCCROOT%%/tests/de_mesh/stl_read/C10
+%%OCCROOT%%/tests/de_mesh/stl_read/C11
+%%OCCROOT%%/tests/de_mesh/stl_read/C12
+%%OCCROOT%%/tests/de_mesh/stl_read/C13
+%%OCCROOT%%/tests/de_mesh/stl_read/C14
+%%OCCROOT%%/tests/de_mesh/stl_read/C15
+%%OCCROOT%%/tests/de_mesh/stl_read/C2
+%%OCCROOT%%/tests/de_mesh/stl_read/C3
+%%OCCROOT%%/tests/de_mesh/stl_read/C4
+%%OCCROOT%%/tests/de_mesh/stl_read/C5
+%%OCCROOT%%/tests/de_mesh/stl_read/C6
+%%OCCROOT%%/tests/de_mesh/stl_read/C7
+%%OCCROOT%%/tests/de_mesh/stl_read/C8
+%%OCCROOT%%/tests/de_mesh/stl_read/C9
+%%OCCROOT%%/tests/de_mesh/stl_read/D1
+%%OCCROOT%%/tests/de_mesh/stl_read/D2
+%%OCCROOT%%/tests/de_mesh/stl_read/D3
+%%OCCROOT%%/tests/de_mesh/stl_read/begin
+%%OCCROOT%%/tests/de_mesh/vrml_read/A1
+%%OCCROOT%%/tests/de_mesh/vrml_read/A2
+%%OCCROOT%%/tests/de_mesh/vrml_read/A3
+%%OCCROOT%%/tests/de_mesh/vrml_read/A4
+%%OCCROOT%%/tests/de_mesh/vrml_read/A5
+%%OCCROOT%%/tests/de_mesh/vrml_read/begin
+%%OCCROOT%%/tests/de_wrapper/begin
+%%OCCROOT%%/tests/de_wrapper/brep/A1
+%%OCCROOT%%/tests/de_wrapper/brep/A2
+%%OCCROOT%%/tests/de_wrapper/brep/A3
+%%OCCROOT%%/tests/de_wrapper/brep/A4
+%%OCCROOT%%/tests/de_wrapper/brep/begin
+%%OCCROOT%%/tests/de_wrapper/configuration/A1
+%%OCCROOT%%/tests/de_wrapper/configuration/A2
+%%OCCROOT%%/tests/de_wrapper/configuration/A3
+%%OCCROOT%%/tests/de_wrapper/configuration/A4
+%%OCCROOT%%/tests/de_wrapper/configuration/begin
+%%OCCROOT%%/tests/de_wrapper/end
+%%OCCROOT%%/tests/de_wrapper/gltf/A1
+%%OCCROOT%%/tests/de_wrapper/gltf/A2
+%%OCCROOT%%/tests/de_wrapper/gltf/A3
+%%OCCROOT%%/tests/de_wrapper/gltf/A4
+%%OCCROOT%%/tests/de_wrapper/gltf/A5
+%%OCCROOT%%/tests/de_wrapper/gltf/A6
+%%OCCROOT%%/tests/de_wrapper/gltf/begin
+%%OCCROOT%%/tests/de_wrapper/grids.list
+%%OCCROOT%%/tests/de_wrapper/iges/A1
+%%OCCROOT%%/tests/de_wrapper/iges/A2
+%%OCCROOT%%/tests/de_wrapper/iges/A3
+%%OCCROOT%%/tests/de_wrapper/iges/A4
+%%OCCROOT%%/tests/de_wrapper/iges/A5
+%%OCCROOT%%/tests/de_wrapper/iges/A6
+%%OCCROOT%%/tests/de_wrapper/iges/begin
+%%OCCROOT%%/tests/de_wrapper/obj/A1
+%%OCCROOT%%/tests/de_wrapper/obj/A2
+%%OCCROOT%%/tests/de_wrapper/obj/A3
+%%OCCROOT%%/tests/de_wrapper/obj/A4
+%%OCCROOT%%/tests/de_wrapper/obj/A5
+%%OCCROOT%%/tests/de_wrapper/obj/A6
+%%OCCROOT%%/tests/de_wrapper/obj/begin
+%%OCCROOT%%/tests/de_wrapper/parse.rules
+%%OCCROOT%%/tests/de_wrapper/ply/A1
+%%OCCROOT%%/tests/de_wrapper/ply/A2
+%%OCCROOT%%/tests/de_wrapper/ply/begin
+%%OCCROOT%%/tests/de_wrapper/step/A1
+%%OCCROOT%%/tests/de_wrapper/step/A2
+%%OCCROOT%%/tests/de_wrapper/step/A3
+%%OCCROOT%%/tests/de_wrapper/step/A4
+%%OCCROOT%%/tests/de_wrapper/step/A5
+%%OCCROOT%%/tests/de_wrapper/step/A6
+%%OCCROOT%%/tests/de_wrapper/step/begin
+%%OCCROOT%%/tests/de_wrapper/stl/A1
+%%OCCROOT%%/tests/de_wrapper/stl/A2
+%%OCCROOT%%/tests/de_wrapper/stl/A3
+%%OCCROOT%%/tests/de_wrapper/stl/A4
+%%OCCROOT%%/tests/de_wrapper/stl/begin
+%%OCCROOT%%/tests/de_wrapper/vrml/A1
+%%OCCROOT%%/tests/de_wrapper/vrml/A2
+%%OCCROOT%%/tests/de_wrapper/vrml/A3
+%%OCCROOT%%/tests/de_wrapper/vrml/A4
+%%OCCROOT%%/tests/de_wrapper/vrml/A5
+%%OCCROOT%%/tests/de_wrapper/vrml/A6
+%%OCCROOT%%/tests/de_wrapper/vrml/begin
+%%OCCROOT%%/tests/de_wrapper/xcaf/A1
+%%OCCROOT%%/tests/de_wrapper/xcaf/A2
+%%OCCROOT%%/tests/de_wrapper/xcaf/A3
+%%OCCROOT%%/tests/de_wrapper/xcaf/A4
+%%OCCROOT%%/tests/de_wrapper/xcaf/begin
%%OCCROOT%%/tests/demo/data/file1.empty
%%OCCROOT%%/tests/demo/draw/binpersist_1
%%OCCROOT%%/tests/demo/draw/binpersist_2
@@ -11041,9 +11826,6 @@
%%OCCROOT%%/tests/evolved/voluved/AGT007
%%OCCROOT%%/tests/evolved/voluved/AGT008
%%OCCROOT%%/tests/evolved/voluved/AGT009
-%%OCCROOT%%/tests/evolved/voluved/begin
-%%OCCROOT%%/tests/evolved/voluved/bug26470_1
-%%OCCROOT%%/tests/evolved/voluved/bug26470_2
%%OCCROOT%%/tests/evolved/voluved/HMC001
%%OCCROOT%%/tests/evolved/voluved/HMC002
%%OCCROOT%%/tests/evolved/voluved/HMC003
@@ -11054,6 +11836,10 @@
%%OCCROOT%%/tests/evolved/voluved/HMC008
%%OCCROOT%%/tests/evolved/voluved/HMC009
%%OCCROOT%%/tests/evolved/voluved/HMC010
+%%OCCROOT%%/tests/evolved/voluved/begin
+%%OCCROOT%%/tests/evolved/voluved/bug26470_1
+%%OCCROOT%%/tests/evolved/voluved/bug26470_2
+%%OCCROOT%%/tests/evolved/voluved/bug30781
%%OCCROOT%%/tests/evolved/voluved/pro19424
%%OCCROOT%%/tests/feat/begin
%%OCCROOT%%/tests/feat/end
@@ -11408,10 +12194,10 @@
%%OCCROOT%%/tests/gdt/export/B7
%%OCCROOT%%/tests/gdt/export/B8
%%OCCROOT%%/tests/gdt/export/B9
-%%OCCROOT%%/tests/gdt/export/begin
%%OCCROOT%%/tests/gdt/export/C1
%%OCCROOT%%/tests/gdt/export/C2
%%OCCROOT%%/tests/gdt/export/C3
+%%OCCROOT%%/tests/gdt/export/begin
%%OCCROOT%%/tests/gdt/export/end
%%OCCROOT%%/tests/gdt/grids.list
%%OCCROOT%%/tests/gdt/import/A1
@@ -11433,7 +12219,6 @@
%%OCCROOT%%/tests/gdt/notes/B5
%%OCCROOT%%/tests/gdt/notes/B6
%%OCCROOT%%/tests/gdt/notes/B7
-%%OCCROOT%%/tests/gdt/notes/begin
%%OCCROOT%%/tests/gdt/notes/C1
%%OCCROOT%%/tests/gdt/notes/C2
%%OCCROOT%%/tests/gdt/notes/C3
@@ -11444,6 +12229,7 @@
%%OCCROOT%%/tests/gdt/notes/C8
%%OCCROOT%%/tests/gdt/notes/C9
%%OCCROOT%%/tests/gdt/notes/D1
+%%OCCROOT%%/tests/gdt/notes/begin
%%OCCROOT%%/tests/gdt/notes/end
%%OCCROOT%%/tests/gdt/presentation/A1
%%OCCROOT%%/tests/gdt/presentation/A2
@@ -11463,8 +12249,9 @@
%%OCCROOT%%/tests/gdt/presentation/B7
%%OCCROOT%%/tests/gdt/presentation/B8
%%OCCROOT%%/tests/gdt/presentation/B9
-%%OCCROOT%%/tests/gdt/presentation/begin
%%OCCROOT%%/tests/gdt/presentation/C1
+%%OCCROOT%%/tests/gdt/presentation/C2
+%%OCCROOT%%/tests/gdt/presentation/begin
%%OCCROOT%%/tests/gdt/presentation/end
%%OCCROOT%%/tests/gdt/tolerances/A1
%%OCCROOT%%/tests/gdt/tolerances/A2
@@ -11744,7 +12531,6 @@
%%OCCROOT%%/tests/heal/checkshape/bug27814_8
%%OCCROOT%%/tests/heal/checkshape/bug27814_9
%%OCCROOT%%/tests/heal/checkshape/bug32448_1
-%%OCCROOT%%/tests/heal/checkshape/bug32448_10
%%OCCROOT%%/tests/heal/checkshape/bug32448_2
%%OCCROOT%%/tests/heal/checkshape/bug32448_3
%%OCCROOT%%/tests/heal/checkshape/bug32448_4
@@ -11753,6 +12539,7 @@
%%OCCROOT%%/tests/heal/checkshape/bug32448_7
%%OCCROOT%%/tests/heal/checkshape/bug32448_8
%%OCCROOT%%/tests/heal/checkshape/bug32448_9
+%%OCCROOT%%/tests/heal/data/MDTV
%%OCCROOT%%/tests/heal/data/advanced/A1
%%OCCROOT%%/tests/heal/data/advanced/A2
%%OCCROOT%%/tests/heal/data/advanced/A3
@@ -12043,7 +12830,6 @@
%%OCCROOT%%/tests/heal/data/advanced/ZF9
%%OCCROOT%%/tests/heal/data/advanced/ZG1
%%OCCROOT%%/tests/heal/data/data
-%%OCCROOT%%/tests/heal/data/MDTV
%%OCCROOT%%/tests/heal/data/standard/A1
%%OCCROOT%%/tests/heal/data/standard/A2
%%OCCROOT%%/tests/heal/data/standard/A3
@@ -12532,7 +13318,6 @@
%%OCCROOT%%/tests/heal/drop_small_edges/A4
%%OCCROOT%%/tests/heal/drop_small_edges/A5
%%OCCROOT%%/tests/heal/drop_small_edges/end
-%%OCCROOT%%/tests/heal/drop_small_solids/end
%%OCCROOT%%/tests/heal/drop_small_solids/M1
%%OCCROOT%%/tests/heal/drop_small_solids/M2
%%OCCROOT%%/tests/heal/drop_small_solids/M3
@@ -12544,6 +13329,7 @@
%%OCCROOT%%/tests/heal/drop_small_solids/R6
%%OCCROOT%%/tests/heal/drop_small_solids/R7
%%OCCROOT%%/tests/heal/drop_small_solids/R8
+%%OCCROOT%%/tests/heal/drop_small_solids/end
%%OCCROOT%%/tests/heal/elementary_to_revolution/A1
%%OCCROOT%%/tests/heal/elementary_to_revolution/A2
%%OCCROOT%%/tests/heal/elementary_to_revolution/A3
@@ -12569,9 +13355,9 @@
%%OCCROOT%%/tests/heal/fix_face_size/B7
%%OCCROOT%%/tests/heal/fix_face_size/B8
%%OCCROOT%%/tests/heal/fix_face_size/B9
-%%OCCROOT%%/tests/heal/fix_face_size/begin
%%OCCROOT%%/tests/heal/fix_face_size/C1
%%OCCROOT%%/tests/heal/fix_face_size/C2
+%%OCCROOT%%/tests/heal/fix_face_size/begin
%%OCCROOT%%/tests/heal/fix_face_size/end
%%OCCROOT%%/tests/heal/fix_gaps/A1
%%OCCROOT%%/tests/heal/fix_gaps/A2
@@ -12631,7 +13417,6 @@
%%OCCROOT%%/tests/heal/fix_shape/E7
%%OCCROOT%%/tests/heal/fix_shape/E8
%%OCCROOT%%/tests/heal/fix_shape/E9
-%%OCCROOT%%/tests/heal/fix_shape/end
%%OCCROOT%%/tests/heal/fix_shape/F1
%%OCCROOT%%/tests/heal/fix_shape/F2
%%OCCROOT%%/tests/heal/fix_shape/F3
@@ -12646,19 +13431,12 @@
%%OCCROOT%%/tests/heal/fix_shape/G3
%%OCCROOT%%/tests/heal/fix_shape/G4
%%OCCROOT%%/tests/heal/fix_shape/G5
+%%OCCROOT%%/tests/heal/fix_shape/end
%%OCCROOT%%/tests/heal/grids.list
%%OCCROOT%%/tests/heal/parse.rules
%%OCCROOT%%/tests/heal/reshape/A1
%%OCCROOT%%/tests/heal/reshape/begin
%%OCCROOT%%/tests/heal/reshape/end
-%%OCCROOT%%/tests/heal/same_parameter_locked/A1
-%%OCCROOT%%/tests/heal/same_parameter_locked/A2
-%%OCCROOT%%/tests/heal/same_parameter_locked/A3
-%%OCCROOT%%/tests/heal/same_parameter_locked/A4
-%%OCCROOT%%/tests/heal/same_parameter_locked/A5
-%%OCCROOT%%/tests/heal/same_parameter_locked/A6
-%%OCCROOT%%/tests/heal/same_parameter_locked/A7
-%%OCCROOT%%/tests/heal/same_parameter_locked/end
%%OCCROOT%%/tests/heal/same_parameter/A1
%%OCCROOT%%/tests/heal/same_parameter/A2
%%OCCROOT%%/tests/heal/same_parameter/A3
@@ -12669,12 +13447,14 @@
%%OCCROOT%%/tests/heal/same_parameter/A8
%%OCCROOT%%/tests/heal/same_parameter/A9
%%OCCROOT%%/tests/heal/same_parameter/end
-%%OCCROOT%%/tests/heal/split_angle_advanced/begin
-%%OCCROOT%%/tests/heal/split_angle_advanced/cases.list
-%%OCCROOT%%/tests/heal/split_angle_advanced/end
-%%OCCROOT%%/tests/heal/split_angle_standard/begin
-%%OCCROOT%%/tests/heal/split_angle_standard/cases.list
-%%OCCROOT%%/tests/heal/split_angle_standard/end
+%%OCCROOT%%/tests/heal/same_parameter_locked/A1
+%%OCCROOT%%/tests/heal/same_parameter_locked/A2
+%%OCCROOT%%/tests/heal/same_parameter_locked/A3
+%%OCCROOT%%/tests/heal/same_parameter_locked/A4
+%%OCCROOT%%/tests/heal/same_parameter_locked/A5
+%%OCCROOT%%/tests/heal/same_parameter_locked/A6
+%%OCCROOT%%/tests/heal/same_parameter_locked/A7
+%%OCCROOT%%/tests/heal/same_parameter_locked/end
%%OCCROOT%%/tests/heal/split_angle/A1
%%OCCROOT%%/tests/heal/split_angle/A2
%%OCCROOT%%/tests/heal/split_angle/A3
@@ -12720,9 +13500,15 @@
%%OCCROOT%%/tests/heal/split_angle/E7
%%OCCROOT%%/tests/heal/split_angle/E8
%%OCCROOT%%/tests/heal/split_angle/E9
-%%OCCROOT%%/tests/heal/split_angle/end
%%OCCROOT%%/tests/heal/split_angle/F1
%%OCCROOT%%/tests/heal/split_angle/F2
+%%OCCROOT%%/tests/heal/split_angle/end
+%%OCCROOT%%/tests/heal/split_angle_advanced/begin
+%%OCCROOT%%/tests/heal/split_angle_advanced/cases.list
+%%OCCROOT%%/tests/heal/split_angle_advanced/end
+%%OCCROOT%%/tests/heal/split_angle_standard/begin
+%%OCCROOT%%/tests/heal/split_angle_standard/cases.list
+%%OCCROOT%%/tests/heal/split_angle_standard/end
%%OCCROOT%%/tests/heal/split_closed_faces/A1
%%OCCROOT%%/tests/heal/split_closed_faces/A2
%%OCCROOT%%/tests/heal/split_closed_faces/A3
@@ -12768,7 +13554,6 @@
%%OCCROOT%%/tests/heal/split_closed_faces/E7
%%OCCROOT%%/tests/heal/split_closed_faces/E8
%%OCCROOT%%/tests/heal/split_closed_faces/E9
-%%OCCROOT%%/tests/heal/split_closed_faces/end
%%OCCROOT%%/tests/heal/split_closed_faces/F1
%%OCCROOT%%/tests/heal/split_closed_faces/F2
%%OCCROOT%%/tests/heal/split_closed_faces/F3
@@ -12783,12 +13568,7 @@
%%OCCROOT%%/tests/heal/split_closed_faces/G3
%%OCCROOT%%/tests/heal/split_closed_faces/G4
%%OCCROOT%%/tests/heal/split_closed_faces/G5
-%%OCCROOT%%/tests/heal/split_continuity_advanced/begin
-%%OCCROOT%%/tests/heal/split_continuity_advanced/cases.list
-%%OCCROOT%%/tests/heal/split_continuity_advanced/end
-%%OCCROOT%%/tests/heal/split_continuity_standard/begin
-%%OCCROOT%%/tests/heal/split_continuity_standard/cases.list
-%%OCCROOT%%/tests/heal/split_continuity_standard/end
+%%OCCROOT%%/tests/heal/split_closed_faces/end
%%OCCROOT%%/tests/heal/split_continuity/A1
%%OCCROOT%%/tests/heal/split_continuity/A2
%%OCCROOT%%/tests/heal/split_continuity/A3
@@ -12820,6 +13600,12 @@
%%OCCROOT%%/tests/heal/split_continuity/D2
%%OCCROOT%%/tests/heal/split_continuity/D3
%%OCCROOT%%/tests/heal/split_continuity/end
+%%OCCROOT%%/tests/heal/split_continuity_advanced/begin
+%%OCCROOT%%/tests/heal/split_continuity_advanced/cases.list
+%%OCCROOT%%/tests/heal/split_continuity_advanced/end
+%%OCCROOT%%/tests/heal/split_continuity_standard/begin
+%%OCCROOT%%/tests/heal/split_continuity_standard/cases.list
+%%OCCROOT%%/tests/heal/split_continuity_standard/end
%%OCCROOT%%/tests/heal/split_number/A1
%%OCCROOT%%/tests/heal/split_number/A2
%%OCCROOT%%/tests/heal/split_number/A3
@@ -12893,12 +13679,12 @@
%%OCCROOT%%/tests/heal/surface_to_bezier/E7
%%OCCROOT%%/tests/heal/surface_to_bezier/E8
%%OCCROOT%%/tests/heal/surface_to_bezier/E9
-%%OCCROOT%%/tests/heal/surface_to_bezier/end
%%OCCROOT%%/tests/heal/surface_to_bezier/F1
%%OCCROOT%%/tests/heal/surface_to_bezier/F2
%%OCCROOT%%/tests/heal/surface_to_bezier/F3
%%OCCROOT%%/tests/heal/surface_to_bezier/F4
%%OCCROOT%%/tests/heal/surface_to_bezier/F5
+%%OCCROOT%%/tests/heal/surface_to_bezier/end
%%OCCROOT%%/tests/heal/surface_to_bspline/A1
%%OCCROOT%%/tests/heal/surface_to_bspline/A2
%%OCCROOT%%/tests/heal/surface_to_bspline/A3
@@ -12944,7 +13730,6 @@
%%OCCROOT%%/tests/heal/surface_to_bspline/E7
%%OCCROOT%%/tests/heal/surface_to_bspline/E8
%%OCCROOT%%/tests/heal/surface_to_bspline/E9
-%%OCCROOT%%/tests/heal/surface_to_bspline/end
%%OCCROOT%%/tests/heal/surface_to_bspline/F1
%%OCCROOT%%/tests/heal/surface_to_bspline/F2
%%OCCROOT%%/tests/heal/surface_to_bspline/F3
@@ -12958,6 +13743,7 @@
%%OCCROOT%%/tests/heal/surface_to_bspline/G2
%%OCCROOT%%/tests/heal/surface_to_bspline/G3
%%OCCROOT%%/tests/heal/surface_to_bspline/G4
+%%OCCROOT%%/tests/heal/surface_to_bspline/end
%%OCCROOT%%/tests/heal/surface_to_revolution_advanced/begin
%%OCCROOT%%/tests/heal/surface_to_revolution_advanced/cases.list
%%OCCROOT%%/tests/heal/surface_to_revolution_advanced/end
@@ -13025,38 +13811,6 @@
%%OCCROOT%%/tests/hlr/exact_hlr/B5
%%OCCROOT%%/tests/hlr/exact_hlr/B6
%%OCCROOT%%/tests/hlr/exact_hlr/B7
-%%OCCROOT%%/tests/hlr/exact_hlr/begin
-%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_1
-%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_2
-%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_3
-%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_4
-%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_5
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_101
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_102
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_103
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_104
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_105
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_201
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_202
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_203
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_204
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_205
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_1
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_2
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_3
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_4
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_5
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_1
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_2
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_3
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_4
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_5
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_6
-%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_7
-%%OCCROOT%%/tests/hlr/exact_hlr/bug29956
-%%OCCROOT%%/tests/hlr/exact_hlr/bug30243
-%%OCCROOT%%/tests/hlr/exact_hlr/bug32747
-%%OCCROOT%%/tests/hlr/exact_hlr/bug7691
%%OCCROOT%%/tests/hlr/exact_hlr/C1
%%OCCROOT%%/tests/hlr/exact_hlr/C10
%%OCCROOT%%/tests/hlr/exact_hlr/C11
@@ -13093,8 +13847,41 @@
%%OCCROOT%%/tests/hlr/exact_hlr/D5
%%OCCROOT%%/tests/hlr/exact_hlr/D6
%%OCCROOT%%/tests/hlr/exact_hlr/D7
-%%OCCROOT%%/tests/hlr/exact_hlr/end
%%OCCROOT%%/tests/hlr/exact_hlr/Plate
+%%OCCROOT%%/tests/hlr/exact_hlr/begin
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_1
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_2
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_3
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_4
+%%OCCROOT%%/tests/hlr/exact_hlr/bug25813_5
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_101
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_102
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_103
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_104
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_105
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_201
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_202
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_203
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_204
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27719_205
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_1
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_2
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_3
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_4
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27720_5
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_1
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_2
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_3
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_4
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_5
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_6
+%%OCCROOT%%/tests/hlr/exact_hlr/bug27979_7
+%%OCCROOT%%/tests/hlr/exact_hlr/bug29956
+%%OCCROOT%%/tests/hlr/exact_hlr/bug30243
+%%OCCROOT%%/tests/hlr/exact_hlr/bug32747
+%%OCCROOT%%/tests/hlr/exact_hlr/bug33450
+%%OCCROOT%%/tests/hlr/exact_hlr/bug7691
+%%OCCROOT%%/tests/hlr/exact_hlr/end
%%OCCROOT%%/tests/hlr/grids.list
%%OCCROOT%%/tests/hlr/poly_hlr/A1
%%OCCROOT%%/tests/hlr/poly_hlr/A2
@@ -13110,6 +13897,43 @@
%%OCCROOT%%/tests/hlr/poly_hlr/B5
%%OCCROOT%%/tests/hlr/poly_hlr/B6
%%OCCROOT%%/tests/hlr/poly_hlr/B7
+%%OCCROOT%%/tests/hlr/poly_hlr/C1
+%%OCCROOT%%/tests/hlr/poly_hlr/C10
+%%OCCROOT%%/tests/hlr/poly_hlr/C11
+%%OCCROOT%%/tests/hlr/poly_hlr/C12
+%%OCCROOT%%/tests/hlr/poly_hlr/C13
+%%OCCROOT%%/tests/hlr/poly_hlr/C14
+%%OCCROOT%%/tests/hlr/poly_hlr/C15
+%%OCCROOT%%/tests/hlr/poly_hlr/C16
+%%OCCROOT%%/tests/hlr/poly_hlr/C17
+%%OCCROOT%%/tests/hlr/poly_hlr/C18
+%%OCCROOT%%/tests/hlr/poly_hlr/C19
+%%OCCROOT%%/tests/hlr/poly_hlr/C2
+%%OCCROOT%%/tests/hlr/poly_hlr/C20
+%%OCCROOT%%/tests/hlr/poly_hlr/C21
+%%OCCROOT%%/tests/hlr/poly_hlr/C22
+%%OCCROOT%%/tests/hlr/poly_hlr/C23
+%%OCCROOT%%/tests/hlr/poly_hlr/C24
+%%OCCROOT%%/tests/hlr/poly_hlr/C25
+%%OCCROOT%%/tests/hlr/poly_hlr/C26
+%%OCCROOT%%/tests/hlr/poly_hlr/C27
+%%OCCROOT%%/tests/hlr/poly_hlr/C28
+%%OCCROOT%%/tests/hlr/poly_hlr/C29
+%%OCCROOT%%/tests/hlr/poly_hlr/C3
+%%OCCROOT%%/tests/hlr/poly_hlr/C4
+%%OCCROOT%%/tests/hlr/poly_hlr/C5
+%%OCCROOT%%/tests/hlr/poly_hlr/C6
+%%OCCROOT%%/tests/hlr/poly_hlr/C7
+%%OCCROOT%%/tests/hlr/poly_hlr/C8
+%%OCCROOT%%/tests/hlr/poly_hlr/C9
+%%OCCROOT%%/tests/hlr/poly_hlr/D1
+%%OCCROOT%%/tests/hlr/poly_hlr/D2
+%%OCCROOT%%/tests/hlr/poly_hlr/D3
+%%OCCROOT%%/tests/hlr/poly_hlr/D4
+%%OCCROOT%%/tests/hlr/poly_hlr/D5
+%%OCCROOT%%/tests/hlr/poly_hlr/D6
+%%OCCROOT%%/tests/hlr/poly_hlr/D7
+%%OCCROOT%%/tests/hlr/poly_hlr/Plate
%%OCCROOT%%/tests/hlr/poly_hlr/begin
%%OCCROOT%%/tests/hlr/poly_hlr/bug23625_1
%%OCCROOT%%/tests/hlr/poly_hlr/bug23625_2
@@ -13147,44 +13971,7 @@
%%OCCROOT%%/tests/hlr/poly_hlr/bug29956
%%OCCROOT%%/tests/hlr/poly_hlr/bug30243
%%OCCROOT%%/tests/hlr/poly_hlr/bug7691
-%%OCCROOT%%/tests/hlr/poly_hlr/C1
-%%OCCROOT%%/tests/hlr/poly_hlr/C10
-%%OCCROOT%%/tests/hlr/poly_hlr/C11
-%%OCCROOT%%/tests/hlr/poly_hlr/C12
-%%OCCROOT%%/tests/hlr/poly_hlr/C13
-%%OCCROOT%%/tests/hlr/poly_hlr/C14
-%%OCCROOT%%/tests/hlr/poly_hlr/C15
-%%OCCROOT%%/tests/hlr/poly_hlr/C16
-%%OCCROOT%%/tests/hlr/poly_hlr/C17
-%%OCCROOT%%/tests/hlr/poly_hlr/C18
-%%OCCROOT%%/tests/hlr/poly_hlr/C19
-%%OCCROOT%%/tests/hlr/poly_hlr/C2
-%%OCCROOT%%/tests/hlr/poly_hlr/C20
-%%OCCROOT%%/tests/hlr/poly_hlr/C21
-%%OCCROOT%%/tests/hlr/poly_hlr/C22
-%%OCCROOT%%/tests/hlr/poly_hlr/C23
-%%OCCROOT%%/tests/hlr/poly_hlr/C24
-%%OCCROOT%%/tests/hlr/poly_hlr/C25
-%%OCCROOT%%/tests/hlr/poly_hlr/C26
-%%OCCROOT%%/tests/hlr/poly_hlr/C27
-%%OCCROOT%%/tests/hlr/poly_hlr/C28
-%%OCCROOT%%/tests/hlr/poly_hlr/C29
-%%OCCROOT%%/tests/hlr/poly_hlr/C3
-%%OCCROOT%%/tests/hlr/poly_hlr/C4
-%%OCCROOT%%/tests/hlr/poly_hlr/C5
-%%OCCROOT%%/tests/hlr/poly_hlr/C6
-%%OCCROOT%%/tests/hlr/poly_hlr/C7
-%%OCCROOT%%/tests/hlr/poly_hlr/C8
-%%OCCROOT%%/tests/hlr/poly_hlr/C9
-%%OCCROOT%%/tests/hlr/poly_hlr/D1
-%%OCCROOT%%/tests/hlr/poly_hlr/D2
-%%OCCROOT%%/tests/hlr/poly_hlr/D3
-%%OCCROOT%%/tests/hlr/poly_hlr/D4
-%%OCCROOT%%/tests/hlr/poly_hlr/D5
-%%OCCROOT%%/tests/hlr/poly_hlr/D6
-%%OCCROOT%%/tests/hlr/poly_hlr/D7
%%OCCROOT%%/tests/hlr/poly_hlr/end
-%%OCCROOT%%/tests/hlr/poly_hlr/Plate
%%OCCROOT%%/tests/lowalgos/2dapprox/bug29679_1
%%OCCROOT%%/tests/lowalgos/2dapprox/bug29679_2
%%OCCROOT%%/tests/lowalgos/2ddeviation/A1
@@ -13219,6 +14006,7 @@
%%OCCROOT%%/tests/lowalgos/2dinter/bug4426_2
%%OCCROOT%%/tests/lowalgos/begin
%%OCCROOT%%/tests/lowalgos/bnd/bug29463
+%%OCCROOT%%/tests/lowalgos/bnd/bug30292
%%OCCROOT%%/tests/lowalgos/bvh/bug30655_1
%%OCCROOT%%/tests/lowalgos/bvh/bug30655_2
%%OCCROOT%%/tests/lowalgos/bvh/bug30655_3
@@ -13500,6 +14288,7 @@
%%OCCROOT%%/tests/lowalgos/intss/bug32701
%%OCCROOT%%/tests/lowalgos/intss/bug32849
%%OCCROOT%%/tests/lowalgos/intss/bug32850
+%%OCCROOT%%/tests/lowalgos/intss/bug33244
%%OCCROOT%%/tests/lowalgos/intss/bug333
%%OCCROOT%%/tests/lowalgos/intss/bug370
%%OCCROOT%%/tests/lowalgos/intss/bug371
@@ -13530,7 +14319,6 @@
%%OCCROOT%%/tests/lowalgos/proximity/B3
%%OCCROOT%%/tests/lowalgos/proximity/B4
%%OCCROOT%%/tests/lowalgos/proximity/B5
-%%OCCROOT%%/tests/lowalgos/proximity/B6
%%OCCROOT%%/tests/lowalgos/proximity/C1
%%OCCROOT%%/tests/lowalgos/proximity/C2
%%OCCROOT%%/tests/lowalgos/proximity/C3
@@ -13538,13 +14326,15 @@
%%OCCROOT%%/tests/lowalgos/proximity/D1
%%OCCROOT%%/tests/lowalgos/proximity/D2
%%OCCROOT%%/tests/lowalgos/proximity/D3
+%%OCCROOT%%/tests/lowalgos/proximity/D4
%%OCCROOT%%/tests/lowalgos/proximity/E1
%%OCCROOT%%/tests/lowalgos/proximity/E2
+%%OCCROOT%%/tests/lowalgos/proximity/E3
%%OCCROOT%%/tests/lowalgos/proximity/end
-%%OCCROOT%%/tests/mesh/advanced_incmesh_parallel/begin
-%%OCCROOT%%/tests/mesh/advanced_incmesh_parallel/cases.list
%%OCCROOT%%/tests/mesh/advanced_incmesh/begin
%%OCCROOT%%/tests/mesh/advanced_incmesh/cases.list
+%%OCCROOT%%/tests/mesh/advanced_incmesh_parallel/begin
+%%OCCROOT%%/tests/mesh/advanced_incmesh_parallel/cases.list
%%OCCROOT%%/tests/mesh/advanced_shading/begin
%%OCCROOT%%/tests/mesh/advanced_shading/cases.list
%%OCCROOT%%/tests/mesh/begin
@@ -13783,10 +14573,10 @@
%%OCCROOT%%/tests/mesh/data/standard/X5
%%OCCROOT%%/tests/mesh/end
%%OCCROOT%%/tests/mesh/grids.list
-%%OCCROOT%%/tests/mesh/standard_incmesh_parallel/begin
-%%OCCROOT%%/tests/mesh/standard_incmesh_parallel/cases.list
%%OCCROOT%%/tests/mesh/standard_incmesh/begin
%%OCCROOT%%/tests/mesh/standard_incmesh/cases.list
+%%OCCROOT%%/tests/mesh/standard_incmesh_parallel/begin
+%%OCCROOT%%/tests/mesh/standard_incmesh_parallel/cases.list
%%OCCROOT%%/tests/mesh/standard_shading/begin
%%OCCROOT%%/tests/mesh/standard_shading/cases.list
%%OCCROOT%%/tests/mkface/after_extsurf_and_offset/A1
@@ -13959,6 +14749,7 @@
%%OCCROOT%%/tests/mkface/mkplane/A2
%%OCCROOT%%/tests/mkface/mkplane/bug30878_1
%%OCCROOT%%/tests/mkface/mkplane/bug30878_2
+%%OCCROOT%%/tests/mkface/mkplane/bug33156
%%OCCROOT%%/tests/mkface/parse.rules
%%OCCROOT%%/tests/nproject/base/A1
%%OCCROOT%%/tests/nproject/base/A2
@@ -13988,6 +14779,7 @@
%%OCCROOT%%/tests/offset/bugs/bug27912
%%OCCROOT%%/tests/offset/bugs/bug27913
%%OCCROOT%%/tests/offset/bugs/bug28903
+%%OCCROOT%%/tests/offset/bugs/bug30055
%%OCCROOT%%/tests/offset/bugs/bug5806
%%OCCROOT%%/tests/offset/compshape/A1
%%OCCROOT%%/tests/offset/compshape/A2
@@ -14026,7 +14818,6 @@
%%OCCROOT%%/tests/offset/faces_type_i/B7
%%OCCROOT%%/tests/offset/faces_type_i/B8
%%OCCROOT%%/tests/offset/faces_type_i/B9
-%%OCCROOT%%/tests/offset/faces_type_i/begin
%%OCCROOT%%/tests/offset/faces_type_i/C1
%%OCCROOT%%/tests/offset/faces_type_i/C2
%%OCCROOT%%/tests/offset/faces_type_i/C3
@@ -14128,8 +14919,14 @@
%%OCCROOT%%/tests/offset/faces_type_i/M9
%%OCCROOT%%/tests/offset/faces_type_i/N1
%%OCCROOT%%/tests/offset/faces_type_i/N2
+%%OCCROOT%%/tests/offset/faces_type_i/begin
%%OCCROOT%%/tests/offset/grids.list
%%OCCROOT%%/tests/offset/parse.rules
+%%OCCROOT%%/tests/offset/shape/A1
+%%OCCROOT%%/tests/offset/shape/A2
+%%OCCROOT%%/tests/offset/shape/A3
+%%OCCROOT%%/tests/offset/shape/A4
+%%OCCROOT%%/tests/offset/shape/begin
%%OCCROOT%%/tests/offset/shape_type_a/A1
%%OCCROOT%%/tests/offset/shape_type_a/A2
%%OCCROOT%%/tests/offset/shape_type_a/A3
@@ -14146,47 +14943,64 @@
%%OCCROOT%%/tests/offset/shape_type_a/B5
%%OCCROOT%%/tests/offset/shape_type_a/B6
%%OCCROOT%%/tests/offset/shape_type_a/begin
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A2
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A3
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A4
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A5
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A6
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A7
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A8
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A9
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B2
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B3
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B4
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B5
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B6
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B7
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B8
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B9
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/begin
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C2
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C3
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C4
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C5
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XA1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XB1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XC1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XC2
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XD1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XE1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XE2
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XE3
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XF1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XG1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XH1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XI1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XJ1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XK1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XL1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XM1
-%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XN1
+%%OCCROOT%%/tests/offset/shape_type_i/A1
+%%OCCROOT%%/tests/offset/shape_type_i/A2
+%%OCCROOT%%/tests/offset/shape_type_i/A3
+%%OCCROOT%%/tests/offset/shape_type_i/A4
+%%OCCROOT%%/tests/offset/shape_type_i/A5
+%%OCCROOT%%/tests/offset/shape_type_i/A6
+%%OCCROOT%%/tests/offset/shape_type_i/A7
+%%OCCROOT%%/tests/offset/shape_type_i/A8
+%%OCCROOT%%/tests/offset/shape_type_i/A9
+%%OCCROOT%%/tests/offset/shape_type_i/B1
+%%OCCROOT%%/tests/offset/shape_type_i/B2
+%%OCCROOT%%/tests/offset/shape_type_i/B3
+%%OCCROOT%%/tests/offset/shape_type_i/B4
+%%OCCROOT%%/tests/offset/shape_type_i/B5
+%%OCCROOT%%/tests/offset/shape_type_i/B6
+%%OCCROOT%%/tests/offset/shape_type_i/B7
+%%OCCROOT%%/tests/offset/shape_type_i/B8
+%%OCCROOT%%/tests/offset/shape_type_i/B9
+%%OCCROOT%%/tests/offset/shape_type_i/C1
+%%OCCROOT%%/tests/offset/shape_type_i/C2
+%%OCCROOT%%/tests/offset/shape_type_i/C3
+%%OCCROOT%%/tests/offset/shape_type_i/C4
+%%OCCROOT%%/tests/offset/shape_type_i/C5
+%%OCCROOT%%/tests/offset/shape_type_i/C6
+%%OCCROOT%%/tests/offset/shape_type_i/C7
+%%OCCROOT%%/tests/offset/shape_type_i/C8
+%%OCCROOT%%/tests/offset/shape_type_i/C9
+%%OCCROOT%%/tests/offset/shape_type_i/D1
+%%OCCROOT%%/tests/offset/shape_type_i/D2
+%%OCCROOT%%/tests/offset/shape_type_i/D3
+%%OCCROOT%%/tests/offset/shape_type_i/D4
+%%OCCROOT%%/tests/offset/shape_type_i/D5
+%%OCCROOT%%/tests/offset/shape_type_i/D6
+%%OCCROOT%%/tests/offset/shape_type_i/D7
+%%OCCROOT%%/tests/offset/shape_type_i/E1
+%%OCCROOT%%/tests/offset/shape_type_i/E2
+%%OCCROOT%%/tests/offset/shape_type_i/E3
+%%OCCROOT%%/tests/offset/shape_type_i/E4
+%%OCCROOT%%/tests/offset/shape_type_i/E6
+%%OCCROOT%%/tests/offset/shape_type_i/E7
+%%OCCROOT%%/tests/offset/shape_type_i/E8
+%%OCCROOT%%/tests/offset/shape_type_i/E9
+%%OCCROOT%%/tests/offset/shape_type_i/F1
+%%OCCROOT%%/tests/offset/shape_type_i/F2
+%%OCCROOT%%/tests/offset/shape_type_i/F3
+%%OCCROOT%%/tests/offset/shape_type_i/F4
+%%OCCROOT%%/tests/offset/shape_type_i/F5
+%%OCCROOT%%/tests/offset/shape_type_i/F6
+%%OCCROOT%%/tests/offset/shape_type_i/F7
+%%OCCROOT%%/tests/offset/shape_type_i/F8
+%%OCCROOT%%/tests/offset/shape_type_i/F9
+%%OCCROOT%%/tests/offset/shape_type_i/G1
+%%OCCROOT%%/tests/offset/shape_type_i/G2
+%%OCCROOT%%/tests/offset/shape_type_i/G3
+%%OCCROOT%%/tests/offset/shape_type_i/G4
+%%OCCROOT%%/tests/offset/shape_type_i/G5
+%%OCCROOT%%/tests/offset/shape_type_i/G6
+%%OCCROOT%%/tests/offset/shape_type_i/begin
%%OCCROOT%%/tests/offset/shape_type_i_c/A1
%%OCCROOT%%/tests/offset/shape_type_i_c/A2
%%OCCROOT%%/tests/offset/shape_type_i_c/A3
@@ -14196,6 +15010,7 @@
%%OCCROOT%%/tests/offset/shape_type_i_c/A7
%%OCCROOT%%/tests/offset/shape_type_i_c/A8
%%OCCROOT%%/tests/offset/shape_type_i_c/A9
+%%OCCROOT%%/tests/offset/shape_type_i_c/AA1
%%OCCROOT%%/tests/offset/shape_type_i_c/B1
%%OCCROOT%%/tests/offset/shape_type_i_c/B2
%%OCCROOT%%/tests/offset/shape_type_i_c/B3
@@ -14205,7 +15020,6 @@
%%OCCROOT%%/tests/offset/shape_type_i_c/B7
%%OCCROOT%%/tests/offset/shape_type_i_c/B8
%%OCCROOT%%/tests/offset/shape_type_i_c/B9
-%%OCCROOT%%/tests/offset/shape_type_i_c/begin
%%OCCROOT%%/tests/offset/shape_type_i_c/C1
%%OCCROOT%%/tests/offset/shape_type_i_c/C2
%%OCCROOT%%/tests/offset/shape_type_i_c/C3
@@ -14395,6 +15209,8 @@
%%OCCROOT%%/tests/offset/shape_type_i_c/W7
%%OCCROOT%%/tests/offset/shape_type_i_c/W8
%%OCCROOT%%/tests/offset/shape_type_i_c/W9
+%%OCCROOT%%/tests/offset/shape_type_i_c/WA1
+%%OCCROOT%%/tests/offset/shape_type_i_c/WA2
%%OCCROOT%%/tests/offset/shape_type_i_c/X1
%%OCCROOT%%/tests/offset/shape_type_i_c/X2
%%OCCROOT%%/tests/offset/shape_type_i_c/X3
@@ -14988,69 +15804,48 @@
%%OCCROOT%%/tests/offset/shape_type_i_c/ZZ7
%%OCCROOT%%/tests/offset/shape_type_i_c/ZZ8
%%OCCROOT%%/tests/offset/shape_type_i_c/ZZ9
-%%OCCROOT%%/tests/offset/shape_type_i/A1
-%%OCCROOT%%/tests/offset/shape_type_i/A2
-%%OCCROOT%%/tests/offset/shape_type_i/A3
-%%OCCROOT%%/tests/offset/shape_type_i/A4
-%%OCCROOT%%/tests/offset/shape_type_i/A5
-%%OCCROOT%%/tests/offset/shape_type_i/A6
-%%OCCROOT%%/tests/offset/shape_type_i/A7
-%%OCCROOT%%/tests/offset/shape_type_i/A8
-%%OCCROOT%%/tests/offset/shape_type_i/A9
-%%OCCROOT%%/tests/offset/shape_type_i/B1
-%%OCCROOT%%/tests/offset/shape_type_i/B2
-%%OCCROOT%%/tests/offset/shape_type_i/B3
-%%OCCROOT%%/tests/offset/shape_type_i/B4
-%%OCCROOT%%/tests/offset/shape_type_i/B5
-%%OCCROOT%%/tests/offset/shape_type_i/B6
-%%OCCROOT%%/tests/offset/shape_type_i/B7
-%%OCCROOT%%/tests/offset/shape_type_i/B8
-%%OCCROOT%%/tests/offset/shape_type_i/B9
-%%OCCROOT%%/tests/offset/shape_type_i/begin
-%%OCCROOT%%/tests/offset/shape_type_i/C1
-%%OCCROOT%%/tests/offset/shape_type_i/C2
-%%OCCROOT%%/tests/offset/shape_type_i/C3
-%%OCCROOT%%/tests/offset/shape_type_i/C4
-%%OCCROOT%%/tests/offset/shape_type_i/C5
-%%OCCROOT%%/tests/offset/shape_type_i/C6
-%%OCCROOT%%/tests/offset/shape_type_i/C7
-%%OCCROOT%%/tests/offset/shape_type_i/C8
-%%OCCROOT%%/tests/offset/shape_type_i/C9
-%%OCCROOT%%/tests/offset/shape_type_i/D1
-%%OCCROOT%%/tests/offset/shape_type_i/D2
-%%OCCROOT%%/tests/offset/shape_type_i/D3
-%%OCCROOT%%/tests/offset/shape_type_i/D4
-%%OCCROOT%%/tests/offset/shape_type_i/D5
-%%OCCROOT%%/tests/offset/shape_type_i/D6
-%%OCCROOT%%/tests/offset/shape_type_i/D7
-%%OCCROOT%%/tests/offset/shape_type_i/E1
-%%OCCROOT%%/tests/offset/shape_type_i/E2
-%%OCCROOT%%/tests/offset/shape_type_i/E3
-%%OCCROOT%%/tests/offset/shape_type_i/E4
-%%OCCROOT%%/tests/offset/shape_type_i/E6
-%%OCCROOT%%/tests/offset/shape_type_i/E7
-%%OCCROOT%%/tests/offset/shape_type_i/E8
-%%OCCROOT%%/tests/offset/shape_type_i/E9
-%%OCCROOT%%/tests/offset/shape_type_i/F1
-%%OCCROOT%%/tests/offset/shape_type_i/F2
-%%OCCROOT%%/tests/offset/shape_type_i/F3
-%%OCCROOT%%/tests/offset/shape_type_i/F4
-%%OCCROOT%%/tests/offset/shape_type_i/F5
-%%OCCROOT%%/tests/offset/shape_type_i/F6
-%%OCCROOT%%/tests/offset/shape_type_i/F7
-%%OCCROOT%%/tests/offset/shape_type_i/F8
-%%OCCROOT%%/tests/offset/shape_type_i/F9
-%%OCCROOT%%/tests/offset/shape_type_i/G1
-%%OCCROOT%%/tests/offset/shape_type_i/G2
-%%OCCROOT%%/tests/offset/shape_type_i/G3
-%%OCCROOT%%/tests/offset/shape_type_i/G4
-%%OCCROOT%%/tests/offset/shape_type_i/G5
-%%OCCROOT%%/tests/offset/shape_type_i/G6
-%%OCCROOT%%/tests/offset/shape/A1
-%%OCCROOT%%/tests/offset/shape/A2
-%%OCCROOT%%/tests/offset/shape/A3
-%%OCCROOT%%/tests/offset/shape/A4
-%%OCCROOT%%/tests/offset/shape/begin
+%%OCCROOT%%/tests/offset/shape_type_i_c/begin
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A2
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A3
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A4
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A5
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A6
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A7
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A8
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/A9
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B2
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B3
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B4
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B5
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B6
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B7
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B8
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/B9
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C2
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C3
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C4
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/C5
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XA1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XB1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XC1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XC2
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XD1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XE1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XE2
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XE3
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XF1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XG1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XH1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XI1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XJ1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XK1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XL1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XM1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/XN1
+%%OCCROOT%%/tests/offset/shape_type_i_c_multi/begin
%%OCCROOT%%/tests/offset/simple/A01
%%OCCROOT%%/tests/offset/simple/A02
%%OCCROOT%%/tests/offset/simple/A03
@@ -15080,7 +15875,6 @@
%%OCCROOT%%/tests/offset/simple/B13
%%OCCROOT%%/tests/offset/simple/B14
%%OCCROOT%%/tests/offset/simple/B15
-%%OCCROOT%%/tests/offset/simple/begin
%%OCCROOT%%/tests/offset/simple/C01
%%OCCROOT%%/tests/offset/simple/C02
%%OCCROOT%%/tests/offset/simple/C03
@@ -15123,12 +15917,13 @@
%%OCCROOT%%/tests/offset/simple/E18
%%OCCROOT%%/tests/offset/simple/E19
%%OCCROOT%%/tests/offset/simple/E20
-%%OCCROOT%%/tests/offset/simple/end
%%OCCROOT%%/tests/offset/simple/F01
%%OCCROOT%%/tests/offset/simple/F02
%%OCCROOT%%/tests/offset/simple/F03
%%OCCROOT%%/tests/offset/simple/F04
%%OCCROOT%%/tests/offset/simple/F05
+%%OCCROOT%%/tests/offset/simple/begin
+%%OCCROOT%%/tests/offset/simple/end
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/A1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/A2
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/A3
@@ -15147,7 +15942,6 @@
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/B7
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/B8
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/B9
-%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/begin
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/C1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/C2
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/C3
@@ -15222,6 +16016,7 @@
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/J9
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/K1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/K2
+%%OCCROOT%%/tests/offset/wire_closed_inside_0_005/begin
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/A1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/A2
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/A3
@@ -15240,7 +16035,6 @@
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/B7
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/B8
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/B9
-%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/begin
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/C1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/C2
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/C3
@@ -15315,6 +16109,7 @@
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/J9
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/K1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/K2
+%%OCCROOT%%/tests/offset/wire_closed_inside_0_025/begin
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/A1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/A2
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/A3
@@ -15333,7 +16128,6 @@
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/B7
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/B8
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/B9
-%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/begin
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/C1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/C2
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/C3
@@ -15408,6 +16202,7 @@
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/J9
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/K1
%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/K2
+%%OCCROOT%%/tests/offset/wire_closed_inside_0_075/begin
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/A1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/A2
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/A3
@@ -15426,7 +16221,6 @@
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/B7
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/B8
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/B9
-%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/begin
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/C1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/C2
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/C3
@@ -15501,6 +16295,7 @@
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/J9
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/K1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/K2
+%%OCCROOT%%/tests/offset/wire_closed_outside_0_005/begin
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/A1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/A2
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/A3
@@ -15519,7 +16314,6 @@
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/B7
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/B8
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/B9
-%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/begin
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/C1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/C2
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/C3
@@ -15594,6 +16388,7 @@
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/J9
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/K1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/K2
+%%OCCROOT%%/tests/offset/wire_closed_outside_0_025/begin
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/A1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/A2
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/A3
@@ -15612,7 +16407,6 @@
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/B7
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/B8
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/B9
-%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/begin
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/C1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/C2
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/C3
@@ -15687,6 +16481,7 @@
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/J9
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/K1
%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/K2
+%%OCCROOT%%/tests/offset/wire_closed_outside_0_075/begin
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/A1
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/A2
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/A3
@@ -15705,12 +16500,12 @@
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/B7
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/B8
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/B9
-%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/begin
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/C1
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/C2
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/C3
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/C4
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/C5
+%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_005/begin
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/A1
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/A2
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/A3
@@ -15729,12 +16524,12 @@
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/B7
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/B8
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/B9
-%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/begin
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/C1
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/C2
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/C3
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/C4
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/C5
+%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_025/begin
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/A1
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/A2
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/A3
@@ -15753,12 +16548,12 @@
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/B7
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/B8
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/B9
-%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/begin
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/C1
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/C2
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/C3
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/C4
%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/C5
+%%OCCROOT%%/tests/offset/wire_unclosed_outside_0_075/begin
%%OCCROOT%%/tests/offset/with_intersect_20/A1
%%OCCROOT%%/tests/offset/with_intersect_20/A2
%%OCCROOT%%/tests/offset/with_intersect_20/A3
@@ -15776,7 +16571,6 @@
%%OCCROOT%%/tests/offset/with_intersect_20/B6
%%OCCROOT%%/tests/offset/with_intersect_20/B7
%%OCCROOT%%/tests/offset/with_intersect_20/B9
-%%OCCROOT%%/tests/offset/with_intersect_20/begin
%%OCCROOT%%/tests/offset/with_intersect_20/C1
%%OCCROOT%%/tests/offset/with_intersect_20/C2
%%OCCROOT%%/tests/offset/with_intersect_20/C3
@@ -15880,6 +16674,7 @@
%%OCCROOT%%/tests/offset/with_intersect_20/N4
%%OCCROOT%%/tests/offset/with_intersect_20/N5
%%OCCROOT%%/tests/offset/with_intersect_20/N7
+%%OCCROOT%%/tests/offset/with_intersect_20/begin
%%OCCROOT%%/tests/offset/with_intersect_80/A1
%%OCCROOT%%/tests/offset/with_intersect_80/A2
%%OCCROOT%%/tests/offset/with_intersect_80/A3
@@ -15897,7 +16692,6 @@
%%OCCROOT%%/tests/offset/with_intersect_80/B6
%%OCCROOT%%/tests/offset/with_intersect_80/B7
%%OCCROOT%%/tests/offset/with_intersect_80/B9
-%%OCCROOT%%/tests/offset/with_intersect_80/begin
%%OCCROOT%%/tests/offset/with_intersect_80/C1
%%OCCROOT%%/tests/offset/with_intersect_80/C2
%%OCCROOT%%/tests/offset/with_intersect_80/C3
@@ -16001,6 +16795,7 @@
%%OCCROOT%%/tests/offset/with_intersect_80/N4
%%OCCROOT%%/tests/offset/with_intersect_80/N5
%%OCCROOT%%/tests/offset/with_intersect_80/N7
+%%OCCROOT%%/tests/offset/with_intersect_80/begin
%%OCCROOT%%/tests/opengl/background/cases.list
%%OCCROOT%%/tests/opengl/begin
%%OCCROOT%%/tests/opengl/clipping/cases.list
@@ -16013,7 +16808,6 @@
%%OCCROOT%%/tests/opengl/data/background/bug26599
%%OCCROOT%%/tests/opengl/data/background/bug27836
%%OCCROOT%%/tests/opengl/data/background/elliptical
-%%OCCROOT%%/tests/opengl/data/background/skydome
%%OCCROOT%%/tests/opengl/data/background/srgb
%%OCCROOT%%/tests/opengl/data/clipping/bug22906
%%OCCROOT%%/tests/opengl/data/clipping/bug23484_2
@@ -16036,7 +16830,6 @@
%%OCCROOT%%/tests/opengl/data/clipping/bug30756
%%OCCROOT%%/tests/opengl/data/clipping/clipping1
%%OCCROOT%%/tests/opengl/data/general/bndbox1
-%%OCCROOT%%/tests/opengl/data/general/bug25679
%%OCCROOT%%/tests/opengl/data/general/bug32722
%%OCCROOT%%/tests/opengl/data/general/culldist
%%OCCROOT%%/tests/opengl/data/general/cullface
@@ -16074,7 +16867,6 @@
%%OCCROOT%%/tests/opengl/data/markers/bug31315
%%OCCROOT%%/tests/opengl/data/raytrace/bug24130
%%OCCROOT%%/tests/opengl/data/raytrace/bug24819
-%%OCCROOT%%/tests/opengl/data/raytrace/bug25201
%%OCCROOT%%/tests/opengl/data/raytrace/bug25221
%%OCCROOT%%/tests/opengl/data/raytrace/bug25833
%%OCCROOT%%/tests/opengl/data/raytrace/bug26070
@@ -16088,25 +16880,13 @@
%%OCCROOT%%/tests/opengl/data/raytrace/bug29395
%%OCCROOT%%/tests/opengl/data/raytrace/bug31279
%%OCCROOT%%/tests/opengl/data/raytrace/connected
-%%OCCROOT%%/tests/opengl/data/raytrace/dof_mono
-%%OCCROOT%%/tests/opengl/data/raytrace/dof_stereo
%%OCCROOT%%/tests/opengl/data/raytrace/helmet
%%OCCROOT%%/tests/opengl/data/raytrace/msaa
-%%OCCROOT%%/tests/opengl/data/raytrace/normal_map
-%%OCCROOT%%/tests/opengl/data/raytrace/pbr_spheres
%%OCCROOT%%/tests/opengl/data/raytrace/plastic
%%OCCROOT%%/tests/opengl/data/raytrace/refraction
%%OCCROOT%%/tests/opengl/data/raytrace/sample_ball
-%%OCCROOT%%/tests/opengl/data/raytrace/sample_ball_alpha
-%%OCCROOT%%/tests/opengl/data/raytrace/sample_ball_iss
-%%OCCROOT%%/tests/opengl/data/raytrace/sample_ball_wood
-%%OCCROOT%%/tests/opengl/data/raytrace/sample_cube
-%%OCCROOT%%/tests/opengl/data/raytrace/sample_cube_clamp
-%%OCCROOT%%/tests/opengl/data/raytrace/sample_cube_twosided
-%%OCCROOT%%/tests/opengl/data/raytrace/sample_materials
%%OCCROOT%%/tests/opengl/data/raytrace/textures
%%OCCROOT%%/tests/opengl/data/raytrace/tiles
-%%OCCROOT%%/tests/opengl/data/raytrace/tone_mapping
%%OCCROOT%%/tests/opengl/data/shaderprog/phong_box
%%OCCROOT%%/tests/opengl/data/shaderprog/phong_couple
%%OCCROOT%%/tests/opengl/data/shaderprog/phong_fuse
@@ -16123,7 +16903,6 @@
%%OCCROOT%%/tests/opengl/data/shading/gouraud_pos1
%%OCCROOT%%/tests/opengl/data/shading/gouraud_spot1
%%OCCROOT%%/tests/opengl/data/shading/pbr_attenuation
-%%OCCROOT%%/tests/opengl/data/shading/pbr_spheres
%%OCCROOT%%/tests/opengl/data/shading/phong_dir1
%%OCCROOT%%/tests/opengl/data/shading/phong_dir2
%%OCCROOT%%/tests/opengl/data/shading/phong_pos1
@@ -16131,7 +16910,6 @@
%%OCCROOT%%/tests/opengl/data/shading/phong_pos3
%%OCCROOT%%/tests/opengl/data/shading/phong_pos4
%%OCCROOT%%/tests/opengl/data/shading/phong_spot1
-%%OCCROOT%%/tests/opengl/data/shading/shading_models
%%OCCROOT%%/tests/opengl/data/shading/vert_color
%%OCCROOT%%/tests/opengl/data/shadows/buggy
%%OCCROOT%%/tests/opengl/data/shadows/dir1
@@ -16151,6 +16929,11 @@
%%OCCROOT%%/tests/opengl/data/text/A6
%%OCCROOT%%/tests/opengl/data/text/A7
%%OCCROOT%%/tests/opengl/data/text/A8
+%%OCCROOT%%/tests/opengl/data/text/C1
+%%OCCROOT%%/tests/opengl/data/text/C2
+%%OCCROOT%%/tests/opengl/data/text/C3
+%%OCCROOT%%/tests/opengl/data/text/C4
+%%OCCROOT%%/tests/opengl/data/text/D1
%%OCCROOT%%/tests/opengl/data/text/bug22149
%%OCCROOT%%/tests/opengl/data/text/bug22796_1
%%OCCROOT%%/tests/opengl/data/text/bug22796_2
@@ -16162,11 +16945,6 @@
%%OCCROOT%%/tests/opengl/data/text/bug28099_text_core
%%OCCROOT%%/tests/opengl/data/text/bug30922
%%OCCROOT%%/tests/opengl/data/text/bug31193
-%%OCCROOT%%/tests/opengl/data/text/C1
-%%OCCROOT%%/tests/opengl/data/text/C2
-%%OCCROOT%%/tests/opengl/data/text/C3
-%%OCCROOT%%/tests/opengl/data/text/C4
-%%OCCROOT%%/tests/opengl/data/text/D1
%%OCCROOT%%/tests/opengl/data/text/tabs
%%OCCROOT%%/tests/opengl/data/text/text_wrapped
%%OCCROOT%%/tests/opengl/data/textures/alpha_mask
@@ -16187,10 +16965,7 @@
%%OCCROOT%%/tests/opengl/data/textures/cubemap_2x3
%%OCCROOT%%/tests/opengl/data/textures/cubemap_3x2
%%OCCROOT%%/tests/opengl/data/textures/cubemap_6x1
-%%OCCROOT%%/tests/opengl/data/textures/cubemap_dds
-%%OCCROOT%%/tests/opengl/data/textures/cubemap_ibl
%%OCCROOT%%/tests/opengl/data/textures/cubemap_jpg
-%%OCCROOT%%/tests/opengl/data/textures/pbr_tangent_normal
%%OCCROOT%%/tests/opengl/data/textures/texture_3d
%%OCCROOT%%/tests/opengl/data/textures/texture_trsf
%%OCCROOT%%/tests/opengl/data/textures/texture_trsf2
@@ -16199,7 +16974,6 @@
%%OCCROOT%%/tests/opengl/data/transparency/bug28127
%%OCCROOT%%/tests/opengl/data/transparency/bug32143
%%OCCROOT%%/tests/opengl/data/transparency/highlight
-%%OCCROOT%%/tests/opengl/data/transparency/ior
%%OCCROOT%%/tests/opengl/data/transparency/oit
%%OCCROOT%%/tests/opengl/data/transparency/oit_osdtext_bug
%%OCCROOT%%/tests/opengl/data/transparency/transp1
@@ -16440,7 +17214,6 @@
%%OCCROOT%%/tests/persist/fsd/A8
%%OCCROOT%%/tests/persist/fsd/B1
%%OCCROOT%%/tests/persist/fsd/B2
-%%OCCROOT%%/tests/persist/fsd/begin
%%OCCROOT%%/tests/persist/fsd/C1
%%OCCROOT%%/tests/persist/fsd/C2
%%OCCROOT%%/tests/persist/fsd/S1
@@ -16458,6 +17231,7 @@
%%OCCROOT%%/tests/persist/fsd/S7
%%OCCROOT%%/tests/persist/fsd/S8
%%OCCROOT%%/tests/persist/fsd/S9
+%%OCCROOT%%/tests/persist/fsd/begin
%%OCCROOT%%/tests/persist/grids.list
%%OCCROOT%%/tests/pipe/begin
%%OCCROOT%%/tests/pipe/bugs/bug24049
@@ -16473,6 +17247,7 @@
%%OCCROOT%%/tests/pipe/bugs/bug31631
%%OCCROOT%%/tests/pipe/bugs/bug32807
%%OCCROOT%%/tests/pipe/bugs/bug32809
+%%OCCROOT%%/tests/pipe/bugs/bug32818
%%OCCROOT%%/tests/pipe/bugs/end
%%OCCROOT%%/tests/pipe/grids.list
%%OCCROOT%%/tests/pipe/parse.rules
@@ -16521,7 +17296,6 @@
%%OCCROOT%%/tests/pipe/specific/E7
%%OCCROOT%%/tests/pipe/specific/E8
%%OCCROOT%%/tests/pipe/specific/E9
-%%OCCROOT%%/tests/pipe/specific/end
%%OCCROOT%%/tests/pipe/specific/F1
%%OCCROOT%%/tests/pipe/specific/F2
%%OCCROOT%%/tests/pipe/specific/F3
@@ -16737,6 +17511,7 @@
%%OCCROOT%%/tests/pipe/specific/ZC6
%%OCCROOT%%/tests/pipe/specific/ZC7
%%OCCROOT%%/tests/pipe/specific/ZC8
+%%OCCROOT%%/tests/pipe/specific/end
%%OCCROOT%%/tests/pipe/standard/A1
%%OCCROOT%%/tests/pipe/standard/A2
%%OCCROOT%%/tests/pipe/standard/A3
@@ -16782,7 +17557,6 @@
%%OCCROOT%%/tests/pipe/standard/E7
%%OCCROOT%%/tests/pipe/standard/E8
%%OCCROOT%%/tests/pipe/standard/E9
-%%OCCROOT%%/tests/pipe/standard/end
%%OCCROOT%%/tests/pipe/standard/F1
%%OCCROOT%%/tests/pipe/standard/F2
%%OCCROOT%%/tests/pipe/standard/F3
@@ -16796,6 +17570,7 @@
%%OCCROOT%%/tests/pipe/standard/G4
%%OCCROOT%%/tests/pipe/standard/G5
%%OCCROOT%%/tests/pipe/standard/G6
+%%OCCROOT%%/tests/pipe/standard/end
%%OCCROOT%%/tests/prism/begin
%%OCCROOT%%/tests/prism/end
%%OCCROOT%%/tests/prism/grids.list
@@ -16901,7 +17676,6 @@
%%OCCROOT%%/tests/sewing/tol_0_01/B7
%%OCCROOT%%/tests/sewing/tol_0_01/B8
%%OCCROOT%%/tests/sewing/tol_0_01/B9
-%%OCCROOT%%/tests/sewing/tol_0_01/begin
%%OCCROOT%%/tests/sewing/tol_0_01/C1
%%OCCROOT%%/tests/sewing/tol_0_01/C2
%%OCCROOT%%/tests/sewing/tol_0_01/C3
@@ -17118,6 +17892,7 @@
%%OCCROOT%%/tests/sewing/tol_0_01/Z7
%%OCCROOT%%/tests/sewing/tol_0_01/Z8
%%OCCROOT%%/tests/sewing/tol_0_01/Z9
+%%OCCROOT%%/tests/sewing/tol_0_01/begin
%%OCCROOT%%/tests/sewing/tol_1/A1
%%OCCROOT%%/tests/sewing/tol_1/A2
%%OCCROOT%%/tests/sewing/tol_1/A3
@@ -17136,7 +17911,6 @@
%%OCCROOT%%/tests/sewing/tol_1/B7
%%OCCROOT%%/tests/sewing/tol_1/B8
%%OCCROOT%%/tests/sewing/tol_1/B9
-%%OCCROOT%%/tests/sewing/tol_1/begin
%%OCCROOT%%/tests/sewing/tol_1/C1
%%OCCROOT%%/tests/sewing/tol_1/C2
%%OCCROOT%%/tests/sewing/tol_1/C3
@@ -17353,6 +18127,7 @@
%%OCCROOT%%/tests/sewing/tol_1/Z7
%%OCCROOT%%/tests/sewing/tol_1/Z8
%%OCCROOT%%/tests/sewing/tol_1/Z9
+%%OCCROOT%%/tests/sewing/tol_1/begin
%%OCCROOT%%/tests/sewing/tol_100/A1
%%OCCROOT%%/tests/sewing/tol_100/A2
%%OCCROOT%%/tests/sewing/tol_100/A3
@@ -17371,7 +18146,6 @@
%%OCCROOT%%/tests/sewing/tol_100/B7
%%OCCROOT%%/tests/sewing/tol_100/B8
%%OCCROOT%%/tests/sewing/tol_100/B9
-%%OCCROOT%%/tests/sewing/tol_100/begin
%%OCCROOT%%/tests/sewing/tol_100/C1
%%OCCROOT%%/tests/sewing/tol_100/C2
%%OCCROOT%%/tests/sewing/tol_100/C3
@@ -17586,33 +18360,11 @@
%%OCCROOT%%/tests/sewing/tol_100/Z6
%%OCCROOT%%/tests/sewing/tol_100/Z7
%%OCCROOT%%/tests/sewing/tol_100/Z8
+%%OCCROOT%%/tests/sewing/tol_100/begin
%%OCCROOT%%/tests/thrusection/begin
%%OCCROOT%%/tests/thrusection/bugs/bug24997
%%OCCROOT%%/tests/thrusection/end
%%OCCROOT%%/tests/thrusection/grids.list
-%%OCCROOT%%/tests/thrusection/not_solids_locked/A1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/B1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/C1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/D1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/F1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/G1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/H1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/I1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/J1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/K1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/L1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/M1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/N1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/O1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/P1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/Q1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/R1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/S1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/T1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/U1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/V1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/W1
-%%OCCROOT%%/tests/thrusection/not_solids_locked/W8
%%OCCROOT%%/tests/thrusection/not_solids/A1
%%OCCROOT%%/tests/thrusection/not_solids/A2
%%OCCROOT%%/tests/thrusection/not_solids/A3
@@ -17819,16 +18571,30 @@
%%OCCROOT%%/tests/thrusection/not_solids/W6
%%OCCROOT%%/tests/thrusection/not_solids/W7
%%OCCROOT%%/tests/thrusection/not_solids/W8
+%%OCCROOT%%/tests/thrusection/not_solids_locked/A1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/B1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/C1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/D1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/F1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/G1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/H1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/I1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/J1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/K1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/L1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/M1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/N1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/O1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/P1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/Q1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/R1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/S1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/T1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/U1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/V1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/W1
+%%OCCROOT%%/tests/thrusection/not_solids_locked/W8
%%OCCROOT%%/tests/thrusection/parse.rules
-%%OCCROOT%%/tests/thrusection/solids_locked/A1
-%%OCCROOT%%/tests/thrusection/solids_locked/A2
-%%OCCROOT%%/tests/thrusection/solids_locked/A3
-%%OCCROOT%%/tests/thrusection/solids_locked/A4
-%%OCCROOT%%/tests/thrusection/solids_locked/A5
-%%OCCROOT%%/tests/thrusection/solids_locked/A6
-%%OCCROOT%%/tests/thrusection/solids_locked/A7
-%%OCCROOT%%/tests/thrusection/solids_locked/A8
-%%OCCROOT%%/tests/thrusection/solids_locked/A9
%%OCCROOT%%/tests/thrusection/solids/A1
%%OCCROOT%%/tests/thrusection/solids/A2
%%OCCROOT%%/tests/thrusection/solids/A3
@@ -17838,54 +18604,15 @@
%%OCCROOT%%/tests/thrusection/solids/A7
%%OCCROOT%%/tests/thrusection/solids/A8
%%OCCROOT%%/tests/thrusection/solids/A9
-%%OCCROOT%%/tests/thrusection/specific_locked/A1
-%%OCCROOT%%/tests/thrusection/specific_locked/A2
-%%OCCROOT%%/tests/thrusection/specific_locked/A3
-%%OCCROOT%%/tests/thrusection/specific_locked/A4
-%%OCCROOT%%/tests/thrusection/specific_locked/A6
-%%OCCROOT%%/tests/thrusection/specific_locked/A7
-%%OCCROOT%%/tests/thrusection/specific_locked/A8
-%%OCCROOT%%/tests/thrusection/specific_locked/B1
-%%OCCROOT%%/tests/thrusection/specific_locked/B2
-%%OCCROOT%%/tests/thrusection/specific_locked/B3
-%%OCCROOT%%/tests/thrusection/specific_locked/B5
-%%OCCROOT%%/tests/thrusection/specific_locked/B6
-%%OCCROOT%%/tests/thrusection/specific_locked/B7
-%%OCCROOT%%/tests/thrusection/specific_locked/B9
-%%OCCROOT%%/tests/thrusection/specific_locked/C1
-%%OCCROOT%%/tests/thrusection/specific_locked/C2
-%%OCCROOT%%/tests/thrusection/specific_locked/C4
-%%OCCROOT%%/tests/thrusection/specific_locked/C5
-%%OCCROOT%%/tests/thrusection/specific_locked/C6
-%%OCCROOT%%/tests/thrusection/specific_locked/C8
-%%OCCROOT%%/tests/thrusection/specific_locked/C9
-%%OCCROOT%%/tests/thrusection/specific_locked/D1
-%%OCCROOT%%/tests/thrusection/specific_locked/D3
-%%OCCROOT%%/tests/thrusection/specific_locked/D4
-%%OCCROOT%%/tests/thrusection/specific_locked/D5
-%%OCCROOT%%/tests/thrusection/specific_locked/D7
-%%OCCROOT%%/tests/thrusection/specific_locked/D8
-%%OCCROOT%%/tests/thrusection/specific_locked/D9
-%%OCCROOT%%/tests/thrusection/specific_locked/E1
-%%OCCROOT%%/tests/thrusection/specific_locked/E2
-%%OCCROOT%%/tests/thrusection/specific_locked/E3
-%%OCCROOT%%/tests/thrusection/specific_locked/E4
-%%OCCROOT%%/tests/thrusection/specific_locked/E6
-%%OCCROOT%%/tests/thrusection/specific_locked/E7
-%%OCCROOT%%/tests/thrusection/specific_locked/E8
-%%OCCROOT%%/tests/thrusection/specific_locked/F1
-%%OCCROOT%%/tests/thrusection/specific_locked/F2
-%%OCCROOT%%/tests/thrusection/specific_locked/F3
-%%OCCROOT%%/tests/thrusection/specific_locked/F5
-%%OCCROOT%%/tests/thrusection/specific_locked/F6
-%%OCCROOT%%/tests/thrusection/specific_locked/F7
-%%OCCROOT%%/tests/thrusection/specific_locked/F9
-%%OCCROOT%%/tests/thrusection/specific_locked/G1
-%%OCCROOT%%/tests/thrusection/specific_locked/G2
-%%OCCROOT%%/tests/thrusection/specific_locked/G4
-%%OCCROOT%%/tests/thrusection/specific_locked/G6
-%%OCCROOT%%/tests/thrusection/specific_locked/N5
-%%OCCROOT%%/tests/thrusection/specific_locked/N6
+%%OCCROOT%%/tests/thrusection/solids_locked/A1
+%%OCCROOT%%/tests/thrusection/solids_locked/A2
+%%OCCROOT%%/tests/thrusection/solids_locked/A3
+%%OCCROOT%%/tests/thrusection/solids_locked/A4
+%%OCCROOT%%/tests/thrusection/solids_locked/A5
+%%OCCROOT%%/tests/thrusection/solids_locked/A6
+%%OCCROOT%%/tests/thrusection/solids_locked/A7
+%%OCCROOT%%/tests/thrusection/solids_locked/A8
+%%OCCROOT%%/tests/thrusection/solids_locked/A9
%%OCCROOT%%/tests/thrusection/specific/A1
%%OCCROOT%%/tests/thrusection/specific/A2
%%OCCROOT%%/tests/thrusection/specific/A3
@@ -18006,23 +18733,54 @@
%%OCCROOT%%/tests/thrusection/specific/N4
%%OCCROOT%%/tests/thrusection/specific/N5
%%OCCROOT%%/tests/thrusection/specific/N6
-%%OCCROOT%%/tests/tools/begin
-%%OCCROOT%%/tests/tools/dfbrowser/A1
-%%OCCROOT%%/tests/tools/dfbrowser/A2
-%%OCCROOT%%/tests/tools/dfbrowser/A3
-%%OCCROOT%%/tests/tools/dfbrowser/A4
-%%OCCROOT%%/tests/tools/dfbrowser/A5
-%%OCCROOT%%/tests/tools/dfbrowser/A6
-%%OCCROOT%%/tests/tools/dfbrowser/A7
-%%OCCROOT%%/tests/tools/dfbrowser/A8
-%%OCCROOT%%/tests/tools/dfbrowser/A9
-%%OCCROOT%%/tests/tools/end
-%%OCCROOT%%/tests/tools/grids.list
-%%OCCROOT%%/tests/tools/parse.rules
-%%OCCROOT%%/tests/tools/shapeview/A1
-%%OCCROOT%%/tests/tools/shapeview/A2
-%%OCCROOT%%/tests/tools/vinspector/A1
-%%OCCROOT%%/tests/tools/vinspector/A2
+%%OCCROOT%%/tests/thrusection/specific_locked/A1
+%%OCCROOT%%/tests/thrusection/specific_locked/A2
+%%OCCROOT%%/tests/thrusection/specific_locked/A3
+%%OCCROOT%%/tests/thrusection/specific_locked/A4
+%%OCCROOT%%/tests/thrusection/specific_locked/A6
+%%OCCROOT%%/tests/thrusection/specific_locked/A7
+%%OCCROOT%%/tests/thrusection/specific_locked/A8
+%%OCCROOT%%/tests/thrusection/specific_locked/B1
+%%OCCROOT%%/tests/thrusection/specific_locked/B2
+%%OCCROOT%%/tests/thrusection/specific_locked/B3
+%%OCCROOT%%/tests/thrusection/specific_locked/B5
+%%OCCROOT%%/tests/thrusection/specific_locked/B6
+%%OCCROOT%%/tests/thrusection/specific_locked/B7
+%%OCCROOT%%/tests/thrusection/specific_locked/B9
+%%OCCROOT%%/tests/thrusection/specific_locked/C1
+%%OCCROOT%%/tests/thrusection/specific_locked/C2
+%%OCCROOT%%/tests/thrusection/specific_locked/C4
+%%OCCROOT%%/tests/thrusection/specific_locked/C5
+%%OCCROOT%%/tests/thrusection/specific_locked/C6
+%%OCCROOT%%/tests/thrusection/specific_locked/C8
+%%OCCROOT%%/tests/thrusection/specific_locked/C9
+%%OCCROOT%%/tests/thrusection/specific_locked/D1
+%%OCCROOT%%/tests/thrusection/specific_locked/D3
+%%OCCROOT%%/tests/thrusection/specific_locked/D4
+%%OCCROOT%%/tests/thrusection/specific_locked/D5
+%%OCCROOT%%/tests/thrusection/specific_locked/D7
+%%OCCROOT%%/tests/thrusection/specific_locked/D8
+%%OCCROOT%%/tests/thrusection/specific_locked/D9
+%%OCCROOT%%/tests/thrusection/specific_locked/E1
+%%OCCROOT%%/tests/thrusection/specific_locked/E2
+%%OCCROOT%%/tests/thrusection/specific_locked/E3
+%%OCCROOT%%/tests/thrusection/specific_locked/E4
+%%OCCROOT%%/tests/thrusection/specific_locked/E6
+%%OCCROOT%%/tests/thrusection/specific_locked/E7
+%%OCCROOT%%/tests/thrusection/specific_locked/E8
+%%OCCROOT%%/tests/thrusection/specific_locked/F1
+%%OCCROOT%%/tests/thrusection/specific_locked/F2
+%%OCCROOT%%/tests/thrusection/specific_locked/F3
+%%OCCROOT%%/tests/thrusection/specific_locked/F5
+%%OCCROOT%%/tests/thrusection/specific_locked/F6
+%%OCCROOT%%/tests/thrusection/specific_locked/F7
+%%OCCROOT%%/tests/thrusection/specific_locked/F9
+%%OCCROOT%%/tests/thrusection/specific_locked/G1
+%%OCCROOT%%/tests/thrusection/specific_locked/G2
+%%OCCROOT%%/tests/thrusection/specific_locked/G4
+%%OCCROOT%%/tests/thrusection/specific_locked/G6
+%%OCCROOT%%/tests/thrusection/specific_locked/N5
+%%OCCROOT%%/tests/thrusection/specific_locked/N6
%%OCCROOT%%/tests/v3d/anim/objects
%%OCCROOT%%/tests/v3d/anim/propeller
%%OCCROOT%%/tests/v3d/anim/rotate
@@ -18151,13 +18909,11 @@
%%OCCROOT%%/tests/v3d/bugs/bug25723
%%OCCROOT%%/tests/v3d/bugs/bug25723_1
%%OCCROOT%%/tests/v3d/bugs/bug25760_1
-%%OCCROOT%%/tests/v3d/bugs/bug25760_2
%%OCCROOT%%/tests/v3d/bugs/bug25767
%%OCCROOT%%/tests/v3d/bugs/bug25773
%%OCCROOT%%/tests/v3d/bugs/bug25777
%%OCCROOT%%/tests/v3d/bugs/bug25783_1
%%OCCROOT%%/tests/v3d/bugs/bug25814
-%%OCCROOT%%/tests/v3d/bugs/bug25853
%%OCCROOT%%/tests/v3d/bugs/bug25867
%%OCCROOT%%/tests/v3d/bugs/bug25935
%%OCCROOT%%/tests/v3d/bugs/bug26014
@@ -18182,6 +18938,8 @@
%%OCCROOT%%/tests/v3d/bugs/bug28093
%%OCCROOT%%/tests/v3d/bugs/bug28361
%%OCCROOT%%/tests/v3d/bugs/bug28621
+%%OCCROOT%%/tests/v3d/bugs/bug2883_1
+%%OCCROOT%%/tests/v3d/bugs/bug28890
%%OCCROOT%%/tests/v3d/bugs/bug288_1
%%OCCROOT%%/tests/v3d/bugs/bug288_10
%%OCCROOT%%/tests/v3d/bugs/bug288_2
@@ -18192,8 +18950,6 @@
%%OCCROOT%%/tests/v3d/bugs/bug288_7
%%OCCROOT%%/tests/v3d/bugs/bug288_8
%%OCCROOT%%/tests/v3d/bugs/bug288_9
-%%OCCROOT%%/tests/v3d/bugs/bug2883_1
-%%OCCROOT%%/tests/v3d/bugs/bug28890
%%OCCROOT%%/tests/v3d/bugs/bug28936
%%OCCROOT%%/tests/v3d/bugs/bug29020
%%OCCROOT%%/tests/v3d/bugs/bug29051
@@ -18207,9 +18963,7 @@
%%OCCROOT%%/tests/v3d/bugs/bug30146
%%OCCROOT%%/tests/v3d/bugs/bug30182
%%OCCROOT%%/tests/v3d/bugs/bug30412
-%%OCCROOT%%/tests/v3d/bugs/bug30434
%%OCCROOT%%/tests/v3d/bugs/bug30437
-%%OCCROOT%%/tests/v3d/bugs/bug30437_1
%%OCCROOT%%/tests/v3d/bugs/bug30561
%%OCCROOT%%/tests/v3d/bugs/bug30630_1
%%OCCROOT%%/tests/v3d/bugs/bug30630_2
@@ -18224,7 +18978,9 @@
%%OCCROOT%%/tests/v3d/bugs/bug31688
%%OCCROOT%%/tests/v3d/bugs/bug31794
%%OCCROOT%%/tests/v3d/bugs/bug319
+%%OCCROOT%%/tests/v3d/bugs/bug31956
%%OCCROOT%%/tests/v3d/bugs/bug31965
+%%OCCROOT%%/tests/v3d/bugs/bug32570
%%OCCROOT%%/tests/v3d/bugs/bug32978
%%OCCROOT%%/tests/v3d/bugs/bug331
%%OCCROOT%%/tests/v3d/bugs/bug331_1
@@ -18323,6 +19079,7 @@
%%OCCROOT%%/tests/v3d/manipulator/bug30669
%%OCCROOT%%/tests/v3d/manipulator/disable_parts
%%OCCROOT%%/tests/v3d/manipulator/drag_in_2d_view
+%%OCCROOT%%/tests/v3d/manipulator/drag_pan_zoom
%%OCCROOT%%/tests/v3d/manipulator/dragg
%%OCCROOT%%/tests/v3d/manipulator/rotate
%%OCCROOT%%/tests/v3d/manipulator/rotate2
@@ -18338,12 +19095,8 @@
%%OCCROOT%%/tests/v3d/materials/bug27818_2
%%OCCROOT%%/tests/v3d/materials/colors
%%OCCROOT%%/tests/v3d/materials/materials
-%%OCCROOT%%/tests/v3d/materials/pbr1
%%OCCROOT%%/tests/v3d/materials/phong1
%%OCCROOT%%/tests/v3d/materials/raytrace1
-%%OCCROOT%%/tests/v3d/memory/bug172
-%%OCCROOT%%/tests/v3d/memory/bug26538
-%%OCCROOT%%/tests/v3d/memory/bug29412
%%OCCROOT%%/tests/v3d/memory/bug5682
%%OCCROOT%%/tests/v3d/memory/bug79
%%OCCROOT%%/tests/v3d/mesh/A1
@@ -18362,11 +19115,11 @@
%%OCCROOT%%/tests/v3d/mesh/B6
%%OCCROOT%%/tests/v3d/mesh/B7
%%OCCROOT%%/tests/v3d/mesh/B8
+%%OCCROOT%%/tests/v3d/mesh/C1
%%OCCROOT%%/tests/v3d/mesh/begin
%%OCCROOT%%/tests/v3d/mesh/bug10781
%%OCCROOT%%/tests/v3d/mesh/bug11095
%%OCCROOT%%/tests/v3d/mesh/bug26028
-%%OCCROOT%%/tests/v3d/mesh/C1
%%OCCROOT%%/tests/v3d/parse.rules
%%OCCROOT%%/tests/v3d/point_cloud/sensitivebox
%%OCCROOT%%/tests/v3d/point_cloud/sphere
@@ -18391,13 +19144,10 @@
%%OCCROOT%%/tests/v3d/trsf/bug23120
%%OCCROOT%%/tests/v3d/trsf/bug23652
%%OCCROOT%%/tests/v3d/trsf/bug24358
-%%OCCROOT%%/tests/v3d/trsf/bug24623_3
-%%OCCROOT%%/tests/v3d/trsf/bug24623_4
%%OCCROOT%%/tests/v3d/trsf/bug24756
%%OCCROOT%%/tests/v3d/trsf/bug24837_1
%%OCCROOT%%/tests/v3d/trsf/bug24837_2
%%OCCROOT%%/tests/v3d/trsf/bug25276
-%%OCCROOT%%/tests/v3d/trsf/bug25532
%%OCCROOT%%/tests/v3d/trsf/bug26029
%%OCCROOT%%/tests/v3d/trsf/bug26199
%%OCCROOT%%/tests/v3d/trsf/bug26344
@@ -18471,7 +19221,6 @@
%%OCCROOT%%/tests/vselect/bugs/bug26959
%%OCCROOT%%/tests/vselect/bugs/bug26960
%%OCCROOT%%/tests/vselect/bugs/bug27008
-%%OCCROOT%%/tests/vselect/bugs/bug27318
%%OCCROOT%%/tests/vselect/bugs/bug27477
%%OCCROOT%%/tests/vselect/bugs/bug27523
%%OCCROOT%%/tests/vselect/bugs/bug27530
@@ -18482,6 +19231,7 @@
%%OCCROOT%%/tests/vselect/bugs/bug27796
%%OCCROOT%%/tests/vselect/bugs/bug27797
%%OCCROOT%%/tests/vselect/bugs/bug27805
+%%OCCROOT%%/tests/vselect/bugs/bug27848
%%OCCROOT%%/tests/vselect/bugs/bug27893
%%OCCROOT%%/tests/vselect/bugs/bug27986_1
%%OCCROOT%%/tests/vselect/bugs/bug27986_2
@@ -18529,37 +19279,37 @@
%%OCCROOT%%/tests/vselect/cone_cylinder/transformed_circle
%%OCCROOT%%/tests/vselect/cone_cylinder/trsf_cone
%%OCCROOT%%/tests/vselect/cone_cylinder/trsf_cyl
+%%OCCROOT%%/tests/vselect/edge/A10
+%%OCCROOT%%/tests/vselect/edge/B1
+%%OCCROOT%%/tests/vselect/edge/F2
+%%OCCROOT%%/tests/vselect/edge/begin
+%%OCCROOT%%/tests/vselect/edge/end
%%OCCROOT%%/tests/vselect/edge_face/B1
-%%OCCROOT%%/tests/vselect/edge_face/begin
-%%OCCROOT%%/tests/vselect/edge_face/end
%%OCCROOT%%/tests/vselect/edge_face/F2
%%OCCROOT%%/tests/vselect/edge_face/G3
%%OCCROOT%%/tests/vselect/edge_face/K4
%%OCCROOT%%/tests/vselect/edge_face/L5
%%OCCROOT%%/tests/vselect/edge_face/P6
+%%OCCROOT%%/tests/vselect/edge_face/begin
+%%OCCROOT%%/tests/vselect/edge_face/end
%%OCCROOT%%/tests/vselect/edge_solid/B1
-%%OCCROOT%%/tests/vselect/edge_solid/begin
-%%OCCROOT%%/tests/vselect/edge_solid/end
%%OCCROOT%%/tests/vselect/edge_solid/F2
%%OCCROOT%%/tests/vselect/edge_solid/G3
%%OCCROOT%%/tests/vselect/edge_solid/K4
%%OCCROOT%%/tests/vselect/edge_solid/L5
%%OCCROOT%%/tests/vselect/edge_solid/P6
-%%OCCROOT%%/tests/vselect/edge/A10
-%%OCCROOT%%/tests/vselect/edge/B1
-%%OCCROOT%%/tests/vselect/edge/begin
-%%OCCROOT%%/tests/vselect/edge/end
-%%OCCROOT%%/tests/vselect/edge/F2
+%%OCCROOT%%/tests/vselect/edge_solid/begin
+%%OCCROOT%%/tests/vselect/edge_solid/end
%%OCCROOT%%/tests/vselect/end
%%OCCROOT%%/tests/vselect/face/B1
-%%OCCROOT%%/tests/vselect/face/begin
-%%OCCROOT%%/tests/vselect/face/end
%%OCCROOT%%/tests/vselect/face/F2
%%OCCROOT%%/tests/vselect/face/F3
%%OCCROOT%%/tests/vselect/face/G1
%%OCCROOT%%/tests/vselect/face/G2
%%OCCROOT%%/tests/vselect/face/G3
%%OCCROOT%%/tests/vselect/face/G4
+%%OCCROOT%%/tests/vselect/face/begin
+%%OCCROOT%%/tests/vselect/face/end
%%OCCROOT%%/tests/vselect/grids.list
%%OCCROOT%%/tests/vselect/parse.rules
%%OCCROOT%%/tests/vselect/sphere/check_depth
@@ -18569,56 +19319,56 @@
%%OCCROOT%%/tests/vselect/sphere/rectangle_selection
%%OCCROOT%%/tests/vselect/sphere/single_click_selection
%%OCCROOT%%/tests/vselect/sphere/trsf
+%%OCCROOT%%/tests/vselect/vertex/A2
+%%OCCROOT%%/tests/vselect/vertex/A3
+%%OCCROOT%%/tests/vselect/vertex/A4
+%%OCCROOT%%/tests/vselect/vertex/A5
+%%OCCROOT%%/tests/vselect/vertex/A6
+%%OCCROOT%%/tests/vselect/vertex/A8
+%%OCCROOT%%/tests/vselect/vertex/B1
+%%OCCROOT%%/tests/vselect/vertex/B2
+%%OCCROOT%%/tests/vselect/vertex/B4
+%%OCCROOT%%/tests/vselect/vertex/B5
+%%OCCROOT%%/tests/vselect/vertex/B8
+%%OCCROOT%%/tests/vselect/vertex/C1
+%%OCCROOT%%/tests/vselect/vertex/F2
+%%OCCROOT%%/tests/vselect/vertex/begin
+%%OCCROOT%%/tests/vselect/vertex/end
%%OCCROOT%%/tests/vselect/vertex_edge/B1
-%%OCCROOT%%/tests/vselect/vertex_edge/begin
-%%OCCROOT%%/tests/vselect/vertex_edge/end
%%OCCROOT%%/tests/vselect/vertex_edge/F2
%%OCCROOT%%/tests/vselect/vertex_edge/G3
%%OCCROOT%%/tests/vselect/vertex_edge/K4
+%%OCCROOT%%/tests/vselect/vertex_edge/begin
+%%OCCROOT%%/tests/vselect/vertex_edge/end
%%OCCROOT%%/tests/vselect/vertex_face/B1
-%%OCCROOT%%/tests/vselect/vertex_face/begin
-%%OCCROOT%%/tests/vselect/vertex_face/end
%%OCCROOT%%/tests/vselect/vertex_face/F2
%%OCCROOT%%/tests/vselect/vertex_face/G3
%%OCCROOT%%/tests/vselect/vertex_face/K4
+%%OCCROOT%%/tests/vselect/vertex_face/begin
+%%OCCROOT%%/tests/vselect/vertex_face/end
%%OCCROOT%%/tests/vselect/vertex_solid/B1
-%%OCCROOT%%/tests/vselect/vertex_solid/begin
-%%OCCROOT%%/tests/vselect/vertex_solid/end
%%OCCROOT%%/tests/vselect/vertex_solid/F2
%%OCCROOT%%/tests/vselect/vertex_solid/G3
%%OCCROOT%%/tests/vselect/vertex_solid/K4
+%%OCCROOT%%/tests/vselect/vertex_solid/begin
+%%OCCROOT%%/tests/vselect/vertex_solid/end
%%OCCROOT%%/tests/vselect/vertex_wire/A1
%%OCCROOT%%/tests/vselect/vertex_wire/B1
-%%OCCROOT%%/tests/vselect/vertex_wire/begin
-%%OCCROOT%%/tests/vselect/vertex_wire/end
%%OCCROOT%%/tests/vselect/vertex_wire/F2
%%OCCROOT%%/tests/vselect/vertex_wire/G3
%%OCCROOT%%/tests/vselect/vertex_wire/K4
-%%OCCROOT%%/tests/vselect/vertex/A2
-%%OCCROOT%%/tests/vselect/vertex/A3
-%%OCCROOT%%/tests/vselect/vertex/A4
-%%OCCROOT%%/tests/vselect/vertex/A5
-%%OCCROOT%%/tests/vselect/vertex/A6
-%%OCCROOT%%/tests/vselect/vertex/A8
-%%OCCROOT%%/tests/vselect/vertex/B1
-%%OCCROOT%%/tests/vselect/vertex/B2
-%%OCCROOT%%/tests/vselect/vertex/B4
-%%OCCROOT%%/tests/vselect/vertex/B5
-%%OCCROOT%%/tests/vselect/vertex/B8
-%%OCCROOT%%/tests/vselect/vertex/begin
-%%OCCROOT%%/tests/vselect/vertex/C1
-%%OCCROOT%%/tests/vselect/vertex/end
-%%OCCROOT%%/tests/vselect/vertex/F2
+%%OCCROOT%%/tests/vselect/vertex_wire/begin
+%%OCCROOT%%/tests/vselect/vertex_wire/end
+%%OCCROOT%%/tests/vselect/wire/B1
+%%OCCROOT%%/tests/vselect/wire/F2
+%%OCCROOT%%/tests/vselect/wire/begin
%%OCCROOT%%/tests/vselect/wire_solid/B1
-%%OCCROOT%%/tests/vselect/wire_solid/begin
-%%OCCROOT%%/tests/vselect/wire_solid/end
%%OCCROOT%%/tests/vselect/wire_solid/F2
%%OCCROOT%%/tests/vselect/wire_solid/G3
%%OCCROOT%%/tests/vselect/wire_solid/K4
%%OCCROOT%%/tests/vselect/wire_solid/L1
-%%OCCROOT%%/tests/vselect/wire/B1
-%%OCCROOT%%/tests/vselect/wire/begin
-%%OCCROOT%%/tests/vselect/wire/F2
+%%OCCROOT%%/tests/vselect/wire_solid/begin
+%%OCCROOT%%/tests/vselect/wire_solid/end
%%OCCROOT%%/tests/vtk/begin
%%OCCROOT%%/tests/vtk/end
%%OCCROOT%%/tests/vtk/grids.list
@@ -19090,6 +19840,7 @@
%%OCCROOT%%/tests/xcaf/traverse/A2
%%OCCROOT%%/tests/xcaf/traverse/A3
%%OCCROOT%%/tests/xcaf/traverse/B1
+%%OCCROOT%%/tests/xcaf/xbf/A1
%%OCCROOT%%/tests/xcaf/xbf_add_ACL/A1
%%OCCROOT%%/tests/xcaf/xbf_add_CL/A1
%%OCCROOT%%/tests/xcaf/xbf_add_CL/A2
@@ -19160,7 +19911,6 @@
%%OCCROOT%%/tests/xcaf/xbf_add_CL/I4
%%OCCROOT%%/tests/xcaf/xbf_add_CL/I5
%%OCCROOT%%/tests/xcaf/xbf_add_CL/I6
-%%OCCROOT%%/tests/xcaf/xbf/A1
%%OCCROOT%%/tests/xml/begin
%%OCCROOT%%/tests/xml/data/ocaf/A1
%%OCCROOT%%/tests/xml/data/ocaf/A2
@@ -19219,12 +19969,14 @@ bin/DRAWEXE
include/OpenCASCADE/AIS.hxx
include/OpenCASCADE/AIS_AngleDimension.hxx
include/OpenCASCADE/AIS_Animation.hxx
+include/OpenCASCADE/AIS_AnimationAxisRotation.hxx
include/OpenCASCADE/AIS_AnimationCamera.hxx
include/OpenCASCADE/AIS_AnimationObject.hxx
include/OpenCASCADE/AIS_AnimationTimer.hxx
include/OpenCASCADE/AIS_AttributeFilter.hxx
include/OpenCASCADE/AIS_Axis.hxx
include/OpenCASCADE/AIS_BadEdgeFilter.hxx
+include/OpenCASCADE/AIS_BaseAnimationObject.hxx
include/OpenCASCADE/AIS_C0RegularityFilter.hxx
include/OpenCASCADE/AIS_CameraFrustum.hxx
include/OpenCASCADE/AIS_Chamf2dDimension.hxx
@@ -19586,12 +20338,9 @@ include/OpenCASCADE/BOPDS_PDS.hxx
include/OpenCASCADE/BOPDS_PIterator.hxx
include/OpenCASCADE/BOPDS_PIteratorSI.hxx
include/OpenCASCADE/BOPDS_Pair.hxx
-include/OpenCASCADE/BOPDS_PairMapHasher.hxx
include/OpenCASCADE/BOPDS_Pave.hxx
include/OpenCASCADE/BOPDS_Pave.lxx
include/OpenCASCADE/BOPDS_PaveBlock.hxx
-include/OpenCASCADE/BOPDS_PaveMapHasher.hxx
-include/OpenCASCADE/BOPDS_PaveMapHasher.lxx
include/OpenCASCADE/BOPDS_Point.hxx
include/OpenCASCADE/BOPDS_Point.lxx
include/OpenCASCADE/BOPDS_ShapeInfo.hxx
@@ -19635,8 +20384,6 @@ include/OpenCASCADE/BOPTools_MapOfSet.hxx
include/OpenCASCADE/BOPTools_PairSelector.hxx
include/OpenCASCADE/BOPTools_Parallel.hxx
include/OpenCASCADE/BOPTools_Set.hxx
-include/OpenCASCADE/BOPTools_SetMapHasher.hxx
-include/OpenCASCADE/BOPTools_SetMapHasher.lxx
include/OpenCASCADE/BRepAdaptor_Array1OfCurve.hxx
include/OpenCASCADE/BRepAdaptor_CompCurve.hxx
include/OpenCASCADE/BRepAdaptor_Curve.hxx
@@ -19901,6 +20648,7 @@ include/OpenCASCADE/BRepFill_SequenceOfSection.hxx
include/OpenCASCADE/BRepFill_ShapeLaw.hxx
include/OpenCASCADE/BRepFill_ShapeLaw.lxx
include/OpenCASCADE/BRepFill_Sweep.hxx
+include/OpenCASCADE/BRepFill_ThruSectionErrorStatus.hxx
include/OpenCASCADE/BRepFill_TransitionStyle.hxx
include/OpenCASCADE/BRepFill_TrimEdgeTool.hxx
include/OpenCASCADE/BRepFill_TrimShellCorner.hxx
@@ -20440,7 +21188,6 @@ include/OpenCASCADE/CDM_Application.hxx
include/OpenCASCADE/CDM_CanCloseStatus.hxx
include/OpenCASCADE/CDM_DataMapIteratorOfMetaDataLookUpTable.hxx
include/OpenCASCADE/CDM_Document.hxx
-include/OpenCASCADE/CDM_DocumentHasher.hxx
include/OpenCASCADE/CDM_DocumentPointer.hxx
include/OpenCASCADE/CDM_ListIteratorOfListOfDocument.hxx
include/OpenCASCADE/CDM_ListIteratorOfListOfReferences.hxx
@@ -20583,7 +21330,9 @@ include/OpenCASCADE/Convert_PolynomialCosAndSin.hxx
include/OpenCASCADE/Convert_SequenceOfArray1OfPoles.hxx
include/OpenCASCADE/Convert_SequenceOfArray1OfPoles2d.hxx
include/OpenCASCADE/Convert_SphereToBSplineSurface.hxx
+include/OpenCASCADE/Convert_Tools.hxx
include/OpenCASCADE/Convert_TorusToBSplineSurface.hxx
+include/OpenCASCADE/Convert_TransientShape.hxx
include/OpenCASCADE/DBRep.hxx
include/OpenCASCADE/DBRep_DrawableShape.hxx
include/OpenCASCADE/DBRep_Edge.hxx
@@ -20618,8 +21367,57 @@ include/OpenCASCADE/DEXCAFCascade_ConfigurationNode.hxx
include/OpenCASCADE/DEXCAFCascade_Provider.hxx
include/OpenCASCADE/DE_ConfigurationContext.hxx
include/OpenCASCADE/DE_ConfigurationNode.hxx
+include/OpenCASCADE/DE_PluginHolder.hxx
include/OpenCASCADE/DE_Provider.hxx
include/OpenCASCADE/DE_Wrapper.hxx
+include/OpenCASCADE/DFBrowserPane_AttributePane.hxx
+include/OpenCASCADE/DFBrowserPane_AttributePaneAPI.hxx
+include/OpenCASCADE/DFBrowserPane_AttributePaneCreator.hxx
+include/OpenCASCADE/DFBrowserPane_AttributePaneCreatorAPI.hxx
+include/OpenCASCADE/DFBrowserPane_AttributePaneModel.hxx
+include/OpenCASCADE/DFBrowserPane_AttributePaneSelector.hxx
+include/OpenCASCADE/DFBrowserPane_HelperArray.hxx
+include/OpenCASCADE/DFBrowserPane_HelperExport.hxx
+include/OpenCASCADE/DFBrowserPane_ItemDelegateButton.hxx
+include/OpenCASCADE/DFBrowserPane_ItemRole.hxx
+include/OpenCASCADE/DFBrowserPane_OcctEnumType.hxx
+include/OpenCASCADE/DFBrowserPane_SelectionKind.hxx
+include/OpenCASCADE/DFBrowserPane_TDFReference.hxx
+include/OpenCASCADE/DFBrowserPane_TDataStdReferenceArray.hxx
+include/OpenCASCADE/DFBrowserPane_TDataStdReferenceList.hxx
+include/OpenCASCADE/DFBrowserPane_TDataStdTreeNode.hxx
+include/OpenCASCADE/DFBrowserPane_TDataStdTreeNodeItem.hxx
+include/OpenCASCADE/DFBrowserPane_TDataStdTreeNodeModel.hxx
+include/OpenCASCADE/DFBrowserPane_TNamingNamedShape.hxx
+include/OpenCASCADE/DFBrowserPane_TNamingNaming.hxx
+include/OpenCASCADE/DFBrowserPane_TNamingUsedShapes.hxx
+include/OpenCASCADE/DFBrowserPane_TableView.hxx
+include/OpenCASCADE/DFBrowserPane_Tools.hxx
+include/OpenCASCADE/DFBrowser_AttributePaneStack.hxx
+include/OpenCASCADE/DFBrowser_AttributePaneType.hxx
+include/OpenCASCADE/DFBrowser_Communicator.hxx
+include/OpenCASCADE/DFBrowser_DumpView.hxx
+include/OpenCASCADE/DFBrowser_HighlightDelegate.hxx
+include/OpenCASCADE/DFBrowser_Item.hxx
+include/OpenCASCADE/DFBrowser_ItemApplication.hxx
+include/OpenCASCADE/DFBrowser_ItemBase.hxx
+include/OpenCASCADE/DFBrowser_ItemDocument.hxx
+include/OpenCASCADE/DFBrowser_ItemRole.hxx
+include/OpenCASCADE/DFBrowser_Module.hxx
+include/OpenCASCADE/DFBrowser_OpenApplication.hxx
+include/OpenCASCADE/DFBrowser_PropertyPanel.hxx
+include/OpenCASCADE/DFBrowser_SearchItemInfo.hxx
+include/OpenCASCADE/DFBrowser_SearchLine.hxx
+include/OpenCASCADE/DFBrowser_SearchLineModel.hxx
+include/OpenCASCADE/DFBrowser_SearchView.hxx
+include/OpenCASCADE/DFBrowser_Tools.hxx
+include/OpenCASCADE/DFBrowser_TreeLevelLine.hxx
+include/OpenCASCADE/DFBrowser_TreeLevelLineDelegate.hxx
+include/OpenCASCADE/DFBrowser_TreeLevelLineModel.hxx
+include/OpenCASCADE/DFBrowser_TreeLevelView.hxx
+include/OpenCASCADE/DFBrowser_TreeLevelViewModel.hxx
+include/OpenCASCADE/DFBrowser_TreeModel.hxx
+include/OpenCASCADE/DFBrowser_Window.hxx
include/OpenCASCADE/DNaming.hxx
include/OpenCASCADE/DNaming_BooleanOperationDriver.hxx
include/OpenCASCADE/DNaming_BoxDriver.hxx
@@ -22629,7 +23427,6 @@ include/OpenCASCADE/IntPolyh_ArrayOfSectionLines.hxx
include/OpenCASCADE/IntPolyh_ArrayOfTangentZones.hxx
include/OpenCASCADE/IntPolyh_ArrayOfTriangles.hxx
include/OpenCASCADE/IntPolyh_Couple.hxx
-include/OpenCASCADE/IntPolyh_CoupleMapHasher.hxx
include/OpenCASCADE/IntPolyh_Edge.hxx
include/OpenCASCADE/IntPolyh_Intersection.hxx
include/OpenCASCADE/IntPolyh_ListOfCouples.hxx
@@ -22706,8 +23503,6 @@ include/OpenCASCADE/IntTools_Context.hxx
include/OpenCASCADE/IntTools_Curve.hxx
include/OpenCASCADE/IntTools_CurveRangeLocalizeData.hxx
include/OpenCASCADE/IntTools_CurveRangeSample.hxx
-include/OpenCASCADE/IntTools_CurveRangeSampleMapHasher.hxx
-include/OpenCASCADE/IntTools_DataMapIteratorOfDataMapOfCurveSampleBox.hxx
include/OpenCASCADE/IntTools_DataMapIteratorOfDataMapOfSurfaceSampleBox.hxx
include/OpenCASCADE/IntTools_DataMapOfCurveSampleBox.hxx
include/OpenCASCADE/IntTools_DataMapOfSurfaceSampleBox.hxx
@@ -22741,7 +23536,6 @@ include/OpenCASCADE/IntTools_SurfaceRangeLocalizeData.hxx
include/OpenCASCADE/IntTools_SurfaceRangeLocalizeData.lxx
include/OpenCASCADE/IntTools_SurfaceRangeSample.hxx
include/OpenCASCADE/IntTools_SurfaceRangeSample.lxx
-include/OpenCASCADE/IntTools_SurfaceRangeSampleMapHasher.hxx
include/OpenCASCADE/IntTools_Tools.hxx
include/OpenCASCADE/IntTools_TopolTool.hxx
include/OpenCASCADE/IntTools_WLineTool.hxx
@@ -22804,7 +23598,6 @@ include/OpenCASCADE/Interface_JaggedArray.gxx
include/OpenCASCADE/Interface_LineBuffer.hxx
include/OpenCASCADE/Interface_MSG.hxx
include/OpenCASCADE/Interface_Macros.hxx
-include/OpenCASCADE/Interface_MapAsciiStringHasher.hxx
include/OpenCASCADE/Interface_NodeOfGeneralLib.hxx
include/OpenCASCADE/Interface_NodeOfReaderLib.hxx
include/OpenCASCADE/Interface_ParamList.hxx
@@ -22973,8 +23766,6 @@ include/OpenCASCADE/MAT2d_DataMapOfIntegerConnexion.hxx
include/OpenCASCADE/MAT2d_DataMapOfIntegerPnt2d.hxx
include/OpenCASCADE/MAT2d_DataMapOfIntegerSequenceOfConnexion.hxx
include/OpenCASCADE/MAT2d_DataMapOfIntegerVec2d.hxx
-include/OpenCASCADE/MAT2d_MapBiIntHasher.hxx
-include/OpenCASCADE/MAT2d_MapBiIntHasher.lxx
include/OpenCASCADE/MAT2d_Mat2d.hxx
include/OpenCASCADE/MAT2d_MiniPath.hxx
include/OpenCASCADE/MAT2d_SequenceOfConnexion.hxx
@@ -23076,11 +23867,21 @@ include/OpenCASCADE/MeshVS_SymmetricPairHasher.hxx
include/OpenCASCADE/MeshVS_TextPrsBuilder.hxx
include/OpenCASCADE/MeshVS_Tool.hxx
include/OpenCASCADE/MeshVS_TwoColors.hxx
-include/OpenCASCADE/MeshVS_TwoColorsHasher.hxx
include/OpenCASCADE/MeshVS_TwoNodes.hxx
-include/OpenCASCADE/MeshVS_TwoNodesHasher.hxx
include/OpenCASCADE/MeshVS_VectorPrsBuilder.hxx
include/OpenCASCADE/Message.hxx
+include/OpenCASCADE/MessageModel_ActionType.hxx
+include/OpenCASCADE/MessageModel_Actions.hxx
+include/OpenCASCADE/MessageModel_ItemAlert.hxx
+include/OpenCASCADE/MessageModel_ItemBase.hxx
+include/OpenCASCADE/MessageModel_ItemReport.hxx
+include/OpenCASCADE/MessageModel_ItemRoot.hxx
+include/OpenCASCADE/MessageModel_TreeModel.hxx
+include/OpenCASCADE/MessageView_ActionsTest.hxx
+include/OpenCASCADE/MessageView_Communicator.hxx
+include/OpenCASCADE/MessageView_MetricStatisticModel.hxx
+include/OpenCASCADE/MessageView_VisibilityState.hxx
+include/OpenCASCADE/MessageView_Window.hxx
include/OpenCASCADE/Message_Alert.hxx
include/OpenCASCADE/Message_AlertExtended.hxx
include/OpenCASCADE/Message_Algorithm.hxx
@@ -23124,13 +23925,10 @@ include/OpenCASCADE/MoniTool_DataMapIteratorOfDataMapOfShapeTransient.hxx
include/OpenCASCADE/MoniTool_DataMapIteratorOfDataMapOfTimer.hxx
include/OpenCASCADE/MoniTool_DataMapOfShapeTransient.hxx
include/OpenCASCADE/MoniTool_DataMapOfTimer.hxx
-include/OpenCASCADE/MoniTool_ElemHasher.hxx
include/OpenCASCADE/MoniTool_Element.hxx
include/OpenCASCADE/MoniTool_HSequenceOfElement.hxx
include/OpenCASCADE/MoniTool_IndexedDataMapOfShapeTransient.hxx
include/OpenCASCADE/MoniTool_IntVal.hxx
-include/OpenCASCADE/MoniTool_MTHasher.hxx
-include/OpenCASCADE/MoniTool_MTHasher.lxx
include/OpenCASCADE/MoniTool_Macros.hxx
include/OpenCASCADE/MoniTool_RealVal.hxx
include/OpenCASCADE/MoniTool_SequenceOfElement.hxx
@@ -23149,32 +23947,25 @@ include/OpenCASCADE/MoniTool_ValueType.hxx
include/OpenCASCADE/NCollection_AccAllocator.hxx
include/OpenCASCADE/NCollection_AliasedArray.hxx
include/OpenCASCADE/NCollection_AlignedAllocator.hxx
+include/OpenCASCADE/NCollection_Allocator.hxx
include/OpenCASCADE/NCollection_Array1.hxx
include/OpenCASCADE/NCollection_Array2.hxx
include/OpenCASCADE/NCollection_BaseAllocator.hxx
include/OpenCASCADE/NCollection_BaseList.hxx
include/OpenCASCADE/NCollection_BaseMap.hxx
+include/OpenCASCADE/NCollection_BasePointerVector.hxx
include/OpenCASCADE/NCollection_BaseSequence.hxx
-include/OpenCASCADE/NCollection_BaseVector.hxx
include/OpenCASCADE/NCollection_Buffer.hxx
include/OpenCASCADE/NCollection_CellFilter.hxx
include/OpenCASCADE/NCollection_DataMap.hxx
include/OpenCASCADE/NCollection_DefaultHasher.hxx
include/OpenCASCADE/NCollection_DefineAlloc.hxx
-include/OpenCASCADE/NCollection_DefineArray1.hxx
-include/OpenCASCADE/NCollection_DefineArray2.hxx
-include/OpenCASCADE/NCollection_DefineDataMap.hxx
-include/OpenCASCADE/NCollection_DefineDoubleMap.hxx
include/OpenCASCADE/NCollection_DefineHArray1.hxx
include/OpenCASCADE/NCollection_DefineHArray2.hxx
include/OpenCASCADE/NCollection_DefineHSequence.hxx
-include/OpenCASCADE/NCollection_DefineIndexedDataMap.hxx
-include/OpenCASCADE/NCollection_DefineIndexedMap.hxx
-include/OpenCASCADE/NCollection_DefineList.hxx
-include/OpenCASCADE/NCollection_DefineMap.hxx
-include/OpenCASCADE/NCollection_DefineSequence.hxx
-include/OpenCASCADE/NCollection_DefineVector.hxx
+include/OpenCASCADE/NCollection_DefineHasher.hxx
include/OpenCASCADE/NCollection_DoubleMap.hxx
+include/OpenCASCADE/NCollection_DynamicArray.hxx
include/OpenCASCADE/NCollection_EBTree.hxx
include/OpenCASCADE/NCollection_HArray1.hxx
include/OpenCASCADE/NCollection_HArray2.hxx
@@ -23184,7 +23975,9 @@ include/OpenCASCADE/NCollection_Handle.hxx
include/OpenCASCADE/NCollection_HeapAllocator.hxx
include/OpenCASCADE/NCollection_IncAllocator.hxx
include/OpenCASCADE/NCollection_IndexedDataMap.hxx
+include/OpenCASCADE/NCollection_IndexedIterator.hxx
include/OpenCASCADE/NCollection_IndexedMap.hxx
+include/OpenCASCADE/NCollection_Iterator.hxx
include/OpenCASCADE/NCollection_Lerp.hxx
include/OpenCASCADE/NCollection_List.hxx
include/OpenCASCADE/NCollection_ListNode.hxx
@@ -23192,11 +23985,11 @@ include/OpenCASCADE/NCollection_LocalArray.hxx
include/OpenCASCADE/NCollection_Map.hxx
include/OpenCASCADE/NCollection_Mat3.hxx
include/OpenCASCADE/NCollection_Mat4.hxx
+include/OpenCASCADE/NCollection_OccAllocator.hxx
include/OpenCASCADE/NCollection_Sequence.hxx
include/OpenCASCADE/NCollection_Shared.hxx
include/OpenCASCADE/NCollection_SparseArray.hxx
include/OpenCASCADE/NCollection_SparseArrayBase.hxx
-include/OpenCASCADE/NCollection_StdAllocator.hxx
include/OpenCASCADE/NCollection_StlIterator.hxx
include/OpenCASCADE/NCollection_String.hxx
include/OpenCASCADE/NCollection_TListIterator.hxx
@@ -23593,9 +24386,7 @@ include/OpenCASCADE/QANCollection_ListIteratorOfListOfPnt.hxx
include/OpenCASCADE/QANCollection_ListOfPnt.hxx
include/OpenCASCADE/Quantity_Array1OfColor.hxx
include/OpenCASCADE/Quantity_Color.hxx
-include/OpenCASCADE/Quantity_ColorHasher.hxx
include/OpenCASCADE/Quantity_ColorRGBA.hxx
-include/OpenCASCADE/Quantity_ColorRGBAHasher.hxx
include/OpenCASCADE/Quantity_Date.hxx
include/OpenCASCADE/Quantity_DateDefinitionError.hxx
include/OpenCASCADE/Quantity_HArray1OfColor.hxx
@@ -24349,6 +25140,7 @@ include/OpenCASCADE/RWStepVisual_RWTextStyle.hxx
include/OpenCASCADE/RWStepVisual_RWTextStyleForDefinedFont.hxx
include/OpenCASCADE/RWStepVisual_RWTextStyleWithBoxCharacteristics.hxx
include/OpenCASCADE/RWStepVisual_RWTriangulatedFace.hxx
+include/OpenCASCADE/RWStepVisual_RWTriangulatedSurfaceSet.hxx
include/OpenCASCADE/RWStepVisual_RWViewVolume.hxx
include/OpenCASCADE/RWStl.hxx
include/OpenCASCADE/RWStl_ConfigurationNode.hxx
@@ -24393,8 +25185,6 @@ include/OpenCASCADE/STEPConstruct_DataMapOfAsciiStringTransient.hxx
include/OpenCASCADE/STEPConstruct_DataMapOfPointTransient.hxx
include/OpenCASCADE/STEPConstruct_ExternRefs.hxx
include/OpenCASCADE/STEPConstruct_Part.hxx
-include/OpenCASCADE/STEPConstruct_PointHasher.hxx
-include/OpenCASCADE/STEPConstruct_PointHasher.lxx
include/OpenCASCADE/STEPConstruct_Styles.hxx
include/OpenCASCADE/STEPConstruct_Tool.hxx
include/OpenCASCADE/STEPConstruct_Tool.lxx
@@ -24677,9 +25467,17 @@ include/OpenCASCADE/ShapeUpgrade_Tool.hxx
include/OpenCASCADE/ShapeUpgrade_Tool.lxx
include/OpenCASCADE/ShapeUpgrade_UnifySameDomain.hxx
include/OpenCASCADE/ShapeUpgrade_WireDivide.hxx
+include/OpenCASCADE/ShapeView_Communicator.hxx
+include/OpenCASCADE/ShapeView_ItemRoot.hxx
+include/OpenCASCADE/ShapeView_ItemShape.hxx
+include/OpenCASCADE/ShapeView_OpenFileDialog.hxx
+include/OpenCASCADE/ShapeView_OpenFileViewModel.hxx
+include/OpenCASCADE/ShapeView_Tools.hxx
+include/OpenCASCADE/ShapeView_TreeModel.hxx
+include/OpenCASCADE/ShapeView_VisibilityState.hxx
+include/OpenCASCADE/ShapeView_Window.hxx
include/OpenCASCADE/Standard.hxx
include/OpenCASCADE/Standard_AbortiveTransaction.hxx
-include/OpenCASCADE/Standard_Address.hxx
include/OpenCASCADE/Standard_ArrayStreamBuffer.hxx
include/OpenCASCADE/Standard_Assert.hxx
include/OpenCASCADE/Standard_Atomic.hxx
@@ -24687,6 +25485,7 @@ include/OpenCASCADE/Standard_Boolean.hxx
include/OpenCASCADE/Standard_Byte.hxx
include/OpenCASCADE/Standard_CLocaleSentry.hxx
include/OpenCASCADE/Standard_CString.hxx
+include/OpenCASCADE/Standard_CStringHasher.hxx
include/OpenCASCADE/Standard_Character.hxx
include/OpenCASCADE/Standard_Condition.hxx
include/OpenCASCADE/Standard_ConstructionError.hxx
@@ -24700,11 +25499,12 @@ include/OpenCASCADE/Standard_DomainError.hxx
include/OpenCASCADE/Standard_Dump.hxx
include/OpenCASCADE/Standard_ErrorHandler.hxx
include/OpenCASCADE/Standard_ExtCharacter.hxx
-include/OpenCASCADE/Standard_ExtString.hxx
include/OpenCASCADE/Standard_Failure.hxx
include/OpenCASCADE/Standard_GUID.hxx
include/OpenCASCADE/Standard_Handle.hxx
include/OpenCASCADE/Standard_HandlerStatus.hxx
+include/OpenCASCADE/Standard_HashUtils.hxx
+include/OpenCASCADE/Standard_HashUtils.lxx
include/OpenCASCADE/Standard_IStream.hxx
include/OpenCASCADE/Standard_ImmutableObject.hxx
include/OpenCASCADE/Standard_Integer.hxx
@@ -24712,10 +25512,9 @@ include/OpenCASCADE/Standard_JmpBuf.hxx
include/OpenCASCADE/Standard_LicenseError.hxx
include/OpenCASCADE/Standard_LicenseNotFound.hxx
include/OpenCASCADE/Standard_MMgrOpt.hxx
-include/OpenCASCADE/Standard_MMgrRaw.hxx
include/OpenCASCADE/Standard_MMgrRoot.hxx
-include/OpenCASCADE/Standard_MMgrTBBalloc.hxx
include/OpenCASCADE/Standard_Macro.hxx
+include/OpenCASCADE/Standard_MemoryUtils.hxx
include/OpenCASCADE/Standard_MultiplyDefined.hxx
include/OpenCASCADE/Standard_Mutex.hxx
include/OpenCASCADE/Standard_NegativeValue.hxx
@@ -24742,7 +25541,6 @@ include/OpenCASCADE/Standard_ReadLineBuffer.hxx
include/OpenCASCADE/Standard_Real.hxx
include/OpenCASCADE/Standard_SStream.hxx
include/OpenCASCADE/Standard_ShortReal.hxx
-include/OpenCASCADE/Standard_Size.hxx
include/OpenCASCADE/Standard_Std.hxx
include/OpenCASCADE/Standard_Stream.hxx
include/OpenCASCADE/Standard_ThreadId.hxx
@@ -24757,8 +25555,6 @@ include/OpenCASCADE/Standard_Version.hxx
include/OpenCASCADE/Standard_WarningDisableFunctionCast.hxx
include/OpenCASCADE/Standard_WarningsDisable.hxx
include/OpenCASCADE/Standard_WarningsRestore.hxx
-include/OpenCASCADE/Standard_math.hxx
-include/OpenCASCADE/Standard_values.h
include/OpenCASCADE/StdDrivers.hxx
include/OpenCASCADE/StdDrivers_DocumentRetrievalDriver.hxx
include/OpenCASCADE/StdFail_InfiniteSolutions.hxx
@@ -25153,12 +25949,14 @@ include/OpenCASCADE/StepBasic_VolumeUnit.hxx
include/OpenCASCADE/StepBasic_WeekOfYearAndDayDate.hxx
include/OpenCASCADE/StepData.hxx
include/OpenCASCADE/StepData_Array1OfField.hxx
+include/OpenCASCADE/StepData_ConfParameters.hxx
include/OpenCASCADE/StepData_DefaultGeneral.hxx
include/OpenCASCADE/StepData_Described.hxx
include/OpenCASCADE/StepData_ECDescr.hxx
include/OpenCASCADE/StepData_EDescr.hxx
include/OpenCASCADE/StepData_ESDescr.hxx
include/OpenCASCADE/StepData_EnumTool.hxx
+include/OpenCASCADE/StepData_Factors.hxx
include/OpenCASCADE/StepData_Field.hxx
include/OpenCASCADE/StepData_FieldList.hxx
include/OpenCASCADE/StepData_FieldList1.hxx
@@ -25168,7 +25966,6 @@ include/OpenCASCADE/StepData_FileProtocol.hxx
include/OpenCASCADE/StepData_FileRecognizer.hxx
include/OpenCASCADE/StepData_FreeFormEntity.hxx
include/OpenCASCADE/StepData_GeneralModule.hxx
-include/OpenCASCADE/StepData_GlobalFactors.hxx
include/OpenCASCADE/StepData_GlobalNodeOfWriterLib.hxx
include/OpenCASCADE/StepData_HArray1OfField.hxx
include/OpenCASCADE/StepData_Logical.hxx
@@ -25855,7 +26652,6 @@ include/OpenCASCADE/StepToGeom.hxx
include/OpenCASCADE/StepToTopoDS.hxx
include/OpenCASCADE/StepToTopoDS_Builder.hxx
include/OpenCASCADE/StepToTopoDS_BuilderError.hxx
-include/OpenCASCADE/StepToTopoDS_CartesianPointHasher.hxx
include/OpenCASCADE/StepToTopoDS_DataMapIteratorOfDataMapOfRI.hxx
include/OpenCASCADE/StepToTopoDS_DataMapIteratorOfDataMapOfRINames.hxx
include/OpenCASCADE/StepToTopoDS_DataMapIteratorOfDataMapOfTRI.hxx
@@ -25870,7 +26666,6 @@ include/OpenCASCADE/StepToTopoDS_MakeTransformed.hxx
include/OpenCASCADE/StepToTopoDS_NMTool.hxx
include/OpenCASCADE/StepToTopoDS_PointEdgeMap.hxx
include/OpenCASCADE/StepToTopoDS_PointPair.hxx
-include/OpenCASCADE/StepToTopoDS_PointPairHasher.hxx
include/OpenCASCADE/StepToTopoDS_PointVertexMap.hxx
include/OpenCASCADE/StepToTopoDS_Root.hxx
include/OpenCASCADE/StepToTopoDS_Root.lxx
@@ -26069,6 +26864,7 @@ include/OpenCASCADE/StepVisual_TextStyle.hxx
include/OpenCASCADE/StepVisual_TextStyleForDefinedFont.hxx
include/OpenCASCADE/StepVisual_TextStyleWithBoxCharacteristics.hxx
include/OpenCASCADE/StepVisual_TriangulatedFace.hxx
+include/OpenCASCADE/StepVisual_TriangulatedSurfaceSet.hxx
include/OpenCASCADE/StepVisual_ViewVolume.hxx
include/OpenCASCADE/StlAPI.hxx
include/OpenCASCADE/StlAPI_Reader.hxx
@@ -26207,7 +27003,6 @@ include/OpenCASCADE/TColStd_ListOfAsciiString.hxx
include/OpenCASCADE/TColStd_ListOfInteger.hxx
include/OpenCASCADE/TColStd_ListOfReal.hxx
include/OpenCASCADE/TColStd_ListOfTransient.hxx
-include/OpenCASCADE/TColStd_MapIntegerHasher.hxx
include/OpenCASCADE/TColStd_MapIteratorOfMapOfAsciiString.hxx
include/OpenCASCADE/TColStd_MapIteratorOfMapOfInteger.hxx
include/OpenCASCADE/TColStd_MapIteratorOfMapOfReal.hxx
@@ -26217,8 +27012,6 @@ include/OpenCASCADE/TColStd_MapOfAsciiString.hxx
include/OpenCASCADE/TColStd_MapOfInteger.hxx
include/OpenCASCADE/TColStd_MapOfReal.hxx
include/OpenCASCADE/TColStd_MapOfTransient.hxx
-include/OpenCASCADE/TColStd_MapRealHasher.hxx
-include/OpenCASCADE/TColStd_MapTransientHasher.hxx
include/OpenCASCADE/TColStd_PackedMapOfInteger.hxx
include/OpenCASCADE/TColStd_SequenceOfAddress.hxx
include/OpenCASCADE/TColStd_SequenceOfAsciiString.hxx
@@ -26354,7 +27147,6 @@ include/OpenCASCADE/TDF_LabelIndexedMap.hxx
include/OpenCASCADE/TDF_LabelIntegerMap.hxx
include/OpenCASCADE/TDF_LabelList.hxx
include/OpenCASCADE/TDF_LabelMap.hxx
-include/OpenCASCADE/TDF_LabelMapHasher.hxx
include/OpenCASCADE/TDF_LabelNode.hxx
include/OpenCASCADE/TDF_LabelNodePtr.hxx
include/OpenCASCADE/TDF_LabelSequence.hxx
@@ -26496,6 +27288,17 @@ include/OpenCASCADE/TFunction_Iterator.hxx
include/OpenCASCADE/TFunction_Logbook.hxx
include/OpenCASCADE/TFunction_Logbook.lxx
include/OpenCASCADE/TFunction_Scope.hxx
+include/OpenCASCADE/TInspectorAPI_Communicator.hxx
+include/OpenCASCADE/TInspectorAPI_PluginParameters.hxx
+include/OpenCASCADE/TInspectorAPI_PreferencesDataMap.hxx
+include/OpenCASCADE/TInspector_Communicator.hxx
+include/OpenCASCADE/TInspector_OpenButton.hxx
+include/OpenCASCADE/TInspector_OpenFileDialog.hxx
+include/OpenCASCADE/TInspector_OpenFileViewModel.hxx
+include/OpenCASCADE/TInspector_PluginParameters.hxx
+include/OpenCASCADE/TInspector_Preferences.hxx
+include/OpenCASCADE/TInspector_Shortcut.hxx
+include/OpenCASCADE/TInspector_Window.hxx
include/OpenCASCADE/TNaming.hxx
include/OpenCASCADE/TNaming_Builder.hxx
include/OpenCASCADE/TNaming_CopyShape.hxx
@@ -26525,7 +27328,6 @@ include/OpenCASCADE/TNaming_Name.hxx
include/OpenCASCADE/TNaming_NameType.hxx
include/OpenCASCADE/TNaming_NamedShape.hxx
include/OpenCASCADE/TNaming_NamedShape.lxx
-include/OpenCASCADE/TNaming_NamedShapeHasher.hxx
include/OpenCASCADE/TNaming_Naming.hxx
include/OpenCASCADE/TNaming_NamingTool.hxx
include/OpenCASCADE/TNaming_NewShapeIterator.hxx
@@ -26552,7 +27354,6 @@ include/OpenCASCADE/TObjDRAW.hxx
include/OpenCASCADE/TObj_Application.hxx
include/OpenCASCADE/TObj_Assistant.hxx
include/OpenCASCADE/TObj_CheckModel.hxx
-include/OpenCASCADE/TObj_Common.hxx
include/OpenCASCADE/TObj_Container.hxx
include/OpenCASCADE/TObj_DeletingMode.hxx
include/OpenCASCADE/TObj_HiddenPartition.hxx
@@ -26593,6 +27394,7 @@ include/OpenCASCADE/TShort_HArray1OfShortReal.hxx
include/OpenCASCADE/TShort_HArray2OfShortReal.hxx
include/OpenCASCADE/TShort_HSequenceOfShortReal.hxx
include/OpenCASCADE/TShort_SequenceOfShortReal.hxx
+include/OpenCASCADE/ToolsDraw.hxx
include/OpenCASCADE/TopAbs.hxx
include/OpenCASCADE/TopAbs_Orientation.hxx
include/OpenCASCADE/TopAbs_ShapeEnum.hxx
@@ -26620,7 +27422,6 @@ include/OpenCASCADE/TopLoc_ItemLocation.hxx
include/OpenCASCADE/TopLoc_Location.hxx
include/OpenCASCADE/TopLoc_Location.lxx
include/OpenCASCADE/TopLoc_MapIteratorOfMapOfLocation.hxx
-include/OpenCASCADE/TopLoc_MapLocationHasher.hxx
include/OpenCASCADE/TopLoc_MapOfLocation.hxx
include/OpenCASCADE/TopLoc_SListNodeOfItemLocation.hxx
include/OpenCASCADE/TopLoc_SListNodeOfItemLocation.lxx
@@ -26918,11 +27719,8 @@ include/OpenCASCADE/TopTools_MapIteratorOfMapOfShape.hxx
include/OpenCASCADE/TopTools_MapOfOrientedShape.hxx
include/OpenCASCADE/TopTools_MapOfShape.hxx
include/OpenCASCADE/TopTools_MutexForShapeProvider.hxx
-include/OpenCASCADE/TopTools_OrientedShapeMapHasher.hxx
-include/OpenCASCADE/TopTools_OrientedShapeMapHasher.lxx
include/OpenCASCADE/TopTools_SequenceOfShape.hxx
include/OpenCASCADE/TopTools_ShapeMapHasher.hxx
-include/OpenCASCADE/TopTools_ShapeMapHasher.lxx
include/OpenCASCADE/TopTools_ShapeSet.hxx
include/OpenCASCADE/TopTrans_Array2OfOrientation.hxx
include/OpenCASCADE/TopTrans_CurveTransition.hxx
@@ -26957,13 +27755,9 @@ include/OpenCASCADE/TopoDS_AlertWithShape.hxx
include/OpenCASCADE/TopoDS_Builder.hxx
include/OpenCASCADE/TopoDS_Builder.lxx
include/OpenCASCADE/TopoDS_CompSolid.hxx
-include/OpenCASCADE/TopoDS_CompSolid.lxx
include/OpenCASCADE/TopoDS_Compound.hxx
-include/OpenCASCADE/TopoDS_Compound.lxx
include/OpenCASCADE/TopoDS_Edge.hxx
-include/OpenCASCADE/TopoDS_Edge.lxx
include/OpenCASCADE/TopoDS_Face.hxx
-include/OpenCASCADE/TopoDS_Face.lxx
include/OpenCASCADE/TopoDS_FrozenShape.hxx
include/OpenCASCADE/TopoDS_HShape.hxx
include/OpenCASCADE/TopoDS_HShape.lxx
@@ -26973,9 +27767,7 @@ include/OpenCASCADE/TopoDS_ListOfShape.hxx
include/OpenCASCADE/TopoDS_LockedShape.hxx
include/OpenCASCADE/TopoDS_Shape.hxx
include/OpenCASCADE/TopoDS_Shell.hxx
-include/OpenCASCADE/TopoDS_Shell.lxx
include/OpenCASCADE/TopoDS_Solid.hxx
-include/OpenCASCADE/TopoDS_Solid.lxx
include/OpenCASCADE/TopoDS_TCompSolid.hxx
include/OpenCASCADE/TopoDS_TCompSolid.lxx
include/OpenCASCADE/TopoDS_TCompound.hxx
@@ -26995,13 +27787,10 @@ include/OpenCASCADE/TopoDS_TWire.hxx
include/OpenCASCADE/TopoDS_TWire.lxx
include/OpenCASCADE/TopoDS_UnCompatibleShapes.hxx
include/OpenCASCADE/TopoDS_Vertex.hxx
-include/OpenCASCADE/TopoDS_Vertex.lxx
include/OpenCASCADE/TopoDS_Wire.hxx
-include/OpenCASCADE/TopoDS_Wire.lxx
include/OpenCASCADE/TransferBRep.hxx
include/OpenCASCADE/TransferBRep_BinderOfShape.hxx
include/OpenCASCADE/TransferBRep_HSequenceOfTransferResultInfo.hxx
-include/OpenCASCADE/TransferBRep_OrientedShapeMapper.hxx
include/OpenCASCADE/TransferBRep_Reader.hxx
include/OpenCASCADE/TransferBRep_SequenceOfTransferResultInfo.hxx
include/OpenCASCADE/TransferBRep_ShapeBinder.hxx
@@ -27010,7 +27799,6 @@ include/OpenCASCADE/TransferBRep_ShapeListBinder.hxx
include/OpenCASCADE/TransferBRep_ShapeMapper.hxx
include/OpenCASCADE/TransferBRep_TransferResultInfo.hxx
include/OpenCASCADE/TransferBRep_TransferResultInfo.lxx
-include/OpenCASCADE/Transfer_Actor.gxx
include/OpenCASCADE/Transfer_ActorDispatch.hxx
include/OpenCASCADE/Transfer_ActorOfFinderProcess.hxx
include/OpenCASCADE/Transfer_ActorOfProcessForFinder.hxx
@@ -27025,11 +27813,9 @@ include/OpenCASCADE/Transfer_Finder.hxx
include/OpenCASCADE/Transfer_FinderProcess.hxx
include/OpenCASCADE/Transfer_HSequenceOfBinder.hxx
include/OpenCASCADE/Transfer_HSequenceOfFinder.hxx
-include/OpenCASCADE/Transfer_Iterator.gxx
include/OpenCASCADE/Transfer_IteratorOfProcessForFinder.hxx
include/OpenCASCADE/Transfer_IteratorOfProcessForTransient.hxx
include/OpenCASCADE/Transfer_MapContainer.hxx
-include/OpenCASCADE/Transfer_Mapper.gxx
include/OpenCASCADE/Transfer_MultipleBinder.hxx
include/OpenCASCADE/Transfer_ProcessForFinder.hxx
include/OpenCASCADE/Transfer_ProcessForTransient.hxx
@@ -27048,12 +27834,21 @@ include/OpenCASCADE/Transfer_TransferIterator.hxx
include/OpenCASCADE/Transfer_TransferMapOfProcessForFinder.hxx
include/OpenCASCADE/Transfer_TransferMapOfProcessForTransient.hxx
include/OpenCASCADE/Transfer_TransferOutput.hxx
-include/OpenCASCADE/Transfer_TransferProcess.gxx
include/OpenCASCADE/Transfer_TransientListBinder.hxx
include/OpenCASCADE/Transfer_TransientMapper.hxx
include/OpenCASCADE/Transfer_TransientProcess.hxx
include/OpenCASCADE/Transfer_UndefMode.hxx
include/OpenCASCADE/Transfer_VoidBinder.hxx
+include/OpenCASCADE/TreeModel_ColumnType.hxx
+include/OpenCASCADE/TreeModel_ContextMenu.hxx
+include/OpenCASCADE/TreeModel_HeaderSection.hxx
+include/OpenCASCADE/TreeModel_ItemBase.hxx
+include/OpenCASCADE/TreeModel_ItemProperties.hxx
+include/OpenCASCADE/TreeModel_ItemRole.hxx
+include/OpenCASCADE/TreeModel_ItemStream.hxx
+include/OpenCASCADE/TreeModel_ModelBase.hxx
+include/OpenCASCADE/TreeModel_Tools.hxx
+include/OpenCASCADE/TreeModel_VisibilityState.hxx
include/OpenCASCADE/UTL.hxx
include/OpenCASCADE/Units.hxx
include/OpenCASCADE/UnitsAPI.hxx
@@ -27119,6 +27914,42 @@ include/OpenCASCADE/V3d_UnMapped.hxx
include/OpenCASCADE/V3d_View.hxx
include/OpenCASCADE/V3d_Viewer.hxx
include/OpenCASCADE/V3d_ViewerPointer.hxx
+include/OpenCASCADE/VInspector_Communicator.hxx
+include/OpenCASCADE/VInspector_ItemBase.hxx
+include/OpenCASCADE/VInspector_ItemContext.hxx
+include/OpenCASCADE/VInspector_ItemContextProperties.hxx
+include/OpenCASCADE/VInspector_ItemGraphic3dCLight.hxx
+include/OpenCASCADE/VInspector_ItemPresentableObject.hxx
+include/OpenCASCADE/VInspector_ItemSelectMgrViewerSelector.hxx
+include/OpenCASCADE/VInspector_ItemV3dViewer.hxx
+include/OpenCASCADE/VInspector_ToolActionType.hxx
+include/OpenCASCADE/VInspector_ToolBar.hxx
+include/OpenCASCADE/VInspector_Tools.hxx
+include/OpenCASCADE/VInspector_ViewModel.hxx
+include/OpenCASCADE/VInspector_Window.hxx
+include/OpenCASCADE/ViewControl_ColorSelector.hxx
+include/OpenCASCADE/ViewControl_EditType.hxx
+include/OpenCASCADE/ViewControl_MessageDialog.hxx
+include/OpenCASCADE/ViewControl_PropertyView.hxx
+include/OpenCASCADE/ViewControl_Table.hxx
+include/OpenCASCADE/ViewControl_TableItemDelegate.hxx
+include/OpenCASCADE/ViewControl_TableModel.hxx
+include/OpenCASCADE/ViewControl_TableModelValues.hxx
+include/OpenCASCADE/ViewControl_Tools.hxx
+include/OpenCASCADE/ViewControl_TreeView.hxx
+include/OpenCASCADE/View_ContextType.hxx
+include/OpenCASCADE/View_DisplayActionType.hxx
+include/OpenCASCADE/View_DisplayPreview.hxx
+include/OpenCASCADE/View_Displayer.hxx
+include/OpenCASCADE/View_PresentationType.hxx
+include/OpenCASCADE/View_PreviewParameters.hxx
+include/OpenCASCADE/View_ToolActionType.hxx
+include/OpenCASCADE/View_ToolBar.hxx
+include/OpenCASCADE/View_ToolButton.hxx
+include/OpenCASCADE/View_ViewActionType.hxx
+include/OpenCASCADE/View_Viewer.hxx
+include/OpenCASCADE/View_Widget.hxx
+include/OpenCASCADE/View_Window.hxx
include/OpenCASCADE/ViewerTest.hxx
include/OpenCASCADE/ViewerTest_AutoUpdater.hxx
include/OpenCASCADE/ViewerTest_CmdParser.hxx
@@ -27357,16 +28188,17 @@ include/OpenCASCADE/XSControl_Vars.hxx
include/OpenCASCADE/XSControl_WorkSession.hxx
include/OpenCASCADE/XSControl_Writer.hxx
include/OpenCASCADE/XSDRAW.hxx
+include/OpenCASCADE/XSDRAWDE.hxx
+include/OpenCASCADE/XSDRAWGLTF.hxx
include/OpenCASCADE/XSDRAWIGES.hxx
+include/OpenCASCADE/XSDRAWOBJ.hxx
+include/OpenCASCADE/XSDRAWPLY.hxx
include/OpenCASCADE/XSDRAWSTEP.hxx
-include/OpenCASCADE/XSDRAWSTLVRML.hxx
-include/OpenCASCADE/XSDRAWSTLVRML_CoordsMap.hxx
-include/OpenCASCADE/XSDRAWSTLVRML_DataMapIteratorOfCoordsMap.hxx
-include/OpenCASCADE/XSDRAWSTLVRML_DataMapIteratorOfElemNodesMap.hxx
-include/OpenCASCADE/XSDRAWSTLVRML_DataSource.hxx
-include/OpenCASCADE/XSDRAWSTLVRML_DataSource3D.hxx
-include/OpenCASCADE/XSDRAWSTLVRML_DrawableMesh.hxx
-include/OpenCASCADE/XSDRAWSTLVRML_ElemNodesMap.hxx
+include/OpenCASCADE/XSDRAWSTL.hxx
+include/OpenCASCADE/XSDRAWSTL_DataSource.hxx
+include/OpenCASCADE/XSDRAWSTL_DataSource3D.hxx
+include/OpenCASCADE/XSDRAWSTL_DrawableMesh.hxx
+include/OpenCASCADE/XSDRAWVRML.hxx
include/OpenCASCADE/XSDRAW_Functions.hxx
include/OpenCASCADE/XSDRAW_Vars.hxx
include/OpenCASCADE/XmlDrivers.hxx
@@ -27619,12 +28451,16 @@ include/OpenCASCADE/math_Uzawa.hxx
include/OpenCASCADE/math_Uzawa.lxx
include/OpenCASCADE/math_ValueAndWeight.hxx
include/OpenCASCADE/math_Vector.hxx
+include/OpenCASCADE/math_VectorBase.hxx
+include/OpenCASCADE/math_VectorBase.lxx
include/OpenCASCADE/step.tab.hxx
lib/cmake/OpenCASCADE/OpenCASCADEApplicationFrameworkTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/OpenCASCADE/OpenCASCADEApplicationFrameworkTargets.cmake
lib/cmake/OpenCASCADE/OpenCASCADECompileDefinitionsAndFlags-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/OpenCASCADE/OpenCASCADEConfig.cmake
lib/cmake/OpenCASCADE/OpenCASCADEConfigVersion.cmake
+lib/cmake/OpenCASCADE/OpenCASCADEDEToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake
+lib/cmake/OpenCASCADE/OpenCASCADEDEToolsTargets.cmake
lib/cmake/OpenCASCADE/OpenCASCADEDataExchangeTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/OpenCASCADE/OpenCASCADEDataExchangeTargets.cmake
lib/cmake/OpenCASCADE/OpenCASCADEDrawTargets-%%CMAKE_BUILD_TYPE%%.cmake
@@ -27667,6 +28503,36 @@ lib/libTKCDF.so.%%VER%%
lib/libTKDCAF.so
lib/libTKDCAF.so.%%VE%%
lib/libTKDCAF.so.%%VER%%
+lib/libTKDE.so
+lib/libTKDE.so.%%VE%%
+lib/libTKDE.so.%%VER%%
+lib/libTKDECascade.so
+lib/libTKDECascade.so.%%VE%%
+lib/libTKDECascade.so.%%VER%%
+lib/libTKDEGLTF.so
+lib/libTKDEGLTF.so.%%VE%%
+lib/libTKDEGLTF.so.%%VER%%
+lib/libTKDEIGES.so
+lib/libTKDEIGES.so.%%VE%%
+lib/libTKDEIGES.so.%%VER%%
+lib/libTKDEOBJ.so
+lib/libTKDEOBJ.so.%%VE%%
+lib/libTKDEOBJ.so.%%VER%%
+lib/libTKDEPLY.so
+lib/libTKDEPLY.so.%%VE%%
+lib/libTKDEPLY.so.%%VER%%
+lib/libTKDESTEP.so
+lib/libTKDESTEP.so.%%VE%%
+lib/libTKDESTEP.so.%%VER%%
+lib/libTKDESTL.so
+lib/libTKDESTL.so.%%VE%%
+lib/libTKDESTL.so.%%VER%%
+lib/libTKDEVRML.so
+lib/libTKDEVRML.so.%%VE%%
+lib/libTKDEVRML.so.%%VER%%
+lib/libTKDFBrowser.so
+lib/libTKDFBrowser.so.%%VE%%
+lib/libTKDFBrowser.so.%%VER%%
lib/libTKDraw.so
lib/libTKDraw.so.%%VE%%
lib/libTKDraw.so.%%VER%%
@@ -27694,9 +28560,6 @@ lib/libTKGeomBase.so.%%VER%%
lib/libTKHLR.so
lib/libTKHLR.so.%%VE%%
lib/libTKHLR.so.%%VER%%
-lib/libTKIGES.so
-lib/libTKIGES.so.%%VE%%
-lib/libTKIGES.so.%%VER%%
lib/libTKIVtk.so
lib/libTKIVtk.so.%%VE%%
lib/libTKIVtk.so.%%VER%%
@@ -27715,6 +28578,12 @@ lib/libTKMesh.so.%%VER%%
lib/libTKMeshVS.so
lib/libTKMeshVS.so.%%VE%%
lib/libTKMeshVS.so.%%VER%%
+lib/libTKMessageModel.so
+lib/libTKMessageModel.so.%%VE%%
+lib/libTKMessageModel.so.%%VER%%
+lib/libTKMessageView.so
+lib/libTKMessageView.so.%%VE%%
+lib/libTKMessageView.so.%%VER%%
lib/libTKOffset.so
lib/libTKOffset.so.%%VE%%
lib/libTKOffset.so.%%VER%%
@@ -27739,75 +28608,66 @@ lib/libTKQADraw.so.%%VER%%
lib/libTKRWMesh.so
lib/libTKRWMesh.so.%%VE%%
lib/libTKRWMesh.so.%%VER%%
-lib/libTKSTEP.so
-lib/libTKSTEP.so.%%VE%%
-lib/libTKSTEP.so.%%VER%%
-lib/libTKSTEP209.so
-lib/libTKSTEP209.so.%%VE%%
-lib/libTKSTEP209.so.%%VER%%
-lib/libTKSTEPAttr.so
-lib/libTKSTEPAttr.so.%%VE%%
-lib/libTKSTEPAttr.so.%%VER%%
-lib/libTKSTEPBase.so
-lib/libTKSTEPBase.so.%%VE%%
-lib/libTKSTEPBase.so.%%VER%%
-lib/libTKSTL.so
-lib/libTKSTL.so.%%VE%%
-lib/libTKSTL.so.%%VER%%
lib/libTKService.so
lib/libTKService.so.%%VE%%
lib/libTKService.so.%%VER%%
lib/libTKShHealing.so
lib/libTKShHealing.so.%%VE%%
lib/libTKShHealing.so.%%VER%%
+lib/libTKShapeView.so
+lib/libTKShapeView.so.%%VE%%
+lib/libTKShapeView.so.%%VER%%
lib/libTKStd.so
lib/libTKStd.so.%%VE%%
lib/libTKStd.so.%%VER%%
lib/libTKStdL.so
lib/libTKStdL.so.%%VE%%
lib/libTKStdL.so.%%VER%%
+lib/libTKTInspector.so
+lib/libTKTInspector.so.%%VE%%
+lib/libTKTInspector.so.%%VER%%
+lib/libTKTInspectorAPI.so
+lib/libTKTInspectorAPI.so.%%VE%%
+lib/libTKTInspectorAPI.so.%%VER%%
lib/libTKTObj.so
lib/libTKTObj.so.%%VE%%
lib/libTKTObj.so.%%VER%%
lib/libTKTObjDRAW.so
lib/libTKTObjDRAW.so.%%VE%%
lib/libTKTObjDRAW.so.%%VER%%
+lib/libTKToolsDraw.so
+lib/libTKToolsDraw.so.%%VE%%
+lib/libTKToolsDraw.so.%%VER%%
lib/libTKTopAlgo.so
lib/libTKTopAlgo.so.%%VE%%
lib/libTKTopAlgo.so.%%VER%%
lib/libTKTopTest.so
lib/libTKTopTest.so.%%VE%%
lib/libTKTopTest.so.%%VER%%
+lib/libTKTreeModel.so
+lib/libTKTreeModel.so.%%VE%%
+lib/libTKTreeModel.so.%%VER%%
lib/libTKV3d.so
lib/libTKV3d.so.%%VE%%
lib/libTKV3d.so.%%VER%%
lib/libTKVCAF.so
lib/libTKVCAF.so.%%VE%%
lib/libTKVCAF.so.%%VER%%
-lib/libTKVRML.so
-lib/libTKVRML.so.%%VE%%
-lib/libTKVRML.so.%%VER%%
+lib/libTKVInspector.so
+lib/libTKVInspector.so.%%VE%%
+lib/libTKVInspector.so.%%VER%%
+lib/libTKView.so
+lib/libTKView.so.%%VE%%
+lib/libTKView.so.%%VER%%
lib/libTKViewerTest.so
lib/libTKViewerTest.so.%%VE%%
lib/libTKViewerTest.so.%%VER%%
lib/libTKXCAF.so
lib/libTKXCAF.so.%%VE%%
lib/libTKXCAF.so.%%VER%%
-lib/libTKXDE.so
-lib/libTKXDE.so.%%VE%%
-lib/libTKXDE.so.%%VER%%
-lib/libTKXDECascade.so
-lib/libTKXDECascade.so.%%VE%%
-lib/libTKXDECascade.so.%%VER%%
lib/libTKXDEDRAW.so
lib/libTKXDEDRAW.so.%%VE%%
lib/libTKXDEDRAW.so.%%VER%%
-lib/libTKXDEIGES.so
-lib/libTKXDEIGES.so.%%VE%%
-lib/libTKXDEIGES.so.%%VER%%
-lib/libTKXDESTEP.so
-lib/libTKXDESTEP.so.%%VE%%
-lib/libTKXDESTEP.so.%%VER%%
lib/libTKXMesh.so
lib/libTKXMesh.so.%%VE%%
lib/libTKXMesh.so.%%VER%%
@@ -27817,6 +28677,30 @@ lib/libTKXSBase.so.%%VER%%
lib/libTKXSDRAW.so
lib/libTKXSDRAW.so.%%VE%%
lib/libTKXSDRAW.so.%%VER%%
+lib/libTKXSDRAWDE.so
+lib/libTKXSDRAWDE.so.%%VE%%
+lib/libTKXSDRAWDE.so.%%VER%%
+lib/libTKXSDRAWGLTF.so
+lib/libTKXSDRAWGLTF.so.%%VE%%
+lib/libTKXSDRAWGLTF.so.%%VER%%
+lib/libTKXSDRAWIGES.so
+lib/libTKXSDRAWIGES.so.%%VE%%
+lib/libTKXSDRAWIGES.so.%%VER%%
+lib/libTKXSDRAWOBJ.so
+lib/libTKXSDRAWOBJ.so.%%VE%%
+lib/libTKXSDRAWOBJ.so.%%VER%%
+lib/libTKXSDRAWPLY.so
+lib/libTKXSDRAWPLY.so.%%VE%%
+lib/libTKXSDRAWPLY.so.%%VER%%
+lib/libTKXSDRAWSTEP.so
+lib/libTKXSDRAWSTEP.so.%%VE%%
+lib/libTKXSDRAWSTEP.so.%%VER%%
+lib/libTKXSDRAWSTL.so
+lib/libTKXSDRAWSTL.so.%%VE%%
+lib/libTKXSDRAWSTL.so.%%VER%%
+lib/libTKXSDRAWVRML.so
+lib/libTKXSDRAWVRML.so.%%VE%%
+lib/libTKXSDRAWVRML.so.%%VER%%
lib/libTKXml.so
lib/libTKXml.so.%%VE%%
lib/libTKXml.so.%%VER%%
@@ -27832,733 +28716,4 @@ lib/libTKXmlXCAF.so.%%VER%%
lib/libTKernel.so
lib/libTKernel.so.%%VE%%
lib/libTKernel.so.%%VER%%
-%%DOXYGEN%%%%DOCSDIR%%/html/0001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/0002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/0003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/0004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/0008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/0012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/0013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/0014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/239_xde_12_400.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3DView.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3DView_elements.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/3DView_set_orientation.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/3rdparty_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/614_xde_04_400.png
-%%DOXYGEN%%%%DOCSDIR%%/html/646_xde_11_400.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_ContributionWorkflow_V3_image001.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_ContributionWorkflow_V3_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image009.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image015.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image016.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image018.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image019.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image020.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image021.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image022.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image023.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image024.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image025.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_image026.png
-%%DOXYGEN%%%%DOCSDIR%%/html/OCCT_GitGuide_V2_svgdiff.png
-%%DOXYGEN%%%%DOCSDIR%%/html/TStandaloneEXE.png
-%%DOXYGEN%%%%DOCSDIR%%/html/TStandaloneEXE_open.png
-%%DOXYGEN%%%%DOCSDIR%%/html/VStudio_projects.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_bndbox.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_highlight.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_shaded.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step1_shaded_wf.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step2_segments.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_10.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_25.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_disk.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step3_quadrics_fin.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step4_highlight1.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step4_highlight2.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ais_object_step4_highlight3.png
-%%DOXYGEN%%%%DOCSDIR%%/html/android_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/android_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/android_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/android_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/android_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/android_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bc_s.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bc_sd.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bdwn.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image001.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image002.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image009.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image010.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image011.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image012.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image013.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image014.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image015.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image016.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image017.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image018.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image019.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image020.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image021.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image022.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image023.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image024.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image025.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image026.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image027.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image028.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image029.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image030.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image031.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image032.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image033.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image034.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image035.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image036.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image037.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image038.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image039.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image040.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image041.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image042.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image043.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image044.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image045.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image046.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image047.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image048.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image049.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image050.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image051.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image052.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image053.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image054.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image055.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image056.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image057.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image058.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image059.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image060.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image061.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image062.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image063.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image064.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image065.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image066.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image067.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image068.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image069.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image070.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image071.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image072.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image073.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image080.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image081.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image082.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image083.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image084.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image085.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image086.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image087.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image088.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image089.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image090.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image091.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image092.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image093.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image094.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image095.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image096.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image097.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image098.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image099.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image100.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image101.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image102.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image103.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image104.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image105.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image106.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image107.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image108.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image109.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image110.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image111.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image112.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image113.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image114.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image115.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image116.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image117.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image118.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image119.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image120.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image121.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image122.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image123.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image124.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image125.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image126.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image127.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image128.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image129.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image130.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image131.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image132.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image133.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image134.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image135.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image136.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image137.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image138.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image139.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image140.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image141.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image142.png
-%%DOXYGEN%%%%DOCSDIR%%/html/boolean_image143.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bop_simple_001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bop_simple_002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/bsplit_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/build_upgrade.html
-%%DOXYGEN%%%%DOCSDIR%%/html/build_upgrade.js
-%%DOXYGEN%%%%DOCSDIR%%/html/build_upgrade__building_documentation.html
-%%DOXYGEN%%%%DOCSDIR%%/html/build_upgrade__building_occt.html
-%%DOXYGEN%%%%DOCSDIR%%/html/build_upgrade_building_3rdparty.html
-%%DOXYGEN%%%%DOCSDIR%%/html/camera_perspective.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_006_1.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_006_2.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cells_algorithm_008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/closed.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cmake_image000.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cmake_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cmake_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cmake_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/cmake_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/contribution.html
-%%DOXYGEN%%%%DOCSDIR%%/html/contribution.js
-%%DOXYGEN%%%%DOCSDIR%%/html/dfbrowser.png
-%%DOXYGEN%%%%DOCSDIR%%/html/dfbrowser_elements.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/dfbrowser_selection_in_tree_view.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_082f13faa34ae542831f34d1764ee8e2.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_0b65fda6db7f94c494f6fce5e382e9c6.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_0d4cf0b7a3b80d1164f4e93f0d0f0314.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_107e309f9f293897177ec4de6cf5a764.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_2883d863b42ab2256870fe0f41507a01.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_294c257f84be26a563e400167e5167d5.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_36af05bded6ba57dae2cabd67c15e0c9.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_3cd7ee6b36c27dbaed624381c8b218f8.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_3fac655f1bc5f38834a448be42f4f1a4.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_40469ca02c9025876527acc0654975eb.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_415001f0fb79728b8dff691060392f56.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_44e1c36099aed139a4b9b39b8ce070b3.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_4a4d866cf88d18b7bc4248dd05e31c14.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_4d7e43a0b855f318f40e86e994bfc310.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_4d8cd6bf7b8d59683439a2a5948895c1.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_5422173eac7bd1a465bd4ee08f814b84.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_54eebbc699d3b1291bbebc859fcd875c.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_55c4d74e04cbb0eb4ab19fb0add4d25e.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_5b45321b71bdbbe9d423a145f8aadb28.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_6054f3b0859a645c8bc8c595c237144d.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_687ba2577f0723255fca731ce90c8442.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_6b69d3a020397b07cfb75ed8ca90b846.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_6cc9d9686d0e3ca50b3013c991c8d73b.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_6f9635d4fbfa321d4c00f29df5cd540c.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_706a1e87be1e240674675bcf32e27335.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_7213451623ebc8f57baebbaa4f60ebb3.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_73ce5c9a83496f918bc27cfc0c0bab85.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_822536ea24b5959c838224da8955f7be.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_8ceb53fef4c3488d54faa50bd2cab870.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_923c025a01c94bb80cd8c1563d3c1d6a.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_946e4c44aab0fbcf9412d2bafa83545e.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_9ccbc3cafcc13ea4aec0627387d4d02d.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_a0fcfcc37717ece1e55b795b6d5f9dc0.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_a488370abdd270f8434fa97a9ccd9722.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_a7762f9bb8cafa4bca84e342cf09a1cf.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_b5e68f0bc762963679ef5406abc47b43.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_ba54e625419015256fd70de43761e91e.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_c2e7d7aee7e838614852d9e2305ad8c8.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_c5e7777c3a59bc65b433f988c7b23780.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_ccb6b1fcf86e77e41f415ee55695682d.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_daba5fdf672b6518668976e315aa9cf0.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_efac4b2f786a0f6f14465bced1e66038.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_f19be65aca296cffb5dd0da7403b0e2c.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_f60f82e15a89f1da3d0d9de612a56142.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_f9bc36fb4066f3d150c1c5683b17510d.html
-%%DOXYGEN%%%%DOCSDIR%%/html/dir_fa7471c95866289e8e4c7ef38e0bc893.html
-%%DOXYGEN%%%%DOCSDIR%%/html/display_additional_presentation.png
-%%DOXYGEN%%%%DOCSDIR%%/html/display_main_presentation.png
-%%DOXYGEN%%%%DOCSDIR%%/html/doc.png
-%%DOXYGEN%%%%DOCSDIR%%/html/docd.png
-%%DOXYGEN%%%%DOCSDIR%%/html/documentation_folders.png
-%%DOXYGEN%%%%DOCSDIR%%/html/documentation_miktex.png
-%%DOXYGEN%%%%DOCSDIR%%/html/documentation_test_image.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/doxygen.css
-%%DOXYGEN%%%%DOCSDIR%%/html/doxygen.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/draw_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/draw_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/draw_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/draw_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/draw_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/draw_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/drawexe_tinspector.png
-%%DOXYGEN%%%%DOCSDIR%%/html/dump_attribute.png
-%%DOXYGEN%%%%DOCSDIR%%/html/dynsections.js
-%%DOXYGEN%%%%DOCSDIR%%/html/folderclosed.png
-%%DOXYGEN%%%%DOCSDIR%%/html/folderopen.png
-%%DOXYGEN%%%%DOCSDIR%%/html/foundation_classes_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/foundation_classes_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/foundation_classes_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/foundation_classes_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/genconf_linux.png
-%%DOXYGEN%%%%DOCSDIR%%/html/genconf_windows.png
-%%DOXYGEN%%%%DOCSDIR%%/html/glue_options_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/glue_options_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/glue_options_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/glue_options_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/glue_options_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/iges_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/iges_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/index.html
-%%DOXYGEN%%%%DOCSDIR%%/html/jquery.js
-%%DOXYGEN%%%%DOCSDIR%%/html/messageview_dump_panel.png
-%%DOXYGEN%%%%DOCSDIR%%/html/messageview_elements.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/messageview_pop_up_menu.png
-%%DOXYGEN%%%%DOCSDIR%%/html/messageview_property_panel_custom.png
-%%DOXYGEN%%%%DOCSDIR%%/html/messageview_view.png
-%%DOXYGEN%%%%DOCSDIR%%/html/mkvolume_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/mkvolume_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/mkvolume_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/mkvolume_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image009.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image010.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image011.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image015.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image016.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image017.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image018.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image020.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image021.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image022.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image023.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image024.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image025.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image026.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image027.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image028.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image029.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image030.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image031.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image032.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image033.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image034.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image035.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image036.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image037.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image038.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image039.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image040.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image041.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image042.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image043.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image044.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image045.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image047.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image048.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image049.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image050.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image051.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image052.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image053.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image054.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image055.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image056.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image057.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image058.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image059.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image060.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image061.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image062.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image063.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image064.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_image065.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_001.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_002.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_003.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mesh_004.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_mkperiodic_im006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im009.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im010.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im011.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im015.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im016.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im017.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im018.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im019.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im020.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im021.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im022.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im023.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im024.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im025.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im026.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im027.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im028.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_algos_rf_im029.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_continuity_curves.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_continuity_surfaces.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image009.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image010.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image011.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_image015.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_obb_125K.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_opt_obb_125K.png
-%%DOXYGEN%%%%DOCSDIR%%/html/modeling_data_pca_obb_125K.png
-%%DOXYGEN%%%%DOCSDIR%%/html/nav_f.png
-%%DOXYGEN%%%%DOCSDIR%%/html/nav_fd.png
-%%DOXYGEN%%%%DOCSDIR%%/html/nav_g.png
-%%DOXYGEN%%%%DOCSDIR%%/html/nav_h.png
-%%DOXYGEN%%%%DOCSDIR%%/html/nav_hd.png
-%%DOXYGEN%%%%DOCSDIR%%/html/navtree.css
-%%DOXYGEN%%%%DOCSDIR%%/html/navtree.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreedata.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex0.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex1.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex10.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex2.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex3.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex4.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex5.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex6.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex7.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex8.js
-%%DOXYGEN%%%%DOCSDIR%%/html/navtreeindex9.js
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_functionmechanism_wp_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_functionmechanism_wp_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image003.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image010.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image011.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image015.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image016.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image017.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image020.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image021.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_image022.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_tree_wp_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_tree_wp_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_tree_wp_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_tree_wp_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_wp_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_wp_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_wp_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/ocaf_wp_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/occ_logo.png
-%%DOXYGEN%%%%DOCSDIR%%/html/occt__debug.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt__tutorial.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt__upgrade.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_contribution__coding_rules.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_contribution__contribution_workflow.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_contribution__documentation.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_contribution__git_guide.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_contribution__tests.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_logo.png
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_public_license.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_samples_glfw.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_samples_ios_uikit.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_samples_webgl.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__foundation_classes.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__iges.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__inspector.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__mesh.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__modeling_algos.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__modeling_data.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__ocaf.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__shape_healing.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__step.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__test_harness.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__vis.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__visualization.html
-%%DOXYGEN%%%%DOCSDIR%%/html/occt_user_guides__xde.html
-%%DOXYGEN%%%%DOCSDIR%%/html/open.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image001.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image002.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image003.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image004.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image005.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image006.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image007.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image008.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image009.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image010.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image011.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image012.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image013.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image014.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image015.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image016.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image017.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image018.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image019.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image020.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image021.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image022.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image023.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image024.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image025.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image026.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image027.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image028.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image029.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image030.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image031.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image032.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image033.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image036.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image037.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image038.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image039a.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image039b.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image040.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image041.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image042.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image043.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image044.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image045.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image046.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image047.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image048.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image049.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image050.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image051.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image052.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image053.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image054.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image055.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image060.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image061.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image062.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image063.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image064.png
-%%DOXYGEN%%%%DOCSDIR%%/html/operations_image065.png
-%%DOXYGEN%%%%DOCSDIR%%/html/overview_3rdparty.png
-%%DOXYGEN%%%%DOCSDIR%%/html/overview_draw.png
-%%DOXYGEN%%%%DOCSDIR%%/html/overview_installation.png
-%%DOXYGEN%%%%DOCSDIR%%/html/pages.html
-%%DOXYGEN%%%%DOCSDIR%%/html/point_cloud.png
-%%DOXYGEN%%%%DOCSDIR%%/html/preferences.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_array.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_item_selection.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_label.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_named_data.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_simple_type.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_tnaming_named_shape.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_tnaming_naming.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_tnaming_used_shapes.png
-%%DOXYGEN%%%%DOCSDIR%%/html/property_panel_custom_tree_node.png
-%%DOXYGEN%%%%DOCSDIR%%/html/resize.js
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_ios_uikit.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_overview_qt.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_overview_qt_geometry.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_overview_qt_ocaf.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_overview_qt_topology.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_overview_qt_triangulation.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_overview_qt_viewers.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_overview_qt_xde.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sample_webgl.png
-%%DOXYGEN%%%%DOCSDIR%%/html/samples.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples.js
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__draw_scripts.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__novice_guide.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__ocaf.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__ocaf_func.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__projects.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__projects.js
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__tutorials.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples__tutorials.js
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_c__ie.png
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_csharp_direct3d.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_csharp_occt.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_java_android_occt.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_java_android_occt.jpg
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_mfc_standard.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_mvc.png
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_qml_android_occt.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_qml_android_occt.jpg
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_qt.png
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_qt_iesample.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_qt_overview.html
-%%DOXYGEN%%%%DOCSDIR%%/html/samples_qt_tutorial.html
-%%DOXYGEN%%%%DOCSDIR%%/html/search.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image009.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image011.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shape_healing_image014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shapeview.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shapeview_elements.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/shapeview_property_panel.png
-%%DOXYGEN%%%%DOCSDIR%%/html/shapeview_tree_columns.png
-%%DOXYGEN%%%%DOCSDIR%%/html/specification.html
-%%DOXYGEN%%%%DOCSDIR%%/html/specification.js
-%%DOXYGEN%%%%DOCSDIR%%/html/specification__boolean_operations.html
-%%DOXYGEN%%%%DOCSDIR%%/html/specification__brep_format.html
-%%DOXYGEN%%%%DOCSDIR%%/html/specification__pbr_math.html
-%%DOXYGEN%%%%DOCSDIR%%/html/splitbar.png
-%%DOXYGEN%%%%DOCSDIR%%/html/splitbard.png
-%%DOXYGEN%%%%DOCSDIR%%/html/step_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/step_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/step_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/stereo.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sync_off.png
-%%DOXYGEN%%%%DOCSDIR%%/html/sync_on.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_a.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_ad.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_b.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_bd.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_h.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_hd.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_s.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tab_sd.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tabs.css
-%%DOXYGEN%%%%DOCSDIR%%/html/technical_overview_schema.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tests_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tinspector_elements.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/tobj_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tobj_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tobj_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tobj_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tobj_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tobj_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/treeview_preferences.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image003.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image009.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image010.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image011.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image012.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image013.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image014.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image015.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image016.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image017.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image018.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorial_image019.png
-%%DOXYGEN%%%%DOCSDIR%%/html/tutorials__ais_object.html
-%%DOXYGEN%%%%DOCSDIR%%/html/user_guides.html
-%%DOXYGEN%%%%DOCSDIR%%/html/user_guides.js
-%%DOXYGEN%%%%DOCSDIR%%/html/view_frustum.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vinspector.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vinspector_elements.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/vinspector_light_setting.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vinspector_property_panel.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vinspector_tree_columns.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vis_image001.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vis_image002.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vis_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vis_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vis_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vis_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/vis_image007.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image004.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image007.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image008.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image009.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image010.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image017.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image018.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image020.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image022.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image029.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_image030.png
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_selection_scheme_XOR.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_selection_scheme_add.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_selection_scheme_clear.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_selection_scheme_remove.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_selection_scheme_replace.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/visualization_selection_scheme_replaceExtra.svg
-%%DOXYGEN%%%%DOCSDIR%%/html/xde_image003.png
-%%DOXYGEN%%%%DOCSDIR%%/html/xde_image004.png
-%%DOXYGEN%%%%DOCSDIR%%/html/xde_image005.png
-%%DOXYGEN%%%%DOCSDIR%%/html/xde_image006.png
-%%DOXYGEN%%%%DOCSDIR%%/html/xde_notes001.png
-%%DOXYGEN%%%%DOCSDIR%%/index.html
+%%DOXYGEN%%%%DOCSDIR%%